/*
@media (max-width: 2000px){
.master-menu-content.open {
    left: 0;
    display: flex;
    transition: .3s;
}
.master-menu-content {
    transition: .3s;
    display: none;
    left: calc(var(--menu-width) * -1);
    position: absolute;
    z-index: 10;
    height: calc( 100% - var(--header-height));
}

.toggle-menu {
    display: flex;
    position: fixed;
    top: 0;
    left: 0;
    height: var(--header-height);
    width: var(--header-height);
    justify-content: center;
    align-items: center;
    font-size: calc( var(--header-height) / 2.5 );
    cursor: pointer;
    z-index: 0;
}
}
*/