.header-fix { box-shadow: none; }
.logo-fix { font-size: 1.9rem; }
.nav-fix { height:75px; }
.navmenu a, .navmenu a:focus {
        color: #4E5963 !important;
        padding: 0.938rem;
        font-size: 0.938rem;
        font-family: Noto Sans;
        display: flex;
        align-items: center;
        justify-content: space-between;
        white-space: nowrap;
        transition: 0.3s;
        font-weight: 500;
    }
    .navmenu div { position:relative; }
        .navmenu div:before {
        position: absolute;
        width: 5px;
        height: 2px;
        opacity: 0;
        content: '';
        background: #000000;
        bottom: 0;
        right: 0;
        transition: all .4s ease;
    }
.navmenu div:hover:before {
        width: 100%;
        opacity: 1;
    }
    
    .oli-mobile-toggle-close, .oli-mobile-toggle {
    border-radius: var(--olivin_radius_2);
    display: block;
    font-weight: 700;
    font-size: 1.562rem;
    cursor: pointer;
    background: transparent;
    border: none;
    padding: 0;
    margin: 0;
    color: #000000;
}

.oli-mobile-toggle-close {
    position: absolute;
    top: 20px;
    right: 20px;
}
    
    
    @media (max-width: 1199px) {
        
            .navmenu {
        position: fixed;
        left: -100%;
        padding: 3.125rem 20px 50px 20px;
        top: 0;
        background: #fff;
        height: 100vh;
        z-index: 99;
        width: 80%;
        overflow: auto;
        transition: all .3s ease;
        box-shadow: 0px 0px 9px 1px rgb(0 0 0 / 15%);
        flex-direction: column;
    }
    
        .omt-active {
        left: 0;
        z-index: 9999;
    }
        
    }
    
    @media (min-width: 1200px) {
        .oli-mobile-toggle-close {
        display: none;
    }
        .oli-mobile-toggle { display:none; }
    }
    
    
    
    
    