
/* ==== callback-form-popup.css ==== */
.contact-form {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    overflow-x: hidden;
    overflow-y: auto;
    padding: 13px;
}

.callback-form {
    z-index: 10;
    overflow: hidden;
    margin: auto;
    border-radius: 12px;
    padding: 20px;
    max-width: 401px;
    background: var(--primary-brand-colors-white);
}
.callback-form__close {
    background-position: center;
    background-size: auto;
    background-repeat: no-repeat;
    position: absolute;
    right: 20px;
    top: 50%;
    z-index: 1;
    width: 28px;
    height: 28px;
    background-color: transparent;
    background-image: url("./../images/close-icon.svg");
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
}
@media (max-width: 425.9px) {
    .callback-form__close {
        right: 20px;
    }
}
.callback-form__title {
    position: relative;
    display: block;
    margin-top: -20px;
    margin-bottom: 30px;
    margin-left: -20px;
    padding: 22px;
    width: calc(100% + 40px);
    font-family: var(--font-family);
    font-weight: 500;
    font-size: 24px;
    text-align: left;
    color: var(--color-black);
}
@media (max-width: 425.9px) {
    .callback-form__title {
        font-size: 22px;
        text-align: left;
    }
}
.callback-form__inputs {
    margin-bottom: 20px;
}
.callback-form__label {
    display: block;
}
.callback-form__label:not(:last-child) {
    margin-bottom: 20px;
}
.callback-form__desc {
    display: inline-block;
    margin-bottom: 7px;
    font-family: var(--font-family);
    font-weight: 500;
    font-size: 14px;
    color: #9f9f9f;
}
.callback-form__input {
    border: 1px solid #f5f6fa!important;
    border-radius: 6px;
    padding: 16px 18px!important;
    width: 100%;
    line-height: 21px!important;
    font-family: var(--font-family);
    font-weight: 500;
    font-size: 16px;
    color: var(--primary-brand-colors-outer-space-crayola) !important;
    -webkit-transition: border var(--ui-transition) ease;
    -o-transition: border var(--ui-transition) ease;
    transition: border var(--ui-transition) ease;
}
.callback-form__input::-webkit-input-placeholder {
    font-family: var(--font-family);
    font-weight: 500;
    font-size: 16px;
    color: #b5b7c4!important;
}
.callback-form__input::-moz-placeholder {
    font-family: var(--font-family);
    font-weight: 500;
    font-size: 16px;
    color: #b5b7c4!important;
}
.callback-form__input:-ms-input-placeholder {
    font-family: var(--font-family);
    font-weight: 500;
    font-size: 16px;
    color: #b5b7c4!important;
}
.callback-form__input::-ms-input-placeholder {
    font-family: var(--font-family);
    font-weight: 500;
    font-size: 16px;
    color: #b5b7c4!important;
}
.callback-form__input::placeholder {
    font-family: var(--font-family);
    font-weight: 500;
    font-size: 16px;
    color: #b5b7c4!important;
}
.callback-form__input:focus {
    border-color: var(--primary-brand-colors-outer-space-crayola) !important;
}
@media (max-width: 425.9px) {
    .callback-form__input {
        padding: 11px 15px!important;
        font-size: 14px!important;
    }
}
.callback-form__check {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-bottom: 20px;
    gap: 10px;
}
.callback-form__check-label {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    cursor: pointer;
    gap: 5px;
}
.callback-form__checkbox {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    border: 1px solid #f5f6fa;
    border-radius: 6px;
    width: 20px;
    height: 20px;
    cursor: pointer;
}
.callback-form__checkbox::before {
    content: "";
    display: block;
    border-radius: 2px;
    width: 10px;
    height: 10px;
    background: var(--primary-brand-colors-bitter-lemon);
    -webkit-transform: scale(0);
    -ms-transform: scale(0);
    transform: scale(0);
    -webkit-transition: -webkit-transform var(--ui-transition) cubic-bezier(0.05, -0.04, 0.62, 1.5);
    transition: -webkit-transform var(--ui-transition) cubic-bezier(0.05, -0.04, 0.62, 1.5);
    -o-transition: transform var(--ui-transition) cubic-bezier(0.05, -0.04, 0.62, 1.5);
    transition: transform var(--ui-transition) cubic-bezier(0.05, -0.04, 0.62, 1.5);
    transition: transform var(--ui-transition) cubic-bezier(0.05, -0.04, 0.62, 1.5), -webkit-transform var(--ui-transition) cubic-bezier(0.05, -0.04, 0.62, 1.5);
}
.callback-form__checkbox:checked {
    /* stylelint-disable-next-line scss/selector-no-redundant-nesting-selector */
}
.callback-form__checkbox:checked::before {
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
}
.callback-form__checkbox:checked ~ .callback-form__check-desc {
    color: var(--primary-brand-colors-outer-space-crayola);
}
.callback-form__check-desc {
    font-family: var(--font-family);
    font-weight: 500;
    font-size: 14px;
    color: #9f9f9f;
    -webkit-transition: color var(--ui-transition) ease;
    -o-transition: color var(--ui-transition) ease;
    transition: color var(--ui-transition) ease;
}
@media (max-width: 425.9px) {
    .callback-form__check-desc {
        font-size: 11px;
    }
}
.callback-form__btn {
    width: 100%;
}
.callback-form__btn:not(:last-child) {
    margin-bottom: 10px;
}
@media (max-width: 425.9px) {
    .callback-form__btn {
        padding: 9px;
    }
}
.callback-form__personal-information {
    display: inline-block;
    max-width: 326px;
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 12px;
    line-height: 130%;
    text-align: center;
    color: #9f9f9f;
}
.callback-form__personal-information a {
    text-decoration: underline;
    color: #9f9f9f;
}
@media (max-width: 425.9px) {
    .callback-form {
        padding: 14px;
    }
}

/* ==== disclaimer.css ==== */
/*
* Prefixed by https://autoprefixer.github.io
* PostCSS: v8.4.14,
* Autoprefixer: v10.4.7
* Browsers: last 4 version
*/

.disclaimer {
    position: static;
    width: 100%;
    padding: 12px 0;
    background: rgba(33, 42, 47, 1);
    z-index: 99;
}

.disclaimer.is-hidden {
    display: none;
}

.disclaimer .disclaimer__wrap {
    gap: 20px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-flow: row nowrap;
    flex-flow: row nowrap;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    width: 100%;
    max-width: 1170px;
    margin: 0 auto;
    padding: 0 15px;
}

.disclaimer .disclaimer__text {
    color: #FFF;
    font-family: StyreneAWeb;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 120%; /* 19.2px */
}

.disclaimer .disclaimer__button {
    margin-top: 2px;
    cursor: pointer;
    border: none;
    outline: none;
    background: transparent;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 20px;
    height: 20px;
    stroke: #fff;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.disclaimer .disclaimer__button svg {
    width: 14px;
    height: 14px;
}

@media only screen and (max-width: 991px) {
    .disclaimer .disclaimer__text {
        font-size: 14px;
        line-height: 1.5;
    }
}

@media only screen and (max-width: 576px) {
    .disclaimer {
        padding: 10px 0;
    }

    .disclaimer .disclaimer__text {
        font-size: 10px;
        line-height: 120%;
    }

    .disclaimer .disclaimer__button {
        margin-top: 0;
        width: 10px;
        height: 10px;
    }

    .disclaimer .disclaimer__button svg {
        width: 10px;
        height: 10px;
    }
}

/* ==== header.css ==== */
@font-face {
    font-family: 'StyreneAWeb';
    src: url('./../fonts/StyreneAWeb-Regular.woff2') format('woff2'), url('./../fonts/StyreneAWeb-Regular.woff') format('woff');
    font-display: swap;
    font-weight: 400;
}

@font-face {
    font-family: 'StyreneAWeb';
    src: url('./../fonts/StyreneAWeb-Medium.woff2') format('woff2'), url('./../fonts/StyreneAWeb-Medium.woff') format('woff');
    font-display: swap;
    font-weight: 500;
}

@font-face {
    font-family: 'StyreneAWeb';
    src: url('./../fonts/StyreneAWeb-Bold.woff2') format('woff2'), url('./../fonts/StyreneAWeb-Bold.woff') format('woff');
    font-display: swap;
    font-weight: 600;
}

@font-face {
    font-family: 'StyreneAWeb';
    src: url('./../fonts/StyreneAWeb-Black.woff2') format('woff2'), url('./../fonts/StyreneAWeb-Black.woff') format('woff');
    font-display: swap;
    font-weight: 700;
}

:root {
    --color-black: #2F3C43;
    --color-accent: #BAD23B;
}

.menu-container {
    margin: 0 auto;
    min-height: 100px;
    width: 100%;
    position: absolute;
    left: 0;
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
    z-index: 999;
    top: 0;
}
.menu-container .menu {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    min-height: 105px;
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 20px;
}
.menu-container .menu__logo {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 175px;
    height: 61px;
}
@media screen and (max-width: 1200px) {
    .menu-container .menu__logo {
        width: 100px;
        height: 38px;
    }
}
.menu-container .menu__logo img {
    display: block;
    max-width: 100%;
    height: auto;
}
.menu-container .menu__logo img:nth-child(1),
.menu-container.menu-container_white .menu__logo img:nth-child(2) {
    display: block;
}
.menu-container .menu__logo img:nth-child(2),
.menu-container.menu-container_white .menu__logo img:nth-child(1) {
    display: none;
}
.mob__logo img:nth-child(1) {
    display: block;
}
.mob__logo img:nth-child(2) {
    display: none;
}
.new-page .mob__logo img:nth-child(1) {
    display: none;
}
.menu-container .menu__items {
    margin: 0 auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}
.menu-container.menu-container_white .mob__menu {
    background-color: transparent;
}
.mob__callback {
    display: none !important;
}
.menu-container.menu-container_white .mob__logo img:nth-child(1) {
    display: none;
}
.menu-container.menu-container_white .mob__menu {
    background-color: transparent;
}
.mob__menu {
    justify-content: space-between;
    flex-direction: row-reverse;
    transition: background-color 0.3s ease-in-out;
}
@media (max-width: 425.9px) {
    .mob__logo img {
        width: 74px;
    }
}
@media (max-width: 576px) {
    .mob__items {
        padding-top: 80px;
    }
}
.mob__close {
    position: absolute;
    top: 0;
    right: 0;
}
.menu-container.menu-container_white .mob__logo img:nth-child(2) {
    display: block;
}
.menu-container .mob__logo img:nth-child(2) {
    display: none;
}
.menu-container.menu-container_white .mob__burgermenu svg {
    background-image: url('./../images/burger.svg');
}
.menu-container .mob__burgermenu svg {
    background-image: url('./../images/burger-black.svg');
}
.mob__burgermenu svg {
    fill: transparent;
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
}
.menu-container .menu__item {
    position: relative;
}
.menu-container .menu__item:not(:last-child) {
    margin-right: 20px;
}
@media screen and (max-width: 1200px) {
    .menu-container .menu__item:not(:last-child) {
        margin-right: 10px;
    }
}
.menu-container .menu__link,
.header_container .menu__link {
    cursor: pointer;
    outline: none;
    border: none;
    padding: 0;
    background: transparent;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    font-weight: 400;
    font-size: 16px;
    line-height: 1.75;
}
.menu-container .menu__link-text,
.header_container .menu__link-text {
    position: relative;
    overflow: hidden;
}
.new-page .menu-container .menu__link-text {
    font-size: 16px;
    font-style: normal;
    font-weight: 300;
    line-height: 28px; /* 175% */
}
.new-page .menu-container .mob__items .menu__link-text {
    color: #fff;
}
.menu-container .menu__link-icon,
.header_container .menu__link-icon {
    width: 10px;
    height: 6px;
    fill: transparent;
    stroke: #bfdf14;
    stroke-width: 1;
    stroke-linecap: round;
    stroke-linejoin: round;
    -webkit-transition: 0.3s;
    transition: 0.3s;
    margin-left: 5px;
}
.menu-container .menu__link-icon svg,
.header_container .menu__link-icon svg {
    width: 100%;
    max-width: 100%;
    vertical-align: top;
}
.menu-container .menu__item.is-opened .menu__link-icon,
.header_container .menu__item.is-opened .menu__link-icon {
    -webkit-transform: rotate(180deg);
    transform: rotate(180deg);
}
.menu-container.menu-container_white .menu__link,
.header_container.header_container_white .menu__link {
    color: #fff;
}
.menu-container .menu__link-text:after,
.header_container .menu__link-text:after {
    content: '';
    width: 100%;
    height: 2px;
    display: inline-block;
    position: absolute;
    z-index: -1;
    bottom: 0.4em;
    left: 0;
    -webkit-transform: translateX(100%);
    transform: translateX(100%);
    -webkit-transition: 0.3s;
    transition: 0.3s;
}
.menu-container .menu__link:hover .menu__link-text:after,
.header_container .menu__link:hover .menu__link-text:after,
.menu-container .menu__item.is-opened .menu__link-text:after,
.header_container .menu__item.is-opened .menu__link-text:after {
    -webkit-transform: translateX(0);
    transform: translateX(0);
    background-color: #bfdf14;
}
.menu-container.menu-container_white .menu__mail,
.header_container.header_container_white .menu__mail {
    color: #fff;
}
.menu-container .menu__item-sublink,
.header_container .menu__item-sublink {
    display: block;
    font-weight: 300;
    font-size: 16px;
    line-height: 1.75;
    color: #000;
    background-color: transparent;
}

@media only screen and (min-width: 992px) {
    .menu-container .menu__item-subblock,
    .header_container .menu__item-subblock {
        padding: 16px 0;
        background: #ffffff;
        border-radius: 5px;
    }
    .menu-container .menu__item-sublink,
    .header_container .menu__item-sublink {
        padding: 0 16px;
        -webkit-transition: background-color 0.3s;
        transition: background-color 0.3s;
    }
    .menu-container .menu__item-sublink:hover,
    .header_container .menu__item-sublink:hover {
        background-color: #f5f5f5;
    }
}
@media only screen and (max-width: 991px) {
    .menu-container .menu__link,
    .header_container .menu__link {
        margin: 0 auto;
        font-size: 20px;
        line-height: 1.4;
        color: #2f3c43 !important;
    }
    .menu-container .menu__link-icon,
    .header_container .menu__link-icon {
        width: 14px;
        height: 8px;
        stroke-width: 2;
        margin-left: 10px;
    }
    .menu-container .menu__item-sublink:first-child,
    .header_container .menu__item-sublink:first-child {
        margin-top: 20px;
    }
    .menu-container .menu__item-sublink:not(:last-child),
    .header_container .menu__item-sublink:not(:last-child) {
        margin-bottom: 10px;
    }
    .menu-container .menu__item:not(:first-child),
    .header_container .menu__item:not(:first-child) {
        margin-top: 20px;
    }
    .menu-container .menu__item:not(:last-child),
    .header_container .menu__item:not(:last-child) {
        margin-right: 0;
    }
    .menu__item-subblock {
        display: none;
        text-align: center;
    }
    .menu-container .menu__link-text:after,
    .header_container .menu__link-text:after {
        bottom: 0.3em;
    }
    .menu-container .js-subblock-mobile .menu__item-sublink,
    .header_container .js-subblock-mobile .menu__item-sublink {
        display: block;
        font-family: 'StyreneAWeb';
        font-weight: 300;
        font-size: 16px;
        line-height: 1.75;
        color: #fff;
        background-color: transparent;
    }
}
.menu-container .menu__mail {
    font-family: 'Montserrat-Medium';
    font-weight: 500;
    font-size: 14px;
    line-height: 2;
    position: relative;
    overflow: hidden;
}
.new-page .menu-container .menu__mail {
    display: none;
}
.menu-container .menu__mail:after {
    content: '';
    width: 100%;
    background-color: #bfdf14;
    height: 5px;
    display: inline-block;
    position: absolute;
    z-index: -1;
    bottom: 0.2em;
    left: 0;
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
}
.menu-container .menu__mail:hover:after {
    -webkit-transform: translateX(100%);
    -ms-transform: translateX(100%);
    transform: translateX(100%);
}
.mob__menu {
    min-height: 70px;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    display: none;
    background-color: #fff;
}
.mob__burgermenu {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-preferred-size: 20%;
    flex-basis: 20%;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: end;
    cursor: pointer;
    padding-right: 20px;
}
.mob__burgermenu svg {
    width: 24px;
    height: 24px;
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
}
.mob__burgermenu svg:hover {
    fill: transparent;
}
.mob__logo {
    -ms-flex-preferred-size: 60%;
    flex-basis: 60%;
    text-align: left;
    z-index: 30;
    padding-left: 20px;
}
.mob__logo img {
    max-height: 50px;
}
.mob__callback {
    -ms-flex-preferred-size: 20%;
    flex-basis: 20%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    cursor: pointer;
}
.new-page .mob__callback {
    display: none;
}
.mob__callback svg {
    width: 24px;
    height: 24px;
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
    z-index: 30;
}
.mob__callback svg:hover {
    fill: #bfdf14;
}
.mob__items {
    height: 100vh;
    width: 100%;
    background-color: #2F3C43;
    -webkit-transform: translateX(-100%);
    -ms-transform: translateX(-100%);
    transform: translateX(-100%);
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 20;
}
.mob__close {
    width: 20%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: end;
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: end;
    height: 45px;
    padding-right: 20px;
}
.menu-container .mob__items .menu__link-text {
    color: #fff;
}
.menu-container .menu__link-text {
    font-family: StyreneAWeb;
    font-size: 16px;
    font-style: normal;
    font-weight: 300;
    line-height: 28px;
}
.mob__close svg {
    fill: #fff;
    width: 24px;
    height: 24px;
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
    cursor: pointer;
}
.new-page .mob__close svg {
    fill: #fff;
}
.mob__close svg:hover {
    fill: #bfdf14;
}
.mob__containter {
    overflow: hidden auto;
    padding: 120px 40px 40px 40px;
    height: calc(100vh - 70px);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-flow: column nowrap;
    flex-flow: column nowrap;
}
@media (max-width: 576px) {
    .mob__containter {
        padding: 40px;
    }
}
.mob__item {
    display: inline-block;
    font-family: Montserrat-Regular;
    font-size: 1.25rem;
    color: #000;
    display: -webkit-box;
    display: -ms-flexbox;
    height: auto;
    padding: 20px;
    position: relative;
}
.mob__item:after {
    content: '';
    width: 100%;
    background-color: inherit;
    height: 5px;
    display: inline-block;
    position: absolute;
    z-index: -1;
    bottom: 2px;
    left: 0;
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
}
.mob__item:hover.mob__item:after {
    background-color: #bfdf14;
}
@media (max-width: 61.9375rem) {
    .menu-container .menu {
        display: none;
    }
    .menu-container {
        background-color: inherit !important;
    }
    .mob__menu {
        width: 100%;
        display: -webkit-box;
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
    }
}
.menu-container {
    transition: 0.3s, padding 0s !important;
}
.menu__btn {
    cursor: pointer;
    border: none;
    font-family: StyreneAWeb;
    outline: none;
    background-color: rgba(186, 210, 59, 1);
    padding: 11px;
    width: 100%;
    max-width: 190px;
    margin-right: 20px;
    font-weight: 400;
    font-size: 16px;
    line-height: 1.4;
    color: #ffffff;
    -webkit-transition: opacity 0.3s ease;
    transition: opacity 0.3s ease;
}

.menu__btn:hover {
    opacity: 0.8;
}
@media screen and (max-width: 991px) {
    .menu__btn {
        max-width: 280px;
        margin-right: 0;
        margin-top: 50px;
    }
}

.header-phone {
    font-family: StyreneAWeb;
    font-size: 14px;
    font-weight: 600;
    line-height: 28px;
    color: #000;
    border-bottom: 4px solid #BFDF14;
    margin: 0 20px 0 0;
}

.menu-container.menu-container_white .header-phone {
    color: #fff;
}

@media (max-width: 768px) {
    .header-phone {
        margin: 20px 0 0 0;
        color: #fff;
    }
}


/* Новый header */
.container {
    max-width: 1317px;
    width: 100%;
    margin: 0 auto;
    padding: 0 40px;
}
ol, ul {
    list-style: none;
}
.header {
    padding: 24px 0 28px;
    font-family: 'StyreneAWeb';
    font-size: 16px;
    position: relative;
    z-index: 11;
    background-color: #FBFBFB;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
}
.logo_wrapper {
    display: flex;
    align-items: center;
    gap: 6px;
}

.logo_wrapper__text {
    line-height: 18px;
    font-weight: 400;
    color: #000000;
}

.logo_wrapper__dv {
    display: flex;
    align-items: center;
    gap: 5px;
}

.logo_img {
    width: 166px;
    height: 46px;
    display: block;
    object-fit: contain;
}

.logo_dv_img {
    width: 149px;
    height: auto;
    display: block;
    object-fit: contain;
    margin-top: 4px;
}

.header_container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 55px;
}

.header_nav {
    display: flex;
    flex-grow: 1;
    justify-content: end;
}

.header_nav__list {
    display: flex;
    align-items: center;
    gap: 32px;
}

/*.header_nav__list li,
.mobile_nav__list li {
    text-transform: lowercase;
}*/

.header_nav__list li a:hover {
    color: var(--color-accent);
}

.header__tel {
    font-weight: 700;
    display: flex;
    align-items: center;
    line-height: 26px;
    gap: 4px;
}

.header__tel::before {
    display: block;
    content: '';
    width: 24px;
    height: 24px;
    flex-shrink: 0;
    background: url('./../images/icon/solar_phone-bold.svg') 50% / contain no-repeat;
}

.header__tel:hover {
    color: var(--color-accent);
}

.hamburger {
    width: 30px;
    height: 30px;
    flex-shrink: 0;
    position: relative;
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 10;
    cursor: pointer;

}

.hamburger .line_close {
    display: none;
}

.hamburger svg line {
    stroke: #202020;
    transition: all .3s ease;

}

.hamburger:hover svg line {
    stroke: var(--color-accent);
}

.hamburger_is-close .line_menu {
    display: none;
}

.hamburger_is-close .line_close {
    display: block;
}

.mobile-menu {
    position: fixed;
    top: 95px;
    bottom: 0;
    right: 0;
    left: 0;
    background-color: #00000000;
    z-index: 9;
    display: flex;
    pointer-events: none;
    transition: background-color .5s ease;
}

.mobile-menu__content {
    padding: 80px 20px;
    background-color: #F0F0F0;
    max-width: 600px;
    display: flex;
    align-items: center;
    flex-direction: column;
    gap: 60px;
    width: 100%;
    margin-left: auto;
    overflow-y: auto;
    transform: translateX(100%);
    transition: transform .3s ease;
}

.mobile-menu.is-open {
    background: #0000009d;
    pointer-events: all;
}

.mobile-menu.is-open .mobile-menu__content {
    transform: translateX(0);

}

.mobile_nav {
    width: 100%;
}

.mobile_nav__list {
    display: flex;
    flex-direction: column;
    text-align: center;
}

.mobile_nav__list a,
.mobile_nav__list span {
    padding: 16px 24px;
    display: block;
    font-size: 20px;
    width: 100%;
    font-family: 'StyreneAWeb', sans-serif;
}

.mobile-menu a:hover {
    color: var(--color-accent);
}

.mobile__tel {
    font-size: 20px;
    font-weight: 700;
    font-family: 'StyreneAWeb', sans-serif;
}

@media (max-width:1200px) {
    .mobile-menu {
        top: 76px;
    }

    .container {
        padding: 0 20px;
    }

    .header_nav {
        display: none;
    }

    .header_container .header__tel {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .header {
        background-color: #F0F0F0;
        padding: 16px 0;
    }
}

@media (max-width:480px) {
    .mobile-menu {
        top: 61px;
    }

    .logo_img {
        width: 130px;
        height: auto;
    }

    .logo_wrapper {
        gap: 0;
    }

    .logo_wrapper__text {
        font-size: 14px;
        line-height: 16px;
    }

    .logo_dv_img {
        width: auto;
        height: 12px;
    }

    .logo_wrapper__dv {
        gap: 3px;
    }

    .header_container {
        gap: 10px;
    }
}

@media (max-width:350px) {
    .mobile-menu {
        top: 61px;
    }

    .logo_img {
        width: 117px;
        height: auto;
    }

    .logo_wrapper {
        gap: 0;
    }

    .logo_wrapper__text {
        font-size: 12px;
        line-height: 14px;
    }

    .logo_dv_img {
        width: auto;
        height: 12px;
    }

    .logo_wrapper__dv {
        gap: 3px;
    }

    .header_container {
        gap: 10px;
    }
}

/* dropdown */
.header_dropdown__title {
    cursor: pointer;
    transition: color .3s ease;
    display: flex;
    align-items: center;
    gap: 4px;
    text-wrap: nowrap;
}
.header_dropdown:hover .header_dropdown__title {
    color: var(--color-accent);
}
.mobile_dropdown__icon,
.header_dropdown__icon {
    fill: var(--color-black);
    transition: all .3s ease;
    margin-top: 5px;
}
.header_dropdown__icon {
    margin-top: 4px;
}
.header_dropdown:hover .header_dropdown__icon {
    transform: scale(1, -1);
    fill: var(--color-accent);
}

.header_dropdown {
    position: relative;
}
.header_dropdown__hidden {
    padding-top: 10px;
    position: absolute;
    top: 100%;
    right: 0;
    display: none;
}
.header_dropdown:hover .header_dropdown__hidden {
    display: block;
}
.header_dropdown__list {
    display: flex;
    padding: 16px;
    border-radius: 8px;
    background-color: #ffffff;
    box-shadow: 0 0 10px 2px #00000021;
    min-width: 150px;
}
.header_dropdown__list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.mobile_dropdown {
    width: 100%;
}
.mobile_dropdown__title {
    padding: 16px 24px;
    display: block;
    font-size: 20px;
    width: 100%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    transition: color .3s ease;
    font-family: 'StyreneAWeb', sans-serif;
}
.mobile_dropdown__title::after {
    display: block;
    content: '⌵';
    font-weight: 700;
    flex-shrink: 0;
    margin: -6px 0 0 3px;
    transition: transform .3s ease, margin .3s ease;
}
.mobile_dropdown__title:hover {
    color: var(--color-accent);

}
.mobile_dropdown__title:hover .mobile_dropdown__icon {
    fill: var(--color-accent);

}
.mobile_dropdown.is-open .mobile_dropdown__icon {
    transform: rotate(180deg);
    fill: var(--color-accent);

}
.mobile_dropdown.is-open .mobile_dropdown__title {
    color: var(--color-accent);
}
.mobile_dropdown.is-open .mobile_dropdown__title::after {
    transform: rotate(180deg) translateY(-8px);
}
.mobile_dropdown__hidden {
    display: none;
    padding-top: 0;
}
.mobile_dropdown.is-open .mobile_dropdown__hidden {
    display: block;
}
.mobile_dropdown__list {
    display: flex;
    flex-direction: column;
    gap: 0;
    padding: 0;
    background-color: transparent;
    box-shadow: none;
    min-width: auto;
}
.mobile_dropdown__list li {
    padding: 0;
}
.mobile_dropdown__list a {
    padding: 16px 24px;
    display: block;
    font-size: 18px;
    width: 100%;
}
.header__contacts {
    display: inline-flex;
    align-items: center;
    gap: 10px;
}
.mobile-menu__content .header__contacts {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
@media (max-width: 768px) {
    .header__contacts {
        flex-direction: column;
    }
}
@media (max-width: 1200px) {
    .header_container .header__tg {
        display: none;
    }
}
@media (max-width: 768px) {
    .header__tg {
        display: none;
    }
    .mobile-menu__content .header__tg {
        display: inline-flex;
        align-items: center;
        gap: 5px;
    }
}
.header__tg img {
    max-width: 24px;
}

/* ==== footer.css ==== */
.footer {
    background-color: #2F3C43;
}

.footer__wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
}
@media screen and (max-width: 1140px) {
    .footer__wrapper {
        padding: 0 20px;
    }
}


.footer__content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 100%;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    padding: 40px 0;
    border-bottom: 1px solid #BAD23B;
}
@media screen and (max-width: 1140px) {
    .footer__content {
        padding: 25px 0px;
    }
}
@media screen and (max-width: 991px) {
    .footer__content {
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    }
}
@media screen and (max-width: 500px) {
    .footer__content {
        padding: 40px 0;
    }
}

@media screen and (max-width: 991px) {
    .footer__logo-link {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
    }
}
@media screen and (max-width: 800px) {
    .footer__logo-link {
        -webkit-box-pack: start;
        -ms-flex-pack: start;
        justify-content: flex-start;
    }
}
@media (max-width: 500px) {
    .footer__logo-link {
        justify-content: flex-start;
    }
}

@media screen and (max-width: 991px) {
    .footer__logo-wrapper {
        width: 100%;
        padding-bottom: 20px;
    }
}

.footer__menu-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    margin: 0;
    padding: 0;
    list-style-type: none;
}
@media screen and (max-width: 991px) {
    .footer__menu-list {
        -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
        order: 1;
        width: 33%;
    }
    .footer__menu-list:first-of-type .footer__menu-link {
        -webkit-box-pack: end;
        -ms-flex-pack: end;
        padding-right: 20px;
    }
    .footer__menu-list:last-of-type .footer__menu-link {
        padding-left: 20px;
    }
}
@media screen and (max-width: 800px) {
    .footer__menu-list {
        -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
        order: 1;
        width: 100%;
        margin-top: 25px;
    }
    .footer__menu-list:last-of-type .footer__menu-link {
        padding-left: 0;
    }
}
@media (max-width: 500px) {
    .footer__menu-list::before {
        display: none;
    }
    .footer__menu-list .footer__menu-link {
        text-align: left!important;
        justify-content: flex-start !important;
    }
}

.footer__menu-item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.footer__menu-link {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 100%;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 5px 0;
    font-family: StyreneAWeb;
    font-size: 14px;
    color: #ffffff;
    font-style: normal;
    font-weight: 400;
    line-height: 20px; /* 142.857% */
}

.footer__contacts-wrapper {
    display: none;
}

.footer__logo-img {
    max-width: 170px;
}

.footer__nav {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    padding: 40px 0;
    border-bottom: 1px solid #646464;
}
@media (max-width: 61.9375rem) {
    .footer__nav {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -webkit-flex-direction: column;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-align: center;
        -webkit-align-items: center;
        -ms-flex-align: center;
        align-items: center;
    }

}
@media (max-width: 414px) {
    .footer__nav {
        margin-top: 0;
    }
}

.footer__nav-menu {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
}
@media (max-width: 61.9375rem) {
    .footer__nav-menu {
        -webkit-flex-basis: 100%;
        -ms-flex-preferred-size: 100%;
        flex-basis: 100%;
        -webkit-box-align: center;
        -webkit-align-items: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -webkit-flex-direction: column;
        -ms-flex-direction: column;
        flex-direction: column;
    }
}

.footer__nav-menu-item {
    color: #fff;
    font-family: StyreneAWeb;
    font-size: 0.875rem;
    line-height: 19px;
    margin-left: 30px;
    position: relative;
    overflow: hidden;
}
@media (max-width: 61.9375rem) {
    .footer__nav-menu-item {
        line-height: 42px;
        margin: 0;
    }
}

.footer__nav-menu-item:after {
    content: '';
    width: 100%;
    height: 5px;
    display: inline-block;
    position: absolute;
    z-index: -1;
    bottom: 2px;
    left: 0;
    -webkit-transform: translateX(100%);
    -ms-transform: translateX(100%);
    transform: translateX(100%);
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
}
@media (max-width: 61.9375rem) {
    .footer__nav-menu-item:after {
        bottom: 15px;
    }
}

.footer__nav-menu-item:hover.footer__nav-menu-item:after {
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
    background-color: #bfdf14;
    z-index: 1;
}

.footer__nav-menu-item p {
    z-index: 3;
    position: relative;
}

.footer__nav-menu-item:last-child:after {
    -webkit-transform: translateX(0%);
    -ms-transform: translateX(0%);
    transform: translateX(0%);
    z-index: 1;
    background-color: #bfdf14;
    left: 0;
}

.footer__nav-menu-item:hover.footer__nav-menu-item:last-child:after {
    -webkit-transform: translateX(100%);
    -ms-transform: translateX(100%);
    transform: translateX(100%);
    z-index: -1;
}

.footer__menu-sub-desc {
    color: rgba(255, 255, 255, 0.50);
    font-family: StyreneAWeb;
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: 28px; /* 200% */
}

.footer__desc {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    padding: 25px 0;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
}
@media (max-width: 61.9375rem) {
    .footer__desc {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -webkit-flex-direction: column;
        -ms-flex-direction: column;
        flex-direction: column;
        padding: 25px 0;
    }
}

.footer__desc-copy {
    color: #FFF;
    font-family: StyreneAWeb;
    font-size: 12px;
    font-style: normal;
    font-weight: 300;
    line-height: 140%; /* 16.8px */
    -webkit-flex-basis: 66.66667%;
    -ms-flex-preferred-size: 66.66667%;
    flex-basis: 66.66667%;
}

.footer__desc-author {
    color: #fff;
    font-family: StyreneAWeb;
    font-size: 0.875rem;
    line-height: 19px;
    position: relative;
    overflow: hidden;
    margin-left: 5px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
}
@media (max-width: 61.9375rem) {
    .footer__desc-author {
        margin: 15px 0 0 0;
        text-align: left;
        width: 100%;
    }
}
@media (max-width: 414px) {
    .footer__desc-author {
        text-align: center;
        justify-content: center;
    }
}

.footer__desc-author-link {
    color: var(--color-accent);
    font-family: StyreneAWeb;
    line-height: 19px;
    position: relative;
    overflow: hidden;
    margin-left: 5px;
    display: inline-block;
}

.footer__desc-author-link:after {
    content: '';
    width: 100%;
    height: 5px;
    display: inline-block;
    position: absolute;
    z-index: -1;
    bottom: 2px;
    left: 0;
    -webkit-transform: translateX(100%);
    -ms-transform: translateX(100%);
    transform: translateX(100%);
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
}

.footer__desc-author-link:hover {
    color: #BAD23B;
}

.footer__desc-author-link p {
    z-index: 3;
    position: relative;
    display: inline-block;
}

/* cookie */
.cookie_popup {
    padding: 30px 20px;
    border-radius: 20px;
    background-color: #fff;
    box-shadow: 3px 4px 12px 0px #788DB830;
    margin: 16px;
    position: fixed;
    z-index: 12;
    bottom: 0px;
    left: 50%;
    transform: translateX(-50%);
    max-width: 811px;
    width: calc(100%);
    display: flex;
    align-items: center;
    gap: 31px;
    transition: transform .3s, opacity .3s;
}

.cookie_popup.hidden {
    transform: translateX(-50%) translateY(100%);
    opacity: 0;
    pointer-events: none;
}

.cookie_popup a {
    text-decoration: underline;
}

.cookie_popup a:hover {
    color: #bfdf14;
}

.cookie_popup p {
    font-size: 12px;
    max-width: 590px;
    font-family: StyreneAWeb, sans-serif;
}

.btn_cookie {
    flex-grow: 3;
    flex-shrink: 0;
    max-width: 223px;
    text-align: center;
    width: fit-content;
    margin: 0;
}

@media (max-width:1000px) {
    .cookie_popup {
        padding: 20px;
        align-items: end;
        bottom: 0;
        left: 0;
        right: 0;
        transform: translateX(0);
        max-width: none;
        width: auto;
        gap: 16px;

    }

    .cookie_popup.hidden {
        transform: translateY(100%);
    }
    .btn_cookie {
        height: 40px;
        font-size: 14px;
    }
}
@media (max-width:550px) {
    .cookie_popup {
        flex-direction: column;
    }
    .btn_cookie {
        width: 100%;
        max-width: none;
    }
}

.flogo_wrapper {
    display: flex;
    align-items: center;
    gap: 6px;
}
.flogo_wrapper span {
    color: #FFFFFF;
    font-family: 'StyreneAWeb';
    font-size: 16px;

}
@media (max-width: 1300px){

    .flogo_wrapper {
        flex-direction: column;
        gap: 5px;
    }
    .flogo_wrapper .logo_wrapper__text {
        margin-left: 20px;
    }
}
@media (max-width: 991px){
    .flogo_wrapper .logo_wrapper__text {
        margin-left: 0px;
    }
    .flogo_wrapper {
        flex-direction: row;
        gap: 0;
        justify-content: center;
    }
}
@media (max-width: 800px){

    .flogo_wrapper {
        justify-content: start;
    }
}

@media (max-width: 480px){

    .flogo_wrapper span {
        font-size: 14px;
    }
}
@media (max-width: 350px){

    .flogo_wrapper span {
        font-size: 12px;
    }
}

/* ==== endpage-inline-callback-form.css ==== */
.endpage-callback-form__button {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-webkit-align-items: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-webkit-justify-content: center;
	-ms-flex-pack: center;
	justify-content: center;
}
.endpage-callback-form {
	position: relative;
	z-index: 1;
	padding: 60px 0;
	font-family: Montserrat-Regular;
	font-style: normal;
	font-weight: 400;
	font-size: 18px;
	line-height: 1.4;
	color: #2f3c43;
}
.endpage-callback-form__wrap {
	padding: 0 15px;
	margin: 0 auto;
	width: 100%;
	max-width: 1170px;
}
.endpage-callback-form__title {
	display: block;
	font-weight: 700;
	font-size: 24px;
	line-height: 1.34;
	color: #333;
	text-align: center;
	font-family: Montserrat-Semibold;
}
.endpage-callback-form__subtitle {
	margin-top: 24px;
	font-size: 16px;
	line-height: 1.45;
	color: #2f3c43;
	text-align: center;
	font-family: Montserrat-Regular;
}
.endpage-callback-form__form {
	width: 100%;
	max-width: 700px;
	margin: 42px auto 0;
}
.endpage-callback-form__form-body {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: horizontal;
	-webkit-box-direction: normal;
	-ms-flex-flow: row wrap;
	flex-flow: row wrap;
}
.endpage-callback-form__input {
	-webkit-box-flex: 1;
	-webkit-flex: 1;
	-ms-flex: 1;
	flex: 1;
	background-color: #fff;
	border: 1px solid #f4f4f4;
	-webkit-box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.03);
	box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.03);
	border-radius: 4px;
	padding: 16px 18px;
	font-size: 16px;
	line-height: 1.25;
	letter-spacing: -0.02em;
	color: #333;
}
.endpage-callback-form__input::-webkit-input-placeholder {
	color: rgba(51, 51, 51, 0.4);
}
.endpage-callback-form__input::-moz-placeholder {
	color: rgba(51, 51, 51, 0.4);
}
.endpage-callback-form__input:-ms-input-placeholder {
	color: rgba(51, 51, 51, 0.4);
}
.endpage-callback-form__input::-ms-input-placeholder {
	color: rgba(51, 51, 51, 0.4);
}
.endpage-callback-form__input::placeholder {
	color: rgba(51, 51, 51, 0.4);
}
.endpage-callback-form__button:not(.target-item__form .endpage-callback-form__button) {
	cursor: pointer;
	outline: none;
	border: none;
	margin-left: 24px;
	padding: 12px 20px 15px;
	-webkit-box-flex: 1;
	-webkit-flex: 1;
	-ms-flex: 1;
	flex: 1;
	background: -webkit-linear-gradient(263.38deg, #bfdf14 4.42%, #abc711 94.06%);
	background: -o-linear-gradient(263.38deg, #bfdf14 4.42%, #abc711 94.06%);
	background: linear-gradient(186.62deg, #bfdf14 4.42%, #abc711 94.06%);
	-webkit-box-shadow: 0px 4px 30px rgba(0, 0, 0, 0.07);
	box-shadow: 0px 4px 30px rgba(0, 0, 0, 0.07);
	border-radius: 5px;
	font-weight: 400;
	font-family: 'Montserrat-Regular';
	font-size: 18px;
	line-height: 1.4;
	color: #fff;
	-webkit-transition: opacity 0.3s;
	-o-transition: opacity 0.3s;
	transition: opacity 0.3s;
}
@media (max-width: 576px){
    .endpage-callback-form__button:not(.target-item__form .endpage-callback-form__button) {
        margin-left: 0;
    }
    .endpage-callback-form__policy .callback-form__personal-information {
        max-width: 100%;
    }
}
.endpage-callback-form__button:hover {
	opacity: 0.8;
}
.endpage-callback-form__policy {
	width: 100%;
	max-width: 330px;
	margin: 42px 0 0 auto;
	font-weight: 400;
	font-size: 12px;
	line-height: 1.45;
	letter-spacing: -0.02em;
	color: #000;
	text-align: center;
	font-family: Montserrat-Light;
}
.endpage-callback-form__policy .callback-form__personal-information,
.endpage-callback-form__policy .callback-form__personal-information a {
	color: #000;
}
.endpage-callback-form__policy a {
	-webkit-text-decoration-line: underline;
	text-decoration-line: underline;
	-webkit-transition: color 0.3s;
	-o-transition: color 0.3s;
	transition: color 0.3s;
}
.endpage-callback-form__policy a:hover {
	color: #bfdf14;
}
.endpage-callback-form__background {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	-o-object-fit: cover;
	object-fit: cover;
	z-index: -1;
}

@media only screen and (max-width: 991px) {
	.endpage-callback-form {
		padding: 45px 0;
	}
	.endpage-callback-form__title {
		font-size: 21px;
	}
	.endpage-callback-form__subtitle {
		margin-top: 20px;
	}
	.endpage-callback-form__form {
		margin-top: 30px;
	}
	.endpage-callback-form__button {
		margin-left: 20px;
	}
	.endpage-callback-form__policy {
		margin-top: 30px;
	}
}
@media only screen and (max-width: 576px) {
	.endpage-callback-form {
		padding: 30px 0;
	}
	.endpage-callback-form__title {
		font-size: 18px;
	}
	.endpage-callback-form__title br {
		display: none;
	}
	.endpage-callback-form__subtitle {
		font-size: 14px;
		margin-top: 16px;
	}
	.endpage-callback-form__form {
		margin-top: 20px;
	}
	.endpage-callback-form__input {
		-webkit-flex-basis: 100%;
		-ms-flex-preferred-size: 100%;
		flex-basis: 100%;
		padding: 12px 14px;
	}
	.endpage-callback-form__button {
		margin-left: 0;
		margin-top: 16px;
		-webkit-flex-basis: 100%;
		-ms-flex-preferred-size: 100%;
		flex-basis: 100%;
		font-size: 16px;
		padding: 10px 15px 13px;
	}
	.endpage-callback-form__policy {
		margin-top: 20px;
		max-width: 100%;
		font-size: 10px;
	}
}

/* ==== overwrite.css ==== */
h1,
h2,
h3 {
	font-weight: normal;
	font-size: inherit;
	line-height: inherit;
	display: inline;
}

.form__title__30 .investors-form__title {
	font-size: 30px;
}
@media only screen and (max-width: 576px) {
	.section-purpose-dudil__box,
	.section-purpose-dudil__rows-caption.h2 {
		font-size: 16px!important;
	}
	.form__title__30 .investors-form__title {
		font-size: 18px;
	}
}

@media only screen and (max-width: 576px) {
	.section-not-worth__item-text {
		font-size: 18px!important;
	}
}
@media only screen and (max-width: 576px) {
	.section-hero-marketing__cell_left {
		padding: 30px 0!important;
		margin: auto;
	}
	.section-hero-marketing__title {
		display: block;
		margin: auto;
	}
}

/**INVESTMENTS PAGES OVERWRITE START**/
.investments__hero__block h1 {
	font-weight: 700;
}
.investments__hero__block .hero__button {
	width: 100%;
}
/**INVESTMENTS PAGES OVERWRITE END**/

