body {
    position: relative;
    opacity: 0.01;
}

body.modal-opened {
    overflow: hidden;
}

.search-wrapper {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 5px;
    top: 17px;
    right: 210px;
    cursor: pointer;

    &:hover {
        .search-toggle {
            background-color: #1069BB;
        }

        .search-title {
            color: #1069BB;
        }
    }
}

@media (max-width: 1700px) {
    .search-wrapper {
        right: 60px;
    }
}

@media (max-width: 1400px) {
    .search-wrapper {
        position: relative;
        top: 2px;
        right: 0;
    }
}

.search-title {
    font-size: 14px;
    line-height: 22px;
    color: rgba(0, 0, 0, .5);
    transition: color 200ms ease;
    will-change: color;
    cursor: pointer;
}

/* Кнопка поиска */
.search-toggle {
    background: none;
    border: none;
    mask-image: url("../img/search-icon-a44f6acb2baebd7eaea62837925398c2.svg");
    mask-position: center;
    mask-size: contain;
    background-color: rgba(0, 0, 0, .5);
    width: 17px;
    height: 17px;
    transition: all 200ms ease;
    cursor: pointer;
}

/* Затемнение фона */
.search-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    display: flex;
    align-items: flex-start;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 9999;
}

/* Активное состояние */
.search-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Блок поиска */
.search-popup {
    position: relative;
    background: #fff;
    width: 100%;
    padding: 20px 200px;
    transform: translateY(-20px);
    transition: transform 0.3s ease;
}

.search-form {
    position: relative;
    display: flex;
    background-color: #004A8F;
    border-radius: 26px;
}

.search-overlay.active .search-popup {
    transform: translateY(0);
}

/* Поле */
.search-input {
    flex: 1;
    padding: 12px 15px;
    font-size: 16px;
    outline: none;
    margin: 1px 90px 1px 1px;
    background-color: #fff;
    border-radius: 26px;
}

.search-submit {
    position: absolute;
    border: none;
    border-radius: 26px;
    cursor: pointer;
    font-size: 18px;
    right: 2%;
    top: 50%;
    mask-image: url("../img/search-icon-a44f6acb2baebd7eaea62837925398c2.svg");
    mask-position: center;
    mask-size: contain;
    background-color: #fff;
    width: 40px;
    height: 40px;
    transform: translateY(-50%);
}

.search-close {
    position: absolute;
    top: 50%;
    right: -50px;
    background: none;
    border: none;
    font-size: 26px;
    cursor: pointer;
    transform: translateY(-50%);
}

.search-input:focus {
    border-color: #000;
}

.search-results {
    max-height: 400px;
    overflow-y: auto;
}

.search-result-item {
    padding: 10px 0;
    border-bottom: 1px solid #eee;
}

.search-result-item a {
    text-decoration: none;
    color: #000;
}

.search-result-item mark {
    background-color: transparent;
    color: #25518d;
    font-weight: 700;
}

.body {
    position: relative
}

.page-header {
    display: flex;
    position: fixed;
    width: 100%;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    font-size: 16px;
    z-index: 2;
    background: #fff
}

.page-header .first-level {
    display: flex;
    flex-direction: row;
    align-items: flex-end;
    justify-content: flex-start;
    padding-top: 50px;
    padding-bottom: 20px
}

@media (max-width: 1400px) {
    .page-header .first-level {
        padding-top: 40px;
        padding-bottom: 10px
    }
}

@media (max-width: 600px) {
    .page-header .first-level {
        padding-top: 25px
    }
}

.page-header .first-level .logo {
    width: 197px;
    height: 25px;
    background: url("../img/logo-84852a10df506c2a592746d350dc6f05.svg") no-repeat center bottom/100% auto;
    -webkit-transition: opacity 200ms ease;
    -moz-transition: opacity 200ms ease;
    -ms-transition: opacity 200ms ease;
    transition: opacity 200ms ease;
    will-change: opacity;
    font-size: 0;
    z-index: 1000;
}

.page-header .first-level .logo:hover {
    opacity: .65
}

.page-header .first-level .actions {
    margin-left: 26px
}

@media (max-width: 1400px) {
    .page-header .first-level .actions {
        display: none
    }
}

.page-header .first-level .actions > * {
    border-bottom-style: dashed
}

.page-header .first-level .actions > * + * {
    margin-left: 18px
}

.page-header .first-level .nav {
    display: flex;
    flex-direction: row;
    align-items: flex-end;
    justify-content: flex-end;
    flex-grow: 1
}

@media (max-width: 1400px) {
    .page-header .first-level .nav > * {
        display: none
    }
}

.page-header .first-level .nav > * + * {
    margin-left: 24px
}

.page-header .first-level .nav > *.collections-link {
    position: relative;
    border-bottom-style: dashed
}

.page-header .first-level .nav > *.collections-link:before {
    content: '';
    display: block;
    position: absolute;
    width: 28px;
    height: 28px;
    transform: rotate(45deg) translate(50%, -50%);
    bottom: -36px;
    right: 50%;
    opacity: 0;
    background: #f1f1f1
}

.show-header-subnav .page-header .first-level .nav > *.collections-link:before {
    opacity: 1
}

.page-header .first-level .goto-site {
    display: flex;
    position: absolute;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    top: 16px;
    right: 430px;
    font-size: 14px;
    line-height: 22px;
    color: rgba(0, 0, 0, .5);
    transition: color 200ms ease;
    will-change: color;
}

.page-header .first-level .choose-city {
    cursor: pointer;
    display: flex;
    position: absolute;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    top: 16px;
    right: 480px;
    font-size: 14px;
    line-height: 22px;
    color: rgba(0, 0, 0, .5);
    transition: color 200ms ease;
    will-change: color;
}
.page-header .first-level .goto-tel {
    display: flex;
    position: absolute;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    top: 16px;
    right: 260px;
    font-size: 14px;
    line-height: 22px;
    color: rgba(0, 0, 0, .5);
    transition: color 200ms ease;
    will-change: color;

    &:hover {
        color: #1069BB;
    }
}

.page-header .first-level.right-position .goto-site {
    right: 210px;
}

.page-header .first-level.right-position #goto_shop {
    right: 340px;
}

.page-header .first-level.right-position .choose-city {
    right: 510px;
}

@media (max-width: 1700px) {
    .page-header .first-level.right-position .goto-site {
        right: 60px;
    }

    .page-header .first-level.right-position #goto_shop {
        right: 190px;
    }

    .page-header .first-level.right-position .choose-city {
        right: 360px;
    }
}

@media (max-width: 1400px) {
    .page-header .first-level.right-position .goto-site {
        right: 20px;
    }

    .page-header .first-level.right-position #goto_shop {
        right: 0;
    }

    .page-header .first-level.right-position .choose-city {
        right: 40px;
    }
}

.burger {
  cursor: pointer;
  position:absolute;
  right: 20px;
  top: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  color: #434343;
  z-index: 1000;
}

@media (max-width: 600px) {
    .burger {
        top: 25px;
    }
}

.burger svg {
    display: none;
}

.burger-icons {
    display: flex;
    gap: 16px;
    align-items: center;
    padding:10px 0;
    color: #a7a5a5;
}

.burger-icon {
    position: relative;
    display: block;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 1px solid #c4c4c4;

    &.phone {
        &::after {
            content: "";
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            display: inline-block;
            mask-image: url("../img/phone-icon-67507455f8f70de7f353f0a2036c30ab.svg");
            mask-size: contain;
            mask-position: center;
            mask-repeat: no-repeat;
            width: 18px;
            height: 100%;
            background-color: #7f7f7f;
        }
    }

    &.vk {
        &::after {
            content: "";
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            display: inline-block;
            mask-image: url("../img/vk-icon-5d0bb52c7a76e6064e5e4b653742fc9c.svg");
            mask-size: contain;
            mask-position: center;
            mask-repeat: no-repeat;
            width: 18px;
            height: 100%;
            background-color: #7f7f7f;
        }
    }
}

.mobile-menu {
    display: none;
    width: 100%;
    height: 100vh;
    flex-direction: column;
    background-color: white;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    padding: 80px 20px 20px;
    z-index: 999;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.mobile-nav {
    display:flex;
    flex-direction: column;
    margin-top: 20px;
}

.mobile-nav .href {
    width: max-content;
    border-bottom: solid #2F68B5 1px;
    font: 16px "Geometria", sans-serif;
    margin-bottom: 24px;
}

.mobile-menu.open {
    display: flex;
}

.search-toggle-mobil-wrapper {
    display: none;
}

@media (max-width: 935px) {
    .burger svg {
        display: block;
    }
    .burger {
        display: block;
    }

    .search-toggle-mobil-wrapper {
        display: flex;
        align-items: center;
        gap: 4px;
        font-size: 14px;
        line-height: 22px;
        color: rgba(0, 0, 0, .5);
        padding: 5px 0;
    }

    .search-popup {
        padding: 20px 16px 10px;
    }

    .search-close {
        display: none;
    }

    .search-input {
        height: 30px;
    }

    .search-submit {
        right: 3%;
    }

    .search-toggle-mobil {
        position: relative;
        background: none;
        border: none;
        cursor: pointer;
        font-size: 20px;
        mask-image: url("../img/search-icon-a44f6acb2baebd7eaea62837925398c2.svg");
        mask-position: center;
        mask-size: contain;
        background-color: rgba(0, 0, 0, .5);
        width: 17px;
        height: 17px;
    }

    .desktop-only {
        display: none !important;
    }
    .actions {
        display: none;
    }
    .goto-site-mobil,
    .choose-city-mobil {
        cursor: pointer;
        display:flex;
        padding: 5px 0;
        font-size: 14px;
        line-height: 22px;
        color: rgba(0, 0, 0, .5);
        transition: color 200ms ease;
        will-change: color;
        flex-direction: row;
    }
    .goto-site-mobil:hover,
    .choose-city-mobil:hover {
        color: #1069BB
    }
    .goto-site-mobil > *,
    .choose-city-mobil > * {
        position: relative;
        top: 2px;
        width: 17px;
        height: 17px;
        background: url("../img/link-02e2002432b59fbf3b6d72579328cd98.svg") no-repeat center center/contain;
        margin-right: 4px
}
    .goto-site-mobil > *:before,
    .choose-city-mobil > *:before{
        content: '';
        display: inline-block;
        position: absolute;
        width: 100%;
        height: 100%;
        left: 0;
        top: 0;
        background: url("../img/link-hover-bd46653da4f2c041f68f91cad80f58a4.svg") no-repeat center center/contain;
        opacity: 0;
        transition: opacity 200ms ease;
        will-change: opacity
}
    .goto-site-mobil:hover > *:before,
    .choose-city-mobil:hover > *:before {
        opacity: 1
}
    .page-header .first-level .goto-site,
    .page-header .first-level .choose-city,
    .page-header .first-level .goto-tel,
    .search-wrapper {
        display: none
    }
}
@media (min-width: 936px) {
    #mobileMenu {
        display: none !important;
    }
}

header.scrolled {
 box-shadow: 0 10px 10px rgba(0, 0, 0, 0.2);
 transition: background-color 0.3s ease, box-shadow 0.3s ease;
}
@media (max-width: 1700px) {
    .page-header .first-level .goto-site {
        right: 460px;
    }
    .page-header .first-level .goto-site .goto-site_shop {
        right: 460px !important;
    }
    .page-header .first-level .choose-city {
        right: 350px;
    }
    .page-header .first-level .goto-tel {
        right: 60px;
    }
    .page-header .first-level .goto-tel {
        right: 116px;
    }
    .search-toggle {
        right: 66px;
    }
    
}

@media (max-width: 1400px) {
    .page-header .first-level .goto-site,
    .page-header .first-level .choose-city,
    .page-header .first-level .goto-tel 
    {
        position: relative;
        right: 0;
        top: 2px;
        margin-right: 24px
    }

    .search-toggle {
        position: relative;
        right: 0;
        top: 0;
    }
}

.page-header .first-level .goto-site:hover,
.page-header .first-level .choose-city:hover {
    color: #1069BB
}

.page-header .first-level .goto-site > *,
.page-header .first-level .choose-city > * {
    position: relative;
    top: -2px;
    width: 17px;
    height: 17px;
    background: url("../img/link-02e2002432b59fbf3b6d72579328cd98.svg") no-repeat center center/contain;
    margin-right: 4px
}

.page-header .first-level .goto-site > *:before,
.page-header .first-level .choose-city > *:before {
    content: '';
    display: block;
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    background: url("../img/link-hover-bd46653da4f2c041f68f91cad80f58a4.svg") no-repeat center center/contain;
    opacity: 0;
    transition: opacity 200ms ease;
    will-change: opacity
}

.page-header .first-level .goto-site:hover > *:before,
.page-header .first-level .choose-city:hover > *:before {
    opacity: 1
}

.page-header .first-level .nav-button {
    display: none;
    position: relative;
    width: 20px;
    height: 18px
}

@media (max-width: 1400px) {
    .page-header .first-level .nav-button {
        display: block
    }
}

.page-header .first-level .nav-button, .page-header .first-level .nav-button * {
    cursor: pointer
}

.page-header .first-level .nav-button > * {
    position: absolute;
    width: 100%;
    height: 2px;
    top: calc(50% - 1px);
    left: 0;
    background: #000;
    -webkit-transition: background 200ms ease;
    -moz-transition: background 200ms ease;
    -ms-transition: background 200ms ease;
    transition: background 200ms ease;
    will-change: background
}

.page-header .first-level .nav-button.active > * {
    background: #1069BB
}

.page-header .first-level .nav-button > *:first-child {
    -webkit-transform: translate(0, -8px);
    -moz-transform: translate(0, -8px);
    -ms-transform: translate(0, -8px);
    transform: translate(0, -8px)
}

.page-header .first-level .nav-button > *:last-child {
    -webkit-transform: translate(0, 8px);
    -moz-transform: translate(0, 8px);
    -ms-transform: translate(0, 8px);
    transform: translate(0, 8px)
}

.page-header .last-level {
    display: none;
    flex-direction: row;
    align-items: flex-start;
    justify-content: flex-start;
    background: #f1f1f1;
    font-size: 16px
}

.show-header-subnav .page-header .last-level {
    display: flex;
    flex-direction: row;
    align-items: stretch;
    justify-content: flex-start
}

.page-header .last-level .sub-nav {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    flex-wrap: wrap;
    padding: 32px 0 40px;
    flex-grow: 1;
    flex-basis: 0%
}

.page-header .last-level .sub-nav > * {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start
}

.page-header .last-level .sub-nav > * + * {
    margin-top: 72px
}

.page-header .last-level .sub-nav .icon {
    display: flex;
    flex-direction: row;
    align-self: stretch;
    align-items: center;
    justify-content: flex-start;
    height: 40px;
    margin-bottom: 40px
}

.page-header .last-level .sub-nav .icon img {
    display: block;
    align-self: stretch;
    width: auto;
    height: 100%
}

.page-header .last-level .sub-nav .icon .caption {
    margin-left: 16px;
    font-size: 24px;
    line-height: 24px
}

.page-header .last-level .sub-nav .list {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 24px;
    align-items: flex-start;
    justify-content: flex-start
}

.page-header .last-level .sub-nav .list > * {
    display: flex;
    flex-direction: row;
    align-items: flex-end;
    justify-content: flex-start;
    white-space: nowrap;
    -webkit-transition: opacity 200ms ease;
    -moz-transition: opacity 200ms ease;
    -ms-transition: opacity 200ms ease;
    transition: opacity 200ms ease;
    will-change: opacity
}

.page-header .last-level .sub-nav .list > *.new {
    position: relative;
    margin-right: 24px;
}

.page-header .last-level .sub-nav .list > * > * {
    order: 1;
}

.page-header .last-level .sub-nav .list > *.new:before {
    content: 'NEW';
    display: inline-block;
    position: relative;
    margin-left: 10px;
    margin-right: -15px;
    top: 0px;
    font-size: 10px;
    line-height: 1em;
    padding: 4px 5px;
    border: 1px solid #1069BB;
    color: #1069BB;
    border-radius: 2px;
    order: 3;
}

.page-header .last-level .sub-nav .list > *:hover,
.page-header .last-level .sub-nav .icon > *:hover {
    color: #1069BB
}

.page-header .last-level .sub-nav .list > *.active {
    color: #1069BB
}

.page-header .last-level .sub-nav .list > * + * {
    margin-left: 0;
}

.page-header .last-level .sub-nav .list > *:after {
    content: '→';
    display: inline-block;
    position: relative;
    vertical-align: top;
    font-size: 18px;
    color: #1069BB;
    padding-left: 5px;
    order: 1;
}

.page-header .last-level .sub-nav .list > *.active:after {
    display: none
}

.page-content {
    position: relative;
    padding-top: 95px;
    z-index: 0
}

@media (max-width: 1280px) {
    .page-content {
        position: relative;
        padding-top: 75px
    }
}

@media (max-width: 600px) {
    .page-content {
        position: relative;
        padding-top: 60px
    }
}

.page-content-inner {
    position: relative;
    z-index: 0
}

.content-block {
    box-sizing: border-box;
    padding-left: 210px;
    padding-right: 210px
}

@media (max-width: 1700px) {
    .content-block {
        padding-left: 60px;
        padding-right: 60px
    }
}

@media (max-width: 1280px) {
    .content-block {
        padding-left: 20px;
        padding-right: 20px
    }
}

.page-section {
    position: relative;
    z-index: 0
}

.page-section > .section-inner {
    position: relative;
    z-index: 0
}

.page-footer {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    justify-content: space-between;
    padding-top: 40px;
    padding-bottom: 40px;
    border-top: 1px solid #dbdbdb;
    font-size: 16px
}

.goto-site-footer {
    display: flex;
    align-items: center;
    gap: 5px;
    padding-left: 65px;

    &::before {
        content: "";
        display: inline-block;
        width: 17px;
        height: 17px;
        background: url("../img/link-02e2002432b59fbf3b6d72579328cd98.svg") no-repeat center center/contain;
    }
}

@media (max-width: 1280px) {
    .page-footer {
        flex-direction: column;
        justify-content: flex-start;
        align-items: stretch;
        padding-top: 30px;
        padding-bottom: 40px
    }

    .goto-site-footer {
        padding-left: 0;
    }
}

@media (max-width: 980px) {
    .page-footer {
        padding-bottom: 20px
    }
}

@media (max-width: 600px) {
    .page-footer {
        padding-bottom: 40px
    }
}

.page-footer .nav {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start
}

@media (max-width: 1280px) {
    .page-footer .nav {
        order: 2;
        margin-top: 30px
    }
}

@media (max-width: 980px) {
    .page-footer .nav {
        margin-top: 25px
    }
}

@media (max-width: 600px) {
    .page-footer .nav {
        flex-direction: row;
        justify-content: space-between;
        margin-top: 30px
    }
}

.page-footer .nav > * {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    justify-content: flex-start;
    flex-wrap: wrap
}

@media (max-width: 600px) {
    .page-footer .nav > * {
        flex-direction: column;
        flex-wrap: nowrap
    }
}

.page-footer .nav > * + * {
    margin-top: 10px
}

@media (max-width: 600px) {
    .page-footer .nav > * + * {
        margin-top: 0
    }
}

.page-footer .nav > * > * {
    margin-right: 40px;
    margin-bottom: 15px;
    border-bottom-color: rgba(0, 0, 0, .4)
}

.page-footer .nav > * > *:hover {
    border-bottom-color: rgba(16, 105, 187, .4)
}

.page-footer .nav > * > *.active {
    border-bottom: none
}

@media (max-width: 980px) {
    .page-footer .nav > * > * {
        white-space: nowrap;
        margin-bottom: 15px
    }
}

@media (max-width: 600px) {
    .page-footer .nav > * > * {
        border-bottom: none;
        margin-right: 0
    }

    .search-popup {
        padding: 20px 16px;
    }

    .search-input {
        margin: 1px 54px 1px 1px;
    }

    .search-submit {
        right: 5%;
        width: 30px;
        height: 30px;
    }
}

.page-footer .phone {
    font-size: 48px;
    line-height: 1em;
    height: 1em;
    padding-left: 65px;
    white-space: pre
}

@media (max-width: 1280px) {
    .page-footer .phone {
        order: 1;
        padding-left: 0
    }
}

@media (max-width: 980px) {
    .page-footer .phone {
        font-size: 32px;
        line-height: 40px
    }
}

.copyright {
    display: flex;
    justify-content: space-between;
    gap: 10px;
    padding-top: 40px;
    padding-bottom: 15px;
    font-size: 16px;
    line-height: 1em;
    color: #969696
}

@media (max-width: 980px) {
    .copyright {
        padding-top: 0;
        padding-bottom: 25px
    }
}

@media (max-width: 470px) {
    .copyright,
    .goto-site-footer {
        gap: 0;
    }
}

.nav-overlay {
    display: none;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    position: fixed;
    top: 70px;
    left: 0;
    height: calc(100% - 70px);
    width: 100%;
    background: #fff;
    box-sizing: border-box;
    pointer-events: none;
    opacity: 0;
    -webkit-transition: opacity 200ms ease;
    -moz-transition: opacity 200ms ease;
    -ms-transition: opacity 200ms ease;
    transition: opacity 200ms ease;
    will-change: opacity;
    z-index: 2
}

@media (max-width: 1400px) {
    .nav-overlay {
        display: flex
    }
}

@media (max-width: 600px) {
    .nav-overlay {
        top: 55px;
        height: calc(100% - 55px)
    }
}

.nav-overlay.shown {
    pointer-events: initial;
    opacity: 1
}

.nav-overlay > * {
    flex-grow: 1;
    margin-top: 20px;
    border-top: 1px solid #dbdbdb;
    padding: 50px 20px;
    overflow-y: auto
}

@media (max-width: 600px) {
    .nav-overlay > * {
        padding: 40px 20px;
        margin-top: 15px
    }
}

.nav-overlay > *::-webkit-scrollbar {
    width: 0;
    opacity: 0
}

.nav-overlay .root {
    font-size: 32px;
    line-height: 1.25em
}

@media (max-width: 600px) {
    .nav-overlay .root {
        font-size: 24px;
        line-height: 1.25em
    }
}

.show-header-subnav .nav-overlay .root {
    display: none
}

.nav-overlay .root .nav > * {
    display: block;
    text-align: center;
    -webkit-transition: color 200ms ease;
    -moz-transition: color 200ms ease;
    -ms-transition: color 200ms ease;
    transition: color 200ms ease;
    will-change: color
}

.nav-overlay .root .nav > *.active, .nav-overlay .root .nav > *.forced-active {
    color: #1069BB
}

.nav-overlay .root .nav > *, .nav-overlay .root .nav > * * {
    cursor: pointer
}

.nav-overlay .root .nav > * + * {
    margin-top: 30px
}

@media (max-width: 600px) {
    .nav-overlay .root .nav > * + * {
        margin-top: 20px
    }
}

.nav-overlay .root .nav > *:hover {
    color: #1069BB
}

.nav-overlay .root .actions {
    margin-top: 50px
}

@media (max-width: 600px) {
    .nav-overlay .root .actions {
        margin-top: 35px
    }
}

.nav-overlay .root .actions > * {
    display: block;
    text-align: center;
    -webkit-transition: color 200ms ease;
    -moz-transition: color 200ms ease;
    -ms-transition: color 200ms ease;
    transition: color 200ms ease;
    will-change: color
}

.nav-overlay .root .actions > *:hover {
    color: #1069BB
}

.nav-overlay .root .actions > *, .nav-overlay .root .actions > * * {
    cursor: pointer
}

.nav-overlay .root .actions > * + * {
    margin-top: 30px
}

@media (max-width: 600px) {
    .nav-overlay .root .actions > * + * {
        margin-top: 20px
    }
}

.nav-overlay .root .goto-site {
    display: none;
    position: relative;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    margin-top: 56px;
    font-size: 14px;
    line-height: 22px;
    color: rgba(0, 0, 0, .5);
    transition: color 200ms ease;
    will-change: color
}

@media (max-width: 600px) {
    .nav-overlay .root .goto-site {
        display: flex
    }
}

.nav-overlay .root .goto-site:hover {
    color: #1069BB
}

.nav-overlay .root .goto-site > * {
    position: relative;
    top: -2px;
    width: 17px;
    height: 17px;
    background: url("../img/link-02e2002432b59fbf3b6d72579328cd98.svg") no-repeat center center/contain;
    margin-right: 4px
}

.nav-overlay .root .goto-site > *:before {
    content: '';
    display: block;
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    background: url("../img/link-hover-bd46653da4f2c041f68f91cad80f58a4.svg") no-repeat center center/contain;
    opacity: 0;
    transition: opacity 200ms ease;
    will-change: opacity
}

.nav-overlay .root .goto-site:hover > *:before {
    opacity: 1
}

.nav-overlay .collections {
    display: none;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start
}

.show-header-subnav .nav-overlay .collections {
    display: flex
}

@media (max-width: 600px) {
    .nav-overlay .collections {
        flex-direction: row;
        flex-wrap: wrap;
        align-items: flex-start
    }
}

.nav-overlay .collections .header {
    display: flex;
    position: relative;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    font-size: 32px
}

@media (max-width: 600px) {
    .nav-overlay .collections .header {
        font-size: 24px;
        width: 100%
    }
}

.nav-overlay .collections .header, .nav-overlay .collections .header * {
    cursor: pointer
}

.nav-overlay .collections .header:before {
    content: '';
    display: block;
    width: 80px;
    height: 16px;
    background: url("../img/back-e3175bb22b58cd2ed21fcb611a40315c.svg") no-repeat left center/auto 100%
}

@media (max-width: 600px) {
    .nav-overlay .collections .header:before {
        position: absolute;
        height: 16px;
        width: 100%;
        left: 0;
        top: calc(50% - 8px)
    }
}

.nav-overlay .collections .header:after {
    content: 'Коллекции';
    display: block;
    line-height: 1em
}

@media (max-width: 600px) {
    .nav-overlay .collections .header:after {
        text-align: center;
        flex-grow: 1
    }
}

.nav-overlay .collections .section {
    margin-top: 30px;
    font-size: 16px
}

@media (max-width: 600px) {
    .nav-overlay .collections .section {
        width: 50%
    }
}

.nav-overlay .collections .section + .section {
    margin-top: 25px
}

@media (max-width: 600px) {
    .nav-overlay .collections .section + .section {
        margin-top: 30px
    }
}

.nav-overlay .collections .section .icon {
    height: 25px;
    background-repeat: no-repeat;
    background-size: auto 100%;
    background-position: left center
}

.nav-overlay .collections .section .list {
    align-items: normal;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: flex-start;
    margin-top: 15px
}

@media (max-width: 600px) {
    .nav-overlay .collections .section .list {
        flex-wrap: nowrap;
        flex-direction: column;
        align-items: stretch
    }
}

.nav-overlay .collections .section .list > * {
    display: flex;
    flex-direction: row;
    align-items: flex-end;
    justify-content: flex-start;
    margin-right: 25px;
    margin-bottom: 20px;
    -webkit-transition: color 200ms ease;
    -moz-transition: color 200ms ease;
    -ms-transition: color 200ms ease;
    transition: color 200ms ease;
    will-change: color
}

@media (max-width: 600px) {

    .nav-overlay .collections .section .list > * {
        display: block;
        margin-bottom: 10px;
    }

}

.nav-overlay .collections .section .list > *.new {
    position: relative
}

.nav-overlay .collections .section .list > * > * {
    order: 1;
}

.nav-overlay .collections .section .list > *.new:before {
    content: 'NEW';
    display: inline-block;
    position: relative;
    top: 0;
    margin-left: 10px;
    margin-right: 0;
    font-size: 10px;
    line-height: 1em;
    padding: 4px 5px;
    border: 1px solid #1069BB;
    color: #1069BB;
    border-radius: 2px;
    order: 3;
}

.nav-overlay .collections .section .list > *.new + * {
    margin-top: 0;
}

@media (max-width: 600px) {
    .nav-overlay .collections .section .list > *.new:before {
        margin-right: 10px;
        margin-left: 0;
    }
}

.nav-overlay .collections .section .list > *:hover, .nav-overlay .collections .section .list > *.active {
    color: #1069BB
}

@media (max-width: 600px) {
    .nav-overlay .collections .section .list > * {
        margin-right: 0;
        margin-bottom: 20px;
        /*white-space: nowrap*/
        line-height: 1.4em;
    }
}

.nav-overlay .collections .section .list > *:after {
    content: '→';
    display: inline-block;
    position: relative;
    vertical-align: top;
    font-size: 18px;
    color: #1069BB;
    padding-left: 5px;
    order: 2;
}

.nav-overlay .collections .section .list > *.active:after {
    display: none
}

.appear {
    -webkit-transition: -webkit-transform 1500ms ease, opacity 1500ms ease;
    -moz-transition: -moz-transform 1500ms ease, opacity 1500ms ease;
    -ms-transition: -ms-transform 1500ms ease, opacity 1500ms ease;
    transition: transform 1500ms ease, opacity 1500ms ease;
    opacity: 0;
    will-change: transform, opacity
}

.appear.appeared {
    opacity: 1
}

.appear.appear-top {
    -webkit-transform: translate(0, -40px);
    -moz-transform: translate(0, -40px);
    -ms-transform: translate(0, -40px);
    transform: translate(0, -40px)
}

.appear.appear-top.appeared {
    -webkit-transform: none;
    -moz-transform: none;
    -ms-transform: none;
    transform: none
}

.appear.appear-bottom {
    -webkit-transform: translate(0, 40px);
    -moz-transform: translate(0, 40px);
    -ms-transform: translate(0, 40px);
    transform: translate(0, 40px)
}

.appear.appear-bottom.appeared {
    -webkit-transform: none;
    -moz-transform: none;
    -ms-transform: none;
    transform: none
}

.appear.appear-left {
    -webkit-transform: translate(-60px, 0);
    -moz-transform: translate(-60px, 0);
    -ms-transform: translate(-60px, 0);
    transform: translate(-60px, 0)
}

.appear.appear-left.appeared {
    -webkit-transform: none;
    -moz-transform: none;
    -ms-transform: none;
    transform: none
}

.appear.appear-right {
    -webkit-transform: translate(60px, 0);
    -moz-transform: translate(60px, 0);
    -ms-transform: translate(60px, 0);
    transform: translate(60px, 0)
}

.appear.appear-right.appeared {
    -webkit-transform: none;
    -moz-transform: none;
    -ms-transform: none;
    transform: none
}

.appear.appear-center {
    -webkit-transition: opacity 1500ms ease;
    -moz-transition: opacity 1500ms ease;
    -ms-transition: opacity 1500ms ease;
    transition: opacity 1500ms ease;
    will-change: opacity
}

body {
    -webkit-transition: opacity 1500ms ease;
    -moz-transition: opacity 1500ms ease;
    -ms-transition: opacity 1500ms ease;
    transition: opacity 1500ms ease;
    will-change: opacity;
    opacity: 0.01
}

body.appeared {
    opacity: 1
}

.section-projects a:hover .title {
    color: #1069bb;
}

#goto_shop {
    right: 305px;
}

@media (max-width: 1700px) {
    #goto_shop {
        right: 160px;
    }
}

@media (max-width: 1400px) {
    #goto_shop {
        right: 0;
    }
}

.text .inner div p {
    margin-top: 16px;
}

.text .inner div ul {
    margin: 16px 0;
}

.text .inner div ul li {
    margin: 8px 0 0 16px;
}

.text .inner div ul li::before {
    content: "\2022";
    color: #1069bb;
    font-weight: bold;
    display: inline-block;
    width: 1em;
}

.page-header .last-level .sub-nav .list > *.new:before {
    top: 0;
}

.page-header .last-level .sub-nav .list > * + * {
    margin-left: 0;
}

.page-header .last-level .sub-nav .list > *.new {
    margin-right: 24px;
}

.breadcrumbs {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    color: #969696;
    font-size: 14px;
    line-height: 1em;
    margin: unset;
    padding: 0 0 15px;
}

.breadcrumbs > li > a:hover {
    color: #1069BB;
}

.breadcrumbs > li:after {
    content: '→';
    display: inline-block;
    vertical-align: top;
    padding: 0 10px;
}

.breadcrumbs > li:last-child:after {
    display: none;
}

@media (max-width: 768px) {
    .breadcrumbs {
        flex-direction: column;
        align-items: flex-start;
        gap: 4px;
    }
}

.popup-overlay {
    display: none;
    background-color: #7F7F7F;
    position: absolute;
    height: 100%;
    width: 100%;
    opacity: 0.2;
    z-index: 99;
}