@media screen and (max-width: 1199px) {
    header .container {
        justify-content: space-between;
        flex-wrap: wrap;

        padding-bottom: 15px;
    }

    #changeMenuBox:checked ~ .mobile-menu-icon::before {
        visibility: visible;
        -ms-transform: translateY(8.5px) rotate(-45deg);
        -webkit-transform: translateY(8.5px) rotate(-45deg);
        transform: translateY(8.5px) rotate(-45deg);
    }

    #changeMenuBox:checked ~ .mobile-menu-icon span {
        opacity: 0;
    }

    #changeMenuBox:checked ~ .mobile-menu-icon::after {
        visibility: visible;
        -ms-transform: translateY(-8.5px) rotate(+45deg);
        -webkit-transform: translateY(-8.5px) rotate(+45deg);
        transform: translateY(-8.5px) rotate(+45deg);
    }

    header .menu {
        opacity: 0;
        display: block;
        flex-direction: column;
        width: 100%;
        gap: 0;

        max-height: 0;

        padding-top: 10px;

        -webkit-transition: all 300ms ease-in-out;
        transition: all 300ms ease-in-out;

        text-align: center;
    }

    header .menu-item {
        text-transform: capitalize;
        text-align: left;

        padding: 20px 40px;

        border-bottom: 1px solid #2E6E93;
        color: #2E6E93;
    }

    header .menu-item:last-child {
        border-bottom: none;
    }
    
    .menu-item.active a::after {
        content: '';
        width: 0;
        height: 0;
        display: block;
    }

    header .menu-item.btn-no-background {
        background-color: #2E6E93;
        border: 1px solid #fff;
        border-radius: 0;
    }

    header .menu-item.btn-default {
        border-radius: 0;
        border: 1px solid #fff;
        box-shadow: none;
    }

    .mobile-menu {
        width: 35px;
        height: 15px;
        align-self: center;
        margin-right: 0;

        margin-top: 12px;
    }

    .mobile-menu label{
        height: 30px;
        bottom: -1px;
        width: 100%;
        position: absolute;
        z-index: 1500;
    }

    .mobile-menu-icon span{
        content: '';
        position: absolute;
        width: 35px;
        height: 3px;
        background-color: #2E6E93;
        border-radius: 50px;

        -webkit-transition: all 300ms ease-in-out;
        transition: all 300ms ease-in-out;
    }

    .mobile-menu-icon::before {
        bottom: 6px;

        -webkit-transition: all 300ms ease-in-out;
        transition: all 300ms ease-in-out;
    }

    .mobile-menu-icon::after {
        top: 9px;

        -webkit-transition: all 300ms ease-in-out;
        transition: all 300ms ease-in-out;
    }

    .mobile-menu-icon::before, .mobile-menu-icon::after{
        content: '';
        position: absolute;
        width: 35px;
        height: 3px;
        background-color: #2E6E93;
        border-radius: 50px;
    }

    .menu-item.exit {
        margin-left: 0;
        text-align: center;
    }
    
    .menu-item.exit .btn-default{
        width: inherit;
        --btn-color: none;
        color: #2E6E93;

        padding: 0;
    }
    
    .menu-item.exit .btn-default:hover{
        background-color: none;
    }
    
}