

/* Start:/local/templates/solid_v2/css/index.css?169197343845825*/
:root {
    --color-primary: #760135;
    --color-primary-pressed: #560227;
    --color-primary-hover: #87043F;
    --сolor-success: #25B456;
    --сolor-error: #CF0D0D;
    --сolor-notify: #FC9536;
    --сolor-rasa: #009EE2;
    --сolor-text: #111111;

    --margin-side: 60px;
    --margin-top-main: 95px;
    --margin-top-banner: -95px;
    --margin-top-section: 36px
}

@media screen and (max-width: 1080px) {
    :root {
        --margin-side: 24px;
        --margin-top-section: 24px
    }
}

@media screen and (max-width: 800px) {
    :root {
        --margin-side: 16px;
        --margin-top-section: 16px
    }
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    outline: none;
}

a {
    color: var(--color-primary);
    text-decoration: none;
}

ul {
    list-style: none;
}

button {
    font-family: inherit;
    outline: none;
}

body {
    min-height: 100vh;
}

body {
    position: relative;
    color: var(--сolor-text);
    overflow-x: hidden;
    font-family: 'IBM Plex Sans', sans-serif;
    max-width: 1920px;
    margin: 0 auto;
    background-color: #F7F9FA;
}

input, textarea {
    font-family: inherit;
}

.wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    max-width: 1920px;
    margin: 0 auto;
    overflow-x: hidden;
}

.wrapper-top {
    padding-top: 39px;
}

.main {
    position: relative;
    flex: 1;
    padding: var(--margin-top-main) var(--margin-side) 100px;
}

/*--------------------------------общие стили для кнопок---------------------------------*/

.btn-prime {
    background: var(--color-primary);
    color: #FFFFFF;
    transition: 0.3s;
    cursor: pointer;
    outline: none;
}

.btn-prime:hover {
    background: var(--color-primary-pressed);
}

.btn-prime:active {
    background: var(--color-primary-hover);
}

.btn-prime:disabled {
    background: #E0E1E6;
}

.btn-white {
    background: #FFFFFF;
    transition: 0.3s;
    cursor: pointer;
}

.btn-white:hover {
    background: #ECEDF0;
}

.btn-white:active {
    background: #C4C6CC;
}

.btn-white:disabled {
    background: #E0E1E6;
}

.btn-gradient {
    position: relative;
    background: linear-gradient(97.94deg, #9A0145 0%, #C55084 99.99%, rgba(118, 1, 53, 0) 100%);
    color: #FFFFFF;
    transition: 0.3s;
    cursor: pointer;
    z-index: 100;
}

.btn-gradient:before,
.btn-gradient:after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 8px;
    opacity: 0;
    z-index: -1000;
    transition: opacity 0.5s ease;
}

.btn-gradient:before {
    background: linear-gradient(97.94deg, #CF0C63 0%, #C55084 99.99%);
}

.btn-gradient:hover:before {
    opacity: 1;
}

.btn-gradient:after {
    background: linear-gradient(97.94deg, #740335 0%, #AB3E6E 99.99%);
}

.btn-gradient:active:after {
    opacity: 1;
}

.btn-gradient:disabled {
    background: #E0E1E6;
}

/*--------------------------------меню RasaTab на страницах---------------------------------*/

.swiper.page-menu {
    display: flex;
    margin-top: 24px;
    overflow: visible;
}

.swiper-slide.btn-item {
    width: auto;
    margin-right: 8px;
    padding: 8px 24px;
    border-radius: 4px;
    background: #FFFFFF;
    color: #282828;
    font-weight: 500;
    font-size: 15px;
    line-height: 20px;
    cursor: pointer;
}

.swiper-slide.btn-item__active {
    background: linear-gradient(97.94deg, #9A0145 0%, #C55084 99.99%, rgba(118, 1, 53, 0) 100%), #FFFFFF;
    color: #FFFFFF;
}

.list-item {
    display: none;
}

.list-item.list-item__active {
    display: flex;
}

/*--------------------------------общие стили---------------------------------*/

.page__title {
    margin-top: 40px;
    font-weight: 500;
    font-size: 32px;
    line-height: 42px;
    color: #000000;
}

.page__menu {
    margin-top: 24px;
}

.page__wrapper {
    margin-top: 24px;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.page__section {
    margin-top: 40px;
}

@media screen and (max-width: 1080px) {
    .page__title {
        margin-top: 40px;
    }
}

@media screen and (max-width: 700px) {
    .page__title {
        margin-top: 32px;
    }
}

.info-text {

}

.info-text--small {
    font-size: 7pt;
    line-height: 2;
}

/*-------------------------Общие стили для контентных страниц-----------------------*/

.page__template {

}

.page__template h1 {
    font-weight: 500;
    font-size: 32px;
    line-height: 42px;
    color: var(--color-primary);
}

.page__template h2 {
    /*color: var(--color-primary);*/
    font-weight: 500;
    font-size: 24px;
    line-height: 31px;
    color: #000000;
    margin-bottom: 10px;
}

.page__template h3 {
    margin-bottom: 10px;
}

.page__template p,
.page__template div,
.page__template table {
    margin-top: 12px;
}

.page__template a {
    text-decoration: underline;
}

.page__template a:hover {
    text-decoration: none;
}

.page__template ul {
    padding-left: 20px;
    list-style-type: disc;
}

.page__template ol {
    padding-left: 20px;
}

.page__template li {
    position: relative;
}

.content__block {
    width: 100%;
    padding: 40px;
    border-radius: 16px;
    background: #FFFFFF;
    margin-top: 30px;
}

.page__template iframe {
    width: 100%;
    min-height: 600px;
}

/*.page__template li::before {*/
/*    position: absolute;*/
/*    content: "";*/
/*    width: 6px;*/
/*    height: 6px;*/
/*    left: -10px;*/
/*    background-color: var(--color-primary);*/
/*    border-radius: 50%;*/
/*}*/

/*-----------------------стили для баннеров-----------------------*/

.header-banner.header-banner--fill-img {
    position: relative;
    height: 380px;
}

.header-banner--fill-img .header-banner__body {
    position: relative;
    z-index: 2;
}

.header-banner--fill-img .header-banner__title {
    margin-top: 0;
    font-weight: 600;
    font-size: 38px;
    line-height: 49px;
}

.header-banner--fill-img .header-banner__img {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    margin: 0;
}

.header-banner--fill-img .header-banner__img img {
    object-fit: cover;
}

@media screen and (max-width: 800px) {
    .header-banner--fill-img .header-banner__img img {
        position: absolute;
        object-position: -600px 0;
    }

    .header-banner--fill-img .header-banner__img:before {
        content: '';
        position: absolute;
        z-index: 1;
        width: 100%;
        height: 100%;
        top: 0;
        left: 0;
        background: linear-gradient(90deg, rgba(255, 255, 255, 0.7) 58.12%, rgba(255, 255, 255, 0) 80.66%);
    }
}

@media screen and (max-width: 700px) {
    .header-banner--fill-img .header-banner__body {
        justify-content: center;
        display: flex;
        width: 100%;
    }

    .header-banner--fill-img .header-banner__title {
        margin-top: 0;
        font-weight: 700;
        font-size: 28px;
        line-height: 36px;
    }
}


/*-------------------------фрейм онлайн оплаты-----------------------*/

.credits__online-pay {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 24px;
    padding: 34px 132px;
    border-radius: 16px;
    background: #FFFFFF;
}

.credits__online-pay-img {
    width: 100%;
    object-fit: contain;
}

@media screen and (max-width: 1080px) {
    .credits__online-pay {
        display: none;
    }
}

/*-----------------------стили страницы вкладов-----------------------*/
.deposits-banner .header-banner__body {
    max-width: 423px;
}

@media screen and (max-width: 1080px) {
    .deposit-detail-banner.header-banner .header-banner__img {
        margin-right: -270px;
    }
}



/*-----------------------стили страницы кредитов-----------------------*/
.header-banner.credits-banner {
    padding-right: 0;
    background: url("/local/templates/solid_v2/css/../images/banners/credits-banner-bg.png") left center / cover no-repeat, linear-gradient(264.42deg, #FEE4FF 0%, #EFF9FF 100%);
}

@media screen and (max-width: 700px) {
    .header-banner.credits-banner {
        padding-right: 16px;
    }
}

/*------------------------------------------dropdown------------------------------------------*/
.dropdown {
    position: absolute;
    flex: 1;
    display: inline-flex;
    flex-direction: column;
    gap: 8px;
}

.dropdown__title {
    margin: 24px 0 8px 0;
}

.dropdown__link {
    width: 100%;
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    max-width: 100%;
    padding: 11px 16px;
    border: 1px solid transparent;
    border-radius: 8px;
    background-color: #ECEDF0;
    transition: background 0.2s, border 0.2s;
    cursor: pointer;
}

.dropdown__link.dropdown__link_open {
    background: #F3F3F5;
    border: 1px solid #ECEDF0;
}

.dropdown__link-text {
    font-weight: 400;
    font-size: 15px;
    line-height: 20px;
    color: #000000;
}

.dropdown__link-icon {
    width: 24px;
    height: 24px;
    transform: rotate(0);
    transition: transform 0.2s;
}

.dropdown__link.dropdown__link_open .dropdown__link-icon {
    transform: rotate(-180deg);
}

.dropdown__menu-wrap {
    position: relative;
    display: flex;
    width: 100%;
    padding: 16px 8px 16px 16px;
    border-radius: 16px;
    background: #FFFFFF;
    box-shadow: 0 4px 25px rgba(0, 0, 0, 0.1);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: 0.2s;
}

.dropdown__menu-wrap_open {
    z-index: 2;
    opacity: 1;
    visibility: visible;
    transform: translateY(0px);
}

.dropdown__menu {
    width: 100%;
    overflow-y: auto;
    max-height: 140px;
    padding-right: 16px;
}

.dropdown__menu::-webkit-scrollbar {
    width: 5px;
    border-radius: 8px;
    background: #ECEDF0;
}

.dropdown__menu::-webkit-scrollbar-thumb {
    width: 5px;
    border-radius: 8px;
    background: #CFD1D6;
}

.dropdown__item {
    display: block;
    padding: 5px 10px;
    border-radius: 3px;
    font-weight: 400;
    font-size: 15px;
    line-height: 20px;
    color: #000000;
    white-space: nowrap;
    cursor: pointer;
}

.dropdown__item:hover {
    background-color: #f2f2f4;
}

.dropdown__item a {
    font-weight: 400;
    font-size: 15px;
    line-height: 20px;
    color: #000000;
}

.dropdown__item:not(:first-child) {
    /*margin-top: 10px;*/
}

/*---------------------------------------credit section---------------------------------------*/

.credit {
    display: flex;
    margin-top: 60px;
    transition: 0.3s;
}

.credit-car {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-start;
    position: relative;
    margin-left: 36px;
    padding: 40px;
    border-radius: 16px;
    min-height: 100%;
    background: linear-gradient(97.94deg, #9A0145 0%, #C55084 99.99%, rgba(118, 1, 53, 0) 100%);
    transition: 0.3s;
}

.credit-car__img {
    position: absolute;
    height: 101%;
    top: 0;
    right: 0;
}

.credit-car__name {
    font-weight: 700;
    font-size: 30px;
    line-height: 39px;
    color: #FFFFFF;
}

.credit-car__desc {
    margin-top: 16px;
    font-weight: 500;
    font-size: 17px;
    line-height: 22px;
    color: #FFFFFF;
}

.credit-car__btn {
    position: relative;
    z-index: 10;
    padding: 20px 86px;
    border-radius: 8px;
    font-weight: 500;
    font-size: 15px;
    line-height: 20px;
    background-color: #FFFFFF;
    color: #111111;
}

@media screen and (max-width: 1320px) {
    .calculator {
        flex: 100%;
    }

    .credit-car {
        display: none;
    }
}

@media screen and (max-width: 1200px) {
    .credit-car {
        display: none;
    }
}

@media screen and (max-width: 1080px) {
    .credit {
        margin-top: 40px;
    }
}

/*----------------------------iframe----------------------------*/

.iframe__wrap {

}

.iframe__wrap iframe {
    width: 100%;
    height: 80vh;
    margin-top: 20px;
    border: 0;
    border-radius: 16px;
    outline: none;
}

/*----------------------------section-extra-info----------------------------*/

.extra-info {
    display: flex;
    gap: 36px;
    margin-top: 60px;
    transition: 0.3s;
}

.ideas-banner {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: space-between;
    flex-basis: 50%;
    position: relative;
    padding: 40px;
    border-radius: 16px;
    background: #FFFFFF;
    overflow: hidden;
    transition: 0.3s;
}

.ideas-banner--bg-color {
    background: linear-gradient(97.94deg, #9A0145 0%, #C55084 99.99%, rgba(118, 1, 53, 0) 100%);
}

.ideas-banner__body {
    max-width: 350px;
    transition: 0.3s;
}

.ideas-banner__title {
    position: relative;
    z-index: 10;
    font-weight: 500;
    font-size: 24px;
    line-height: 31px;
    color: #000000;
}

.ideas-banner--no-img .ideas-banner__body {
    max-width: fit-content;
}

.ideas-banner--bg-color .ideas-banner__title{
    color: #FFFFFF;
}

.ideas-banner__desc {
    position: relative;
    z-index: 10;
    margin-top: 16px;
    font-weight: 400;
    font-size: 15px;
    line-height: 20px;
    color: #1D1D1D;
}

.ideas-banner--bg-color .ideas-banner__desc{
    color: #FFFFFF;
}

.ideas-banner__btn {
    position: relative;
    min-width: 258px;
    text-align: center;
    z-index: 10;
    margin-top: 24px;
    padding: 14px 60px;
    border-radius: 8px;
    background: var(--color-primary);
    color: #FFFFFF;
}

.ideas-banner--bg-color .ideas-banner__btn{
    background: #FFFFFF;
    color: #111111;
}

.ideas-banner__img {
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    min-height: 100%;
    transition: 0.3s;
}

.ideas-banner__img img {
    object-fit: cover;
    min-width: 100%;
    min-height: 100%;
    max-height: 100%;
}

.ideas-banner__img.ideas-banner__img-left {

}

.modal__open-btn {
    cursor: pointer;
}

.react-modal-wrapper {
    position: fixed;
    z-index: 1000;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.36);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.2s;
    overflow: scroll;
}

.react-modal-wrapper-open {
    opacity: 1;
    visibility: visible;
    align-items: flex-start;
    padding-top: 20px;
}

.react-modal {
    position: relative;
    width: 488px;
    border-radius: 16px;
    background: #FFFFFF;
    display: none;
}

.react-modal-wrapper-open .react-modal{
    opacity: 1;
    visibility: visible;
    display: block;
}

.react-modal > svg {
    position: absolute;
    top: 36px;
    right: 36px;
    width: 24px;
    height: 24px;
    cursor: pointer;
}

@media screen and (max-width: 768px) {
    .react-modal-wrapper {
        padding: 8px;
        align-items: flex-start;
    }
}

@media screen and (max-width: 1320px) {
    .ideas-banner__img.ideas-banner__img-left {
        opacity: 0.5;
    }
}

@media screen and (max-width: 1080px) {
    .ideas-banner__img.ideas-banner__img-left {
        opacity: 0.25;
    }

    .extra-info {
        gap: 16px;
        margin-top: 40px;
    }

    .ideas-banner {
        padding: 24px;
    }
}

@media screen and (max-width: 768px) {
    .ideas-banner__img img {
        opacity: 0.5;
    }

    .ideas-banner__btn {
        /*min-width: auto;*/
        /*width: 100%;*/
    }
}

@media screen and (max-width: 700px) {
    .extra-info {
        flex-direction: column;
    }

    .ideas-banner__body {
        min-width: auto;
    }

    .ideas-banner__btn {
        min-width: 258px;
        width: auto;
    }

    .ideas-banner__img img {
        opacity: 1;
    }
}

@media screen and (max-width: 550px) {
    .ideas-banner {
        min-height: 290px;
    }

    .ideas-banner__img img {
        opacity: 0.5;
    }
}

@media screen and (max-width: 450px) {
    .ideas-banner__btn {
        min-width: auto;
        width: 100%;
    }
}

/*--------------------------------car-loan section--------------------------------*/

.car-loan-banner .header-banner__img {
    width: 524px;
    height: 365px;
    margin: 15px 85px 0 0;
}

@media screen and (max-width: 1080px) {
    .car-loan-banner .header-banner__img {
        margin-right: -190px;
    }
}

@media screen and (max-width: 700px) {
    .car-loan-banner .header-banner__img {
        margin: 22px 0 17px -15px;
        width: 100%;
        height: 185px;
    }
}

/*--------------------------------car-loan section--------------------------------*/

.marketplace {
    margin-top: 60px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    transition: 0.3s;
}

.marketplace__head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
    transition: 0.3s;
}

.marketplace__title-wrapper {
    display: flex;
    gap: 16px;
    font-weight: 500;
    font-size: 32px;
    line-height: 42px;
    color: #000000;
}

.marketplace__title {
    color: #000000;
    cursor: pointer;
}

span.marketplace__title {
    position: relative;
    color: #AAADB3;
    transition: color 0.5s;
}

span.marketplace__title:hover {
    color: #9A0145;
}

span.marketplace__title:before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background-color: #9A0145;
    transition: width 0.3s;
}

span.marketplace__title_active {
    color: #9A0145;
    cursor: default;
}

span.marketplace__title_active:before {
    width: 100%;
}

.marketplace__link {
    white-space: nowrap;
    padding: 8px 24px;
    border-radius: 4px;
    color: var(--color-primary);
    background-color: #FFFFFF;
    font-weight: 500;
    font-size: 15px;
    line-height: 20px;
    transition: 0.3s;
}

.marketplace-list-wrapper {
    display: flex;
    flex-direction: column;
}

.marketplace-list {
    display: none;
    flex-direction: column;
    gap: 16px;
    width: 100%;
}

.marketplace-list-show {
    display: flex;
}

.marketplace-item {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    border-radius: 16px;
    background: #FFFFFF;
}

.marketplace-item__body {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 40px;
    max-width: 600px;
    flex: 1 1 50%;
    transition: 0.3s;
}

.marketplace-item__best-offer {
    font-weight: 500;
    font-size: 15px;
    line-height: 20px;
    color: #25B456FF;
}

.marketplace-item__title {
    margin-top: 8px;
    font-weight: 500;
    font-size: 24px;
    line-height: 31px;
    color: #111111;
}

.marketplace-item__desc {
    margin-top: 16px;
    font-weight: 400;
    font-size: 15px;
    line-height: 20px;
    color: #282828;
}

.marketplace-item__price {
    margin-top: 21px;
    font-weight: 500;
    font-size: 24px;
    line-height: 31px;
    color: var(--color-primary);
}

.marketplace-item__link {
    display: flex;
    margin-top: 21px;
    font-weight: 400;
    font-size: 13px;
    line-height: 17px;
    color: var(--color-primary);
}

.marketplace-item__link-icon {
    margin-left: 8px;
}

.swiper.marketplace-item__swiper {
    position: relative;
    width: 600px;
    margin-right: 0;
    transition: 0.2s;
}

.swiper.marketplace-item__swiper:before,
.swiper.marketplace-item__swiper:after {
    content: '';
    position: absolute;
    z-index: 2;
    top: 0;
    height: 100%;
    width: 90px;
}

.swiper.marketplace-item__swiper:before {
    left: 0;
    background: linear-gradient(90deg, #FFFFFF 0%, rgba(255, 255, 255, 0) 100%);
}

.swiper.marketplace-item__swiper:after {
    right: 0;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, #FFFFFF 100%);
}

.swiper-wrapper.marketplace-item__list {
    transition-timing-function: ease-in !important;
}

.swiper-slide.marketplace-item__item {
    width: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.2s;
}

.marketplace-item__img {
    width: 363px;
    height: 196px;
}

.marketplace-item__img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.marketplace-item__swiper-button-prev {
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    z-index: 10;
    top: 50%;
    left: 40px;
    transform: rotate(180deg) translateY(50%);
    width: 50px;
    height: 50px;
    opacity: 0.3;
    cursor: pointer;
    transition: 0.2s;
}

.marketplace-item__swiper-button-next {
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    z-index: 10;
    top: 50%;
    right: 40px;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    opacity: 0.3;
    cursor: pointer;
    transition: 0.2s;
}

.swiper-button-disabled {
    display: none;
}

@media screen and (max-width: 1080px) {
    .marketplace {
        margin-top: 40px;
        gap: 24px;
    }

    .marketplace__head {
        margin-bottom: 16px;
    }

    .marketplace-item__body {
        max-width: 315px;
        flex: 1 1 50%;
        padding: 24px;
    }

    .marketplace-item__desc {
        display: none;
    }

    .marketplace-item__price {
        margin-top: 16px;
    }

    .swiper.marketplace-item__swiper {
        width: 328px;
    }

    .swiper.marketplace-item__swiper:before,
    .swiper.marketplace-item__swiper:after {
        width: 60px;
    }

    .marketplace-item__img {
        width: 256px;
        height: 120px;
    }

    .marketplace-item__swiper-button-prev {
        width: 24px;
        height: 24px;
        left: 16px;
        opacity: 1;
    }

    .marketplace-item__swiper-button-next {
        width: 24px;
        height: 24px;
        right: 16px;
        opacity: 1;
    }

    .marketplace-item__swiper-button-prev img,
    .marketplace-item__swiper-button-next img {
        width: 15px;
        height: 8px;
    }
}

@media screen and (max-width: 720px) {
    .marketplace {
        position: relative;
        padding-bottom: 60px;
    }

    .marketplace__title-wrapper {
        display: flex;
        flex-direction: column;
        gap: 24px;
        margin-bottom: -10px;
    }

    .marketplace__link {
        position: absolute;
        bottom: 0;
        left: 50%;
        transform: translateX(-50%);
    }

    .marketplace-item {
        flex-direction: column-reverse;
        align-items: flex-start;
        gap: 4px;
        padding-top: 24px;
    }

    .marketplace-item__body {
        padding-top: 0;
    }

    .swiper.marketplace-item__swiper {
        margin-right: auto;
    }
}

/*-------------------------------------page 404----------------------------------------*/

.not-found {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: calc(-1 * var(--margin-top-main)) calc(-1 * var(--margin-side)) -100px;
}

.not-found:before,
.not-found:after,
.not-found__body:before {
    content: "";
    position: absolute;
    opacity: 1;
    transition: opacity 0.2s;
}

.not-found:before {
    width: 500px;
    height: 386px;
    top: 64px;
    left: -52px;
    background: url("/local/templates/solid_v2/css/../images/banners/404-desktop-left.png") center / contain no-repeat;
}

.not-found:after {
    width: 543px;
    height: 416px;
    top: 28px;
    right: -175px;
    background: url("/local/templates/solid_v2/css/../images/banners/404-desktop-right.png") center / contain no-repeat;
}

.not-found__body {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 24px;
    padding: 136px 20px 80px;
}

.not-found__body:before {
    width: 442px;
    height: 88px;
    top: 58px;
    left: 50%;
    transform: translateX(-50%);
    background: url("/local/templates/solid_v2/css/../images/banners/404-desktop-logo.png") center / contain no-repeat;
}

.not-found__big-num {
    font-weight: 700;
    font-size: 130px;
    line-height: 169px;
    text-align: center;
    color: var(--color-primary);
}

.not-found__title {
    max-width: 750px;
    text-align: center;
    font-weight: 500;
    font-size: 24px;
    line-height: 31px;
    color: #000000;
}

.not-found__btn {
    padding: 14px 61px;
    border-radius: 8px;
    color: #FFFFFF;
}

.not-found__coin {
    position: absolute;
    opacity: 0;
    transition-property: opacity, top, left, right, bottom;
    transition-duration: 0.2s;
}

.not-found__coin_one {
    width: 80px;
    height: 80px;
    top: 55px;
    left: 154px;
    background: url("/local/templates/solid_v2/css/../images/banners/coin-one.png") center / contain no-repeat;
}

.not-found__coin_two {
    width: 121px;
    height: 93px;
    top: 64px;
    right: 42px;
    background: url("/local/templates/solid_v2/css/../images/banners/coin-two.png") center / contain no-repeat;
}

.not-found__coin_three {
    width: 80px;
    height: 80px;
    right: 42px;
    bottom: 48px;
    background: url("/local/templates/solid_v2/css/../images/banners/coin-three.png") center / contain no-repeat;
}

.not-found__coin_four {
    left: -26px;
    bottom: 48px;
    width: 91px;
    height: 85px;
    transform: rotate(14.78deg);
    background: url("/local/templates/solid_v2/css/../images/banners/coin-four.png") center / contain no-repeat;
}

@media screen and (max-width: 1200px) {
    .not-found:before,
    .not-found:after {
        opacity: 0.2;
    }
}

@media screen and (max-width: 800px) {
    .not-found {
        background: none;
    }

    .not-found__body {
        padding: 86px 20px 100px;
    }

    .not-found__coin {
        opacity: 1;
    }

    .not-found:before {
        opacity: 0;
    }

    .not-found:after {
        opacity: 0;
    }

    .not-found__body:before {
        opacity: 0;
    }
}

@media screen and (max-width: 600px) {
    .not-found__body {
        padding: 124px 20px 160px;
    }

    .not-found__coin_one {
        top: 68px;
        left: -26px;
    }

    .not-found__coin_two {
        top: 40px;
        right: -36px;
    }

    .not-found__coin_three {
        right: 58px;
    }

    .not-found__coin_four {
        left: 10px;
    }
}

/*-------------------------filter styles----------------------------*/

.filter {
    position: absolute;
    max-width: 1094px;
    min-width: 303px;
}

.filter__list {
    display: flex;
    position: relative;
    margin-top: 24px;
    gap: 16px;
}

.filter__name {
    font-weight: 500;
    font-size: 15px;
    line-height: 20px;
    color: #000000;
}

.dropdown__item.filter__select-item {
    font-size: 13px;
    line-height: 17px;
}

.dropdown.filter__item {
    position: relative;
}

.filter__item .dropdown__link-text {
    font-weight: 400;
    font-size: 13px;
    line-height: 18px;
    color: #000000;
}

.filter__item .dropdown__link {
    padding: 7px 16px;
}

.filter__item-wrap {
    flex: 0 1 394px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.filter__input-wrap {
    display: flex;
    gap: 18px;
    align-items: center;
}

.filter__input {
    width: 100%;
    max-width: 170px;
    box-sizing: border-box;
    padding: 11px 16px;
    border: 1px solid transparent;
    border-radius: 8px;
    background-color: #ECEDF0;

    font-weight: 400;
    font-size: 13px;
    line-height: 16px;
    color: #000000;

    transition: background 0.2s, border 0.2s;
}

.filter__slash {
    flex: 0 0 18px;
    height: 3px;
    background-color: #E6E7EB;
    border-radius: 3px;
}

@media screen and (max-width: 800px) {
    .filter {
        width: calc(100% - 80px);
        min-width: auto;
    }
}

/*---------------------------------table styles---------------------------------*/

.sheet-wrap {
    position: relative;
}

.sheet-wrap-inner {
    overflow: auto;
    padding: 1px 1px 6px;
}

.sheet-wrap-inner::-webkit-scrollbar {
    height: 6px;
    background-color: #DADCE0;
    border-radius: 5px;
}

.sheet-wrap-inner::-webkit-scrollbar-thumb {
    background-color: var(--color-primary);
    border-radius: 5px;
}

.sheet-wrap.show-before:before {
    content: '';
    position: absolute;
    height: 100%;
    width: 100px;
    top: 0;
    right: 0;
    background: linear-gradient(270deg, #FFFFFF 0%, rgba(255, 255, 255, 0) 100%);
}

.wrapper table {
    width: 100%;
    border-spacing: 0;
    height: auto;
    border-radius: 16px;
    border-collapse: collapse;
    overflow: hidden;
    border-style: hidden;
    box-shadow: 0 0 0 1px #BABCC2;
}

.wrapper table td,
.wrapper table th {
    text-align: center;
    width: 110px;
    padding: 8px 16px;
    border: 1px solid #BABCC2;
    background: #F9F9FA;
    color: #111111;
    font-weight: 400;
    font-size: 15px;
    line-height: 20px;
}

.wrapper table th {
    background: #ECEDF0;
    font-weight: 500;
}

.wrapper td:first-child,
.wrapper th:first-child {
    width: 195px;
}

@media screen and (max-width: 600px) {
    .sheet-wrap.show-before:before {
        display: none;
    }
}

/*-----------------------------section-news-----------------------------*/

section.news-main {
    transition: 0.3s;
}

.news-main__head {
    margin-top: 60px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.news-main__title {
    font-weight: 500;
    font-size: 32px;
    line-height: 42px;
    color: #000000;
}

.news-main__link-all {
    padding: 8px 24px;
    border-radius: 4px;
    font-weight: 500;
    font-size: 15px;
    line-height: 20px;
    background: #FFFFFF;
    color: var(--color-primary);
}

.swiper.news-main-swiper {
    width: 100%;
    margin: 24px -60px 0;
    overflow: visible;
}

.swiper-wrapper.news-main__list {
    padding: 0 60px;
}

.news-main__item {
}

.swiper-slide.news-main-card {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: auto;
    width: 318px;
    padding: 24px;
    border-radius: 16px;
    background-color: #FFFFFF;
}

.news-main-card__title {
    font-weight: 500;
    font-size: 17px;
    line-height: 22px;
    color: #111111;
}

.news-main-card__text {
    margin-top: 16px;
    font-weight: 400;
    font-size: 15px;
    line-height: 20px;
    color: #282828;
}

.news-main-card__link {
    float: right;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    position: relative;
    margin-top: 16px;
}

.news-main-card__link-text {
    margin-right: 14px;
    color: #FFFFFF;
    font-weight: 500;
    font-size: 15px;
    line-height: 20px;
    transition: color 0.5s;
}

.swiper-slide.news-main-card svg path {
    transition: stroke 0.5s;
}

.swiper-slide.news-main-card:hover .news-main-card__link-text {
    color: var(--color-primary);
}

.swiper-slide.news-main-card:hover svg path {
    stroke: var(--color-primary);
}

@media screen and (max-width: 1080px) {
    .news-main__head {
        margin-top: 32px;
    }

    .swiper.news-main-swiper {
        margin-top: 40px;
    }

}

/*-------------------------------offer banner-----------------------------------*/

.offer {
    display: flex;
    gap: 36px;
    margin-top: 40px;
}

.offer-main {
    position: relative;
    flex: 50%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-start;
    padding: 40px;
    border-radius: 16px;
    background: linear-gradient(97.94deg, #9A0145 0%, #C55084 99.99%, rgba(118, 1, 53, 0) 100%);
    color: #FFFFFF;
    overflow: hidden;
    transition: 0.3s;
}

.offer-main__body {
}

.offer-main__name {
    position: relative;
    z-index: 1;
    font-weight: 700;
    font-size: 30px;
    line-height: 39px;
    color: #F9F9FA;
}

.offer-main__desc {
    position: relative;
    z-index: 1;
    margin-top: 16px;
    font-weight: 500;
    font-size: 17px;
    line-height: 22px;
    color: #FFFFFF;
}

.offer-main__img {
    position: absolute;
    right: 0;
    top: 0;
    height: 101%;
    transition: 0.3s;
}

.offer-main__btn {
    position: relative;
    z-index: 9;
    margin-top: 66px;
    padding: 20px 86px;
    border-radius: 8px;
    font-weight: 500;
    font-size: 15px;
    line-height: 20px;
    background: #FFFFFF;
    color: #000000;
    cursor: pointer;
}

.offers-extra {
    flex: 50%;
    display: flex;
    flex-direction: column;
    gap: 36px;
}

.offer-extra {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 172px;
    padding: 40px;
    border-radius: 16px;
    overflow: hidden;
    background: #FFFFFF;
    transition: 0.3s;
}

.offer-extra__img {
    position: absolute;
    top: 0;
    right: 0;
    transition: 0.3s;
}

.offer-extra__name {
    position: relative;
    z-index: 10;
    font-weight: 500;
    font-size: 24px;
    line-height: 31px;
    color: #0D0D0D;
}

.offer-extra__desc {
    position: relative;
    z-index: 10;
    margin-top: 16px;
    font-weight: 400;
    font-size: 15px;
    line-height: 20px;
    color: #282828;
}

@media screen and (max-width: 1200px) {
    .offer-extra__img {
        right: -55px;
    }
}

@media screen and (max-width: 1080px) {
    .offer {
        gap: 16px;
    }

    .offer-main {
        padding: 24px;
    }

    .offers-extra {
        gap: 16px;
    }

    .offer-extra {
        padding: 24px;
    }

    .offer-extra__img {
        opacity: 0.5;
    }

    .offer-main__img {
        opacity: 0.3;
    }
}

@media screen and (max-width: 700px) {
    .offer {
        flex-direction: column;
    }

    .offer-main {
        padding: 24px;
    }

    .offers-extra {
        gap: 16px;
    }

    .offer-extra {
        padding: 24px;
    }

    .offer-extra__img {
        opacity: 0.5;
    }

    .offer-main__img {
        opacity: 0.3;
    }
}

@media screen and (max-width: 450px) {
    .offer-main__btn {
        width: 100%;
        text-align: center;
    }
}

/*---------------------------------------business-main-------------------------------------*/

.info-banners {
    display: flex;
    flex-wrap: wrap;
    gap: 24px 36px;
    margin-top: 56px;
}

.info-banner {
    position: relative;
    flex: 1 1 30%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 16px;
    min-height: 245px;
    padding: 24px;
    border-radius: 16px;
    background: #FFFFFF;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
}



.info-banner:before {
    content: '';
    position: absolute;
    width: 66px;
    height: 66px;
    left: 256px;
    top: -33px;
    background: #D70066;
    opacity: 0.5;
    filter: blur(100px);
}

.info-banner:after {
    content: '';
    position: absolute;
    width: 101px;
    height: 101px;
    left: 310px;
    top: 135px;
    background: #D70066;
    opacity: 0.45;
    filter: blur(100px);
    transition-property: width, height, left, top;
    transition-duration: 0.3s;
}

.info-banner:hover:after {
    width: 193px;
    height: 193px;
    left: 280px;
    top: 88px;
}

.info-banner:hover {
    box-shadow: 0 0 20px -3px rgba(0, 0, 0, 0.2);
}

.info-banner__title {
    position: relative;
    z-index: 1;
    max-width: 65%;
    font-weight: 500;
    font-size: 24px;
    line-height: 31px;
    color: #111111;
}

.info-banner__desc {
    position: relative;
    z-index: 1;
    max-width: 65%;
    font-weight: 400;
    font-size: 15px;
    line-height: 20px;
    color: #282828;
}

.info-banner__img {
    position: absolute;
    top: 0;
    right: 0;
    height: 100%;
}

.info-banner__img img {
    height: 100%;
    object-fit: cover;
}

@media screen and (max-width: 1400px) {
    .info-banner__img {
        opacity: 0.3;
    }

    .info-banner__title,
    .info-banner__desc {
        max-width: none;
    }
}

@media screen and (max-width: 1080px) {
    .info-banners {
        gap: 16px;
        margin-top: 40px;
    }

    .info-banner {
        flex: 1 1 45%;
    }
}

@media screen and (max-width: 600px) {
    .info-banners {
        margin-top: 32px;
    }

    .info-banner {
        min-height: 206px;
        flex: 1 1 100%;
    }

    .info-banner__img {
        opacity: 0.5;
    }
}

/*-----------------------------------bank-requisites-----------------------------------*/

.requisites {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 32px;
    padding: 40px;
    border-radius: 16px;
    background-color: #FFFFFF;
}

.requisites__title,
.bank-list__title {
    font-weight: 600;
    font-size: 24px;
    line-height: 29px;
    color: var(--color-primary);
}

.filter.requisites__filter {
    margin-top: 60px;
    min-width: 303px;
}

.requisites__filter .filter__list {
    margin-top: 0;
}

.requisites__list {
    margin-top: 72px;
}

.requisites__item {
    display: flex;
    align-items: flex-start;
    gap: 32px;
    padding: 8px 0;
    border-bottom: 1px solid #E6E7EB;
}

.requisites__item:first-child {
    border-top: 1px solid #E6E7EB;
}

.requisites__name {
    flex: 1 1 40%;
    font-weight: 500;
    font-size: 15px;
    line-height: 20px;
    color: #000000;
}

.requisites__value {
    flex: 1 1 60%;
    font-weight: 400;
    font-size: 15px;
    line-height: 20px;
    color: #000000;
}

.requisites__notice {
    display: flex;
    justify-content: flex-end;
    margin-top: 16px;
    font-weight: 400;
    font-size: 13px;
    line-height: 17px;
    color: #606266;
}

.requisites__link-wrap {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.requisites__link {
    display: block;
    margin-top: 24px;
    font-weight: 400;
    font-size: 15px;
    line-height: 20px;
    float: right;
    text-decoration-line: underline;
    text-decoration-color: #111111;
    color: #111111;
    transition: text-decoration-color 0.2s;
}

.requisites__link:hover {
    text-decoration-color: transparent;
}

.bank-list {
    display: flex;
    flex-direction: column;
    gap: 32px;
    border-radius: 16px;
    margin-top: 60px;
    padding: 40px;
    background-color: #FFFFFF;
}

.bank-list__sheet .sheet th {
    padding: 26px 16px;
}

.bank-list__sheet .sheet th,
.bank-list__sheet .sheet td {
    text-align: left;
    width: 100px;
}

.bank-list__sheet .sheet th:first-child,
.bank-list__sheet .sheet td:first-child {
    width: 100px;
}

.bank-list__sheet .sheet th:first-child[rowspan='2'],
.bank-list__sheet .sheet td:first-child[rowspan='2'] {
    width: 200px;
}

@media screen and (max-width: 1080px) {
    .requisites {
        padding: 24px;
    }

    .bank-list {
        padding: 24px;
    }
}

@media screen and (max-width: 800px) {
    .filter.requisites__filter {
        margin-top: 60px;
        width: calc(100% - 48px);
        min-width: auto;
    }
}

@media screen and (max-width: 767px) {
    .requisites {
        gap: 24px;
    }

    .bank-list {
        gap: 24px;
    }

    .requisites__item {
        flex-direction: column;
        gap: 8px;
    }
}

/*---------------------------------rko----------------------------------*/

.rko-requisites .requisites__list {
    margin-top: 0;
}

.rko-requisites {
    margin-top: 24px;
}

.rko-notice {
    font-weight: 400;
    font-size: 10px;
    line-height: 13px;
    color: #A5A7AD;
}

.rko-rates {
    position: relative;
}

.rko-rates .page__title {
    margin-bottom: 80px;
}

.rko-rates .filter {
    top: 36px;
}

@media screen and (max-width: 800px) {
    .rko-rates .filter {
        width: 100%;
    }
}

/*--------------------online-account-reservation----------------------*/

.advantages-list-wrapper.reservation-step__wrapper {
    gap: 36px;
}

.swiper-slide.advantages-list__item.reservation-step__slide {
    flex: 0 0 416px;
    align-items: flex-start;
    padding: 40px;
    background: #FFFFFF;
    gap: 0;
}

.reservation-step__title {
    margin-top: 24px;
    font-weight: 500;
    font-size: 24px;
    line-height: 31px;
    color: var(--color-primary);
}

.reservation-step__desc {
    margin-top: 16px;
    font-weight: 400;
    font-size: 15px;
    line-height: 20px;
    color: #111111;
}

@media screen and (max-width: 1080px) {
    .swiper-slide.advantages-list__item.reservation-step__slide {
        flex: 0 0 384px;
        padding: 24px;
    }
}

@media screen and (max-width: 700px) {
    .swiper-slide.advantages-list__item.reservation-step__slide {
        flex: 0 0 261px;
    }
}

/*--------------------online-account-reservation-detail----------------------*/

.requisites-detail__wrap {
    width: 100%;
    padding: 40px;
    border-radius: 16px;
    background: #FFFFFF;
}

.requisites-detail__title {
    font-weight: 500;
    font-size: 24px;
    line-height: 31px;
    color: var(--color-primary);
}

.requisites-detail__desc {
    font-weight: 400;
    font-size: 15px;
    line-height: 20px;
    color: #000000;
}

.requisites-detail__desc p {
    margin-top: 16px;
}

.requisites-detail__desc b {
    display: block;
    margin-top: 14px;
    font-weight: 500;
}

.requisites-detail__desc ul {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 14px;
}

.requisites-detail__desc ul > li {
    position: relative;
    padding-left: 40px;
}

.requisites-detail__desc ul > li:before {
    content: '';
    position: absolute;
    width: 8px;
    height: 8px;
    border-radius: 4px;
    top: 6px;
    left: 16px;
    background: var(--color-primary);
}

/*---------------------------------salary-project--------------------------------*/

.salary-project__list-wrap {
    max-width: 1094px;
    margin: 60px auto 0;
    display: flex;
    gap: 36px;
}

.salary-project__list {
    flex: 1;
    padding: 40px;
    border-radius: 16px;
    background-color: #FFFFFF;
    font-weight: 400;
    font-size: 15px;
    line-height: 20px;
}

.salary-project__list h2 {
    font-weight: 500;
    color: var(--color-primary);
}

.salary-project__list ul {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 10px;
    color: #000000;
}

.salary-project__list ul > li {
    position: relative;
    padding-left: 40px;
}

.salary-project__list ul > li:before {
    content: '';
    position: absolute;
    top: 8px;
    left: 16px;
    width: 8px;
    height: 8px;
    border-radius: 8px;
    background-color: var(--color-primary);
}

@media screen and (max-width: 1080px) {
    .salary-project__list-wrap {
        flex-direction: column;
        margin-top: 40px;
        gap: 16px;
    }

    .salary-project__list {
        padding: 24px;
    }
}

/*---------------------------------salary-project--------------------------------*/

.corporate-card__list-wrap {
    display: flex;flex-direction: column;
    gap: 24px;
    max-width: 1094px;
    margin: 60px auto 0;
    color: #000000;
}

.salary-project__list.corporate-card__list h2:not(:first-child) {
    margin-top: 24px;
}

.salary-project__list.corporate-card__list ul {
    margin-top: 16px;
}

.salary-project__list.corporate-card__list p {
    margin-top: 16px;
}

.salary-project__list.corporate-card__list b {
    font-weight: 500;
}

.salary-project__list.corporate-card__list a {

    font-weight: 500;
    color: var(--color-primary);
    text-decoration: underline var(--color-primary) 1px;
    transition: text-decoration-color 0.2s;
}

.salary-project__list.corporate-card__list a:hover {
    text-decoration-color: transparent;
}

/*----------------------------------overdraft----------------------------------*/

.conditions.overdraft-conditions {
    max-width: none;
    margin-top: 40px;
}

.overdraft-calc {
    margin-top: 40px;
}

/*------------------------------business-deposits------------------------------*/

.business-deposits-section {
    margin-top: 24px;
}
/* End */


/* Start:/local/templates/solid_v2/css/header.css?16919734509660*/
.header {
    position: relative;
    z-index: 20;
    display: flex;
    flex-direction: column;
    width: 100%;
    background-color: #FFFFFF;
}

.header__top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 var(--margin-side);
    border-bottom: solid 1px #e0e1e6;
    transition: padding 0.2s;
}

.header__right-info {
    display: flex;
    font-weight: 500;
    font-size: 15px;
    line-height: 20px;
}

.header__phone {
    color: var(--color-primary);
    white-space: nowrap;
}

.header__location {
    position: relative;
    margin-left: 16px;
    padding-left: 24px;
    cursor: pointer;
}

.header__location:before {
    content: '';
    position: absolute;
    left: 0;
    top: -1px;
    width: 20px;
    height: 20px;
    background-image: url("/local/templates/solid_v2/images/icons/location.svg");
}

.header__language {
    color: var(--сolor-text);
    margin-left: 16px;
    cursor: pointer;
}

.header__bottom {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 19px var(--margin-side);
    transition: padding 0.2s;
}

.header__bottom-left {
    display: flex;
}

.header__logo {
    width: 130px;
    height: 30px;
    margin-right: 24px;
}

.header__logo img {
    object-fit: cover;
}

.header__call-info {
    display: flex;
    align-items: center;
    font-weight: 500;
    font-size: 15px;
    line-height: 20px;
}

.header__call {
    position: relative;
    padding-left: 32px;
    color: var(--сolor-success);
    cursor: pointer;
    transition: padding-left 0.2s;
}

.header__call-number {
    display: none;
}

.header__call:before {
    content: '';
    position: absolute;
    left: 0;
    top: -2px;
    width: 20px;
    height: 20px;
    background-image: url("/local/templates/solid_v2/images/icons/phone.svg");
}

.header__login {
    position: relative;
    padding-left: 32px;
    margin-left: 16px;
    color: var(--color-primary);
    cursor: pointer;
    transition: 0.2s;
}

.header__login:before {
    content: '';
    position: absolute;
    left: 0;
    top: -2px;
    width: 20px;
    height: 20px;
    background-image: url("/local/templates/solid_v2/images/icons/login.svg");
}

.header__menu {
    position: absolute;
    z-index: 20;
    top: 0;
    display: none;
    width: 100%;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.2s;
    background: #FFFFFF;
}

.header__menu-icon {
    width: 30px;
    height: 30px;
    margin-left: 20px;
    display: none;
    cursor: pointer;
}

.hidden {
    display: none;
}

.breadcrumbs {
    position: absolute;
    left: 60px;
    top: 140px;
    display: flex;
    /*flex-wrap: wrap;*/
    row-gap: 15px;
    align-items: center;
    transition: left 0.2s;
    white-space: nowrap;
    overflow-x: scroll;
    width: 100%;
    padding-right: 20px;
}

.breadcrumbs::-webkit-scrollbar {
    width: 0;
}

.breadcrumbs_item {
    font-weight: 400;
    font-size: 13px;
    line-height: 17px;
    color: #111111;
    opacity: 0.5;
}

.breadcrumbs_item:last-child {
    opacity: 1;
}

.breadcrumbs_item:not(:last-child) {
    padding-right: 18px;
    margin-right: 13px;
    position: relative;
}

.breadcrumbs_item:not(:last-child):after {
    content: '';
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 0;
    width: 6px;
    height: 9px;
    background: url('/local/templates/solid_v2/css/../images/icons/arrow-for-car.svg') center / contain no-repeat;
}

@media screen and (max-width: 1080px) {
    .swiper.header__swiper {
        position: absolute;
        top: 80px;
        left: 0;
        overflow: hidden;
    }

    .header__bottom {
        border-bottom: 1px solid #e0e1e6;
        padding: 16px 0;
        margin: 0 var(--margin-side) 52px;
    }

    .breadcrumbs {
        left: 24px;
        top: 185px;
    }
}

@media screen and (max-width: 800px) {
    .header__right-info {
        display: none;
    }

    .header__menu {
        display: flex;
        flex-direction: column;
    }

    .header__menu-icon {
        display: block;
    }

    .breadcrumbs {
        left: 16px;
    }
}

@media screen and (max-width: 560px) {
    .header__top {
        padding: 0;
    }

    .header__bottom {
        padding: 16px var(--margin-side);
        margin: 0 0 108px;
    }

    .swiper.header__swiper {
        width: 100%;
    }

    .header__call-info {
        position: absolute;
        top: 116px;
        left: 0;
        display: flex;
        justify-content: space-between;
        width: 100%;
        padding: 17px 16px 0;
        border-top: 1px solid #e0e1e6;
    }

    .header__call-order {
        display: none;
    }

    .header__call-number {
        display: block;
    }

    .header__login {
        margin-left: 0;
    }

    .header__menu-icon {
        position: absolute;
        right: 15px;
        top: -100px;
    }

    .breadcrumbs {
        top: 245px;
    }
}

.header-modal {
    position: absolute;
    z-index: 21;
    top: 40px;
    left: -85px;
    min-width: 200px;
    border-radius: 8px;
    background: #FFFFFF;
    box-shadow: 0 0 4px rgba(0, 0, 0, 0.04), 0 -3px 20px rgba(0, 0, 0, 0.16);
    visibility: hidden;
    opacity: 0;
    transform: translateY(-12px);
    transition: 0.2s;
}

.header-modal.modal-open {
    visibility: visible;
    opacity: 1;
    transform: translateY(0px);
}

.header-modal:before {
    content: '';
    position: absolute;
    top: -11px;
    left: calc(50% - 15px);
    border-bottom: 12px solid #FFFFFF;
    border-left: 14px solid transparent;
    border-right: 14px solid transparent;
    transform: translateY(12px);
    transition: transform 0.2s;
}

.modal-open.header-modal:before {
    transform: translateY(0px);
}

.header-modal__item {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 8px 20px;
    cursor: pointer;
    white-space: nowrap;
    font-weight: 400;
    font-size: 15px;
    line-height: 20px;
    color: #000000;
}

.header-modal__item:not(:last-child) {
    border-bottom: 1px solid #F3F3F5;
}

.header-city-modal {
    top: 50px;
    right: 65px;
    left: auto;
    border-radius: 5px;
    max-height: 295px;
    overflow-y: auto;
    transition: right 0.2s;
    scroll-behavior: smooth;
    transform: translateX(15px);
    transition-property: visibility, opacity, transform;
}

.header-city-modal.modal-open {
    transform: translateX(0px);
}


.header-city-modal::-webkit-scrollbar {
    width: 7px;
    background-color: #FFFFFF;
    border-radius: 5px;
    scrollbar-width: thin;
}

.header-city-modal::-webkit-scrollbar-thumb {
    background-color: var(--color-primary);
    border-radius: 5px;
}

.header-call-modal-link {
    position: relative;
}

.header-call-modal {
    padding: 16px;
    cursor: default;
}

.header-modal__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.header-modal__head svg {
    cursor: pointer;
}

.header-modal__head svg:hover path {
    stroke: var(--сolor-error);
    transition: 0.2s;
}

.header-modal__name {
    font-weight: 400;
    font-size: 13px;
    line-height: 17px;
    color: #7E7F85;
}

.header-modal__body {
    display: flex;
    justify-content: space-between;
    gap: 8px;
    height: 40px;
    margin-top: 16px;
}

.header-modal__input {
    flex: 1;
    padding: 10px 16px;
    border: 0;
    border-radius: 8px;
    background: #F3F3F5;
    color: #111111;
    font-family: 'IBM Plex Sans', sans-serif;
    font-weight: 500;
    font-size: 15px;
    line-height: 20px;
    outline: 0;
}

.header-modal__input:focus {
    padding: 10px 15px;
    border: 1px solid #ECEDF0;
}

.header-modal__img {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 8px;
    transform: matrix(1, 0, 0, -1, 0, 0);
    background-color: #25B456;
    cursor: pointer;
}

.header-modal__foot {
    margin-top: 8px;
    font-weight: 500;
    font-size: 15px;
    line-height: 20px;
    color: #3C3C3C;
}

.header-modal__foot span {
    color: #BABCC2;
    font-size: 12px;
    line-height: 15px;
}

.header-call-success-modal {
    width: 287px;
    padding: 16px;
}

.header-call-success-modal .header-modal__foot {
    margin-top: 16px;
}

.header-modal.header-login-modal {
    left: -10px;
    min-width: 160px;
}

.header-login-modal__item {
    padding: 8px 16px;
    color: #000000;
    font-weight: 400;
    font-size: 15px;
    line-height: 20px;
}

.header-login-modal__item span {
    margin-left: 4px;
    color: #82848A;
}

@media screen and (max-width: 1080px) {
    .header-city-modal {
        right: 30px;
    }
}

@media screen and (max-width: 560px) {
    .header-modal.header-more-modal {
        left: auto;
        right: 35px;
    }

    .header-modal.header-more-modal:before {
        left: auto;
        right: 20px;
    }

    .header-call-modal {
        left: 0;
    }

    .header-call-modal:before {
        left: 25%;
    }

    .header-call-success-modal {
        left: 0;
    }

    .header-call-success-modal:before {
        left: 25%;
    }
}
/* End */


/* Start:/local/templates/solid_v2/css/footer.css?16919734384976*/
.footer {
    padding: 32px var(--margin-side);
    transition: padding 0.2s;
    background-color: #FFFFFF;
}

.footer__top {
    display: flex;
}

.footer__menu {
    display: flex;
    gap: 36px;
    flex: 1 1 60%;
    transition: gap 0.2s;
}

.menu {
    flex: 1 1 33.33%;
    transition: flex 0.2s;
}

.menu__title {
    position: relative;
    font-weight: 500;
    font-size: 17px;
    line-height: 22px;
    color: #000000;
}

.menu .menu__title:before {
    content: '';
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 0;
    width: 24px;
    height: 24px;
    display: none;
    background: url('/local/templates/solid_v2/css/../images/icons/small-arrow-down.svg') center / contain no-repeat;
}

.footer__bottom .menu__title {
    display: none;
}

.menu__list {
    margin-top: 16px;
    transition: max-height 0.2s;
}

.menu__item {
    margin-top: 10px;
    font-weight: 400;
    font-size: 15px;
    line-height: 20px;
}

.menu__item a {
    color: #484a4d;
}

.menu__item a:hover {
    color: #797a80;
}

.footer__links {
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 300px;
    width: 340px;
    gap: 24px;
    padding-left: 36px;
    border-left: 1px solid #e6e7eb;
}

.link__phone {
    font-weight: 500;
    font-size: 24px;
    line-height: 31px;
    color: var(--color-primary);
}

.link__description {
    margin-top: 8px;
    font-weight: 400;
    font-size: 13px;
    line-height: 17px;
    color: #babcc2;
}

.socials {
    display: flex;
    gap: 16px;
}

.socials_item {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 46px;
    border-radius: 9px;
    background-color: #e6e7eb;
    transition: background-color 0.2s;
}

.socials_item:hover {
    background-color: #caccd1;
}

.footer__bottom {
    margin: 54px 0 0;
}

.footer__notification {
    font-weight: 400;
    font-size: 12px;
    line-height: 24px;
}

.footer__notification a {
    text-decoration: underline;
    color: #7e7f85;
    white-space: nowrap;
    margin-right: 10px;
}

.footer__description {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-top: 17px;
    padding-top: 16px;
    border-top: 1px solid #e0e1e6;
}

.footer__site-info {
    display: flex;
    flex-direction: column;
    gap: 10px;
    font-weight: 400;
    font-size: 13px;
    line-height: 17px;
    color: #606266;
}

.footer__site-dev {
    font-weight: 400;
    font-size: 13px;
    line-height: 17px;
    color: #606266;
}

.footer__site-dev a {
    color: var(--сolor-rasa)
}

@media screen and (max-width: 1080px) {
    .socials {
        gap: 10px;
    }

    .footer {
        padding: 24px var(--margin-side);
    }

    .footer__top {
        flex-direction: column-reverse;
        justify-content: space-between;
    }

    .footer__menu {
        gap: 16px;
    }

    .menu {
        flex: 1 1 auto;
    }

    .footer__links {
        flex-direction: row;
        justify-content: space-between;
        height: auto;
        width: 100%;
        gap: 42px;
        padding-left: 0;
        border-left: none;
        margin-bottom: 24px;
        padding-bottom: 24px;
        border-bottom: 1px solid #e6e7eb;
    }

    .footer__bottom {
        margin-top: 46px;
    }

    .footer__description {
        margin-top: 24px;
    }
}

@media screen and (max-width: 800px) {
    .footer__description {
        flex-direction: column;
        gap: 16px;
    }

    .footer__links {
        flex-direction: column;
        align-items: center;
        gap: 16px;
        margin-bottom: 0;
    }

    .link {
        text-align: center;
    }

    .footer__menu {
        flex-direction: column;
        gap: 0;
    }

    .menu {
        border-bottom: 1px solid #e6e7eb;
    }

    .menu__title {
        padding: 16px 0;
        cursor: pointer;
    }

    .menu .menu__title:before {
        display: block;
        transition: transform 0.2s;
    }

    .menu__list {
        margin: 0;
        overflow: hidden;
        max-height: 0;
    }

    .footer__bottom {
        margin: 0;
    }

    .footer__bottom .menu {
        padding: 0;
        border: 0;
    }

    .footer__menu-open~.menu__list {
        max-height: 600px;
        padding-bottom: 15px;
    }

    .footer__menu-open.menu__title:before {
        transform: rotate(180deg) translateY(50%);
    }

    .menu__item:first-child {
        margin-top: 0;
    }

    .footer__notification {
        overflow: visible;
        max-height: inherit;
    }

    .footer__notification a {
        display: block;
        white-space: inherit;
    }

    .footer__description {
        margin-top: 0;
    }
}
/* End */


/* Start:/local/templates/solid_v2/css/common/detail-page.css?16919734506006*/
.detail-wrap {
    max-width: 1094px;
    margin: var(--margin-top-section) auto 0;
}

.advantages {
    margin: 40px auto 0;
    display: flex;
    flex-direction: column;
    gap: 24px;
    align-items: center;
}

.advantages__title {
    font-weight: 500;
    font-size: 32px;
    line-height: 42px;
    color: #000000;
}

.swiper.advantages-list {
    width: 100%;
    overflow: visible;
    opacity: 0;
    transition: opacity 0.2s;
}

.swiper-wrapper.advantages-list-wrapper {
    display: flex;
    justify-content: flex-start;
    gap: 28px;
}

.swiper-slide.advantages-list__item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 19px;
    width: 252px;
    min-height: 145px;
    height: auto;
    padding: 19px;
    background: linear-gradient(251.68deg, #4D0E2B 0%, #D06495 100%), #F3F3F5;
    border-radius: 16px;
}

.advantages-list__item-icon {
    width: 45px;
    height: 45px;
}

.advantages-list__item-text {
    font-weight: 500;
    font-size: 17px;
    line-height: 22px;
    color: #FFFFFF;
    text-align: center;
}

.description {
    max-width: 1094px;
    margin: 60px auto 0;
    padding: 40px;
    border-radius: 16px;
    background: #FFFFFF;
    transition: 0.3s;
}

.description__title {
    font-weight: 500;
    font-size: 24px;
    line-height: 31px;
    color: var(--color-primary);
}

.description__body {
    display: flex;
    flex-direction: column;
    gap: 11px;
    margin-top: 11px;
}

.description__body p {
    font-weight: 400;
    font-size: 15px;
    line-height: 20px;
    color: #000000;
}

.description h2 {
    font-weight: 500;
    color: var(--color-primary);
}

.description ul {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 10px;
    color: #000000;
}

.description ul > li {
    position: relative;
    padding-left: 40px;
}

.description ul > li:before {
    content: '';
    position: absolute;
    top: 8px;
    left: 16px;
    width: 8px;
    height: 8px;
    border-radius: 8px;
    background-color: var(--color-primary);
}

.request-card-wrap {
    width: 100%;
    max-width: 488px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 40px auto 0;
}

.request-card-wrap.react-modal-form {
    margin: 0;
}

.request-card-wrap.request-card-wrap-detail {
    width: 100%;
    max-width: 641px;
}

.conditions {
    display: flex;
    flex-direction: column;
    max-width: 1094px;
    margin: 60px auto 0;
    padding: 40px;
    border-radius: 16px;
    background: #FFFFFF;
    transition: 0.3s;
}

.conditions__title {
    font-weight: 600;
    font-size: 24px;
    line-height: 29px;
    color: var(--color-primary);
}

.conditions__list {
    display: flex;
    flex-direction: column;
    margin-top: 24px;
}

.conditions__item {
}

.condition {
    display: flex;
    margin-top: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #E0E1E6;
    font-size: 15px;
    line-height: 20px;
    color: #000000;
}

.condition:first-child {
    margin-top: 0;
}

.condition__name {
    min-width: 35%;
    font-weight: 500;
}

.condition__value {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 8px;
    flex-grow: 1;
    font-weight: 400;
}

.condition__value span {
    color: #7E7F85;
}

.conditions__link {
    position: relative;
    flex-grow: 1;
    text-align: right;
    margin-top: 22px;
    padding-right: 40px;
    font-weight: 500;
    font-size: 15px;
    line-height: 20px;
    color: var(--color-primary);
}

.conditions__link:after {
    content: "";
    position: absolute;
    top: -2px;
    right: 0;
    width: 24px;
    height: 24px;
    background: url(/local/templates/solid_v2/css/common/../../images/icons/arrows/small-right-pr.svg) center no-repeat;
}

.notice {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 60px;
    padding: 40px;
    border-radius: 16px;
    color: #A5A7AD;
    background: #FFFFFF;

    font-weight: 400;
    font-size: 10px;
    line-height: 13px;
}

.notice--max-width {
    margin: 60px auto 0;
    max-width: 1094px;
}

.deposit-trust {
    margin-top: 60px;
    display: flex;
    justify-content: center;
    border-radius: 16px;
    overflow: hidden;
    margin-bottom: 100px;
}


.deposit-trust__left {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex: 1 1 47%;
    padding: 1px 43px;
    background-color: #004F9E;
}


.deposit-trust__right {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    flex: 1 1 53%;
    padding: 1px 101px;
    background-color: #FFFFFF;
}

.car-loan-calculator {
    max-width: 1094px;
    margin: 60px auto 0;
}

.center-wrap__block {
    margin: auto;
    margin-top: 30px;
    max-width: 768px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: space-between;
    position: relative;
    padding: 40px;
    border-radius: 16px;
    background: #FFFFFF;
    overflow: hidden;
    transition: 0.3s;
}

.btn-group {
    width: 100%;
    margin-top: 20px;
    display: flex;
    justify-content: space-between;
}

@media screen and (max-width: 1080px) {
    .description {
        margin-top: 40px;
        padding: 24px;
    }

    .conditions {
        padding: 24px;
        margin-top: 32px;
    }

    .notice {
        margin-top: 40px;
    }
}

@media screen and (max-width: 767px) {
    .request-card-wrap {
        margin-top: 40px;
    }

    .condition {
        flex-direction: column;
        gap: 8px;
    }

    .conditions__item {
        margin-top: 16px;
        padding-bottom: 16px;
    }

    .conditions__link {
        padding-right: 29px;
    }

    .btn-group {
        flex-direction: column;
        gap: 20px;
    }
}

/*-----------------------------------*/

.msb-detail__wrap .condition {
    border-bottom: none;
    border-top: 1px solid #E0E1E6;
    margin-top: 20px;
    padding-top: 20px;
    padding-bottom: 0;
}

.msb-detail__wrap .conditions__list {
    margin-top: 0;
}
/* End */


/* Start:/local/templates/solid_v2/css/common/faq.css?16919734501851*/
.faq {
    display: flex;
    align-items: flex-start;
    gap: 63px;
    margin-top: 60px;
}

.faq__title-wrap {
    display: flex;
    align-items: flex-start;
    max-width: 300px;
}

.faq__icon {
}

.faq__title {
    margin-left: 16px;
    font-weight: 500;
    font-size: 24px;
    line-height: 31px;
    color: #000000;
}

.question-list {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.question {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
    border-radius: 16px;
    border: 1px solid transparent;
    background: #FFFFFF;
    transition: background 0.2s, border 0.2s, padding-bottom 0.25s;
    cursor: pointer;
    overflow: hidden;
}

.question__link {
    position: relative;
    width: 100%;
    padding: 16px 25px 16px 16px;
}

.question__link:before {
    content: '';
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 16px;
    width: 24px;
    height: 24px;
    background: url('/local/templates/solid_v2/css/common/../../images/icons/small-arrow-down.svg') center / contain no-repeat;
    transition: transform 0.2s, rotate 0.2s;
}

.question__link,
.question__body {
    font-weight: 400;
    font-size: 15px;
    line-height: 20px;
    color: #000000;
}

.question__body {
    max-height: 0;
    color: #606266;
    padding: 0 16px;
    overflow: hidden;
    transition: max-height 0.2s;
}

.question-open .question__body {
    max-height: 2000px;
}

.question-open {
    padding-bottom: 16px;
}


.question-open .question__link:before {
    transform: rotate(-180deg) translateY(50%);
}

@media screen and (max-width: 1080px) {
    .faq {
        flex-direction: column;
        align-items: normal;
        gap: 24px;
    }

    .faq__title-wrap {
        align-items: center;
        max-width: none;
    }
}

@media screen and (max-width: 768px) {

}
/* End */


/* Start:/local/templates/solid_v2/css/common/documents.css?16919722781714*/
.documents {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: 24px;
}

.document__item {
    border-radius: 16px;
    background: #FFFFFF;
    font-size: 15px;
    line-height: 20px;
}

.document__item-title {
    padding: 24px 24px 12px 24px;
    font-weight: 500;
}

.document__link {
    position: relative;
    display: block;
    padding: 24px 72px 24px 24px;
    font-weight: 400;
    color: #000000;
}

.document__item_list .document__link {
    padding: 12px 72px 12px 24px;
}

.document__item_list .document__link:last-child {
    padding-bottom: 24px;
}

.document__link:after {
    content: '';
    position: absolute;
    right: 24px;
    top: 50%;
    transform: translateY(-50%);
    width: 24px;
    height: 24px;
    background: url("/local/templates/solid_v2/css/common/../../images/icons/arrows/arrow-right-black.svg");
}

.document__item_list .document__link:last-child:after {
    top: calc(50% - 6px);
}

@media screen and (max-width: 500px) {
    .document__link {
        padding: 24px 24px 64px 24px;
    }

    .document__link:after {
        right: auto;
        left: 24px;
        top: auto;
        bottom: 24px;
        transform: translateY(0);
    }

    .document__item_list .document__link {
        padding: 12px 24px 40px 24px;
    }

    .document__item_list .document__link:after {
        bottom: 4px;
    }

    .document__item_list .document__link:last-child {
        padding-bottom: 64px;
    }

    .document__item_list .document__link:last-child:after {
        top: auto;
        bottom: 24px;
    }
}

/*-----------------------------------documents-list-----------------------------------*/


/* End */


/* Start:/local/templates/solid_v2/css/swiper-bundle.min.css?169197343817875*/
/**
 * Swiper 9.0.2
 * Most modern mobile touch slider and framework with hardware accelerated transitions
 * https://swiperjs.com
 *
 * Copyright 2014-2023 Vladimir Kharlampidi
 *
 * Released under the MIT License
 *
 * Released on: February 3, 2023
 */

@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}.swiper,swiper-container{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-wrapper{transform:translate3d(0px,0,0)}.swiper-horizontal{touch-action:pan-y}.swiper-vertical{touch-action:pan-x}.swiper-slide,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-cube-shadow,.swiper-3d .swiper-slide,.swiper-3d .swiper-slide-shadow,.swiper-3d .swiper-slide-shadow-bottom,.swiper-3d .swiper-slide-shadow-left,.swiper-3d .swiper-slide-shadow-right,.swiper-3d .swiper-slide-shadow-top{transform-style:preserve-3d}.swiper-3d .swiper-slide-shadow,.swiper-3d .swiper-slide-shadow-bottom,.swiper-3d .swiper-slide-shadow-left,.swiper-3d .swiper-slide-shadow-right,.swiper-3d .swiper-slide-shadow-top{position:absolute;left:0;top:0;width:100%;height:100%;pointer-events:none;z-index:10}.swiper-3d .swiper-slide-shadow{background:rgba(0,0,0,.15)}.swiper-3d .swiper-slide-shadow-left{background-image:linear-gradient(to left,rgba(0,0,0,.5),rgba(0,0,0,0))}.swiper-3d .swiper-slide-shadow-right{background-image:linear-gradient(to right,rgba(0,0,0,.5),rgba(0,0,0,0))}.swiper-3d .swiper-slide-shadow-top{background-image:linear-gradient(to top,rgba(0,0,0,.5),rgba(0,0,0,0))}.swiper-3d .swiper-slide-shadow-bottom{background-image:linear-gradient(to bottom,rgba(0,0,0,.5),rgba(0,0,0,0))}.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-horizontal.swiper-css-mode>.swiper-wrapper{scroll-snap-type:x mandatory}.swiper-vertical.swiper-css-mode>.swiper-wrapper{scroll-snap-type:y mandatory}.swiper-centered>.swiper-wrapper::before{content:'';flex-shrink:0;order:9999}.swiper-centered>.swiper-wrapper>.swiper-slide{scroll-snap-align:center center;scroll-snap-stop:always}.swiper-centered.swiper-horizontal>.swiper-wrapper>.swiper-slide:first-child{margin-inline-start:var(--swiper-centered-offset-before)}.swiper-centered.swiper-horizontal>.swiper-wrapper::before{height:100%;min-height:1px;width:var(--swiper-centered-offset-after)}.swiper-centered.swiper-vertical>.swiper-wrapper>.swiper-slide:first-child{margin-block-start:var(--swiper-centered-offset-before)}.swiper-centered.swiper-vertical>.swiper-wrapper::before{width:100%;min-width:1px;height:var(--swiper-centered-offset-after)}.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-watch-progress .swiper-slide-visible .swiper-lazy-preloader,.swiper:not(.swiper-watch-progress) .swiper-lazy-preloader,swiper-container:not(.swiper-watch-progress) .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(0deg)}100%{transform:rotate(360deg)}}.swiper-virtual .swiper-slide{-webkit-backface-visibility:hidden;transform:translateZ(0)}.swiper-virtual.swiper-css-mode .swiper-wrapper::after{content:'';position:absolute;left:0;top:0;pointer-events:none}.swiper-virtual.swiper-css-mode.swiper-horizontal .swiper-wrapper::after{height:1px;width:var(--swiper-virtual-size)}.swiper-virtual.swiper-css-mode.swiper-vertical .swiper-wrapper::after{width:1px;height:var(--swiper-virtual-size)}:root{--swiper-navigation-size:44px}.swiper-button-next,.swiper-button-prev{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-next.swiper-button-disabled,.swiper-button-prev.swiper-button-disabled{opacity:.35;cursor:auto;pointer-events:none}.swiper-button-next.swiper-button-hidden,.swiper-button-prev.swiper-button-hidden{opacity:0;cursor:auto;pointer-events:none}.swiper-navigation-disabled .swiper-button-next,.swiper-navigation-disabled .swiper-button-prev{display:none!important}.swiper-button-next:after,.swiper-button-prev: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,.swiper-rtl .swiper-button-next{left:var(--swiper-navigation-sides-offset,10px);right:auto}.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-button-lock{display:none}.swiper-pagination{position:absolute;text-align:center;transition:.3s opacity;transform:translate3d(0,0,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-horizontal>.swiper-pagination-bullets,.swiper-pagination-bullets.swiper-pagination-horizontal,.swiper-pagination-custom,.swiper-pagination-fraction{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{transform:scale(1)}.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: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;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-pagination-vertical.swiper-pagination-bullets,.swiper-vertical>.swiper-pagination-bullets{right:var(--swiper-pagination-right,8px);left:var(--swiper-pagination-left,auto);top:50%;transform:translate3d(0px,-50%,0)}.swiper-pagination-vertical.swiper-pagination-bullets .swiper-pagination-bullet,.swiper-vertical>.swiper-pagination-bullets .swiper-pagination-bullet{margin:var(--swiper-pagination-bullet-vertical-gap,6px) 0;display:block}.swiper-pagination-vertical.swiper-pagination-bullets.swiper-pagination-bullets-dynamic,.swiper-vertical>.swiper-pagination-bullets.swiper-pagination-bullets-dynamic{top:50%;transform:translateY(-50%);width:8px}.swiper-pagination-vertical.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet,.swiper-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:translateX(-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,:host(.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-pagination-progressbar.swiper-pagination-vertical.swiper-pagination-progressbar-opposite,.swiper-vertical>.swiper-pagination-progressbar.swiper-pagination-progressbar-opposite{width:100%;height:var(--swiper-pagination-progressbar-size,4px);left:0;top:0}.swiper-horizontal>.swiper-pagination-progressbar.swiper-pagination-progressbar-opposite,.swiper-pagination-progressbar.swiper-pagination-horizontal.swiper-pagination-progressbar-opposite,.swiper-pagination-progressbar.swiper-pagination-vertical,.swiper-vertical>.swiper-pagination-progressbar{width:var(--swiper-pagination-progressbar-size,4px);height:100%;left:0;top:0}.swiper-pagination-lock{display:none}.swiper-scrollbar{border-radius:var(--swiper-scrollbar-border-radius,10px);position:relative;-ms-touch-action:none;background:var(--swiper-scrollbar-bg-color,rgba(0,0,0,.1))}.swiper-scrollbar-disabled>.swiper-scrollbar,.swiper-scrollbar.swiper-scrollbar-disabled{display:none!important}.swiper-horizontal>.swiper-scrollbar,.swiper-scrollbar.swiper-scrollbar-horizontal{position:absolute;left:var(--swiper-scrollbar-sides-offset,1%);bottom:var(--swiper-scrollbar-bottom,4px);top:var(--swiper-scrollbar-top,auto);z-index:50;height:var(--swiper-scrollbar-size,4px);width:calc(100% - 2 * var(--swiper-scrollbar-sides-offset,1%))}.swiper-scrollbar.swiper-scrollbar-vertical,.swiper-vertical>.swiper-scrollbar{position:absolute;left:var(--swiper-scrollbar-left,auto);right:var(--swiper-scrollbar-right,4px);top:var(--swiper-scrollbar-sides-offset,1%);z-index:50;width:var(--swiper-scrollbar-size,4px);height:calc(100% - 2 * var(--swiper-scrollbar-sides-offset,1%))}.swiper-scrollbar-drag{height:100%;width:100%;position:relative;background:var(--swiper-scrollbar-drag-bg-color,rgba(0,0,0,.5));border-radius:var(--swiper-scrollbar-border-radius,10px);left:0;top:0}.swiper-scrollbar-cursor-drag{cursor:move}.swiper-scrollbar-lock{display:none}.swiper-zoom-container{width:100%;height:100%;display:flex;justify-content:center;align-items:center;text-align:center}.swiper-zoom-container>canvas,.swiper-zoom-container>img,.swiper-zoom-container>svg{max-width:100%;max-height:100%;object-fit:contain}.swiper-slide-zoomed{cursor:move;touch-action:none}.swiper .swiper-notification,swiper-container .swiper-notification{position:absolute;left:0;top:0;pointer-events:none;opacity:0;z-index:-1000}.swiper-free-mode>.swiper-wrapper{transition-timing-function:ease-out;margin:0 auto}.swiper-grid>.swiper-wrapper{flex-wrap:wrap}.swiper-grid-column>.swiper-wrapper{flex-wrap:wrap;flex-direction:column}.swiper-fade.swiper-free-mode .swiper-slide{transition-timing-function:ease-out}.swiper-fade .swiper-slide{pointer-events:none;transition-property:opacity}.swiper-fade .swiper-slide .swiper-slide{pointer-events:none}.swiper-fade .swiper-slide-active,.swiper-fade .swiper-slide-active .swiper-slide-active{pointer-events:auto}.swiper-cube{overflow:visible}.swiper-cube .swiper-slide{pointer-events:none;-webkit-backface-visibility:hidden;backface-visibility:hidden;z-index:1;visibility:hidden;transform-origin:0 0;width:100%;height:100%}.swiper-cube .swiper-slide .swiper-slide{pointer-events:none}.swiper-cube.swiper-rtl .swiper-slide{transform-origin:100% 0}.swiper-cube .swiper-slide-active,.swiper-cube .swiper-slide-active .swiper-slide-active{pointer-events:auto}.swiper-cube .swiper-slide-active,.swiper-cube .swiper-slide-next,.swiper-cube .swiper-slide-next+.swiper-slide,.swiper-cube .swiper-slide-prev{pointer-events:auto;visibility:visible}.swiper-cube .swiper-slide-shadow-bottom,.swiper-cube .swiper-slide-shadow-left,.swiper-cube .swiper-slide-shadow-right,.swiper-cube .swiper-slide-shadow-top{z-index:0;-webkit-backface-visibility:hidden;backface-visibility:hidden}.swiper-cube .swiper-cube-shadow{position:absolute;left:0;bottom:0px;width:100%;height:100%;opacity:.6;z-index:0}.swiper-cube .swiper-cube-shadow:before{content:'';background:#000;position:absolute;left:0;top:0;bottom:0;right:0;filter:blur(50px)}.swiper-flip{overflow:visible}.swiper-flip .swiper-slide{pointer-events:none;-webkit-backface-visibility:hidden;backface-visibility:hidden;z-index:1}.swiper-flip .swiper-slide .swiper-slide{pointer-events:none}.swiper-flip .swiper-slide-active,.swiper-flip .swiper-slide-active .swiper-slide-active{pointer-events:auto}.swiper-flip .swiper-slide-shadow-bottom,.swiper-flip .swiper-slide-shadow-left,.swiper-flip .swiper-slide-shadow-right,.swiper-flip .swiper-slide-shadow-top{z-index:0;-webkit-backface-visibility:hidden;backface-visibility:hidden}.swiper-creative .swiper-slide{-webkit-backface-visibility:hidden;backface-visibility:hidden;overflow:hidden;transition-property:transform,opacity,height}.swiper-cards{overflow:visible}.swiper-cards .swiper-slide{transform-origin:center bottom;-webkit-backface-visibility:hidden;backface-visibility:hidden;overflow:hidden}
/* End */


/* Start:/local/templates/solid_v2/css/pages/cards.css?16919722786737*/
.cards-wrapper-open {
    display: flex;
}

.page__title.cards-title {
    margin-top: 0;
}

.card-banner {
    position: relative;
    display: none;
    justify-content: flex-start;
    align-items: center;
    width: 100%;
    padding: 40px;
    border-radius: 16px;
    background: #FFFFFF;
    overflow: hidden;
}

.card-banner:before {
    content: '';
    position: absolute;
    z-index: 10;
    left: 0;
    top: 0;
    width: 142px;
    height: 100%;
    background: linear-gradient(90deg, #FFFFFF 0%, rgba(255, 255, 255, 0) 100%);
    opacity: 0.67;
    transition: opacity 0.7s;
}

.card-banner:hover:before {
    opacity: 0;
}

.card-banner__img {
    flex-shrink: 0;
    position: relative;
    margin-left: -100px;
    width: 286px;
    height: 190px;
    transition: margin-left 0.7s;
}

.card-banner:hover .card-banner__img {
    margin-left: 0;
}

.card-banner__img img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    object-position: right;
}

.card-banner__body {
    margin-left: 34px;
    position: relative;
}

.card-banner__title {
    font-weight: 500;
    font-size: 24px;
    line-height: 31px;
}

.card-banner__desc {

}

.card-banner__desc ul {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    margin-top: 16px;
}

.card-banner__desc ul li {
    position: relative;
    font-weight: 400;
    font-size: 15px;
    line-height: 20px;
    padding-left: 8px;
    margin-left: 7px;
}

.card-banner__desc ul li:before {
    content: '';
    position: absolute;
    left: 0;
    display: block;
    top: 9px;
    width: 3px;
    height: 3px;
    border-radius: 2px;
    background: var(--color-primary);
}

.card-banner__desc ul li span {
    text-decoration: 1px #7a0045 underline;
}

.card-banner__btn-block {
    flex-shrink: 0;
    flex-grow: 1;
    align-self: flex-end;
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
    gap: 16px;
    min-width: 1px;
    transition: min-width 0.3s;
}

.card-banner__conditions {
    position: relative;
    z-index: 10;
    color: #111111;
    font-weight: 400;
    font-size: 15px;
    line-height: 20px;
    text-decoration-line: underline;
}

.card-banner__btn {
    position: relative;
    z-index: 10;
    padding: 14px 55px;
    border-radius: 8px;
    font-weight: 500;
    font-size: 15px;
    line-height: 20px;
    color: #FFFFFF;
    min-width: 100px;
    text-align: center;
    transition: min-width 0.3s;
}

.card-banner__gradient {
    position: absolute;
    width: 122px;
    height: 122px;
    background: #D70066;
    opacity: 0;
    filter: blur(100px);
    transition: opacity 0.7s;
}

.card-banner:hover .card-banner__gradient {
    opacity: 0.5;
}

.card-banner__gradient-one {
    left: -19px;
    bottom: -64px;
}

.card-banner__gradient-two {
    left: calc(50% - 36px);
    bottom: -64px;
}

.card-banner__gradient-three {
    left: 688px;
    top: calc(50% -  194px);
}

.card-banner__gradient-four {
    right: -10px;
    top: -44px;
}

.banners-wrapper {
    display: flex;
    gap: 36px;
    margin-top: 60px;
}

.banner-help {
}

.banner-block-card {
}

@media screen and (max-width: 1320px) {
    .card-banner__btn-block {
        flex-direction: column;
        align-items: flex-end;
        justify-content: flex-end;
    }
}

@media screen and (max-width: 1080px) {
    .cards {
        padding: 0 var(--margin-side);
    }

    .card-banner {
        padding: 24px;
    }

    .cards-wrapper {
        margin-top: 30px;
    }

    .card-banner {
        flex-direction: column;
        align-items: flex-start;
        gap: 24px;
        padding: 24px;
    }

    .card-banner:before {
        display: none;
    }

    .card-banner__img {
        left: 0;
        width: 100%;
        height: 161px;
        margin-left: 0;
    }

    .card-banner__img img {
        object-fit: contain;
        object-position: center;
    }

    .card-banner__body {
        margin-left: 0;
        left: 0;
    }

    .card-banner__conditions {
        display: none;
    }

    .card-banner__gradient-one {
        left: -19px;
        bottom: 146px;
    }

    .card-banner__gradient-two {
        left: calc(50% - 122px/2 + 97px);
        bottom: 146px;
        opacity: 0.3;
    }

    .card-banner__gradient-three {
        display: none;
    }

    .card-banner__gradient-four {
        right: -10px;
        top: -44px;
    }

    .banners-wrapper {
        gap: 16px;
        margin-top: 40px;
    }
}

@media screen and (max-width: 768px) {
    .banners-wrapper {
        flex-direction: column;
    }

    .card-banner__btn-block {
        min-width: 100%;
    }

    .card-banner__btn {
        min-width: 100%;
    }
}

.cards-banner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: var(--margin-top-banner) calc(-1 * var(--margin-side)) 0;
    padding: 0 var(--margin-side);
    height: 400px;
    background: url("/local/templates/solid_v2/css/pages/../../images/banners/cards-banner-bg.png") center / cover no-repeat;
    overflow: hidden;
}

.cards-banner__body {
}

.cards-banner__title {
    font-weight: 600;
    font-size: 38px;
    line-height: 49px;
    color: #000000;
    transition: 0.3s;
}

.cards-banner__desc {
    margin-top: 16px;
    font-weight: 400;
    font-size: 15px;
    line-height: 20px;
    color: #000000;
}

.cards-banner__card-img {
    position: relative;
    width: 360px;
    height: 239px;
    margin-right: 133px;
    margin-left: 50px;
    transition: 0.3s;
}

.cards-banner__card-img:after {
    content: '';
    display: block;
    position: absolute;
    bottom: -60px;
    right: -100px;
    width: 572px;
    height: 48px;
    background: #000000;
    opacity: 0.1;
    filter: blur(20px);
}

.cards-banner__card-img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

@media screen and (max-width: 1200px) {
    .cards-banner__card-img {
        margin-right: 56px;
    }
}

@media screen and (max-width: 1080px) {
    .cards-banner__card-img {
        width: 396px;
        height: 192px;
        margin-right: 56px;
    }
}

@media screen and (max-width: 767px) {
    .cards-banner {
        flex-direction: column;
        padding: 65px 0 32px;
        gap: 24px;
        height: auto;
    }

    .cards-banner__body {
        width: calc(100% - 120px);
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
    }

    .cards-banner__title {
        font-size: 28px;
        line-height: 36px;
    }

    .cards-banner__card-img {
        margin: 0;
        width: 206px;
        height: 137px;
    }

    .cards-banner__card-img:after {
        bottom: -20px;
        right: -60px;
        width: 328px;
        height: 27px;
    }
}
/* End */


/* Start:/local/react-apps/forms/dist/forms.css?169197227728873*/
._6RnAXa_formWrapper {
  width: 100%;
  flex-direction: column;
  display: flex;
}

:root {
  --toastify-color-light: #fff;
  --toastify-color-dark: #121212;
  --toastify-color-info: #3498db;
  --toastify-color-success: #07bc0c;
  --toastify-color-warning: #f1c40f;
  --toastify-color-error: #e74c3c;
  --toastify-color-transparent: #ffffffb3;
  --toastify-icon-color-info: var(--toastify-color-info);
  --toastify-icon-color-success: var(--toastify-color-success);
  --toastify-icon-color-warning: var(--toastify-color-warning);
  --toastify-icon-color-error: var(--toastify-color-error);
  --toastify-toast-width: 320px;
  --toastify-toast-background: #fff;
  --toastify-toast-min-height: 64px;
  --toastify-toast-max-height: 800px;
  --toastify-font-family: sans-serif;
  --toastify-z-index: 9999;
  --toastify-text-color-light: #757575;
  --toastify-text-color-dark: #fff;
  --toastify-text-color-info: #fff;
  --toastify-text-color-success: #fff;
  --toastify-text-color-warning: #fff;
  --toastify-text-color-error: #fff;
  --toastify-spinner-color: #616161;
  --toastify-spinner-color-empty-area: #e0e0e0;
  --toastify-color-progress-light: linear-gradient(to right, #4cd964, #5ac8fa, #007aff, #34aadc, #5856d6, #ff2d55);
  --toastify-color-progress-dark: #bb86fc;
  --toastify-color-progress-info: var(--toastify-color-info);
  --toastify-color-progress-success: var(--toastify-color-success);
  --toastify-color-progress-warning: var(--toastify-color-warning);
  --toastify-color-progress-error: var(--toastify-color-error);
}

.Toastify__toast-container {
  z-index: var(--toastify-z-index);
  -webkit-transform: translate3d(0, 0, var(--toastify-z-index));
  width: var(--toastify-toast-width);
  box-sizing: border-box;
  color: #fff;
  padding: 4px;
  position: fixed;
}

.Toastify__toast-container--top-left {
  top: 1em;
  left: 1em;
}

.Toastify__toast-container--top-center {
  top: 1em;
  left: 50%;
  transform: translateX(-50%);
}

.Toastify__toast-container--top-right {
  top: 1em;
  right: 1em;
}

.Toastify__toast-container--bottom-left {
  bottom: 1em;
  left: 1em;
}

.Toastify__toast-container--bottom-center {
  bottom: 1em;
  left: 50%;
  transform: translateX(-50%);
}

.Toastify__toast-container--bottom-right {
  bottom: 1em;
  right: 1em;
}

@media only screen and (max-width: 480px) {
  .Toastify__toast-container {
    width: 100vw;
    margin: 0;
    padding: 0;
    left: 0;
  }

  .Toastify__toast-container--top-left, .Toastify__toast-container--top-center, .Toastify__toast-container--top-right {
    top: 0;
    transform: translateX(0);
  }

  .Toastify__toast-container--bottom-left, .Toastify__toast-container--bottom-center, .Toastify__toast-container--bottom-right {
    bottom: 0;
    transform: translateX(0);
  }

  .Toastify__toast-container--rtl {
    right: 0;
    left: initial;
  }
}

.Toastify__toast {
  min-height: var(--toastify-toast-min-height);
  box-sizing: border-box;
  max-height: var(--toastify-toast-max-height);
  font-family: var(--toastify-font-family);
  cursor: default;
  direction: ltr;
  z-index: 0;
  border-radius: 4px;
  justify-content: space-between;
  margin-bottom: 1rem;
  padding: 8px;
  display: flex;
  position: relative;
  overflow: hidden;
  box-shadow: 0 1px 10px #0000001a, 0 2px 15px #0000000d;
}

.Toastify__toast--rtl {
  direction: rtl;
}

.Toastify__toast--close-on-click {
  cursor: pointer;
}

.Toastify__toast-body {
  flex: auto;
  align-items: center;
  margin: auto 0;
  padding: 6px;
  display: flex;
}

.Toastify__toast-body > div:last-child {
  word-break: break-word;
  flex: 1;
}

.Toastify__toast-icon {
  -webkit-margin-end: 10px;
  width: 20px;
  flex-shrink: 0;
  margin-inline-end: 10px;
  display: flex;
}

.Toastify--animate {
  animation-duration: .7s;
  animation-fill-mode: both;
}

.Toastify--animate-icon {
  animation-duration: .3s;
  animation-fill-mode: both;
}

@media only screen and (max-width: 480px) {
  .Toastify__toast {
    border-radius: 0;
    margin-bottom: 0;
  }
}

.Toastify__toast-theme--dark {
  background: var(--toastify-color-dark);
  color: var(--toastify-text-color-dark);
}

.Toastify__toast-theme--light, .Toastify__toast-theme--colored.Toastify__toast--default {
  background: var(--toastify-color-light);
  color: var(--toastify-text-color-light);
}

.Toastify__toast-theme--colored.Toastify__toast--info {
  color: var(--toastify-text-color-info);
  background: var(--toastify-color-info);
}

.Toastify__toast-theme--colored.Toastify__toast--success {
  color: var(--toastify-text-color-success);
  background: var(--toastify-color-success);
}

.Toastify__toast-theme--colored.Toastify__toast--warning {
  color: var(--toastify-text-color-warning);
  background: var(--toastify-color-warning);
}

.Toastify__toast-theme--colored.Toastify__toast--error {
  color: var(--toastify-text-color-error);
  background: var(--toastify-color-error);
}

.Toastify__progress-bar-theme--light {
  background: var(--toastify-color-progress-light);
}

.Toastify__progress-bar-theme--dark {
  background: var(--toastify-color-progress-dark);
}

.Toastify__progress-bar--info {
  background: var(--toastify-color-progress-info);
}

.Toastify__progress-bar--success {
  background: var(--toastify-color-progress-success);
}

.Toastify__progress-bar--warning {
  background: var(--toastify-color-progress-warning);
}

.Toastify__progress-bar--error {
  background: var(--toastify-color-progress-error);
}

.Toastify__progress-bar-theme--colored.Toastify__progress-bar--info, .Toastify__progress-bar-theme--colored.Toastify__progress-bar--success, .Toastify__progress-bar-theme--colored.Toastify__progress-bar--warning, .Toastify__progress-bar-theme--colored.Toastify__progress-bar--error {
  background: var(--toastify-color-transparent);
}

.Toastify__close-button {
  color: #fff;
  cursor: pointer;
  opacity: .7;
  background: none;
  border: none;
  outline: none;
  align-self: flex-start;
  padding: 0;
  transition: all .3s;
}

.Toastify__close-button--light {
  color: #000;
  opacity: .3;
}

.Toastify__close-button > svg {
  fill: currentColor;
  height: 16px;
  width: 14px;
}

.Toastify__close-button:hover, .Toastify__close-button:focus {
  opacity: 1;
}

@keyframes Toastify__trackProgress {
  0% {
    transform: scaleX(1);
  }

  100% {
    transform: scaleX(0);
  }
}

.Toastify__progress-bar {
  width: 100%;
  height: 5px;
  z-index: var(--toastify-z-index);
  opacity: .7;
  transform-origin: 0;
  position: absolute;
  bottom: 0;
  left: 0;
}

.Toastify__progress-bar--animated {
  animation: linear forwards Toastify__trackProgress;
}

.Toastify__progress-bar--controlled {
  transition: transform .2s;
}

.Toastify__progress-bar--rtl {
  right: 0;
  left: initial;
  transform-origin: 100%;
}

.Toastify__spinner {
  width: 20px;
  height: 20px;
  box-sizing: border-box;
  border: 2px solid;
  border-color: var(--toastify-spinner-color-empty-area);
  border-right-color: var(--toastify-spinner-color);
  border-radius: 100%;
  animation: .65s linear infinite Toastify__spin;
}

@keyframes Toastify__bounceInRight {
  from, 60%, 75%, 90%, to {
    animation-timing-function: cubic-bezier(.215, .61, .355, 1);
  }

  from {
    opacity: 0;
    transform: translate3d(3000px, 0, 0);
  }

  60% {
    opacity: 1;
    transform: translate3d(-25px, 0, 0);
  }

  75% {
    transform: translate3d(10px, 0, 0);
  }

  90% {
    transform: translate3d(-5px, 0, 0);
  }

  to {
    transform: none;
  }
}

@keyframes Toastify__bounceOutRight {
  20% {
    opacity: 1;
    transform: translate3d(-20px, 0, 0);
  }

  to {
    opacity: 0;
    transform: translate3d(2000px, 0, 0);
  }
}

@keyframes Toastify__bounceInLeft {
  from, 60%, 75%, 90%, to {
    animation-timing-function: cubic-bezier(.215, .61, .355, 1);
  }

  0% {
    opacity: 0;
    transform: translate3d(-3000px, 0, 0);
  }

  60% {
    opacity: 1;
    transform: translate3d(25px, 0, 0);
  }

  75% {
    transform: translate3d(-10px, 0, 0);
  }

  90% {
    transform: translate3d(5px, 0, 0);
  }

  to {
    transform: none;
  }
}

@keyframes Toastify__bounceOutLeft {
  20% {
    opacity: 1;
    transform: translate3d(20px, 0, 0);
  }

  to {
    opacity: 0;
    transform: translate3d(-2000px, 0, 0);
  }
}

@keyframes Toastify__bounceInUp {
  from, 60%, 75%, 90%, to {
    animation-timing-function: cubic-bezier(.215, .61, .355, 1);
  }

  from {
    opacity: 0;
    transform: translate3d(0, 3000px, 0);
  }

  60% {
    opacity: 1;
    transform: translate3d(0, -20px, 0);
  }

  75% {
    transform: translate3d(0, 10px, 0);
  }

  90% {
    transform: translate3d(0, -5px, 0);
  }

  to {
    transform: translate3d(0, 0, 0);
  }
}

@keyframes Toastify__bounceOutUp {
  20% {
    transform: translate3d(0, -10px, 0);
  }

  40%, 45% {
    opacity: 1;
    transform: translate3d(0, 20px, 0);
  }

  to {
    opacity: 0;
    transform: translate3d(0, -2000px, 0);
  }
}

@keyframes Toastify__bounceInDown {
  from, 60%, 75%, 90%, to {
    animation-timing-function: cubic-bezier(.215, .61, .355, 1);
  }

  0% {
    opacity: 0;
    transform: translate3d(0, -3000px, 0);
  }

  60% {
    opacity: 1;
    transform: translate3d(0, 25px, 0);
  }

  75% {
    transform: translate3d(0, -10px, 0);
  }

  90% {
    transform: translate3d(0, 5px, 0);
  }

  to {
    transform: none;
  }
}

@keyframes Toastify__bounceOutDown {
  20% {
    transform: translate3d(0, 10px, 0);
  }

  40%, 45% {
    opacity: 1;
    transform: translate3d(0, -20px, 0);
  }

  to {
    opacity: 0;
    transform: translate3d(0, 2000px, 0);
  }
}

.Toastify__bounce-enter--top-left, .Toastify__bounce-enter--bottom-left {
  animation-name: Toastify__bounceInLeft;
}

.Toastify__bounce-enter--top-right, .Toastify__bounce-enter--bottom-right {
  animation-name: Toastify__bounceInRight;
}

.Toastify__bounce-enter--top-center {
  animation-name: Toastify__bounceInDown;
}

.Toastify__bounce-enter--bottom-center {
  animation-name: Toastify__bounceInUp;
}

.Toastify__bounce-exit--top-left, .Toastify__bounce-exit--bottom-left {
  animation-name: Toastify__bounceOutLeft;
}

.Toastify__bounce-exit--top-right, .Toastify__bounce-exit--bottom-right {
  animation-name: Toastify__bounceOutRight;
}

.Toastify__bounce-exit--top-center {
  animation-name: Toastify__bounceOutUp;
}

.Toastify__bounce-exit--bottom-center {
  animation-name: Toastify__bounceOutDown;
}

@keyframes Toastify__zoomIn {
  from {
    opacity: 0;
    transform: scale3d(.3, .3, .3);
  }

  50% {
    opacity: 1;
  }
}

@keyframes Toastify__zoomOut {
  from {
    opacity: 1;
  }

  50% {
    opacity: 0;
    transform: scale3d(.3, .3, .3);
  }

  to {
    opacity: 0;
  }
}

.Toastify__zoom-enter {
  animation-name: Toastify__zoomIn;
}

.Toastify__zoom-exit {
  animation-name: Toastify__zoomOut;
}

@keyframes Toastify__flipIn {
  from {
    opacity: 0;
    animation-timing-function: ease-in;
    transform: perspective(400px)rotate3d(1, 0, 0, 90deg);
  }

  40% {
    animation-timing-function: ease-in;
    transform: perspective(400px)rotate3d(1, 0, 0, -20deg);
  }

  60% {
    opacity: 1;
    transform: perspective(400px)rotate3d(1, 0, 0, 10deg);
  }

  80% {
    transform: perspective(400px)rotate3d(1, 0, 0, -5deg);
  }

  to {
    transform: perspective(400px);
  }
}

@keyframes Toastify__flipOut {
  from {
    transform: perspective(400px);
  }

  30% {
    opacity: 1;
    transform: perspective(400px)rotate3d(1, 0, 0, -20deg);
  }

  to {
    opacity: 0;
    transform: perspective(400px)rotate3d(1, 0, 0, 90deg);
  }
}

.Toastify__flip-enter {
  animation-name: Toastify__flipIn;
}

.Toastify__flip-exit {
  animation-name: Toastify__flipOut;
}

@keyframes Toastify__slideInRight {
  from {
    visibility: visible;
    transform: translate3d(110%, 0, 0);
  }

  to {
    transform: translate3d(0, 0, 0);
  }
}

@keyframes Toastify__slideInLeft {
  from {
    visibility: visible;
    transform: translate3d(-110%, 0, 0);
  }

  to {
    transform: translate3d(0, 0, 0);
  }
}

@keyframes Toastify__slideInUp {
  from {
    visibility: visible;
    transform: translate3d(0, 110%, 0);
  }

  to {
    transform: translate3d(0, 0, 0);
  }
}

@keyframes Toastify__slideInDown {
  from {
    visibility: visible;
    transform: translate3d(0, -110%, 0);
  }

  to {
    transform: translate3d(0, 0, 0);
  }
}

@keyframes Toastify__slideOutRight {
  from {
    transform: translate3d(0, 0, 0);
  }

  to {
    visibility: hidden;
    transform: translate3d(110%, 0, 0);
  }
}

@keyframes Toastify__slideOutLeft {
  from {
    transform: translate3d(0, 0, 0);
  }

  to {
    visibility: hidden;
    transform: translate3d(-110%, 0, 0);
  }
}

@keyframes Toastify__slideOutDown {
  from {
    transform: translate3d(0, 0, 0);
  }

  to {
    visibility: hidden;
    transform: translate3d(0, 500px, 0);
  }
}

@keyframes Toastify__slideOutUp {
  from {
    transform: translate3d(0, 0, 0);
  }

  to {
    visibility: hidden;
    transform: translate3d(0, -500px, 0);
  }
}

.Toastify__slide-enter--top-left, .Toastify__slide-enter--bottom-left {
  animation-name: Toastify__slideInLeft;
}

.Toastify__slide-enter--top-right, .Toastify__slide-enter--bottom-right {
  animation-name: Toastify__slideInRight;
}

.Toastify__slide-enter--top-center {
  animation-name: Toastify__slideInDown;
}

.Toastify__slide-enter--bottom-center {
  animation-name: Toastify__slideInUp;
}

.Toastify__slide-exit--top-left, .Toastify__slide-exit--bottom-left {
  animation-name: Toastify__slideOutLeft;
}

.Toastify__slide-exit--top-right, .Toastify__slide-exit--bottom-right {
  animation-name: Toastify__slideOutRight;
}

.Toastify__slide-exit--top-center {
  animation-name: Toastify__slideOutUp;
}

.Toastify__slide-exit--bottom-center {
  animation-name: Toastify__slideOutDown;
}

@keyframes Toastify__spin {
  from {
    transform: rotate(0);
  }

  to {
    transform: rotate(360deg);
  }
}

.CQkswq_form {
  width: 100%;
  background: #fff;
  border-radius: 16px;
  flex-direction: column;
  padding: 36px;
  display: flex;
}

@media screen and (max-width: 600px) {
  .CQkswq_form {
    padding: 24px;
  }
}

.field-title {
  color: #000;
  font-size: 15px;
  font-weight: 500;
  line-height: 20px;
}

.smart-captcha {
  margin-top: 20px;
}

.rc-slider {
  width: 100%;
  height: 14px;
  touch-action: none;
  box-sizing: border-box;
  -webkit-tap-highlight-color: #0000;
  border-radius: 6px;
  margin-bottom: 20px;
  padding: 5px 0;
  position: relative;
}

.rc-slider * {
  box-sizing: border-box;
  -webkit-tap-highlight-color: #0000;
}

.rc-slider-rail {
  width: 100%;
  height: 4px;
  background-color: #e9e9e9;
  border-radius: 6px;
  position: absolute;
}

.rc-slider-track {
  height: 4px;
  background-color: #87043f;
  border-radius: 6px;
  position: absolute;
}

.rc-slider-handle {
  width: 14px;
  height: 14px;
  cursor: pointer;
  cursor: -webkit-grab;
  cursor: grab;
  touch-action: pan-x;
  background-color: #87043f;
  border: 2px solid #87043f;
  border-radius: 50%;
  margin-top: -5px;
  position: absolute;
}

.rc-slider-handle-dragging.rc-slider-handle-dragging.rc-slider-handle-dragging {
  border-color: #760135;
}

.rc-slider-handle:focus {
  box-shadow: none;
  outline: none;
}

.rc-slider-handle:focus-visible {
  border-color: #760135;
  box-shadow: 0 0 0 3px #87043f;
}

.rc-slider-handle-click-focused:focus {
  box-shadow: unset;
  border-color: #87043f;
}

.rc-slider-handle:hover {
  border-color: #760135;
}

.rc-slider-handle:active {
  cursor: -webkit-grabbing;
  cursor: grabbing;
  border-color: #760135;
}

.rc-slider-mark {
  width: 100%;
  font-size: 12px;
  position: absolute;
  top: 18px;
  left: 0;
}

.rc-slider-mark-text {
  color: #999;
  text-align: center;
  vertical-align: middle;
  cursor: pointer;
  display: inline-block;
  position: absolute;
}

.rc-slider-mark-text:first-child {
  transform: translateX(0%) !important;
}

.rc-slider-mark-text:last-child {
  white-space: nowrap;
  transform: translateX(-100%) !important;
}

.rc-slider-mark-text-active {
  color: #666;
}

.rc-slider-step {
  width: 100%;
  height: 4px;
  pointer-events: none;
  background: none;
  position: absolute;
}

.rc-slider-dot {
  width: 8px;
  height: 8px;
  vertical-align: middle;
  cursor: pointer;
  background-color: #fff;
  border: 2px solid #e9e9e9;
  border-radius: 50%;
  position: absolute;
  bottom: -2px;
}

.rc-slider-dot-active {
  border-color: #87043f;
}

.rc-slider-dot-reverse {
  margin-right: -4px;
}

.rc-slider-disabled {
  background-color: #e9e9e9;
}

.rc-slider-disabled .rc-slider-track {
  background-color: #ccc;
}

.rc-slider-disabled .rc-slider-handle, .rc-slider-disabled .rc-slider-dot {
  box-shadow: none;
  cursor: not-allowed;
  background-color: #fff;
  border-color: #ccc;
}

.rc-slider-disabled .rc-slider-mark-text, .rc-slider-disabled .rc-slider-dot {
  cursor: not-allowed !important;
}

.rc-slider-vertical {
  width: 14px;
  height: 100%;
  padding: 0 5px;
}

.rc-slider-vertical .rc-slider-rail {
  width: 4px;
  height: 100%;
}

.rc-slider-vertical .rc-slider-track {
  width: 4px;
  bottom: 0;
  left: 5px;
}

.rc-slider-vertical .rc-slider-handle {
  touch-action: pan-y;
  margin-top: 0;
  margin-left: -5px;
}

.rc-slider-vertical .rc-slider-mark {
  height: 100%;
  top: 0;
  left: 18px;
}

.rc-slider-vertical .rc-slider-step {
  width: 4px;
  height: 100%;
}

.rc-slider-vertical .rc-slider-dot {
  margin-left: -2px;
}

.rc-slider-tooltip-zoom-down-enter, .rc-slider-tooltip-zoom-down-appear, .rc-slider-tooltip-zoom-down-leave {
  animation-duration: .3s;
  animation-play-state: paused;
  animation-fill-mode: both;
  display: block !important;
}

.rc-slider-tooltip-zoom-down-enter.rc-slider-tooltip-zoom-down-enter-active, .rc-slider-tooltip-zoom-down-appear.rc-slider-tooltip-zoom-down-appear-active {
  animation-name: rcSliderTooltipZoomDownIn;
  animation-play-state: running;
}

.rc-slider-tooltip-zoom-down-leave.rc-slider-tooltip-zoom-down-leave-active {
  animation-name: rcSliderTooltipZoomDownOut;
  animation-play-state: running;
}

.rc-slider-tooltip-zoom-down-enter, .rc-slider-tooltip-zoom-down-appear {
  animation-timing-function: cubic-bezier(.23, 1, .32, 1);
  transform: scale(0);
}

.rc-slider-tooltip-zoom-down-leave {
  animation-timing-function: cubic-bezier(.755, .05, .855, .06);
}

@keyframes rcSliderTooltipZoomDownIn {
  0% {
    transform-origin: 50% 100%;
    opacity: 0;
    transform: scale(0);
  }

  100% {
    transform-origin: 50% 100%;
    transform: scale(1);
  }
}

@keyframes rcSliderTooltipZoomDownOut {
  0% {
    transform-origin: 50% 100%;
    transform: scale(1);
  }

  100% {
    transform-origin: 50% 100%;
    opacity: 0;
    transform: scale(0);
  }
}

.rc-slider-tooltip {
  visibility: visible;
  box-sizing: border-box;
  -webkit-tap-highlight-color: #0000;
  position: absolute;
  top: -9999px;
  left: -9999px;
}

.rc-slider-tooltip * {
  box-sizing: border-box;
  -webkit-tap-highlight-color: #0000;
}

.rc-slider-tooltip-hidden {
  display: none;
}

.rc-slider-tooltip-placement-top {
  padding: 4px 0 8px;
}

.rc-slider-tooltip-inner {
  min-width: 24px;
  height: 24px;
  color: #fff;
  text-align: center;
  background-color: #6c6c6c;
  border-radius: 6px;
  padding: 6px 2px;
  font-size: 12px;
  line-height: 1;
  text-decoration: none;
  box-shadow: 0 0 4px #d9d9d9;
}

.rc-slider-tooltip-arrow {
  width: 0;
  height: 0;
  border-style: solid;
  border-color: #0000;
  position: absolute;
}

.rc-slider-tooltip-placement-top .rc-slider-tooltip-arrow {
  border-width: 4px 4px 0;
  border-top-color: #6c6c6c;
  margin-left: -4px;
  bottom: 4px;
  left: 50%;
}

.Jjq1oa_preloaderWrap {
  width: 100%;
  min-height: 300px;
  justify-content: center;
  align-items: center;
  display: flex;
}

.Jjq1oa_preloader {
  border: 5px dashed var(--color-primary);
  border-radius: 50%;
  animation: 3s linear infinite Jjq1oa_preloader;
}

@keyframes Jjq1oa_preloader {
  0% {
    width: 100px;
    height: 100px;
    transform: rotate(0);
  }

  50% {
    width: 150px;
    height: 150px;
  }

  100% {
    width: 100px;
    height: 100px;
    transform: rotate(360deg);
  }
}

.EMis1W_formFooter {
  border-top: 1px solid #9b9da336;
  align-items: center;
  gap: 10px;
  margin-top: 24px;
  padding-top: 24px;
  display: flex;
}

.EMis1W_formNotice {
  text-align: right;
  color: #a0a2a8;
  flex: 1;
  font-size: 10px;
  font-weight: 400;
  line-height: 13px;
}

.EMis1W_formButton {
  text-align: center;
  min-width: 251px;
  color: #fff;
  cursor: pointer;
  background: #760135;
  border: none;
  border-radius: 8px;
  outline: none;
  padding: 14px 24px;
  font-size: 15px;
  font-weight: 500;
  line-height: 20px;
}

@media screen and (max-width: 500px) {
  .EMis1W_formFooter {
    border-top: none;
    flex-direction: column-reverse;
    padding-top: 0;
  }

  .EMis1W_formButton {
    width: 100%;
  }

  .EMis1W_formNotice {
    text-align: center;
  }
}

.p6PCKW_msgError {
  color: red;
  margin-top: 10px;
}

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

.LSAhDq_section:not(:first-child) {
  border-top: 1px solid #9b9da336;
  margin-top: 24px;
  padding-top: 24px;
}

.LSAhDq_sectionTitle {
  color: #760135;
  font-size: 24px;
  font-weight: 500;
  line-height: 31px;
}

.LSAhDq_addItemBtn {
  color: #fff;
  border-radius: 8px;
  align-self: flex-start;
  padding: 8px 24px;
  font-size: 15px;
  font-weight: 500;
  line-height: 20px;
}

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

.yOGMma_twoFields {
  gap: 16px;
  display: flex;
}

@media screen and (max-width: 500px) {
  .yOGMma_twoFields {
    flex-direction: column;
  }
}

.ApLNzW_selectWrap {
  flex-direction: column;
  flex: 1;
  gap: 8px;
  display: flex;
}

.ApLNzW_formSelectContainer.ApLNzW_inputError {
  border-style: solid;
  border-width: 1px;
  border-color: var(--сolor-error);
  border-radius: 8px;
}

.ApLNzW_errorMessage {
  color: var(--сolor-error);
  margin-top: -8px;
  font-size: 13px;
  font-weight: 400;
  line-height: 18px;
}

.form-select-container {
  font-size: 13px !important;
  font-weight: 400 !important;
  line-height: 18px !important;
}

.form-select__control {
  background: #f3f3f5 !important;
  border: 1px solid #ecedf0 !important;
  border-radius: 8px !important;
}

.form-select__control--is-focused {
  box-shadow: none !important;
}

.form-select__placeholder {
  margin-left: 0 !important;
}

.form-select__value-container {
  padding: 11px 16px !important;
}

.form-select__input-container {
  margin: 0 !important;
  padding: 0 !important;
}

.form-select__indicator-separator {
  display: none !important;
}

.form-select__indicator {
  padding: 11px 16px !important;
}

.form-select__menu {
  background: #fff !important;
  border-radius: 8px !important;
  padding: 8px 8px 8px 16px !important;
  box-shadow: 0 4px 25px #0000001a !important;
}

.form-select__menu-list {
  max-height: 150px !important;
  scroll-behavior: smooth !important;
  padding-right: 8px !important;
}

.form-select__menu-list::-webkit-scrollbar {
  width: 5px;
  background: #ecedf0;
  border-radius: 8px;
}

.form-select__menu-list::-webkit-scrollbar-thumb {
  width: 5px;
  background: #cfd1d6;
  border-radius: 8px;
}

.form-select__option {
  cursor: pointer !important;
  cursor: pointer !important;
  color: #000 !important;
  background-color: #fff !important;
  border-radius: 4px !important;
}

.form-select__option:hover, .form-select__option--is-selected {
  background-color: #f3f3f5 !important;
}

.xiJZSG_inputWrap {
  flex-direction: column;
  flex: 1;
  gap: 8px;
  display: flex;
}

.xiJZSG_input {
  width: 100%;
  color: #000;
  background: #f3f3f5;
  border: 1px solid #ecedf0;
  border-radius: 8px;
  padding: 11px 16px;
  font-size: 13px;
  font-weight: 400;
  line-height: 18px;
}

.xiJZSG_input::placeholder {
  color: #797a80;
}

.xiJZSG_input.xiJZSG_inputError {
  border-color: var(--сolor-error);
}

.xiJZSG_errorMessage {
  color: var(--сolor-error);
  margin-top: -8px;
  font-size: 13px;
  font-weight: 400;
  line-height: 18px;
}

.DM6IEW_textareaWrap {
  flex-direction: column;
  flex: 1;
  gap: 8px;
  display: flex;
}

.DM6IEW_textarea {
  width: 100%;
  min-height: 73px;
  color: #000;
  resize: vertical;
  background: #f3f3f5;
  border: 1px solid #ecedf0;
  border-radius: 8px;
  padding: 11px 16px;
  font-size: 13px;
  font-weight: 400;
  line-height: 18px;
}

.CqQPkq_checkboxWrap {
  flex-direction: row;
  flex: 1;
  align-items: center;
  display: flex;
}

.CqQPkq_checkboxTitle {
  color: #000;
  cursor: pointer;
  font-size: 15px;
  font-weight: 400;
  line-height: 20px;
}

.CqQPkq_checkbox {
  appearance: none;
  width: 24px;
  height: 24px;
  border: 1px solid var(--color-primary);
  cursor: pointer;
  background: #fff;
  border-radius: 4px;
  outline: none;
  flex: 0 0 24px;
  margin-right: 16px;
}

.CqQPkq_checkbox:checked {
  background-color: var(--color-primary);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  position: relative;
}

.CqQPkq_errorMessage {
  color: var(--сolor-error);
  margin-top: -8px;
  font-size: 13px;
  font-weight: 400;
  line-height: 18px;
}

.CecCCG_inputWrap {
  flex-direction: column;
  flex: 1;
  gap: 8px;
  display: flex;
}

.CecCCG_inputRangeWrap {
  justify-content: space-between;
  align-items: center;
  display: flex;
}

.CecCCG_input {
  text-align: right;
  width: 150px;
  border: 0;
  font-family: IBM Plex Sans, sans-serif;
  font-size: 24px;
  font-weight: 500;
  line-height: 31px;
}

.CecCCG_inputRangeLabel {
  justify-content: flex-end;
  font-size: 24px;
  font-weight: 500;
  line-height: 31px;
  display: flex;
}

.CecCCG_inputRangeLabelText {
  margin-left: 5px;
}

.CecCCG_input::placeholder {
  color: #797a80;
}

.CecCCG_input.CecCCG_inputError {
  border-color: var(--сolor-error);
}

.CecCCG_errorMessage {
  color: var(--сolor-error);
  margin-top: -8px;
  font-size: 13px;
  font-weight: 400;
  line-height: 18px;
}

._2E3_BW_inputWrap {
  flex-direction: column;
  flex: 1;
  gap: 8px;
  display: flex;
}

._2E3_BW_input {
  text-align: right;
  width: 150px;
  border: 0;
  font-family: IBM Plex Sans, sans-serif;
  font-size: 24px;
  font-weight: 500;
  line-height: 31px;
}

._2E3_BW_inputFileLabel {
  color: #760135;
  cursor: pointer;
  text-decoration-line: underline;
}

._2E3_BW_file {
  display: none;
}

._2E3_BW_input._2E3_BW_inputError {
  border-color: var(--сolor-error);
}

._2E3_BW_errorMessage {
  color: var(--сolor-error);
  margin-top: -8px;
  font-size: 13px;
  font-weight: 400;
  line-height: 18px;
}

.SzKOxq_inputWrap {
  flex-direction: column;
  flex: 1;
  gap: 8px;
  display: flex;
}

.SzKOxq_input {
  width: 100%;
  color: #000;
  background: #f3f3f5;
  border: 1px solid #ecedf0;
  border-radius: 8px;
  padding: 11px 16px;
  font-size: 13px;
  font-weight: 400;
  line-height: 18px;
}

.SzKOxq_input::placeholder {
  color: #797a80;
}

.SzKOxq_input.SzKOxq_inputError {
  border-color: var(--сolor-error);
}

.SzKOxq_errorMessage {
  color: var(--сolor-error);
  margin-top: -8px;
  font-size: 13px;
  font-weight: 400;
  line-height: 18px;
}

.mdqv-q_noticeWrap {
  width: 100%;
  color: #a5a7ad;
  background: #fff;
  border-radius: 16px;
  padding: 32px;
  font-size: 10px;
  font-weight: 400;
  line-height: 13px;
}

@media screen and (max-width: 600px) {
  .mdqv-q_noticeWrap {
    padding: 24px;
  }
}

._0tdJla_serviceWrap {
  width: 100%;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 16px;
  align-items: center;
  gap: 15px;
  padding: 21px 24px;
  display: flex;
}

._0tdJla_serviceBody {
  flex-direction: column;
  flex: 1;
  justify-content: space-between;
  gap: 8px;
  font-size: 15px;
  line-height: 20px;
  display: flex;
}

._0tdJla_serviceTitle {
  color: #111;
  font-weight: 500;
}

._0tdJla_blueText {
  color: #2466af;
}

._0tdJla_redText {
  color: #cd3253;
}

._0tdJla_serviceDesc {
  color: #606266;
  font-weight: 400;
}

._0tdJla_logout {
  text-decoration-line: underline;
  -webkit-text-decoration-color: var(--color-primary);
  text-decoration-color: var(--color-primary);
  color: var(--color-primary);
  cursor: pointer;
  align-self: flex-start;
  font-weight: 500;
  transition: text-decoration-color .2s;
}

._0tdJla_logout ._0tdJla_authorisedIcon, ._0tdJla_unauthorisedIcon {
  width: 44px;
  height: 44px;
  border-radius: 30px;
  justify-content: center;
  align-items: center;
  display: flex;
}

._0tdJla_authorisedIcon {
  background: #f9f9fa;
  border: 1px solid #ecedf0;
}

._0tdJla_unauthorisedIcon {
  cursor: pointer;
  background: #cfd1d6;
  transition: background .15s;
}

._0tdJla_unauthorisedIcon:hover {
  background: #c2c2c5;
}

@media screen and (max-width: 600px) {
  ._0tdJla_serviceWrap {
    padding: 24px;
  }
}

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

/* End */


/* Start:/local/templates/solid_v2/components/bitrix/menu/main_menu/style.css?16919722781314*/
.site-sections {
	display: flex;
}

.site-section {
	position: relative;
	padding: 16px 16px;
	font-weight: 400;
	font-size: 15px;
	line-height: 20px;
	color: #7e7f85;
	white-space: nowrap;
	transition: color 0.2s;
}

.site-section:hover {
	color: #000000;
}

.site-section:first-child {
	padding-left: 0;
}

.site-section:not(:last-child):after {
	content: '';
	position: absolute;
	right: 0;
	top: 50%;
	transform: translateY(-50%);
	width: 1px;
	height: 20px;
	background-color: #e0e1e6;
}

.site-section_active {
	/*font-weight: 500;*/
	color: #000000;
}

.site-section_active:before {
	content: '';
	position: absolute;
	left: 0;
	bottom: -1px;
	width: 100%;
	height: 2px;
	background-color: var(--color-primary);
}

@media screen and (max-width: 800px) {

	.site-sections {
		display: flex;
		justify-content: center;
		width: 100%;
	}

	.site-section {
		display: none;
	}

	.site-section:nth-child(1),
	.site-section:nth-child(2) {
		display: flex;
		justify-content: center;
		width: 50%;
		padding: 16px 0;
	}

	.site-section:nth-child(1):after {
		content: '';
		height: 100%;
	}

	.site-section:nth-child(2):after {
		content: '';
		display: none;
	}

	.site-section_active:before {
		content: '';
		display: none;
	}
}
/* End */


/* Start:/local/templates/solid_v2/components/bitrix/menu/header_info_menu/style.css?16919722781293*/
.swiper.header__swiper {
	width: 100%;
	overflow: visible;
}

.swiper-slide.header__info-item {
	width: auto;
}

.header__info-list {
	display: flex;
	align-items: center;
}

.swiper-slide.header__info-item {
	width: auto;
	display: flex;
	align-items: center;
	margin-right: 16px;
	font-weight: 400;
	font-size: 15px;
	line-height: 20px;
	transform: none;
	transition: 0.3s;
}

.swiper-backface-hidden .swiper-slide.header__info-item {
	transform: none;
}

.header__info-link {
	color: var(--сolor-text);
}

.header__info-item:last-child {
	margin-right: 0;
	position: relative;
	z-index: 20;
}

.header__info-item:last-child .header__info-link {
	position: relative;
	display: flex;
	align-items: center;
	margin-right: 32px;
	padding-right: 20px;
	cursor: pointer;
}

.header__info-item:last-child .header__info-link:before {
	content: ' ';
	position: absolute;
	right: 0;
	top: 2px;
	width: 16px;
	height: 16px;
	background: url('/local/templates/solid_v2/components/bitrix/menu/header_info_menu/./images/small-arrow-down.svg') center no-repeat;
}

.header__info-item:last-child .header__info-link img {
	padding: 2px 0 0 4px;
}

@media screen and (max-width: 560px) {
	.header__swiper .header__info-list {
		overflow: visible;
		width: calc(100% + 100px);
		padding: 0 16px 16px;
	}
}
/* End */


/* Start:/local/templates/solid_v2/components/bitrix/menu/header_menu/style.css?16919722783929*/
.header-menu {
    position: relative;
    flex: 1 1 100%;
    background: #FFFFFF;
}

.header-menu_open {
    max-height: 1500px;
}

.header-menu__logo-slice,
.header-menu__call-slice,
.header-menu__city-slice,
.menu-city__head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px;
    border-bottom: solid 1px #ECEDF0;
}

.header-menu__city-slice {
    padding: 0 16px;
}

.header-menu__city-slice .header__location {
    flex: 1;
    display: flex;
    justify-content: space-between;
    margin-left: 0;
    padding: 25px 0 25px 24px;
    font-weight: 500;
    font-size: 17px;
    line-height: 22px;
    color: var(--color-primary);
    cursor: pointer;
}

.header-menu__city-slice .header__location:before {
    top: 25px;
    background-image: url("/local/templates/solid_v2/images/icons/location.svg");
}

.menu-city {
    position: absolute;
    z-index: 22;
    top: 0;
    left: 0;
    width: 100%;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s;
    background: #FFFFFF;
}

.menu-city.header-menu_open {
    min-height: 100vh;
}

.menu-city__head p {
    font-weight: 500;
    font-size: 17px;
    line-height: 22px;
    color: #000000;
}

.menu-city__head svg {
    cursor: pointer;
}

.menu-city__input-wrap {
    padding: 24px 16px 8px;
}

.menu-city__input {
    width: 100%;
    padding: 11px 16px;
    border-radius: 8px;
    border: 1px solid #ECEDF0;
    background: #F3F3F5;
    color: #000000;
}

.menu-city__input::placeholder {
    color: #000000;
}

.menu-city__list {
    display: flex;
    flex-direction: column;
    padding: 0 16px;
    overflow: auto;
    max-height: calc(100vh - 135px);
}

.menu-city__list::-webkit-scrollbar {
    width: 7px;
    background-color: #FFFFFF;
    border-radius: 5px;
}

.menu-city__list::-webkit-scrollbar-thumb {
    background-color: #CCCCCC;
    border-radius: 5px;
}

.menu-city__item {
    padding: 16px 0;
    border-bottom: solid 1px #ECEDF0;
    font-weight: 500;
    font-size: 17px;
    line-height: 22px;
    color: #000000;
    cursor: pointer;
}

.menu-city__item:last-child {
    border-bottom: none;
}

.header-menu__section-slice {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0;
    border-bottom: solid 1px #e0e1e6;
    transition: padding 0.2s;
}

.header-menu__call-slice .header-call-modal,
.header-menu__call-slice .header-call-success-modal {
    left: 0;
}

.header-menu__logo-slice a {
    width: 130px;
    height: 30px;
}

.header-menu__logo-slice a img {
    object-fit: contain;
    height: 30px;
}

.header-menu__logo-slice svg {
    cursor: pointer;
}

.header-menu__list {
    display: flex;
    flex-direction: column;
    width: 100%;
    padding: 16px 16px 0;
}

.header-menu__item {
    padding-top: 8px;
    padding-bottom: 8px;
    font-weight: 500;
    font-size: 17px;
    line-height: 22px;
    transition: 0.3s;
}

.header-menu__item:first-child {
    padding-top: 0;
}

.header-menu__item:last-child {
    padding: 16px 16px;
    margin: 16px -16px 48px;
    border-top: 1px solid #E0E1E6;
    border-bottom: 1px solid #E0E1E6;
}

.header-menu__item:last-child svg {
    transform: rotate(90deg);
    transition: transform 0.2s;
}

.header-menu__item:last-child .footer__menu-open svg {
    transform: rotate(-90deg);
}

.header-menu__item .menu__title {
    padding: 0;
    font-weight: 500;
    font-size: 17px;
    line-height: 22px;
}

.header-menu__item .menu__item:first-child {
    padding-top: 16px;
}

.header-menu__item.menu .menu__list {
    padding-bottom: 0;
}

.header-menu__link {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #050505;
}
/* End */


/* Start:/local/templates/solid_v2/components/bitrix/news.list/page_banner/style.css?16919722782295*/
.header-banner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 19px 0 var(--margin-side);
    margin: var(--margin-top-banner) calc(-1 * var(--margin-side)) 0;
    background: url("/local/templates/solid_v2/components/bitrix/news.list/page_banner/../../../../images/banners/credits-banner-bg.png") center / cover no-repeat, linear-gradient(264.42deg, #FEE4FF 0%, #EFF9FF 100%);;
}

.header-banner__body {
    flex-direction: column;
    flex-grow: 1;
    position: relative;
    z-index: 1;
    color: #000000;
}

.header-banner__title {
    font-weight: 600;
    max-width: 600px;
    font-size: 38px;
    line-height: 49px;
}

.header-banner__desc {
    margin-top: 16px;
    font-weight: 400;
    font-size: 15px;
    line-height: 20px;
}

.header-banner__img {
    position: relative;
    flex-shrink: 0;
    width: 534px;
    height: 335px;
    margin: 22px 0 0px 50px;
    transition: margin 0.3s;
}

.header-banner__img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.header-banner__img:before {
    content: '';
    position: absolute;
    width: 112px;
    height: 143px;
    left: -340px;
    top: 50px;
    background: #A4C4FF;
    filter: blur(75px);
}

.header-banner__btn {
    display: inline-flex;
    margin-top: 24px;
    padding: 14px 56px;
    border-radius: 8px;
}

.main-banner__btn {
    display: inline-block;
    margin-top: 25px;
    padding: 14px 78px;
    border-radius: 8px;
}

@media screen and (max-width: 1080px) {
    .header-banner__img {
        margin-right: -212px;
    }

    .header-banner__img:before {
        left: -150px;
    }
}

@media screen and (max-width: 700px) {
    .header-banner {
        flex-direction: column;
        align-items: flex-start;
        justify-content: center;
        background: url("/local/templates/solid_v2/components/bitrix/news.list/page_banner/../../../../images/banners/credits-banner-bg.png") left center / cover no-repeat, linear-gradient(264.42deg, #FEE4FF 0%, #EFF9FF 100%);;
    }

    .header-banner__body {
        width: 100%;
        align-items: flex-start;
    }

    .header-banner__title {
        margin-top: 65px;
        font-size: 28px;
        line-height: 36px;
    }

    .header-banner__img {
        margin: 22px 0 17px;
        width: 100%;
        height: 185px;
    }

    .header-banner__img:before {
        left: 400px;
        top: -100px;
    }
}
/* End */
/* /local/templates/solid_v2/css/index.css?169197343845825 */
/* /local/templates/solid_v2/css/header.css?16919734509660 */
/* /local/templates/solid_v2/css/footer.css?16919734384976 */
/* /local/templates/solid_v2/css/common/detail-page.css?16919734506006 */
/* /local/templates/solid_v2/css/common/faq.css?16919734501851 */
/* /local/templates/solid_v2/css/common/documents.css?16919722781714 */
/* /local/templates/solid_v2/css/swiper-bundle.min.css?169197343817875 */
/* /local/templates/solid_v2/css/pages/cards.css?16919722786737 */
/* /local/react-apps/forms/dist/forms.css?169197227728873 */
/* /local/templates/solid_v2/components/bitrix/menu/main_menu/style.css?16919722781314 */
/* /local/templates/solid_v2/components/bitrix/menu/header_info_menu/style.css?16919722781293 */
/* /local/templates/solid_v2/components/bitrix/menu/header_menu/style.css?16919722783929 */
/* /local/templates/solid_v2/components/bitrix/news.list/page_banner/style.css?16919722782295 */
