.menu-toggle {
    position: relative;
    width: 50px;
    height: 50px;
    cursor: pointer;
    display: flex !important;
    align-items: center;
    justify-content: center;
    transition: background 0.3s ease-in-out;
    z-index: 1000;
}

.menu-toggle.active{
    background-color: transparent;
}

.bar {
    display: block;
    width: 35px;
    height: 4px;
    margin: 3px 0;
    transition: all 0.3s ease-in-out;
    background-color: var(--color_2);
    position: absolute;
    left: 13px;
    border-radius: 19px;
}

.bar:nth-child(1) {
    top: 13px;
}

.bar:nth-child(2) {
    top: 20px;
}

.bar:nth-child(3) {
    top: 27px;
}

.menu-toggle {
    display: flex;
    z-index: 20;
}

.menu-toggle.active .bar:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
}

.menu-toggle.active .bar:nth-child(2) {
    opacity: 0;
    /* transform: translateY(-2px) rotate(-45deg); */
}

.menu-toggle.active .bar:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}