@font-face {
    font-family: "malithi";
    src: url("../_resource/fonts/un-malithi.ttf");
}

@font-face {
    font-family: "arjuna";
    src: url("../_resource/fonts/un-arjuna.ttf");
}

@font-face {
    font-family: "Poppins";
    src: url("../_resource/fonts/Poppins-Regular.ttf");
}



:root {
    --colorWhiteSmoke: #F7F4ED;
    --colorPeachYellow: #FAE3B4;
    --colorClayBrown: #B67C32;
    --colorChocolateBrown: #4A2603;
    --colorSatinSheenGold: #D5A021;
    --colorCornHarvest: #9C601C;
    --colorDarkGold: #C58917;
    --colorIrishCoffee: #693E16;
    --colorOrangeGold: #E69C00;
    --colorOldGold: #DDAF48;
    --colorMilkChocolate: #874C14;
    --colorArylideYellow: #F0C76B;
    --colorBlack: #000000;
}

h3 {
    all: unset;
}


body {
    margin: 0px;
    padding: 0px;
    overflow-x: hidden;
    /* background-color: var(--colorWhiteSmoke); */
    font-family: "Inter";
    font-weight: 400;
    overflow-x: hidden;

}

/* Mobile View */
.header--container {
    width: 100%;
    position: fixed;
    z-index: 2;
}

.header--logo {
    height: 15vh;
    max-width: 50%;
    object-fit: contain;
}

.header--navbar {
    width: 100%;
    min-height: 13vh;
    position: fixed;
    background: rgb(233, 184, 90);
    background: linear-gradient(90deg, rgba(233, 184, 90, 1) 0%, rgba(255, 225, 111, 1) 51%, rgba(197, 139, 66, 1) 100%);
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: start;
    z-index: 2;
    padding-left: 5%;
    padding-right: 5%;
    transition: all 0.2s ease;
}

.header--navbar.scrolled {
    background-color: #E5E9FE;

}

.header--navItems {
    display: none;
}

.header--toggleBtn {
    width: 5vh;
    height: 5vh;
    border-radius: 0.3rem;
    border: none;
    background-color: transparent;
    display: flex;
    flex-direction: column;
    align-items: end;
    justify-content: center;
    margin-left: auto;
    margin-right: 8%;
    row-gap: 15%;
}

.header--toggleBtnRow {
    width: 100%;
    height: 6%;
    background-color: #001970;

}

.header--lastToggleBtnRow {
    width: 60%;
    height: 6%;
    background-color: #001970;

    transition: width 0.2s ease;
}

.header--lastToggleBtnRow.show {
    width: 100%;
}

.header--sidebar {
    background: rgb(233, 184, 90);
    background: linear-gradient(90deg, rgba(233, 184, 90, 1) 0%, rgba(255, 225, 111, 1) 51%, rgba(197, 139, 66, 1) 100%);

    height: 100vh;
    position: fixed;
    z-index: 2;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    transition: left 0.3s ease;
    width: 60vw;
    left: -60vw;
}

.header--sidebarContent {
    padding-left: 5%;

}

.header--sidebar.show {
    left: 0vw;
}

.header--sidebarItems {
    list-style: none;
    display: flex;
    flex-direction: column;
    margin-top: 6%;
    font-size: 1.5rem;
    opacity: 0.7;
    font-weight: bold;

}

.header--sidebarItem {
    text-decoration: none;
    color: var(--colorBlack);

    text-align: center;
    padding-top: 0.4rem;
    padding-bottom: 0.4rem;
    width: 90%;
    border: 2px solid white;
    opacity: 0.7;
    border-radius: 0.2rem;
    font-weight: bold;
    margin-top: 2%;
    font-family: "malithi";
}

.header--sidebarItem.active {
    opacity: 100%;
   
}

.header--logo {
    width: 20%;
}

.header--sidebarLogo {
    width: 50%;
    margin-top: 8%;
}

.header--closeBtn {
    width: 7%;
    position: absolute;
    top: 3%;
    left: 85%;

}

.header--div1 {
    display: none;
}

.header--div4 {
    display: none;
}


/* Tablet View */
@media screen and (min-width: 540px) {
    .header--sidebar {
        width: 40vw;
        left: -40vw;
    }

    .header--sidebarItem {
        height: 2.5vh;

    }

}

/* Desktop View */
@media screen and (min-width: 950px) {

    .header--logo {
        display: none;
    }

    .header--sidebar {
        display: none;
    }

    .header--toggleBtn {
        display: none;
    }

    .header--navbar {
        display: flex;
        flex-direction: column;
        background: none;
        margin: 0;
        padding: 0;
        min-height: 10vh;

    }

    .header--div1 {
        width: 100%;
        display: flex;
        flex-direction: column;
        background: rgb(233, 184, 90);
        background: linear-gradient(90deg, rgba(233, 184, 90, 1) 0%, rgba(255, 225, 111, 1) 51%, rgba(197, 139, 66, 1) 100%);
        /* justify-content: center; */
        align-items: center;
        padding-bottom: 4vh;

    }

    .header--div2 {
        width: 100%;
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        /* justify-content: center;
        align-items: center; */



    }

    .header--logo1 {
        width: 10%;
        margin-left: 45%;
        aspect-ratio: 1.4;
        background-size: contain;
        align-self: center;
        align-self: center;
        background-repeat: no-repeat;
        margin-top: 1vh;
        cursor: pointer;
    }

    .header--div3 {
        display: flex;
        flex-direction: column;
        justify-content: end;
        align-items: end;
        margin-left: auto;
        margin-right: 3%;



    }

    .header--social {
        width: 1.5rem;
    }

    .header--contact {
        margin: 0;
        line-height: 1;
        color: white;
    }

    .header--div4 {
        display: flex;
        width: 90%;
        height: 5vh;
        background-color: white;
        border-radius: 5rem;
        justify-content: center;
        align-items: center;
        margin-top: -2vh;
        box-shadow: 2px 1px 19.6px -7px rgba(0, 0, 0, 0.25);

    }

    .header--div5 {
        width: 100%;
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: space-evenly;

    }

    .header--links {
        text-decoration: none;
        cursor: pointer;
        font-family: "malithi";
        font-size: 1.3rem;
        color: var(--colorBlack);
        opacity: 0.5;
        font-weight: bold;
    }

    .header--links.active {
        color: #d09b4a;
        
    }

   


}