#menuMobileBtn {
    display: none;
    position: relative;
    width: 48px; 
    height: 48px;
    border: transparent;
    border-radius: 4px;
    background-color: #02619D;
    cursor: pointer;
    flex-shrink: 0;
}
#menuMobileBtn:hover, #menuMobileBtn:active {
    background-color: #4E93CF;
}
#menuMobileBtn::after {
    content: '';
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    height: 2px;
    width: 18px;
    background-color: #FFFFFF;
    border-radius: 5px;
    box-shadow: 0 6px 0 0px #FFFFFF, 0 -6px 0 0px #FFFFFF;
    transition: all .2s ease;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
@media screen and (max-width: 1200px) {
    html, body {
        overflow-x: hidden;
        max-width: 100vw;
        position: relative;
    }
    
    .container-fluid, .container, .row {
        overflow-x: hidden;
        max-width: 100%;
    }
    
    nav {
        height: auto;
        min-height: 80px;
        padding: 10px 15px;
    }
    
    #menuMobileBtn {
        display: flex;
        align-items: center;
        justify-content: center;
        position: fixed;
        top: 20px;
        right: 15px;
        z-index: 102;
    }
    
    .main-menu:not(.mobile_active) {
        display: none!important;
    }
    
    .mobile_active ~ #menuMobileBtn {
        z-index: 102;
    }
    
    .mobile_active ~ #menuMobileBtn::after {
        content: '✕';
        font-size: 28px;
        font-weight: 300;
        line-height: 1;
        text-align: center;
        color: #FFF;
        height: auto;
        width: auto;
        box-shadow: none;
        border-radius: 0;
        background-color: transparent;
        transform: translate(-50%, -50%) rotate(0deg);
        transition: all .2s ease;
    }
    .mobile_active {
        display: flex !important;
    }
    
    .mobile_active.main-menu {
        position: fixed;
        left: 0;
        top: 0;
        width: 100vw;
        height: 100vh;
        background: #1C232E;
        z-index: 101;
        overflow-y: auto;
        overflow-x: hidden;
    }
    
    .nav-menu {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
        padding-top: 100px;
        padding-left: 20px;
        width: 100%;
        height: 100%;
        animation: enterLeft .1s forwards;
        justify-content: flex-start;
    }
    .mobile_active .menu-item {
        padding: 10px 30px 10px 0;
        border-radius: 2px;
        /* border: 1px solid white; */
    }
    .mobile_active .nav-menu .menu-item a{
        font-size: 2rem;
    }
    
    /* Mobile dropdown/submenu styles */
    .mobile_active .nav-menu li ul {
        position: static;
        display: none;
        margin-left: 0;
        padding-left: 20px;
        background: transparent;
        backdrop-filter: none;
        box-shadow: none;
        border-radius: 0;
        border: none;
        width: 100%;
        opacity: 1;
        transform: none;
        pointer-events: auto;
    }
    
    .mobile_active .nav-menu li ul li {
        width: 100%;
        padding: 5px 0;
    }
    
    .mobile_active .nav-menu li ul li a {
        font-size: 1.6rem;
        padding: 8px 0;
        color: #84B6E0;
        border-left: none;
    }
    
    .mobile_active .nav-menu li ul li a:hover {
        background-color: transparent;
        color: #4E93CF;
        padding-left: 0;
    }
    
    /* Show submenu when parent has active class */
    .mobile_active .nav-menu li.submenu-open > ul {
        display: block;
    }
    
    /* Mobile dropdown arrow styling */
    .mobile_active .nav-menu .menu-item-has-children > a::after {
        content: '▼';
        font-size: 0.7em;
        margin-left: 6px;
        opacity: 0.7;
        display: inline-block;
        vertical-align: middle;
        transition: transform 0.3s ease;
    }
    
    .mobile_active .nav-menu .menu-item-has-children.submenu-open > a::after {
        transform: rotate(180deg);
    }
    
    .mobile_active .nav-menu .menu-item-has-children {
        display: flex;
        align-items: center;
        flex-wrap: wrap;
    }
}


@keyframes enterLeft {
    from {
        transform: translateX(-20px);
    }
    to {
        transform: initial;
    }
}