@media (max-width: 991px) {
    .navbar {
        margin: 0 32px;
        padding: 24px 0 0;
    }
}
@media (max-width: 767px) {
    .navbar {
        margin: 0;
        padding: 7.5px 16px;
        background: #ffffff;
        position: static;
    }

    .nav-item {
        margin: 0;
    }

    .nav-link {
        padding: 0;
        font-weight: 600;
        color: #ffffff;
    }

    .nav-link:focus,
    .nav-link:hover {
        color: #ffffff;
    }

    #mobileMenu {
        font-family: "GeovaTrial";
        font-weight: 600;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 70vh;
        padding: 32px 24px;
        background: #000000cc;
        border-radius: 0 0 24px 24px;
        z-index: 1050;
        overflow-y: auto;
        -ms-overflow-style: none;
        scrollbar-width: none;
        transform: translateY(-100%);
        transition: transform 0.3s ease;
    }

    #mobileMenu::-webkit-scrollbar {
        display: none;
    }

    #mobileMenu.show {
        transform: translateY(0);
    }

    .close-btn {
        top: 20px;
        right: 20px;
    }

    .collapse-btn {
        width: 35px;
        height: 35px;
        padding: 0;
        border: none;
        line-height: 1;
        background: transparent;
    }

    .collapse-btn > span {
        display: inline-block;
        width: 35px;
        height: 35px;
        position: relative;
        z-index: 1;
    }

    .collapse-btn > span::before {
        content: "";
        position: absolute;
        z-index: -1;
        inset: 0;
        background-image: url("../assets/icons/burger-icon.svg");
        background-repeat: no-repeat;
        background-position: center;
        background-size: cover;
    }

    .collapse-btn:active {
        border: none;
    }

    .close-btn > span {
        display: inline-block;
        width: 15px;
        height: 15px;
        position: relative;
        z-index: 1;
    }

    .close-btn > span::before {
        content: "";
        position: absolute;
        z-index: -1;
        inset: 0;
        background-image: url("../assets/icons/close-btn.svg");
        background-repeat: no-repeat;
        background-position: center;
        background-size: cover;
    }

    .nav-link-container {
        padding: 64px;
    }

    #mobileMenu li {
        list-style-type: none;
        text-align: center;
        padding: 16px;
    }

    .nav-item.active {
        border-bottom: 1px solid #ffffff;
    }

    .nav-item.active .nav-link {
        font-weight: 700;
    }

    .nav-contact-btn {
        text-decoration: none;
        text-align: center;
        color: #ffffff;
        font-weight: 600;
        font-size: 18px;
        padding: 18px;
        border: 1px solid #ffffff;
        border-radius: 100px;
    }
}

@media (max-width: 576px) {
    .navbar-brand img {
        height: 35px;
    }
}
