/* Font Import */
@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
:root{
    --primary-green: #084848;
    --primary-white: #FFFFFF;
    --primary-beige: #f9f4ee;
    --secondary-green: #8CDDAE;
    --secondary-white: #999999;
    --secondary-beige: #FCF9F0;
    --black: #000000;
}

* {
    padding: 0;
    margin: 0;
    font-family: "Poppins", system-ui;
    /* font-size: 1rem; */
}

body{
    overflow-x: hidden;
}


/* White Button */

.white-button{
    outline: none;
    border: none;
    text-align: center;
    font-size: 1.125rem;
    font-style: normal;
    font-weight: 500;
    line-height: 100%;
    display: flex;
    padding: 0.75rem 1.25rem 0.75rem 1.5rem;
    flex-direction: row;
    align-items: center;
    gap: 1rem;
    gap: 0.75rem;
    border-radius: 1.9375rem;
    background: var(--primary-white);
    color: var(--black);
    transition: all 0.2s ease-in;
}

.white-button:hover {
    cursor: pointer;
    box-shadow: 0px 0px 9px 2px rgba(0,0,0,0.5);
    transform: scale(1.1,1.1);
}


/* Green Button */

.green-button{
    outline: none;
    border: none;
    text-align: center;
    font-size: 1.125rem;
    font-style: normal;
    font-weight: 500;
    line-height: 100%;
    display: flex;
    padding: 0.75rem 1.25rem 0.75rem 1.5rem;
    flex-direction: row;
    align-items: center;
    gap: 1rem;
    gap: 0.75rem;
    border-radius: 1.9375rem;
    background: var(--primary-green);
    color: var(--primary-white);
    transition: all 0.2s ease-in;
}

.green-button:hover{
    cursor: pointer;
    box-shadow: 0px 0px 9px 2px rgba(0,0,0,0.5);
    transform: scale(1.1,1.1);
}


/* Navigation bar starts */

navbar .mobile, navbar .nav-dropdown{
    display: none;
}

.top-nav{
    display: flex;
    width: 100%;
    flex-direction: row;
    justify-content: center;
    background-color: var(--primary-beige);
    height: 9vh;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
}

.top-nav ul a, #brand-selection, #brand-selection option{
    list-style-type: none;
    margin-top: auto;
    margin-bottom: auto;
    text-decoration: none;
    color: #000000;
}

.nav-lft ul, .nav-rgt ul {
    display: flex;
    flex-direction: row;
    margin-left: 7vw;
    margin-right:7vw;
    height: 100%;
}

.nav-lft ul a, .nav-rgt ul a, .nav-lft ul select option, .nav-rgt ul select option{
    padding: 0vw 1vw ;
    cursor: pointer;
}

.nav-rgt ul #brand-selection{
    font-weight: 500;
    font-size: 16px;
    outline: none;
    border: none;
    background: none;
}

navbar hr{
    width: 84%;
    margin-right: auto;
    margin-left: auto;
    height: 1px;
    border: none;
    background-color: black;
}
.nav-btm{
    display: flex;
    justify-content: center;
    background-color: var(--primary-beige);
}

#navbar-logo{
    height: 10vh !important;
    margin-top: -7.5vh;
}
/* Navigation bar ends */

/* Presence */

#presence{
    background-image: url('../assets/map.png');
    background-blend-mode: lighten;
    background-position: 50% 175%;
    background-size: 60%;
    background-repeat: no-repeat;
    background-color: rgba(249, 244, 238, 0.8);
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 3rem;
    padding-bottom: 16rem;
}

#presence #header{
    font-size: 3.5rem;
    font-weight: 400;
    color: var(--black);
    width: 50%;
    text-align: center;
}

#presence #text{
    font-size: 1.25rem;
    font-weight: 400;
    color: var(--black);
    width: 55%;
    text-align: center;
}

#presence #presence-elements{
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 50%;
    justify-content: center;
}

#presence #presence-elements .elems{
    display: flex;
    flex-direction: column;
    width: 27rem;
    align-items: center;
    gap: 2rem;
}

#presence #presence-elements .elems > div{
    border-radius: 50%;
    height: 9rem;
    width: 9rem;
    background: #FFE4CC;
}

#presence #presence-elements .elems > div > img{
    object-fit: contain;
    object-position: center;
    position: absolute;
}

#presence #presence-elements .elems > span{
    font-size: 1.25rem;
    font-weight: 500;
}

/* Contact */

#get-in-touch{
    background: var(--primary-beige);
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    gap: 2rem;
    padding-bottom: 3rem;
}

#get-in-touch > div{
    background: #D5EDC4;
    display: flex;
    flex-direction: column;
    width: 65%;
    border-radius: 1.5rem;
    padding-top: 2%;
    overflow: hidden;
    align-items: center;
    gap: 1rem;
}

#get-in-touch > div #header{
    font-size: 3.25rem;
    font-weight: 400;
    color: var(--primary-green);
}

#get-in-touch > div #text{
    width: 90%;
    font-size: 1.25rem;
    line-height: 160%;
    font-weight: 400;
    color: var(--primary-green);
    text-align: center;
}

#get-in-touch > div #images{
    width: 98%;
    display: flex;
    flex-direction: row;
    align-items: flex-end;
    justify-content: space-between;
}

#get-in-touch > div #images > img{
    width: 24.2%;
    border-top-left-radius: 1rem;
    border-top-right-radius: 1rem;
    object-fit: cover;
    object-position: center;
}

#get-in-touch > div #images > img:nth-child(1){
    height: 24rem;
}

#get-in-touch > div #images > img:nth-child(2){
    height: 21rem;
}

#get-in-touch > div #images > img:nth-child(3){
    height: 26rem;
}

#get-in-touch > div #images > img:nth-child(4){
    height: 23rem;
}

.btm-hero-banner {
    position: relative;
}

.btm-hero-banner div {
    font-weight: 600;
    color: #084848;
    font-size: 64px;
    text-align: center;
    margin-bottom: 0;
    position: relative;
    z-index: 2;
}

.btm-hero-banner div span{
    background-color: #E9F6FF;
    border-radius: 16px;
    display: inline-block;
    width: fit-content;
    padding: 5px 10px; 
    margin-right: auto;
    margin-left: auto;
}

.btm-hero-banner img {
    width: 100vw;
    margin-top: -8%;
    position: relative;
    z-index: 1;
}


/* Footer section */

footer{
    background: var(--primary-green);
    color: var(--primary-white);
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    padding-top: 3rem;
    padding-bottom: 3rem;
}

footer #logo{
    width: 10rem;
}

footer #footer-links{
    width: 90%;
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    align-items: flex-start;
}

footer #footer-links #links{
    width: 40%;
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    justify-content: space-between;
    margin-right: 5%;
}

footer #footer-links #links .footer-link-class{
    display: flex;
    flex-direction: column;
}

footer #footer-links #links .footer-link-class .footer-links{
    list-style-type: none;
}

footer #footer-links #links .footer-link-class .footer-links > li, footer #footer-links #links .footer-link-class .footer-links > li > a{
    text-decoration: none;
    color: var(--secondary-white);
    font-weight: 300;
}

footer #footer-links #links .footer-link-class .footer-links > li.links-header{
    color: var(--primary-white);
    font-weight: 500;
}

footer #footer-links #email-contact{
    width: 45%;
    display: flex;
    flex-direction: column;
}

footer #footer-links #email-contact > span{
    font-size: 110%;
    font-weight: 400;
}

footer #footer-links #email-contact #email-contact-header{
    font-size: 250%;
    font-weight: 400;
    margin-bottom: 0.5rem;
}

footer #footer-links #email-contact > div{
    width: 100%;
    border-bottom: 2px solid var(--primary-white);
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding-top: 1.5%;
    padding-bottom: 1.5%;
}

footer #footer-links #email-contact > div > input{
    width: 65%;
    padding-left: 1%;
    padding-right: 1%;
    padding-top: 1%;
    padding-bottom: 1%;
    border-radius: 20px;
    border: none;
    outline: none;
    background: none;
    font-size: 1.25rem;
    color: var(--primary-white);
}

footer #footer-links #email-contact > div > input::placeholder{
    color: var(--secondary-green);
}

footer #footer-links #email-contact > div > button{
    background: none;
    outline: none;
    border: 2px solid var(--primary-white);
    color: var(--primary-white);
    font-size: 1.25rem;
    border-radius: 30px;
    padding-top: 1.5%;
    padding-bottom: 1.5%;
    padding-left: 5%;
    padding-right: 5%;
}

footer #footer-links #email-contact > div > button:active{
    background-color: var(--primary-white);
    color: var(--black);
}

footer #company-details{
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
}

footer #company-details > hr{
    width: 90%;
    height: 1px;
    border: none;
    background: #D9D9D9;
    color: #D9D9D9;
}

footer #company-details #social{
    display: flex;
    flex-direction: row;
    gap: 2rem;
}

footer #company-details #social > span{
    display: flex;
    gap: 2rem;
}

footer #company-details #contact{
    width: 90%;
    display: flex;
    flex-direction: row;
    gap: 2rem;
    justify-content: center;
    align-items: center;
}

footer #company-details #contact > span{
    display: flex;
    gap: 2rem;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
}

footer #company-details #contact .bullet{
    border-radius: 50%;
    width: 6px;
    height: 6px;
    background: var(--secondary-green);
}

@media only screen and (max-width: 900px) {
    *{
        font-size: 0.9rem;
    }

    /* Navigation bar starts */

    navbar .mobile{
        display: flex;
    }

    .top-nav{
        display: flex;
        width: 90%;
        padding-left: 5%;
        padding-right: 5%;
        flex-direction: row;
        justify-content: space-between;
        align-items: flex-end;
        background-color: var(--primary-beige);
        height: 7vh;
        font-size: 16px;
        font-style: normal;
        font-weight: 500;
    }

    #brand-selection, #brand-selection option{
        list-style-type: none;
        margin-top: auto;
        margin-bottom: auto;
        text-decoration: none;
        color: #000000;
    }

    .nav-lft ul, .nav-rgt ul {
        display: none;
    }

    .nav-lft ul select option, .nav-rgt ul select option{
        padding: 0vw 1vw ;
        cursor: pointer;
    }

    .nav-lft #brand-selection{
        width: 85%;
        font-weight: 500;
        font-size: 12px;
        outline: none;
        border: none;
        background: none;
    }

    navbar hr{
        width: 90%;
    }

    #navbar-logo{
        height: 6vh !important;
        margin-top: -7.5vh;
    }

    navbar .nav-dropdown{
        display: none;
        margin-top: -2.25vh;
        margin-left: 5%;
        position: absolute;
        border-bottom-left-radius: 1rem;
        border-bottom-right-radius: 1rem;
        padding: 2.5%;
        gap: 0.5rem;
        width: 85%;
        flex-direction: column;
        background-color: #fff;
        transition: all ease-in 0.5s;
        padding-top: 1rem;
        padding-bottom: 1rem;
    }

    navbar .nav-dropdown > a{
    /* navbar .nav-dropdown > span{ */
        text-decoration: none;
        color: var(--black);
        font-style: normal;
        line-height: 1.75rem;
        transition: all 0.2s ease-in;
    }

    /* Navigation bar ends */

    /* Presence */

    #presence{
        background-position: 50% 100%;
        background-size: 100%;
        width: 100%;
        gap: 2rem;
        padding-bottom: 10rem;
    }

    #presence #header{
        font-size: 2.5rem;
        width: 90%;
    }

    #presence #text{
        font-size: 1rem;
        width:90%;
    }

    #presence #presence-elements{
        width: 90%;
        gap: 0;
        align-items: flex-start;
    }

    #presence #presence-elements .elems{
        display: flex;
        flex-direction: column;
        width: 11rem;
        justify-content: flex-start;
        gap: 1rem;
    }

    #presence #presence-elements .elems > div{
        border-radius: 50%;
        height: 7rem;
        width: 7rem;
        background: #FFE4CC;
    }

    #presence #presence-elements .elems > div > img{
        width: inherit;
        object-fit: contain;
        object-position: center;
        position: absolute;
    }

    #presence #presence-elements .elems > span{
        font-size: 1rem;
        font-weight: 500;
        text-align: center;
    }

    /* Contact */

    #get-in-touch{
        padding-bottom: 3rem;
    }

    #get-in-touch > div{
        width: 95%;
    }

    #get-in-touch > div #header{
        font-size: 2.5rem;
        text-align: center;
        padding: 1rem;
        font-weight: 500;
        color: var(--primary-green);
    }

    #get-in-touch > div #text{
        padding-left: 1rem;
        padding-right: 1rem;
        padding-bottom: 1rem;
        font-size: 1rem;
        line-height: 150%;
    }

    #get-in-touch > div #images{
        margin-top: 2rem;
    }

    /* Footer Section */

    
    footer #footer-links{
        flex-direction: column-reverse;
        align-items: center;
        gap: 2rem;
    }

    footer #footer-links #email-contact{
        width: 95%;
    }
    
    footer #footer-links #email-contact > span{
        font-size: 90%;
        font-weight: 400;
        line-height: 150%;
    }
    
    footer #footer-links #email-contact #email-contact-header{
        font-size: 150%;
        font-weight: 400;
        margin-bottom: 0.5rem;
    }
    
    footer #footer-links #email-contact > div{
        padding-top: 2rem;
        padding-bottom: 1.5%;
        border-bottom: 1px solid var(--primary-white);
    }
    
    footer #footer-links #email-contact > div > input{
        font-size: 1rem;
    }
    
    footer #footer-links #email-contact > div > button{
        border: 1px solid var(--primary-white);
        font-size: 1rem;
    }

    footer #footer-links #links{
        width: 95%;
        display: grid;
        grid-template-columns: auto auto;
        row-gap: 2rem;
    }

    footer #company-details #social{
        align-items: center;
        justify-content: center;
        flex-direction: column;
    }

    footer #company-details #contact{
        flex-direction: column;
        gap: 0.2rem;
    }

    footer #company-details #contact > .bullet:nth-child(1){
        display: none;
    }

    footer #company-details #contact > span{
        justify-content: space-around;
        gap: 1.5rem
    }
}