@media all and (min-width: 1201px) {
    .fullmenu {
        display: none;
    }
}
@media all and (max-width: 1200px) {
    .fullmenu {
        display: block;
    }
    .fullmenu .aside-section {
        height: 100vh;
        top: 0;
        bottom: 0;
        position: absolute;
        overflow: hidden;
        z-index: 10000000;
    }
    .fullmenu .aside-left {
        display: block;
        width: 38%;
        left: 0;
        background: center / cover url("/public/images/fullmenu.jpg") no-repeat;
        -webkit-transform: translateY(-100%);
        -moz-transform: translateY(-100%);
        -ms-transform: translateY(-100%);
        -o-transform: translateY(-100%);
        transform: translateY(-100%);
        transition: var(--transition);
    }
    .fullmenu .aside-right {
        width: 62%;
        right: 0%;
        background-color: var(--color-basic);
        -webkit-transform: translateX(100%);
        -moz-transform: translateX(100%);
        -ms-transform: translateX(100%);
        -o-transform: translateX(100%);
        transform: translateX(100%);
        transition: var(--transition);
        display: flex;
        align-items: center;
        flex-wrap: wrap;
        padding: 0 3.5% 0 5.5%
    }
    .fullmenu input[type="checkbox"] {
        display: none;
    }
    /* .fullmenu input[type="checkbox"]:checked ~ label {
    } */
    .fullmenu input[type="checkbox"]:checked ~ label .bar {
        border-color: var(--color-white);
    }
    .fullmenu input[type="checkbox"]:checked ~ .fullmenu-wrap .aside-left {
        transform: translateY(0%);
    }
    .fullmenu input[type="checkbox"]:checked ~ .fullmenu-wrap .aside-right {
        transform: translateX(0%);
    }
    .fullmenu input[type="checkbox"]:checked ~ label .top {
        -webkit-transform: translateY(7px) rotateZ(45deg);
        -moz-transform: translateY(7px) rotateZ(45deg);
        -ms-transform: translateY(7px) rotateZ(45deg);
        -o-transform: translateY(7px) rotateZ(45deg);
        transform: translateY(7px) rotateZ(45deg);
    }
    .fullmenu input[type="checkbox"]:checked ~ label .bottom {
        -webkit-transform: translateY(-7px) rotateZ(-45deg);
        -moz-transform: translateY(-7px) rotateZ(-45deg);
        -ms-transform: translateY(-7px) rotateZ(-45deg);
        -o-transform: translateY(-7px) rotateZ(-45deg);
        transform: translateY(-7px) rotateZ(-45deg);
    }
    .fullmenu input[type="checkbox"]:checked ~ label .middle {
        width: 0;
        border: 1px solid transparent;
    }
    .fullmenu label {
        z-index: 100000000000000;
        cursor: pointer;
        position: absolute;
        top: 50%;
        right: var(--space-40);
        transform: translateY(-50%);
        display: none;
        padding: 3px 0;
        background-color: transparent;
        display: inline-block;
    }
    .fullmenu .bar {
        display: block;
        border: 1px solid var(--color-white);
        width: 25px;
        transition: var(--transition);
    }
    .fullmenu .bar:hover {
        opacity: 0.6;
    }
    .fullmenu .middle {
        width: 18px;
        margin: 5px 0;
    }
    .fullmenu nav {
        width: 100%;
        height: auto
    }
    .fullmenu nav ul.depth1 {
        height: 100%;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
    }
    .fullmenu nav ul.depth1 > li:not(:last-child) {
        margin-bottom: var(--space-20)
    }
    .fullmenu nav ul.depth1 > li > a {
        position: relative;
        color: var(--color-white);
        font-size: var(--font-20);
        font-weight: var(--fw-bold);
    }
    .fullmenu nav ul.depth2 {
        margin-top: var(--space-15);
    }
    .fullmenu nav ul.depth2 > li {
        margin-bottom: var(--space-10)
    }
    .fullmenu nav ul.depth2 > li > a {
        position: relative;
    }
    .fullmenu nav ul.depth2 > li:not(:last-child) {
        margin-right: 0
    }
    .fullmenu nav ul.depth2 > li > a::after {
        content: "";
        position: absolute;
        bottom: 0;
        background-color: var(--color-basic);
        left: 0;
        right: 0;
        height: 1px;
    }
    .fullmenu nav ul.depth2 > li > a::before {
        content: "";
        position: absolute;
        bottom: 0;
        background-color: var(--color-brown-f5f);
        left: 0;
        height: 1px;
        z-index: 1;
        width: 100%;
        transition: var(--transition);
    }
    .fullmenu nav ul.depth2 > li > a:hover:before {
        -webkit-transform: translateX(100%);
        -moz-transform: translateX(100%);
        -ms-transform: translateX(100%);
        -o-transform: translateX(100%);
        transform: translateX(100%);
    }
    .fullmenu nav ul.depth2 > li > a:hover {
        font-weight: var(--fw-bold);
        color: var(--color-dark);
    }
    .fullmenu nav ul.navbar-nav > li.on > a,
    .fullmenu nav ul.navbar-nav > li > a:hover {
        color: var(--color-primary);
    }
}
    @media all and (max-width: 1000px) {
        
    }
    @media all and (max-width: 640px) {
        .fullmenu .aside-right {
            width: 100%;
        }
        .fullmenu .aside-left {
            display:none
        }
    }