/* ================= MOBILE MENU BUTTON ================= */

.mobile-menu-btn {
    position: absolute;
    top: 4vw;
    right: 2vw;
    z-index: 1200;
    width: 41px;
    height: 34px;
    border: 0;
    background: url('../img/bg-hamburger.png') center center / contain no-repeat;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 3px;

    padding: 0;
}

.mobile-menu-btn span {
    display: block;
    width: 20px;
    height: 2px;

    background: white;
    border-radius: 20px;
}

/* ================= MOBILE MENU MODAL ================= */

.mobile-menu-modal .modal-content {
    border: 0 !important;
    border-radius: 0 !important;

    background: url('../img/bg menu popup.png') center center / contain no-repeat !important;
    background-size: contain !important;
    background-position: center !important;
    background-repeat: no-repeat !important;
}

.mobile-menu-body {
    min-height: 100vh;

    display: flex;
    flex-direction: column;
    justify-content: center;

    padding: 15px 32px;
}

.mobile-menu-link {
    color: white;
    text-decoration: none;
    font-family: 'Aldrich', sans-serif;
    font-size: 25px;
    font-weight: 400;

    text-align: center;

    padding: 10px 0;
}

.mobile-menu-link.is-active {
    color: black;
}

/* Divider asset */
.mobile-menu-divider {
    width: 100%;
    height: 14px;

    background-image: url('../img/line.png');
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
}

.mobile-menu-close {
    position: absolute;
    top: 38vw !important;
    right: 4vw !important;
    z-index: 10;
    color: black !important;
    filter: none !important;
    transform: scale(1.3);
}

/* Hide hamburger on desktop */
@media (min-width: 768px) {
    .mobile-menu-btn {
        display: none;
    }

    .mobile-menu-link {
        padding: 10px 0;
    }
}

@media (max-width: 768px) {
    #mobileMenuModal .btn-close {
        top: 10% !important;
        right: 5% !important;
    }
}

@media (max-width: 440px) {
    #mobileMenuModal .btn-close {
        top: 8% !important;
        right: 5% !important;
    }
}

@media (min-width: 400px) and (max-width: 420px) {
    .mobile-menu-link {
        font-size: 20px;
        padding: 10px 0;
    }

    #mobileMenuModal .btn-close {
        top: 10% !important;
        right: 5% !important;
    }
}

@media (min-width: 376px) and (max-width: 400px)  {
    #mobileMenuModal .btn-close {
        top: 12% !important;
        right: 5% !important;
    }
        .mobile-menu-link {
        font-size: 18px;
        padding: 10px 0;
    }
}

@media (min-width: 360px) and (max-width: 376px) {
    #mobileMenuModal .btn-close {
        top: 15% !important;
        right: 5% !important;
    }
        .mobile-menu-link {
        font-size: 16px;
        padding: 10px 0;
    }
}

@media (min-width: 320px) and (max-width: 360px) {
    .mobile-menu-link {
        font-size: 15px;
        padding: 10px 0;
    }
}

@media (min-width: 300px) and (max-width: 320px) {
    .mobile-menu-link {
        font-size: 14px;
        padding: 10px 0;
    }
}

