.mobile_menu {
    z-index: 61;
    cursor: pointer;
    display: none;
}
.burger {
    width: 30px;
    height: 30px;
    position: relative;
    /* scale: 0.4; */
    cursor: pointer;

    transition: all 2.1s cubic-bezier(0.075, 0.82, 0.165, 1);
}
.burger > *,
.burger > *::after,
.burger > *::before {
    height: 2px !important;
}

.open {
}
.open > .icon-left {
    background: transparent;
}
.open > .icon-left::before {
    transform: rotateZ(45deg) scaleX(1.4) translate(4px, 4px);
    /* width: 100%; */
    /* top: -700%; */

    width: 190%;
    top: -330%;
}
.open > .icon-left::after {
    transform: rotateZ(-45deg) scaleX(1.4) translate(4px, -4px);
    width: 100%;
    top: 660%;
    background-color: var(--white);
}
.open > .icon-right {
    background: transparent !important;
}
.open > .icon-right::before {
    transform: rotateZ(-45deg) scaleX(1.4) translate(-4px, 4px);
    width: 100%;
}
.open > .icon-right::after {
    transform: rotateZ(45deg) scaleX(1.4) translate(-4px, -4px);
    width: 100%;
    background-color: transparent !important;
}

.icon-left {
    transition-duration: 0.5s;
    position: absolute;
    height: 8px;
    width: 50%;
    top: 50%;
    transform: translateY(-50%);
    background-color: transparent;
    /* background-color: var(--white); */
}
.icon-left::before {
    transition-duration: 0.5s;
    position: absolute;
    width: 100%;
    height: 8px;
    background-color: var(--white);
    content: "";
    top: -500%;
}
.icon-left::after {
    transition-duration: 0.5s;
    position: absolute;
    width: 100%;
    height: 8px;
    background-color: transparent;
    /* background-color: var(--white); */
    content: "";
    top: 500%;
}
.icon-left:hover {
    cursor: pointer;
}

.icon-right {
    transition-duration: 0.5s;
    position: absolute;
    height: 8px;
    width: 70%;
    top: 50%;
    transform: translateY(-50%);
    background-color: var(--white);
    right: 0;
}
.icon-right::before {
    transition-duration: 0.5s;
    position: absolute;
    width: 100%;
    height: 8px;
    background-color: var(--white);
    content: "";
    top: -500%;
}
.icon-right::after {
    transition-duration: 0.5s;
    position: absolute;
    width: 50%;
    right: 0;
    height: 8px;
    background-color: var(--white);
    content: "";
    top: 500%;
}

@media (max-width: 1024px) {
    .mobile_menu {
        display: block;
    }
}
header,
.fadeInDown {
    animation-delay: 0.5s !important;
}

header.scroll .icon-right::after,
header.scroll .icon-right::before,
header.scroll .icon-right,
header.scroll .icon-left::before,
header.scroll .open > .icon-left::after {
    background-color: var(--white);
}
