.mobile__menu {
    display: none;
    z-index: 61;
    cursor: pointer;
}
.mobile__menu p {
    color: var(--greenPrimary) !important;
}
.burger {
    width: 60px;
    height: 60px;
    transition-duration: 0.5s;
    position: relative;
    scale: 0.4;
    cursor: pointer;
}
.open {
}
.open > .icon-left {
    background: transparent;
}
.open > .icon-left::before {
    transform: rotateZ(45deg) scaleX(1.4) translate(4px, 4px);
}
.open > .icon-left::after {
    transform: rotateZ(-45deg) scaleX(1.4) translate(4px, -4px);
}
.open > .icon-right {
    background: transparent;
}
.open > .icon-right::before {
    transform: rotateZ(-45deg) scaleX(1.4) translate(-4px, 4px);
}
.open > .icon-right::after {
    transform: rotateZ(45deg) scaleX(1.4) translate(-4px, -4px);
}

.icon-left {
    transition-duration: 0.5s;
    position: absolute;
    height: 8px;
    width: 50%;
    top: 30px;
    background-color: var(--greenPrimary);
}
.icon-left::before {
    transition-duration: 0.5s;
    position: absolute;
    width: 100%;
    height: 8px;
    background-color: var(--greenPrimary);
    content: "";
    top: -20px;
}
.icon-left::after {
    transition-duration: 0.5s;
    position: absolute;
    width: 100%;
    height: 8px;
    background-color: var(--greenPrimary);
    content: "";
    top: 20px;
}
.icon-left:hover {
    cursor: pointer;
}

.icon-right {
    transition-duration: 0.5s;
    position: absolute;
    height: 8px;
    width: 50%;
    top: 30px;
    background-color: var(--greenPrimary);
    left: 30px;
}
.icon-right::before {
    transition-duration: 0.5s;
    position: absolute;
    width: 100%;
    height: 8px;
    background-color: var(--greenPrimary);
    content: "";
    top: -20px;
}
.icon-right::after {
    transition-duration: 0.5s;
    position: absolute;
    width: 100%;
    height: 8px;
    background-color: var(--greenPrimary);
    content: "";
    top: 20px;
}

@media (max-width: 1342px) {
    .mobile__menu {
        display: flex;
        align-items: center;
        justify-content: center;
        transform: translateX(14px);
    }
}
header,
.fadeInDown {
    animation-delay: 0.5s !important;
}
