/* #region fonts */
@font-face {
    font-family: "Manrope";
    src: url('/fonts/Manrope-Regular.ttf') format("opentype");
    font-weight: 400;
    font-style: normal;
    font-display: swap
}

@font-face {
    font-family: "Manrope";
    src: url('/fonts/Manrope-Medium.ttf') format("opentype");
    font-weight: 500;
    font-style: normal;
    font-display: swap
}

@font-face {
    font-family: "Manrope";
    src: url('/fonts/Manrope-SemiBold.ttf') format("opentype");
    font-weight: 600;
    font-style: normal;
    font-display: swap
}

@font-face {
    font-family: "Manrope";
    src: url('/fonts/Manrope-Bold.ttf') format("opentype");
    font-weight: 700;
    font-style: normal;
    font-display: swap
}
/* #endregion fonts */

/* #region reset css */
* {
    padding: 0;
    margin: 0;
    border: 0;
}

*,*:before,*:after {
    box-sizing: border-box;
}

html,body {
    line-height: 1;
    -moz-text-size-adjust: 100%;
    -webkit-text-size-adjust: 100%;
}

nav,footer,header,aside,picture {
    display: block;
}

input, button, textarea {
    font-family: inherit;
}

img, video {
    max-width: 100%;
    width: 100%;
    height: auto;
    display: block;
}

button {
    background-color: transparent;
    cursor: pointer;
}

button[disabled] {
    cursor: default;
}

a {
    text-decoration: none;
    color: inherit;
}

a:hover {
    text-decoration: underline;
}
/* #endregion reset css */

/* #region base */
html {
    scroll-behavior: smooth;
    scroll-padding-top: 70px;
}

body {
    font-family: "Manrope", sans-serif;
    background-color: #F5F5F9;
}

body.overflow-hidden {
    overflow: hidden;
}

.container {
    min-width: 360px;
    max-width: 1210px;
    margin: 0 auto;
    padding: 0 16px;
}

section h2 {
    font-size: 32px;
    font-weight: 500;
    line-height: 120%;
}

@media (min-width: 1024px) {
    .container {
        padding: 0 22px;
    }

    section h2 {
        font-size: 48px;
        line-height: 130%;
    }
}
/* #endregion base */

/* #region utilities */
.sr-only {
    border: 0;
    clip: rect(0 0 0 0);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    white-space: nowrap;
    width: 1px;
}

.position-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
}

.accent-color {
    color: #26BF42;
}

@keyframes lds-ring {
    0% {
        transform: translate(-50%, -50%) rotate(0deg)
    }

    100% {
        transform: translate(-50%, -50%) rotate(360deg)
    }
}
/* #endregion utilities */

/* #region elements */
.btn {
    align-items: center;
    padding: 10px;
    width: 100%;
    display: flex;
    gap: 10px;
    justify-content: center;
    position: relative;
}

.btn img {
    width: 15px;
    height: 15px;
    flex: 0 0 15px;
}

.btn--loading span,
.btn--checked span {
    opacity: 0;
}

.btn__loading, .btn__checked {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 10;
    display: none;
}

.btn--loading .btn__loading,
.btn--checked .btn__checked {
    display: block;
}

.btn__loading img,
.btn__checked img {
    animation: lds-ring 1.2s linear infinite;
    width: 30px;
    height: 30px;
}

.btn__checked img {
    animation: initial;
}

.btn--transparent-green {
    border-radius: 100px;
    background-color: transparent;
    border: 1px solid #26BF42;
    color: #26BF42;
    font-size: 14px;
    height: 40px;
    padding: 0;
}

.btn--accent {
    background-color: #26BF42;
    border-radius: 100px;
    color: #fff;
    font-size: 18px;
    font-weight: 500;
    line-height: 150%;
    padding: 15px 10px;
}

.btn--white {
    background-color: #FFF;
    border-radius: 100px;
    color: #000;
    font-size: 18px;
    font-weight: 500;
    line-height: 150%;
    padding: 15px 10px;
}

.btn--orange {
    background-color: #FFA013;
    border-radius: 100px;
    color: #fff;
    font-size: 18px;
    font-weight: 500;
    line-height: 150%;
    padding: 15px 10px;
}

.form-input {
    background-color: #F5F5F5;
    border: 2px solid #F5F5F5;
    border-radius: 100px;
    font-size: 18px;
    font-weight: 500;
    padding: 0 24px;
    height: 58px;
    width: 100%;
}

.form-input--white-theme {
    background-color: #FFFFFF;
    border: 2px solid #FFFFFF;
}

.form-input--error {
    border-color: red;
}

.form-input--success {
    border-color: green;
}

.form-policy {
    font-size: 12px;
    line-height: 20px;
    color: #B3B3B3;
    text-align: center;
}

.form-method {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.form-method-call__title {
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 16px;
}

.form-method-call__btns {
    display: flex;
    gap: 8px;
}

.form-method-call__item {
    align-items: center;
    border-radius: 8px;
    border: 1px solid #d6d6d6;
    color: inherit;
    display: flex;
    flex-direction: column;
    font-size: 12px;
    padding: 5px;
    gap: 5px;
    text-align: center;
    line-height: 1.2;
    flex: 0 1 33%;
}

.form-method-call__item--phone p {
    max-width: 90px;
}

.form-method-call__item--active {
    border-color: #26BF42;
}

.form-method-call__item img {
    width: 48px;
    height: 48px;
    flex: 0 0 48px;
}

.form-method__form {
    display: none;
}

.form-method__form--show {
    display: block;
}
/* #endregion elements */

/* #region .header */
.header {
    background-color: #F5F5F9;
    height: 70px; 
    position: sticky;
    top: 0;
    right: 0;
    left: 0;
    transition: top 300ms ease-in-out;
    z-index: 100;
}

.header--hidden {
    top: -70px;
}

.header .container {
    display: flex;
    height: 100%;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
}

.header__logo {
    font-size: 16px;
    font-weight: 700;
    line-height: 150%;
    position: relative;
    top: -3px;
}

.header-nav {
    background-color: #F5F5F9;
    position: absolute;
    top: 70px;
    right: 0;
    bottom: 0;
    left: 0;
    height: calc(100vh - 70px);
    width: 100%;
    display: none;
    overflow: auto;
}

.header-nav__wrapper {
    display: flex;
    flex-direction: column;
    gap: 18px;
    padding: 24px 16px;
    width: 100%;
    height: 100%;
    position: relative;
}

.header--show-menu .header-nav {
    display: flex;
}

.header-nav ul {
    display: flex;
    flex-direction: column;
    gap: 32px;
    list-style: none;
}

.header-nav li {
    text-align: center;
}

.header-nav li a {
    font-size: 24px;
    font-weight: 500;
    line-height: normal;
    text-align: center;
    /* display: block; */
}

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

.header__phone {
    color: #26BF42;
    font-size: 24px;
    font-weight: 600;
    line-height: 50px;
    display: block;
    text-align: center;
}

.header__phone--mobile {
    color: #FFA013;
    font-size: 14px;
    line-height: 1;
    text-align: right;
}

.header__phone--desk {
    display: none;
}

.header__callback {
    display: none;
}

.header__btn-menu {
    display: flex;
    flex-direction: column;
    gap: 6px;
    justify-content: center;
    flex: 0 0 30px;
    width: 30px;
    height: 30px;
    position: relative;
}

.header__btn-menu span {
    height: 2px;
    background-color: #26BF42;
    width: 100%;
}

.header__btn-menu span:first-child {
    width: 22px;
}

.header__btn-menu span:last-child {
    width: 100%;
}

.header--show-menu .header__btn-menu span {}

.header--show-menu .header__btn-menu span {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
}

.header--show-menu .header__btn-menu span:first-child {
    transform: translateY(-50%) rotate(45deg);
}

.header--show-menu .header__btn-menu span:last-child {
    transform: translateY(-50%) rotate(-45deg);
}

@media (min-width: 375px) {
    .header__phone--mobile {
        font-size: 17px;
    }
}

@media (min-width: 425px) {
    .header__phone--mobile {
        font-size: 18px;
    }
}

@media (min-width: 1024px) {
    .header--hidden {
        top: 0;
    }

    .header .container {
        gap: 25px;
    }

    .header__nav {
        position: static;
        display: flex;
        height: auto;
        width: auto;
        padding: 0;
        flex: 1;
    }

    .header-nav__wrapper {
        display: flex;
        background-color: transparent;
        flex-direction: row;
        justify-content: space-between;
        height: auto;
        padding: 0;
    }

    .header-nav ul {
        flex-direction: row;
    }

    .header-nav li a {
        font-size: 16px;
        font-weight: 600;
        line-height: normal;
        color: #8C8CA2;
        display: inline;
    }

    .header-nav li a:hover {
        color: inherit;
    }

    .header__content {
        flex: 0 0 167px;
    }

    .header__phone {
        color: inherit;
        font-size: 16px;
        line-height: normal;
        display: inline;
    }

    .header__phone--mobile {
        display: none;
    }
    
    .header__phone--desk {
        display: inline;
    }

    .header__callback {
        display: block;
        flex: 0 0 167px;
    }

    .header__btn-menu {
        display: none;
    }
}

@media (min-width: 1024px) and (max-width: 1151px) {
    .header-nav ul {
        gap: 15px;
    }

    .header-nav li a {
        font-size: 14px;
    }
}
/* #endregion .header */

/* #region .how */
.how {
    padding: 40px 0;
}

.how h2 {
    margin-bottom: 32px;
}

.how__body {
    align-items: center;
    background-color: #fff;
    border-radius: 16px;
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.how-item {
    text-align: center;
}

.how-item__title {
    font-size: 24px;
    font-weight: 600;
    line-height: 120%;
}

.how-item__subtitle {
    font-size: 18px;
    line-height: 1.1;
}

.how-arrow {
    background-color: #26BF42;
    border-radius: 50%;
    height: 40px;
    width: 40px;
    flex: 0 0 40px;
    position: relative;
}

.how-arrow svg {
    width: 60%;
}

@media (min-width: 768px) {
    .how__body {
        flex-direction: row;
        justify-content: space-between;
    }

    .how-item {
        flex: 0 1 33%;
    }

    .how-arrow {
        transform: rotate(-90deg);
    }
}

@media (min-width: 1024px) {
    .how {
        padding: 80px 0;
    }

    .how h2 {
        margin-bottom: 40px;
    }

    .how__body {
        padding: 40px 24px;
    }

    .how-arrow {
        height: 45px;
        width: 45px;
        flex: 0 0 45px;
    }
}

@media (min-width: 1200px) {
    .how__body {
        padding: 40px;
    }
}
/* #endregion .how */

/* #region .compare */
.compare {
    padding: 40px 0;
}

.compare h2 {
    margin-bottom: 24px;
    position: relative;
    z-index: 11;
}

.compare__body {
    position: relative;
    z-index: 11;
}

.compare-table {
    border-collapse: collapse;
}

/* common */
.compare-table th,
.compare-table td {
    width: 50%;
}

.compare-table th:first-child,
.compare-table td:first-child {
    padding-right: 12px;
}

.compare-table th:last-child,
.compare-table td:last-child {
    padding-left: 12px;
}

/* head */
.compare-table th {
    padding-bottom: 22px;
}

.compare-table__title {
    background-color: #fff;
    border-radius: 32px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 20px;
    font-size: 16px;
    text-align: center;
    padding: 0 10px;
    
    /* line-height: 70px; */
    /* font-size: 32px; */
    font-weight: 600;
}

.compare-table__title--desk-only {
    display: none;
}

.compare-table__title--accent {
    background-color: #26BF42;
    color: #fff;
}

/* body */
.compare-table td {
    vertical-align: top;
    padding: 12px 0;
    border-bottom: 1px solid #D1D1D1;
}

.compare-table td:first-child {
    color: #56595B;
}

.compare-table tr:first-child td {
    padding-top: 0;
}

.compare-table__item {
    display: flex;
    gap: 8px;
}

.compare-table__item img {
    flex: 0 0 20px;
    height: 20px;
    width: 20px;
    display: none;
}

.compare-table__item p {
    font-size: 14px;
    font-weight: 500;
    line-height: 130%;
}

/* footer */
.compare-table__footer {
    display: none;
}

.compare__call-btn {
    margin-top: 32px;
}

.compare__call-btn--desk {
    display: none;
}

.compare__call-btn--mobile {
    display: block;
}

@media (min-width: 425px) {
    .compare-table__title {
        font-size: 20px;
        line-height: 24px;
    }
}

@media (min-width: 768px) {
    .compare {
        background-color: #fff;
    }

    .compare__wrapper {
        position: relative;
        padding: 40px 15px 15px;
    }

    .compare__wrapper::before {
        background-color: #F4F5F9;
        border-radius: 40px;
        content: '';
        position: absolute;
        top: 0;
        right: -10px;
        bottom: 0;
        left: -10px;
        z-index: 10;
    }

    .compare h2 {
        position: relative;
        z-index: 11;
    }

    .compare__body {
        position: relative;
        padding: 16px;
    }

    .compare__body::before,
    .compare__body::after {
        border-radius: 24px;
        content: '';
        position: absolute;
        top: 0;
        bottom: 0;
        width: calc(50% - 12.5px);
    }

    .compare__body::before {
        background-color: #ffffff;
        left: 0;
    }

    .compare__body::after {
        background-color: #26BF42;
        right: 0;
    }

    .compare-table {
        position: relative;
        z-index: 12;
    }

    .compare-table th:first-child,
    .compare-table td:first-child {
        padding-right: 28.5px;
    }

    .compare-table th:last-child,
    .compare-table td:last-child {
        color: #ffffff;
        padding-left: 28.5px;
    }

    .compare-table th {
        padding-bottom: 24px;
    }

    .compare-table__title {
        border-radius: 0;
        background-color: transparent;
        height: initial;
        text-align: initial;
        display: block;
        padding: 0;

        font-size: 23px;
        line-height: 130%;
        font-weight: 400;
    }

    .compare-table__title--mobile-only {
        display: none;
    }

    .compare-table__title--desk-only {
        display: block;
    }

    .compare-table__title--accent {
        background-color: initial;
    }

    .compare-table td {
        border: 0;
        padding: 6px 0;
    }

    .compare-table__item p {
        font-size: 16px;
        line-height: 130%;
    }

    .compare-table__item img {
        display: block;
    }

    .compare-table__footer {
        display: table-row;
    }

    .compare__call-btn {
        background-color: #ffffff;
        color: initial;
        position: static;
    }

    .compare__call-btn--desk {
        display: block;
    }
    
    .compare__call-btn--mobile {
        display: none;
    }
}

@media (min-width: 1024px) {
    .compare h2 {
        margin-bottom: 40px;
    }

    .compare__wrapper::before {
        right: -15px;
        left: -15px;
    }

    .compare__body {
        padding: 32px;
    }

    .compare-table__title {
        font-size: 32px;
    }

    .compare-table th:first-child,
    .compare-table td:first-child {
        padding-right: 43.5px;
    }

    .compare-table th:last-child,
    .compare-table td:last-child {
        padding-left: 43.5px;
    }
}

@media (min-width: 1300px) {
    .compare__wrapper {
        padding: 80px 0 15px;
    }

    .compare__wrapper::before {
        right: -45px;
        left: -45px;
    }
}

@media (min-width: 1400px) {
    .compare__wrapper::before {
        right: -90px;
        left: -90px;
    }
}
/* #endregion .compare */

/* #region .amega */
.amega {
    padding: 40px 0;
    background-color: #fff;
}

.amega__wrapper {
    margin-bottom: 32px;
}

.amega h2 {
    margin-bottom: 24px;
    position: relative;
    z-index: 12;
}

.amega__content {
    margin-bottom: 33px;
}

.amega__content p {
    font-size: 16px;
    line-height: 150%;
    margin-bottom: 24px;
}

.amega__pic {
    background-color: #F4F5F9;
    border-radius: 32px;
    padding: 32px 0 0;
}

.amega__pic p {
    padding: 0 24px;
    font-size: 16px;
    line-height: normal;
}

.amega__pic picture img {
    border-radius: 0 0 32px 0;
}

.amega__list {
    display: flex;
    flex-direction: column;
    gap: 24px;
    list-style: none;
}

.amega-accordion {
    background-color: #F4F5F9;
    border-radius: 32px;
    padding: 24px;
}

.amega-accordion__head {
    align-items: center;
    display: flex;
    justify-content: space-between;
    gap: 10px;
}

.amega-accordion__head:hover {
    text-decoration: none;
}

.amega-accordion__head strong {
    font-size: 20px;
    font-weight: 600;
    line-height: 130%;
    display: block;
}

.amega-accordion__head svg {
    flex: 0 0 24px;
}

.amega-accordion--show .amega-accordion__head svg {
    transform: rotate(180deg);
}

.amega-accordion__body {
    padding-top: 12px;
    font-size: 16px;
    line-height: 1.2;
    display: none;
}

.amega-accordion--show .amega-accordion__body {
    display: block;
}

.amega-info {
    margin-top: 32px;
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.amega-info__head {
    background-color: #F4F5F9;
    border-radius: 15px;
    list-style: none;
    padding: 14px;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.amega-info__head li {
    align-items: center;
    display: flex;
    gap: 16px;
}

.amega-info__head li svg {
    width: 28px;
    flex: 0 0 28px;
    height: 28px;
}

.amega-info__head li p {
    font-size: 20px;
    line-height: 27.32px;
}

.amega-info__body {
    align-items: center;
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.amega-info__body li {
    align-items: center;
    display: flex;
    flex-direction: column;
    text-align: center;
    gap: 10px;
}

.amega-info__body li strong {
    color: #26BF42;
    font-weight: 600;
    font-size: 65px;
    line-height: 1;
}

@media (min-width: 768px) {
    .amega__wrapper {
        position: relative;
        padding: 40px 15px 0;
    }

    .amega__wrapper::before {
        background-color: #F4F5F9;
        content: '';
        position: absolute;
        top: 0;
        right: -10px;
        bottom: 0;
        left: -10px;
        border-radius: 40px;
        z-index: 10;
    }

    .amega__body {
        position: relative;
        padding: 0 0 200px;
        z-index: 11;
    }

    .amega__content {
        margin: 0;
        max-width: 300px;
    }

    .amega__content .btn {
        max-width: 266px;
    }

    .amega__pic {
        background-color: transparent;
        border-radius: 0;
        padding: 0;
        position: absolute;
        right: -25px;
        bottom: 0;
        width: 390px;
    }

    .amega__pic p {
        display: none;
    }

    .amega__pic picture img {
        border-radius: 0 0 40px 0;
    }

    .amega-info__head {
        background-color: transparent;
        padding: 0;
    }

    .amega-info__body {
        flex-direction: row;
        justify-content: space-between;
    }
}

@media (min-width: 1024px) {
    .amega {
        padding: 40px 0 80px;
    }

    .amega__wrapper {
        margin-bottom: 50px;
    }

    .amega__wrapper::before {
        right: -15px;
        left: -15px;
    }

    .amega h2 {
        max-width: 700px;
        margin-bottom: 32px;
    }

    .amega__body {
        /* padding: 0 0 280px; */
        padding: 0 0 50px;
    }

    .amega__content {
        max-width: 469px;
    }

    .amega__content p {
        font-size: 20px;
        margin-bottom: 32px;
    }

    .amega__pic {
        right: -30px;
        /* width: 482px; */
        width: 320px;
    }

    .amega__list {
        flex-direction: row;
        gap: 19px;
        flex-wrap: wrap;
    }

    .amega-accordion {
        flex: 0 0 calc(50% - 9.5px);
    }

    .amega-accordion__head strong {
        font-size: 18px;
    }
}

@media (min-width: 1100px) {
    .amega__pic {
        /* width: 550px; */
        width: 360px;
    }
}

@media (min-width: 1200px) {
    .amega__body {
        /* padding: 0 0 350px; */
        padding: 0 0 50px;
    }

    .amega__pic {
        /* width: 640px; */
        width: 440px;
    }

    .amega-accordion {
        flex: 0 0 calc(25% - 14.25px);
    }

    .amega-info {
        gap: 42px;
    }

    .amega-info__head li svg {
        width: 35px;
        flex: 0 0 35px;
        height: 35px;
    }

    .amega-info__head li p {
        font-size: 30px;
        line-height: 40px;
    }

    .amega-info__body li p {
        font-size: 20px;
        line-height: 1.2;
        font-weight: 500;
    }
}

@media (min-width: 1300px) {
    .amega__wrapper::before {
        right: -45px;
        left: -45px;
    }

    .amega__wrapper {
        padding: 80px 0 0;
    }

    .amega__body {
        /* padding: 0 0 360px; */
        padding: 0 0 50px;
    }

    .amega__pic {
        right: -45px;
        /* width: 650px; */
        width: 490px;
    }
}

@media (min-width: 1400px) {
    .amega__wrapper::before {
        right: -90px;
        left: -90px;
    }

    .amega__pic {
        right: -90px;

        width: 550px;
    }
}
/* #endregion .amega */

/* #region .tehnadzor */
.tehnadzor {
    padding: 40px 0;
}

.tehnadzor__body {
    /* max-width: 1024px; */
    margin: 0 auto;
}

.tehnadzor__body h2 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 24px;
}

.tehnadzor__body h2 span {
    color: #26BF42;
}

.tehnadzor__list {
    align-items: center;
    background-color: #ffffff;
    border-radius: 24px;
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.tehnadzor__list li {
    align-items: center;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 10px;
    max-width: 300px;
}

.tehnadzor__list li img {
    width: 55px;
    flex: 0 0 55px;
    height: 55px;
}

.tehnadzor__list li p {
    font-size: 20px;
    line-height: 1.1;
}

@media (min-width: 768px) {
    .tehnadzor__list {
        align-items: flex-start;
        justify-content: center;
        flex-direction: row;
    }
}

@media (min-width: 1024px) {
    .tehnadzor {
        padding: 80px 0 0;
    }

    .tehnadzor__body {
        background-color: #ffffff;
        border-radius: 24px;
        padding: 32px;
    }

    .tehnadzor__body h2 {
        font-weight: 400;
        font-size: 34px;
        margin-bottom: 32px;
    }

    .tehnadzor__body h2 span {
        font-weight: 600;
    }

    .tehnadzor__list {
        padding: 0;
    }
}
/* #endregion .tehnadzor */

/* #region .smeta */
.smeta {
    background-color: #fff;
    padding: 40px 0;
    position: relative;
}

.smeta__bg {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 10;
}

.smeta .container {
    position: relative;
    z-index: 11;
}

.smeta__wrapper {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.smeta__subtitle {
    color: #FFA013;
    font-size: 26px;
    line-height: 120%;
    font-weight: 500;
    max-width: 300px;
    margin-bottom: 8px;
}

.smeta__head h2 {
    margin-bottom: 8px;
}

.smeta__text {
    font-size: 16px;
    line-height: 150%;
}

.smeta__contnet {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

@media (min-width: 768px) {
    .smeta {
        background-color: #F4F5F9;
        padding: 80px 0;
    }

    .smeta__wrapper {
        position: relative;
        flex-direction: row;
        justify-content: space-between;
        padding: 24px 15px;
    }

    .smeta__wrapper::before {
        border-radius: 40px;
        background-color: #fff;
        content: '';
        position: absolute;
        top: 0;
        right: -10px;
        bottom: 0;
        left: -10px;
        z-index: 12;
    }

    .smeta__head, .smeta__contnet {
        position: relative;
        flex: 0 1 50%;
        z-index: 13;
    }

    .smeta__subtitle {
        max-width: initial;
    }

    .smeta__head h2 {
        margin-bottom: 24px;
    }
}

@media (min-width: 1024px) {
    .smeta__wrapper {
        padding: 63px 15px 72px;
    }

    .smeta__wrapper::before {
        right: -15px;
        left: -15px;
    }

    .smeta__head {
        flex: 0 0 500px;
    }

    .smeta__head .smeta__text {
        font-size: 20px;
    }

    .smeta__contnet {
        flex: 1;
        max-width: 484px;
    }

    .smeta__contnet .smeta__text {
        font-size: 18px;
    }
}

@media (min-width: 1100px) {
    .smeta__head {
        flex: 0 0 527px;
    }
}

@media (min-width: 1300px) {
    .smeta__wrapper {
        padding: 63px 0 72px;
    }

    .smeta__wrapper::before {
        right: -45px;
        left: -45px;
    }
}

@media (min-width: 1400px) {
    .smeta__wrapper::before {
        right: -90px;
        left: -90px;
    }
}
/* #endregion .smeta */

/* #region .partners */
.partners {
    padding: 40px 0;
    background-color: #fff;
}

.partners h2 {
    margin-bottom: 32px;
}

.partners h2 br {
    display: none;
}

.partners__company {
    margin-bottom: 32px;
}

.partners-company {
    display: flex;
    flex-wrap: wrap;
    gap: 24px 40px;
}

.partners-company__item {
    flex: 0 0 calc(50% - 20px);
}

.partners-company__item--ir img {
    max-width: 80%;
}

.partners-company__item--rr img {
    max-width: 78%;
}

.partners-company__item--re img {
    max-width: 82%;
}

.partners-company__item--text {
    font-size: 20px;
    font-weight: 600;
    display: flex;
    align-items: center;
}

.partners__benefits {
    display: flex;
    flex-wrap: wrap;
    gap: 21px;
    margin-bottom: 32px;
}

.partners__benefits li {
    background-image: linear-gradient(114.21deg, #FFA013 7.9%, #F8C06A 119.52%);
    border-radius: 16px;
    color: #fff;
    padding: 16px;
    flex: 0 0 100%;
}

.partners__benefits li strong {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 12px;
    display: block;
}

.partners__benefits li p {
    font-size: 16px;
    font-weight: 500;
    line-height: 130%;
}

.partners__banner {
    position: relative;
    border-radius: 15px;
    background-color: #DCF9E2;
}

.partners__banner p {
    position: absolute;
    font-size: 12px;
    line-height: 16.39px;
    font-weight: 500;
    top: 25px;
    left: 16px;
    z-index: 10;
    max-width: 156px;
}

.partners__banner picture img {
    border-radius: 15px;
}

@media (min-width: 425px) {
    .partners__banner p {
        font-size: 16px;
        line-height: 1.3;
        max-width: 190px;
    }
}

@media (min-width: 768px) {
    .partners-company {
        gap: 22px;
        flex-wrap: nowrap;
    }

    .partners-company__item {
        flex: 0 1 25%;
    }

    .partners-company__item--ir {
        order: 1;
    }

    .partners-company__item--ir img {
        max-width: 147px;
    }

    .partners-company__item--rr {
        order: 3;
    }

    .partners-company__item--rr img {
        max-width: 143px;
    }

    .partners-company__item--re {
        order: 2;
    }

    .partners-company__item--re img {
        max-width: 158px;
    }

    .partners-company__item--text {
        color: #FFA013;
        order: 4;
    }

    .partners__banner p {
        font-size: 22px;
        max-width: 330px;
    }
}

@media (min-width: 960px) {
    .partners__benefits {
        flex-wrap: nowrap;
    }

    .partners__benefits li {
        flex: 0 1 25%;
    }
}

@media (min-width: 1024px) {
    .partners {
        padding: 80px 0 67px;
    }

    .partners h2 {
        margin-bottom: 60px;
    }

    .partners h2 br {
        display: initial;
    }

    .partners__company {
        margin-bottom: 60px;
    }

    .partners-company__item--text {
        font-size: 24px;
        text-align: right;
        padding-right: 33px;
    }

    .partners-company__item--text p {
        width: 100%;
    }

    .partners__benefits {
        margin-bottom: 77px;
    }

    .partners__banner p {
        font-size: 26px;
        max-width: 375px;
        top: 45px;
        left: 45px;
    }
}

@media (min-width: 1200px) {
    .partners__banner p {
        font-size: 32px;
        max-width: 450px;
        top: 80px;
        left: 70px;
    }
}

@media (min-width: 1300px) {
    .partners__banner {
        margin: 0 -45px;
    }
}

@media (min-width: 1400px) {
    .partners__banner {
        margin: 0 -90px;
    }
}
/* #endregion .partners */

/* #region .portfolio */
.portfolio {
    padding: 40px 0;
    overflow: hidden;
}

.portfolio .swiper {
    overflow: visible;
}

.portfolio h2 {
    margin-bottom: 24px;
}

.portfolio__body .swiper-slide {
    height: auto;
}

.portfolio-item {
    background-color: #fff;
    padding: 24px;
    border-radius: 24px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    height: 100%;
}

.portfolio-item__picture {
    position: relative;
}

.portfolio-item__picture img {
    border-radius: 18px;
}

.portfolio-item__content {
    flex: 1;
}

.portfolio-item__link {
    border-radius: 18px;
    cursor: zoom-in;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 10;
}

.portfolio-item__content {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.portfolio-item__title {
    font-size: 18px;
    font-weight: 700;
    line-height: normal;
    flex: 1;
}

.portfolio-item__properties {
    display: flex;
}

.portfolio-item__properties span {
    padding: 0 10px;
}

.portfolio-item__properties span:first-child {
    padding-left: 0;
}

.portfolio-item__properties span + span {
    border-left: 1px solid #FFA013;
}

.portfolio-item__company {
    font-size: 16px;
    line-height: normal;
    font-weight: 500;
}

.portfolio-item__links {
    display: none;
}

.portfolio-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 21px;
    margin-top: 32px;
}

.portfolio-nav__item {
    background-color: #fff;
    border: 1px solid #26BF42;
    position: relative;
    border-radius: 50%;
    width: 46px;
    height: 46px;
}

.portfolio-nav__item:disabled {
    opacity: 0.5;
    cursor: default;
}

.portfolio-nav__item img {
    width: 45%;
}

.portfolio-nav__item--next img {
    transform: translate(-50%, -50%) rotate(180deg);
}

@media (min-width: 768px) {
    .portfolio .container {
        position: relative;
    }

    .portfolio__body .swiper-slide {
        margin-right: 16px;
        width: calc(50% - 8px);
    }

    .portfolio-nav {
        position: absolute;
        margin: 0;
        position: absolute;
        top: 0;
        right: 30px;
    }
}

@media (min-width: 1024px) {
    .portfolio {
        padding: 80px 0;
    }

    .portfolio h2 {
        margin-bottom: 45px;
    }

    .portfolio__body .swiper-slide {
        margin-right: 22px;
        width: calc(33.3333333333% - 14.5px);
    }

    .portfolio-nav {
        top: 8px;
    }
}

/* #endregion .portfolio */

/* #region .management */
.management {
    background-color: #fff;
    padding: 40px 0;
}

.management h2 {
    margin-bottom: 24px;
}

.management__grid {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-bottom: 24px;
}

.management-item {
    background-color: #F4F5F9;
    border-radius: 24px;
    font-size: 16px;
    line-height: 21px;
    padding: 24px;
}

.management-item--check {
    position: relative;
}

.management-item--check img {
    position: absolute;
    right: 0;
    bottom: 0;
    width: 130px;
    height: 130px;
    display: none;
}

.management-item--visual {
    background-image: linear-gradient(113.14deg, #FFA013 7.84%, #F8C06A 100%);
    position: relative;
    padding: 0;
}

.management-item--visual picture {
    position: absolute;
    top: -21px;
    bottom: 0;
    right: -12px;
    width: 214px;
}

.management-item--visual picture img {
    height: 100%;
    width: auto;
    max-height: 100%;
}

.management-item__video {
    aspect-ratio: 328 / 205;
}

.management-item__video video {
    border-radius: 24px;
    height: 100%;
    object-fit: cover;
}

.management__list {
    display: flex;
    flex-wrap: wrap;
    gap: 35px;
    list-style: none;
}

.m-list-item {
    flex: 0 0 100%;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.m-list-item__head {
    align-items: center;
    display: flex;
    gap: 12px;
}

.m-list-item__head img {
    width: 40px;
    flex: 0 0 40px;
}

.m-list-item__head strong {
    font-size: 20px;
    font-weight: 500;
    line-height: 130%;
    display: block;
    flex: 1;
}

.m-list-item__content p {
    font-size: 16px;
    line-height: 150%;
}

@media (min-width: 768px) {
    .management__grid {
        display: grid;
        grid-template-columns: repeat(2, calc(50% - 10px));
        grid-template-rows: repeat(2, 1fr);
        gap: 20px;
    }

    .management-item:nth-child(1) {
        grid-column: 1 / 2;
        grid-row: 1 / 2;
    }

    .management-item:nth-child(2) {
        grid-column: 1 / 2;
        grid-row: 2 / 3;
    }

    .management-item:nth-child(3) {
        grid-column: 2 / 3;
        grid-row: 1 / 3;
    }

    .management-item:nth-child(4) {
        grid-column: 2 / 3;
        grid-row: 1 / 3;
    }

    /* .management-item--check {
        padding-bottom: 130px;
    } */

    .management-item--check img {
        right: 6px;
        bottom: 6px;
        display: block;
    }

    .management-item--visual {
        height: auto;
    }

    .management-item--visual picture {
        top: initial;
        right: 0px;
        width: 290px;
    }

    .management-item--visual picture img {
        height: auto;
        max-height: auto;
        width: 100%;
    }

    .management-item__video {
        aspect-ratio: initial;
        height: 100%;
    }

    .management__list {
        flex-wrap: nowrap;
        gap: 20px;
    }

    .m-list-item {
        flex: 0 1 33.3333333333%;
    }

    /* .m-list-item__head {
        align-items: flex-start;
        flex-direction: column;
    } */
}

@media (min-width: 1024px) {
    .management {
        padding: 80px 0;
    }

    .management h2 {
        margin-bottom: 45px;
    }

    .management__grid {
        margin-bottom: 80px;
    }

    .management-item {
        font-size: 20px;
        line-height: 150%;
        padding: 32px;
    }

    .management-item--visual {
        padding: 0;
    }

    /* .management-item--check {
        padding-bottom: 140px;
    } */

    .management-item--visual picture {
        width: 340px;
        right: 85px;
    }
}
/* #endregion .management */

/* #region .reviews */
.reviews {
    padding: 40px 0;
    overflow: hidden;
}

.reviews .container {
    position: relative;
}

.reviews h2 {
    margin-bottom: 24px;
}

.reviews__carousel .swiper {
    overflow: visible;
}

.reviews__carousel .swiper-slide {
    height: auto;
    margin-right: 16px;
}

.rw-item {
    height: 100%;
}

.rw-item__wrapper {
    background-color: #ffffff;
    border-radius: 24px;
    padding: 24px;
    height: 100%;
}

.rw-item__head {
    align-items: center;
    display: flex;
    justify-content: space-between;
    margin-bottom: 16px;
}

.rw-item__head p {
    font-size: 18px;
    font-weight: 700;
}

.rw-item__rating {
    display: flex;
    align-items: center;
}

.rw-item__rating img {
    width: 24px;
    height: 24px;
    flex: 0 0 24px;
}

.rw-item__body {
    font-size: 16px;
    line-height: 150%;
}

.reviews__nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 21px;
    margin-top: 32px;
}

.reviews-nav {
    background-color: #fff;
    border: 1px solid #26BF42;
    position: relative;
    border-radius: 50%;
    width: 46px;
    height: 46px;
}

.reviews-nav:disabled {
    opacity: 0.5;
    cursor: default;
}

.reviews-nav img {
    width: 45%;
}

.reviews-nav--next img {
    transform: translate(-50%, -50%) rotate(180deg);
}

.reviews__footer {
    margin-top: 24px;
    display: flex;
    align-items: center;
    gap: 24px;
    justify-content: center;
}

.reviews__link--yandex {
    flex: 0 0 174px;
}

.reviews__link--2gis {
    flex: 0 0 93px;
}

@media (min-width: 768px) {
    .rw-item__head p {
        font-size: 20px;
    }

    .reviews__nav {
        margin: 0;
        position: absolute;
        top: 0;
        right: 30px;
    }

    .reviews__carousel .swiper-slide {
        width: calc(50% - 8px);
    }
}

@media (min-width: 1024px) {
    .reviews {
        padding: 80px 0;
    }

    .reviews h2 {
        margin-bottom: 40px;
    }

    .reviews__nav {
        top: 8px;
    }

    .reviews__footer {
        gap: 50px;
        margin-top: 55px;
    }

    .reviews__link--yandex {
        flex: 0 0 302px;
    }
    
    .reviews__link--2gis {
        flex: 0 0 161px;
    }
}

@media (min-width: 1100px) {
    .reviews__carousel .swiper-slide {
        width: calc(33.3333333333% - 14.6666666667px);
        margin-right: 22px;
    }
}

/* #endregion .reviews */

/* #region .usp */
.usp {
    background-color: #DCF9E2;
    padding: 40px 0;
    overflow: hidden;
}

.usp__head {
    margin-bottom: 24px;
}

.usp__head h2 span {
    font-weight: 600;
}

.usp__head h2 p {
    font-weight: 400;
}

.usp__carousel {
    position: relative;
}

.usp__carousel .swiper {
    overflow: visible;
}

.usp__carousel .swiper-wrapper {
    flex-direction: column;
    gap: 24px;
}

.usp__carousel .swiper-slide {
    max-width: 768px;
    margin-right: 16px;
    height: auto;
}

.usp-item {
    background-color: #fff;
    border-radius: 24px;
    padding: 24px;
    height: 100%;
}

.usp-item__wrapper {
    display: flex;
    flex-direction: column;
    gap: 16px;
    height: 100%;
}

.usp-item__head {
    display: flex;
    flex-direction: column;
    gap: 16px;
    flex: 1;
}

.usp-item__title {
    font-size: 28px;
    font-weight: 500;
    line-height: 130%;
}

.usp-item__text {
    font-size: 16px;
    line-height: 130%;
}

.usp-item__picture {
    display: none;
}

.usp-item__picture img {
    border-radius: 18px;
}

.usp-item__footer {
    display: none;
}

.usp__navigation {
    display: none;
    justify-content: center;
    gap: 21px;
    margin-top: 32px;
}

.usp-nav {
    background-color: #fff;
    border: 1px solid #26BF42;
    position: relative;
    border-radius: 50%;
    width: 46px;
    height: 46px;
    flex: 0 0 46px;
}

.usp-nav:disabled {
    opacity: 0.5;
    cursor: default;
}

.usp-nav img {
    width: 45%;
}

.usp-nav--next img {
    transform: translate(-50%,-50%) rotate(180deg);
}

@media (min-width: 768px) {
    .usp__carousel .swiper-wrapper {
        flex-direction: initial;
        gap: initial;
    }

    .usp__carousel .swiper-slide {
        margin-right: 24px;
    }

    .usp-item {
        padding: 40px;
    }

    .usp-item__wrapper {
        display: grid;
        grid-template-columns: repeat(2, calc(50% - 20px));
        grid-template-rows: repeat(4, 1fr);
        gap: 0 40px;
    }

    .usp-item__head {
        grid-column: 1 / 2;
        grid-row: 1 / 4;
        gap: 24px;
    }

    .usp-item__title {
        font-size: 40px;
    }

    .usp-item__text {
        font-size: 20px;
    }

    .usp-item__picture {
        display: block;
        grid-column: 2 / 3;
        grid-row: 1 / 5;
    }

    .usp-item__footer {
        grid-column: 1 / 2;
        grid-row: 4 / 5;
        display: flex;
        align-items: flex-end;
    }

    .usp-item__btn {
        max-width: 300px;
    }

    .usp__navigation {
        display: flex;
    }
}

@media (min-width: 1024px) {
    .usp {
        padding: 80px 0;
    }

    .usp__head {
        margin-bottom: 40px;
    }

    .usp__navigation {
        margin: 0;
        position: absolute;
        top: -105px;
        right: 0;
    }
}

@media (min-width: 1024px) and (max-width: 1179px) {
    .usp__head {
        max-width: 850px;
    }
}

@media (min-width: 1200px) {
    .usp__navigation {
        /* right: 60px; */
    }
}
/* #endregion .usp */

/* #region .faq */
.faq {
    padding: 40px 0;
}

.faq__body {
    display: flex;
    flex-direction: column;
    gap: 24px;
    max-width: 1024px;
    margin: 0 auto;
}

.faq__list {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.faq-item {
    background-color: #ffffff;
    border-radius: 16px;
    padding: 24px;
}

.faq-item__head {
    align-items: center;
    display: flex;
    justify-content: space-between;
    gap: 16px;
}

.faq-item__head:hover {
    text-decoration: none;
}

.faq-item__head p {
    font-weight: 500;
    font-size: 18px;
    line-height: 1.2;
}

.faq-item__head svg {
    flex: 0 0 24px;
}

.faq-item--show .faq-item__head svg {
    transform: rotate(180deg);
}

.faq-item__body {
    padding-top: 16px;
    font-size: 16px;
    line-height: 1.1;
    display: none;
}

.faq-item--show .faq-item__body {
    display: block;
}

@media (min-width: 1024px) {
    .faq {
        padding: 80px 0;
    }

    .faq__body {
        gap: 32px;
    }

    .faq-item {
        border-radius: 24px;
    }

    .faq-item__head p {
        font-size: 24px;
    }

    .faq-item__head svg {
        flex: 0 0 32px;
    }

    .faq-item__body {
        font-size: 20px;
        line-height: 1.3;
    }
}
/* #endregion .faq */

/* #region .rent */
.rent {
    background-color: #fff;
    padding: 40px 0;
}

.rent__head {
    margin-bottom: 24px;
}

.rent__head h2 {
    margin-bottom: 12px;
}

.rent__head p {
    font-size: 16px;
    line-height: 150%;
}

.rent-comparison {
    display: flex;
    /* gap: 6px; */
    margin-bottom: 24px;
    
    flex-direction: column;
    gap: 16px;
    margin-bottom: 24px;
}

.rent-comparison__item {
    flex: 0 1 50%;
    position: relative;
}

.rent-comparison__item p {
    background-color: #FFA013;
    border-radius: 4px;
    color: #fff;
    position: absolute;
    /* width: 32px; */
    /* height: 15px; */
    /* line-height: 15px; */
    text-align: center;
    /* font-size: 7px; */
    font-weight: 500;
    /* top: 7px; */
    /* left: 7px; */
    width: 75px;
    height: 32px;
    line-height: 32px;
    font-size: 15px;
    top: 12px;
    left: 12px;
}

.rent-comparison__item picture img {
    border-radius: 8px;
}

.rent__home-staging {
    margin-bottom: 24px;
}

.rent__home-staging h3 {
    font-size: 28px;
    font-weight: 500;
    line-height: 130%;
    margin-bottom: 12px;
}

.rent__home-staging p {
    font-size: 16px;
    line-height: 150%;
}

.rent__list {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 24px;
}

.rent__list li strong {
    color: #FFA013;
    font-size: 48px;
    font-weight: 600;
    margin-bottom: 12px;
    display: block;
}

.rent__list li h3 {
    font-size: 20px;
    font-weight: 500;
    line-height: 120%;
    margin-bottom: 12px;
}

.rent__list li p {
    font-size: 16px;
    line-height: 21.86px;
}

.yandex-rent {
    background-color: #F4F5F9;
    border-radius: 24px;
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.yandex-rent__content h3 {
    font-size: 32px;
    font-weight: 500;
    margin-bottom: 16px;
}

.yandex-rent__content p {
    font-size: 16px;
    line-height: 150%;
    margin-bottom: 16px;
}

.yandex-rent__link p {
    margin-bottom: 24px;
}

.yandex-rent__link p a {
    font-size: 14px;
    line-height: 130%;
}

.yandex-rent__logo {
    max-width: 253px;
    display: block;
}

@media (min-width: 768px) {
    .rent-comparison {
        gap: 20px;
        flex-direction: row;
    }

    .rent-comparison__item p {
        width: 75px;
        height: 32px;
        line-height: 32px;
        font-size: 15px;
        top: 18px;
        left: 18px;
    }

    .rent__list {
        flex-wrap: nowrap;
    }

    .rent__list li {
        flex: 0 1 33.3333333333%;
    }

    .yandex-rent {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }

    .yandex-rent__content {
        flex: 0 0 385px;
    }

    .yandex-rent__content .btn {
        max-width: 234px;
    }
}

@media (min-width: 1024px) {
    .rent {
        padding: 80px 0;
    }

    .rent__head {
        margin-bottom: 52px;
    }

    .rent__head h2 {
        margin-bottom: 32px;
    }

    .rent__head p {
        max-width: 710px;
        font-size: 20px;
    }

    .rent-comparison {
        margin-bottom: 40px;
    }

    .rent-comparison__item p {
        border-radius: 12px;
        width: 110px;
        height: 53px;
        line-height: 53px;
        font-size: 22px;
        top: 24px;
        left: 24px;
    }

    .rent__home-staging {
        margin-bottom: 40px;
    }

    .rent__home-staging h3 {
        font-size: 40px;
        margin-bottom: 24px;
    }

    .rent__home-staging p {
        font-size: 20px;
        max-width: 820px;
    }

    .rent__list {
        margin-bottom: 60px;
        gap: 20px;
    }

    .rent__list li {
        background-color: #F4F5F9;
        border-radius: 24px;
        padding: 24px;
    }

    .yandex-rent {
        padding: 72px 24px 75px;
    }

    .yandex-rent__content {
        flex: 0 0 508px;
    }

    .yandex-rent__content h3 {
        font-size: 48px;
        margin-bottom: 24px;
    }

    .yandex-rent__content p {
        font-size: 20px;
        margin-bottom: 24px;
    }

    .yandex-rent__logo {
        max-width: 366px;
    }
}

@media (min-width: 1300px) {
    .yandex-rent {
        margin: 0 -45px;
        padding: 72px 45px 75px;
    }

    .yandex-rent__logo {
        max-width: 428px;
    }
}

@media (min-width: 1400px) {
    .yandex-rent {
        margin: 0 -90px;
        padding: 72px 90px 75px;
    }
}
/* #endregion .rent */

/* #region .flipping */
.flipping {
    background-color: #DCF9E2;
    padding: 40px 0;
}

.flipping__body {
    background-color: #FFFFFF;
    border-radius: 24px;
    padding: 40px 22px 146px 24px;
    position: relative;
}

.flipping__body h2 {
    margin-bottom: 16px;
}

.flipping__body p {
    margin-bottom: 16px;
    font-size: 16px;
    line-height: 130%;
}

.flipping__pic {
    position: absolute;
    right: 0;
    bottom: 0;
    width: 165px;
    z-index: 10;
}

.flipping__pic img {
    border-radius: 24px;
}

@media (min-width: 768px) {
    .flipping {
        display: none;
    }

    .flipping__body {
        padding: 40px 24px;
    }

    .flipping__content {
        max-width: 455px;
        position: relative;
        z-index: 11;
    }

    .flipping__content .btn {
        max-width: 234px;
    }

    .flipping__pic {
        width: 395px;
    }
}

@media (min-width: 1024px) {
    .flipping {
        padding: 80px 0;
    }

    .flipping__body {
        padding: 75px 24px;
    }

    .flipping__content {
        max-width: 671px;
    }

    .flipping__body h2 {
        margin-bottom: 24px;
    }

    .flipping__body p {
        max-width: 483px;
        font-size: 20px;
        margin-bottom: 24px;
    }

    .flipping__pic {
        width: 515px;
    }
}

@media (min-width: 1300px) {
    .flipping__body {
        padding: 75px 45px;
        margin: 0 -45px;
    }

    .flipping__pic {
        width: 580px;
    }
}

@media (min-width: 1400px) {
    .flipping__body {
        padding: 75px 90px;
        margin: 0 -90px;
    }
}
/* #endregion .flipping */

/* #region .performer */
.performer {
    background-color: #ffffff;
    padding: 40px 0 80px;
}

.performer__wrapper {
    padding: 24px;
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 24px;
    max-width: 550px;
    margin: 0 auto;
}

.performer__wrapper::before {
    background-color: #F4F5F9;
    border-radius: 24px;
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 10;
}

.performer__head,
.performer__form {
    position: relative;
    z-index: 11;
}

.performer__head h2 {
    margin-bottom: 16px;
}

.performer__head p {
    font-size: 16px;
    line-height: 130%;
    max-width: 400px;
}

.performer__form {
    max-width: 500px;
}

.performer-field {
    margin-bottom: 16px;
}

.performer-field__error-text {
    color: #e94f4f;
    font-size: 14px;
    margin-top: 5px;
    display: none;
    padding-left: 24px;
}

.performer-field--error .performer-field__error-text {
    display: block;
}

@media (min-width: 1024px) {
    .performer {
        padding: 80px 0;
    }

    .performer__head h2 {
        font-size: 32px;
    }

    .performer__wrapper {
        max-width: 600px;
        padding: 40px;
    }

    .performer__head p {
        font-size: 20px;
        line-height: 130%;
        max-width: 500px;
    }
}
/* #endregion .performer */

/* #region .dialog */
.dialog {
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 150;
    padding: 0 16px
}

.dialog--open {
    display: flex
}

.dialog,
.dialog__backdrop {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0
}

.dialog__backdrop {
    background-color: rgba(32, 18, 2, .4)
}

.dialog__content {
    position: relative;
    z-index: 2;
    overflow: auto;
    padding: 16px 0
}

.dialog__close {
    position: absolute;
    top: 32px;
    right: 16px;
    width: 30px;
    height: 30px;
    outline: none;
}

@media (max-width: 767px) {
    .dialog--calc-remont .dialog__content {
        padding: 35px 0;
    }
    
    .dialog--calc-remont .dialog__close {
        top: 0;
        right: 0;
    }
}

.dialog__close svg {
    width: 100%;
    height: 100%
}

.dialog--callback .dialog__close {
    top: 24px;
    right: 10px;
}

@media (min-width: 768px) {
    .dialog__content {
        padding: 16px 56px;
    }

    .dialog__close {
        width: 40px;
        height: 40px;
        top: 16px;
        right: 0;
    }

    .dialog__close svg path {
        fill: #ffffff;
    }
}

.dialog-callback, .dialog-success {
    background-color: #fff;
    border-radius: 16px;
    padding: 32px;
    max-width: 426px;
}

@media (max-width: 425px) {
    .dialog-callback, .dialog-success {
        padding: 24px 16px;
    }

    .dialog-callback {
        padding-top: 35px;
    }
}

.dialog-success__icon {
    width: 48px;
    height: 48px;
    margin: 0 auto 18px;
}

.dialog-callback__title,
.dialog-success__title {
    text-align: center;
    font-size: 28px;
    line-height: 28px;
    margin-bottom: 16px;
    font-weight: 700;
}

.dialog-callback__new-title {
    text-align: center;
    font-size: 20px;
    font-weight: 500;
    line-height: 24px;
    margin-bottom: 20px;
}

.dialog-callback__new-title--hide {
    display: none;
}

.dialog-callback__text,
.dialog-success__text {
    font-size: 16px;
    line-height: 20px;
    text-align: center;
    margin-bottom: 12px;
}

.dialog-callback .form-input {
    margin-bottom: 12px;
}

.dialog-callback .form-policy {
    margin-top: 6px;
}
/* #endregion .dialog */

/* #region .dialog-file-upload */
.dialog-file-upload {
    display: none;
    align-items: center;
    gap: 10px;
    margin: 0 0 15px;
}

.dialog--smeta .dialog-file-upload {
    display: flex;
}

.dialog-file-upload__text {
    font-size: 16px;
    line-height: 36px;
    white-space: nowrap;
}

.dialog-file-upload__input {
    position: absolute;
    width: 0px;
    height: 0px;
    opacity: 0;
}

.dialog-file-upload-btn {
    border-radius: 30px;
    background-color: #FFA013;
    color: #ffffff;
    cursor: pointer;
    margin-top: 0;
    padding: 20px 10px;
    flex: 1;
}

.dialog-file-upload-btn * + * {
    margin-top: 0;
}

.dialog-file-upload-btn p {
    font-size: 18px;
    font-weight: 600;
    line-height: normal;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 290px;
}

.dialog-file-upload-btn p span {
    display: none;
}

.dialog-file-upload-btn__main, .dialog-file-upload-btn__done {
    align-items: center;
    display: flex;
    justify-content: center;
    gap: 10px;
}

.dialog-file-upload-btn__done {
    display: none;
}

.dialog-file-upload-btn--done .dialog-file-upload-btn__main {
    display: none;
}

.dialog-file-upload-btn--done .dialog-file-upload-btn__done {
    display: flex;
}

.dialog-file-upload-btn img {
    width: 24px;
    height: 24px;
    flex: 0 0 24px;
}

@media (min-width: 768px) {
    .dialog-file-upload-btn p span {
        display: inline;
    }
}
/* #endregion .dialog-file-upload */

/* #region .dialog-calc */
.dialog-calc {
    background-color: #FFFFFF;
    border-radius: 16px;
    padding: 16px;
    max-width: 457px;
}

.dialog-calc > * + * {
    margin-top: 16px;
}

.dialog-calc--remont h2 {
    text-align: center;
}

.dialog-calc__legend {
    font-size: 16px;
    font-weight: 600;
    line-height: 24px;
    margin-bottom: 10px;
}

.dialog-calc__radios {
    display: flex
}

.dialog-calc__radios--house-type {
    flex-wrap: wrap;
    margin: -8px
}

.dialog-calc__radios .cust-radio-1 {
    flex: 0 0 50%;
    padding: 8px
}

.dialog-calc__radios--design-project,
.dialog-calc__radios--vid-remonta {
    flex-wrap: wrap;
    gap: 8px;
}

.dialog-calc__radios--design-project .cust-radio-2,
.dialog-calc__radios--vid-remonta .cust-radio-2 {
    flex: 0 0 100%;
}

.dialog-calc__radios--optionally {
    flex-direction: column;
    gap: 16px
}

.dialog-calc__radios--area .hero-area-range {
    flex: 1
}

.dialog-calc__radios--area .hero-area-input {
    flex: 0 0 85px
}

.dialog-calc__radios--bathrooms {
    gap: 10px;
}

.dialog-calc__description ul {
    padding-left: 20px;
}

.dialog-calc__description ul li + li {
    margin-top: 12px;
}

.dialog-calc .btn {
    width: 100%
}

.dialog-calc__vid-remonta {
    display: none;
}

.dialog-calc__vid-remonta--show {
    display: flex;
}

.dialog-calc--remont h2 {
    font-size: 20px;
    line-height: 23px;
}

@media (min-width: 768px) {
    .dialog-calc--remont h2 {
        font-size: 24px;
        line-height: 27px;
    }
}

@media (min-width: 768px) {
    .dialog-calc {
        padding: 32px;
    }
}
/* #endregion .dialog-calc */

/* #region .cust-radio-1 */
.cust-radio-1 input {
    opacity: 0;
    position: absolute;
    z-index: -1;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none
}

.cust-radio-1 label {
    border: 1px solid #26BF42;
    border-radius: 8px;
    cursor: pointer;
    padding: 16px 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px
}

.cust-radio-1 label span {
    font-size: 16px;
    line-height: 20px
}

.cust-radio-1 label img {
    width: 20px;
    height: 20px;
    display: none
}

.cust-radio-1 input:checked+label {
    background-color: #DCF9E2;
    border-color: #DCF9E2;
    cursor: default;
}

.cust-radio-1 input:checked+label img {
    display: block
}
/* #endregion .cust-radio-1 */

/* #region .cust-radio-2 */
.cust-radio-2 {
    align-items: center;
    display: flex
}

.cust-radio-2 input {
    opacity: 0;
    position: absolute;
    z-index: -1
}

.cust-radio-2 label {
    font-size: 16px;
    font-weight: 500;
    line-height: normal;
    padding-left: 28px;
    margin-right: 8px;
    position: relative;
    -webkit-user-select: none;
    user-select: none
}

.cust-radio-2 label::before,
.cust-radio-2 label::after {
    border-radius: 50%;
    content: "";
    position: absolute;
    top: 50%;
    transform: translateY(-50%)
}

.cust-radio-2 label::before {
    border: 1px solid #26BF42;
    width: 16px;
    height: 16px;
    left: 0
}

.cust-radio-2 label::after {
    left: 5px;
    width: 6px;
    height: 6px;
}

.cust-radio-2 input:checked+label::before {
    background-color: #26BF42
}

.cust-radio-2 input:checked+label::after {
    background-color: #fff;
}

.cust-radio-2 input:active+label::before {
    background-color: #26BF42
}
/* #endregion .cust-radio-2 */

/* #region .cust-radio-3 */
.cust-radio-3 input {
    opacity: 0;
    position: absolute;
    z-index: -1;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none
}

.cust-radio-3 label {
    border: 1px solid #26BF42;
    border-radius: 8px;
    cursor: pointer;
    width: 50px;
    flex: 0 0 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px
}

.cust-radio-3 label span {
    font-size: 16px;
    line-height: 20px
}

.cust-radio-3 input:checked+label {
    background-color: #DCF9E2;
    cursor: default;
}
/* #endregion .cust-radio-3 */

/* #region .hero-area-input */
.hero-area-input {
    align-items: center;
    border-bottom: 1px solid #26BF42;
    padding: 8px;
    width: 71px;
    display: flex;
    justify-content: space-between;
    margin-left: 15px
}

.hero-area-input input {
    background-color: rgba(0, 0, 0, 0);
    font-size: 16px;
    font-weight: 500;
    line-height: normal;
    width: 45px;
    outline: none;
    -moz-appearance: textfield
}

.hero-area-input input::-webkit-outer-spin-button,
.hero-area-input input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0
}

.hero-area-input label {
    font-size: 16px;
    font-weight: 400;
    line-height: 20px
}
/* #endregion .hero-area-input */

/* #region .hero-area-range */
input[type=range].hero-area-range {
    -webkit-appearance: none;
    background-color: rgba(0, 0, 0, 0);
    border-radius: 25px;
    width: 100%;
    height: 8px;
    margin: 11px 0
}

input[type=range].hero-area-range:focus {
    outline: none
}

input[type=range].hero-area-range::-webkit-slider-runnable-track {
    border: 0px solid rgba(1, 1, 1, 0);
    border: 0;
    border-radius: 25px;
    width: 100%;
    height: 8px;
    cursor: pointer
}

input[type=range].hero-area-range::-webkit-slider-thumb {
    box-shadow: 0px 1px 4px 0px rgba(158, 109, 56, .1);
    margin-top: -11px;
    width: 30px;
    height: 30px;
    background: #DCF9E2;
    border: 1px solid #26BF42;
    border-radius: 50px;
    cursor: pointer;
    -webkit-appearance: none
}


input[type=range].hero-area-range::-moz-range-track {
    border: 0px solid rgba(1, 1, 1, 0);
    border: 0;
    border-radius: 25px;
    width: 100%;
    height: 8px;
    cursor: pointer
}

input[type=range].hero-area-range::-moz-range-thumb {
    width: 30px;
    height: 30px;
    background: #DCF9E2;
    border: 1px solid #26BF42;
    border-radius: 50px;
    cursor: pointer
}
/* #endregion .hero-area-range */

/* #region .cust-checkbox-1 */
.cust-checkbox-1 {
    align-items: center;
    display: flex
}

.cust-checkbox-1 input {
    opacity: 0;
    position: absolute;
    z-index: -1
}

.cust-checkbox-1 label {
    font-size: 16px;
    font-weight: 500;
    line-height: normal;
    padding-left: 28px;
    margin-right: 8px;
    position: relative;
    -webkit-user-select: none;
    user-select: none
}

.cust-checkbox-1 label::before,
.cust-checkbox-1 label::after {
    content: "";
    position: absolute;
    top: 50%;
    transform: translateY(-50%)
}

.cust-checkbox-1 label::before {
    border: 1px solid #26BF42;
    border-radius: 4px;
    width: 16px;
    height: 16px;
    left: 0
}

.cust-checkbox-1 label::after {
    left: 4px;
    width: 8px;
    height: 6px
}

.cust-checkbox-1 input:checked+label::before {
    background-color: #26BF42
}

.cust-checkbox-1 input:checked+label::after {
    background-image: url("data:image/svg+xml,%3Csvg width=%278%27 height=%276%27 viewBox=%270 0 8 6%27 fill=%27none%27 xmlns=%27http://www.w3.org/2000/svg%27%3E%3Cpath d=%27M1.69471 2.28071C1.50611 2.09855 1.25351 1.99776 0.991311 2.00004C0.729114 2.00232 0.478302 2.10749 0.292894 2.29289C0.107485 2.4783 0.00231622 2.72911 3.78025e-05 2.99131C-0.00224062 3.25351 0.0985542 3.50611 0.280712 3.69471L2.28071 5.69471C2.46824 5.88218 2.72255 5.9875 2.98771 5.9875C3.25288 5.9875 3.50718 5.88218 3.69471 5.69471L7.69471 1.69471C7.87687 1.50611 7.97767 1.25351 7.97539 0.991311C7.97311 0.729114 7.86794 0.478302 7.68253 0.292894C7.49712 0.107485 7.24631 0.00231622 6.98411 3.78025e-05C6.72192 -0.00224062 6.46932 0.0985542 6.28071 0.280712L2.98771 3.57371L1.69471 2.28071Z%27 fill=%27white%27/%3E%3C/svg%3E%0A")
}

.cust-checkbox-1 input:active+label::before {
    background-color: #26BF42
}
/* #endregion .cust-checkbox-1 */
