    * {
        list-style-type: none;
        text-decoration: none;
    }
    
    body {
        padding: 0;
        margin: 0;
        font-family: "Roboto", sans-serif;
    }
    
    nav {
        position: fixed;
        z-index: 10;
        left: 0;
        right: 0;
        top: 0;
        font-family: "Poppins", sans-serif;
        padding: 0 5%;
        height: 80px;
        background: rgb(2, 2, 2);
    }
    
    nav .logo {
        float: left;
        width: 40%;
        height: 100%;
        display: flex;
        align-items: center;
        font-size: 24px;
        color: #fff;
    }
    
    nav .logo .logo_img {
        width: 50px;
        height: 50px;
        margin: 1rem;
        border-radius: 50%;
    }
    
    nav .links {
        float: right;
        padding: 0;
        margin: 0;
        width: 60%;
        height: 100%;
        display: flex;
        justify-content: space-around;
        align-items: center;
    }
    
    nav .links li {
        list-style-type: none;
    }
    
    nav .links a {
        display: block;
        padding: 1em;
        font-size: 16px;
        font-weight: bold;
        text-decoration: none;
        color: #fff;
    }
    
    #nav-toggle {
        position: absolute;
        top: -100px;
    }
    
    nav .icon-burger {
        display: none;
        position: absolute;
        right: 5%;
        top: 30%;
        transform: translateY((-50%));
    }
    
    nav .icon-burger .line {
        background-color: #fff;
        width: 30px;
        height: 3px;
        margin: 7px;
        border-radius: 3px;
        transition: all 0.3s ease-in-out;
    }
    
    .banner {
        /* background-color: #aaa; */
        background: url("http://www.smallbizdaily.com/wp-content/uploads/2020/08/shutterstock_749021593-1.jpg") no-repeat;
        background-size: cover;
        width: 100%;
        height: 100vh;
        position: relative;
    }
    
    .banner .overlay {
        background: rgba(0, 0, 0, 0.8);
        width: 100%;
        height: 100vh;
        display: flex;
        justify-content: center;
        align-items: center;
    }
    
    .banner .overlay h1 {
        color: rgb(14, 255, 255);
        font-size: 4vw;
    }
    
    #all_blogs {
        background-color: #444;
        min-height: 100vh;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .blog-posts {
        width: min(1200px, 100%);
        padding: 20px;
        display: block;
        justify-content: space-between;
        cursor: pointer;
    }
    
    .post-img {
        width: 100%;
        border-radius: 6px;
        transition: .3s linear;
    }
    
    .post-cont {
        margin: 0 20px;
        padding: 30px;
        border-radius: 6px;
        transform: translateY(-60px);
        transition: .3s linear;
    }
    
    .post-cont h3 {
        font-size: 3vw;
        margin-bottom: 10px;
        margin-top: 0;
    }
    
    .link {
        font-size: 15px;
        color: #6419ee;
    }
    
    .post:hover .post-img {
        transform: translateY(20px);
    }
    
    .post:hover .post-cont {
        transform: translateY(-80px);
    }
    
    .bg-p1 {
        background-color: rgb(37, 4, 68);
        color: white;
    }
    
    .bg-p2 {
        background-color: #fac246;
    }
    
    .bg-p3 {
        background-color: white;
    }
    
    footer {
        width: 100%;
        background-color: #000;
        padding-top: 30px;
        text-align: center;
    }
    
    footer .col {
        width: 20%;
        display: inline-block;
        vertical-align: top;
        padding: 10px;
        text-align: center;
    }
    
    footer .col .footer_title {
        color: #fff;
        font-size: 1em;
        font-weight: 700;
        cursor: default;
    }
    
    footer .col a {
        text-decoration: none;
        display: block;
        color: gray;
        font-size: 1em;
        padding: 5px 0;
        font-weight: 400;
        transition: 0.5s;
    }
    
    footer .col:not(:first-child) a:hover {
        color: #fff;
    }
    
    footer .col:nth-child(4) a:not(:first-child) {
        margin: 5px;
        display: inline-block;
    }
    
    footer .col:nth-child(1) a:nth-child(2),
    footer .col:nth-child(1) a:nth-child(3),
    footer .col:nth-child(1) a:nth-child(4),
    footer .col:nth-child(1) a:nth-child(5),
    footer .col:nth-child(1) a:nth-child(6) {
        display: inline-block;
        margin: 10px;
        font-size: 1.3em;
        background: #fff;
        width: 28px;
        height: 28px;
        border-radius: 50%;
        padding: 5px;
    }
    
    .fa-facebook {
        color: blue;
    }
    
    .fa-instagram {
        color: rgb(206, 96, 115);
    }
    
    .fa-twitter {
        color: blue;
    }
    
    .fa-youtube {
        color: rgb(241, 79, 79);
    }
    
    .sub-footer {
        background: #1e1e1e;
        width: 100%;
        padding: 5px 0;
        text-align: center;
        color: grey;
        font-size: 12px;
    }
    /* ------------------------Mobile View-------------- */
    
    @media screen and (max-width: 768px) {
        nav .logo {
            float: none;
            width: auto;
        }
        nav .logo strong {
            display: none;
        }
        nav .logo .logo_img {
            width: 30px;
            height: 30px;
        }
        nav .links {
            float: none;
            position: fixed;
            z-index: 9;
            left: 0;
            right: 0;
            top: 80px;
            bottom: 100%;
            width: auto;
            height: auto;
            flex-direction: column;
            justify-content: space-evenly;
            background: rgb(8, 8, 8);
            overflow: hidden;
            box-sizing: border-box;
            transition: all 0.5s ease-in-out;
        }
        nav .links a {
            font-size: 15px;
        }
        nav :checked~.links {
            bottom: 0;
        }
        nav .icon-burger {
            display: block;
        }
        nav :checked~.icon-burger .line:nth-child(1) {
            transform: translateY(10px) rotate(225deg);
        }
        nav :checked~.icon-burger .line:nth-child(3) {
            transform: translateY(-10px) rotate(-225deg);
        }
        nav :checked~.icon-burger .line:nth-child(2) {
            opacity: 0;
        }
        .banner {
            height: 50vh;
        }
        .banner .overlay {
            height: 50vh;
        }
        .banner .overlay h1 {
            color: rgb(14, 255, 255);
            font-size: 5vw;
        }
    }