@font-face {
    font-family: 'Varela Round';
    src: url('VarelaRound-Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}
body {
    font-family: 'Varela Round', sans-serif;
} 

.header {
    position: absolute;
    top: 0;
    z-index: 3;
    width: 100%;
    height: 10vh;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0;
    background-color: transparent;
    transition: background-color 0.3s ease, position 0.3s ease;
}
.header.sticky {
    position: fixed; 
    background-color: white; 
    box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.2); 
}
.header .logo-container {
    width: 15%;
    height: 100%;
    padding: 0;
    margin: 0;
    display: flex;
    align-items: center;
    padding-left: 1.5rem;
}
.header .logo-container img {
    width: 75px;
    height: 50px;
}
.header .menu-container {
    width: 85%;
    height: 100%;
    padding: 0;
    margin: 0;
    margin-left: auto;
    display: flex;
    justify-content: right;
    align-items: center;
}
.header .menu-container .menu-heading-container {
    display: inline-block;
    padding: 0;
    height: 100%;
    position: relative;
}
.header .menu-container .menu-heading-container .menu-heading {
    cursor: pointer;
    display: inline-block;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}
.header .menu-container .menu-heading-container .menu-heading i {
    font-size: 0.8rem;
    color: rgb(176, 175, 175);
}
.header .menu-container .menu-heading-container .menu-heading:hover {
    color: rgb(99, 197, 192);
}
.header .menu-options-container {
    position: absolute;
    top: 4.5rem;
    left: 1rem;
    z-index: 1;
    display: none;
    border-radius: 3px;
    box-shadow: 0px 0px 7px 0px gainsboro;
    width: 300px;
    color: black;
}
.header .menu-option {
    cursor: pointer;
    position: relative;
    background-color: white;
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
}
.header .menu-option:hover {
    color: rgb(99, 197, 192);
}
.menu-btn a {
    background-color: rgb(124, 206, 124);
    color: white;
    padding: 0.35rem 0.75rem;
}
.menu-btn a:hover {
    background-color: rgb(105, 185, 105);
    color: white;
}


.backdrop {
    display: none;
    position: fixed;
    z-index: 5;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    pointer-events: none;
}


.header .mob-header{
    width: 100%;
    height: 100%;
    padding: 0.5rem;
    position: relative;
}
.header .mob-header .menu-iconDiv {
    position: absolute;
    left: 0;
    top: 0;
    width: 50%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: start;
}
.header .mob-header .logo-imgDiv {
    position: absolute;
    right: 0;
    top: 0;
    width: 50%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: end;
}
.header .mob-header i{
    font-size: 2rem;
    margin-left: 0.5rem;
}
.header .mob-header img{
    width: 3rem;
    margin-right: 0.5rem;
}

.sidenav {
    height: 100%;
    width: 0;
    position: fixed;
    z-index: 100 !important;
    top: 0;
    left: 0;
    background-color: white;
    transition: 0.5s;
    overflow-y: auto;
}
.sidenav a {
    padding: 1rem 1rem 0.5rem 1rem;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 450;
    color: black;
    opacity: 70%;
    display: block;
    transition: 0.3s;
}
.sidenav a:hover {
    opacity: 100%;
    background-color: gainsboro;
    padding: 1rem;
}
.sideNavImgIcons {
    position: absolute; 
    width: 7%;
}
.subnav {
    padding: 0rem;
}
.subnav-content {
    display: none;
    margin-left: 1rem;
    margin-right: 1rem;
    background-color: whitesmoke;
    padding: 0.5rem;
} 
.subnav-content a {
    font-size: 0.9rem;
    font-weight: 450;
} 
.subsubnav-content {
    display: none;
    background-color: white;
    margin-left: 1rem;
    margin-right: 1rem;
    padding: 1rem;
} 
.subsubnav-content .headingg {
    font-size: 0.85rem;
    color: rgb(8, 99, 178);
    font-weight: 600;
    margin-bottom: 0.5rem;
} 
.subsubnav-content a {
    padding: 0.25rem 0;
    font-size: 0.85rem;
} 
.subsubnav-content a:hover {
    background-color: transparent;
    color: orange;
    padding: 0.25rem 0;
} 
.sidenav a i {
    margin-right: 0.5rem;
}

.closebtn{
    padding: 1rem;
    border-bottom: 1px solid gainsboro;
}
.closebtn img{
    width: 3rem;
}
.closebtn i{
    float: right;
    font-size: 1rem;
    padding: 0.5rem 0.8rem;
    background-color: gainsboro;
    color: black;
    border-radius: 2%;
}
.closebtn i:hover {
    background-color: black;
    color: gainsboro;
    transform: scale(1.2);
    transition: 0.5s;
}


@media screen and (max-width: 992px) {
    .header .logo-container, .header .menu-container{
        display: none;
    }
    .header .mob-header{
        display: block;
    }
    .header {
        padding: 0 1%;
    }
}
@media screen and (min-width: 992px) {
    .header .logo-container, .header .menu-container{
        display: flex;
    }
    .header .mob-header{
        display: none;
    }
    .header {
        padding: 0 7%;
    }
    .header .menu-container .menu-heading-container .menu-heading {
        font-size: 1rem;
        padding: 0 1rem;
    }
}
@media screen and (min-width: 1200px) {
    .header {
        padding: 0 13%;
    }
    .header .menu-container .menu-heading-container .menu-heading {
        font-size: 1.1rem;
        padding: 0 1.25rem;
    }
}
@media screen and (min-width: 1400px) {
    .header {
        padding: 0 13%;
    }
    .header .menu-container .menu-heading-container .menu-heading {
        font-size: 1.1rem;
        padding: 0 1.5rem;
    }
}