.header {
    padding-block: 24px;
    position: sticky;
    top: 0;
    width: 100%;
    background: var(--color-white-solid);
    z-index: 100;
}

.header__row {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    align-items: center;

    @media screen and (max-width: 1024px) {
        flex-wrap: wrap;
    }
}

.header__left-column {
    @media screen and (min-width: 1025px) {
        display: grid;
        grid-template-columns: 98px 1fr;
        gap: 40px;
        align-items: center;
    }
}

.header__nav {
    @media screen and (max-width: 1024px) {
        margin-bottom: 20px;
    }
}

.header__nav ul {
    display: flex;
    border-radius: 160px;
    background: var(--color-grey-94);
    padding: 4px 5px;
}

@media screen and (max-width: 1024px) {
    .header__nav ul {
        flex-direction: column;
        border-radius: 20px;
        padding: 20px;
        gap: 10px;
    }
}

.header__nav ul li a {
    color: #111;
    font-size: 14px;
    font-weight: 500;
    line-height: 1;
    letter-spacing: 0.28px;
    padding: 9px 18px;

    @media screen and (max-width: 1024px) {
        border-radius: 140px;
    }
}

@media screen and (max-width: 1024px) {
    .header__nav ul li.current-menu-item a {
        background: var(--color-grey-37);
        color: var(--color-grey-97);
    }
}

.header__right-column {
    display: flex;
    align-items: center;
}

.header__email {
    color: #111;
    font-size: 14px;
    font-weight: 500;
    line-height: 1;
    letter-spacing: 0.28px;
    text-decoration-line: underline;
    text-decoration-style: solid;
    text-decoration-skip-ink: auto;
    text-decoration-thickness: auto;
    text-underline-offset: auto;
    text-underline-position: from-font;
    padding: 9px 18px;
}

.header__social {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--color-grey-94);
    padding: 12px;
}

.header__social--desktop {
    @media screen and (max-width: 1024px) {
        display: none;
    }
}

.header__social--mobile {
    @media screen and (min-width: 1025px) {
        display: none;
    }
}

.header__burger {
    border-radius: 160px;
    background: var(--color-grey-94);
    padding: 13px 22px;
    font-size: 14px;
    font-weight: 500;
    line-height: 1;
    letter-spacing: 0.28px;
}

.header__burger.active > :first-child {
    display: none;
}

.header__burger:not(.active) > :last-child {
    display: none;
}

@media screen and (min-width: 1025px) {
    .header__burger {
        display: none;
    }
}

@media screen and (max-width: 1024px) {
    .header__left-column-info {
        position: absolute;
        top: 88px;
        left: 0;
        width: 100%;
        padding-inline: 10px;
        visibility: hidden;
        opacity: 0;
        transition: opacity 0.3s, visibility 0.3s;
        z-index: 100;
    }

    .header__left-column-info.show {
        visibility: visible;
        opacity: 1;
    }
}