@charset "UTF-8";
* {
    padding: 0;
    margin: 0;
    border: 0
}

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

:focus, :active {
    outline: none
}

a:focus, a:active {
    outline: none
}

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

html, body {
    width: 100%;
    font-size: 100%;
    line-height: 1;
    font-size: 14px;
    -ms-text-size-adjust: 100%;
    -moz-text-size-adjust: 100%;
    -webkit-text-size-adjust: 100%
}

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

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

button {
    cursor: pointer
}

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

a, a:visited, a:hover {
    text-decoration: none
}

ul li {
    list-style: none
}

img {
    vertical-align: top
}

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

body {
    font-family: Montserrat;
    padding-top: 70px;
    display: flex;
    flex-direction: column;
    width: 100%;
    min-height: 100dvh
}

body main {
    flex-grow: 1
}

body main.h-full {
    display: flex;
    flex-direction: column
}

body.noScroll {
    overflow: hidden
}

.container {
    max-width: 1450px;
    width: 100%;
    margin: 0 auto;
    padding: 0 15px
}

.btn {
    border-radius: 5px;
    background: #9d83b9;
    font-size: 20px;
    width: 100%;
    padding: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    font-size: 22px;
    font-style: normal;
    font-weight: 500;
    line-height: normal
}

.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #00000080;
    z-index: 1;
    opacity: 0;
    pointer-events: none;
    transition: .3s
}

.overlay.active {
    opacity: 1;
    pointer-events: all
}

.section-title {
    color: #323232;
    font-size: 25px;
    font-style: normal;
    font-weight: 700;
    line-height: normal
}

@media (min-width: 1024px) {
    .section-title {
        font-size: 30px
    }
}

.imgs-bg-sm {
    position: relative
}

.imgs-bg-sm .f-green, .imgs-bg-sm .f-orange, .imgs-bg-sm .f-purple {
    position: absolute;
    z-index: -1
}

.imgs-bg-sm.cancel__container .f-green {
    left: 0;
    bottom: -220px
}

.imgs-bg-sm.cancel__container .f-orange {
    display: none
}

.imgs-bg-sm.cancel__container .f-purple {
    right: 20px;
    bottom: -300px
}

@media (min-width: 1024px) {
    .imgs-bg-sm.cancel__container .f-orange {
        display: block
    }

    .imgs-bg-sm .f-green {
        left: -200px;
        top: 20%
    }

    .imgs-bg-sm .f-orange {
        right: -100px;
        top: 0
    }

    .imgs-bg-sm .f-purple {
        bottom: -300px;
        right: 40%
    }
}

.header {
    background: #fff;
    overflow: hidden;
    position: fixed;
    z-index: 9;
    top: 0;
    left: 0;
    width: 100%
}

.header.active {
    height: 70dvh
}

.header.active .header__logo {
    opacity: 0;
    pointer-events: none
}

.header.active .header__content {
    top: 0;
    position: relative
}

.header.active .header__content .header__logo {
    opacity: 1;
    pointer-events: all
}

.header.active .header__content ul li a.header__btn-list {
    background: #fff;
    color: #9d83b9;
    border: 1px solid #9D83B9
}

.header__container {
    height: 100%
}

.header__content-mob {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    position: relative;
    z-index: 1;
    background: #fff;
    padding: 15px 0
}

.header__toggle {
    display: flex;
    flex-direction: column;
    gap: 5px
}

.header__toggle span {
    display: block;
    width: 20px;
    height: 2px;
    background-color: #9d83b9
}

.header__logo {
    width: 164px;
    height: 40px;
    display: block
}

.header__logo img {
    width: 100%;
    height: 40px;
    object-fit: contain;
    transition: .3s
}

.header__content {
    display: flex;
    flex-direction: column;
    height: calc(65dvh - 70px);
    justify-content: space-between;
    align-items: center;
    position: absolute;
    z-index: 0;
    top: -100vh;
    transition: .3s;
    width: 100%;
    max-width: 450px;
    left: 50%;
    transform: translate(-50%)
}

.header__content ul {
    width: 100%
}

.header__content ul li {
    width: 100%;
    text-align: center
}

.header__content ul li a {
    color: #323232;
    text-align: center;
    font-size: 23px;
    font-style: normal;
    font-weight: 400;
    line-height: normal
}

.header__content ul li + li {
    margin-top: 54px
}

@media (min-width: 1024px) {
    .header__content-mob {
        display: none
    }

    .header__content {
        position: relative;
        top: 0;
        flex-direction: row;
        max-width: 100%;
        height: 70px
    }

    .header__content ul {
        width: max-content;
        display: flex;
        align-items: center
    }

    .header__content ul li a.header__btn-list {
        background: #9d83b9;
        color: #fff;
        height: 47px
    }

    .header__content ul li + li {
        margin-left: 66px;
        margin-top: 0
    }

    .header__btn {
        display: none
    }
}

.footer__content {
    width: calc(100% + 30px);
    transform: translate(-15px);
    display: flex;
    flex-direction: column;
    gap: 21px;
    background: #323232;
    border-radius: 40px 40px 0 0;
    padding: 30px
}

.footer__top {
    display: flex;
    flex-direction: column;
    gap: 21px
}

.footer__top ul li a {
    color: #fff;
    font-size: 17px;
    font-style: normal;
    font-weight: 400;
    line-height: 25px
}

.footer__logo {
    width: 260px;
    height: 82px
}

.footer__logo img {
    width: 100%;
    height: 82px;
    object-fit: contain
}

.footer__bottom {
    display: flex;
    flex-direction: column;
    gap: 21px
}

.footer__text {
    color: #fff;
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    line-height: 20px
}

.footer__text a {
    color: #fff;
    font-weight: 700;
    text-decoration: underline;
    text-underline-offset: 2px
}

@media (min-width: 1024px) {
    .footer {
        padding-bottom: 52px
    }

    .footer__content {
        padding: 40px 20px;
        border-radius: 20px;
        width: 100%;
        transform: translate(0);
        gap: 55px
    }

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

    .footer__top ul {
        display: flex;
        gap: 50px
    }

    .footer__bottom {
        flex-direction: row;
        justify-content: space-between;
        gap: 50px
    }

    .footer__bottom .footer__text {
        max-width: 736px;
        width: 100%;
        font-size: 12px;
        line-height: 20px
    }
}

.hero {
    padding: 30px 0
}

.hero__content {
    display: flex;
    flex-direction: column;
    gap: 12px
}

.hero__title {
    color: #323232;
    font-size: 26px;
    font-style: normal;
    font-weight: 800;
    line-height: 30px
}

.hero__text {
    color: #323232;
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: 25px
}

.hero__img {
    width: 100%
}

.hero__img img {
    object-fit: cover;
    width: 100%;
    border-radius: 40px
}

@media (min-width: 1024px) {
    .hero__content {
        position: relative;
        padding: 28px;
        align-items: flex-start
    }

    .hero__title {
        font-size: 37px;
        font-style: normal;
        font-weight: 800;
        line-height: 36px;
        position: relative;
        z-index: 2
    }

    .hero__text {
        position: relative;
        z-index: 2;
        font-size: 23px;
        font-style: normal;
        font-weight: 400;
        line-height: 30px
    }

    .hero__img {
        position: absolute;
        top: 0;
        right: 0;
        width: 100%;
        height: 100%
    }

    .hero__img img {
        width: 100%;
        height: 100%
    }
}

.hero-form {
    display: flex;
    flex-direction: column;
    gap: 13px;
    max-width: 595px;
    width: 100%;
    margin: 0 auto
}

.hero-form__title {
    color: #323232;
    font-size: 25px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    margin-bottom: 10px
}

.hero-form__range-item {
    display: flex;
    flex-direction: column;
    gap: 18px;
    width: 100%
}

.hero-form__range-item-head {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: flex-start
}

.hero-form__range-item-head p {
    color: #000;
    font-size: 17px;
    font-style: normal;
    font-weight: 700
}

.hero-form__range-item-head p span {
    color: #9d83b9
}

.hero-form__range-item-bottom {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: flex-start
}

.hero-form__range-item-bottom p, .hero-form__range-item-bottom span {
    color: #000;
    font-size: 17px;
    font-style: normal;
    font-weight: 700
}

.hero-form__range-item-bottom span {
    opacity: .5;
    font-weight: 400
}

.hero-form__content {
    margin-top: 10px;
    display: flex;
    flex-direction: column;
    gap: 24px
}

.hero-form__content p {
    color: #000;
    font-size: 16px;
    font-weight: 700
}

.hero-form__content .btn {
    height: 70px
}

@media (min-width: 1024px) {
    .hero-form {
        position: relative;
        z-index: 2;
        padding: 20px;
        border-radius: 20px;
        background: #fff;
        margin: 0
    }
}

[type=range] {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background: transparent;
    border-radius: 100px;
    height: 10px;
    cursor: pointer;
    width: 100%;
    position: relative
}

[type=range]::-webkit-slider-runnable-track {
    height: 10px;
    border-radius: 100px;
    background: linear-gradient(to right, #ADCE51 var(--progress-width), #E9E9E9 var(--progress-width))
}

[type=range]::-webkit-slider-thumb {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    width: 26px;
    height: 26px;
    background-color: #adce51;
    border-radius: 50%;
    margin-top: -8px;
    position: relative;
    z-index: 2
}

[type=range]::-moz-range-track {
    height: 10px;
    border-radius: 100px;
    background-color: #e9e9e9
}

[type=range]::-moz-range-progress {
    background-color: #adce51;
    height: 10px;
    border-radius: 100px
}

[type=range]:focus {
    outline: none
}

[type=range]:focus::-webkit-slider-thumb {
    outline: 2px solid #ADCE51;
    outline-offset: 1px
}

[type=range]:focus::-moz-range-thumb {
    outline: 2px solid #ADCE51;
    outline-offset: 1px
}

.why-us {
    padding: 10px 0
}

.why-us__subtitle {
    margin-top: 15px;
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    color: #323232
}

.why-us__content {
    margin-top: 30px;
    display: flex;
    flex-direction: column;
    gap: 19px
}

.why-us__col {
    display: flex;
    flex-direction: column;
    gap: 19px
}

.why-us__item {
    overflow: hidden;
    height: max-content;
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 22px;
    align-items: center;
    text-align: center;
    border-radius: 20px;
    background: #f4f4f4;
    position: relative
}

.why-us__item.green {
    background: #dfebc1
}

.why-us__item.img-bg {
    min-height: 346px;
    justify-content: flex-end
}

.why-us__item.img-bg .why-us__item-icon {
    background: #9d83b9;
    color: #fff;
    position: relative;
    z-index: 2
}

.why-us__item.img-bg p {
    position: relative;
    z-index: 2;
    color: #fff
}

.why-us__item.img-bg img {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    object-fit: cover
}

.why-us__item p {
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    color: #323232
}

.why-us__item p span {
    font-weight: 700
}

.why-us__item-icon {
    border-radius: 100px;
    border: 2px solid #9D83B9;
    padding: 10px;
    width: 73px;
    min-width: 73px;
    height: 73px;
    align-items: center;
    justify-content: center;
    display: flex;
    font-size: 29px;
    font-style: normal;
    font-weight: 700;
    color: #9d83b9
}

@media (min-width: 1024px) {
    .why-us {
        padding: 50px 0
    }

    .why-us__content {
        flex-direction: row;
        gap: 30px;
        height: 600px
    }

    .why-us__content .why-us__col:nth-child(1) .why-us__item {
        height: 311px
    }

    .why-us__content .why-us__col:nth-child(1) .why-us__item + .why-us__item {
        height: 262px
    }

    .why-us__content .why-us__col:nth-child(2) .why-us__item {
        height: 246px
    }

    .why-us__content .why-us__col:nth-child(2) .why-us__item + .why-us__item {
        height: 335px
    }

    .why-us__col {
        width: 100%;
        height: 100%;
        flex-grow: 1
    }

    .why-us__item {
        height: 100%;
        flex-grow: 1;
        justify-content: center
    }

    .why-us__item.img-bg {
        padding-bottom: 40px
    }

    .why-us__item p {
        font-size: 22px
    }
}

.steps {
    padding: 20px 0
}

.steps__content {
    margin: 15px 0;
    display: flex;
    flex-direction: column;
    gap: 15px
}

.steps__item {
    padding: 10px 20px 20px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: center;
    border-radius: 20px;
    background: #dfebc1
}

.steps__item span {
    color: #323232;
    text-align: center;
    font-size: 24px;
    font-style: normal;
    font-weight: 700;
    line-height: normal
}

.steps__item p {
    color: #323232;
    text-align: center;
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: normal
}

.steps__item:nth-child(2) {
    background: #dbcfe8
}

.steps__item:nth-child(3) {
    background: #9d83b9
}

.steps__item:nth-child(3) span, .steps__item:nth-child(3) p {
    color: #fff
}

.steps__target {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 15px;
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    color: #323232;
    text-align: center
}

.steps__target svg {
    width: 100px;
    height: 100px
}

@media (min-width: 1024px) {
    .steps {
        padding: 50px 0
    }

    .steps__content {
        margin: 50px 0;
        flex-direction: row;
        gap: 20px
    }

    .steps__item {
        height: 100%;
        min-height: 505px;
        justify-content: center;
        width: 100%
    }

    .steps__target {
        flex-direction: row;
        gap: 20px
    }
}

.faq {
    padding: 70px 0
}

.faq__content {
    margin-top: 50px;
    display: flex;
    width: 100%;
    flex-direction: column;
    gap: 16px
}

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

.faq-item {
    width: 100%;
    border-radius: 24px;
    transition: .3s;
    background: #f4f4f4
}

.faq-item .head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 30px 14px;
    transition: .3s;
    cursor: pointer
}

.faq-item .head p {
    font-size: 20px;
    font-style: normal;
    font-weight: 700;
    line-height: normal
}

.faq-item .content {
    transition: .3s;
    padding: 0 14px;
    height: 0px;
    overflow: hidden;
    visibility: hidden;
    color: #505050;
    font-size: 21px;
    font-style: normal;
    font-weight: 400;
    line-height: 32px
}

.faq-item .close {
    position: relative;
    width: 16px;
    min-width: 16px;
    height: 16px;
    transition: .3s
}

.faq-item .close span {
    transition: .3s
}

.faq-item .close span:nth-child(1) {
    position: absolute;
    width: 2px;
    height: 16px;
    background: #9d83b9;
    top: 0;
    left: 11px
}

.faq-item .close span:nth-child(2) {
    position: absolute;
    width: 2px;
    height: 16px;
    background: #9d83b9;
    top: 0;
    left: 11px;
    transform: rotate(90deg)
}

.faq-item.active {
    background: #adce51
}

.faq-item.active .head {
    padding-bottom: 0
}

.faq-item.active .content {
    padding: 30px 14px;
    height: auto;
    visibility: visible
}

.faq-item.active .close {
    transform: rotate(135deg)
}

.faq-item.active .close span:nth-child(1) {
    background: #323232
}

.faq-item.active .close span:nth-child(2) {
    background: #323232
}

@media (min-width: 1024px) {
    .faq-item .head {
        padding: 30px
    }

    .faq-item .content {
        padding: 0 30px
    }

    .faq-item.active .head {
        padding-bottom: 0
    }

    .faq-item.active .content {
        padding: 30px
    }
}

.reviews {
    padding: 20px 0;
    overflow: hidden
}

.reviews__container {
    position: relative
}

.reviews__content {
    display: none;
    justify-content: space-between;
    gap: 10px;
    position: relative;
    z-index: 2
}

.reviews__col {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 16px
}

.reviews__col:nth-child(1) {
    margin-top: 130px
}

.reviews__col:nth-child(2) {
    margin-top: 60px
}

.reviews__col:nth-child(4) {
    margin-top: 270px
}

.reviews__item {
    border-radius: 20px;
    background: #f4f4f4;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding: 10px 20px
}

.reviews__swiper {
    position: relative;
    z-index: 2;
    margin-top: 20px;
    padding-bottom: 60px !important
}

.reviews__swiper-btns {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-top: 40px
}

.reviews__swiper-btns .swiper-button-next:after, .reviews__swiper-btns .swiper-button-prev:after {
    font-size: 20px !important
}

.reviews__swiper-btns .swiper-button-next, .reviews__swiper-btns .swiper-button-prev, .reviews__swiper-btns .swiper-pagination {
    position: relative;
    z-index: 2;
    left: auto !important;
    right: auto !important;
    top: auto !important;
    bottom: auto !important;
    width: max-content !important;
    height: 30px;
    margin-top: 0 !important;
    color: #9d83b9 !important
}

.reviews__swiper-btns .swiper-pagination {
    color: #323232 !important;
    font-size: 25px;
    font-style: normal;
    font-weight: 400;
    line-height: 30px
}

.reviews .section-title {
    position: relative;
    z-index: 2;
    max-width: 70%
}

.reviews .f-green {
    display: none
}

.reviews .f-orange {
    width: 70px;
    height: 51px;
    position: absolute;
    top: -15px;
    right: 15px
}

.reviews .f-orange img {
    width: 100%;
    height: 51px;
    object-fit: contain
}

.reviews .f-purple {
    display: none
}

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

    .reviews__content {
        display: flex
    }

    .reviews__swiper {
        display: none !important
    }

    .reviews__item {
        gap: 40px
    }

    .reviews .f-green {
        display: block;
        position: absolute;
        bottom: -20px;
        right: -40px
    }

    .reviews .f-orange {
        width: 240px;
        height: 176px;
        position: absolute;
        top: 0;
        right: -40px
    }

    .reviews .f-orange img {
        width: 100%;
        height: 176px;
        object-fit: contain
    }

    .reviews .f-purple {
        display: block;
        position: absolute;
        bottom: 70px;
        left: -70px
    }
}

.review__item-text {
    font-size: 21px;
    font-style: normal;
    font-weight: 400;
    line-height: 26px;
    color: #000
}

.review__item-author {
    display: flex;
    align-items: center;
    gap: 20px
}

.review__item-author img {
    width: 64px;
    height: 64px;
    min-width: 64px;
    object-fit: cover;
    border-radius: 100%
}

.review__item-author p {
    font-size: 21px;
    font-style: normal;
    font-weight: 600;
    line-height: 50px;
    color: #000
}

.recomended {
    padding: 13px 0 86px;
    background: #e9eaff
}

.recomended__title {
    color: #323232;
    font-size: 27px;
    font-style: normal;
    font-weight: 800;
    line-height: 36px
}

.recomended__list {
    margin-top: 20px;
    display: grid;
    grid-template-columns:repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px
}

.recomended__item {
    display: flex;
    flex-direction: column;
    gap: 19px;
    padding: 14px 20px;
    border-radius: 10px;
    background: #fff;
    overflow: hidden
}

.recomended__item-img {
    width: 175px;
    height: 80px
}

.recomended__item-img img {
    width: 100%;
    height: 80px;
    object-fit: contain
}

.recomended__item-content {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 15px
}

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

.recomended__item-content div p {
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    color: #323232
}

.recomended__item-content div span {
    border-radius: 5px;
    display: block;
    padding: 10px;
    background: #65558f1f;
    color: #242f4b;
    font-size: 20px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    text-align: end
}

.recomended__item-btn {
    border-radius: 6px;
    background: #8dc000;
    box-shadow: 0 4px 4px #394d1599;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 14px 24px;
    height: 74px;
    font-size: 23px;
    font-style: normal;
    font-weight: 500;
    color: #fff
}

.recomended__item-text {
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    color: #606060;
    text-align: center
}

@media (min-width: 1024px) {
    .recomended {
        padding: 40px 0 60px
    }

    .recomended__list {
        grid-template-columns:repeat(auto-fill, minmax(400px, 1fr))
    }
}

.microcreditors {
    padding: 40px 0 60px
}

.microcreditors__item {
    display: flex;
    gap: 30px;
    flex-direction: column;
    border-radius: 15px;
    border: 1px solid #DDD;
    overflow: hidden;
    background: #fff
}

.microcreditors__item span {
    display: block;
    padding: 0 10px;
    font-size: 13px;
    color: #323232;
    font-style: normal;
    font-weight: 400;
    line-height: 14px;
    text-align: center
}

.microcreditors__item span:first-child {
    background: #eaeaea;
    color: #323232;
    text-align: center;
    font-size: 20px;
    font-style: normal;
    font-weight: 700;
    line-height: 14px;
    height: 57px;
    display: flex;
    align-items: center;
    justify-content: center
}

.microcreditors__item span:last-child {
    padding-bottom: 15px
}

.form {
    padding: 100px 0
}

.form h1 {
    color: #323232;
    font-family: Montserrat;
    font-size: 27px;
    font-style: normal;
    font-weight: 600;
    line-height: normal
}

.form__container {
    max-width: 970px
}

.form__content {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 20px
}

.form__grid {
    display: flex;
    flex-direction: column;
    gap: 20px
}

.form .btn {
    height: 74px;
    margin: 0 auto;
    max-width: 550px
}

@media (min-width: 768px) {
    .form h1 {
        font-size: 40px;
        font-style: normal;
        font-weight: 600
    }

    .form__grid {
        display: grid;
        grid-template-columns:1fr 1fr
    }

    .form .btn {
        margin-top: 40px
    }
}

.input-item {
    display: flex;
    flex-direction: column;
    gap: 2px
}

.input-item input {
    border-radius: 10px;
    background: #f0f0f0;
    padding: 10px;
    color: #000;
    font-size: 22px;
    font-style: normal;
    font-weight: 400;
    line-height: normal
}

.input-item span {
    display: none;
    color: red;
    font-size: 12px
}

.input-item.error span {
    display: block
}

.checbox {
    display: flex;
    position: relative;
    align-items: flex-start
}

.checbox input {
    display: none
}

.checbox:before {
    content: "";
    display: block;
    width: 25px;
    min-width: 25px;
    height: 25px;
    border-radius: 5px;
    border: 1px solid #000;
    margin-right: 10px;
    cursor: pointer
}

.checbox p {
    color: #323232;
    font-size: 21px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    cursor: pointer
}

.checbox p a, .checbox p span {
    color: #9d83b9;
    text-decoration: underline;
    font-weight: 500;
    cursor: pointer
}

.checbox:has(input:checked):before {
    background-color: #adce51;
    border: 1px solid #ADCE51
}

.checbox:has(input:checked):after {
    content: "✓";
    display: block;
    width: 25px;
    min-width: 25px;
    height: 25px;
    border-radius: 5px;
    color: #f0f0f0;
    position: absolute;
    text-align: center;
    left: 0;
    top: 5px;
    z-index: 2;
    cursor: pointer
}

.modal {
    position: fixed;
    z-index: 99;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #0f051a99;
    display: none;
    justify-content: center;
    align-items: center
}

.modal.active {
    display: flex
}

.modal__content {
    background: #fff;
    border-radius: 20px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 30px;
    max-width: 900px;
    width: 100%;
    position: relative
}

.modal__close {
    position: absolute;
    top: 10px;
    right: 20px;
    cursor: pointer
}

.modal__title {
    color: #323232;
    text-align: center;
    font-size: 25px;
    font-style: normal;
    font-weight: 700;
    line-height: normal
}

.modal__text {
    color: #323232;
    text-align: center;
    font-size: 19px;
    font-style: normal;
    font-weight: 400;
    line-height: 26px
}

.modal__text a, .modal__text span {
    font-weight: 700;
    text-decoration: underline;
    color: #323232
}

.modal .btn {
    height: 70px;
    margin: 0 auto;
    max-width: 360px
}

@media (min-width: 1024px) {
    .modal__content {
        padding: 50px;
        gap: 50px
    }

    .modal__title {
        font-size: 30px
    }

    .modal__text {
        font-size: 21px;
        line-height: 33px
    }
}

.cancel {
    padding: 20px 0 100px;
    height: 100%;
    overflow: hidden;
    flex-grow: 1
}

.cancel .bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1
}

.cancel .bg img {
    width: 100%;
    height: 100%;
    object-fit: cover
}

.cancel h1 {
    color: #323232;
    font-size: 27px;
    font-style: normal;
    font-weight: 600;
    line-height: normal
}

.cancel p {
    color: #323232;
    font-size: 19px;
    font-style: normal;
    font-weight: 400
}

.cancel__content {
    max-width: 900px;
    margin: 0 auto;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 15px
}

.cancel form {
    margin-top: 20px;
    display: flex;
    flex-direction: column;
    gap: 80px;
    align-items: center
}

.cancel form .btn {
    max-width: 550px;
    height: 74px
}

.cancel__inputs {
    display: flex;
    gap: 15px;
    flex-direction: column;
    width: 100%
}

.cancel__inputs .input-item {
    width: 100%
}

@media (min-width: 1024px) {
    .cancel {
        padding: 150px 0
    }

    .cancel__inputs {
        flex-direction: row
    }

    .cancel h1 {
        font-size: 40px
    }

    .cancel p {
        font-size: 21px
    }
}

.cancel .succes-block {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px
}

.cancel .succes-block h2 {
    color: #323232;
    font-size: 40px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    text-align: center
}

.cancel .succes-block p {
    max-width: 700px;
    text-align: center;
    color: #323232;
    font-size: 22px;
    font-style: normal;
    font-weight: 400;
    line-height: normal
}

.cancel .succes-block svg {
    width: 100px;
    height: 100px
}

.cancel .succes-block svg.rotating {
    animation: rotating 2s linear infinite
}

@keyframes rotating {
    0% {
        transform: rotate(0)
    }
    to {
        transform: rotate(360deg)
    }
}

@font-face {
    font-family: swiper-icons;
    src: url(data:application/font-woff;charset=utf-8;base64,\ d09GRgABAAAAAAZgABAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABGRlRNAAAGRAAAABoAAAAci6qHkUdERUYAAAWgAAAAIwAAACQAYABXR1BPUwAABhQAAAAuAAAANuAY7+xHU1VCAAAFxAAAAFAAAABm2fPczU9TLzIAAAHcAAAASgAAAGBP9V5RY21hcAAAAkQAAACIAAABYt6F0cBjdnQgAAACzAAAAAQAAAAEABEBRGdhc3AAAAWYAAAACAAAAAj//wADZ2x5ZgAAAywAAADMAAAD2MHtryVoZWFkAAABbAAAADAAAAA2E2+eoWhoZWEAAAGcAAAAHwAAACQC9gDzaG10eAAAAigAAAAZAAAArgJkABFsb2NhAAAC0AAAAFoAAABaFQAUGG1heHAAAAG8AAAAHwAAACAAcABAbmFtZQAAA/gAAAE5AAACXvFdBwlwb3N0AAAFNAAAAGIAAACE5s74hXjaY2BkYGAAYpf5Hu/j+W2+MnAzMYDAzaX6QjD6/4//Bxj5GA8AuRwMYGkAPywL13jaY2BkYGA88P8Agx4j+/8fQDYfA1AEBWgDAIB2BOoAeNpjYGRgYNBh4GdgYgABEMnIABJzYNADCQAACWgAsQB42mNgYfzCOIGBlYGB0YcxjYGBwR1Kf2WQZGhhYGBiYGVmgAFGBiQQkOaawtDAoMBQxXjg/wEGPcYDDA4wNUA2CCgwsAAAO4EL6gAAeNpj2M0gyAACqxgGNWBkZ2D4/wMA+xkDdgAAAHjaY2BgYGaAYBkGRgYQiAHyGMF8FgYHIM3DwMHABGQrMOgyWDLEM1T9/w8UBfEMgLzE////P/5//f/V/xv+r4eaAAeMbAxwIUYmIMHEgKYAYjUcsDAwsLKxc3BycfPw8jEQA/gZBASFhEVExcQlJKWkZWTl5BUUlZRVVNXUNTQZBgMAAMR+E+gAEQFEAAAAKgAqACoANAA+AEgAUgBcAGYAcAB6AIQAjgCYAKIArAC2AMAAygDUAN4A6ADyAPwBBgEQARoBJAEuATgBQgFMAVYBYAFqAXQBfgGIAZIBnAGmAbIBzgHsAAB42u2NMQ6CUAyGW568x9AneYYgm4MJbhKFaExIOAVX8ApewSt4Bic4AfeAid3VOBixDxfPYEza5O+Xfi04YADggiUIULCuEJK8VhO4bSvpdnktHI5QCYtdi2sl8ZnXaHlqUrNKzdKcT8cjlq+rwZSvIVczNiezsfnP/uznmfPFBNODM2K7MTQ45YEAZqGP81AmGGcF3iPqOop0r1SPTaTbVkfUe4HXj97wYE+yNwWYxwWu4v1ugWHgo3S1XdZEVqWM7ET0cfnLGxWfkgR42o2PvWrDMBSFj/IHLaF0zKjRgdiVMwScNRAoWUoH78Y2icB/yIY09An6AH2Bdu/UB+yxopYshQiEvnvu0dURgDt8QeC8PDw7Fpji3fEA4z/PEJ6YOB5hKh4dj3EvXhxPqH/SKUY3rJ7srZ4FZnh1PMAtPhwP6fl2PMJMPDgeQ4rY8YT6Gzao0eAEA409DuggmTnFnOcSCiEiLMgxCiTI6Cq5DZUd3Qmp10vO0LaLTd2cjN4fOumlc7lUYbSQcZFkutRG7g6JKZKy0RmdLY680CDnEJ+UMkpFFe1RN7nxdVpXrC4aTtnaurOnYercZg2YVmLN/d/gczfEimrE/fs/bOuq29Zmn8tloORaXgZgGa78yO9/cnXm2BpaGvq25Dv9S4E9+5SIc9PqupJKhYFSSl47+Qcr1mYNAAAAeNptw0cKwkAAAMDZJA8Q7OUJvkLsPfZ6zFVERPy8qHh2YER+3i/BP83vIBLLySsoKimrqKqpa2hp6+jq6RsYGhmbmJqZSy0sraxtbO3sHRydnEMU4uR6yx7JJXveP7WrDycAAAAAAAH//wACeNpjYGRgYOABYhkgZgJCZgZNBkYGLQZtIJsFLMYAAAw3ALgAeNolizEKgDAQBCchRbC2sFER0YD6qVQiBCv/H9ezGI6Z5XBAw8CBK/m5iQQVauVbXLnOrMZv2oLdKFa8Pjuru2hJzGabmOSLzNMzvutpB3N42mNgZGBg4GKQYzBhYMxJLMlj4GBgAYow/P/PAJJhLM6sSoWKfWCAAwDAjgbRAAB42mNgYGBkAIIbCZo5IPrmUn0hGA0AO8EFTQAA);
    font-weight: 400;
    font-style: normal
}

:root {
    --swiper-theme-color: #007aff
}

:host {
    position: relative;
    display: block;
    margin-left: auto;
    margin-right: auto;
    z-index: 1
}

.swiper {
    margin-left: auto;
    margin-right: auto;
    position: relative;
    overflow: hidden;
    list-style: none;
    padding: 0;
    z-index: 1;
    display: block
}

.swiper-vertical > .swiper-wrapper {
    flex-direction: column
}

.swiper-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    z-index: 1;
    display: flex;
    transition-property: transform;
    transition-timing-function: var(--swiper-wrapper-transition-timing-function, initial);
    box-sizing: content-box
}

.swiper-android .swiper-slide, .swiper-ios .swiper-slide, .swiper-wrapper {
    transform: translateZ(0)
}

.swiper-horizontal {
    touch-action: pan-y
}

.swiper-vertical {
    touch-action: pan-x
}

.swiper-slide {
    flex-shrink: 0;
    width: 100%;
    height: 100%;
    position: relative;
    transition-property: transform;
    display: block
}

.swiper-slide-invisible-blank {
    visibility: hidden
}

.swiper-autoheight, .swiper-autoheight .swiper-slide {
    height: auto
}

.swiper-autoheight .swiper-wrapper {
    align-items: flex-start;
    transition-property: transform, height
}

.swiper-backface-hidden .swiper-slide {
    transform: translateZ(0);
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden
}

.swiper-3d.swiper-css-mode .swiper-wrapper {
    perspective: 1200px
}

.swiper-3d .swiper-wrapper {
    transform-style: preserve-3d
}

.swiper-3d {
    perspective: 1200px
}

.swiper-3d .swiper-slide, .swiper-3d .swiper-cube-shadow {
    transform-style: preserve-3d
}

.swiper-css-mode > .swiper-wrapper {
    overflow: auto;
    scrollbar-width: none;
    -ms-overflow-style: none
}

.swiper-css-mode > .swiper-wrapper::-webkit-scrollbar {
    display: none
}

.swiper-css-mode > .swiper-wrapper > .swiper-slide {
    scroll-snap-align: start start
}

.swiper-css-mode.swiper-horizontal > .swiper-wrapper {
    scroll-snap-type: x mandatory
}

.swiper-css-mode.swiper-vertical > .swiper-wrapper {
    scroll-snap-type: y mandatory
}

.swiper-css-mode.swiper-free-mode > .swiper-wrapper {
    scroll-snap-type: none
}

.swiper-css-mode.swiper-free-mode > .swiper-wrapper > .swiper-slide {
    scroll-snap-align: none
}

.swiper-css-mode.swiper-centered > .swiper-wrapper:before {
    content: "";
    flex-shrink: 0;
    order: 9999
}

.swiper-css-mode.swiper-centered > .swiper-wrapper > .swiper-slide {
    scroll-snap-align: center center;
    scroll-snap-stop: always
}

.swiper-css-mode.swiper-centered.swiper-horizontal > .swiper-wrapper > .swiper-slide:first-child {
    margin-inline-start: var(--swiper-centered-offset-before)
}

.swiper-css-mode.swiper-centered.swiper-horizontal > .swiper-wrapper:before {
    height: 100%;
    min-height: 1px;
    width: var(--swiper-centered-offset-after)
}

.swiper-css-mode.swiper-centered.swiper-vertical > .swiper-wrapper > .swiper-slide:first-child {
    margin-block-start: var(--swiper-centered-offset-before)
}

.swiper-css-mode.swiper-centered.swiper-vertical > .swiper-wrapper:before {
    width: 100%;
    min-width: 1px;
    height: var(--swiper-centered-offset-after)
}

.swiper-3d .swiper-slide-shadow, .swiper-3d .swiper-slide-shadow-left, .swiper-3d .swiper-slide-shadow-right, .swiper-3d .swiper-slide-shadow-top, .swiper-3d .swiper-slide-shadow-bottom {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 10
}

.swiper-3d .swiper-slide-shadow {
    background: #00000026
}

.swiper-3d .swiper-slide-shadow-left {
    background-image: linear-gradient(to left, #00000080, #0000)
}

.swiper-3d .swiper-slide-shadow-right {
    background-image: linear-gradient(to right, #00000080, #0000)
}

.swiper-3d .swiper-slide-shadow-top {
    background-image: linear-gradient(to top, #00000080, #0000)
}

.swiper-3d .swiper-slide-shadow-bottom {
    background-image: linear-gradient(to bottom, #00000080, #0000)
}

.swiper-lazy-preloader {
    width: 42px;
    height: 42px;
    position: absolute;
    left: 50%;
    top: 50%;
    margin-left: -21px;
    margin-top: -21px;
    z-index: 10;
    transform-origin: 50%;
    box-sizing: border-box;
    border: 4px solid var(--swiper-preloader-color, var(--swiper-theme-color));
    border-radius: 50%;
    border-top-color: transparent
}

.swiper:not(.swiper-watch-progress) .swiper-lazy-preloader, .swiper-watch-progress .swiper-slide-visible .swiper-lazy-preloader {
    animation: swiper-preloader-spin 1s infinite linear
}

.swiper-lazy-preloader-white {
    --swiper-preloader-color: #fff
}

.swiper-lazy-preloader-black {
    --swiper-preloader-color: #000
}

@keyframes swiper-preloader-spin {
    0% {
        transform: rotate(0)
    }
    to {
        transform: rotate(360deg)
    }
}

:root {
    --swiper-navigation-size: 44px
}

.swiper-button-prev, .swiper-button-next {
    position: absolute;
    top: var(--swiper-navigation-top-offset, 50%);
    width: calc(var(--swiper-navigation-size) / 44 * 27);
    height: var(--swiper-navigation-size);
    margin-top: calc(0px - (var(--swiper-navigation-size) / 2));
    z-index: 10;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--swiper-navigation-color, var(--swiper-theme-color))
}

.swiper-button-prev.swiper-button-disabled, .swiper-button-next.swiper-button-disabled {
    opacity: .35;
    cursor: auto;
    pointer-events: none
}

.swiper-button-prev.swiper-button-hidden, .swiper-button-next.swiper-button-hidden {
    opacity: 0;
    cursor: auto;
    pointer-events: none
}

.swiper-navigation-disabled .swiper-button-prev, .swiper-navigation-disabled .swiper-button-next {
    display: none !important
}

.swiper-button-prev svg, .swiper-button-next svg {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transform-origin: center
}

.swiper-rtl .swiper-button-prev svg, .swiper-rtl .swiper-button-next svg {
    transform: rotate(180deg)
}

.swiper-button-prev, .swiper-rtl .swiper-button-next {
    left: var(--swiper-navigation-sides-offset, 10px);
    right: auto
}

.swiper-button-lock {
    display: none
}

.swiper-button-prev:after, .swiper-button-next:after {
    font-family: swiper-icons;
    font-size: var(--swiper-navigation-size);
    text-transform: none !important;
    letter-spacing: 0;
    font-variant: initial;
    line-height: 1
}

.swiper-button-prev:after, .swiper-rtl .swiper-button-next:after {
    content: "prev"
}

.swiper-button-next, .swiper-rtl .swiper-button-prev {
    right: var(--swiper-navigation-sides-offset, 10px);
    left: auto
}

.swiper-button-next:after, .swiper-rtl .swiper-button-prev:after {
    content: "next"
}

.swiper-pagination {
    position: absolute;
    text-align: center;
    transition: .3s opacity;
    transform: translateZ(0);
    z-index: 10
}

.swiper-pagination.swiper-pagination-hidden {
    opacity: 0
}

.swiper-pagination-disabled > .swiper-pagination, .swiper-pagination.swiper-pagination-disabled {
    display: none !important
}

.swiper-pagination-fraction, .swiper-pagination-custom, .swiper-horizontal > .swiper-pagination-bullets, .swiper-pagination-bullets.swiper-pagination-horizontal {
    bottom: var(--swiper-pagination-bottom, 8px);
    top: var(--swiper-pagination-top, auto);
    left: 0;
    width: 100%
}

.swiper-pagination-bullets-dynamic {
    overflow: hidden;
    font-size: 0
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
    transform: scale(.33);
    position: relative
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active, .swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-main {
    transform: scale(1)
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev {
    transform: scale(.66)
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev-prev {
    transform: scale(.33)
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next {
    transform: scale(.66)
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next-next {
    transform: scale(.33)
}

.swiper-pagination-bullet {
    width: var(--swiper-pagination-bullet-width, var(--swiper-pagination-bullet-size, 8px));
    height: var(--swiper-pagination-bullet-height, var(--swiper-pagination-bullet-size, 8px));
    display: inline-block;
    border-radius: var(--swiper-pagination-bullet-border-radius, 50%);
    background: var(--swiper-pagination-bullet-inactive-color, #000);
    opacity: var(--swiper-pagination-bullet-inactive-opacity, .2)
}

button.swiper-pagination-bullet {
    border: none;
    margin: 0;
    padding: 0;
    box-shadow: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none
}

.swiper-pagination-clickable .swiper-pagination-bullet {
    cursor: pointer
}

.swiper-pagination-bullet:only-child {
    display: none !important
}

.swiper-pagination-bullet-active {
    opacity: var(--swiper-pagination-bullet-opacity, 1);
    background: var(--swiper-pagination-color, var(--swiper-theme-color))
}

.swiper-vertical > .swiper-pagination-bullets, .swiper-pagination-vertical.swiper-pagination-bullets {
    right: var(--swiper-pagination-right, 8px);
    left: var(--swiper-pagination-left, auto);
    top: 50%;
    transform: translate3d(0, -50%, 0)
}

.swiper-vertical > .swiper-pagination-bullets .swiper-pagination-bullet, .swiper-pagination-vertical.swiper-pagination-bullets .swiper-pagination-bullet {
    margin: var(--swiper-pagination-bullet-vertical-gap, 6px) 0;
    display: block
}

.swiper-vertical > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic, .swiper-pagination-vertical.swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
    top: 50%;
    transform: translateY(-50%);
    width: 8px
}

.swiper-vertical > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet, .swiper-pagination-vertical.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
    display: inline-block;
    transition: .2s transform, .2s top
}

.swiper-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet, .swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
    margin: 0 var(--swiper-pagination-bullet-horizontal-gap, 4px)
}

.swiper-horizontal > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic, .swiper-pagination-horizontal.swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
    left: 50%;
    transform: translate(-50%);
    white-space: nowrap
}

.swiper-horizontal > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet, .swiper-pagination-horizontal.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
    transition: .2s transform, .2s left
}

.swiper-horizontal.swiper-rtl > .swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
    transition: .2s transform, .2s right
}

.swiper-pagination-fraction {
    color: var(--swiper-pagination-fraction-color, inherit)
}

.swiper-pagination-progressbar {
    background: var(--swiper-pagination-progressbar-bg-color, rgba(0, 0, 0, .25));
    position: absolute
}

.swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
    background: var(--swiper-pagination-color, var(--swiper-theme-color));
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    transform: scale(0);
    transform-origin: left top
}

.swiper-rtl .swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
    transform-origin: right top
}

.swiper-horizontal > .swiper-pagination-progressbar, .swiper-pagination-progressbar.swiper-pagination-horizontal, .swiper-vertical > .swiper-pagination-progressbar.swiper-pagination-progressbar-opposite, .swiper-pagination-progressbar.swiper-pagination-vertical.swiper-pagination-progressbar-opposite {
    width: 100%;
    height: var(--swiper-pagination-progressbar-size, 4px);
    left: 0;
    top: 0
}

.swiper-vertical > .swiper-pagination-progressbar, .swiper-pagination-progressbar.swiper-pagination-vertical, .swiper-horizontal > .swiper-pagination-progressbar.swiper-pagination-progressbar-opposite, .swiper-pagination-progressbar.swiper-pagination-horizontal.swiper-pagination-progressbar-opposite {
    width: var(--swiper-pagination-progressbar-size, 4px);
    height: 100%;
    left: 0;
    top: 0
}

.swiper-pagination-lock {
    display: none
}

.steps__container > a {
    display: block;
    width: 40%;
    text-align: center;
    margin: 0 auto;
}
/* Progress checking */
.checking {
    padding: 20px 0;
    background: #b4c8fb;
    overflow: hidden;
    min-height: calc(100dvh - 68px);
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center
}

.checking__container {
    position: relative;
    z-index: 2
}

.checking__content {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px 10px
}

.checking__content .page-title {
    text-align: center
}

.checking__content .progress {
    margin: 0px 0px 0px 20px;
    font-size: 40px;
    color: #ADCE51;
}

.checking__content .progress span {
    line-height: 70px;
    font-size: 70px;
    font-style: normal;
    font-weight: 700
}

.checking__content .progress-line {
    position: relative;
    width: 100%;
    height: 10px;
    border-radius: 100px;
    background: #e9e9e9
}

.checking__content .progress-fill {
    border-radius: 100px;
    background: #92db3a;
    height: 100%
}

.checking__content.refuse {
    gap: 30px;
    text-align: center
}

.checking__content.refuse .page-subtitle {
    font-size: 17px;
    font-style: normal;
    font-weight: 400
}

.checking__content.refuse .input-item {
    max-width: 432px;
    width: 100%
}

.checking__content.refuse .btn-light {
    max-width: 370px;
    margin: 0 auto;
    height: 80px
}

.checking__list {
    margin: 64px auto 0
}

.checking__list li {
    display: flex;
    align-items: center;
    gap: 2px;
    font-size: 25px;
    font-style: normal;
    font-weight: 400
}

.checking__list li svg {
    height: 40px;
    width: 40px;
    margin-right: 6px;
}

.checking__list li + li {
    margin-top: 15px
}
.subscribe-title {
    display: flex;
    width: 100%;
    flex-direction: row;
    align-items: center;
    justify-content: center;
}
@media (min-width: 1024px) {
    .checking {
        padding: 90px 0;
        min-height: calc(100dvh - 90px)
    }

    .checking__content {
        padding: 70px 0
    }

    .checking__content.refuse {
        gap: 64px
    }

    .checking__content.refuse .page-subtitle {
        max-width: 690px;
        font-size: 25px;
        font-style: normal;
        font-weight: 400;
        line-height: normal
    }
}
.spinner {
    -webkit-animation: rotating 4s linear infinite;
    -moz-animation: rotating 4s linear infinite;
    -ms-animation: rotating 4s linear infinite;
    -o-animation: rotating 4s linear infinite;
    animation: rotating 4s linear infinite;
    
    @-webkit-keyframes rotating /* Safari and Chrome */ {
        from {
        -webkit-transform: rotate(0deg);
        -o-transform: rotate(0deg);
        transform: rotate(0deg);
        }
        to {
        -webkit-transform: rotate(360deg);
        -o-transform: rotate(360deg);
        transform: rotate(360deg);
        }
    }
    
    @keyframes rotating {
        from {
        -ms-transform: rotate(0deg);
        -moz-transform: rotate(0deg);
        -webkit-transform: rotate(0deg);
        -o-transform: rotate(0deg);
        transform: rotate(0deg);
        }
        to {
        -ms-transform: rotate(360deg);
        -moz-transform: rotate(360deg);
        -webkit-transform: rotate(360deg);
        -o-transform: rotate(360deg);
        transform: rotate(360deg);
        }
    }
}
/* Progress checking */