@import url('https://fonts.googleapis.com/css?family=Spartan:wght@100;200;300;400;500;600;700;800;900&display=swap');

body {
    max-height: 100vh;
    overflow: hidden;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Spartan', sans-serif;
    transition: all 0.3s;
}

h1 {
    font-size: px;
    line-height: 64px;
    color: #d5def5;
}

h2 {
    font-size: 46px;
    line-height: 54px;
    color: #d5def5;
}

h4 {
    font-size: 20px;
    color: #222;
}

h6 {
    font-weight: 700;
    font-size: 12px;
}

P {
    font-size: 16PX;
    color: #d5def5;
    margin: 15px 0 20px 0;
}

.selection-p1 {
    padding: 40px 80px;
}

.selection-m1 {
    margin: 40px 0;
}

body {
    width: 100%;
}

body span {
    color: #0baca1;
}

.logo {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    padding: 0 0 0 0;
}

#header{
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 80px;
    background-image: url(img/NavbarBG2.png);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.06);
    z-index: 999;
    position: relative;;
    top: 0;
    left: 0;
}

#navbar{
    display: flex;
    align-items: center;
    justify-content: center;
}

#navbar li{
    list-style: none;
    padding: 0 20px;
    position: relative;
}

#navbar li a{
    text-decoration: none;;
    font-size: 16px;
    font-weight: 600;
    color: #d5def5;
    transition: 0.3s ease;
}

#navbar li a:hover, #navbar li a.active{
    color:#0dcec1;
}

#navbar li a.active::after,
#navbar li a:hover::after {
    content: "";
    width: 30%;
    height: 2px;
    background: #0baca1;
    position: absolute;
    bottom: -4px;
    left: 20px;
}

#mobile {
    display: none;
    align-items: center;
}


#hero {
    background-image: url(img/BG7.png);
    height: 90vh;
    width: 100%;
    background-size: cover;
    background-position: top 25% right 0;
    padding: 0 80px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;;
}

#hero h4 {
padding-bottom: 15px;
color: #d5def5;
}

#hero h1 {
    color: #0baca1;
}

#hero h2 {
    color: #d5def5;
}

#hero button{
    background-image: url();
    background-color: #0baca117;
    color: #0baca1;
    border: 0;
    padding: 15px 80px 14px 65px;
    cursor: pointer;
    font-weight: 700;
    font-size: 15px;
    border-radius: 15px;
}

#hero button:hover{
    background-color: #0baca1;
    color: white;
}

.signup {
    background-color: #0baca117;
    color: #0baca1;
    border: 0;
    padding: 15px 15px 15px 15px;
    cursor: pointer;
    font-weight: 700;
    font-size: 15px;
    border-radius: 15px;
}

.signup:hover::after {
    width: 0px !important; 
}

footer {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

footer p {
    font-size: 13px;
    margin: 0 0 8px 0;
}

footer .copyright{
    width: 100%;
    text-align: center;
    position: absolute;
    bottom: 0;
}

#close {
    display: none;
}

@media only screen and (max-width:1364px) {
    #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-image: url(img/BG7.png);
        box-shadow: 0 40px 60px rgba(0, 0, 0, 0.1);
        padding: 80px 0 0 10px;
        transition: 0.3;

    }

    #navbar.active {
        right: 0px;
    }

    #navbar li {
        margin-bottom: 25px;
    }

    #mobile {
        display: flex;
        align-items: center;
    }

    #mobile i{
        color: #d5def5;
        font-size: 24px;
        padding-left: 20px;
    }

    #mobile a{
        text-decoration: none;
    }
    
    #close {
        display: block;
        position: absolute;
        top: 30px;
        left: 30px;
        color: #d5def5;
        font-size: 24;
    }
    
    #lg-bag {
        display: none;
    }

    #hero {
        background-image: url(img/BG.png);
        padding: 0 30px;
        height: 90vh;
        background-position: top 30% right 30%;
    }

    #hero h1 {
        font-size: 45px;
        line-height: unset;
    }

    #hero h2 {
        font-size: 18px;
    }

    #hero p {
        font-size: 12px;
    }

    #header {
        padding: 20px 30px;
    }

   

}

@media only screen and (max-width:764px) {

    #hero button {
        width: 100%;
    }

    }