.header__wrapper {
    background-color: var(--blackSecond);
}
header > div {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding: 48px 0;
}

.header__nav {
    display: flex;
    flex-direction: row;
}
.header__nav > a {
    display: none !important;
}
.header__nav > ul {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 39px;
}
.header__nav > a {
    display: none;
}
.header__buttons {
    display: flex;
    flex-direction: row;
    align-items: stretch;
    gap: 20px;
}
.header__buttons > a {
    width: 263px;
    z-index: 80;
}

@media (max-width: 1342px) {
    header > div {
        padding: 16px 0;
    }
}

@media (max-width: 1342px) {
    .header__wrapper > .wrapper > a > svg {
        max-width: 40vw;
    }
    .header__nav .change_lang {
        margin-bottom: 30px;
    }
    .header__nav > a {
        margin-bottom: 12px;
    }
    .header__buttons > a {
        display: none;
    }
    .mobile__menu {
    }
    .header__wrapper > div {
        padding: 0;
    }
    .header__wrapper > div > a {
        max-width: 165px;
        z-index: 600;
        transform: translateY(6px);
    }

    .header__nav {
        position: absolute;
        top: 0;
        left: 0;
        width: 100vw;
        height: 100vh;
        background-color: var(--blackPrimary2);
        backdrop-filter: blur(8px);
        z-index: 50;
        transform: translateX(100%) translateY(-0%);
        transition: all 0.4s cubic-bezier(0.075, 0.82, 0.165, 1);
        display: flex;
        flex-direction: column;
    }
    .header__nav > ul {
        /* margin-left: 6%; */
        /* margin-top: 94px; */
        margin-top: 64px;
        margin-left: 3%;
        flex-direction: column;
        align-items: start;
        gap: 40px;
        height: 80vh;
        overflow-y: auto;
        overflow-x: hidden;
    }
    .header__nav > a {
        display: inline-block !important;
        margin-top: auto;
        margin-left: auto;
        margin-right: auto;
        margin-bottom: 52px;
        z-index: 90;
        max-width: 90%;
        color: var(--textBtn) !important;
    }
    .navOpen {
        left: 50%;
        transform: translateX(-50%) translateY(-0%);
    }
}
@media (max-width: 768px) {
    .header__nav > ul {
        margin-left: 6%;
    }
}
@media (max-width: 425px) {
    .header__wrapper > .wrapper > a > svg {
        transform: translateY(1vw);
    }
}
