@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600;700;800;900&display=swap');
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
    list-style: none;
    text-decoration: none;
    scroll-behavior: smooth;
}
*::-webkit-scrollbar{
    display: none;
}
body{
    width: 100%;
    /* background-color: black; */
}


/* Header */

#header{
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 40px;
    background: #e3e6f3;
    /* background: black; */
    /* background: linear-gradient(45deg, #845ec2, #d65db1, #ff6f91, #ff9671, #ffc75f, #f9f871); */
    /* box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.06); */
    /* background: linear-gradient(45deg, #cdf9ff, #a0fbff, #77e6f4, #60cee5);  */
    z-index: 999;
    position: sticky;
    top: 0%;
    left: 0%;
    width: 100%;

}

#header img{
    width: 250px;
    height: 50px;
}

#navbar{
    display: flex;
    align-items: center;
    justify-content: center;
}

#navbar li{
    list-style: none;
    padding: 0px 20px;
    position: relative;
}


#navbar li a{
    text-decoration: none;
    font-size: 20px;
    font-weight: 600;
    color: #1a1a1a;
    /* color: white; */
    transition: 0.3 ease;
}

#navbar li a:hover,
#navbar li a.active{
    color: #088178;
}

#navbar li a.active::after,
#navbar li a:hover::after{
    content: "";
    width: 30%;
    height: 2px;
    position: absolute;
    background: #088178;
    bottom: -4px;
    left: 20%;
}

#mobile{
    display: none;
    align-items: center;
}

#close{
    display: none;
}


@media (max-width : 800px){
    #header{
        padding: 10px 20px;
    }
    #navbar{
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
        position: fixed;
        top: 0;
        right: -300px;
        height: 100vh;
        width: 300px;
        background-color: #e3e6f3;
        box-shadow: 0 40px 80px rgba(0, 0, 0, 0.1);
        padding: 80px 0 0 10px;
        transition: 0.3s;
    }

    #navbar.active{
        right: 0px;
    }

    #navbar li{
        margin-bottom: 25px;
    }

    #mobile{
        display: flex;
        align-items: center;   
    }
    #close{
        display: initial;
        position: absolute;
        top: 30px;
        left: 30px;
        color: #222;
        font-size: 24px;
    }

}