@charset "UTF-8";
@font-face {
    font-family: "Open Sans";
    src: url("../fonts/OpenSans-Variable.ttf");
}
* {
    font-family: "Open Sans", sans-serif!important;
}

/* Box sizing rules */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin-block-start: 0;
    margin-block-end: 0;
}

/* Prevent font size inflation */
html {
    -moz-text-size-adjust: none;
    -webkit-text-size-adjust: none;
    text-size-adjust: none;
}

/* Remove default margin in favour of better control in authored CSS */
body, h1, h2, h3, h4, p,
figure, blockquote, dl, dd {
    margin: 0;
}

/* Remove list styles on ul, ol elements with a list role, which suggests default styling will be removed */
ul[role=list],
ol[role=list] {
    list-style: none;
}

/* Set core body defaults */
body {
    line-height: 1.5;
    background-color: #FFF;
}

/* Set shorter line heights on headings and interactive elements */
h1, h2, h3, h4,
button, input, label {
    line-height: 1.1;
}

/* A elements that don't have a class get default styles */
a {
    text-decoration-skip-ink: auto;
    color: currentColor;
    text-decoration: none;
}

/* Make images easier to work with */
img,
picture {
    max-width: 100%;
    display: block;
}

/* Inherit fonts for inputs and buttons */
input, button,
textarea, select {
    font: inherit;
}

/* Make sure textarea without a rows attribute are not tiny */
textarea:not([rows]) {
    min-height: 10em;
}

/* Anything that has been anchored to should have extra scroll margin */
:target {
    scroll-margin-block: 5ex;
}

.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;
    }
}
@media (min-width: 1300px) {
    .container {
        max-width: 1200px;
    }
}
.h-header {
    z-index: 1;
    width: 100%;
    position: absolute;
    top: 25px;
    left: 50%;
    transform: translateX(-50%);
}
.h-header-body {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.h-header__phone {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 9px;
}
.h-header__phone img {
    height: 36px;
    width: 36px;
}
.h-header__phone span {
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 22px;
    color: #FFFFFF;
}
@media (max-width: 991px) {
    .h-header__phone span {
        display: none;
    }
}
.h-header__nav {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 16px;
}
.h-header__nav-item {
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    line-height: 20px;
    color: #FFFFFF;
}
@media (max-width: 991px) {
    .h-header__nav-item {
        display: none;
    }
}
.h-header-btn {
    width: 160px;
    height: 44px;
    background: #FFFFFF;
    border-radius: 100px;
    font-style: normal;
    font-weight: 800;
    font-size: 14px;
    line-height: 17px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #FF6700;
}
@media (max-width: 991px) {
    .h-header-btn {
        display: none;
    }
}
.h-header-menu {
    display: none;
}
@media (max-width: 991px) {
    .h-header-menu {
        display: block;
    }
}

.mobile-menu {
    z-index: 9999999;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100vw;
    background-color: #FFF;
    height: calc(100% - 90px);
    border-top-left-radius: 40px;
    border-top-right-radius: 40px;
}

.mobile-menu__nav {
    margin-top: 100px;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 40px;
}

.mobile-menu__nav-item {
    font-style: normal;
    font-weight: 400;
    font-size: 22px;
    line-height: 20px;
    color: #000000;
    text-align: center;
}

.mobile-menu-btn {
    max-width: 320px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    margin-top: 60px;
    margin-left: 50%;
    transform: translateX(-50%);
    width: calc(100% - 70px);
    background: #FF6700;
    border-radius: 183px;
    height: 72px;
    font-style: normal;
    font-weight: 800;
    font-size: 22px;
    line-height: 31px;
    color: #FFFFFF;
}

.mobile-menu__phone {
    margin-top: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 13px;
    font-style: normal;
    font-weight: 400;
    font-size: 22px;
    line-height: 25px;
    color: #000000;
}

.mobile-menu__phone img {
    width: 36px;
    height: 36px;
}

.header {
    margin-top: 25px;
    margin-bottom: 60px;
    width: 100%;
}
@media (max-width: 991px) {
    .header {
        margin-top: 15px;
        margin-bottom: 25px;
    }
}
.header-body {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 63px;
}
.header__phone {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 10px;
}
.header__phone img {
    width: 40px;
    height: 40px;
}
@media (max-width: 991px) {
    .header__phone img {
        width: 33px;
        height: 33px;
    }
}
.header__phone span {
    font-style: normal;
    font-weight: 400;
    font-size: 17px;
    line-height: 25px;
    color: #000000;
}
@media (max-width: 991px) {
    .header__phone span {
        display: none;
    }
}
.header__logo {
    height: 45px;
}
.header-btn {
    background: #FFA129;
    border-radius: 100px;
    font-style: normal;
    font-weight: 800;
    font-size: 14px;
    line-height: 17px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #FFFFFF;
    height: 44px;
    padding: 0 16px;
}
.header-btn:hover {
    color: #FFFFFF;
}
@media (max-width: 991px) {
    .header-btn {
        display: none;
    }
}
.header-menu {
    display: none;
}
@media (max-width: 991px) {
    .header-menu {
        display: block;
    }
}

.footer {
    margin-bottom: 155px;
    background: none!important;
}
@media (max-width: 991px) {
    .footer {
        margin-bottom: 80px;
    }
}
.footer__header {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 80px;
    margin-bottom: 50px;
}
@media (max-width: 991px) {
    .footer__header {
        margin-bottom: 25px;
        gap: 22px;
    }
}
.footer__header-item {
    display: flex;
    justify-content: flex-start;
    align-items: center;
}
@media (max-width: 991px) {
    .footer__header-item {
        display: grid;
        grid-template-columns: 18px 1fr;
    }
}
.footer__header-item img {
    margin-right: 8px;
    width: 23px;
    height: 23px;
}
@media (max-width: 991px) {
    .footer__header-item img {
        margin-right: 0;
        width: 18px;
        height: 18px;
    }
}
@media (max-width: 360px) {
    .footer__header-item img {
        display: none;
    }
}
.footer__header-item a, .footer__header-item span {
    font-style: normal;
    font-weight: 600;
    font-size: 22px;
    line-height: 150%;
    color: #000000;
    margin-right: 18px;
}
@media (max-width: 991px) {
    .footer__header-item a, .footer__header-item span {
        font-size: 17px;
        margin-right: 0;
        margin-left: 8px;
    }
}
@media (max-width: 360px) {
    .footer__header-item a, .footer__header-item span {
        grid-column: 1/3;
        margin-left: 0;
    }
}
.footer__header-item p {
    font-style: normal;
    font-weight: 400;
    font-size: 19px;
    line-height: 26px;
    color: rgba(0, 0, 0, 0.5);
}
@media (max-width: 991px) {
    .footer__header-item p {
        font-size: 15px;
        grid-column: 1/3;
    }
}
.footer-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #000;
}
.footer__docs {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    margin-bottom: 50px;
}
@media (max-width: 991px) {
    .footer__docs {
        grid-template-columns: 1fr;
        gap: 16px;
        margin-bottom: 25px;
    }
}
.footer__docs-item {
    position: relative;
    font-style: normal;
    font-weight: 250;
    font-size: 14px;
    width: fit-content;
    height: fit-content;
    line-height: 150%;
    color: #000000;
}
.footer__docs-item:hover, .footer__docs-item:active, .footer__docs-item:focus {
    color: #FF5E00;
}
.footer__docs-item::before {
    position: absolute;
    top: 8px;
    left: -12px;
    content: " ";
    display: block;
    width: 4px;
    height: 4px;
    background: #FF5E00;
    border-radius: 50%;
}
.footer__text {
    font-style: normal;
    font-weight: 400;
    font-size: 12px;
    line-height: 150%;
    color: rgba(0, 0, 0, 0.5);
}
@media (max-width: 991px) {
    .footer__text {
        font-size: 10px;
    }
}
.footer__text a {
    text-decoration: underline;
    color: #FF473E!important;
}

.calc {
    position: relative;
    overflow: hidden;
    height: 100vh;
    background: linear-gradient(180deg, #FF3C3C 0%, #FFB950 100%);
    border-radius: 0 0 60px 60px;
}

@media (max-width: 991px) {
    .calc {
        height: fit-content;
        padding-bottom: 60px;
    }
}

.calc__sub {
    position: absolute;
    left: 50%;
    top: 144px;
    transform: translateX(-50%);
    background: #E7402A;
    border-radius: 100px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 4px;
    height: 53px;
    padding: 0 16px;
    font-style: normal;
    font-weight: 700;
    font-size: 24px;
    line-height: 34px;
    color: #FFFFFF;
}

@media (max-width: 991px) {
    .calc__sub {
        max-width: 320px;
        width: 100%;
        top: 90px;
        height: 47px;
        font-size: 16px;
    }
}

.calc-title {
    position: absolute;
    left: 50%;
    top: 212px;
    transform: translateX(-50%);
    font-style: normal;
    font-weight: 800;
    font-size: 58px;
    line-height: 70px;
    text-align: center;
    color: #FFFFFF;
    width: 100%;
}

@media (max-width: 991px) {
    .calc-title {
        top: 149px;
        font-size: 35px;
        line-height: 49px;
    }
}

.calc__form {
    margin-top: 340px;
    width: 100%;
    background: #FFFFFF;
    border-radius: 51px;
    padding: 54px 48px;
    display: grid;
    grid-template-columns: repeat(2, 350px);
    column-gap: 60px;
    row-gap: 45px;
}

@media (max-width: 991px) {
    .calc__form {
        margin-top: 270px;
        padding: 20px;
        grid-template-columns: 1fr;
        row-gap: 15px;
    }
}

.calc__form-input-label {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

.calc__form-input-label label {
    width: 100%;
    font-style: normal;
    font-weight: 400;
    font-size: 12px;
    line-height: 16px;
    color: #515151;
}

.calc__form-input-label span {
    width: 100%;
    font-style: normal;
    font-weight: 700;
    font-size: 22px;
    line-height: 26px;
    text-align: right;
    color: #2B3140;
}

@media (max-width: 991px) {
    .calc__form-input-label span {
        font-size: 18px;
        line-height: 20px;
    }
}

.calc__form-input input {
    margin-top: 10px;
    -webkit-appearance: none;
    width: 100%;
    height: 10px;
    border-radius: 5px;
    background: #D6D6D6;
    outline: none;
    cursor: pointer;
}

.calc__form-input input::-webkit-slider-runnable-track {
    height: 10px;
    border-radius: 5px;
    background: linear-gradient(to right, #FF473E var(--progress), #D6D6D6 var(--progress));
}

.calc__form-input input::-moz-range-track {
    height: 10px;
    background: #D6D6D6;
    border-radius: 5px;
}

.calc__form-input input::-webkit-slider-thumb {
    -webkit-appearance: none;
    height: 24px;
    width: 24px;
    border-radius: 50%;
    background: #FF473E;
    border: 4px solid #fff;
    box-shadow: 0 0 0 3px #FF473E;
    margin-top: -7px;
    position: relative;
    z-index: 2;
}

.calc__form-input input::-moz-range-thumb {
    height: 24px;
    width: 24px;
    border-radius: 50%;
    background: #FF473E;
    border: 4px solid #fff;
    box-shadow: 0 0 0 3px #FF473E;
    cursor: pointer;
}

.calc__form-input-legend {
    margin-top: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.calc__form-input-legend span {
    font-style: normal;
    font-weight: 400;
    font-size: 12px;
    line-height: 17px;
    color: #515151;
}

.calc__form-total {
    display: grid;
    grid-template-columns: 1fr .5fr;
    gap: 20px;
    background: #FFF4E1;
    border-radius: 20px;
    padding: 24px 16px;
}

.calc__form-total-phone {
    grid-column: 1 / 3;
}

.calc__form-total-phone-input {
    width: 100%;
    height: 36px;
    background: #FFFFFF;
    border-radius: 20px;
    font-style: normal;
    font-weight: 400;
    font-size: 15px;
    line-height: 115%;
    padding: 0 14px;
    border: none;
    outline: none;
}

.calc__form-total-text {
    font-style: normal;
    font-weight: 400;
    font-size: 12px;
    line-height: 17px;
    color: #130E21;
}

.calc__form-total-value {
    font-style: normal;
    font-weight: 700;
    font-size: 14px;
    line-height: 20px;
    color: #130E21;
}

.calc__form-total-agree {
    grid-column: 1/3;
    display: grid;
    grid-template-columns: 1fr;
    gap: 15px;
}

.calc__form-total-agree-item label {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 6px;
}

.calc__form-total-agree-item label::before {
    content: "";
    display: flex;
    justify-content: center;
    align-items: center;
    width: 13px!important;
    height: 13px!important;
    background: transparent!important;
    border: 1px solid #000!important;
    transition: background .3s ease!important;
    color: #FFF!important;
    border-radius: 3px!important;
    margin-right: 0!important;
    font-size: 10px;
}

.calc__form-total-agree-item input[type="checkbox"]:checked + label::before {
    background: #FF473E!important;
    border: 1px solid #FF473E!important;
}

.calc__form-total-agree-item span {
    user-select: none;
    font-style: normal;
    font-weight: 400;
    font-size: 12px;
    line-height: 120%;
    color: #000000;
}

.calc__form-total-agree-item span a {
    color: #FF473E!important;
}

.calc__form-btns {
    align-self: start;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
}

@media (max-width: 991px) {
    .calc__form-btns {
        grid-template-columns: 1fr;
        gap: 10px;
    }
}

.calc__form-btns *:first-child {
    grid-column: 1 / 3;
}

.calc__form-btns-tbank {
    position: relative;
    z-index: 1;
    user-select: none;
    cursor: pointer;
    height: 57px;
    background: #FFDD2D;
    border-radius: 100px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 6px;
    font-style: normal;
    font-weight: 700;
    font-size: 14px;
    line-height: 22px;
    color: rgba(0, 0, 0, 0.8);
}

@media (max-width: 991px) {
    .calc__form-btns-tbank {
        grid-column: 1 / 2;
    }
}

.calc__form-btns-gos {
    position: relative;
    z-index: 1;
    user-select: none;
    cursor: pointer;
    height: 57px;
    background: #006AB9;
    border-radius: 100px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 6px;
    font-style: normal;
    font-weight: 700;
    font-size: 14px;
    line-height: 20px;
    color: #FFFFFF;
}

.calc__form-btns-btn {
    position: relative;
    z-index: 1;
    height: 57px;
    background: #F2271C;
    border-radius: 100px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-style: normal;
    font-weight: 700;
    font-size: 14px;
    line-height: 24px;
    color: #FFFFFF;
    border: none;
    outline: none;
}

.calc-cloud-1 {
    pointer-events: none;
    position: absolute;
    bottom: -50px;
    left: 20%;
}

.calc-cloud-2 {
    pointer-events: none;
    position: absolute;
    height: 170px;
    bottom: -50px;
    left: 50%;
}

.calc-cloud-3 {
    pointer-events: none;
    position: absolute;
    height: 200px;
    bottom: -50px;
    right: -100px;
}

.calc-bear {
    pointer-events: none;
    position: absolute;
    bottom: 0;
    right: 50px;
}

@media (max-width: 1500px) {
    .calc-bear {
        right: -50px;
    }
}

@media (max-width: 1199px) {
    .calc-bear {
        display: none;
    }
}

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

    .calc-cloud-2 {
        display: none;
    }

    .calc-cloud-3 {
        display: none;
    }
}

.alert {
    margin: 40px 0 100px;
}
@media (max-width: 991px) {
    .alert {
        margin: 40px 0 50px;
    }
}
.alert p {
    font-style: normal;
    font-weight: 300;
    font-size: 12px;
    line-height: 142%;
    color: #464646;
}
@media (max-width: 991px) {
    .alert p {
        font-size: 10px;
    }
}
.alert p:not(:last-child) {
    margin-bottom: 10px;
}
@media (max-width: 991px) {
    .alert p:not(:last-child) {
        margin-bottom: 6px;
    }
}
.alert a, .alert span {
    color: #FF473E!important;
}

.promo {
    margin-bottom: 110px;
}
@media (max-width: 991px) {
    .promo {
        margin-bottom: 50px;
    }
}
.promo-body {
    display: grid;
    grid-template-columns: 1fr;
    gap: 26px;
}
/*@media (max-width: 991px) {*/
/*    .promo-body {*/
/*        grid-template-columns: 1fr;*/
/*        gap: 15px;*/
/*    }*/
/*}*/
.promo__one {
    position: relative;
    height: 330px;
    background: #FFE5BF;
    border-radius: 30px;
}
@media (max-width: 991px) {
    .promo__one {
        height: 457px;
    }
}
.promo__one-title {
    position: absolute;
    width: 453px;
    left: 109px;
    top: 63px;
    font-style: normal;
    font-weight: 700;
    font-size: 31px;
    line-height: 36px;
    color: #2B3140;
}
@media (max-width: 991px) {
    .promo__one-title {
        position: absolute;
        width: fit-content;
        height: 68px;
        left: 20px;
        top: 25px;
        font-size: 24px;
        line-height: 32px;
    }
}
.promo__one-rating {
    position: absolute;
    height: 54px;
    left: 109px;
    top: 221px;
}
@media (max-width: 991px) {
    .promo__one-rating {
        position: absolute;
        height: 54px;
        left: 20px;
        top: 113px;
    }
}
.promo__one-store {
    position: absolute;
    width: 356px;
    right: 109px;
    bottom: 0;
}
@media (max-width: 991px) {
    .promo__one-store {
        width: 314px;
        height: 261px;
        right: 0;
        bottom: 0;
    }
}
.promo__second {
    position: relative;
    height: 330px;
    background: #D5FAFF;
    border-radius: 30px;
}
@media (max-width: 991px) {
    .promo__second {
        height: 336px;
    }
}
.promo__second-title {
    position: absolute;
    width: 337px;
    height: 68px;
    left: 28px;
    top: 27px;
    font-style: normal;
    font-weight: 700;
    font-size: 26px;
    line-height: 32px;
    color: #2B3140;
}
@media (max-width: 991px) {
    .promo__second-title {
        width: fit-content;
        left: 20px;
        top: 25px;
        font-size: 24px;
    }
}
.promo__second-text {
    position: absolute;
    width: 178px;
    height: 46px;
    left: 28px;
    top: 110px;
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 23px;
    color: #130E21;
}
@media (max-width: 991px) {
    .promo__second-text {
        width: 200px;
        left: 20px;
        top: 106px;
    }
}
.promo__second-img {
    position: absolute;
    bottom: 0;
    right: 0;
}
@media (max-width: 991px) {
    .promo__second-img {
        width: 180px;
    }
}

.advantages {
    margin-bottom: 110px;
}
@media (max-width: 991px) {
    .advantages {
        margin-bottom: 50px;
    }
}
.advantages-title {
    font-style: normal;
    font-weight: 800;
    font-size: 40px;
    line-height: 54px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #2B3140;
    margin-bottom: 35px;
}
.advantages__list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 26px;
}
@media (max-width: 991px) {
    .advantages__list {
        grid-template-columns: 1fr;
    }
}
.advantages__list-item {
    position: relative;
    height: 410px;
    background: #FFF3DD;
    border-radius: 30px;
}
@media (max-width: 991px) {
    .advantages__list-item {
        height: fit-content;
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
        padding: 25px 20px;
    }
}
.advantages__list-item img {
    position: absolute;
    top: 28px;
    left: 25px;
}
@media (max-width: 991px) {
    .advantages__list-item img {
        position: relative;
        top: 0;
        left: 0;
        margin-bottom: 25px;
    }
}
.advantages__list-item h3 {
    position: absolute;
    max-width: 260px;
    top: 250px;
    left: 25px;
    font-style: normal;
    font-weight: 700;
    font-size: 23px;
    line-height: 28px;
    color: #130E21;
}
@media (max-width: 991px) {
    .advantages__list-item h3 {
        position: relative;
        top: 0;
        left: 0;
        margin-bottom: 16px;
        font-size: 20px;
    }
}
.advantages__list-item p {
    position: absolute;
    max-width: 270px;
    left: 25px;
    bottom: 40px;
    font-style: normal;
    font-weight: 300;
    font-size: 16px;
    line-height: 22px;
    color: #130E21;
}
@media (max-width: 991px) {
    .advantages__list-item p {
        position: relative;
        bottom: 0;
        left: 0;
    }
}

.reviews {
    margin-bottom: 110px;
}
@media (max-width: 991px) {
    .reviews {
        margin-bottom: 50px;
    }
}
.reviews-title {
    font-style: normal;
    font-weight: 800;
    font-size: 40px;
    line-height: 54px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #2B3140;
    margin-bottom: 25px;
}
.reviews__list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 21px;
}
@media (max-width: 991px) {
    .reviews__list {
        grid-template-columns: 1fr;
        gap: 15px;
    }
}
.reviews__list-item {
    position: relative;
    height: 315px;
    background: #F8F8F8;
    box-shadow: 0 4px 10px rgba(82, 82, 82, 0.1);
    border-radius: 40px;
}
@media (max-width: 991px) {
    .reviews__list-item {
        height: fit-content;
    }
}
.reviews__list-item-icon {
    position: absolute;
    top: 37px;
    left: 33px;
}
.reviews__list-item-text {
    position: absolute;
    left: 28px;
    right: 40px;
    top: 85px;
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 136%;
    color: #130E21;
}
@media (max-width: 991px) {
    .reviews__list-item-text {
        position: relative;
        left: 0;
        right: 0;
        top: 0;
        margin-top: 80px;
        margin-left: 28px;
    }
}
.reviews__list-item-user {
    position: absolute;
    bottom: 25px;
    left: 28px;
    height: 60px;
    display: grid;
    grid-template-columns: 60px 1fr;
    column-gap: 16px;
}
@media (max-width: 991px) {
    .reviews__list-item-user {
        position: relative;
        left: 0;
        right: 0;
        top: 0;
        margin-top: 20px;
        margin-left: 28px;
        margin-bottom: 30px;
    }
}
.reviews__list-item-user img {
    width: 60px;
    height: 60px;
    object-fit: cover;
    grid-row: 1/3;
}
.reviews__list-item-user h4 {
    font-style: normal;
    font-weight: 600;
    font-size: 20px;
    line-height: 24px;
    color: #2C2C2C;
    align-self: end;
}
.reviews__list-item-user p {
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 19px;
    color: #777777;
}

.faq {
    margin-bottom: 110px;
}
@media (max-width: 991px) {
    .faq {
        margin-bottom: 50px;
    }
}
.faq-body {
    display: grid;
    grid-template-columns: 315px 1fr;
    gap: 50px;
}
@media (max-width: 991px) {
    .faq-body {
        grid-template-columns: 1fr;
        gap: 15px;
    }
}
@media (max-width: 991px) {
    .faq__title {
        display: flex;
        flex-direction: row-reverse;
        justify-content: flex-end;
        align-items: center;
        gap: 18px;
    }
}
.faq__title-text {
    font-style: normal;
    font-weight: 800;
    font-size: 32px;
    line-height: 34px;
    color: #2B3140;
}
@media (max-width: 991px) {
    .faq__title-text {
        font-size: 24px;
        line-height: 33px;
    }
}
@media (max-width: 991px) {
    .faq__title-img {
        max-width: 110px;
    }
}
.faq__list-item {
    user-select: none;
    cursor: pointer;
    background-color: #FFFCF1;
    padding: 40px 20px;
    border-top: 1px solid #F1F2F9;
    transition: background-color 0.3s ease;
}
@media (max-width: 991px) {
    .faq__list-item {
        padding: 30px 10px;
    }
}
.faq__list-item-title {
    position: relative;
    font-style: normal;
    font-weight: 700;
    font-size: 18px;
    line-height: 135%;
    color: #2B3140;
    transition: color 0.3s ease;
}
@media (max-width: 991px) {
    .faq__list-item-title {
        font-size: 16px;
    }
}
.faq__list-item-title span {
    font-style: normal;
    font-weight: 600;
    font-size: 18px;
    line-height: 135%;
    margin-right: 20px;
}
@media (max-width: 991px) {
    .faq__list-item-title span {
        font-size: 16px;
        margin-right: 10px;
    }
}
.faq__list-item-title img {
    position: absolute;
    width: 12px;
    height: 12px;
    right: 45px;
    top: 50%;
    transform: translateY(-50%);
    transition: transform 0.3s ease;
}
@media (max-width: 991px) {
    .faq__list-item-title img {
        display: none;
    }
}
.faq__list-item.active {
    background-color: #FFF7D9;
}
.faq__list-item.active .faq__list-item-title {
    color: #FC632B;
}
.faq__list-item.active .faq__list-item-title img {
    transform: translateY(-50%) rotate(45deg);
}
.faq__list-item p {
    margin-top: 28px;
    margin-left: 44px;
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 166%;
    color: #2B3140;
}
@media (max-width: 991px) {
    .faq__list-item p {
        margin-left: 34px;
        margin-top: 20px;
    }
}

.info {
    margin-bottom: 110px;
}
@media (max-width: 991px) {
    .info {
        margin-bottom: 50px;
    }
}
.info-body {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 26px;
}
@media (max-width: 991px) {
    .info-body {
        grid-template-columns: 1fr;
    }
}
.info__first {
    position: relative;
    height: 143px;
    background: #FF7442;
    border-radius: 30px;
}
@media (max-width: 991px) {
    .info__first {
        height: 260px;
        padding: 25px 20px;
    }
}
.info__first img {
    position: absolute;
    left: 10px;
    bottom: 0;
}
@media (max-width: 1199px) {
    .info__first img {
        height: 100px;
    }
}
@media (max-width: 991px) {
    .info__first img {
        height: 170px;
    }
}
.info__first p {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    max-width: 297px;
    font-style: normal;
    font-weight: 700;
    font-size: 22px;
    line-height: 29px;
    color: #FFFFFF;
}
@media (max-width: 991px) {
    .info__first p {
        position: relative;
        right: unset;
        top: unset;
        transform: none;
        font-size: 20px;
        line-height: 27px;
    }
}
.info__second {
    position: relative;
    height: 143px;
    background: #FF433D;
    border-radius: 30px;
}
@media (max-width: 991px) {
    .info__second {
        height: 260px;
        padding: 25px 20px;
    }
}
.info__second img {
    position: absolute;
    left: 0;
    bottom: 0;
}
@media (max-width: 1199px) {
    .info__second img {
        height: 100px;
    }
}
@media (max-width: 991px) {
    .info__second img {
        height: 170px;
    }
}
.info__second p {
    position: absolute;
    right: 24px;
    top: 50%;
    transform: translateY(-50%);
    max-width: 340px;
    font-style: normal;
    font-weight: 700;
    font-size: 22px;
    line-height: 29px;
    color: #FFFFFF;
}
@media (max-width: 1199px) {
    .info__second p {
        right: 10px;
        max-width: 280px;
    }
}
@media (max-width: 991px) {
    .info__second p {
        position: relative;
        right: unset;
        top: unset;
        transform: none;
        font-size: 20px;
        line-height: 27px;
    }
}

.stage {
    margin-bottom: 80px;
}
.stage-body {
    display: grid;
    grid-template-columns: 375px 1fr;
    gap: 60px;
}
@media (max-width: 991px) {
    .stage-body {
        grid-template-columns: 1fr;
        gap: 25px;
    }
}
.stage__info {
    height: fit-content;
    padding: 35px;
    background: linear-gradient(180deg, #FF3D3D 0%, #FFD42A 140.05%);
    border-radius: 40px;
}
.stage__info-title {
    margin-bottom: 20px;
    font-style: normal;
    font-weight: 700;
    font-size: 25px;
    line-height: 102%;
    color: #FFFFFF;
}
.stage__info-subtitle {
    max-width: 240px;
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 115%;
    color: #FFFFFF;
    margin-bottom: 35px;
}
.stage__info-sum {
    display: grid;
    grid-template-columns: 90px 1fr;
    font-style: normal;
    font-weight: 400;
    font-size: 22px;
    line-height: 102%;
    color: #FFFFFF;
    margin-bottom: 20px;
}
.stage__info-sum span {
    font-weight: 700;
}
.stage__info-date {
    display: grid;
    grid-template-columns: 90px 1fr;
    font-style: normal;
    font-weight: 400;
    font-size: 22px;
    line-height: 102%;
    color: #FFFFFF;
    margin-bottom: 35px;
}
.stage__info-date span {
    font-weight: 700;
}
.stage__info-text {
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 115%;
    color: #FFFFFF;
    margin-bottom: 25px;
}
.stage__info-progress {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.stage__info-progress::before {
    position: absolute;
    content: " ";
    display: block;
    width: 100%;
    height: 1px;
    background-color: #FFFFFF;
}
.stage__info-progress-item {
    position: relative;
    width: 24px;
    height: 24px;
    background: #FFFFFF;
    border: 1px solid #D7A400;
    border-radius: 50%;
}
.stage__info-progress-item.passed {
    background: #FFF600;
    border: 1px solid #FFF600;
}
.stage__info-progress-item.passed::after {
    display: block;
    content: "✔";
    font-size: 14px;
    color: #FF4D17;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
}
.stage__info-progress-item.active {
    border: 1px solid #FF4D17;
}
.stage__info-progress-item.active::after {
    display: block;
    content: " ";
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background-color: #FF4D17;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
}
.stage__form {
    padding: 50px 40px;
    background: #FDF3E1;
    border-radius: 40px;
}
@media (max-width: 991px) {
    .stage__form {
        padding: 30px 15px;
    }
}
.stage__form-title {
    font-style: normal;
    font-weight: 400;
    font-size: 17px;
    line-height: 115%;
    color: #000000;
    margin-bottom: 15px;
}
.stage__form-fio {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
}
@media (max-width: 1199px) {
    .stage__form-fio {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 991px) {
    .stage__form-fio {
        grid-template-columns: 1fr;
    }
}
.stage__form input[type=text], .stage__form input[type=email] {
    height: 45px;
    background: #FFFFFF;
    border-radius: 100px;
    border: none;
    outline: none;
    width: 100%;
    padding: 0 14px;
}
.stage__form-patronymic {
    margin-top: 25px;
    margin-bottom: 40px;
}
.stage__form-patronymic label {
    user-select: none;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 7px;
}
.stage__form-patronymic label::before {
    width: 16px!important;
    height: 16px!important;
    border: 1px solid #F2271C!important;
    color: #F2271C!important;
    font-size: 12px!important;
    border-radius: 5px!important;
    background: none!important;
    margin-right: 0!important;
}
.stage__form-gender {
    margin-bottom: 40px;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 25px;
}
.stage__form-gender input {
    display: none;
}
.stage__form-gender label {
    width: fit-content;
    user-select: none;
    font-style: normal;
    font-weight: 400;
    font-size: 15px;
    line-height: 115%;
    color: #000000;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 6px;
}
.stage__form-gender label::before {
    flex-shrink: 0;
    content: " "!important;
    position: relative!important;
    display: block!important;
    width: 13px!important;
    height: 13px!important;
    border-radius: 50%!important;
    background: none!important;
    border: 1px solid #000000!important;
}
.stage__form-gender input:checked + label::before {
    background-color: #F2271C!important;
    border: 1px solid #F2271C!important;
}
.stage__form-block {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin-bottom: 40px;
}
@media (max-width: 991px) {
    .stage__form-block {
        display: grid;
        grid-template-columns: 1fr;
        gap: 15px;
        margin-bottom: 35px;
    }
}
.stage__form-card {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 100px;
    margin-bottom: 32px;
}
.stage__form-card-item {
    height: fit-content;
    display: grid;
    grid-template-columns: 1fr;
}
.stage__form-card-item img {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    width: 55px;
    height: 55px;
    margin-bottom: 20px;
}
.stage__form-card-item p {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    font-style: normal;
    font-weight: 400;
    font-size: 15px;
    line-height: 131%;
    color: #000000;
}
.stage__form-card-item a {
    display: none;
}
.stage__form-card-btns {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 100px;
    margin-bottom: 35px;
}
.stage__form-card-btns a {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 56px;
    background: #F2271C;
    border-radius: 400px;
    font-style: normal;
    font-weight: 700;
    font-size: 15px;
    line-height: 20px;
    color: #FFFFFF;
    text-align: center;
}
@media (max-width: 1199px) {
    .stage__form-card {
        gap: 24px;
    }
    .stage__form-card-btns {
        gap: 24px;
    }
}

@media (max-width: 991px) {
    .stage__form-card-btns {
        display: none;
    }
    .stage__form-card {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .stage__form-card-item a {
        margin-top: 20px;
        width: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
        height: 56px;
        background: #F2271C;
        border-radius: 400px;
        font-style: normal;
        font-weight: 700;
        font-size: 15px;
        line-height: 20px;
        color: #FFFFFF;
        text-align: center;
    }
}
.stage__form-select {
    position: relative;
    user-select: none;
}
.stage__form-select-label {
    position: absolute;
    z-index: 1;
    left: 15px;
    top: 6px;
    font-style: normal;
    font-weight: 400;
    font-size: 10px;
    line-height: 115%;
    color: rgba(0, 0, 0, 0.5);
}
.stage__form-select-value {
    position: relative;
    overflow: hidden;
    cursor: pointer;
    display: block;
    height: 45px;
    background-color: #FFFFFF;
    border-radius: 100px;
}
.stage__form-select-value span {
    position: absolute;
    bottom: 8px;
    left: 15px;
    text-wrap: nowrap;
    font-style: normal;
    font-weight: 400;
    font-size: 15px;
    line-height: 115%;
    color: #000000;
}
.stage__form-select-value img {
    position: absolute;
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
}
.stage__form-select-list {
    z-index: 5;
    position: absolute;
    top: 47px;
    max-height: 150px;
    width: 100%;
    background-color: #FFF;
    border-radius: 20px;
    overflow-y: auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 15px;
    padding: 15px;
}
.stage__form-select-list::-webkit-scrollbar {
    display: none;
}
.stage__form-select-list-item {
    user-select: none;
    cursor: pointer;
    padding-bottom: 15px;
    border-bottom: 1px solid #D3D3D3;
    font-style: normal;
    font-weight: 400;
    font-size: 15px;
    line-height: 115%;
    color: rgba(0, 0, 0, 0.5);
}
.stage__form-select-list-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}
.stage__form-files-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}
.stage__form-files-header h1 {
    font-style: normal;
    font-weight: 400;
    font-size: 17px;
    line-height: 115%;
    color: #000000;
}
.stage__form-files-header span {
    font-style: normal;
    font-weight: 400;
    font-size: 17px;
    line-height: 115%;
    text-align: right;
    color: rgba(0, 0, 0, 0.5);
}
.stage__form-btns {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.stage__form-btns-submit {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 0 80px;
    height: 60px;
    background: #F2271C;
    border-radius: 400px;
    border: none;
    outline: none;
    user-select: none;
    cursor: pointer;
    font-style: normal;
    font-weight: 700;
    font-size: 15px;
    line-height: 20px;
    color: #FFFFFF;
}
.stage__form-btns-prev {
    user-select: none;
    cursor: pointer;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 8px;
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 22px;
}
.stage__form-mobile-prev {
    display: none;
}
@media (max-width: 991px) {
    .stage__form-btns-prev {
        display: none;
    }
    .stage__form-mobile-prev {
        width: fit-content;
        display: flex;
        justify-content: flex-start;
        align-items: center;
        gap: 8px;
        font-style: normal;
        font-weight: 400;
        font-size: 16px;
        line-height: 22px;
        margin-bottom: 26px;
    }
    .stage__form-btns {
        display: flex;
        justify-content: flex-start;
        align-items: flex-start;
    }
    .stage__form-btns-submit {
        width: 100%;
    }
}

.login {
    max-width: 550px;
    background: linear-gradient(180deg, #FF3D3D 0%, #FFD42A 112.34%);
    border-radius: 40px;
    margin: 40px auto 80px;
    width: fit-content;
    padding: 60px 100px;
}
@media (max-width: 991px) {
    .login {
        max-width: unset;
        width: 100%;
        margin: 25px 15px;
        padding: 30px 15px;
    }
}
.login-title {
    font-style: normal;
    font-weight: 400;
    font-size: 30px;
    line-height: 102%;
    text-align: center;
    letter-spacing: -0.01em;
    color: #FFFFFF;
    margin-bottom: 30px;
}
@media (max-width: 991px) {
    .login-title {
        font-size: 24px;
        margin-bottom: 15px;
    }
}

.login-error {
    text-align: center;
    width: 100%;
    margin-bottom: 24px;
    font-size: 18px;
    line-height: 110%;
    color: #FFF;
}

.login-input {
    width: 100%;
    height: 60px;
    background: #FFFFFF;
    border-radius: 100px;
    border: none;
    outline: none;
    padding: 20px;
    margin-bottom: 25px;
}
@media (max-width: 991px) {
    .login-input {
        width: calc(100% - 15px);
    }
}
.login__group {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
}
@media (max-width: 991px) {
    .login__group {
        gap: 15px;
    }
}
.login__group a {
    font-style: normal;
    font-weight: 400;
    font-size: 15px;
    line-height: 121%;
    text-align: center;
    color: #FFFFFF;
    margin-bottom: 30px;
}
.login__actions {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
}
@media (max-width: 991px) {
    .login__actions {
        grid-template-columns: 1fr;
    }
}
.login__actions-tbank {
    height: 52px;
    background: #ECECEC;
    border-radius: 100px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 6px;
    font-style: normal;
    font-weight: 600;
    font-size: 14px;
    line-height: 20px;
    color: #151311;
}
.login__actions-gos {
    height: 52px;
    background: #EBF0FF;
    border-radius: 100px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 7px;
    font-style: normal;
    font-weight: 600;
    font-size: 14px;
    line-height: 20px;
    color: #0D4CD3;
}
.login__actions-btn {
    width: 100%;
    grid-column: 1/3;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 48px;
    background: #F2271C;
    border-radius: 400px;
    border: none;
    outline: none;
    font-style: normal;
    font-weight: 700;
    font-size: 15px;
    line-height: 20px;
    text-align: center;
    color: #FFFFFF;
}
@media (max-width: 991px) {
    .login__actions-btn {
        grid-column: 1/2;
    }
}

.account-body {
    display: grid;
    grid-template-columns: 380px 1fr;
    gap: 50px;
}

.account__nav {
    height: fit-content;
    background: linear-gradient(180deg, #FF3D3D 0%, #FFD42A 140.05%);
    border-radius: 40px;
    padding: 40px 55px 60px;
    display: grid;
    grid-template-columns: 1fr;
    gap: 26px;
}

.account__nav-item {
    position: relative;
    width: fit-content;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 16px;
    font-style: normal;
    font-weight: 400;
    font-size: 20px;
    line-height: 102%;
    letter-spacing: -0.01em;
    color: #FFFFFF;
}

.account__nav-item:hover {
    color: #FFFFFF;
}

.account__nav-item img, .account__nav-item span {
    z-index: 1;
}

.account__nav-item.active::before {
    position: absolute;
    content: " ";
    display: block;
    width: 290px;
    height: 50px;
    background-color: #E44322;
    border-radius: 30px;
    left: -20px;
}

.account__order {
    height: fit-content;
    background: #FDF3E1;
    border-radius: 40px;
    padding: 35px 40px;
}

.account__order-title {
    font-style: normal;
    font-weight: 400;
    font-size: 22px;
    line-height: 115%;
    color: #000000;
    margin-bottom: 24px;
}

.account__order-reject {
    padding: 15px 20px;
    background: #FFFFFF;
    border-radius: 16px;
    display: grid;
    grid-template-columns: 1fr;
    gap: 25px;
    margin-bottom: 30px;
}

.account__order-reject-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.account__order-reject-item-text p:first-child {
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 102%;
    color: #130E21;
}

.account__order-reject-item-text .reject {
    margin-top: 12px;
    font-style: normal;
    font-weight: 400;
    font-size: 13px;
    line-height: 102%;
    color: #D20B00;
}

.account__order-reject-item-status {
    user-select: none;
    background: #A1A1A1;
    border-radius: 100px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 7px;
    height: 41px;
    width: 160px;
    font-style: normal;
    font-weight: 700;
    font-size: 13px;
    line-height: 125%;
    color: #FFFFFF;
}

.account__order-reject-item-repeat {
    cursor: pointer;
    user-select: none;
    background: #F2271C;
    border-radius: 100px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    gap: 7px;
    height: 41px;
    width: 160px;
    font-style: normal;
    font-weight: 700;
    font-size: 13px;
    line-height: 125%;
    color: #FFFFFF;
}

.account__order-reject-item-repeat:hover {
    color: #FFFFFF;
}

.account__order-reject-item-partner {
    user-select: none;
    background: #FFA129;
    border-radius: 100px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    gap: 7px;
    height: 41px;
    width: 160px;
    font-style: normal;
    font-weight: 700;
    font-size: 13px;
    line-height: 125%;
    color: #FFFFFF;
}

.account__order-reject-item-partner:hover {
    color: #FFFFFF;
}

.account__order-info {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    flex-wrap: wrap;
    gap: 18px;
    margin-bottom: 30px;
}

.account__order-info p {
    font-style: normal;
    font-weight: 400;
    font-size: 13px;
    line-height: 102%;
    color: #130E21;
}

.account__order-payinfo {
    max-width: 400px;
    font-style: normal;
    font-weight: 400;
    font-size: 12px;
    line-height: 125%;
    color: rgba(0, 0, 0, 0.5);
}

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

    .account__nav {
        display: none;
    }

    .account__order {
        border-radius: 20px;
        padding: 30px 15px;
    }

    .account__order-title {
        font-size: 18px;
        margin-bottom: 15px;
    }

    .account__order-reject {
        padding: 25px 15px;
        border-radius: 20px;
        gap: 35px;
    }

    .account__order-reject-item {
        display: grid;
        grid-template-columns: 1fr;
        justify-content: start;
        align-items: start;
        gap: 15px;
    }

    .account__order-reject-item-status, .account__order-reject-item-repeat, .account__order-reject-item-partner {
        width: 100%;
    }
}

.account__order-status {
    padding: 15px 20px;
    background: #FFFFFF;
    border-radius: 16px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.account__order-status-text p:first-child {
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 102%;
    color: #130E21;
}

.account__order-status-text .await {
    margin-top: 11px;
    font-style: normal;
    font-weight: 400;
    font-size: 13px;
    line-height: 102%;
    color: rgba(0, 0, 0, 0.5);
}

.account__order-status-btn {
    height: 41px;
    width: 165px;
    background: #99B390;
    border-radius: 100px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 7px;
    font-style: normal;
    font-weight: 700;
    font-size: 12px;
    line-height: 125%;
    color: #FFFFFF;
}

@media (max-width: 991px) {
    .account__order-status {
        display: grid;
        grid-template-columns: 1fr;
        gap: 15px;
    }
}

.account__order-approved {
    padding: 15px 20px;
    background: #FFFFFF;
    border-radius: 16px;
    display: grid;
    grid-template-columns: 1fr;
    margin-bottom: 30px;
}

.account__order-approved-text p:first-child {
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 102%;
    color: #130E21;
}

.account__order-approved-text .await {
    margin-top: 11px;
    font-style: normal;
    font-weight: 400;
    font-size: 13px;
    line-height: 102%;
    color: rgba(0, 0, 0, 0.5);
}

.account__order-approved-sms {
    margin-top: 25px;
    display: grid;
    grid-template-columns: 1fr;
}

.account__order-approved-sms-input {
    justify-self: center;
    outline: none;
    text-align: center;
    width: 100%;
    height: 40px;
    background: #FFFFFF;
    border: 1px solid #CFCFCF;
    border-radius: 100px;
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    line-height: 115%;
    margin-bottom: 12px;
}

.account__order-approved-sms-input:focus {
    border: 1px solid #F2271C;
}

.account__order-approved-sms-repeat {
    width: fit-content;
    justify-self: center;
    text-align: center;
    font-style: normal;
    font-weight: 300;
    font-size: 14px;
    line-height: 115%;
    text-decoration-line: underline;
    color: #000000;
}

.account__order-approved-sms-sbp {
    margin-bottom: 24px;
}

.account__order-approved-sms-sbp-border {
    border: 1px solid #CFCFCF;
}

.account__order-approved-sms-confirm {
    margin-top: 15px;
    height: 40px;
    background: #F2271C;
    border-radius: 100px;
    font-style: normal;
    font-weight: 700;
    font-size: 16px;
    line-height: 125%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
}

.account__order-approved-sms-confirm:hover {
    color: #FFF;
}

.account__order-issued {
    padding: 15px 20px;
    background: #FFFFFF;
    border-radius: 16px;
    display: grid;
    grid-template-columns: 1fr;
    gap: 25px;
    margin-bottom: 30px;
}

.account__order-issued-item {
    display: grid;
    grid-template-columns: 1fr 70px 115px;
    gap: 20px;
}

.account__order-issued-item-text p:first-child {
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 102%;
    color: #130E21;
}

.account__order-issued-item-text p.issued {
    margin-top: 10px;
    font-style: normal;
    font-weight: 400;
    font-size: 13px;
    line-height: 102%;
    color: rgba(0, 0, 0, 0.5);
}

.account__order-issued-item-input {
    justify-self: flex-end;
    background: #F6F6F6;
    border-radius: 10px;
    border: none;
    outline: none;
    max-width: 70px;
    font-style: normal;
    font-weight: 400;
    font-size: 18px;
    line-height: 115%;
    text-align: center;
    color: #000000;
    height: 50px;
}

.account__order-issued-item-btn {
    background: #F2271C;
    border-radius: 100px;
    border: none;
    outline: none;
    font-style: normal;
    font-weight: 700;
    font-size: 12px;
    line-height: 125%;
    color: #FFFFFF;
    height: 50px;
}

.account__order-issued-item-btn:hover {
    color: #FFF;
}

@media (max-width: 991px) {
    .account__order-issued-item {
        display: grid;
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .account__order-issued-item-input {
        max-width: 100%;
        width: 100%;
    }
}

.account-menu {
    background: linear-gradient(180deg, #FF3D3D 9.58%, #FFD42A 119.39%);
}

.account-menu-logout {
    max-width: 320px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    margin-top: 60px;
    margin-left: 50%;
    transform: translateX(-50%);
    width: calc(100% - 70px);
    background: transparent;
    border: 2px solid #FFF;
    border-radius: 183px;
    height: 52px;
    font-style: normal;
    font-weight: 800;
    font-size: 22px;
    line-height: 31px;
    color: #FFFFFF;
}

.history-title {
    font-style: normal;
    font-weight: 400;
    font-size: 22px;
    line-height: 115%;
    color: #000000;
    margin-bottom: 20px;
}

.history__list {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

.history__list-item {
    background: #FDF3E1;
    border-radius: 40px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    column-gap: 20px;
    row-gap: 10px;
    padding: 35px;
}

.history__list-item-data {
    background: #FFFFFF;
    border-radius: 20px;
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 102%;
    color: #130E21;
    text-align: center;
    padding: 15px 10px;
}

.history__list-item-data span {
    margin-left: 4px;
}

@media (max-width: 991px) {
    .history__list-item {
        border-radius: 20px;
        grid-template-columns: 1fr;
        row-gap: 15px;
        padding: 30px 15px;
    }

    .history__list-item-data {
        font-size: 14px;
        border-radius: 15px;
    }
}

.docs {
    background: #FDF3E1;
    border-radius: 40px;
    padding: 40px 50px;
    height: fit-content;
}

.docs-title {
    font-style: normal;
    font-weight: 400;
    font-size: 22px;
    line-height: 115%;
    color: #000000;
    margin-bottom: 18px;
}

.docs__list {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
}

.docs__list-item {
    padding: 13px 30px;
    background: #FFFFFF;
    border-radius: 20px;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 15px;
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 102%;
    color: #130E21;
}

@media (max-width: 991px) {
    .docs {
        border-radius: 20px;
        padding: 30px 15px;
    }

    .docs-title {
        font-size: 18px;
    }

    .docs__list {
        gap: 15px;
    }

    .docs__list-item {
        border-radius: 15px;
    }
}

.data {
    background: #FDF3E1;
    border-radius: 40px;
    padding: 40px 50px;
    height: fit-content;
}

.data-title {
    font-style: normal;
    font-weight: 400;
    font-size: 22px;
    line-height: 115%;
    color: #000000;
    margin-bottom: 18px;
}

.data__list {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
    margin-bottom: 40px;
}

.data__list-item {
    padding: 15px 30px;
    background: #FFFFFF;
    border-radius: 20px;
    gap: 10px;
    display: grid;
    grid-template-columns: 200px 1fr;
}

.data__list-item-label {
    font-style: normal;
    font-weight: 300;
    font-size: 16px;
    line-height: 102%;
    color: #130E21;
}

.data__list-item-value {
    font-style: normal;
    font-weight: 300;
    font-size: 16px;
    line-height: 102%;
    color: #130E21;
}

.data-link, .data-link:hover {
    font-style: normal;
    font-weight: 400;
    font-size: 15px;
    line-height: 102%;
    letter-spacing: 0.04em;
    text-decoration-line: underline;
    color: #F2271C;
}

@media (max-width: 991px) {
    .data {
        border-radius: 20px;
        padding: 30px 15px;
    }

    .data-title {
        font-size: 18px;
    }

    .data__list-item {
        grid-template-columns: 1fr;
        gap: 8px;
        border-radius: 15px;
    }
}

.cards {
    background: #FDF3E1;
    border-radius: 40px;
    padding: 40px 50px;
    height: fit-content;
}

.cards-title {
    font-style: normal;
    font-weight: 400;
    font-size: 22px;
    line-height: 115%;
    color: #000000;
    margin-bottom: 18px;
}

.cards__list {
    background-color: #FFFFFF;
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    border-radius: 20px;
    padding: 30px 40px;
    margin-bottom: 40px;
}

.cards__list-item {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 25px;
}

.cards__list-item img {
    width: 55px;
    height: 55px;
}

.cards__list-item-info {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
}

.cards__list-item-info-pan {
    font-style: normal;
    font-weight: 400;
    font-size: 20px;
    line-height: 102%;
    letter-spacing: 0.04em;
    color: #130E21;
}

.cards__list-item-info-status {
    font-style: normal;
    font-weight: 500;
    font-size: 14px;
    line-height: 102%;
    color: #9A9A9A;
    width: fit-content;
}

.cards-link, .cards-link:hover {
    font-style: normal;
    font-weight: 400;
    font-size: 15px;
    line-height: 102%;
    letter-spacing: 0.04em;
    text-decoration-line: underline;
    color: #F2271C;
}

@media (max-width: 991px) {
    .cards {
        border-radius: 20px;
        padding: 30px 15px;
    }

    .cards-title {
        font-size: 18px;
    }

    .cards__list {
        padding: 30px 15px;
    }

    .cards__list-item {
        gap: 10px;
    }

    .cards__list-item-info-pan {
        font-size: 15px;
    }

    .cards__list-item-info-status {
        font-size: 12px;
    }
}

.account__calc {
    background: #FDF3E1;
    border-radius: 40px;
    padding: 40px 35px;
}

.account__calc-title {
    font-style: normal;
    font-weight: 400;
    font-size: 22px;
    line-height: 115%;
    color: #000000;
    margin-bottom: 25px;
}

.account__calc-phone {
    grid-column: 1/3;
}

.account__calc-total {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 15px;
}

.account__calc-total-phone-input {
    height: 52px;
    background: #FFFFFF;
    border-radius: 100px;
    width: 100%;
    border: none;
    outline: none;
    padding: 0 10px;
}

.account__calc-total-info {
    display: grid;
    grid-template-columns: 1fr .5fr;
    gap: 8px;
}

.account__calc-total-text {
    font-style: normal;
    font-weight: 400;
    font-size: 12px;
    line-height: 17px;
    color: #130E21;
}

.account__calc-total-value {
    font-style: normal;
    font-weight: 700;
    font-size: 14px;
    line-height: 20px;
    color: #130E21;
}

.account__calc-btn {
    border: none;
    outline: none;
    width: 260px;
    height: 58px;
    background: #F2271C;
    border-radius: 100px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-style: normal;
    font-weight: 700;
    font-size: 16px;
    line-height: 24px;
    color: #FFFFFF;
}

@media (max-width: 991px) {
    .account__calc {
        border-radius: 20px;
        padding: 30px 15px;
    }

    .account__calc-total-info {
        grid-template-columns: 1fr;
    }

    .account__calc-btn {
        width: 100%;
    }

    .account__calc-total {
        grid-template-columns: 1fr;
    }
}

.calc__form-text {
    color: #FF473E;
    font-size: 18px;
    text-align: center;
}

@media (max-width: 991px) {
    .calc__form-text {
        font-size: 14px;
        text-align: center;
    }
}

.account__no-order-title {
    font-style: normal;
    font-weight: 400;
    font-size: 22px;
    line-height: 115%;
    color: #000000;
    margin-bottom: 24px;
    text-align: center;
}

.account__no-order-btn {
    margin: 0 auto;
    width: 200px;
    height: 57px;
    background: #F2271C;
    border-radius: 100px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-style: normal;
    font-weight: 700;
    font-size: 14px;
    line-height: 24px;
    color: #FFFFFF;
    border: none;
    outline: none;
}