/*
Theme Name: ADV-media theme
Author: Dzmitry Vashkevich
Author URI: https://github.com/dimalepel
Description: Theme for website
Version: 1.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: advtheme
*/
@font-face {
    font-weight: 100;
    font-style: normal;
    font-display: swap;
    font-family: "Montserrat";
    src: url("./assets/front/fonts/Montserrat/Montserrat-Light.woff2")
        format("woff2");
}
@font-face {
    font-weight: 100;
    font-style: italic;
    font-display: swap;
    font-family: "Montserrat";
    src: url("./assets/front/fonts/Montserrat/Montserrat-LightItalic.woff2")
        format("woff2");
}
@font-face {
    font-weight: 200;
    font-style: normal;
    font-display: swap;
    font-family: "Montserrat";
    src: url("./assets/front/fonts/Montserrat/Montserrat-ExtraLight.woff2")
        format("woff2");
}
@font-face {
    font-weight: 400;
    font-style: normal;
    font-display: swap;
    font-family: "Montserrat";
    src: url("./assets/front/fonts/Montserrat/Montserrat-Regular.woff2")
        format("woff2");
}
@font-face {
    font-weight: 500;
    font-style: normal;
    font-display: swap;
    font-family: "Montserrat";
    src: url("./assets/front/fonts/Montserrat/Montserrat-Medium.woff2")
        format("woff2");
}
@font-face {
    font-weight: 500;
    font-style: italic;
    font-display: swap;
    font-family: "Montserrat";
    src: url("./assets/front/fonts/Montserrat/Montserrat-MediumItalic.woff2")
        format("woff2");
}
@font-face {
    font-weight: 600;
    font-style: normal;
    font-display: swap;
    font-family: "Montserrat";
    src: url("./assets/front/fonts/Montserrat/Montserrat-SemiBold.woff2")
        format("woff2");
}
@font-face {
    font-weight: 700;
    font-style: normal;
    font-display: swap;
    font-family: "Montserrat";
    src: url("./assets/front/fonts/Montserrat/Montserrat-Bold.woff2")
        format("woff2");
}

/* */

:root {
    --adv-white: #ffffff;
    --adv-default: #222427;
    --adv-gold: #9c9a8b;
}

/* */

* {
    margin: 0;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    position: relative;
    font-size: 18px;
    line-height: 160%;
    color: var(--adv-default);
    font-family: "Montserrat", sans-serif;
    font-weight: 400;
    letter-spacing: -0.01em;
}
@media (max-width: 1199px) {
    body {
        font-size: 16px;
    }
}
/* */
.main {
    flex-grow: 1;
}

body:not(.home) .main {
    padding-top: 120px;
}

a {
    color: inherit;
    text-decoration: none;
}

ul {
    padding-left: 0;
}

ol,
ul {
    list-style: none;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
    display: block;
}

img,
picture,
video,
canvas,
svg {
    height: auto;
    display: block;
    max-width: 100%;
}

input,
button,
textarea,
select {
    font: inherit;
}

input:focus {
    outline: none;
}

label {
    cursor: pointer;
}

select {
    max-width: 100%;
}

b,
strong {
    font-weight: 600;
}

button {
    padding: 0;
    border: none;
    background: transparent;
}

blockquote,
q {
    quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
    content: none;
}

table {
    border-spacing: 0;
    border-collapse: collapse;
}

iframe {
    border: none;
    display: block;
    max-width: 100%;
}

section {
    /*overflow: hidden;*/
    padding-top: 120px;
    padding-bottom: 120px;
}

@media (max-width: 1199px) {
    section {
        padding-top: 60px;
        padding-bottom: 60px;
    }
}

section:first-child {
    /*padding-top: 0;*/
}

/*@media (min-width: 992px) {*/
/*    section {*/
/*        padding: 120px 0;*/
/*    }*/
/*}*/

/*@media (max-width: 991px) and (min-width: 576px) {*/
/*    section {*/
/*        padding: 90px 0;*/
/*    }*/
/*}*/

/*@media (max-width: 575px) {*/
/*    section {*/
/*        padding: 60px 0;*/
/*    }*/
/*}*/

/* */
.container {
    position: relative;
    width: 100%;
    max-width: 1452px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 16px;
    padding-right: 16px;
}
.container-fluid {
    position: relative;
}
/* */
.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 100%;
    border: 1px solid #393c3f;
}
.social-link svg {
    fill: var(--adv-white);
}
/* */
.button {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 23px;
    width: 100%;
    max-height: 60px;
    text-align: center;
    font-size: 15px;
    line-height: 100%;
    letter-spacing: 0.08em;
    font-weight: 500;
    text-transform: uppercase;
    cursor: pointer;
}
.button--light {
    color: var(--adv-gold);
    background-color: var(--adv-white);
}
.button--light:hover,
.button--accent:hover {
    color: var(--adv-white);
    background-color: #222427;
}
.button--accent {
    background-color: var(--adv-gold);
    color: var(--adv-white);
}
/* */
.site-name {
    font-size: 26px;
    line-height: 100%;
    font-weight: 700;
}
@media (max-width: 1199px) {
    .header .site-name {
        font-size: 19px;
    }
}
/* */
.wrapper {
    position: relative;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    /*overflow: hidden;*/
}
/* */
.contacts-list__content {
    margin-bottom: 10px;
    font-size: 16px;
    line-height: 100%;
    font-weight: 700;
    color: var(--adv-white);
}
@media (max-width: 767px) {
    .contacts-list__content {
        margin-bottom: 16px;
        font-size: 18px;
    }
}
.contacts-list__content--link {
    display: inline-block;
}
.contacts-list__label {
    font-size: 15px;
    line-height: 100%;
    color: #44474c;
}
@media (max-width: 767px) {
    .contacts-list__label {
        font-size: 16px;
        font-weight: 500;
        line-height: 110%;
    }
}
.contacts-list__label--list {
    display: flex;
    align-items: center;
}
.contacts-list__label--list span:not(:last-child) {
    display: flex;
    align-items: center;
}
.contacts-list__label--list span:not(:last-child)::after {
    content: "";
    width: 4px;
    height: 4px;
    margin-left: 7px;
    margin-right: 7px;
    background-color: #44474c;
    border-radius: 100%;
}
/* */
.aside {
    position: fixed;
    top: 0;
    bottom: 0;
    left: -600px;
    z-index: 100;
    display: flex;
    /*align-items: center;*/
    width: 100%;
    max-width: 600px;
    color: var(--adv-white);
    background-color: var(--adv-default);
    transition: transform 0.5s ease;
}
@media (max-width: 767px) {
    .aside {
        align-items: flex-start;
        overflow-y: auto;
        width: 96%;
    }
}
@media (max-width: 1024px) {
    /* 575 */
    .aside {
        width: 100%;
        left: -1024px; /* added */
    }
}
.aside.open {
    left: 0;
}
.home .aside {
    top: 0;
}
.home.admin-bar .aside {
    top: 32px;
}
.aside__close {
    position: absolute;
    top: 20px;
    left: 20px;
    cursor: pointer;
}
@media (max-width: 767px) {
    .aside__close {
        right: 10px;
        top: 10px;
        left: initial;
    }
}
.aside__inner {
    width: 100%;
    /*padding: 100px 40px;*/
    padding: 213px 40px;
    overflow-y: auto;
    position: relative;
}
@media (max-width: 767px) {
    .aside__inner {
        padding-left: 20px;
        padding-right: 20px;
    }
}
.aside__navigation {
    padding-bottom: 60px;
    margin-bottom: 60px;
    border-bottom: 1px solid #2c2f33;
}
.aside__navigation-item:not(:last-child) {
    margin-bottom: 26px;
}
@media (max-width: 767px) {
    .aside__navigation {
        padding-bottom: 40px;
        margin-bottom: 40px;
    }
}
@media (max-width: 575px) {
    /*.aside__navigation {
    }*/
}
.aside__navigation-link {
    font-size: 20px;
    line-height: 100%;
}
.aside__navigation-link:hover {
    color: #c9c5b6;
}
.aside__contacts-list .contacts-list__card:not(:last-child) {
    margin-bottom: 40px;
}
.aside__socials {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-top: 10px;
}
.aside__socials .social-link:hover {
    border-color: #ffffff;
}
@media (min-width: 768px) {
    .aside__navigation li:first-child {
        display: none;
    }
}
/* */
.mobile-navigation {
    display: none;
}
@media (max-width: 1024px) {
    /* 575 */
    .aside,
    .home .aside {
        top: 85px;
    }
    .aside-open {
        overflow: hidden;
    }
    .aside {
        max-width: 100%;
    }
    .aside__inner {
        position: relative;
        padding-top: 5px;
        padding-bottom: 20px;
    }
    .aside__close {
        display: none;
    }
    .aside__navigation {
        display: none;
    }
    .mobile-navigation {
        display: block;
        margin-bottom: 60px;
    }
    .aside-open .header__toggle__line::before {
        top: 0;
        transform: rotate(45deg);
    }
    .aside-open .header__toggle__line::after {
        bottom: 0;
        width: 22px;
        transform: rotate(-45deg);
    }
}
.mobile-navigation__link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 26px;
    padding-bottom: 26px;
    font-size: 20px;
    line-height: 120%;
    font-weight: 500;
}
.mobile-navigation__item:not(:last-child) .mobile-navigation__link {
    border-bottom: 1px solid #363a3f;
}
.mobile-navigation__item.menu-item-has-children
    > .mobile-navigation__link::after {
    content: "";
    width: 24px;
    height: 24px;
    background-image: url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMjQiIGhlaWdodD0iMjQiIHZpZXdCb3g9IjAgMCAyNCAyNCIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik05IDRMMTcgMTJMOSAyMEw3IDE4TDEzIDEyTDcgNkw5IDRaIiBmaWxsPSIjOUM5QThCIi8+Cjwvc3ZnPgo=");
    background-repeat: no-repeat;
    background-position: center;
}
.mobile-navigation .sub-menu {
    display: none;
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    top: 0;
    padding: 5px 20px;
    background-color: var(--adv-default);
}
.mobile-navigation .sub-menu--open {
    display: block;
}
.mobile-navigation .sub-menu .close-sub-menu .mobile-navigation__link {
    justify-content: flex-start;
    color: #9c9a8b;
}
.mobile-navigation .sub-menu .close-sub-menu .mobile-navigation__link::before {
    content: "";
    width: 24px;
    height: 24px;
    margin-right: 16px;
    background-image: url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMjQiIGhlaWdodD0iMjQiIHZpZXdCb3g9IjAgMCAyNCAyNCIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik05IDRMMTcgMTJMOSAyMEw3IDE4TDEzIDEyTDcgNkw5IDRaIiBmaWxsPSIjOUM5QThCIi8+Cjwvc3ZnPgo=");
    background-repeat: no-repeat;
    background-position: center;
    transform: rotate(180deg);
}
/* */
.header {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    z-index: 50;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 38px 40px;
    background-color: var(--adv-white);
    transition: all 0.3s ease;
}
@media (min-width: 1025px) and (max-width: 1199px) {
    .header {
        padding-left: 16px;
        padding-right: 16px;
    }
}
@media (max-width: 1024px) {
    /* 1199 */
    .header {
        flex-direction: row-reverse;
        padding: 16px;
    }
}
.home .header {
    /*position: absolute;*/
    left: 0;
    top: 0;
    width: 100%;
    z-index: 50;
    color: var(--adv-white);
    background-color: transparent;
    border-bottom: 1px solid rgba(255, 255, 255, 0.13);
}
.header.scrolled {
    color: var(--adv-default);
    background-color: var(--adv-white);
    border-bottom: 1px solid #edeadf;
}
.header__aside {
    display: flex;
    align-items: center;
    flex: 1;
    gap: 26px;
}
@media (min-width: 1025px) and (max-width: 1199px) {
    .header__aside {
        gap: 10px;
    }
}
.header__aside--contacts {
    justify-content: flex-end;
}
@media (max-width: 1024px) {
    /* 1199 */
    .header__aside--contacts {
        display: none;
    }
}
.header__toggle {
    display: flex;
    align-items: center;
    height: 18px;
    cursor: pointer;
}
@media (max-width: 1024px) {
    /* 1199 */
    .header__toggle {
        display: flex;
        justify-content: center;
        align-items: center;
        width: 52px;
        height: 52px;
        margin-left: auto;
        background-color: #f5f5f5;
        border-radius: 100%;
    }
    .home .header__toggle {
        background-color: var(--adv-white);
    }
    .header.scrolled .header__toggle {
        background-color: #f5f5f5;
    }
}
.header__toggle__line {
    position: relative;
    width: 26px;
    height: 2px;
    background-color: var(--adv-gold);
}
.header__toggle__line::before,
.header__toggle__line::after {
    content: "";
    position: absolute;
    left: 0;
    width: 26px;
    height: 2px;
    background-color: var(--adv-gold);
}
.header__toggle__line::before {
    top: -8px;
}
.header__toggle__line::after {
    bottom: -8px;
}
@media (max-width: 1024px) {
    /* 1199 */
    .header__toggle__line {
        width: 22px;
        background-color: var(--adv-gold);
    }
    .header__toggle__line::before {
        top: -7px;
        width: 22px;
        background-color: var(--adv-gold);
    }
    .header__toggle__line::after {
        bottom: -7px;
        width: 12px;
        background-color: var(--adv-gold);
    }
}
.home .header__toggle__line {
    background-color: var(--adv-white);
}
.header.scrolled .header__toggle__line {
    background-color: var(--adv-gold);
}
@media (max-width: 1024px) {
    /* 575 */
    .home.aside-open .header__toggle__line,
    .aside-open .header__toggle__line {
        background-color: transparent;
    }
    .aside-open .header.scrolled .header__toggle__line {
        background-color: transparent;
    }
}
.home .header__toggle__line::before,
.home .header__toggle__line::after {
    background-color: var(--adv-white);
}
.header.scrolled .header__toggle__line::before,
.header.scrolled .header__toggle__line::after {
    background-color: var(--adv-gold);
}
@media (max-width: 1024px) {
    /* 1199 */
    .home .header__toggle__line,
    .home .header__toggle__line::before,
    .home .header__toggle__line::after {
        background-color: var(--adv-gold);
    }
}
.header__links {
    display: flex;
    align-items: center;
    gap: 26px;
}
@media (min-width: 1025px) and (max-width: 1199px) {
    .header__links {
        gap: 10px;
    }
}
@media (max-width: 1024px) {
    /* 1199 */
    .header__links {
        display: none;
    }
}
.header__links-link {
    font-size: 16px;
    line-height: 100%;
    font-weight: 500;
}
.header__menu .menu-item-has-children {
    position: relative;
}
.header__menu > .menu-item-has-children > .sub-menu {
    top: calc(100% - 1px);
}
.header__menu > li > .sub-menu {
    display: none;
}
.header__menu .sub-menu .sub-menu {
    left: calc(100% - 1px);
    top: -20px;
    display: none;
}
.header__menu > .menu-item-has-children {
    margin-bottom: -48px;
    padding-bottom: 48px;
}
.header__menu > .menu-item-has-children:hover > .sub-menu,
.menu-is-active .header__menu > li > .sub-menu {
    display: block;
}
.header__menu > li > .sub-menu > li:hover .sub-menu {
    display: block;
    max-height: 50vh;
    overflow-y: auto;
    overflow-x: hidden;
}
.header__menu .menu-item-has-children .sub-menu {
    position: absolute;
    z-index: 100;
    width: 33vw;
    max-width: 500px;
    padding: 20px 0 20px 30px;
    background-color: var(--adv-white);
}
.header__menu .menu-item-has-children > .header__links-link::after {
    content: "";
    position: initial;
    left: initial;
    top: initial;
    width: 24px;
    height: 24px;
    background-image: url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMjQiIGhlaWdodD0iMjQiIHZpZXdCb3g9IjAgMCAyNCAyNCIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik05IDRMMTcgMTJMOSAyMEw3IDE4TDEzIDEyTDcgNkw5IDRaIiBmaWxsPSIjOUM5QThCIi8+Cjwvc3ZnPgo=");
    background-repeat: no-repeat;
    background-position: center;
}
.header__menu .sub-menu > .header__links-item {
    padding-right: 32px;
    margin-right: -2px;
}
.header__menu
    > .menu-item-has-children
    > .sub-menu
    > .header__links-item
    > .header__links-link {
    font-weight: 600;
}
.header__menu .sub-menu > .header__links-item > .header__links-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 83px;
    padding: 29px 0;
    color: var(--adv-default);
    white-space: nowrap;
}
.header__menu
    .sub-menu
    > .header__links-item:not(:last-child)
    > .header__links-link {
    border-bottom: 1px solid #e3e0d5;
}
.header__menu .sub-menu > .header__links-item:hover > .header__links-link,
.header__menu .sub-menu > .header__links-item > .header__links-link:hover {
    color: #9c9a8b;
    border-color: #c9c5b6;
}
.header__menu .header__links-link {
    position: relative;
}
.header__menu .header__links-link::after {
    content: "";
    position: absolute;
    left: 0;
    top: calc(100% + 10px);
    width: 100%;
    height: 1px;
    background-color: transparent;
}
.header__menu > .header__links-item > .header__links-link:hover::after {
    background-color: #222427;
}
.home .header__menu .header__links-link:hover::after {
    background-color: var(--adv-white);
}
.home
    .header.scrolled
    .header__menu
    > .header__links-item
    > .header__links-link:hover::after {
    background-color: #222427;
}
.header__social-link {
    border-color: #edeadf;
}
.header__social-link:hover {
    border-color: #9c9a8b;
}
.home .header__social-link {
    border-color: rgba(255, 255, 255, 0.24);
}
.header.scrolled .header__social-link {
    border-color: #edeadf;
}
.home .header__social-link:hover {
    border-color: var(--adv-white);
}
.header.scrolled .header__social-link:hover {
    border-color: #9c9a8b;
}
.header__social-link svg {
    fill: var(--adv-gold);
}
.home .header__social-link svg {
    fill: var(--adv-white);
}
.header.scrolled .header__social-link svg {
    fill: var(--adv-gold);
}
/* */
.breadcrumbs {
    border-bottom: 1px solid #edeadf;
}
.breadcrumbs__container {
    padding: 0 40px 20px 40px;
    font-size: 14px;
    line-height: 100%;
    font-weight: 500;
    color: var(--adv-gold);
}
.breadcrumbs a {
    color: inherit;
}
.breadcrumbs .separator {
    display: inline-block;
    vertical-align: middle;
    width: 5px;
    height: 5px;
    margin-left: 12px;
    margin-right: 12px;
    background-color: #c9c5b6;
}
@media (max-width: 1024px) {
    /* 1199 */
    .breadcrumbs__container {
        padding-left: 16px;
        padding-right: 16px;
    }
}
/* */
.footer {
    padding-top: 160px;
    background-color: var(--adv-default);
}
.footer__inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.footer__inner:first-child {
    margin-bottom: 162px;
}
.footer__inner:last-child {
    padding-top: 45px;
    padding-bottom: 45px;
    border-top: 1px solid #2f3134;
}
.footer__info {
    display: flex;
    align-items: center;
    gap: 20px;
}
.footer__site-name {
    color: var(--adv-white);
}
.footer__socials {
    display: flex;
    align-items: center;
    gap: 6px;
}
.footer__socials .social-link:hover {
    border-color: #ffffff;
}
.footer__contacts-list {
    display: flex;
    gap: 40px;
}
.footer__contacts-list .contacts-list__card:last-child {
    padding-left: 20px;
}
.footer__navigation {
    display: flex;
    align-items: center;
    gap: 40px;
}
.footer__navigation-link,
.footer__navigation-item {
    font-size: 14px;
    line-height: 100%;
    font-weight: 500;
    color: #767779;
}
.footer__navigation-item:last-child .footer__navigation-link {
    position: relative;
}
.footer__navigation-item:last-child .footer__navigation-link::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -8px;
    width: 100%;
    height: 1px;
    background-color: #393c42;
}
.footer__dev {
    display: flex;
    align-items: center;
    font-size: 14px;
    line-height: 100%;
    font-weight: 500;
    color: #767779;
}
.footer__dev-icon {
    margin-left: 8px;
}
@media (max-width: 1199px) {
    .footer {
        padding-top: 60px;
    }
    .footer__inner {
        flex-direction: column;
        align-items: flex-start;
    }
    .footer__info {
        margin-bottom: 60px;
    }
    .footer__contacts-list {
        flex-direction: column;
        gap: 30px;
    }
    .footer__contacts-list .contacts-list__card:last-child {
        padding-left: 0;
    }
    .footer__navigation {
        align-self: center;
        flex-direction: column;
        gap: 30px;
        margin-bottom: 30px;
    }
    .footer__dev {
        align-self: center;
        font-size: 14px;
    }
    .footer__inner:first-child {
        margin-bottom: 40px;
    }
    .footer__inner:last-child {
        padding-top: 40px;
        padding-bottom: 40px;
    }
}
/* */
.section-header {
    margin-bottom: 80px;
}
.section-header .section-title,
.section-header .section-title-descr {
    max-width: 791px;
}
.section-header--row {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.section-header__link {
    max-width: 320px;
}
.section-title {
    margin-bottom: 20px;
    font-size: 20px;
    line-height: 100%;
    text-transform: uppercase;
    font-style: italic;
    letter-spacing: 0.06em;
    color: var(--adv-gold);
}
.section-title-descr {
    font-size: 45px;
    font-weight: 600;
    line-height: 120%;
    letter-spacing: -0.02em;
}
@media (max-width: 1199px) {
    .section-header {
        margin-bottom: 40px;
    }
    .section-title {
        font-size: 16px;
    }
    .section-title-descr {
        font-size: 32px;
    }
}
/* */
.callback-form__input {
    display: block;
    width: 100%;
    padding-top: 38px;
    padding-bottom: 38px;
    font-family: inherit;
    font-size: 18px;
    line-height: 140%;
    font-weight: 500;
    letter-spacing: -0.02em;
    color: var(--adv-default);
    border: none;
    border-bottom: 1px solid #d8d8ce;
    background-color: transparent;
}
.callback-form__input::placeholder {
    font-family: inherit;
    font-size: inherit;
    line-height: inherit;
    font-weight: inherit;
    color: #8c8580;
}
.callback-form__input:focus {
    border-color: #9c9a8b;
}
textarea.callback-form__input {
    resize: none;
    height: 200px;
}
.callback-form__field--accept {
    margin-top: 20px;
    margin-bottom: 40px;
}
.callback-form__label[for="personal-data"],
.callback-form__label[for="privacy-policy"] {
    padding-left: 28px;
}
.callback-form__label a {
    color: #9c9a8b;
    text-decoration: underline;
}
.callback-form__label {
    color: #9c9a8b;
    position: relative;
}
.callback-form__check {
    left: 0;
    top: -2.5px;
    width: 20px;
    height: 20px;
    cursor: pointer;
    position: absolute;
}
.callback-form__input[type="checkbox"] {
    top: 0;
    left: 2px;
    opacity: 0;
    width: 20px;
    height: 20px;
    position: absolute;
}
.callback-form__input[type="checkbox"]:checked + .callback-form__check {
    background-image: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMjAiIGhlaWdodD0iMjAiIHZpZXdCb3g9IjAgMCAyMCAyMCIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHJlY3Qgd2lkdGg9IjIwIiBoZWlnaHQ9IjIwIiBmaWxsPSIjOUM5QThCIi8+CjxnIGNsaXAtcGF0aD0idXJsKCNjbGlwMF80MzRfMTg5MSkiPgo8cGF0aCBkPSJNMTQuMjQ5MiA0LjcwMzEyTDguNzUwNzggMTEuOTUyM0w1LjUgOC43MDM5MUw0IDEwLjIwMzlMOC45OTkyMiAxNS4yMDMxTDE2IDYuMjAzMTJMMTQuMjQ5MiA0LjcwMzEyWiIgZmlsbD0id2hpdGUiLz4KPC9nPgo8ZGVmcz4KPGNsaXBQYXRoIGlkPSJjbGlwMF80MzRfMTg5MSI+CjxyZWN0IHdpZHRoPSIxMiIgaGVpZ2h0PSIxMiIgZmlsbD0id2hpdGUiIHRyYW5zZm9ybT0idHJhbnNsYXRlKDQgNCkiLz4KPC9jbGlwUGF0aD4KPC9kZWZzPgo8L3N2Zz4K);
}
.callback-form__input[type="checkbox"]:not(:checked) + .callback-form__check {
    border: 1px solid #d8d8ce;
}
@media (max-width: 767px) {
    .callback-form__input {
        padding-top: 30px;
        padding-bottom: 30px;
        font-size: 16px;
    }
    .modal__input .callback-form__input {
        padding-top: 18px;
        padding-bottom: 19px;
    }
    .callback-form__label {
        font-size: 14px;
    }
    .callback-form__field--accept {
        margin-top: 25px;
        margin-bottom: 25px;
    }
}
.callback-form__error {
    color: #ff0000;
    font-size: 12px;
    margin-top: 5px;
    display: block;
}

.callback-form__input--error {
    border-color: #ff0000 !important;
}

.callback-form__label .callback-form__error {
    display: inline-block;
    margin-left: 10px;
}
.callback-form__send-error {
    display: none;
    padding: 10px;
    color: #ff0000;
    font-size: 12px;
    margin-top: 5px;
    margin-bottom: 5px;
    border: 1px solid #ff0000;
}
/* */
.content-area {
    font-size: 16px;
    line-height: 160%;
    letter-spacing: -0.03em;
    font-weight: 500;
}
.content-area *:not(:last-child) {
    margin-bottom: 20px;
}
.content-area h2 {
    margin-bottom: 60px !important;
    font-size: 45px; /* было 50px */
    line-height: 120%;
    letter-spacing: -0.02em;
    font-weight: 600;
}
.content-area h3,
.content-area h4 {
    margin-top: 40px;
    margin-bottom: 30px;
    font-size: 22px;
    line-height: 160%;
    letter-spacing: -0.03em;
    font-weight: 700;
}
.content-area ul li {
    position: relative;
    padding-left: 20px;
}
.content-area ul li:not(:last-child) {
    margin-bottom: 10px;
}
.content-area ul li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 10px;
    width: 6px;
    height: 6px;
    background-color: #c9c5b6;
    border-radius: 100%;
}
.content-area ul li strong {
    display: block;
    margin-bottom: 10px;
    font-weight: 700;
}
.content-area blockquote {
    position: relative;
    padding: 50px 40px 50px 64px;
    font-size: 16px;
    font-weight: 500;
    line-height: 140%;
    letter-spacing: -0.03em;
    background-color: #f5f5f5;
    color: #9c9a8b;
}
.content-area blockquote strong {
    margin-bottom: 13px;
    font-size: 18px;
    line-height: 160%;
    font-weight: 600;
}
.content-area blockquote::before {
    content: "";
    display: block;
    position: absolute;
    left: 40px;
    top: 50px;
    bottom: 50px;
    width: 2px;
    background-color: #c9c5b6;
}
.content-area > figure:not(:first-child) {
    padding-top: 20px;
    margin-top: 20px;
}
.content-area > figure:not(:last-child) {
    padding-bottom: 20px;
    margin-bottom: 20px;
}
@media (max-width: 767px) {
    .content-area {
        font-size: 16px;
    }
    .content-area h2 {
        margin-bottom: 40px !important;
        font-size: 32px;
    }
    .content-area h4 {
        margin-top: 30px;
        margin-bottom: 20px;
    }
    .content-area > figure.size-full {
        margin-left: -16px;
        margin-right: -16px;
    }
}
/* pagination */
.pagination {
    display: flex;
    align-items: center;
    gap: 2px;
}
.pagination__item {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 46px;
    font-size: 16px;
    line-height: 140%;
    letter-spacing: -0.02em;
    color: #222427;
    border: 1px solid transparent;
    border-radius: 50%;
}
.pagination__prev.pagination__item,
.pagination__next.pagination__item,
.pagination__item_current {
    color: #9c9a8b;
    border-color: #9c9a8b;
}
.pagination__prev {
    margin-right: 8px;
}
.pagination__next {
    margin-left: 8px;
}
.pagination__prev--disabled,
.pagination__next--disabled {
    opacity: 0.3;
    pointer-events: none;
    cursor: default;
}
/* modal */
body.has-activated-modal {
    overflow-y: hidden;
}

body.has-activated-modal.is-blur:before {
    z-index: 100;
}
body.is-blur:before {
    top: 0;
    left: 0;
    z-index: 3;
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    /*backdrop-filter: blur(4px);
    background-color: #EFEFF799;*/
    background-color: rgba(34, 36, 39, 0.5);
}
.modal {
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 100;
    display: flex;
    position: fixed;
    overflow-y: auto;
    padding: 56px 16px;
    align-items: center;
    flex-direction: column;
    justify-content: center;
}

.modal:not(.modal_active) {
    display: none;
}

.modal__inner {
    max-width: 100%;
    position: relative;
    background-color: #fff;
}
.modal__container {
    padding: 100px 60px;
}
.modal__inner img {
    width: 100%;
}
@media (max-width: 767px) {
    .modal__container {
        padding-left: 30px;
        padding-right: 30px;
    }
    .modal__inner img {
        display: none;
    }
}

.modal__intro {
    padding-right: 48px;
    margin-bottom: 40px;
}

.modal__title {
    margin-bottom: 60px;
    line-height: 1;
    font-size: 34px;
    font-weight: 600;
    letter-spacing: -0.02em;
}
@media (max-width: 767px) {
    .modal__title {
        margin-bottom: 30px;
        font-size: 26px;
        line-height: 100%;
    }
    .modal__intro {
        margin-bottom: 30px;
    }
}

.modal__descr {
    font-size: 18px;
    font-weight: 500;
    line-height: 140%;
    letter-spacing: -0.03em;
}

.modal__descr b {
    font-size: 20px;
}

.modal__descr p + p {
    margin-top: calc(1em - 2px);
}

.modal__note {
    color: #9799a6;
    font-size: 14px;
    font-weight: 600;
    text-align: center;
    line-height: 1.285;
}

.modal__note-button {
    color: #38dff0;
    cursor: pointer;
}

.modal__note-button:not(:hover) {
    text-decoration: underline;
}

.modal__basic .modal__logo {
    margin-bottom: 24px;
}

.modal__basic .modal__logo-image {
    margin: 0 auto;
}

.modal__input {
    margin-top: 40px;
}

.modal__form-inputs {
    width: 100%;
    display: flex;
    column-gap: 8px;
}

.modal__form-inputs > * {
    flex: 1;
}

.modal__form-action {
    display: flex;
    margin-top: 40px;
    flex-direction: column;
}

.modal__form-field {
    gap: 8px;
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
}

.modal__form-field:not(:last-child) {
    margin-bottom: 24px;
}

.modal__form-label {
    color: #9799a6;
    font-size: 14px;
    font-weight: 600;
    position: relative;
}

.modal__form-label[for="code"] {
    width: 100%;
    display: flex;
    column-gap: 8px;
    justify-content: space-between;
}

.modal__form-input[name="code"] {
    height: 56px;
    text-align: center;
    border-radius: 16px;
    border: 1px solid #bdc5d5;
    -moz-appearance: textfield;
}

.modal__form-input[name="code"]::-webkit-outer-spin-button,
.modal__form-input[name="code"]::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.modal__form-label[for="personal-data"],
.modal__form-label[for="personal-data-cb"],
.modal__form-label[for="privacy-policy"],
.callback-form__label[for="personal-data-cb"] {
    padding-left: 28px;
}

.modal__form-label a {
    color: #38dff0;
    text-decoration: underline;
}

.modal__form-check {
    left: 0;
    top: -2.5px;
    width: 20px;
    height: 20px;
    cursor: pointer;
    border-radius: 4px;
    position: absolute;
}

.modal__form-input[type="checkbox"]:checked + .modal__form-check {
    background-image: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMjAiIGhlaWdodD0iMjEiIHZpZXdCb3g9IjAgMCAyMCAyMSIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik00IDAuMzQ0OTcxQzEuNzkwODMgMC4zNDQ5NzEgMCAyLjEzNTggMCA0LjM0NDk3VjE2LjM0NUMwIDE4LjU1NDEgMS43OTA4MyAyMC4zNDUgNCAyMC4zNDVIMTZDMTguMjA5MiAyMC4zNDUgMjAgMTguNTU0MSAyMCAxNi4zNDVWNC4zNDQ5N0MyMCAyLjEzNTggMTguMjA5MiAwLjM0NDk3MSAxNiAwLjM0NDk3MUg0Wk0xNi40NTU0IDcuMDU4NzJDMTYuNzExNSA2LjgwNzE5IDE2LjcxNTMgNi4zOTU2OSAxNi40NjM3IDYuMTM5NTNDMTYuMjEyMiA1Ljg4MzQyIDE1LjgwMDcgNS44Nzk3IDE1LjU0NDYgNi4xMzEyM0w4LjM1MTQ0IDEzLjE5NTFMNC40NDM2NiA5LjU0NTcyQzQuMTgxMjcgOS4zMDA3MiAzLjc2OTk2IDkuMzE0NzYgMy41MjQ5NiA5LjU3NzE1QzMuMjc5OTEgOS44Mzk1NCAzLjI5NDAxIDEwLjI1MDkgMy41NTYzNCAxMC40OTU4TDguMzc0MDggMTQuOTk0OUwxNi40NTU0IDcuMDU4NzJaIiBmaWxsPSIjMzhERkYwIi8+Cjwvc3ZnPgo=);
}

.modal__form-input[type="checkbox"]:not(:checked) + .modal__form-check {
    border: 1px solid #6d7986;
}

.modal__form-input::placeholder {
    color: #a5adbb;
}

.modal__form-input[type="tel"],
.modal__form-input[type="text"] {
    width: 100%;
    color: #001454;
    font-size: 16px;
    font-weight: 600;
    border-radius: 12px;
    border: 1px solid #bdc5d5;
}

.modal__form-input[type="tel"] {
    padding: 9.5px 16px;
}

.modal__form-input[type="text"] {
    padding: 16px;
}

.modal__form-input[type="tel"]:focus,
.modal__form-input[type="text"]:focus {
    border-color: #38dff0;
}

.modal__form-input[type="checkbox"] {
    top: 0;
    left: 2px;
    opacity: 0;
    width: 20px;
    height: 20px;
    position: absolute;
}

.modal__form .iti {
    width: 100%;
    display: flex;
    column-gap: 8px;
    --iti-hover-color: transparent;
}

.modal__form .iti__country-container {
    flex-shrink: 0;
    position: static;
}

.modal__form .iti__flag {
    --iti-flag-width: 30px;
    --iti-flag-height: 30px;
    --iti-flag-sprite-height: 30px;
    --iti-flag-sprite-width: 748px;
    border-radius: 50%;
    background-image: url("./resources/front/images/flags.svg");
}

.modal__form .iti__lt {
    --iti-flag-offset: -7px;
}

.modal__form .iti__tm {
    --iti-flag-offset: -51px;
}

.modal__form .iti__am {
    --iti-flag-offset: -95px;
}

.modal__form .iti__az {
    --iti-flag-offset: -139px;
}

.modal__form .iti__by {
    --iti-flag-offset: -183px;
}

.modal__form .iti__fl {
    --iti-flag-offset: -227px;
}

.modal__form .iti__ee {
    --iti-flag-offset: -271px;
}

.modal__form .iti__kz {
    --iti-flag-offset: -315px;
}

.modal__form .iti__kg {
    --iti-flag-offset: -359px;
}

.modal__form .iti__lv {
    --iti-flag-offset: -403px;
}

.modal__form .iti__md {
    --iti-flag-offset: -447px;
}

.modal__form .iti__pl {
    --iti-flag-offset: -491px;
}

.modal__form .iti__ru {
    --iti-flag-offset: -535px;
}

.modal__form .iti__tj {
    --iti-flag-offset: -579px;
}

.modal__form .iti__us {
    --iti-flag-offset: -623px;
}

.modal__form .iti__ua {
    --iti-flag-offset: -667px;
}

.modal__form .iti__uz {
    --iti-flag-offset: -711px;
}

.modal__form .iti__arrow {
    right: 16px;
    width: 12px;
    height: 12px;
    display: block;
    margin-top: -7px;
    position: absolute;
    border-style: solid;
    transform: rotate(45deg);
    border-width: 0 1px 1px 0;
    border-color: transparent #a5adbb #a5adbb transparent;
}

.modal__form .iti__arrow--up {
    margin-top: 16px;
    transform: translateY(-50%) rotate(-135deg);
}

.modal__form .iti__tel-input {
    padding-left: 16px !important;
}

.modal__form .iti__tel-input:focus {
    color: #a5adbb;
}

.modal__form .iti__selected-country {
    border-radius: 12px;
    height: calc(100% + 2px);
    border: 1px solid #bdc5d5;
    padding: 9.5px 48px 9.5px 16px;
}

.modal__form .iti__selected-country[aria-expanded="true"] {
    border-color: #38dff0;
}

.modal__form .iti__selected-country-primary {
    --iti-arrow-padding: 0;
    --iti-spacer-horizontal: 0;
}

.modal__form .iti .iti__selected-dial-code {
    font-size: 16px;
    font-weight: 600;
    margin-left: 8px;
}

.modal__form .iti--inline-dropdown .iti__dropdown-content {
    margin-top: 8px;
    overflow: hidden;
    box-shadow: none;
    border-radius: 12px;
    width: 100% !important;
}

.modal__form .iti--inline-dropdown .iti__dropdown-content:before {
    top: 16px;
    left: 16px;
    content: "";
    width: 20px;
    height: 20px;
    position: absolute;
    background-image: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMjAiIGhlaWdodD0iMjAiIHZpZXdCb3g9IjAgMCAyMCAyMCIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik0xMy44MjYxIDE0LjYxMjFDMTIuMzU5NiAxNS44OTU5IDEwLjQzOTIgMTYuNjc0IDguMzM2OTggMTYuNjc0QzMuNzMyNTkgMTYuNjc0IDAgMTIuOTQxNCAwIDguMzM2OThDMCAzLjczMjU5IDMuNzMyNTkgMCA4LjMzNjk4IDBDMTIuOTQxNCAwIDE2LjY3NCAzLjczMjU5IDE2LjY3NCA4LjMzNjk4QzE2LjY3NCAxMC40MzkyIDE1Ljg5NTkgMTIuMzU5NiAxNC42MTIxIDEzLjgyNjFMMTkuODM3MiAxOS4wNTEyQzIwLjA1NDMgMTkuMjY4MiAyMC4wNTQzIDE5LjYyMDEgMTkuODM3MiAxOS44MzcyQzE5LjYyMDEgMjAuMDU0MyAxOS4yNjgyIDIwLjA1NDMgMTkuMDUxMiAxOS44MzcyTDEzLjgyNjEgMTQuNjEyMVpNMTUuNTYyNCA4LjMzNjk4QzE1LjU2MjQgMTIuMzI3NCAxMi4zMjc0IDE1LjU2MjQgOC4zMzY5OCAxNS41NjI0QzQuMzQ2NTEgMTUuNTYyNCAxLjExMTU5IDEyLjMyNzQgMS4xMTE1OSA4LjMzNjk4QzEuMTExNTkgNC4zNDY1MSA0LjM0NjUxIDEuMTExNTkgOC4zMzY5OCAxLjExMTU5QzEyLjMyNzQgMS4xMTE1OSAxNS41NjI0IDQuMzQ2NTEgMTUuNTYyNCA4LjMzNjk4WiIgZmlsbD0iI0E1QURCQiIvPgo8L3N2Zz4K);
}

.modal__form .iti--inline-dropdown .iti__country-list:empty {
    display: none;
}

.modal__form .iti--inline-dropdown .iti__country-list:not(:empty) {
    padding-top: 5px;
    max-height: 280px;
    border-top: 1px solid #bdc5d5;
}

.modal__form .iti__country-list {
    overflow-y: auto;
    scrollbar-width: thin;
}

.modal__form .iti__country {
    color: #566176;
    font-weight: 600;
}

.modal__form .iti__country.iti__highlight {
    --iti-hover-color: transparent;
}

.modal__form .iti__country-list .iti__flag {
    order: 1;
    --iti-spacer-horizontal: 8px;
}

.modal__form .iti__country-list .iti__dial-code {
    order: 2;
    width: 80px;
    --iti-dialcode-color: #566176;
}

.modal__form .iti__country-list .iti__country-name {
    order: 3;
    margin-right: 0;
}

.modal__form .iti__search-input {
    color: #001454;
    font-weight: 600;
    border-radius: 0;
    padding: 16px 16px 16px 52px;
}

.modal__form .iti__search-input::placeholder {
    color: #a5adbb;
}

.modal__close {
    top: 10px;
    right: 10px;
    width: 42px;
    height: 42px;
    row-gap: 8px;
    display: flex;
    cursor: pointer;
    position: absolute;
    flex-direction: column;
    justify-content: center;
}

.modal__close:before,
.modal__close:after {
    content: "";
    height: 2px;
    border-radius: 8px;
    background-color: #9c9a8b;
}

.modal__close:before {
    transform: translate(0, 5px) rotate(-45deg);
}

.modal__close:after {
    transform: translate(0, -5px) rotate(45deg);
}

@media (min-width: 576px) {
    .modal__form .iti__tel-input {
        letter-spacing: 0.2em;
    }
}

@media (max-width: 575px) {
    .modal__form .iti__tel-input {
        letter-spacing: 0.1em;
    }
}

.text-link {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    font-size: 18px;
    line-height: 120%;
    letter-spacing: 0.08em;
    color: var(--adv-gold);
    text-transform: uppercase;
    cursor: pointer;
}
.text-link svg {
    stroke: #9c9a8b;
}
.text-link:hover {
    color: var(--adv-default);
}
.text-link:hover svg {
    stroke: var(--adv-default);
}
