header.header {
    max-width: 100%;
    width: 100%;
    padding: 20px 0;
    position: fixed;
    z-index: 1;
}

.header__inner {
    display: flex;
    align-items: center;
    gap: 16px;
    max-width: 1376px;
    width: 100%;
    padding: 16px 32px;
    background: #FEFEFE;
    border-radius: 40px;
}

.header__logo {
    display: inline-flex;
}
.header__logo svg,
.header__logo img {
    display: block;
    max-width: 100%;
    width: 100%;
    height: 40px;
}

.header__inner-block-menu {
    display: flex;
    justify-content: center;
    flex: 1 1 auto;
}

.header__menu-list {
    display: block;
}

.header__menu-items {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 60px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.header__menu-items a {
    display: inline-flex;
    align-items: center;
    font-size: 24px;
    line-height: 130%;
    font-weight: 500;
    letter-spacing: -0.45px;
    color: #161616;
    text-decoration: none;
}
.header__menu-items a:hover {
    text-decoration: underline;
}

.header__inner .btn.btn--solid {
    min-width: 131px;
    padding: 13px;
}

.header__burger {
    --w: 24px;
    --h: 14px;
    width: var(--w);
    height: var(--h);
    display: none;
    position: relative;
    cursor: pointer;
}
.header__burger span {
    position: absolute;
    left: 0;
    right: 0;
    width: 16px;
    height: 2px;
    background: #161616;
    border-radius: 2px;
    transform-origin: 8% 50%;
    transition: transform .2s ease, opacity .2s ease, top .2s ease;
}
.header__burger span:nth-child(1) {
    top: 0;
}
.header__burger span:nth-child(2) {
    top: calc(50% - 1px);
}
.header__burger span:nth-child(3) {
    top: calc(100% - 2px);
}

@media (max-width: 992px) {
    :root {
        --header-h: 64px;
    }
    header.header {
        padding: 0;
    }
    .header__burger {
        display: inline-block;
    }
    .header__inner {
        padding: 6px 16px 10px 30px;
        gap: 12px;
        background: #FEFEFE;
        border-radius: 0;
        box-shadow: 0 4px 10px rgba(28, 28, 28, 0.04);
    }

    .header__menu-list {
        position: fixed;
        inset: var(--header-h) 0 0 0;
        background: #fff;
        padding: 24px;
        overflow-y: auto;
        opacity: 0;
        visibility: hidden;
        transform: translateY(-8px);
        transition: transform .2s ease, opacity .2s ease, visibility 0s linear .2s;
    }
    .header__menu-items {
        flex-direction: column;
        align-items: stretch;
        justify-content: flex-start;
        gap: 12px;
        min-height: 0;
    }

    html:not(.nav-open) .header__menu-items > li {
        display: none;
    }
    html:not(.nav-open) .header__inner-block-menu {
        justify-content: flex-end;
    }

    html.nav-open .header__menu-list{
        opacity: 1;
        visibility: visible;
        background: #FFFFFF;
        z-index: 7;
        transform: translateY(12px);
        transition: transform .2s ease, opacity .2s ease;
    }
	
	html.nav-open,
html.nav-open body {
    overflow: hidden;
/*     height: 100%; */
}
	
    html.nav-open .header__menu-items > li {
        display: block;
    }

    html.nav-open .header__burger span:nth-child(1) {
        top: 8px;
        transform: rotate(45deg);
    }
    html.nav-open .header__burger span:nth-child(2) {
        opacity: 0;
    }
    html.nav-open .header__burger span:nth-child(3) {
        top: 8px;
        transform: rotate(-45deg);
    }
}