nav {
    position: relative;
}
nav button {
    visibility: hidden;
}

@media (max-width: 1200px) {
    nav button {
        position: absolute;
        right: 10px;
        top: 10px;
    }
    nav button.open {
        visibility: visible;
        width: 30px;
        color: white;
    }

    nav {
        visibility: hidden;
        width: 30px;
    }

    nav.active button.open {
        visibility: hidden;
    }

    nav.active button.close {
        visibility: visible;
        width: 30px;
    }
    nav.active {
        position: absolute;
        visibility: visible;
        right: 0;
        top: 30px;
    }
    nav.active a {
        width: 100%;
        float: right;
    }
    nav.active {
        flex-direction: column;
        gap: 15px !important;
        width: 50%;
        background: var(--yellow2);
        border-radius: 5px;
        position: absolute;
        z-index: 99;
        padding: 20px;
        right: 0;
        border: 1px solid var(--orange);
    }
    .call-us {
        visibility: hidden;
    }
    nav {
        margin-top: 0 !important;
    }
}