@charset "UTF-8";

:root {
    --base-color: #e57c00;
    --base-color-light: #ff9b00;
    --base-color-extra-light: #ffd697;
    --base-color-bgr: #fff4e2;
}

/* reset */
* {
    padding: 0;
    margin: 0;
    border: none;
}

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

a, a:link, a:visited {
    text-decoration: none;
}

a:hover {
    text-decoration: none;
}

/* Common */
aside, nav, footer, header, section, main {
    display: block;
}

h1, h2, h3, h4, h5, h6, p {
    font-size: inherit;
    font-weight: inherit;
}

ul, ul li {
    list-style: none;
}

img {
    vertical-align: top;
}

img, svg {
    max-width: 100%;
    height: auto;
}

address {
    font-style: normal;
}

input, textarea, button, select {
    font-family: inherit;
    font-size: inherit;
    color: inherit;
    background-color: transparent;
}

input::-ms-clear {
    display: none;
}

button, input[type=submit] {
    display: inline-block;
    box-shadow: none;
    background-color: transparent;
    background: none;
    cursor: pointer;
}

input:focus, input:active,
button:focus, button:active {
    outline: none;
}

button::-moz-focus-inner {
    padding: 0;
    border: 0;
}

label {
    cursor: pointer;
}

legend {
    display: block;
}

input[type=file] {
    max-width: 100%;
}

/* /reset */
/* container */
.container {
    width: 100%;
    padding-right: 15px;
    padding-left: 15px;
    margin-right: auto;
    margin-left: auto;
}

@media (min-width: 576px) {
    .container {
        max-width: 540px;
    }
}

@media (min-width: 768px) {
    .container {
        max-width: 720px;
    }
}

@media (min-width: 992px) {
    .container {
        max-width: 960px;
    }
}

@media (min-width: 1200px) {
    .container {
        max-width: 1140px;
    }
}

/* /container */
/* fonts */
body {
    font-family: "Montserrat", sans-serif;
    font-style: normal;
    font-optical-sizing: auto;
}

/* /fonts */
.header {
    margin-bottom: 50px;
}

@media (max-width: 991px) {
    .header {
        display: block !important;
        margin: 0 0 50px !important;
        padding: 0 !important;
    }
}

.header-body {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 25px;
}

.header__logo {
    width: 173px;
    height: 56px;
}

@media (max-width: 991px) {
    .header__logo {
        width: 106px;
        height: 35px;
    }
}

.header__nav {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 27px;
}

@media (max-width: 991px) {
    .header__nav {
        display: none;
    }
}

.header__nav-item {
    font-size: 14px;
    font-weight: 400;
    line-height: 19.6px;
    color: #646464;
}

.header-auth {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 7px 12px;
    background: var(--base-color);
    border-radius: 100px;
    color: #FFFFFF;
    font-size: 15px;
    line-height: 24px;
    font-weight: 500;
}

@media (max-width: 991px) {
    .header-auth {
        font-size: 14px;
    }
}

.header-menu {
    display: none;
}

.calc {
    position: relative;
    display: flex;
    justify-content: flex-end;
    align-items: flex-end;
}

@media (max-width: 991px) {
    .calc {
        padding-bottom: 200px;
    }
}

.calc * + p {
    margin-top: unset;
}

.calc-text {
    position: absolute;
    right: 25px;
    top: 0;
}

@media (max-width: 1199px) {
    .calc-text {
        top: 120px;
    }
}

@media (max-width: 991px) {
    .calc-text {
        top: 60px;
        width: 61px;
    }
}

.calc-mountains {
    position: absolute;
    left: -10px;
    bottom: -10px;
}

@media (max-width: 991px) {
    .calc-mountains {
        width: 550px;
        left: 0;
        bottom: 0;
    }
}

.calc-title {
    z-index: 1;
    position: absolute;
    top: 0;
    left: 0;
    font-style: normal;
    font-weight: 700;
    font-size: 85px;
    line-height: 105.1px;
    text-transform: uppercase;
    color: #000000;
}

@media (max-width: 991px) {
    .calc-title {
        font-size: 26px;
        line-height: 34px;
    }
}

.calc-title span {
    color: var(--base-color-light);
}

.calc__form {
    position: relative;
    z-index: 2;
    margin-top: 300px;
    width: 410px;
    display: grid;
    grid-template-columns: 1fr;
}

@media (max-width: 991px) {
    .calc__form {
        margin-top: 140px;
        width: 100%;
    }
}

.calc__form-group {
    display: grid;
    grid-template-columns: 1fr;
    gap: 4px;
    margin-bottom: 38px;
}

.calc__form-group label {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 16px;
    font-weight: 500;
    color: #282828;
    line-height: 25.2px;
    margin-bottom: 8px;
}

.calc__form-group label span {
    color: #000000;
    font-size: 26px;
    font-weight: 500;
    line-height: 36.4px;
}

.calc__form-group input[type=range] {
    -webkit-appearance: none;
    width: 100%;
    height: 15px;
    border-radius: 10px;
    background: linear-gradient(to right, var(--base-color) 0%, var(--base-color) 20%, var(--base-color-extra-light) 20%, var(--base-color-extra-light) 100%);
    outline: none;
    transition: background 450ms ease-in;
    cursor: pointer;
}

.calc__form-group input[type=range]::-webkit-slider-thumb {
    -webkit-appearance: none;
    height: 36px;
    width: 36px;
    background: #ffffff;
    border: 5px solid var(--base-color-light);
    border-radius: 50%;
    cursor: pointer;
    margin-top: -2px;
}

@media (max-width: 991px) {
    .calc__form-group input[type=range]::-webkit-slider-thumb {
        height: 31px;
        width: 31px;
        margin-top: -1px;
    }
}

.calc__form-group input[type=range]::-moz-range-thumb {
    height: 36px;
    width: 36px;
    background: #ffffff;
    border: 5px solid var(--base-color-light);
    border-radius: 50%;
    cursor: pointer;
}

@media (max-width: 991px) {
    .calc__form-group input[type=range]::-moz-range-thumb {
        height: 31px;
        width: 31px;
    }
}

.calc__form-group input[type=range]::-ms-thumb {
    height: 36px;
    width: 36px;
    background: #ffffff;
    border: 5px solid var(--base-color-light);
    border-radius: 50%;
    cursor: pointer;
}

@media (max-width: 991px) {
    .calc__form-group input[type=range]::-ms-thumb {
        height: 31px;
        width: 31px;
    }
}

.calc__form-btn {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: #FFFFFF;
    background-color: var(--base-color);
    height: 64px;
    margin-bottom: 14px;
    border-radius: 100px;
    font-size: 22px;
    font-weight: 500;
    line-height: 34.8px;
}

.calc__form-actions {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 21px;
    gap: 8px;
}

.calc__form-actions-tbank {
    background-color: #FFDD2D;
    color: rgba(0, 0, 0, 0.8);
    font-size: 14px;
    font-weight: 500;
    line-height: 22px;
    border-radius: 100px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 7px;
    height: 44px;
    width: 187px;
}

@media (max-width: 991px) {
    .calc__form-actions-tbank {
        width: 100%;
        font-size: 11px;
        line-height: 18px;
        height: 36px;
    }
}

.calc__form-actions-tbank.disabled {
    opacity: 0.5;
}

.calc__form-actions-gosuslugi {
    background-color: #1386DB;
    color: #FFFFFF;
    font-size: 14px;
    font-weight: 600;
    line-height: 131%;
    border-radius: 100px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 9px;
    height: 44px;
    width: 213px;
}

@media (max-width: 991px) {
    .calc__form-actions-gosuslugi {
        width: 100%;
        font-size: 11px;
        line-height: 131%;
        height: 36px;
    }
}

.calc__form-actions-gosuslugi.disabled {
    opacity: 0.5;
}

.calc__form-totals {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 8px;
    margin-bottom: 3px;
}

.calc__form-totals-item {
    font-size: 8px;
    font-weight: 200;
    color: #292929;
    line-height: 11px;
}

.calc__form-info {
    display: grid;
    grid-template-columns: 129px 137px 84px;
    gap: 3px;
    margin-bottom: 20px;
}

@media (max-width: 991px) {
    .calc__form-info {
        grid-template-columns: repeat(3, 1fr);
    }
}

.calc__form-info-item {
    font-size: 8px;
    font-weight: 200;
    color: #292929;
    line-height: 11px;
}

.calc__form-agreement {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 16px;
}

@media (max-width: 991px) {
    .calc__form-agreement {
        flex-direction: column;
    }
}

.calc__form-agreement-item {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
}

.calc__form-agreement-item input {
    display: none;
}

.calc__form-agreement-item input:checked ~ label::before {
    content: "✔" !important;
    color: var(--base-color-light) !important;
    border: 1px solid var(--base-color-light) !important;
}

.calc__form-agreement-item label {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 7px;
    font-size: 11px;
    color: #4C4C4C;
    line-height: 15.9px;
}

.calc__form-agreement-item label::before {
    font-size: 16px !important;
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    flex-shrink: 0 !important;
    content: " " !important;
    width: 21px !important;
    height: 21px !important;
    background: transparent !important;
    border-radius: 4px !important;
    border: 1px solid #747474 !important;
    margin-right: 0 !important;
}

.advantages {
    margin-top: 100px;
    margin-bottom: 100px;
}

.advantages * + p {
    margin-top: unset;
}

.advantages__header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 34px;
}

@media (max-width: 991px) {
    .advantages__header {
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
        gap: 14px;
        margin-bottom: 26px;
    }
}

.advantages__header-title {
    font-style: normal;
    font-weight: 500;
    font-size: 42px;
    line-height: 51px;
    text-align: left;
    color: #000000;
    margin-bottom: 0;
}

@media (max-width: 991px) {
    .advantages__header-title {
        font-style: normal;
        font-weight: 500;
        font-size: 25px;
        line-height: 30px;
        text-align: center;
        color: #000000;
    }
}

.advantages__header-text {
    font-style: normal;
    font-weight: 400;
    font-size: 18px;
    line-height: 17px;
    text-align: right;
    color: #616368;
}

@media (max-width: 991px) {
    .advantages__header-text {
        font-style: normal;
        font-weight: 400;
        font-size: 18px;
        line-height: 23px;
        color: #616368;
        text-align: left;
    }
}

.advantages__list {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(2, 277px);
    column-gap: 13px;
    row-gap: 19px;
}

@media (max-width: 991px) {
    .advantages__list {
        grid-template-columns: 1fr;
        grid-template-rows: repeat(6, 180px);
        column-gap: 15px;
    }
}

.advantages__list-item {
    position: relative;
    padding: 25px 22px;
    overflow: hidden;
}

@media (max-width: 991px) {
    .advantages__list-item {
        padding: 21px 15px;
    }
}

.advantages__list-item-text {
    font-style: normal;
    font-weight: 400;
    font-size: 20px;
    line-height: 23px;
    text-align: right;
    color: #000000;
}

@media (max-width: 991px) {
    .advantages__list-item-text {
        font-style: normal;
        font-weight: 400;
        font-size: 16px;
        line-height: 23px;
        color: #000000;
        text-align: left;
    }
}

.advantages__list-item-img {
    position: absolute;
}

.advantages__list-item:nth-child(1) {
    background-color: var(--base-color-bgr);
    grid-column: 1/2;
    grid-row: 1/2;
}

@media (max-width: 991px) {
    .advantages__list-item:nth-child(1) {
        grid-column: 1/2;
        grid-row: 1/2;
    }
}

.advantages__list-item:nth-child(1) img {
    left: -51px;
    bottom: -81px;
}

@media (max-width: 991px) {
    .advantages__list-item:nth-child(1) img {
        width: 162px;
        height: 173px;
        left: unset;
        right: 1px;
        bottom: -80px;
    }
}

.advantages__list-item:nth-child(2) {
    background-color: var(--base-color-bgr);
    grid-column: 2/4;
    grid-row: 1/2;
}

@media (max-width: 991px) {
    .advantages__list-item:nth-child(2) {
        grid-column: 1/2;
        grid-row: 2/3;
    }
}

.advantages__list-item:nth-child(2) img {
    left: 0;
    bottom: -78px;
}

@media (max-width: 991px) {
    .advantages__list-item:nth-child(2) img {
        width: 227px;
        height: 210px;
        left: unset;
        right: 0;
        bottom: -90px;
    }
}

.advantages__list-item:nth-child(3) {
    background-color: var(--base-color-bgr);
    grid-column: 4/5;
    grid-row: 1/3;
}

@media (max-width: 991px) {
    .advantages__list-item:nth-child(3) {
        grid-column: 1/2;
        grid-row: 3/4;
    }
}

.advantages__list-item:nth-child(3) img {
    left: -73px;
    bottom: -73px;
}

@media (max-width: 991px) {
    .advantages__list-item:nth-child(3) img {
        width: 174px;
        height: 231px;
        left: unset;
        right: 0;
        bottom: -114px;
    }
}

.advantages__list-item:nth-child(4) {
    background-color: #E2EAED;
    grid-column: 1/2;
    grid-row: 2/3;
}

@media (max-width: 991px) {
    .advantages__list-item:nth-child(4) {
        grid-column: 1/2;
        grid-row: 4/5;
    }
}

.advantages__list-item:nth-child(4) img {
    left: -14px;
    bottom: -40px;
}

@media (max-width: 991px) {
    .advantages__list-item:nth-child(4) img {
        width: 152px;
        height: 151px;
        left: unset;
        right: 0;
        bottom: -50px;
        transform: rotate(45deg);
    }
}

.advantages__list-item:nth-child(5) {
    background-color: #E2EAED;
    grid-column: 2/3;
    grid-row: 2/3;
}

@media (max-width: 991px) {
    .advantages__list-item:nth-child(5) {
        grid-column: 1/2;
        grid-row: 5/6;
    }
}

.advantages__list-item:nth-child(5) img {
    left: -24px;
    bottom: -31px;
}

@media (max-width: 991px) {
    .advantages__list-item:nth-child(5) img {
        width: 169px;
        height: 162px;
        left: unset;
        right: 35px;
        bottom: -51px;
    }
}

.advantages__list-item:nth-child(6) {
    background-color: #E2EAED;
    grid-column: 3/4;
    grid-row: 2/3;
}

@media (max-width: 991px) {
    .advantages__list-item:nth-child(6) {
        grid-column: 1/2;
        grid-row: 6/7;
    }
}

.advantages__list-item:nth-child(6) img {
    left: -81px;
    bottom: -73px;
}

@media (max-width: 991px) {
    .advantages__list-item:nth-child(6) img {
        width: 163px;
        height: 235px;
        left: unset;
        right: 10px;
        bottom: -80px;
    }
}

.how {
    margin: 0 auto 100px;
    max-width: 1050px;
}

.how * + p {
    margin-top: unset;
}

.how__header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 60px;
}

.how__header-nav {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 11px;
}

.how__header-nav-item {
    cursor: pointer;
    user-select: none;
    font-style: normal;
    font-weight: 600;
    font-size: 24px;
    line-height: 29px;
    color: #B5B5B5;
}

@media (max-width: 991px) {
    .how__header-nav-item {
        font-style: normal;
        font-weight: 600;
        font-size: 18px;
        line-height: 24px;
        text-align: center;
    }
}

.how__header-nav-item.active {
    color: #225931;
}

.how__header-nav-separator {
    font-style: normal;
    font-weight: 600;
    font-size: 24px;
    line-height: 29px;
    color: #225931;
}

@media (max-width: 991px) {
    .how__header-nav-separator {
        font-style: normal;
        font-weight: 600;
        font-size: 18px;
        line-height: 24px;
        text-align: center;
    }
}

.how__header-btn {
    cursor: pointer;
    user-select: none;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px;
    width: 194px;
    height: 59px;
    background: var(--base-color);
    border-radius: 100px;
    font-style: normal;
    font-weight: 500;
    font-size: 18px;
    line-height: 22px;
    text-align: center;
    color: #FFFFFF;
}

@media (max-width: 991px) {
    .how__header-btn {
        display: none;
    }
}

.how__step {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

@media (max-width: 991px) {
    .how__step {
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
        gap: 50px;
    }
}

.how__step::before {
    z-index: -1;
    content: " ";
    height: 1px;
    width: 70%;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: 26px;
    background-color: #6BA37A;
}

@media (max-width: 991px) {
    .how__step::before {
        width: 1px;
        height: 70%;
        left: 26px;
        top: 45%;
        transform: translateY(-50%);
    }
}

.how__step-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
}

@media (max-width: 991px) {
    .how__step-item {
        display: grid;
        grid-template-columns: 52px 1fr;
        gap: 21px;
    }
}

.how__step-item-num {
    outline: 16px solid #FFFFFF;
    width: 52px;
    height: 52px;
    background: var(--base-color-light);
    border-radius: 13px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-style: normal;
    font-weight: 700;
    font-size: 28px;
    line-height: 38px;
    color: #FFFFFF;
    margin-bottom: 18px;
}

@media (max-width: 991px) {
    .how__step-item-num {
        grid-row: 1/3;
        outline: none;
        align-self: start;
    }
}

.how__step-item-title {
    font-style: normal;
    font-weight: 600;
    font-size: 20px;
    line-height: 24px;
    color: #000000;
    text-align: center;
    margin-bottom: 21px;
}

@media (max-width: 991px) {
    .how__step-item-title {
        margin-bottom: 0;
        font-style: normal;
        font-weight: 600;
        font-size: 20px;
        line-height: 24px;
        color: #000000;
        text-align: left;
    }
}

.how__step-item-text {
    max-width: 240px;
    font-style: normal;
    font-weight: 300;
    font-size: 15px;
    line-height: 20px;
    text-align: center;
    color: #000000;
}

@media (max-width: 991px) {
    .how__step-item-text {
        text-align: left;
        font-style: normal;
        font-weight: 300;
        font-size: 15px;
        line-height: 20px;
        color: #000000;
    }
}

.how-btn {
    margin-top: 72px;
    cursor: pointer;
    user-select: none;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px;
    width: 100%;
    height: 71px;
    background: var(--base-color);
    border-radius: 100px;
    font-style: normal;
    font-weight: 500;
    font-size: 22px;
    line-height: 22px;
    text-align: center;
    color: #FFFFFF;
}

@media (min-width: 992px) {
    .how-btn {
        display: none;
    }
}

.faq {
    background-color: var(--base-color-bgr);
    padding: 70px 0;
    margin-bottom: 100px;
}

.faq * + p {
    margin-top: unset;
}

.faq-title {
    font-style: normal;
    font-weight: 500;
    font-size: 40px;
    line-height: 49px;
    text-align: left;
    color: #000000;
    margin-bottom: 33px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

@media (max-width: 991px) {
    .faq-title {
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
        gap: 20px;
    }
}

.faq-title-btn {
    font-style: normal;
    font-weight: 500;
    font-size: 18.8945px;
    line-height: 23px;
    text-align: center;
    color: #225931;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 7px;
    width: 163px;
    height: 42px;
    background: var(--base-color-extra-light);
    border-radius: 100px;
}

.faq-title-btn.open img {
    transform: rotate(-180deg);
}

.faq__list {
    display: grid;
    grid-template-columns: 1fr;
    gap: 14px;
}

.faq__list-item {
    background-color: #FFFFFF;
    padding: 18px 24px;
}

.faq__list-item-title {
    user-select: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-style: normal;
    font-weight: 500;
    font-size: 18px;
    line-height: 120%;
    color: #000000;
    cursor: pointer;
    margin-bottom: 0;
}

.faq__list-item-title img {
    transition: transform 0.3s ease;
}

.faq__list-item-text {
    margin-top: 18px;
}

.reviews {
    margin-bottom: 100px;
}

.reviews * + p {
    margin-top: unset;
}

.reviews__header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

@media (max-width: 991px) {
    .reviews__header {
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
    }
}

.reviews__header-title {
    font-style: normal;
    font-weight: 500;
    font-size: 40px;
    line-height: 49px;
    color: #000000;
}

@media (max-width: 991px) {
    .reviews__header-title {
        font-style: normal;
        font-weight: 500;
        font-size: 25px;
        line-height: 30px;
        margin-bottom: 14px;
    }
}

.reviews__header-text {
    font-style: normal;
    font-weight: 400;
    font-size: 18px;
    line-height: 17px;
    text-align: right;
    color: #616368;
}

@media (max-width: 991px) {
    .reviews__header-text {
        font-style: normal;
        font-weight: 400;
        font-size: 18px;
        line-height: 20px;
        color: #616368;
        text-align: left;
    }
}

.reviews__list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
}

@media (max-width: 991px) {
    .reviews__list {
        grid-template-columns: 1fr;
    }
}

.reviews__list-item {
    background-color: #F5FCFF;
    padding: 23px;
    height: fit-content;
}

.reviews__list-item-header {
    display: grid;
    grid-template-columns: 60px 1fr;
}

.reviews__list-item-header img {
    grid-row: 1/3;
    grid-column: 1/2;
}

.reviews__list-item-header h4 {
    margin-left: 16px;
    font-style: normal;
    font-weight: 600;
    font-size: 19.7526px;
    line-height: 24px;
    color: #2C2C2C;
    align-self: end;
    margin-bottom: 0;
}

.reviews__list-item-header p {
    margin-left: 16px;
    font-style: normal;
    font-weight: 400;
    font-size: 13.8268px;
    line-height: 17px;
    color: #777777;
}

.reviews__list-item-stars {
    margin-top: 16px;
    display: grid;
    grid-template-columns: repeat(5, 20px);
    gap: 4px;
}

.reviews__list-item-text {
    margin-top: 16px;
    font-style: normal;
    font-weight: 400;
    font-size: 15.8021px;
    line-height: 136%;
    color: #2C2C2C;
}

.footer {
    background-color: var(--base-color);
    padding: 50px 0;
}

.footer * + p {
    margin-top: unset;
}

.footer__header {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 70px;
}

@media (max-width: 991px) {
    .footer__header {
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
        gap: 25px;
        margin-bottom: 48px;
    }
}

.footer__header-logo {
    width: 260px;
}

@media (max-width: 991px) {
    .footer__header-logo {
        width: 173px;
    }
}

.footer__header-btn {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 325px;
    height: 84px;
    background: #2B7A39;
    border-radius: 100px;
    font-style: normal;
    font-weight: 500;
    font-size: 23.76px;
    line-height: 35px;
    text-align: center;
    color: #FFFFFF;
}

@media (max-width: 991px) {
    .footer__header-btn {
        width: 267px;
        height: 69px;
        font-size: 19.52px;
        line-height: 28.6px;
    }
}

.footer__nav {
    display: grid;
    grid-template-columns: repeat(3, 210px);
    column-gap: 70px;
    row-gap: 27px;
    margin-bottom: 70px;
}

@media (max-width: 991px) {
    .footer__nav {
        grid-template-columns: 1fr;
        row-gap: 13px;
        margin-bottom: 40px;
    }
}

.footer__nav-item {
    width: fit-content;
    font-style: normal;
    font-weight: 400;
    font-size: 22px;
    line-height: 32px;
    color: #FFFFFF;
}

.footer-text {
    font-style: normal;
    font-weight: 275;
    font-size: 12px;
    line-height: 15px;
    color: #FFFFFF;
}

.landing {
    margin: 30px 0 100px;
}

.landing * + p {
    margin-top: unset;
}

.landing__header {
    margin-bottom: 60px;
}

@media (max-width: 991px) {
    .landing__header {
        margin-bottom: 30px;
    }
}

.landing__header-title {
    font-style: normal;
    font-weight: 500;
    font-size: 24px;
    line-height: 29px;
    color: #000000;
    margin-bottom: 12px;
    text-align: center;
}

@media (max-width: 991px) {
    .landing__header-title {
        font-size: 18px;
        line-height: 24px;
    }
}

.landing__header-info {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
}

@media (max-width: 991px) {
    .landing__header-info {
        flex-direction: column;
        gap: 12px;
    }
}

.landing__header-info-text {
    font-style: normal;
    font-weight: 400;
    font-size: 20px;
    line-height: 25px;
    color: rgba(0, 0, 0, 0.5);
}

@media (max-width: 991px) {
    .landing__header-info-text {
        text-align: center;
    }
}

.landing__header-info-progress {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 10px;
}

.landing__header-info-progress span {
    font-style: normal;
    font-weight: 400;
    font-size: 20px;
    line-height: 25px;
    color: var(--base-color-light);
}

.landing__form-group {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    margin-bottom: 40px;
}

.landing__form-group label {
    user-select: none;
    font-style: normal;
    font-weight: 500;
    font-size: 18px;
    line-height: 22px;
    text-align: center;
    color: #000000;
    margin-bottom: 15px;
}

.landing__form-group input {
    width: 496px;
    height: 66px;
    background: #F5F5F5;
    border-radius: 12px;
    text-align: center;
    font-style: normal;
    font-weight: 500;
    font-size: 16px;
    line-height: 115%;
    color: #000000;
}

@media (max-width: 991px) {
    .landing__form-group input {
        width: 100%;
    }
}

.landing__form-btn {
    display: block;
    margin: 0 auto;
    padding: 7px 12px;
    gap: 10px;
    width: 202px;
    height: 59px;
    background: var(--base-color);
    border-radius: 100px;
    font-style: normal;
    font-weight: 700;
    font-size: 22px;
    line-height: 24px;
    text-align: center;
    color: #FFFFFF;
}

.landing__form-btn:disabled {
    opacity: 0.5;
}

.stage {
    display: grid;
    grid-template-columns: 1fr;
    gap: 60px;
    margin: 60px auto 100px;
    max-width: 850px;
}

.stage * + p {
    margin-top: unset;
}

@media (max-width: 991px) {
    .stage {
        gap: 30px;
    }
}

.stage__header-title {
    font-style: normal;
    font-weight: 500;
    font-size: 24px;
    line-height: 29px;
    color: #000000;
    margin-bottom: 12px;
    text-align: center;
}

@media (max-width: 991px) {
    .stage__header-title {
        font-size: 18px;
        line-height: 24px;
    }
}

.stage__header-info {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
}

@media (max-width: 991px) {
    .stage__header-info {
        flex-direction: column;
        gap: 12px;
    }
}

.stage__header-info-text {
    font-style: normal;
    font-weight: 400;
    font-size: 20px;
    line-height: 25px;
    color: rgba(0, 0, 0, 0.5);
}

@media (max-width: 991px) {
    .stage__header-info-text {
        text-align: center;
        font-size: 16px;
    }
}

.stage__header-info-progress {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 10px;
}

.stage__header-info-progress span {
    font-style: normal;
    font-weight: 400;
    font-size: 20px;
    line-height: 25px;
    color: var(--base-color-light);
}

@media (max-width: 991px) {
    .stage__header-info-progress span {
        text-align: center;
        font-size: 16px;
    }
}

.stage__form {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    max-width: 650px;
    justify-self: center;
    margin-right: 0;
    margin-left: 0;
}

.stage__form-title {
    font-style: normal;
    font-weight: 500;
    font-size: 18px;
    line-height: 22px;
    color: #000000;
    margin-bottom: 15px;
    text-align: center;
}

.stage__form-info {
    font-style: normal;
    font-weight: 500;
    font-size: 16px;
    line-height: 119%;
    color: rgba(0, 0, 0, 0.5);
    padding: 22px 33px;
    background: #F5F5F5;
    border-radius: 12px;
    text-align: center;
}

.stage__form-info span {
    color: var(--base-color-light);
}

.stage__form-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 11px;
}

@media (max-width: 991px) {
    .stage__form-row {
        grid-template-columns: 1fr;
    }
}

.stage__form-group {
    margin-bottom: 11px;
}

.stage__form-group input, .stage__form-group select {
    width: 100%;
    height: 66px;
    background: #F5F5F5;
    border-radius: 12px;
    padding: 0 15px;
    color: rgba(0, 0, 0, 0.5);
    outline: none;
    border: none;
}

.stage__form-group input::placeholder, .stage__form-group select::placeholder {
    color: rgba(0, 0, 0, 0.5);
}

.stage__form-group-file {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    margin-bottom: 11px;
    gap: 20px;
}

.stage__form-group-file p {
    grid-column: 1/3;
    font-style: normal;
    font-weight: 500;
    font-size: 18px;
    line-height: 22px;
    color: #000000;
    margin-bottom: 16px;
    text-align: center;
}

.stage__form-group-file img {
    object-fit: contain;
    height: 165px;
    margin-bottom: 16px;
    justify-self: end;
}

.stage__form-group-file label {
    user-select: none;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 7px 12px;
    gap: 10px;
    width: 159px;
    height: 45px;
    border: 1px solid var(--base-color);
    border-radius: 100px;
    font-style: normal;
    font-weight: 500;
    font-size: 15px;
    line-height: 24px;
    text-align: center;
    color: var(--base-color);
    align-self: center;
}

.stage__form-group-file input {
    display: none;
}

.stage__form-group-file span {
    padding: 0;
    justify-self: end;
    display: flex;
    flex-direction: column;
    align-self: end;
}

.stage__form-group-radio {
    margin-bottom: 11px;
}

.stage__form-group-radio p {
    font-style: normal;
    font-weight: 500;
    font-size: 18px;
    line-height: 22px;
    color: #000000;
    margin-bottom: 15px;
    text-align: center;
}

.stage__form-group-radio .radio {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.stage__form-group-radio .radio input {
    display: none;
}

.stage__form-group-radio .radio input:checked + label::after {
    position: absolute;
    left: 4px;
    top: 4px;
    content: " ";
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: var(--base-color-light);
}

.stage__form-group-radio .radio label {
    user-select: none;
    position: relative;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 5px;
    margin-right: 30px;
    font-style: normal;
    font-weight: 500;
    font-size: 16px;
    line-height: 115%;
    color: rgba(0, 0, 0, 0.5);
}

.stage__form-group-radio .radio label::before {
    display: inline-block;
    position: relative;
    content: " " !important;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    border: 1px solid var(--base-color-light);
}

.stage__form-group-radio-work {
    margin-bottom: 11px;
}

.stage__form-group-radio-work p {
    font-style: normal;
    font-weight: 500;
    font-size: 18px;
    line-height: 22px;
    color: #000000;
    margin-bottom: 15px;
}

.stage__form-group-radio-work .radio {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    position: relative;
}

.stage__form-group-radio-work .radio input {
    display: none;
}

.stage__form-group-radio-work .radio input:checked + label::after {
    position: absolute;
    left: 4px;
    top: 4px;
    content: " ";
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: var(--base-color-light);
}

.stage__form-group-radio-work .radio label {
    user-select: none;
    position: relative;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 5px;
    margin-right: 30px;
    font-style: normal;
    font-weight: 500;
    font-size: 16px;
    line-height: 115%;
    color: rgba(0, 0, 0, 0.5);
}

.stage__form-group-radio-work .radio label::before {
    display: inline-block;
    position: relative;
    content: " ";
    width: 24px;
    height: 24px;
    border-radius: 50%;
    border: 1px solid var(--base-color-light);
}

.stage__form-group-checkbox:not(:last-child) {
    margin-bottom: 18px;
}

.stage__form-group-checkbox input {
    display: none;
}

.stage__form-group-checkbox input:checked + label::after {
    position: absolute !important;
    display: block !important;
    font-size: 20px !important;
    content: "✔" !important;
    color: var(--base-color-light) !important;
    left: 6px !important;
    top: 4px !important;
}

.stage__form-group-checkbox input:checked + label::before {
    border: 2px solid var(--base-color-light) !important;
}

.stage__form-group-checkbox label {
    user-select: none;
    position: relative;
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 12px;
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 20px;
    color: #000000;
}

.stage__form-group-checkbox label::before {
    flex-shrink: 0 !important;
    display: block !important;
    content: " " !important;
    width: 28px !important;
    height: 28px !important;
    border-radius: 7px !important;
    border: 2px solid #747474 !important;
    background: transparent !important;
    margin-right: 0 !important;
}

.stage__form-group-checkbox.-error label::before {
    border: 2px solid red !important;
}

.stage__form-group-code {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 18px;
}

.stage__form-group-code input {
    width: 87px;
    height: 97px;
    background: #E5E5E5;
    border-radius: 13px;
    text-align: center;
    font-size: 40px;
}

@media (max-width: 991px) {
    .stage__form-group-code input {
        width: 40px;
        height: 52px;
        font-size: 24px;
        border-radius: 8px;
    }
}

.stage__form-group-code-title {
    text-align: center;
    font-style: normal;
    font-weight: 500;
    font-size: 18px;
    line-height: 22px;
    color: #000000;
    margin-bottom: 15px;
}

.stage__form-group-code-repeat {
    display: block;
    width: fit-content;
    text-align: center;
    font-style: normal;
    font-weight: 500;
    font-size: 18px;
    line-height: 22px;
    color: rgba(40, 89, 49, 0.5);
    margin: 20px auto 0;
}

.stage__form-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 30px;
}

.stage__form-actions-back {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 8px;
    font-style: normal;
    font-weight: 500;
    font-size: 22px;
    line-height: 24px;
    color: rgba(40, 89, 49, 0.5);
}

@media (max-width: 991px) {
    .stage__form-actions-back {
        font-size: 15px;
        line-height: 18px;
    }
}

.stage__form-actions-submit {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 7px 12px;
    gap: 10px;
    width: 202px;
    height: 59px;
    background: var(--base-color);
    border-radius: 100px;
    font-weight: 700;
    font-size: 22px;
    line-height: 24px;
    color: #FFFFFF;
}

/* Только для шага привязки карты: кнопка "Далее" по центру, "Назад" остаётся слева */
.stage__form-actions--card {
    position: relative;
}

.stage__form-actions--card .stage__form-actions-submit {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

@media (max-width: 991px) {
    .stage__form-actions-submit {
        font-size: 18px;
        line-height: 20px;
        width: 160px;
        height: 48px;
    }
}

.documents {
    margin-bottom: 100px;
}

.documents-title {
    font-style: normal;
    font-weight: 500;
    font-size: 40px;
    line-height: 49px;
    color: #000000;
    margin-bottom: 30px;
}

.documents__list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

@media (max-width: 991px) {
    .documents__list {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 767px) {
    .documents__list {
        grid-template-columns: 1fr;
    }
}

.documents__list-item {
    background: var(--base-color-bgr);
    border-radius: 20px;
    padding: 24px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 13px;
}

.documents__list-item p {
    font-style: normal;
    font-weight: 400;
    font-size: 12px;
    line-height: 15px;
    display: flex;
    align-items: center;
    color: #000000;
}

.autocomplete-suggestions {
    overflow-y: scroll;
}

/*# sourceMappingURL=style.css.map */
