header {
    overflow-x: hidden;
    position: sticky; 
    right: 0; 
    left: 0;
    top: 0px;
    height: 10rem;
    display: flex; 
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    margin-right: calc(1rem * 0);
    background-color: #0a6f79;
    z-index: 8900;
}

.header-icon {
    flex: 0 0 auto;
    display: flex; 
    flex: none; 
    align-items: center;
}

.header-desktop {
    flex: 1 1 auto;
    margin-left: calc(1.25rem * calc(1 - 0));
    margin-right: 9px;
    display: none; 
    flex-basis: 80%; 
    flex-wrap: wrap; 
    align-items: center; 
    justify-content: space-around; 
    font-size: 1.125rem; 
    line-height: 1.75rem;
    text-decoration: none;
}

.header-redirect {
    padding: 0.33rem;
    font-size: 1.25rem; 
    line-height: 1.75rem; 
    color: rgb(255,255,255); 
    text-decoration: none;
}
.header-redirect:hover {
    text-decoration: underline;
}

.mobile-header-wrapper {
    margin-left: auto;
    display: flex;
    align-items: center;
    margin-right: 3rem;
}

.header-menu-button {
    border: 1px solid white;
    background-color: transparent;
    color: white;
    font-size: 1.5rem;  
    width: 3rem; 
    height: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 3rem;
    height: 3rem;
    font-size: 1.5rem;
}

.header-redirect-2 {
    display: block; 
    padding-left: 1.5rem; 
    padding-right: 1.5rem; 
    padding-top: 1rem; 
    padding-bottom: 1rem; 
    font-weight: 500; 
    color: black;
    transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter; 
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transition-duration: 150ms;
    display: block;
    text-decoration: none;
}
.header-redirect-2:hover {
    text-decoration: underline;
    color: rgb(25,89,5); 
    background-color: rgb(243,244,246);
}

.mobile-menu {
    position: fixed;
    top: 0;
    right: 0;
    width: 60%;
    height: 100%;
    background-color: rgb(255,255,255);
    z-index: 9000;
    flex-direction: column;
    overflow-y: auto;
    box-shadow: 0 0 #0000, 0 0 #0000, 0 10px 15px -3px rgba(0,0,0,0.1), 0 4px 6px -4px rgba(0,0,0,0.1);

    transform: translateX(100%);
    transition: transform 0.3s cubic-bezier(0.4,0,0.2,1);
}
.mobile-menu.active {
    transform: translateX(0);
}

.mobile-menu-img {
    height: 3rem; 
    justify-content: flex-end;
}

.mobile-menu-top {
    display: flex; 
    align-items: center; 
    justify-content: flex-end; 
    background-color: rgb(6,112,49);
}

.mobile-menu-overlay {
    position: fixed; 
    inset: 0; 
    z-index: 8800; 
    display: none; 
    background-color: rgb(0,0,0,0.3);
}
.mobile-menu-overlay.active {
    display: block;
}

.header-inner {
    width: 100%;
    padding-right: 3rem;
    display: flex;
    align-items: center;
    justify-content: center; 
}

@media (max-width: 1300px) {
    .basic-header {
        height: 6.25rem;
    }
}
@media (max-width: 450px) {
    .mobile-header-wrapper {
        margin-right: 0.2rem;
    }
}
@media (min-width: 1300px) {
    .header-desktop {
        display: flex;
    }
    .mobile-header-wrapper {
        display: none;
    }
}