.site-head {
    position: fixed;
    top: 1.0833rem;
    right: calc(var(--container-abs-offset) - 0.2rem);
    left: calc(var(--container-abs-offset) - 1.5rem);
    z-index: 10;
    width: auto;
}
@media only screen and (max-width: 987px) {
    .site-head {
        right: calc(var(--container-offset) / 2);
        left: calc(var(--container-offset) / 2);
    }
}
.site-head__inner {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 2;
    padding: 0.2rem 0.2rem 0.2rem 1.5rem;
    width: 100%;
    transition: transform 0.5s cubic-bezier(0.645, 0.045, 0.355, 1);
    will-change: transform;
}
@media only screen and (max-width: 987px) {
    .site-head__inner {
        padding-top: 0;
        padding-right: 0;
        padding-bottom: 0;
    }
}
.is-nav-hidden .site-head__inner {
    transform: translate3d(0, calc(-100% - 1.0833rem), 0);
}
.site-head .s__toggle {
    display: none;
}
@media only screen and (max-width: 987px) {
    .site-head .s__toggle {
        position: relative;
        z-index: 4;
        display: block;
        width: 3rem;
        height: 3rem;
        background-color: var(--color-brand-5);
        border-radius: 50%;
        cursor: pointer;
    }
}
.site-head .s__toggle__line {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 17px;
    height: 3px;
    background-color: #fff;
    border-radius: 999em;
    transition: translate 0.2s cubic-bezier(0.86, 0, 0.07, 1),
        rotate 0.2s cubic-bezier(0.86, 0, 0.07, 1);
}
.site-head .s__toggle__line:first-child {
    translate: -50% calc(-50% - 3.5px) 0;
}
.site-head .s__toggle__line:last-child {
    translate: -50% calc(-50% + 3.5px) 0;
}
.is-nav-opened .site-head .s__toggle {
    background-color: var(--color-brand-3);
}
.is-nav-opened .site-head .s__toggle__line:first-child {
    rotate: 45deg;
    translate: -50% -50% 0;
}
.is-nav-opened .site-head .s__toggle__line:last-child {
    rotate: -45deg;
    translate: -50% -50% 0;
}
.site-head .s__logo {
    position: relative;
    z-index: 3;
}
.site-head .s__logo a {
    display: inline-block;
}
.site-head .s__logo img {
    width: auto;
    height: 1.5em;
}
@media only screen and (max-width: 987px) {
    .site-head .s__wrapper {
        position: absolute;
        top: calc(100% + 1.1112rem);
        right: 0;
        z-index: 3;
        width: 100%;
        max-width: 24rem;
        background-color: var(--color-brand-5);
        border-radius: 1.5rem;
        opacity: 0;
        overflow: hidden;
        pointer-events: none;
        will-change: opacity;
    }
}
@media only screen and (max-width: 987px) {
    .is-nav-opened .site-head .s__wrapper {
        opacity: 1;
        pointer-events: auto;
    }
}
@media only screen and (max-width: 987px) {
    .site-head .s__wrapper__inner {
        position: relative;
        padding: 1.75rem 2rem 0;
    }
}
.site-head .s__wrapper__footer {
    position: relative;
    display: none;
    margin: 1.2222rem 0 0;
    width: 100%;
}
@media only screen and (max-width: 987px) {
    .site-head .s__wrapper__footer {
        display: block;
    }
}
.site-head .s__wrapper__footer__background {
    position: absolute;
    right: -2rem;
    bottom: 0;
    left: -2rem;
    width: auto;
    height: 62.7986%;
    background-color: var(--color-brand-8);
    border-radius: 0 0 1.5rem 1.5rem;
    transform-origin: 100% 50%;
}
.site-head .s__wrapper__footer .s__head {
    width: 100%;
}
.site-head .nav-main {
    position: relative;
    z-index: 3;
}
.site-head__menu {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: normal;
    margin: 0;
    padding: 0;
    list-style: none;
    font-size: var(--font-size-t-sm);
    font-weight: 600;
    line-height: 1;
}
@media only screen and (max-width: 987px) {
    .site-head__menu {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
        font-size: 2.1111rem;
    }
}
.site-head__menu .menu-item {
    margin: 0 2em 0 0;
}
@media only screen and (max-width: 987px) {
    .site-head__menu .menu-item {
        margin: 0 0 1rem;
    }
}
.site-head__menu .menu-item:last-child {
    margin-right: 0;
}
@media only screen and (max-width: 987px) {
    .site-head__menu .menu-item.btn .btn-plain {
        color: var(--color-white);
    }
}
.site-head__menu .menu-item .btn-plain {
    display: block;
}
.site-head__menu .menu-item--home {
    display: none;
}
@media only screen and (max-width: 987px) {
    .site-head__menu .menu-item--home {
        display: block;
    }
}
.site-head__menu .menu-item__line {
    position: absolute;
    bottom: 0.2em;
    left: 0.5em;
    width: calc(100% - 1em);
    height: 0.1rem;
}
@media only screen and (max-width: 987px) {
    .site-head__menu .menu-item__line {
        display: none;
    }
}
.site-head__menu .menu-item__line path {
    stroke-width: 0;
    transition: stroke-width 0s linear 0.1s;
}
.site-head__menu .menu-item__line path:first-child {
    stroke: var(--color-brand-2);
}
.site-head__menu .menu-item__line path:last-child {
    stroke: var(--color-brand-5);
}
.site-head__menu .menu-link {
    position: relative;
    padding: 0.5em;
    color: var(--color-black);
    transition: color 0.2s ease-in-out;
}
@media only screen and (max-width: 987px) {
    .site-head__menu .menu-link {
        padding: 0;
    }
}
.site-head__menu .menu-link:before {
    position: absolute;
    top: calc(50% - 3px);
    left: -1rem;
    display: none;
    width: 6px;
    height: 6px;
    background: currentcolor;
    border-radius: 50%;
    transform: translate3d(1rem, 0, 0) scale(0);
    transition: transform 0.4s cubic-bezier(0.86, 0, 0.07, 1);
    content: "";
}
@media only screen and (max-width: 987px) {
    .site-head__menu .menu-link:before {
        display: block;
    }
}
.site-head__menu .menu-link:hover .menu-item__line path {
    transition-delay: 0s;
}
.site-head__menu .menu-link:hover .menu-item__line path:first-child {
    stroke-width: 0.08rem;
}
.site-head__menu .menu-link:hover .menu-item__line path:last-child {
    stroke-width: 0.1rem;
}
.site-head__menu .current-menu-item .menu-link {
    color: var(--color-brand-5);
}
@media only screen and (max-width: 987px) {
    .site-head__menu .current-menu-item .menu-link {
        color: var(--color-black);
    }
}
.site-head__menu .current-menu-item .menu-link:before {
    transform: translate3d(0, 0, 0) scale(1);
}
@media only screen and (max-width: 987px) {
    .site-head__menu .btn-plain {
        color: var(--color-black);
        font-size: 1em;
    }
    .site-head__menu .btn-plain__inner {
        padding: 0;
        border-radius: 0;
        overflow: visible;
    }
    .site-head__menu .btn-plain__background {
        display: none;
    }
    .site-head__menu .btn-plain__arrow {
        display: none;
    }
    .site-head__menu .btn-plain:hover {
        background: none;
        color: var(--color-white);
    }
}
.site-head .s__socials {
    display: none;
    margin: 1rem 0 0;
}
@media only screen and (max-width: 987px) {
    .site-head .s__socials {
        display: flex;
    }
}
.site-head .s__background {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 2;
    width: 100%;
    height: 100%;
    background-color: #fff;
    border-radius: 1.7em;
    translate: 0 -30% 0;
    scale: 1 0;
    transform-origin: 50% 0%;
    transition: scale 0.3s cubic-bezier(0.86, 0, 0.07, 1),
        translate 1s cubic-bezier(0.19, 1, 0.22, 1);
    will-change: translate, scale;
}
@media only screen and (max-width: 987px) {
    .site-head .s__background {
        translate: 0 0 0;
        scale: 1 1;
    }
}
.is-nav-small .site-head .s__background {
    translate: 0 0 0;
    scale: 1 1;
}
.site-head .s__overlay {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1;
    display: none;
    width: 100%;
    height: 100%;
    background-color: rgba(253, 250, 245, 0.8);
    opacity: 0;
    transition: opacity 0.2s linear;
    pointer-events: none;
    will-change: opacity;
}
@media only screen and (max-width: 987px) {
    .site-head .s__overlay {
        display: block;
    }
}
.is-nav-opened .site-head .s__overlay {
    opacity: 1;
    pointer-events: auto;
}
