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

* {
    margin: 0
}

body {
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
}

img, picture, video, canvas, svg {
    display: block;
    max-width: 100%
}

input, button, textarea, select {
    font: inherit
}

p, h1, h2, h3, h4, h5, h6 {
    overflow-wrap: break-word
}

p {
    text-wrap: pretty
}

h1, h2, h3, h4, h5, h6 {
    text-wrap: balance
}

#root, #__next {
    isolation: isolate
}

button {
    outline: none;
    border: none;
    cursor: pointer
}

.header {
    padding: 5px 0;
    display: flex;
    align-items: center;
    justify-content: space-between
}

.header__left {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 810px;
    width: 100%
}

.header__nav {
    display: flex;
    gap: 40px
}

.header__btns {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-shrink: 0
}

.header__btns a {
    width: 70px;
    height: 70px;
    background: #f2f5ff;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 30px
}

.select-dropdown {
    display: flex;
    gap: 8px;
    height: 70px;
    border-radius: 32px;
    position: relative;
    color: #53565a;
    border: 1px solid #265bff;
    padding-inline: 16px
}

.select-dropdown * {
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none
}

.select-dropdown.is-active input[type=text] {
    border-color: #00aeef;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0
}

.select-dropdown .dropdown-img {
    transition: .3s all linear
}

.select-dropdown.is-active .dropdown-img {
    top: 6px;
    transform: rotate(180deg)
}

.select-dropdown.is-active ul {
    display: block
}

.select-dropdown #js-ddInput {
    display: flex;
    border-radius: 8px 0 0 0;
    align-items: center;
    position: relative;
    z-index: 1;
    color: #265bff;
    font-family: "Montserrat", sans-serif;
    font-weight: 700;
    font-size: 16px;
    line-height: 100%;
    letter-spacing: 0;
    text-align: center;
    vertical-align: middle;
    border: none;
    text-overflow: ellipsis;
    width: auto;
    height: 32px;
    background: rgba(0, 0, 0, 0);
    cursor: pointer;
    user-select: none !important
}

.select-dropdown i {
    position: absolute;
    top: 6.5px;
    right: 5px
}

.select-dropdown ul {
    display: none;
    top: 75px;
    position: absolute;
    z-index: 999;
    background: rgba(0, 0, 0, 0);
    color: #030b5c;
    font-family: "Montserrat", sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 100%;
    letter-spacing: 0;
    text-align: center;
    vertical-align: middle;
    right: -1px;
    list-style: none;
    box-shadow: 0px 2px 12px 0px rgba(80, 64, 176, .3019607843);
    padding: 0;
    margin: 0;
    width: 90px;
    border-radius: 30px
}

.select-dropdown ul li {
    cursor: pointer;
    height: 52px;
    gap: 8px;
    font-size: 16px;
    background: #f2f5ff;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all .3s cubic-bezier(0.25, 0.8, 0.25, 1)
}

.select-dropdown ul li.is-selected {
    background: linear-gradient(278.01deg, #015CFF -36.69%, #18279D 179.85%);
    color: #fff
}

.select-dropdown ul li:hover {
    background: #ceddff;
    color: #030b5c
}

.select-dropdown ul li:first-child {
    border-radius: 30px 30px 0 0
}

.select-dropdown ul li:last-child {
    border-radius: 0 0 30px 30px
}

.select-dropdown ul li * {
    pointer-events: none
}

@media (max-width: 1440px) {
    .header__nav {
        gap: 18px
    }
}

@media screen and (max-width: 1240px) {
    .header {
        justify-content: space-between
    }

    .header__nav {
        display: none
    }

    .header__btns {
        display: none
    }

    .header__left {
        max-width: fit-content
    }
}

@media screen and (max-width: 1120px) {
    .header__nav {
        gap: 10px
    }

    .header__left {
        max-width: 700px
    }

    .header__logo img {
        max-width: 80%
    }
}

@media screen and (max-width: 1060px) {
    .header__nav {
        gap: 10px
    }

    .header__nav .link {
        display: flex;
        align-items: center
    }

    .header__left {
        max-width: 650px
    }

    .header__logo img {
        max-width: 80%
    }

    .header .link {
        font-size: 18px
    }
}

@media screen and (max-width: 1000px) {
    .header__nav {
        gap: 10px
    }

    .header__left {
        max-width: 630px
    }

    .header .link {
        font-size: 16px
    }
}

@media screen and (max-width: 968px) {
    .header__left {
        max-width: 550px
    }
}

.burger-btn {
    display: none;
    width: 40px;
    height: 40px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    position: relative;
    z-index: 10;
    background: none;
    border: none;
    outline: none
}

.burger-btn div {
    display: block;
    width: 100%;
    height: 4px;
    background-color: #000;
    border-radius: 2px;
    transition: all .3s ease;
    margin-bottom: 5px
}

.burger-btn div:nth-child(3) {
    margin-bottom: 0
}

.burger-btn.active div:nth-child(1) {
    transform: translateY(9px) rotate(45deg)
}

.burger-btn.active div:nth-child(2) {
    opacity: 0
}

.burger-btn.active div:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg)
}

.menu-open {
    position: fixed;
    top: 20px;
    left: 20px;
    z-index: 1001;
    font-size: 24px;
    cursor: pointer;
    background: none;
    border: none
}

.menu-overlay {
    position: fixed;
    top: 75px;
    left: 0;
    width: 100%;
    height: 100%;
    color: #fff;
    display: none;
    z-index: 1000;
    background: linear-gradient(360deg, #180E50 0%, #29187A 100%), linear-gradient(360deg, color(display-p3 0.09 0.055 0.302) 0%, color(display-p3 0.149 0.098 0.459) 100%)
}

.menu-overlay.active {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%
}

.menu-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    width: 100%;
    overflow: scroll;
    padding-bottom: 15px
}

.menu-content .btns-wrapper {
    display: flex;
    justify-content: center;
    gap: 16px;
    max-width: 375px;
    width: 100%;
    margin-bottom: 32px
}

.menu-content .btns-wrapper a {
    max-width: 161px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-family: "Montserrat", sans-serif;
    font-weight: 700;
    font-size: 16px;
    line-height: 100%;
    letter-spacing: 0;
    text-align: center;
    vertical-align: middle;
    color: #265bff;
    background: #f2f5ff;
    border-radius: 30px
}

.menu-content .select-dropdown {
    width: 158px;
    display: flex;
    align-items: center;
    justify-content: center
}

.menu-content .select-dropdown ul {
    width: 158px
}

.menu-content .btn-secondary {
    max-width: 345px;
    width: 100%
}

.menu-content__list {
    list-style: none;
    margin-bottom: 50px;
    padding: 0
}

.menu-content__list-item {
    margin: 20px 0 20px
}

.menu-content__link {
    color: #fff;
    text-decoration: none;
    transition: color .3s;
    padding-bottom: 20px;
    width: 100%;
    display: block;
    font-family: Montserrat, sans-serif;
    font-weight: 400;
    line-height: 29.26px;
    font-size: 24px
}

.menu-content__link:hover {
    opacity: .7
}

.menu-content__auth-links {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 0 30px;
    width: 100%;
    gap: 10px
}

.menu-content__auth-links > .btn-outline {
    width: 100%;
    max-width: 450px;
    padding: 20px 60px;
    color: #fff;
    border-color: #fff;
    font-size: 20px
}

.menu-content__auth-links > .btn-primary {
    width: 100%;
    max-width: 450px;
    padding: 20px 60px;
    font-size: 20px
}

@media screen and (max-width: 1240px) {
    .burger-btn {
        display: flex
    }

    .burger-btn {
        display: none;
        width: 40px;
        height: 40px;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        cursor: pointer;
        position: relative;
        z-index: 10;
        background: none;
        border: none;
        outline: none
    }

    .burger-btn div {
        display: block;
        width: 100%;
        height: 4px;
        background-color: #000;
        border-radius: 2px;
        transition: all .3s ease;
        margin-bottom: 5px
    }

    .burger-btn div:nth-child(3) {
        margin-bottom: 0
    }

    .burger-btn.active div:nth-child(1) {
        transform: translateY(9px) rotate(45deg)
    }

    .burger-btn.active div:nth-child(2) {
        opacity: 0
    }

    .burger-btn.active div:nth-child(3) {
        transform: translateY(-9px) rotate(-45deg)
    }

    .menu-open {
        position: fixed;
        top: 20px;
        left: 20px;
        z-index: 1001;
        font-size: 24px;
        cursor: pointer;
        background: none;
        border: none
    }

    .menu-overlay {
        position: fixed;
        top: 95px;
        left: 0;
        width: 100%;
        height: 100%;
        color: #fff;
        display: none;
        z-index: 1000;
        background: #fff
    }

    .menu-overlay.active {
        display: flex;
        flex-direction: column;
        align-items: center;
        width: 100%
    }

    .menu-content::-webkit-scrollbar {
        display: none
    }

    .menu-content {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        width: 100%
    }

    .menu-content__list {
        list-style: none;
        margin-bottom: 20px;
        padding: 0
    }

    .menu-content__list-item {
        margin: 20px 0 20px
    }

    .menu-content__link {
        font-family: "Montserrat", sans-serif;
        font-weight: 400;
        font-size: 20px;
        line-height: 100%;
        letter-spacing: 0;
        vertical-align: middle;
        color: #030b5c;
        text-decoration: none;
        transition: color .3s;
        padding-bottom: 20px;
        width: 100%;
        display: block
    }

    .menu-content__link:hover {
        opacity: .7
    }

    .menu-content__auth-links {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        padding: 0 30px;
        width: 100%;
        gap: 10px
    }

    .menu-content__auth-links > .btn-outline {
        width: 100%;
        max-width: 450px;
        padding: 20px 60px;
        color: #fff;
        border-color: #fff;
        font-size: 20px
    }

    .menu-content__auth-links > .btn-primary {
        width: 100%;
        max-width: 450px;
        padding: 20px 60px;
        font-size: 20px
    }
}

@media screen and (max-width: 1240px)and (max-width: 24px) {
    .burger-btn {
        display: flex
    }

    .main-page .content-wrap-full .header {
        padding-top: 20px
    }

    .main-page .content-wrap-full .header .burger-wrap {
        display: flex
    }

    .main-page .menu-overlay {
        top: 80px
    }

    .main-page .header {
        justify-content: space-between
    }

    .main-page .header__left {
        justify-content: flex-start
    }
}

.footer {
    padding: 40px;
    display: flex;
    justify-content: space-between;
    gap: 10px
}

.footer__logo {
    margin-bottom: 40px
}

.footer__logo > img {
    max-width: 250px
}

.footer__contact {
    display: flex;
    gap: 10px;
    align-items: center;
    margin-bottom: 10px
}

.footer__contact > a {
    font-family: Montserrat, sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: 25.97px;
    color: #a8a8a8;
    text-decoration: none
}

.footer__contact:last-child {
    margin-bottom: 0
}

.footer__links {
    width: 100%;
    max-width: 355px;
    display: flex;
    justify-content: space-between;
    gap: 20px
}

.footer__links .right-block {
    display: flex;
    flex-direction: column
}

.footer__links .left-block {
    display: flex;
    flex-direction: column
}

.footer__socials {
    width: 100%;
    max-width: 240px
}

.footer__socials-wrap {
    display: flex;
    gap: 20px;
    margin-bottom: 40px
}

.social-item {
    font-family: Montserrat, sans-serif;
    font-size: 12px;
    font-weight: 400;
    line-height: 14.63px;
    color: #aeaeae;
    margin-bottom: 10px
}

.social-item:last-child {
    margin-bottom: 0
}

.footer-link {
    font-family: Montserrat, sans-serif;
    font-size: 20px;
    font-weight: 400;
    line-height: 24.38px;
    color: #fff;
    text-decoration: none;
    padding-bottom: 20px;
    border-bottom: 1px solid #353535;
    margin-bottom: 20px
}

.footer-link:last-child {
    margin-bottom: 0
}

.main-page .footer {
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 10px;
    border-radius: 56px;
    background: linear-gradient(278.01deg, #015CFF -36.69%, #18279D 179.85%);
    margin-bottom: 60px
}

.main-page .footer__logo {
    margin-bottom: 20px
}

.main-page .footer__logo img {
    width: 189px;
    height: 50px
}

.main-page .footer__logo > img {
    max-width: 250px
}

.main-page .footer__tagline {
    color: hsla(0, 0%, 100%, .85);
    margin-bottom: 20px;
    line-height: 1.5
}

.main-page .footer__social {
    display: flex;
    gap: 10px
}
.footer__social2{
    display: none;
}
@media (max-width: 768px) {
    .footer__social2 {
        display: inline-flex !important;
        gap: 21.82px;
    }
}

.main-page .footer__social.mobile {
    display: none
}

.main-page .footer__heading {
    font-size: 18px;
    margin-bottom: 10px;
    font-weight: 600
}

.main-page .footer__divider {
    border: 0;
    border-top: 1px solid #fff;
    margin: 22px -6px 12px
}

.main-page .footer__legal p {
    font-size: 12px;
    line-height: 100%;
    color: #fff;
    margin-bottom: 15px
}

.main-page .footer .btn-cta.mobile {
    display: none
}

.main-page .footer__inner {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.main-page .footer__brand {
    flex: 0 0 250px;
    max-width: 250px;
}

.main-page .footer__contacts {
    flex: 1 1 auto;
    min-width: 0;
    color: #fff;
}

.main-page .footer__contacts h3 {
    font-size: 20px;
    color: #fff;
    font-weight: 400;
    margin: 20px 0 18px;
    text-align: start;
    width: 100%;
}

.main-page .footer__contacts-grid {
    display: flex;
    align-items: flex-start;
    gap: 42px;
    width: 100%;
    margin-top: 32px;
}

.main-page .footer__contact-group {
    min-width: 0;
    flex: 1 1 0;
}

.main-page .footer__contact-group:nth-child(1) {
    max-width: 210px;
}

.main-page .footer__contact-title,
.main-page .footer__contact-link {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.main-page .footer__contact-title {
    margin-bottom: 14px;
    color: #fff;
}

.main-page .footer__contact-link {
    margin-top: 10px;
    color: #fff;
    text-decoration: none;
    font-family: "Montserrat", sans-serif;
    font-size: 16px;
    line-height: 1.35;
}

.main-page .footer__contact-link:hover {
    color: #fff;
    text-decoration: none;
    opacity: 0.9;
}

.main-page .footer__title-icon,
.main-page .footer__contact-icon {
    width: 20px;
    height: 20px;
    min-width: 20px;
    flex: 0 0 20px;
    display: block;
    object-fit: contain;
    margin-top: 2px;
}

.main-page .footer__contact-title-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
    min-width: 0;
}

.main-page .footer__contact-title-text span:first-child {
    font-family: "Montserrat", sans-serif;
    font-size: 18px;
    line-height: 1.25;
    font-weight: 600;
    color: #fff;
}

.main-page .footer__contact-time {
    font-family: "Montserrat", sans-serif;
    font-size: 16px;
    line-height: 1.25;
    color: rgba(255, 255, 255, 0.9);
}

.main-page .footer__contact-link span {
    display: inline-block;
    line-height: 1.35;
}

.main-page .footer__docs {
    flex: 0 0 430px;
    max-width: 430px;
}

.main-page .footer__docs h3 {
    font-size: 20px;
    font-family: "Montserrat", sans-serif;
    font-weight: 400;
    color: #fff;
    margin-bottom: 0;
}

.main-page .footer__docs .top-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

.main-page .footer__docs .chip-wrap {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin: 32px 0 18px;
}

.main-page .footer__docs .chip-wrap .row {
    gap: 10px;
    flex-wrap: nowrap;
    margin: 0;
}

.main-page .footer__docs .chip-wrap .row.second {
    padding-right: 70px;
}

.main-page .footer__docs .chip-wrap .row.second .chip {
    flex: 1;
}

.main-page .footer__docs .chip-wrap .chip {
    font-family: "Montserrat", sans-serif;
    text-align: center;
    display: flex;
    align-items: center;
    padding: 8px 12px;
    border-radius: 30px;
    background: hsla(0, 0%, 100%, .12);
    font-size: 12px;
    color: #fff;
    font-weight: 600;
}

@media (max-width: 768px) {
    .footer__social2 {
        display: inline-flex !important;
        gap: 21.82px;
    }
}

@media screen and (max-width: 1430px) {
    .main-page .footer__inner {
        gap: 5px;
    }

    .main-page .footer__docs .chip-wrap .row.second {
        padding-right: 0;
    }
}

@media screen and (max-width: 1350px) {
    .main-page .footer__inner {
        gap: 18px;
    }

    .main-page .footer__brand {
        flex: 0 0 220px;
        max-width: 220px;
    }

    .main-page .footer__docs {
        flex: 0 0 390px;
        max-width: 390px;
    }

    .main-page .footer__contacts-grid {
        gap: 32px;
    }

    .main-page .footer__contact-group:nth-child(1) {
        max-width: 180px;
    }
}

@media screen and (max-width: 1100px) {
    .main-page .footer__inner {
        flex-direction: column;
        gap: 24px;
    }

    .main-page .footer__brand,
    .main-page .footer__contacts,
    .main-page .footer__docs {
        flex: 1 1 100%;
        max-width: 100%;
    }

    .main-page .footer__contacts-grid {
        flex-wrap: wrap;
        gap: 18px;
    }

    .main-page .footer__contact-group,
    .main-page .footer__contact-group:nth-child(1),
    .main-page .footer__contact-group:nth-child(2),
    .main-page .footer__contact-group:nth-child(3) {
        flex: 1 1 240px;
        max-width: none;
    }
}

@media screen and (max-width: 1000px) {
    .footer__links {
        gap: 10px;
        max-width: 300px;
    }
}

@media screen and (max-width: 968px) {
    .footer-link {
        font-size: 18px;
    }

    .footer {
        padding: 40px 20px;
    }

    .main-page .footer {
        padding: 40px 20px;
    }
}

@media screen and (max-width: 860px) {
    .footer {
        flex-wrap: wrap;
        justify-content: center;
        gap: 30px;
    }
}

@media screen and (max-width: 768px) {
    .footer {
        flex-direction: column;
        align-items: center;
        flex-wrap: nowrap;
        gap: 40px;
    }

    .footer__logo {
        margin-bottom: 10px;
    }

    .footer__links {
        flex-direction: column;
    }

    .footer__links .left-block {
        align-items: center;
    }

    .footer__links .right-block {
        align-items: center;
    }

    .footer__contacts {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .footer__socials {
        display: flex;
        flex-direction: column;
        align-items: center;
        max-width: inherit;
        width: inherit;
    }

    .footer-link {
        width: fit-content;
        text-align: center;
    }

    .main-page .footer__logo {
        margin-bottom: 10px;
    }

    .main-page .footer__contacts .wrapper {
        flex-direction: column;
        width: 100%;
    }

    .main-page .footer__contacts-grid {
        flex-direction: column;
        gap: 20px;
        align-items: stretch;
    }

    .main-page .footer__contact-group,
    .main-page .footer__contact-group:nth-child(1),
    .main-page .footer__contact-group:nth-child(2),
    .main-page .footer__contact-group:nth-child(3) {
        flex: 0 0 auto;
        width: 100%;
        max-width: none;
    }

    .main-page .footer__contact-title-text span:first-child {
        font-size: 16px;
    }

    .main-page .footer__contact-time,
    .main-page .footer__contact-link {
        font-size: 14px;
    }
}

@media screen and (max-width: 600px) {
    .footer {
        padding: 20px 0;
    }

    .footer__socials-wrap {
        margin-bottom: 20px;
    }

    .footer__logo > img {
        max-width: 180px;
    }

    .footer-link {
        font-size: 16px;
        margin-bottom: 10px;
    }

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

    #footer .content-wrap-full {
        padding: 0;
    }

    .main-page .footer {
        gap: 0;
        padding: 40px 10px;
        margin-bottom: 32px;
    }

    .main-page .footer__social {
        display: none;
    }

    .main-page .footer__social.mobile {
        margin: 20px 0;
        display: flex;
    }

    .main-page .footer__logo {
        display: flex;
        justify-content: center;
    }

    .main-page .footer__logo > img {
        max-width: 180px;
    }

    .main-page .footer__tagline {
        text-align: center;
    }

    .main-page .footer__docs .chip-wrap .row {
        flex-direction: column;
    }

    .main-page .footer__docs .chip-wrap .chip {
        padding: 6px 10px;
        justify-content: center;
    }

    .main-page .footer .btn-cta {
        display: none;
    }

    .main-page .footer .btn-cta.mobile {
        display: inline-flex !important;
        width: 100%;
    }
}

body {
    position: relative
}

.main-page {
    background-color: #fff
}

.main-wrap {
    width: 100%;
    display: flex;
    justify-content: center
}

.content-light-block {
    display: flex;
    justify-content: center;
    background: #edebf0
}

.content-white-block {
    display: flex;
    justify-content: center;
    background: #f2f5ff
}

.bg-soft-blue {
    background-color: #f4f3ff;
    border-radius: 56px
}

.bg-white {
    background-color: #fff;
    border-radius: 56px
}

.bg-pink-blue {
    background: #ceddff
}

.hidden {
    display: none !important
}

.content-blue-block {
    display: flex;
    justify-content: center;
    background: linear-gradient(90deg, #180E50 0%, #29187A 100%)
}

.content-dark-block {
    display: flex;
    justify-content: center;
    background: linear-gradient(90deg, #08041D 0%, #181333 100%), linear-gradient(90deg, color(display-p3 0.027 0.016 0.11) 0%, color(display-p3 0.094 0.075 0.192) 100%)
}

.disable-scroll {
    height: 100%;
    overflow: hidden
}

.content-wrap {
    width: 100%;
    max-width: 1180px;
    padding: 0 20px
}

.content-wrap-full {
    width: 100%;
    max-width: 1800px;
    padding: 0 20px
}

.mb-8 {
    margin-bottom: 8px
}

.mb-10 {
    margin-bottom: 10px
}

.mb-25 {
    margin-bottom: 25px
}

.mb-0 {
    margin-bottom: 0
}

.mt-45 {
    margin-top: 45px
}

.mt-100 {
    margin-top: 100px
}

.w-100 {
    width: 100%
}

.btn, .have-question-btn, .light-btn, .btn-outline, .btn-secondary, .btn-primary {
    font-family: Montserrat, "sans-serif";
    padding: 20px 30px;
    gap: 15px;
    border-radius: 15px;
    border: none;
    outline: none;
    cursor: pointer;
    background: none;
    text-decoration: none;
    opacity: 1;
    transition: opacity .4s ease-in-out
}

.btn:hover, .have-question-btn:hover, .light-btn:hover, .btn-outline:hover, .btn-secondary:hover, .btn-primary:hover {
    opacity: .85;
    transition: opacity .4s ease-in-out
}

.btn-primary {
    color: #fff;
    background: linear-gradient(90deg, #533FB8 0%, #4A2DD6 100%), linear-gradient(90deg, color(display-p3 0.314 0.251 0.694) 0%, color(display-p3 0.275 0.18 0.808) 100%)
}

.btn-secondary {
    display: inline-block;
    color: #fff !important;
    font-weight: 700;
    text-align: center;
    background: linear-gradient(278.01deg, #015CFF -36.69%, #18279D 179.85%) !important;
    border-radius: 32px;
    font-size: 24px;
    background: linear-gradient(135deg, rgb(199, 70, 255) 0%, rgb(70, 65, 239) 100%);
    padding: 16px 24px
}
a.btn-secondary:hover {
    text-decoration: none;
}

.main-page header .btn-secondary {
    font-size: 16px
}

.main-page header .btn-outline {
    color: #5040b0;
    font-weight: 700;
    background-color: #f4f3ff
}

.btn-outline {
    color: #1c1c1c;
    border: 1px solid #1c1c1c
}

.btn-outline:hover {
    color: #1c1c1c;
    text-decoration: none
}

.btn-cta {
    display: inline-flex ;
    align-items: center;
    justify-content: center;
    padding: 10px 18px;
    border-radius: 30px;
    background: #fff;
    font-weight: 700;
    text-decoration: none !important;
    color: #5040b0 !important;
    box-shadow: 0 4px 14px rgba(0, 0, 0, .18);
    transition: .2s ease
}

.btn-cta:hover {
    transform: translateY(-2px)
}

.link {
    font-family: Montserrat, "sans-serif";
    color: #1c1c1c;
    text-decoration: none;
    font-size: 20px
}

.link__active {
    color: #5040b0
}

.light-btn {
    font-family: Montserrat, "sans-serif";
    font-size: 20px;
    font-weight: 600;
    line-height: 24.38px;
    color: #5040b1;
    background: linear-gradient(0deg, #DCD2EE 0%, #F7F7F7 100%)
}

.have-question-btn {
    border: 2px solid #fff;
    color: #fff;
    font-weight: 600;
    font-size: 20px;
    opacity: 1
}

.modal-dialog {
    max-width: 570px
}

.modal-content {
    border-radius: 30px;
    padding: 30px;
    position: relative
}

.modal-body {
    border: none
}

.modal-body .btn-primary {
    border-radius: 30px;
    background: linear-gradient(278.01deg, #015CFF -36.69%, #18279D 179.85%)
}

.modal-body .input-wrapper {
    margin: 24px 0 40px 0
}

.modal-body .input-wrapper input {
    background: #f2f5ff
}

.modal-body .payment-choose {
    background: #f2f5ff;
    max-width: 466px;
    width: 100%;
    height: 64px;
    padding: 4px;
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 24px;
    border-radius: 30px
}

.modal-body .payment-choose .item {
    max-width: 225px;
    width: 100%;
    height: 55px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: Montserrat;
    font-weight: 400;
    font-style: Regular;
    font-size: 16px;
    leading-trim: NONE;
    line-height: 100%;
    letter-spacing: 0%;
    text-align: center;
    color: #878d97;
    cursor: pointer;
    border-radius: 30px;
    background: rgba(0, 0, 0, 0);
    border: none;
    outline: none
}

.modal-body .payment-choose .item.active {
    background: linear-gradient(278.01deg, #015CFF -36.69%, #18279D 179.85%);
    color: #fff;
    font-weight: 600
}

.modal-body .additional-text {
    font-family: "Montserrat", sans-serif;
    font-weight: 400;
    font-size: 12px;
    line-height: 100%;
    letter-spacing: 0;
    text-align: center;
    vertical-align: middle;
    color: #3c48bd;
    margin-top: 8px;
    margin-bottom: 40px
}

.modal-footer {
    border: none
}

.close-modal-btn {
    position: absolute;
    top: 15px;
    right: 20px;
    z-index: 100000000
}

.modal-title {
    font-family: "Montserrat", sans-serif;
    font-weight: 700;
    font-size: 30px;
    line-height: 100%;
    letter-spacing: 0;
    text-align: center;
    vertical-align: middle;
    color: #265bff;
    margin-bottom: 16px
}

.modal-subtitle {
    font-family: "Montserrat", sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 100%;
    letter-spacing: 0;
    text-align: center;
    vertical-align: middle;
    color: #3c48bd
}

.modal-divider {
    width: 100%;
    height: 1px;
    background: #cfd6e4;
    margin-bottom: 40px
}

.credit-pay-search-form > .custom-form-control.form-control {
    margin-bottom: 30px
}

.modal-info-block {
    font-family: Montserrat, sans-serif;
    font-size: 20px;
    font-weight: 600;
    line-height: 24.38px;
    color: #5040b1;
    text-align: center;
    margin: 0 auto 30px
}

.modal-credit-info {
    padding: 32px;
    background: #F2F5FF;
    border-radius: 10px;
    margin-bottom: 30px
}

.modal-credit-info p {
    font-family: "Montserrat", sans-serif;
    font-weight: 500;
    font-size: 20px;
    line-height: 100%;
    letter-spacing: 0;
    color: #3c48bd
}

.modal-credit-info__item {
    display: flex;
    justify-content: space-between;
    gap: 10px;
    margin-bottom: 10px
}

.modal-credit-info__item:last-child {
    margin-bottom: 0
}

.modal-credit-info__title {
    font-family: Montserrat, "sans-serif";
    font-size: 14px;
    font-weight: 400;
    line-height: 19.6px;
    color: #4f5d6d
}

.modal-credit-info__address {
    display: flex;
    gap: 10px;
    justify-content: space-between;
    align-items: center
}

.modal-credit-info p.modal-credit-info__value {
    font-family: "Montserrat", sans-serif;
    font-weight: 600;
    font-size: 20px;
    line-height: 100%;
    letter-spacing: 0;
    color: #265bff;
    word-break: break-word
}

.copy-btn {
    border: none;
    outline: none;
    background: none;
    min-width: 30px
}

.copy-btn:focus {
    outline: none;
    border: none
}

.copy-btn:hover {
    opacity: .85
}

.modal-success-payment-text {
    font-family: Montserrat, sans-serif;
    font-size: 44px;
    font-weight: 600;
    line-height: 46px;
    text-align: center;
    color: #5040b1
}

.modal-success-payment-text > p {
    margin-bottom: 0
}

.modal-success-payment-img {
    display: flex;
    justify-content: center;
    margin-bottom: 30px
}

.modal-credit-info__divider{
    height: 2px;
    background: #265bff;
    opacity: .25;
    margin: 24px 0;
}

.main-swiper {
    position: relative;
    width: 100%
}

.main-swiper__nav {
    display: flex;
    gap: 20px;
    width: fit-content;
    position: absolute;
    bottom: 30px
}

.main-swiper-btn, .main-swiper-btn-mob {
    width: 90px;
    height: 90px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    background-color: #5040b1;
    outline: none;
    border: none
}

.main-swiper-btn-mob {
    position: absolute;
    display: none;
    width: 50px;
    height: 50px
}

.main-swiper-slide.swiper-slide {
    display: block !important
}

.main-swiper-btn--prev {
    transform: rotate(180deg)
}

@media screen and (max-width: 768px) {
    .main-swiper__nav {
        display: none
    }

    .main-swiper-btn-mob {
        display: flex;
        z-index: 200
    }

    .main-swiper-btn-mob--prev {
        left: 5px;
        bottom: 50%
    }

    .main-swiper-btn-mob--next {
        right: 5px;
        bottom: 50%
    }

    .main-swiper-btn-mob svg {
        max-width: 50%
    }
}

@media screen and (max-width: 600px) {
    .modal-content {
        border-radius: 30px;
        padding: 20px 0 0 0;
        position: relative
    }

    .modal-title {
        font-family: Unbounded, sans-serif;
        font-size: 24px
    }

    .modal-subtitle {
        margin-bottom: 30px
    }

    .modal-divider {
        width: 100%;
        height: 1px;
        background: #cfd6e4;
        margin-bottom: 30px
    }

    .credit-pay-search-form > .custom-form-control.form-control {
        margin-bottom: 20px
    }

    .modal-info-block {
        margin: 0 auto 20px
    }

    .modal-success-payment-text {
        font-size: 28px;
        line-height: 30px
    }

    .modal-success-payment-img {
        margin-bottom: 10px
    }

    .modal-success-payment-img > img {
        width: 60%
    }
}

@media (max-width: 500px) {
    .modal-body .payment-choose .item {
        font-size: 12px
    }

    .modal-body .additional-text {
        margin-bottom: 24px
    }

    .modal-credit-info p {
        font-size: 14px !important
    }
}

.plus-minus {
    position: relative;
    width: 25px;
    height: 25px;
    cursor: pointer;
    user-select: none
}

.plus-minus.active:before {
    transform: translatey(-50%) rotate(-90deg);
    opacity: 0
}

.plus-minus.active:after {
    transform: translatey(-50%) rotate(0)
}

.plus-minus:before, .plus-minus:after {
    content: "";
    display: block;
    background-color: #265bff;
    position: absolute;
    top: 50%;
    left: 0;
    transition: .35s;
    width: 100%;
    height: 3px
}

.plus-minus:before {
    transform: translatey(-50%)
}

.plus-minus:after {
    transform: translatey(-50%) rotate(90deg)
}

.faq {
    padding-top: 64px;
    padding-bottom: 96px
}

.faq h1 {
    font-family: "Montserrat", sans-serif;
    font-weight: 700;
    font-size: 40px;
    line-height: 100%;
    letter-spacing: 0;
    vertical-align: middle;
    color: #265bff
}

.faq__wrapper {
    margin-top: 40px;
    display: flex;
    gap: 40px
}

.faq__wrapper .topic-list {
    display: flex;
    flex-direction: column;
    gap: 24px
}

.faq__wrapper .topic-list li {
    cursor: pointer;
    height: 72px;
    max-width: 395px;
    width: 100%;
    font-family: "Montserrat", sans-serif;
    font-weight: 400;
    font-size: 20px;
    line-height: 100%;
    letter-spacing: 0;
    color: #030b5c;
    display: flex;
    align-items: center;
    padding-left: 40px
}

.faq__wrapper .topic-list li.active {
    color: #1a2eb6;
    border-left: 5px solid #1a2eb6;
    font-weight: 600
}

.faq__wrapper .faq__lists {
    width: 100%;
    max-width: 1345px
}

.faq__wrapper .faq__list {
    display: flex;
    flex-direction: column;
    gap: 20px;
    list-style: none
}

.faq__wrapper .faq__list li.active .faq__list-item-header {
    border-radius: 30px 30px 0 0
}

.faq__wrapper .faq__list li {
    width: 100%
}

.faq__wrapper .faq__list li .faq__list-item-header {
    background: #ceddff;
    height: 88px;
    padding: 32px;
    border-radius: 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer
}

.faq__wrapper .faq__list li .faq__list-item-header .title {
    font-family: "Montserrat", sans-serif;
    font-weight: 500;
    font-size: 20px;
    line-height: 100%;
    letter-spacing: 0;
    color: #030b5c
}

.faq__wrapper .faq__list li .item-content {
    background: #fff;
    padding: 32px;
    border-radius: 0 0 30px 30px;
    font-family: "Montserrat", sans-serif;
    font-weight: 500;
    font-size: 16px;
    line-height: 100%;
    letter-spacing: 0;
    color: #3c48bd
}

@media (max-width: 1024px) {
    .faq__wrapper .faq__list li .item-content {
        padding: 24px;
        font-size: 14px
    }

    .faq__wrapper .faq__list li .faq__list-item-header .title {
        font-size: 16px
    }

    .plus-minus {
        transform: scale(0.8)
    }

    .faq__list {
        padding-left: 0
    }

    .faq__wrapper .faq__list li .faq__list-item-header {
        height: 72px;
        padding: 24px 16px
    }

    .faq__wrapper {
        flex-direction: column;
        overflow: hidden;
        gap: 24px
    }

    .faq__wrapper .topic-list {
        flex-direction: row;
        width: 100%;
        overflow: scroll;
        justify-content: flex-start;
        flex-shrink: 0;
        padding: 0
    }

    .faq__wrapper .topic-list li {
        height: 72px;
        display: flex;
        font-size: 16px;
        line-height: 1;
        align-items: flex-start;
        justify-content: center;
        text-align: center;
        width: auto;
        padding-left: 0;
        flex-shrink: 0;
        padding-bottom: 12px
    }

    .faq__wrapper .topic-list li.active {
        border: none;
        border-bottom: 8px solid #1a26a8
    }
}

@media (max-width: 768px) {
    .faq {
        padding: 40px 0 60px 0
    }
}

body {
    background: #fff
}

.contacts {
    padding: 64px 0 96px 0
}

.contacts h1 {
    font-family: "Raleway", sans-serif;
    font-weight: 700;
    font-style: Bold;
    font-size: 40px;
    leading-trim: NONE;
    line-height: 100%;
    letter-spacing: 0%;
    vertical-align: middle;
    background: linear-gradient(278.01deg, #015CFF -36.69%, #18279D 179.85%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: rgba(0, 0, 0, 0);
    background-clip: text
}

.contacts .contacts__info {
    max-width: 690px;
    width: 100%
}

.contacts .text {
    font-family: "Montserrat", sans-serif;
    font-weight: 500;
    font-size: 16px;
    line-height: 100%;
    letter-spacing: 0;
    color: #3c48bd
}

.contacts .text.bold {
    font-weight: 700;
    margin-bottom: 16px
}

.contacts h1 {
    margin-bottom: 64px
}

.contacts .contacts__wrapper {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 24px
}

.contacts .divider {
    max-width: 690px;
    width: 100%;
    height: 2px;
    background: linear-gradient(278.01deg, #015CFF -36.69%, #18279D 179.85%);
    margin: 40px 0
}

.contacts h5 {
    font-family: "Montserrat", sans-serif;
    font-weight: 600;
    font-size: 20px;
    line-height: 100%;
    letter-spacing: 0;
    color: #030b5c;
    margin-bottom: 16px
}

.contacts .socials {
    display: flex;
    gap: 22px;
    align-items: center
}

.contacts .contact-wrapper h5 {
    margin: 0
}

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

.contacts .contact-wrapper {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: "Montserrat", sans-serif;
    font-weight: 400;
    font-size: 20px;
    line-height: 100%;
    letter-spacing: 0;
    color: #030b5c
}

.contacts form {
    background: #CEDDFF;
    max-width: 890px;
    width: 100%;
    border-radius: 56px;
    padding: 50px
}

.contacts form .inputs-wrapper {
    margin-top: 32px;
    display: flex;
    flex-direction: column;
    gap: 16px
}

.contacts form .btn, .contacts form .btn-primary, .contacts form .btn-secondary, .contacts form .btn-outline, .contacts form .light-btn, .contacts form .have-question-btn {
    margin-top: 32px;
    max-width: 320px;
    width: 100%;
    border-radius: 32px;
    height: 56px;
    background: #3c48bd;
    font-family: "Montserrat", sans-serif;
    font-weight: 700;
    font-size: 16px;
    line-height: 100%;
    letter-spacing: 0;
    text-align: center;
    vertical-align: middle;
    color: #fff
}

.js-choice {
    width: 100%;
    height: 64px;
    background: #fff;
    border-radius: 30px;
    padding: 12px 12px 16px 16px;
    border: none;
    font-family: "Montserrat", sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 100%;
    letter-spacing: 0;
    vertical-align: middle;
    color: #030b5c
}

.choices {
    width: 176px;
    font-family: inherit
}

.choices.is-open {
    background-color: #fff;
    border-radius: 10px 10px 0 0
}

.is-focused .choices__inner, .is-open .choices__inner {
    border: 1px solid #ccb26e
}

.choices[data-type*=select-one]:after {
    height: 8px;
    width: 8px;
    z-index: 3;
    top: 40%;
    border: 1px solid #ccb26e;
    border-width: 0 0 1px 1px;
    transform: rotate(-45deg)
}

.choices[data-type*=select-one].is-open:after {
    top: 60%;
    border: 1px solid #ccb26e;
    border-width: 1px 1px 0 0
}

.choices__inner {
    position: relative;
    background-color: #fff;
    border-radius: 10px;
    z-index: 2
}

.is-open .choices__inner {
    border-radius: 10px
}

.choices__placeholder {
    opacity: 1
}

.choices__list--dropdown .choices__placeholder {
    display: none
}

.choices__list--dropdown {
    padding-top: 30px;
    top: calc(100% - 30px)
}

.choices__list--dropdown .choices__item--selectable {
    padding-right: 10px
}

.choices__list--dropdown.is-active {
    border: 1px solid #ccb26e;
    border-top-width: 0;
    border-radius: 0 0 10px 10px
}

@media (max-width: 1440px) {
    .contacts .contacts__wrapper {
        flex-direction: column;
        align-items: center;
        gap: 60px
    }
}

@media (max-width: 768px) {
    .contacts form {
        padding: 60px 20px;
        width: 100vw;
        max-width: 9999px
    }

    .contacts h1 {
        font-size: 28px;
        margin-bottom: 24px
    }

    .contacts h5 {
        font-size: 16px
    }

    .contacts .divider {
        margin: 24px 0
    }

    .contacts .contact-wrapper {
        font-size: 16px
    }

    .contacts .text {
        font-size: 14px
    }

    .contacts {
        padding: 40px 0 0 0
    }
}

body {
    background: #f2F5ff !important
}

.container {
    max-width: 1880px !important
}

section.banner {
    padding: 96px 0
}

section.banner .btn-primary {
    display: block;
    margin: 0 auto !important;
    background: linear-gradient(278.01deg, #015CFF -36.69%, #18279D 179.85%);
    border-radius: 32px
}

section.banner h1 {
    font-family: "Montserrat", sans-serif;
    font-weight: 700;
    font-size: 100px;
    line-height: 90px;
    letter-spacing: 0;
    text-align: center;
    vertical-align: middle;
    color: #030b5c;
    margin-bottom: 32px
}

section.banner .subtitle {
    font-family: "Montserrat", sans-serif;
    font-weight: 500;
    font-size: 16px;
    line-height: 100%;
    letter-spacing: 0;
    text-align: center;
    color: #3c48bd;
    max-width: 890px;
    margin: 0 auto;
    margin-bottom: 40px
}

section.advantages h2,
section.our-workers h2,
section.partnership h2 {
    font-family: "Montserrat", sans-serif;
    font-weight: 700;
    font-size: 40px;
    line-height: 100%;
    letter-spacing: 0;
    text-align: center;
    vertical-align: middle;
    background: linear-gradient(278.01deg, #015CFF -36.69%, #18279D 179.85%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: rgba(0, 0, 0, 0);
    background-clip: text
}

section.advantages {
    background: #fff;
    padding: 64px 0;
    overflow: hidden
}

section.advantages .swiper-wrapper {
    display: flex;
    margin-top: 40px;
    justify-content: center;
    cursor: pointer
}

section.advantages .swiper-wrapper .swiper-slide {
    width: 324px;
    background: #f2f5ff;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    border-radius: 30px;
    padding: 32px;
    min-height: 328px;
    flex-shrink: 0
}

section.advantages .swiper-wrapper .swiper-slide .title {
    font-family: "Montserrat", sans-serif;
    font-weight: 600;
    font-size: 20px;
    line-height: 100%;
    letter-spacing: 0;
    text-align: center;
    color: #050f77;
    margin: 0 auto
}

section.advantages .swiper-wrapper .swiper-slide img {
    margin-bottom: 16px
}

@media (max-width: 1800px) {
    section.advantages .swiper-wrapper {
        justify-content: flex-start
    }
}

section.our-workers {
    padding: 96px 0;
    overflow: hidden
}

section.our-workers .swiper-wrapper {
    display: flex;
    margin-top: 40px;
    list-style: none;
    cursor: pointer
}

section.our-workers .swiper-wrapper img.mobile {
    display: none
}

section.our-workers .swiper-wrapper .swiper-slide {
    width: 586px;
    min-height: 427px;
    border-radius: 30px;
    display: flex;
    flex-direction: column;
    flex-shrink: 0;
    align-items: flex-start
}

section.our-workers .swiper-wrapper .swiper-slide img {
    border-radius: 30px 30px 0 0
}

section.our-workers .swiper-wrapper .swiper-slide .item-body {
    background: #fff;
    border-radius: 0 0 30px 30px;
    padding: 24px 32px;
    padding-bottom: 52px
}

section.our-workers .swiper-wrapper .swiper-slide .item-body .name {
    font-family: "Montserrat", sans-serif;
    font-weight: 500;
    font-size: 20px;
    line-height: 100%;
    letter-spacing: 0;
    text-align: center;
    color: #265bff;
    margin-bottom: 4px
}

section.our-workers .swiper-wrapper .swiper-slide .item-body .work-title {
    font-family: "Montserrat", sans-serif;
    font-weight: 400;
    font-size: 14px;
    line-height: 100%;
    letter-spacing: 0;
    text-align: center;
    color: #3c48bd;
    margin-bottom: 16px
}

section.our-workers .swiper-wrapper .swiper-slide .item-body .text {
    font-family: "Montserrat", sans-serif;
    font-weight: 500;
    font-size: 16px;
    line-height: 100%;
    letter-spacing: 0;
    text-align: center;
    color: #3c48bd
}

@media (max-width: 1240px) {
    body.about-us h1 {
        font-size: 64px !important;
        line-height: 1 !important
    }
}

@media (max-width: 768px) {
    section.advantages .swiper-wrapper .swiper-slide {
        width: 310px;
        height: 264px;
        min-height: auto;
        padding: 16px;
        padding-top: 0;
        padding-bottom: 36px
    }

    section.our-workers .swiper-wrapper .swiper-slide {
        width: 310px;
        height: 447px
    }

    section.our-workers .swiper-wrapper .swiper-slide img {
        display: none
    }

    section.our-workers .swiper-wrapper .swiper-slide img.mobile {
        display: block
    }

    body.about-us h1 {
        font-size: 32px !important;
        line-height: 1 !important
    }

    section.banner {
        padding: 60px 0
    }

    section.advantages {
        padding: 40px 0
    }

    section.our-workers {
        padding: 60px 0
    }

    h2 {
        font-size: 28px !important;
        line-height: 1 !important
    }
}

.news-and-promo {
    padding-bottom: 96px
}

.news-and-promos-list {
    padding: 0;
    margin-top: 40px;
    display: flex;
    flex-wrap: wrap;
    gap: 40px 20px;
    justify-content: center
}

.news-and-promo h1 {
    margin-top: 40px
}

.news-and-promo-item {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    max-width: 435px
}

.news-and-promo-item .item-body {
    box-shadow: 0px 2px 4px 0px rgba(96, 97, 112, .1607843137);
    border-radius: 0 0 16px 16px;
    background: #fff;
    padding: 32px
}

.news-and-promo-item .title-wrapper {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    justify-content: space-between;
    margin-bottom: 16px
}

.news-and-promo-item .title-wrapper .title {
    font-family: "Montserrat", sans-serif;
    font-weight: 600;
    font-size: 20px;
    line-height: 100%;
    letter-spacing: 0;
    color: #030b5c;
    margin-bottom: 8px
}

.news-and-promo-item .title-wrapper .date {
    font-family: "Montserrat", sans-serif;
    font-weight: 500;
    font-size: 14px;
    line-height: 100%;
    letter-spacing: 0;
    color: #3c48bd;
    margin-bottom: 32px
}

.news-and-promo-item .text {
    font-family: "Montserrat", sans-serif;
    font-weight: 500;
    font-size: 16px;
    line-height: 100%;
    letter-spacing: 0;
    color: #3c48bd;
    margin-bottom: 32px
}

.news-and-promo-item .wrapper {
    display: flex;
    gap: 8px
}

.news-and-promo-item .wrapper .btn-more {
    max-width: 317px;
    width: 100%;
    border-radius: 30px;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    border: 1px solid #265bff;
    background: rgba(0, 0, 0, 0);
    font-family: "Montserrat", sans-serif;
    font-weight: 700;
    font-size: 16px;
    line-height: 100%;
    letter-spacing: 0;
    text-align: center;
    vertical-align: middle;
    color: #265bff
}

.news-and-promo-item .wrapper .link-btn {
    background: rgba(0, 0, 0, 0);
    cursor: pointer;
    width: 48px;
    height: 48px;
    flex-shrink: 0;
    padding: 0
}

@media (max-width: 768px) {
    .news-and-promo-item .item-body {
        padding: 20px
    }
}

@media (max-width: 430px) {
    .news-and-promo.single-page .news-and-promo-item .title-wrapper .title {
        font-size: 16px
    }

    .news-and-promo.single-page .news-and-promos-list {
        margin-top: 32px
    }

    .news-and-promo.single-page .news-and-promo-item .title-wrapper .date {
        font-size: 12px
    }

    .news-and-promo.single-page .item-body {
        min-height: auto !important
    }
}

.container.promotion-d {
    max-width: 1840px !important;
    width: 100% !important;
    margin: 0 auto
}

.promotion {
    padding-bottom: 96px
}

.promotion h1 {
    background: linear-gradient(278.01deg, #015CFF -36.69%, #18279D 179.85%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: rgba(0, 0, 0, 0);
    background-clip: text;
    line-height: 1
}

.promotion span.purple-text-color {
    color: #265bff
}

.promotion .content-wrapper {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-bottom: 40px
}

.promotion .btn-primary {
    margin: 0;
    border-radius: 32px;
    background: linear-gradient(278.01deg, #015CFF -36.69%, #18279D 179.85%)
}

.promotion ul.text-list {
    padding-left: 24px;
    font-family: "Montserrat", sans-serif;
    font-weight: 500;
    font-size: 16px;
    line-height: 100%;
    letter-spacing: 0;
    color: #3c48bd
}

.promotion h6 {
    font-family: "Montserrat", sans-serif;
    font-weight: 600;
    font-size: 20px;
    line-height: 100%;
    letter-spacing: 0;
    color: #030b5c
}

.promotion .promotion__wrapper {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 24px
}

.promotion .promotion__wrapper img.mobile {
    display: none
}

.promotion .wrapper {
    display: flex;
    align-items: center;
    gap: 20px;
    font-family: "Montserrat", sans-serif;
    font-weight: 500;
    font-size: 16px;
    line-height: 100%;
    letter-spacing: 0;
    color: #3c48bd;
    margin: 16px 0 40px 0
}

.promotion .text {
    font-family: "Montserrat", sans-serif;
    font-weight: 500;
    font-size: 16px;
    line-height: 100%;
    letter-spacing: 0;
    color: #3c48bd
}

.page-nav {
    padding: 0
}

.promotion-detail .swiper {
    cursor: pointer
}

.promotion-detail {
    padding-top: 48px
}

.promotion-detail .swiper-slide {
    max-width: 435px
}

.promotion-detail {
    background: #f2f5ff;
    border-radius: 30px;
    margin-bottom: 50px
}

.promotion-detail__date {
    font-family: Montserrat, sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 100%;
    letter-spacing: 0;
    vertical-align: middle;
    color: #1c1c1c;
    text-align: center;
    margin-bottom: 20px
}

.promotion-detail__title {
    font-family: Unbounded, sans-serif;
    font-weight: 400;
    font-size: 36px;
    line-height: 100%;
    letter-spacing: 0;
    text-align: center;
    color: #1c1c1c;
    margin-bottom: 50px
}

.promotion-detail__image-wrap {
    display: flex;
    justify-content: center;
    border-radius: 30px;
    overflow: hidden;
    margin-bottom: 40px
}

.promotion-detail__content {
    font-family: Montserrat, sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 100%;
    letter-spacing: 0;
    color: #1c1c1c
}

.promotion-detail__actions {
    display: flex;
    justify-content: center;
    margin-bottom: 40px
}

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

.another-promotion__title {
    font-family: "Montserrat", sans-serif;
    font-weight: 700;
    font-size: 40px;
    line-height: 100%;
    letter-spacing: 0;
    text-align: center;
    vertical-align: middle;
    background: linear-gradient(278.01deg, #015CFF -36.69%, #18279D 179.85%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: rgba(0, 0, 0, 0);
    background-clip: text
}

.another-promotion__actions {
    display: flex;
    justify-content: center;
    gap: 15px
}

.another-promotion__actions-mobile {
    display: none;
    justify-content: center;
    gap: 8px
}

.another-promotion__actions-mobile > .promotion-detail-swiper-btn {
    margin-top: 20px
}

.promotion-detail-quote {
    display: flex;
    justify-content: center;
    margin-bottom: 30px
}

.promotion-detail-quote__wrap {
    max-width: 920px;
    width: 100%
}

.promotion-detail-quote__quote {
    padding: 20px;
    margin-bottom: 10px;
    position: relative;
    font-family: Montserrat, sans-serif;
    font-weight: 300;
    font-style: italic;
    font-size: 20px;
    line-height: 100%;
    letter-spacing: 0;
    color: #1c1c1c
}

.promotion-detail-quote__quote:after {
    content: "";
    display: block;
    width: 5px;
    height: 100%;
    max-height: 105px;
    position: absolute;
    top: 0;
    left: 0;
    background: #7c4ee4
}

.promotion-detail-quote__author {
    font-family: Montserrat, sans-serif;
    font-weight: 700;
    font-size: 16px;
    line-height: 100%;
    letter-spacing: 0
}

.promotion-detail-swiper-btn.slider-btn, .promotion-detail-swiper-btn.tag-slider-btn-mobile {
    width: 56px;
    height: 56px;
    border: none;
    background: rgba(0, 0, 0, 0);
    outline: none;
    flex-shrink: 0;
    padding: 0
}

.promotion-detail-swiper-btn--prev {
    rotate: 180deg
}

.other-promotions-swiper .swiper-wrapper {
    gap: 20px;
}

.mb-20 {
    margin-bottom: 20px
}

.mb-30 {
    margin-bottom: 30px
}

@media (max-width: 1600px) {
    .promotion .promotion__wrapper img.mobile {
        display: block;
        margin-bottom: 24px;
        border-radius: 24px;
        max-width: 800px;
        width: 100%;
        margin-inline: auto
    }

    .promotion .promotion__wrapper img.desk {
        display: none
    }

    .promotion .promotion__wrapper {
        flex-direction: column;
        align-items: center
    }
}

@media screen and (max-width: 1000px) {
    .promotion-detail__date {
        margin-bottom: 15px
    }

    .promotion-detail__title {
        font-size: 32px;
        margin-bottom: 40px
    }

    .another-promotion__title {
        font-size: 30px
    }
}

@media screen and (max-width: 968px) {
    .promotion-detail__title {
        font-size: 28px;
        margin-bottom: 30px
    }

    .promotion-detail__image-wrap {
        margin-bottom: 30px
    }

    .another-promotion__title {
        font-size: 28px
    }

    .header {
        margin-bottom: 50px
    }
}

@media screen and (max-width: 768px) {
    body.promotion-detail .swiper, .another-promotion {
        display: none
    }

    .promotion-detail__title {
        font-size: 26px;
        margin-bottom: 25px
    }

    .promotion-detail__actions {
        margin-bottom: 30px
    }

    .header {
        margin-bottom: 30px
    }

    .another-promotion {
        margin-bottom: 20px
    }

    .another-promotion__title {
        font-size: 26px
    }

    .another-promotion__actions {
        display: none
    }

    .another-promotion__actions-mobile {
        display: flex
    }

    .promotion {
        padding-bottom: 0
    }

    .promotion .btn, .promotion .btn-primary, .promotion .btn-secondary, .promotion .btn-outline, .promotion .light-btn, .promotion .have-question-btn {
        display: block;
        margin: 0 auto
    }

    .promotion .wrapper {
        margin-bottom: 24px
    }

    .promotion h6 {
        margin-bottom: 0
    }

    .promotion .content-wrapper {
        gap: 16px
    }
}

@media screen and (max-width: 600px) {
    .promotion-detail__title {
        font-size: 22px;
        margin-bottom: 20px
    }

    .another-promotion__title {
        font-size: 22px
    }
}

@media screen and (max-width: 540px) {
    .promotion-detail__title {
        font-size: 20px
    }

    .another-promotion__title {
        font-size: 20px
    }
}

.content-wrap {
    margin: 0 auto
}

.partnership .partnership__wrapper ul {
    padding: 0 !important
}

.partnership {
    padding-bottom: 96px
}

.partnership .partnership__wrapper {
    background: #fff;
    border-radius: 56px;
    padding: 64px 50px
}

.partnership .partnership__wrapper .text {
    font-family: "Montserrat", sans-serif;
    font-weight: 500;
    font-size: 16px;
    line-height: 100%;
    letter-spacing: 0;
    color: #3c48bd;
    text-align: center;
    margin-top: 40px
}

.partnership .partnership__wrapper ul {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    margin-top: 40px
}

.partnership .partnership__wrapper ul li {
    max-width: 825px;
    width: 100%;
    border-radius: 30px;
    padding: 32px;
    background: #f2f5ff;
    display: flex;
    align-items: center;
    gap: 36px
}

.partnership .partnership__wrapper ul li .title {
    font-family: "Montserrat", sans-serif;
    font-weight: 600;
    font-size: 20px;
    line-height: 100%;
    letter-spacing: 0;
    color: #030b5c
}

.partnership .partnership__wrapper ul li .number {
    width: 122px;
    height: 122px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 60px;
    background: #fff;
    flex-shrink: 0
}

.partnership .partnership__wrapper ul li .number span {
    font-family: "Montserrat", sans-serif;
    font-weight: 700;
    font-size: 100px;
    line-height: 90px;
    letter-spacing: 0;
    text-align: center;
    background: linear-gradient(278.01deg, #015CFF -36.69%, #18279D 179.85%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: rgba(0, 0, 0, 0);
    background-clip: text
}

.hero-banner {
    background: linear-gradient(278.01deg, #015CFF -36.69%, #18279D 179.85%);
    border-radius: 56px;
    max-width: 1800px;
    margin-inline: auto;
    padding: 96px 0;
    margin-top: 40px
}

.hero-banner h1 {
    margin-top: 0 !important
}

.hero-banner .header__nav a {
    color: #fff
}

.hero-banner .header__btns a {
    color: #fff;
    border: 1px solid #fff
}

.hero-banner h1 {
    color: #fff;
    text-align: center;
    line-height: 1 !important;
    font: 700 90px "Montserrat", sans-serif;
    margin-top: 80px
}

.hero-banner p {
    color: #979797;
    text-align: center;
    font-size: 20px
}

.hero-banner .webmaster-form-card {
    background: #fff;
    border-radius: 30px;
    padding: 40px 30px;
    position: relative
}

.hero-banner .webmaster-form-card__title {
    font: 700 40px "Montserrat", sans-serif;
    color: #265bff;
    margin-bottom: 16px
}

.hero-banner .webmaster-form-card__subtitle {
    text-align: center;
    font: 400 16px Montserrat, sans-serif;
    color: #3c48bd;
    margin-bottom: 24px
}

.hero-banner .webmaster-form-card .webmaster-form {
    display: flex;
    gap: 30px;
    width: 100%
}

.hero-banner .webmaster-form-card .webmaster-form .input-wrapper {
    max-width: 526px;
    width: 100%
}

.hero-banner .webmaster-form-card .webmaster-form input {
    background: #f2f5ff;
    max-width: 526px;
    width: 100%
}

.hero-banner .webmaster-form-card .webmaster-form .btn, .hero-banner .webmaster-form-card .webmaster-form .btn-primary, .hero-banner .webmaster-form-card .webmaster-form .btn-secondary, .hero-banner .webmaster-form-card .webmaster-form .btn-outline, .hero-banner .webmaster-form-card .webmaster-form .light-btn, .hero-banner .webmaster-form-card .webmaster-form .have-question-btn {
    max-width: 320px;
    border-radius: 30px;
    background: #3c48bd
}

.hero-banner .webmaster-form-card .webmaster-form__submit {
    padding: 20px 30px;
    width: 100%;
    color: #fff;
    font: 600 20px Montserrat, sans-serif
}

.webmaster-offer {
    padding: 60px 0;
    background-color: #edebf0
}

.webmaster-offer .content-wrap {
    display: flex;
    background-color: #fff;
    padding: 50px;
    border-radius: 30px;
    gap: 30px
}

.webmaster-offer-wrapper {
    flex-basis: 40%;
    display: flex;
    flex-direction: column
}

.webmaster-offer-wrapper__title {
    font: 400 48px Unbounded, "sans-serif";
    color: #1c1c1c
}

.webmaster-offer-wrapper__subtitle {
    font: 400 20px/20px Montserrat, "sans-serif";
    color: #979797;
    margin: 15px 0
}

.webmaster-offer-wrapper__button {
    font: 600 20px Montserrat, "sans-serif"
}

.webmaster-offer__cards {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    flex-basis: 60%;
    gap: 15px
}

.webmaster-offer__cards .webmaster-offer-card {
    display: flex;
    align-items: center;
    gap: 20px;
    background-color: #edebf0;
    border-radius: 77px;
    padding: 10px;
    width: 80%
}

.webmaster-offer__cards .webmaster-offer-card__icon {
    min-width: 60px;
    border-radius: 50%;
    background: #5040b1;
    padding: 10px
}

.webmaster-offer__cards .webmaster-offer-card__text {
    font: 400 18px Montserrat, "sans-serif";
    color: #666
}

.webmaster-offer__cards .webmaster-offer-card.reverse-card {
    flex-direction: row-reverse;
    text-align: end
}

.webmaster-offer__cards .webmaster-offer-card:last-child {
    align-self: flex-end
}

.webmaster-offer__cards .second-row-wrapper {
    display: flex;
    gap: 15px
}

.collaboration-formats {
    padding: 50px 0;
    background: linear-gradient(90deg, #170E4D 0%, #261975 100%)
}

.collaboration-formats__title {
    font: 400 48px Unbounded, "sans-serif";
    color: #fff;
    text-align: center;
    margin-bottom: 40px
}

.collaboration-formats__cards {
    display: flex;
    justify-content: space-between;
    align-items: end;
    gap: 30px;
    flex-wrap: wrap
}

.collaboration-formats__card {
    display: flex;
    flex-direction: column;
    align-items: start;
    gap: 20px;
    background-color: #322388;
    border-radius: 10px;
    padding: 24px;
    width: 222px
}

.collaboration-formats__card p {
    font: 400 20px/100% Montserrat, "sans-serif";
    color: #e3e3e3
}

.collaboration-formats__card__img-wrapper {
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(90deg, #533FB8 0%, #4A2DD6 100%);
    box-shadow: 0 0 25px 0 rgba(0, 178, 255, .25);
    border-radius: 50%
}

.collaboration-formats__card__img-wrapper img {
    max-width: fit-content
}

.collaboration-formats .traffic-note {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin-top: 50px
}

.collaboration-formats .traffic-note p {
    font: 400 20px/100% Montserrat, "sans-serif";
    color: #e3e3e3
}

.collaboration-formats .traffic-note__img-wrapper {
    width: 28px;
    height: 31px;
    position: relative;
    overflow: hidden;
    border-radius: 50%
}

.collaboration-formats .traffic-note__img-wrapper:before {
    content: "";
    background: url("/data/images/pin-icon.svg") no-repeat center/contain;
    width: 100%;
    height: 100%;
    position: absolute;
    transform: scale(3.5)
}

section.what-we-offer {
    padding: 96px 0
}

section.what-we-offer h2 {
    font-family: "Montserrat", sans-serif;
    font-weight: 700;
    font-size: 40px;
    line-height: 100%;
    letter-spacing: 0;
    text-align: center;
    vertical-align: middle;
    background: linear-gradient(278.01deg, #015CFF -36.69%, #18279D 179.85%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: rgba(0, 0, 0, 0);
    background-clip: text;
    margin-bottom: 16px
}

section.what-we-offer .subtitle {
    font-family: "Montserrat", sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 100%;
    letter-spacing: 0;
    text-align: center;
    vertical-align: middle;
    color: #3c48bd
}

section.what-we-offer ul {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 40px;
    list-style: none
}

section.what-we-offer ul li {
    background: #fff;
    border-radius: 30px;
    padding: 32px;
    max-width: 435px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px
}

section.what-we-offer ul li .title {
    font-family: "Montserrat", sans-serif;
    font-weight: 600;
    font-size: 20px;
    line-height: 100%;
    letter-spacing: 0;
    text-align: center;
    color: #030b5c
}

@media (max-width: 768px) {
    section.what-we-offer {
        padding: 60px 0
    }
}

.modal-thank {
    position: fixed;
    inset: 0;
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 1000
}

.modal-thank .subtitle {
    font-family: "Montserrat", sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 100%;
    letter-spacing: 0;
    text-align: center;
    vertical-align: middle;
    color: #3c48bd
}

.modal-thank .btn, .modal-thank .btn-primary, .modal-thank .btn-secondary, .modal-thank .btn-outline, .modal-thank .light-btn, .modal-thank .have-question-btn {
    max-width: 284px;
    width: 100%;
    height: 56px;
    background: linear-gradient(278.01deg, #015CFF -36.69%, #18279D 179.85%);
    border-radius: 32px;
    margin-top: 40px !important
}

.modal-thank.is-open {
    display: flex
}

.modal-thank__overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, .6)
}

.modal-thank__dialog {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: 10%;
    background: #fff;
    border-radius: 16px;
    padding: 60px 40px;
    text-align: center;
    width: 698px;
    display: flex;
    flex-direction: column;
    align-items: center
}

.modal-thank__dialog img {
    height: 264px;
    width: 264px
}

.modal-thank__close {
    position: absolute;
    top: .75rem;
    right: .75rem;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: #979797;
    cursor: pointer
}

.modal-thank__title {
    font: 600 44px/46px "Montserrat", sans-serif;
    color: #5040b1
}

.modal-thank .btn, .modal-thank .btn-primary, .modal-thank .btn-secondary, .modal-thank .btn-outline, .modal-thank .light-btn, .modal-thank .have-question-btn {
    width: 100%;
    color: #fff;
    font: 600 20px Montserrat, sans-serif;
    margin-top: 20px
}

@media screen and (max-width: 768px) {
    .modal-thank .modal-thank__dialog {
        width: 95vw;
        padding: 40px 20px
    }

    .partnership {
        padding-bottom: 0
    }

    .partnership .partnership__wrapper {
        padding: 60px 20px
    }

    .partnership .partnership__wrapper ul li .number {
        width: 71px;
        height: 71px
    }

    .partnership .partnership__wrapper ul li .number span {
        font-size: 32px
    }

    .partnership .partnership__wrapper ul li .number .partnership .partnership__wrapper ul li .title {
        font-size: 16px
    }

    .partnership .partnership__wrapper ul li {
        padding: 32px 20px;
        gap: 12px
    }

    .partnership .partnership__wrapper ul li .title {
        font-size: 16px
    }

    .hero-banner {
        height: auto;
        border-radius: 0;
        padding: 60px 0
    }

    .hero-banner h1 {
        font: 700 26px "Unbounded", sans-serif;
        text-align: start;
        margin-top: 20px
    }

    .hero-banner p {
        text-align: start;
        font-size: 16px
    }

    .hero-banner .webmaster-form-card__title {
        font: 400 20px "Unbounded", sans-serif;
        text-align: center
    }

    .hero-banner .webmaster-form-card__subtitle {
        font: 400 14px "Unbounded", sans-serif
    }

    .hero-banner .webmaster-form-card::before {
        display: none
    }

    .hero-banner .webmaster-form-card .webmaster-form {
        flex-direction: column;
        align-items: center;
        gap: 20px
    }

    .hero-banner .webmaster-form-card .webmaster-form button {
        margin: 0;
        max-width: 526px !important;
        width: 100%
    }

    .hero-banner .webmaster-form-card .webmaster-form__input {
        font: 400 16px Montserrat, "sans-serif"
    }

    .hero-banner .webmaster-form-card .webmaster-form__submit {
        margin-top: 30px
    }

    .webmaster-offer .content-wrap {
        flex-wrap: wrap;
        padding: 25px;
        gap: 15px
    }

    .webmaster-offer-wrapper {
        flex-basis: 100%
    }

    .webmaster-offer-wrapper__title {
        font: 400 24px Unbounded, "sans-serif";
        text-align: center
    }

    .webmaster-offer-wrapper__subtitle {
        font: 400 16px/20px Montserrat, "sans-serif"
    }

    .webmaster-offer-wrapper__button {
        display: none
    }

    .webmaster-offer__cards {
        flex-basis: 100%
    }

    .webmaster-offer__cards .webmaster-offer-card {
        width: 100%
    }

    .webmaster-offer__cards .webmaster-offer-card__text {
        font: 400 15px Montserrat, "sans-serif"
    }

    .webmaster-offer__cards .webmaster-offer-card br {
        display: none
    }

    .webmaster-offer__cards .second-row-wrapper {
        flex-wrap: wrap
    }

    .webmaster-offer__cards .second-row-wrapper div:first-child {
        flex-direction: row-reverse;
        text-align: end
    }

    .webmaster-offer__cards .second-row-wrapper div:last-child {
        flex-direction: row;
        text-align: start
    }

    .collaboration-formats {
        padding: 40px 0
    }

    .collaboration-formats__title {
        font: 400 28px Unbounded, "sans-serif";
        margin-bottom: 20px
    }

    .collaboration-formats__cards {
        flex-direction: column;
        align-items: center;
        gap: 20px
    }

    .collaboration-formats__card {
        width: 100%
    }

    section.modal-thank h2 {
        font: 600 28px/120% "Montserrat", sans-serif
    }

    section.modal-thank .modal-thank__dialog img {
        width: 129px;
        height: 135px
    }
}

@media (max-width: 500px) {
    section.what-we-offer ul li {
        max-width: 335px;
        overflow: hidden;
        padding: 32px 20px;
        padding-top: 0;
        gap: 0
    }

    section.what-we-offer ul li .title {
        font-size: 16px
    }

    section.what-we-offer ul li img {
        transform: scale(0.8)
    }
}

.header-section {
    background: #fff;
    padding-bottom: 40px
}

.btn-primary {
    font-size: 20px;
    color: #fff;
    font-weight: 600
}

.title-block-wrap {
    display: flex
}

.title-block-wrap .title-block {
    margin-top: 25px
}

.title-block-wrap .title-block .title {
    font-weight: 400;
    font-family: "Unbounded", sans-serif;
    font-size: 48px;
    line-height: 100%;
    margin-bottom: 20px
}

.title-block-wrap .title-block .title .custom-brand {
    font-weight: 700;
    color: #5040b1
}

.title-block-wrap .title-block .subtitle {
    font-size: 20px;
    font-weight: 400;
    margin-bottom: 20px
}

.title-block-wrap .image-block .btn-primary {
    display: none
}

.how-to-install {
    padding-top: 100px
}

.how-to-install .content-wrap {
    display: flex
}

.how-to-install .content-wrap .left-block {
    flex-basis: 40%;
    margin-right: 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between
}

.how-to-install .content-wrap .left-block .title {
    font-weight: 400;
    font-family: "Unbounded", sans-serif;
    font-size: 36px;
    line-height: 100%;
    margin-bottom: 20px
}

.how-to-install .content-wrap .left-block .subtitle {
    font-family: "Montserrat", sans-serif;
    font-size: 18px;
    margin-bottom: 30px
}

.how-to-install .content-wrap .left-block picture {
    display: flex;
    justify-content: center
}

.how-to-install .content-wrap .right-block {
    flex-basis: 60%;
    display: flex;
    flex-direction: column;
    justify-content: space-between
}

.how-to-install .content-wrap .right-block .card {
    padding: 25px 25px 15px 25px;
    border-radius: 16px
}

.how-to-install .content-wrap .right-block .card .title {
    width: max-content;
    font-family: "Unbounded", sans-serif;
    font-size: 20px;
    line-height: 120%
}

.how-to-install .content-wrap .right-block .card .subtitle {
    font-family: "Montserrat", sans-serif;
    font-size: 16px;
    margin-bottom: 10px
}

.how-to-install .content-wrap .right-block .card .btn-primary {
    max-width: max-content
}

@media screen and (max-width: 1000px) {
    .how-to-install .content-wrap {
        flex-direction: column;
        align-items: center;
        gap: 30px
    }
}

@media screen and (max-width: 768px) {
    .title-block-wrap {
        flex-direction: column;
        align-items: center
    }

    .how-to-install {
        padding-top: 50px
    }

    .how-to-install .content-wrap .right-block .card .title {
        width: auto
    }
}

@media screen and (max-width: 480px) {
    .title-block-wrap {
        flex-direction: column
    }

    .title-block-wrap .title-block .btn-primary {
        display: none
    }

    .title-block-wrap .title-block .title {
        font-size: 32px
    }

    .title-block-wrap .image-block {
        display: flex;
        flex-direction: column;
        gap: 20px;
        align-items: center
    }

    .title-block-wrap .image-block .btn-primary {
        display: block
    }

    .title-block-wrap .image-block img {
        width: 220px;
        height: 310px
    }

    .how-to-install .content-wrap .left-block .title {
        font-size: 28px
    }

    .how-to-install .content-wrap .left-block .subtitle {
        font-size: 20px;
        line-height: 100%
    }

    .how-to-install .content-wrap .right-block .card .btn-primary {
        padding: 15px 10px;
        max-width: 100%
    }
}

@media screen and (max-width: 320px) {
    .title-block-wrap .title-block .title {
        font-size: 20px
    }
}
.install-app-section {
    margin-bottom: 96px;
    overflow: hidden
}

.install-app-section__wrapper {
    position: relative;
    display: flex;
    justify-content: space-between;
    gap: 68px;
    width: 100%;
    max-width: 1800px;
    padding: 0 20px;
    margin: 40.5px auto 0
}

.install-app-section__wrapper::after {
    content: "";
    display: block;
    position: absolute;
    z-index: -1;
    width: calc(100% - 40px);
    height: 420px;
    bottom: 0;
    left: 50%;
    transform: translate(-50%, 50%);
    border-radius: 56px 56px 0 0;
    background: linear-gradient(278.01deg, #015cff -36.69%, #18279d 179.85%), linear-gradient(278.01deg, color(display-p3 0.149 0.357 1) -36.69%, color(display-p3 0.106 0.149 0.592) 179.85%)
}

@media screen and (max-width: 1440px) {
    .install-app-section__wrapper::after {
        transform: translate(-50%, 70%)
    }
}

@media screen and (max-width: 720px) {
    .install-app-section__wrapper::after {
        height: 172px;
        transform: translate(-50%, 50%);
        border-radius: 23px 23px 0 0
    }
}

@media screen and (max-width: 1440px) {
    .install-app-section__wrapper {
        flex-direction: column-reverse;
        gap: 20px;
        margin: 0 auto
    }
}

.install-app-section__image {
    width: 100%;
    object-fit: cover
}

.install-app-section__image--desktop {
    display: block
}

.install-app-section__image--mobile {
    display: none
}

@media screen and (max-width: 720px) {
    .install-app-section__image--desktop {
        display: none
    }

    .install-app-section__image--mobile {
        display: block
    }
}

.install-app-section__image-container {
    display: flex;
    align-items: end;
    margin: 0 36px 0 70px
}

@media screen and (max-width: 1440px) {
    .install-app-section__image-container {
        justify-content: center;
        margin: 0 36px
    }
}

.install-app-section__title {
    font-family: "Montserrat", sans-serif;
    font-weight: 700;
    font-style: Bold;
    font-size: 48px;
    line-height: 100%;
    letter-spacing: 0%;
    color: #030b5c;
    text-wrap: balance;
    margin: 0
}

.install-app-section__title span {
    color: #265bff;
    font-weight: 700;
    font-style: Bold;
    line-height: 100%;
    letter-spacing: 0%
}

@media screen and (max-width: 720px) {
    .install-app-section__title {
        font-size: 32px
    }
}

.install-app-section__text {
    font-family: "Montserrat", sans-serif;
    font-weight: 400;
    font-style: Regular;
    font-size: 24px;
    line-height: 100%;
    letter-spacing: 0%;
    color: #3c48bd;
    margin-top: 16px
}

@media screen and (max-width: 720px) {
    .install-app-section__text {
        font-size: 18px;
        margin-top: 20px
    }
}

.install-app-section__content {
    margin-top: 68px
}

@media screen and (max-width: 720px) {
    .install-app-section__content {
        margin-top: 16px
    }
}

.install-app-section__content-text {
    max-width: 907px;
    margin-bottom: 40px
}

@media screen and (max-width: 720px) {
    .install-app-section__content-text {
        margin-bottom: 0
    }
}

.install-app-section__btn {
    display: block;
    width: fit-content;
    font-family: "Montserrat", sans-serif;
    font-weight: 700;
    font-style: Bold;
    font-size: 16px;
    line-height: 100%;
    letter-spacing: 0%;
    text-align: center;
    opacity: 1;
    padding: 22px 24px;
    border-radius: 32px;
    background: linear-gradient(278.01deg, #015cff -36.69%, #18279d 179.85%), linear-gradient(278.01deg, color(display-p3 0.149 0.357 1) -36.69%, color(display-p3 0.106 0.149 0.592) 179.85%);
    box-shadow: -7px 10px 22.9px 0px rgba(80, 64, 176, .5019607843);
    color: #fff
}

.install-app-section__btn:hover {
    color: #fff;
    text-decoration: none
}

@media screen and (max-width: 720px) {
    .install-app-section__btn {
        display: none
    }
}

.install-section__wrapper {
    width: 100%;
    max-width: 1800px;
    margin: 0 auto 92px;
    padding: 0 20px;
    display: flex;
    flex-direction: column;
    gap: 40px
}

.install-section__title {
    font-family: "Montserrat", sans-serif;
    font-weight: 700;
    font-style: Bold;
    font-size: 40px;
    line-height: 100%;
    letter-spacing: 0%;
    text-align: center;
    margin: 0;
    background: linear-gradient(278.01deg, #015cff -36.69%, #18279d 179.85%), linear-gradient(278.01deg, color(display-p3 0.149 0.357 1) -36.69%, color(display-p3 0.106 0.149 0.592) 179.85%);
    color: rgba(0, 0, 0, 0);
    background-clip: text
}

.install-section__text {
    font-family: "Montserrat", sans-serif;
    font-weight: 400;
    font-size: 24px;
    line-height: 100%;
    letter-spacing: 0%;
    text-align: center;
    text-wrap: balance;
    color: #3c48bd;
    margin-top: 12px
}

.install-section__bottom-content {
    display: grid;
    grid-template-columns:1fr 1.4fr;
    column-gap: 20px
}

@media screen and (max-width: 720px) {
    .install-section__bottom-content {
        grid-template-columns:1fr
    }
}

.install-section__img {
    width: 100%;
    height: 100%;
    object-fit: contain
}

.install-section__img--desktop {
    display: block
}

.install-section__img--mobile {
    display: none
}

@media screen and (max-width: 720px) {
    .install-section__img--desktop {
        display: none
    }

    .install-section__img--mobile {
        display: block
    }
}

.install-section__img-content {
    max-width: 560px;
    margin: 0 auto
}

@media screen and (max-width: 720px) {
    .install-section__img-content {
        margin: 0 auto -8px
    }
}

.install-section__blocks-wrapper {
    display: grid;
    grid-template-columns:1fr 90px 1fr;
    column-gap: 20px;
    row-gap: 20px
}

@media screen and (max-width: 720px) {
    .install-section__blocks-wrapper {
        grid-template-columns:1fr;
        column-gap: 0
    }
}

.install-section__block {
    display: flex;
    flex-direction: column;
    row-gap: 16px;
    width: 100%;
    background-color: #fff;
    border-radius: 32px;
    padding: 32px
}

.install-section__block--1 {
    grid-column: 1/2
}

.install-section__block--2 {
    grid-column: 2/4
}

.install-section__block--3 {
    grid-column: 1/3
}

.install-section__block--4 {
    grid-column: 3/4
}

@media screen and (max-width: 720px) {
    .install-section__block--1 {
        grid-column: none
    }

    .install-section__block--2 {
        grid-column: none
    }

    .install-section__block--3 {
        grid-column: none
    }

    .install-section__block--4 {
        grid-column: none
    }
}

.install-section__block img {
    max-height: 140px;
    object-fit: contain;
    margin-right: auto
}

.install-section__block h6 {
    margin: 0;
    font-family: "Montserrat", sans-serif;
    font-weight: 600;
    font-size: 20px;
    line-height: 100%;
    letter-spacing: 0%;
    color: #030b5c
}

.install-section__block p {
    font-family: "Montserrat", sans-serif;
    font-weight: 500;
    font-style: Medium;
    font-size: 16px;
    line-height: 100%;
    letter-spacing: 0%;
    color: #3c48bd
}

.install-section__block span {
    color: #265bff
}

.install-section__block .install-section__btn {
    display: block;
    width: fit-content;
    font-family: "Montserrat", sans-serif;
    font-weight: 700;
    font-size: 16px;
    line-height: 100%;
    text-align: center;
    opacity: 1;
    padding: 22px 24px;
    border-radius: 32px;
    background: linear-gradient(278.01deg, #015cff -36.69%, #18279d 179.85%), linear-gradient(278.01deg, color(display-p3 0.149 0.357 1) -36.69%, color(display-p3 0.106 0.149 0.592) 179.85%);
    box-shadow: -7px 10px 22.9px 0px rgba(80, 64, 176, .5019607843);
    color: #fff
}

.install-section__block .install-section__btn:hover {
    color: #fff;
    text-decoration: none
}

@media screen and (max-width: 720px) {
    .install-section__block h6 {
        font-size: 16px
    }

    .install-section__block p {
        font-size: 14px
    }
}


.mobile-promotion {
    width: 100%;
    min-height: 60px;
    display: none;
    align-items: center;
    background: #5040b0;
    border-bottom: 1px solid #4e3cb8
}

.mobile-promotion__wrapper {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px;
    gap: 12px
}

.mobile-promotion__wrapper .btn-cta {
    height: 31px;
    font-size: 12px;
    font-family: Montserrat, sans-serif
}

.mobile-promotion__wrapper .subtitle {
    font-family: Montserrat, sans-serif;
    font-weight: 400;
    font-size: 14px;
    line-height: 100%;
    letter-spacing: 0;
    color: #fff
}

.mobile-promotion__wrapper .subtitle .fw-700 {
    font-weight: 700
}

.mobile-promotion__wrapper .close-promotion-btn {
    background: rgba(0, 0, 0, 0);
    border: none;
    padding: 0;
    flex-shrink: 0
}

@media (max-width: 431px) {
    .mobile-promotion {
        display: flex
    }
}

p {
    margin-bottom: 0
}

.main-page .header {
    padding-top: 20px;
    margin-bottom: 20px
}

.main-page .header .link:hover {
    text-decoration: none;
    font-weight: 700;
    background: linear-gradient(135deg, rgb(199, 70, 255) 0%, rgb(70, 65, 239) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: rgba(0, 0, 0, 0)
}

.main-page .header__left {
    max-width: 100%
}

.main-page .header .burger-wrap {
    display: none;
    align-items: center;
    background-color: #f4f3ff;
    padding: 8px 12px;
    border-radius: 8px
}

.main-page .header .burger-wrap .menu-title {
    font-family: "Montserrat", sans-serif;
    font-weight: 700;
    font-size: 14px;
    background: linear-gradient(278.01deg, #015CFF -36.69%, #18279D 179.85%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: rgba(0, 0, 0, 0)
}

.main-page .header .burger-wrap .burger-btn div {
    background: linear-gradient(278.01deg, #015CFF -36.69%, #18279D 179.85%)
}

.main-banner {
    display: flex
}

.main-banner .text-wrap {
    display: flex;
    flex-direction: column;
    justify-content: center
}

.main-banner .title-section {
    font-family: Montserrat, "sans-serif";
    font-size: 48px;
    font-weight: 700;
    line-height: 120%;
    color: #1c1c1c;
    margin-bottom: 50px
}

.main-banner .title-section .pink-color {
    background: linear-gradient(135deg, rgb(199, 70, 255) 0%, rgb(70, 65, 239) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: rgba(0, 0, 0, 0)
}

.main-banner .title-section .blue-gradient-color {
    background: linear-gradient(278.01deg, color(display-p3 0.149 0.357 1) -36.69%, color(display-p3 0.106 0.149 0.592) 179.85%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: rgba(0, 0, 0, 0);
    background-clip: text;
    color: rgba(0, 0, 0, 0)
}

.main-banner .social-media {
    display: flex;
    gap: 20px;
    align-items: center
}

.main-banner .social-media .social-links {
    display: flex;
    gap: 15px
}

.main-banner .social-media.mobile {
    display: none
}

.main-banner .content-wrap-full {
    display: flex;
    justify-content: space-between;
    gap: 30px
}

.main-banner .loan-calculator {
    background: #fff;
    border: 1px solid #887ae8;
    border-radius: 56px;
    padding: 30px;
    width: 750px
}

.main-banner .loan-calculator__title {
    font-family: Montserrat, "sans-serif";
    font-size: 24px;
    font-weight: 400;
    line-height: 24px;
    color: #030b5c;
    margin-bottom: 10px
}

.main-banner .loan-calculator__content {
    display: flex;
    gap: 60px;
    align-items: flex-start
}

.main-banner .loan-calculator__left {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 20px
}

.main-banner .loan-calculator__right {
    flex: 1;
    max-width: 400px;
    margin-top: 30px
}

.main-banner .loan-calculator__btn {
    width: 100%;
    padding: 20px;
    font-size: 18px;
    font-weight: 600;
    margin-top: 30px
}

.main-banner .calculator-field .calculator-field__currency, .main-banner .calculator-field .currency-bottom {
    font-family: Montserrat, "sans-serif";
    font-size: 14px;
    font-weight: 400;
    color: #878d97
}

.main-banner .calculator-field .currency-bottom {
    font-size: 16px
}

.main-banner .calculator-field__value {
    display: flex;
    align-items: baseline;
    gap: 8px
}

.main-banner .calculator-field__value span:first-child {
    font-family: Montserrat, "sans-serif";
    font-size: 40px;
    font-weight: 400;
    color: #5040b0
}

.main-banner .calculator-field__range {
    display: flex;
    justify-content: space-between
}

.main-banner .calculator-slider {
    height: 24px;
    background: #f4f3ff;
    border-radius: 10px
}

.main-banner .noUi-target {
    border: none;
    background: #f4f3ff;
    height: 24px;
    box-shadow: none;
    border-radius: 10px
}

.main-banner .noUi-base {
    display: flex;
    align-items: center;
    height: 24px
}

.main-banner .noUi-connects {
    height: 24px;
    border-radius: 24px
}

.main-banner .noUi-connect {
    background: linear-gradient(278.01deg, #015CFF -36.69%, #18279D 179.85%);
    height: 24px;
    border-radius: 10px
}

.main-banner .noUi-horizontal .noUi-handle {
    border-radius: 50%;
    width: 28px;
    height: 28px;
    top: -2px;
    background: #fff;
    border: 5px solid rgba(224, 214, 255, .6);
    cursor: pointer;
    right: -12px
}

.main-banner .noUi-horizontal .noUi-handle:before, .main-banner .noUi-horizontal .noUi-handle:after {
    display: none
}

.main-banner .noUi-horizontal .noUi-handle:focus {
    outline: none
}

.main-banner .noUi-horizontal .noUi-handle:hover {
    box-shadow: 0 4px 12px rgba(80, 64, 176, .3);
    transform: scale(1.1)
}

.main-banner .noUi-tooltip {
    display: none
}

.main-banner .noUi-base {
    position: relative
}

.main-banner .noUi-base:after, .main-banner .noUi-base:before {
    display: none
}

.main-banner .calculator-info {
    background: #f4f3ff;
    border-radius: 16px;
    padding: 16px
}

.main-banner .calculator-info__row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
    font-family: Montserrat, "sans-serif";
    font-size: 14px;
    color: #1c1c1c
}

.main-banner .calculator-info__row:last-child {
    margin-bottom: 0
}

.main-banner .calculator-info .return-date {
    font-family: Montserrat, "sans-serif";
    font-size: 16px
}

.main-banner .calculator-info .promo-wrap {
    display: flex;
    justify-content: space-between
}

.main-banner .calculator-info__promo {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12px
}

.main-banner .calculator-info .amount-pay {
    font-family: Montserrat, "sans-serif";
    font-size: 16px;
    line-height: 120%;
    font-weight: 400
}

.main-banner .calculator-info__amount {
    display: flex;
    flex-direction: column;
    align-items: flex-end
}

.main-banner .calculator-info__amount .old-amount {
    font-family: Montserrat, "sans-serif";
    font-size: 12px;
    color: #8e8e8e;
    text-decoration: line-through;
    line-height: 100%;
    white-space: nowrap
}

.main-banner .calculator-info__amount .new-amount {
    font-family: Montserrat, "sans-serif";
    font-size: 16px;
    font-weight: 600;
    color: #5040b0;
    line-height: 100%;
    white-space: nowrap
}

.main-banner .loan-calculator__btn {
    box-shadow: -7px 10px 22.9px 0px rgba(80, 64, 176, .5)
}

.main-banner .promo-badge {
    background: linear-gradient(276.89deg, #015CFF 71.07%, #18279D 181.96%);
    color: #fff;
    padding: 2px 4px;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 700;
    font-family: "Nunito", sans-serif;
    transform: rotate(356deg)
}

.sale {
    margin-top: 20px
}

.sale .content-wrap-full .sale-banners-swiper {
    width: 100%;
    overflow: hidden
}

.sale .content-wrap-full .sale-banners-swiper .swiper-slide {
    height: auto;
    border-radius: 56px
}

.sale .content-wrap-full .banner-1, .sale .content-wrap-full .banner-2 {
    height: 340px;
    background-repeat: no-repeat;
    background-position: center;
    border-radius: 56px;
    text-decoration: none;
    display: block;
    cursor: pointer;
    transition: opacity .3s ease;
    width: 100%;
    background-size: auto;
    padding: 20px;
    position: relative
}

.sale .content-wrap-full .banner-1:hover, .sale .content-wrap-full .banner-2:hover {
    opacity: .8
}

.sale .content-wrap-full .link {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0
}

.sale .content-wrap-full .banner-1 {
    /*background: url("/data/images/banner_sale_1.png") center center/cover no-repeat;*/
    background-size: contain;
}

.sale .content-wrap-full .arrow-btn {
    /*justify-self: flex-end;*/
    /*width: 44px;*/
    /*height: 44px*/
}

.sale .content-wrap-full .banner-2 {
    background-image: url("/data/images/banner_sale_1.png")
}

.sale .content-wrap-full .banner-2 .top-row {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin-bottom: 20px
}

.sale .content-wrap-full .banner-2 .logo-wrap {
    display: flex;
    align-items: center;
    gap: 10px
}

.sale .content-wrap-full .banner-2 .logo-wrap .title {
    font-family: Montserrat, "sans-serif";
    font-size: 14px;
    line-height: 16px;
    color: #fff
}

.sale .content-wrap-full .banner-2 .banner-title-wrap .banner-title {
    font-family: Montserrat, "sans-serif";
    font-weight: 700;
    font-size: 46px;
    line-height: 40px;
    color: #ecee45
}

.news-and-promo .news-and-promo-item {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    max-width: 435px;
    height: auto;
    align-self: stretch;
}

.news-and-promo .news-and-promo-item .item-body {
    width: 100%;
    min-height: 222px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    box-shadow: 0px 2px 4px 0px rgba(96, 97, 112, .1607843137);
    border-radius: 0 0 16px 16px;
    background: #fff;
    padding: 32px;
    height: 100%;
}


.news-and-promo .news-and-promo-item .title-wrapper {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    justify-content: space-between;
    margin-bottom: 16px
}

.news-and-promo .news-and-promo-item .title-wrapper .title {
    font-family: "Montserrat", sans-serif;
    font-weight: 600;
    font-size: 20px;
    line-height: 100%;
    letter-spacing: 0;
    color: #030b5c;
    margin-bottom: 8px
}

.news-and-promo .news-and-promo-item .title-wrapper .date {
    font-family: "Montserrat", sans-serif;
    font-weight: 500;
    font-size: 14px;
    line-height: 100%;
    letter-spacing: 0;
    color: #3c48bd
}

.news-and-promo .news-and-promo-item .text {
    font-family: "Montserrat", sans-serif;
    font-weight: 500;
    font-size: 16px;
    line-height: 100%;
    letter-spacing: 0;
    color: #3c48bd;
    margin-bottom: 32px
}

.news-and-promo .news-and-promo-item .wrapper {
    display: flex;
    gap: 8px;
    margin-top: auto;
}

.news-and-promo .news-and-promo-item .wrapper .btn-more {
    max-width: 317px;
    width: 100%;
    border-radius: 30px;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    border: 1px solid #265bff;
    background: rgba(0, 0, 0, 0);
    font-family: "Montserrat", sans-serif;
    font-weight: 700;
    font-size: 16px;
    line-height: 100%;
    letter-spacing: 0;
    text-align: center;
    vertical-align: middle;
    color: #265bff
}

.news-and-promo .news-and-promo-item .wrapper .link-btn {
    background: rgba(0, 0, 0, 0);
    cursor: pointer;
    width: 48px;
    height: 48px;
    flex-shrink: 0;
    padding: 0
}

.content-white-block.news-and-promo .news-and-promo-item .item-body > div:last-child {
    display: flex;
    flex-direction: column;
    flex: 1;
    width: 100%;
}

@media (max-width: 768px) {
    .news-and-promo .news-and-promo-item .item-body {
        padding: 20px
    }
}

.news-and-promo .top-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 50px
}

.news-and-promo .btn-secondary.mobile {
    display: none
}

.news-and-promo .section-title {
    font-family: Montserrat, "sans-serif";
    font-size: 40px;
    line-height: 100%;
    font-weight: 700;
    background: linear-gradient(278.01deg, #015CFF -36.69%, #18279D 179.85%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: rgba(0, 0, 0, 0)
}

.news-and-promo .slider-wrap .card {
    padding: 20px;
    background: #f4f3ff;
    border-radius: 16px;
    max-width: 283px;
    height: 290px;
    transition: all .6s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden
}

.news-and-promo .slider-wrap .card .banner-img {
    max-width: 370px;
    display: none;
    opacity: 0;
    transition: opacity .4s ease-in-out .2s
}

.news-and-promo .slider-wrap .card .top-label {
    display: flex;
    justify-content: space-between
}

.news-and-promo .slider-wrap .card .top-label span {
    color: #7b6e9a;
    font-family: Montserrat, "sans-serif";
    font-size: 14px;
    line-height: 22px;
    letter-spacing: .2px
}

.news-and-promo .slider-wrap .card .title {
    font-family: Montserrat, "sans-serif";
    font-size: 20px;
    line-height: 120%;
    font-weight: 500;
    color: #1c1c1c
}

.news-and-promo .slider-wrap .card .subtitle {
    display: none;
    font-family: Montserrat, "sans-serif";
    font-size: 14px;
    line-height: 120%;
    font-weight: 500;
    color: #7b6e9a
}

.news-and-promo .slider-wrap .card .text-wrap {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between
}

.news-and-promo .slider-wrap .card .btn-more {
    font-family: Montserrat, "sans-serif";
    font-size: 16px;
    font-weight: 700;
    line-height: 100%;
    color: #5040b0;
    border-radius: 16px;
    border: 1px solid #5040b0;
    padding: 10px 16px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(0, 0, 0, 0);
    width: max-content;
    gap: 10px;
    height: 46px
}

.news-and-promo .slider-wrap .card .btn-more:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(80, 64, 176, .3)
}

.news-and-promo .slider-wrap .card.active {
    display: flex;
    flex-direction: row;
    gap: 20px;
    max-width: 880px;
    width: 880px !important;
    box-shadow: 0 8px 32px rgba(80, 64, 176, .15)
}

.news-and-promo .slider-wrap .card.active .subtitle, .news-and-promo .slider-wrap .card.active .banner-img {
    display: block;
    opacity: 1
}

.news-and-promo .slider-wrap .card.active .title {
    transform: translateY(-2px)
}

.benefits .content-wrap-full {
    padding: 50px 0 50px 50px;
    overflow: hidden;
    display: flex;
    flex-direction: column
}

.benefits .section-title {
    font-family: Montserrat, "sans-serif";
    font-weight: 700;
    line-height: 90px;
    font-size: 64px;
    background: linear-gradient(276.89deg, #015CFF 71.07%, #18279D 181.96%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: rgba(0, 0, 0, 0)
}

.benefits .slider-wrap {
    max-width: 100%;
    align-self: flex-start;
    margin-top: 24px;
}

.benefits .benefits-loan-swiper .swiper-wrapper {
    display: flex;
    justify-content: flex-end;
    flex-direction: row-reverse
}

.benefits .benefits-loan-swiper .card {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    border-radius: 32px;
    width: 344px;
    height: 329px;
    padding: 32px 32px 0;
    background-color: #f2f5ff
}

.benefits .benefits-loan-swiper .card .title {
    font-family: Montserrat, "sans-serif";
    font-size: 20px;
    font-weight: 500;
    line-height: 120%;
    color: #1c1c1c;
    margin-bottom: 0
}

.benefits .benefits-loan-swiper .card .subtitle {
    font-family: Montserrat, "sans-serif";
    font-size: 14px;
    font-weight: 500;
    line-height: 120%;
    color: #7b6e9a
}

.faq .section-title {
    font-family: Montserrat, "sans-serif";
    background: linear-gradient(278.01deg, #015CFF -36.69%, #18279D 179.85%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: rgba(0, 0, 0, 0);
    background-clip: text;
    color: rgba(0, 0, 0, 0);
    font-size: 40px;
    font-weight: 700;
    text-align: center
}

.faq .section-subtitle {
    font-family: Montserrat, "sans-serif";
    font-weight: 500;
    line-height: 120%;
    font-size: 16px;
    color: #3c48bd;
    text-align: center;
    margin-bottom: 50px
}

.faq .faq-swiper {
    cursor: grab
}

.faq .faq-swiper .swiper-slide {
    flex-shrink: 0 !important
}

.faq .faq-swiper .card {
    padding: 0;
    justify-content: space-between;
    min-height: 320px;
    width: 436px;
    background-color: #fff;
    border-radius: 30px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, .06);
    height: 330px;
    background-size: cover
}

.faq .faq-swiper .card .title {
    font-family: Montserrat, "sans-serif";
    font-weight: 500;
    font-size: 20px;
    line-height: 120%;
    color: #5040b0
}

.faq .faq-swiper .card .subtitle {
    font-family: Montserrat, "sans-serif";
    font-weight: 500;
    font-size: 16px;
    line-height: 120%;
    color: #3c48bd
}

.faq .faq-swiper .card .profile-name {
    font-family: "Montserrat", sans-serif;
    font-weight: 500;
    font-size: 20px;
    line-height: 120%;
    letter-spacing: 0;
    color: #265bff
}

.faq .faq-swiper .card .text-content {
    padding: 32px 32px 16px 32px
}

.faq .faq-swiper .card .feedback-card-footer {
    background: #CEDDFF;
    padding: 16px 32px 32px 32px;
    display: flex;
    gap: 12px;
    align-items: center;
    border-radius: 0 0 30px 30px
}

.faq .faq-swiper .card .feedback-card-footer .feedback-card-avatar {
    width: 56px;
    height: 56px;
    min-width: 56px;
    max-width: 56px;
    border-radius: 50%;
    object-fit: cover;
    object-position: center;
}

@media (max-width: 768px) {
    .faq .faq-swiper .card {
        width: 310px;
        height: 277px;
        min-height: auto
    }

    .faq .faq-swiper .card .subtitle {
        font-size: 14px
    }

    .faq .faq-swiper .card .profile-name {
        font-size: 18px
    }

    .faq .faq-swiper .card .text-content {
        padding: 20px 20px 10px 20px
    }

    .faq .faq-swiper .card .feedback-card-footer {
        padding: 10px 20px 20px 20px
    }
}

.we-trust-you .section-title {
    font-family: Montserrat, "sans-serif";
    color: #5040b0;
    font-size: 40px;
    font-weight: 700;
    text-align: center
}

.we-trust-you .section-subtitle {
    font-family: Montserrat, "sans-serif";
    font-weight: 500;
    line-height: 120%;
    font-size: 16px;
    color: #7b6e9a;
    text-align: center;
    margin-bottom: 50px
}

.we-trust-you .benefits-swiper .card {
    background-color: #f4f3ff;
    padding: 32px;
    border-radius: 16px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, .06);
    height: 330px;
    background-size: contain;
    justify-content: flex-start
}

.we-trust-you .benefits-swiper .card .title {
    font-family: Montserrat, "sans-serif";
    font-weight: 500;
    font-size: 20px;
    line-height: 120%;
    color: #5040b0
}

.we-trust-you .benefits-swiper .card .subtitle {
    font-family: Montserrat, "sans-serif";
    font-weight: 500;
    font-size: 16px;
    line-height: 120%;
    color: #7b6e9a
}

.we-trust-you .benefits-swiper .card-1 {
    background-image: url("/data/images/benefit-card-1.svg")
}

.we-trust-you .benefits-swiper .card-2 {
    background-image: url("/data/images/benefit-card-2.svg")
}

.we-trust-you .benefits-swiper .card-3 {
    background-image: url("/data/images/benefit-card-3.svg")
}

@media (min-width: 1024px) {
    .we-trust-you .benefits-swiper {
        overflow: visible
    }

    .we-trust-you .benefits-swiper .swiper-wrapper {
        display: grid !important;
        grid-template-columns:repeat(3, 1fr);
        gap: 20px
    }

    .we-trust-you .benefits-swiper .swiper-pagination {
        display: none
    }
}

.questions .content-wrap-full {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-radius: 56px;
    padding: 32px;
    background: linear-gradient(278.01deg, #015CFF -36.69%, #18279D 179.85%)
}

.questions .btn-cta {
    padding: 16px 24px
}

.questions .title {
    font-family: Montserrat, "sans-serif";
    font-size: 40px;
    font-weight: 700;
    color: #fff
}

.space-trust .content-wrap-full {
    padding: 50px
}

.space-trust .section-title {
    font-family: Montserrat, "sans-serif";
    font-weight: 700;
    line-height: 90px;
    font-size: 64px;
    text-align: center;
    background: linear-gradient(0deg, #015CFF, #015CFF);
    -webkit-background-clip: text;
    -webkit-text-fill-color: rgba(0, 0, 0, 0);
    background-clip: text;
    color: rgba(0, 0, 0, 0)
}

.space-trust .text-wrap {
    display: flex;
    justify-content: center;
    gap: 20px
}

.space-trust .text-wrap .left-block, .space-trust .text-wrap .right-block {
    background: hsla(0, 0%, 100%, .8);
    padding: 32px;
    border-radius: 30px;
    max-width: 670px;
    margin-top: 24px;
}

.space-trust .text-wrap .left-block img {
    margin-top: 50px
}

.space-trust .text-wrap .right-block .subtitle.mobile {
    display: none
}

.space-trust .text-wrap .title {
    font-family: Montserrat, "sans-serif";
    font-weight: 500;
    font-size: 20px;
    line-height: 120%
}

.space-trust .text-wrap .subtitle {
    font-family: Montserrat, "sans-serif";
    font-size: 14px;
    font-weight: 500;
    color: #7b6e9a;
    margin-bottom: 20px
}

.space-trust .text-wrap .btn-secondary {
    width: 100%;
    padding: 16px 24px;
    font-size: 16px
}

.badges {
    padding: 50px 0;
    margin-inline: auto
}

.badge {
    display: inline-block;
    white-space: nowrap;
    padding: 16px 24px;
    border-radius: 24px;
    background: #fff;
    color: #265BFF;
    font-family: Montserrat, sans-serif;
    font-weight: 600;
    line-height: 100%;
    font-size: 16px;
}

.badges-swiper .swiper-slide {
    width: auto
}

@media (min-width: 768px) {
    .badges {
        padding: 50px 0
    }

    .badges-swiper {
        display: flex;
        justify-content: center
    }

    .badges-swiper .swiper-wrapper {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        column-gap: 16px;
        row-gap: 18px;
        padding: 8px 0;
        transform: none !important
    }

    .badges-swiper .swiper-slide {
        width: auto !important;
        flex: 0 0 auto
    }
}

.document-card {
    width: 100%;
    max-width: 330px;
    border-radius: 10px;
    padding: 25px 35px;
    background: linear-gradient(180deg, color(display-p3 0.855 0.824 0.925) 0%, color(display-p3 0.969 0.969 0.969) 100%)
}

.document-card__image {
    margin-bottom: 50px
}

.document-card__title {
    font-family: Montserrat, "sans-serif";
    font-size: 20px;
    font-weight: 400;
    line-height: 24.38px;
    color: #1c1c1c
}

.document-card__subtitle {
    font-family: Montserrat, "sans-serif";
    font-size: 12px;
    font-weight: 400;
    line-height: 14.63px;
    color: #7b7b7b;
    margin-top: 15px
}

.document-card:nth-child(2) {
    padding: 35px 25px
}

.document-card:nth-child(2) .document-card__image {
    margin-bottom: 58px
}

.document-card:nth-child(3) {
    padding: 53px 32px 30px
}

.document-card:nth-child(3) .document-card__image {
    margin-bottom: 75px
}

.labels-block {
    display: flex;
    flex-direction: column;
    align-items: center
}

.labels-block__wrap {
    display: flex;
    gap: 10px;
    margin-bottom: 10px
}

.label {
    display: flex;
    gap: 10px;
    align-items: center
}

.label__mark {
    width: 20px;
    height: 20px;
    border-radius: 3px;
    background: #5040b1
}

.label__mark_second {
    background: #8073ca
}

.label__mark_third {
    background: #c7bff5
}

.label__text {
    color: #000;
    font-family: Montserrat, sans-serif;
    font-size: 12px;
    font-weight: 400;
    line-height: 14.63px
}

.circles-block {
    position: relative;
    width: 233px;
    height: 233px
}

.get-credit-mobile-btn {
    display: none;
    margin-bottom: 10px;
    font-weight: bold
}

.tag-slider-btn-mobile {
    display: none;
    margin-top: 0
}

.tag-slider-btn-mobile--prev {
    transform: rotate(180deg)
}

.content-light-block {
    flex-direction: column;
    align-items: center
}

.referral-block {
    padding: 40px 60px;
    border-radius: 30px;
    width: 100%;
    background: linear-gradient(90deg, #180E50 0%, #29187A 100%), linear-gradient(90deg, color(display-p3 0.09 0.055 0.302) 0%, color(display-p3 0.149 0.098 0.459) 100%);
    position: relative;
    margin-top: 130px
}

.referral-block__wrap {
    display: flex
}

.referral-block__title {
    font-family: Montserrat, sans-serif;
    font-size: 48px;
    font-weight: 400;
    line-height: 58.51px;
    max-width: 720px;
    color: #fff;
    margin-bottom: 40px
}

.referral-block__title_bold {
    font-weight: 700
}

.referral-btn-mobile {
    display: none
}

.referral-card {
    min-width: max-content;
    padding: 20px;
    display: flex;
    font-family: Montserrat, sans-serif;
    font-size: 48px;
    font-weight: 600;
    line-height: 73.03px;
    color: #fff;
    border-radius: 20px;
    background: #5040b1;
    transform: rotate(-15deg);
    width: fit-content;
    margin-left: -160px;
    margin-top: 60px
}

.referral-btn {
    color: #fff;
    font-weight: 600;
    width: 100%;
    max-width: 330px;
    height: 80px;
    font-size: 20px
}

.feedback-slider-block {
    margin-top: 40px;
    margin-bottom: 60px;
    display: flex;
    justify-content: space-between;
    align-items: center
}

.feedback-slider-block__title {
    font-family: Unbounded, "sans-serif";
    font-size: 48px;
    font-weight: 400;
    line-height: 59.52px;
    color: #1c1c1c
}

.feedback-slider-block__btns {
    display: flex;
    gap: 10px
}

.feedback-slider-block .slider-feedback-btn--prev {
    transform: rotate(180deg)
}

.feedback-swiper {
    margin-bottom: 80px
}

.feedback-slider-card {
    background: #fff;
    padding: 25px;
    border-radius: 30px;
    min-height: 330px;
    max-width: 360px;
    width: 100%
}

.feedback-slider-card__stars {
    display: flex;
    gap: 5px;
    margin-bottom: 10px
}

.feedback-slider-card__name {
    font-family: Montserrat, sans-serif;
    font-weight: 700;
    font-size: 20px;
    line-height: 100%;
    letter-spacing: 0;
    color: #1c1c1c;
    margin-bottom: 10px
}

.feedback-slider-card__comment {
    font-family: Montserrat, sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 100%;
    letter-spacing: 0;
    vertical-align: middle;
    color: #7b7b7b
}

.feedback-slider-mobile-btn {
    justify-content: center;
    gap: 10px;
    margin-bottom: 40px;
    display: none
}

.main-bottom-banner {
    overflow: hidden;
    display: flex;
    min-height: 70px
}

.main-bottom-banner img {
    min-width: 100%;
    object-fit: cover
}

.fixed-nav-panel {
    background: rgba(171, 157, 255, .6);
    width: max-content;
    border-radius: 20px;
    padding: 20px;
    backdrop-filter: blur(5px);
    z-index: 1000000;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px
}

.fixed-nav-panel__item {
    width: max-content;
    border-radius: 15px;
    background: #fff;
    padding: 20px;
    min-height: 64px;
    display: flex;
    align-items: center;
    justify-content: center
}

.fixed-nav-panel__text {
    font-family: Montserrat, sans-serif;
    font-size: 18px;
    font-weight: 400;
    line-height: 24.38px;
    color: #5040b1
}

.fixed-nav-panel__text_bold {
    font-weight: 700
}

.fixed-nav-panel-wrap {
    display: none;
    justify-content: center;
    bottom: 200px;
    position: fixed;
    padding: 0 20px;
    width: 100%;
    z-index: 100
}

@media (max-width: 1240px) {
    .main-page .header .burger-wrap {
        display: flex !important
    }

    .main-page .header .burger-wrap .burger-btn {
        display: flex !important
    }
}

.page-nav {
    max-width: 1820px;
    width: 100%;
    padding-left: 20px;
    margin-top: 10px;
    display: flex;
    align-items: center;
    gap: 4px
}

.page-nav span {
    font-size: 12px
}

.page-nav a {
    font-family: "Montserrat", sans-serif;
    font-weight: 400;
    font-size: 12px;
    line-height: 100%;
    letter-spacing: 0;
    vertical-align: middle;
    color: #030b5c
}

.input-wrapper {
    position: relative
}

.input-wrapper .err-text {
    display: none;
    font-family: "Montserrat", sans-serif;
    font-weight: 400;
    font-size: 12px;
    line-height: 100%;
    letter-spacing: 0;
    color: #eb3a3a;
    margin-top: 4px
}

input[type=text].error ~ .err-text, input[type=password].error ~ .err-text {
    display: block
}

input[type=text], input[type=password] {
    height: 64px;
    max-width: 790px;
    width: 100%;
    background: #fff;
    padding: 24px 12px 16px 16px;
    border-radius: 30px;
    outline: none;
    border: none;
    font-family: "Montserrat", sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 100%;
    letter-spacing: 0;
    vertical-align: middle;
    color: #030b5c
}

input[type=text].error, input[type=password].error {
    border: 2px solid #e04a4d !important
}

input[type=text]:valid, input[type=password]:valid {
    border: 2px solid #076fcd
}

label.input-placeholder {
    font-family: "Montserrat", sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 100%;
    letter-spacing: 0;
    color: #3c48bd;
    position: absolute;
    top: 24px;
    left: 17px;
    transition: .2s all linear
}

input[type=text].error ~ label.input-placeholder {
    color: #e04a4d
}

input[type=text]:valid ~ label.input-placeholder, input[type=text]:focus ~ label.input-placeholder, input[type=password]:valid ~ label.input-placeholder, input[type=password]:focus ~ label.input-placeholder {
    top: 11px;
    font-size: 14px
}

.mb-16 {
    margin-bottom: 16px
}

.pagination-container {
    display: flex;
    justify-content: center;
    margin-top: 40px;
    flex-shrink: 0
}

.pagination-container #prev-button, .pagination-container #next-button {
    width: 56px;
    height: 56px;
    border: none;
    background: rgba(0, 0, 0, 0);
    cursor: pointer;
    outline: none
}

#pagination-numbers {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    justify-content: center;
    margin: 0 20px
}

#pagination-numbers button {
    background: none;
    border: none;
    font-family: "Montserrat", sans-serif;
    font-weight: 500;
    font-size: 20px;
    line-height: 100%;
    letter-spacing: 0;
    text-align: center;
    vertical-align: middle;
    cursor: pointer;
    padding: 16px 20px;
    border-radius: 30px;
    color: #265bff
}

#pagination-numbers button.active-pagination-number {
    background: #f2f5ff
}

.active-pagination-number {
    color: #265bff !important;
    font-weight: 700 !important;
    font-size: 20px !important
}

section.news #pagination-numbers button {
    color: #d2d2d2
}

section.news .active-pagination-number {
    color: #282b38 !important;
    font-size: 28px
}

.pagination-ellipsis {
    font-style: normal;
    font-weight: 500;
    font-size: 18px;
    line-height: 22px;
    text-align: center;
    text-transform: uppercase;
    color: #8a8a8a
}

.pagination-container #next-button #next-button-media-470 {
    display: none
}

.pagination-container #prev-button #prev-button-media-470 {
    display: none
}

#promoModal .modal-dialog {
    max-width: 698px
}

#promoModal .modal-dialog .modal-body {
    max-width: 618px
}

#promoModal .modal-content {
    background: url("/data/images/promo-modal-bg.png") center bottom/contain no-repeat, linear-gradient(181.98deg, #015CFF 10.65%, #18279D 105.83%);
    padding-bottom: 110px
}

#promoModal .modal-title {
    font-family: "Montserrat", sans-serif;
    font-weight: 700;
    font-size: 40px;
    line-height: 100%;
    letter-spacing: 0;
    text-align: center;
    vertical-align: middle;
    color: #fff
}

#promoModal .input-wrapper {
    max-width: 466px;
    position: relative;
    left: 50%;
    transform: translateX(-50%)
}

#promoModal .btn-white {
    max-width: 466px;
    width: 100%;
    background: #fff;
    border-radius: 32px;
    font-family: "Montserrat", sans-serif;
    font-weight: 700;
    font-size: 16px;
    line-height: 100%;
    letter-spacing: 0;
    text-align: center;
    vertical-align: middle;
    color: #265bff;
    margin-inline: auto;
    display: block
}

#promoModal .close {
    color: #fff
}

#promoModal .additional-text {
    font-family: "Montserrat", sans-serif;
    font-weight: 400;
    font-size: 14px;
    line-height: 100%;
    letter-spacing: 0;
    text-align: center;
    vertical-align: middle;
    color: #ceddff;
    margin-top: 24px
}

@media (max-width: 500px) {
    #promoModal .modal-content {
        background: url("images/promo-modal-bg-mobile.png") center bottom/contain no-repeat, linear-gradient(181.98deg, #015CFF 10.65%, #18279D 105.83%);
    }
    #promoModal .modal-title {
        font-size: 20px;
    }
}

.blue-modal .modal-content {
    background: linear-gradient(181.98deg, #015CFF 10.65%, #18279D 105.83%)
}

.blue-modal .modal-content .modal-title {
    color: #fff
}

.blue-modal .modal-content .modal-subtitle {
    font-family: "Montserrat", sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 100%;
    text-align: center;
    color: #fff
}

.blue-modal .modal-content img {
    margin: 24px 0;
    max-width: 500px;
    width: 100%
}

.blue-modal .modal-content .close {
    color: #ceddff
}

.blue-modal .modal-content .btn-white {
    max-width: 466px;
    width: 100%;
    height: 64px;
    border-radius: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: "Montserrat", sans-serif;
    font-weight: 700;
    font-size: 16px;
    line-height: 100%;
    text-align: center;
    background: #fff;
    vertical-align: middle;
    color: #265bff;
    cursor: pointer
}

.blue-modal .modal-content .btn-white:hover {
    transform: scale(1.01)
}

@media (max-width: 500px) {
    #promoModal .modal-content {
        background: url("/data/images/promo-modal-bg-mobile.png") center bottom/contain no-repeat, linear-gradient(181.98deg, #015CFF 10.65%, #18279D 105.83%)
    }

    #promoModal .modal-title {
        font-size: 20px
    }
}

@media screen and (max-width: 1340px) {
    .main-page .header__nav {
        gap: 10px
    }

    .main-page .header__nav .link {
        font-size: 18px
    }

    .main-banner .loan-calculator {
        width: 700px
    }
}

@media screen and (max-width: 1100px) {
    .content-wrap {
        padding: 0 20px
    }

    .main-banner__title {
        font-size: 50px
    }

    .main-info__content {
        font-size: 18px
    }

    .referral-card {
        margin-top: 80px
    }

    .we-trust-you .benefits-swiper .card {
        height: auto
    }

    .benefits .slider-wrap {
        max-width: 100%;
        width: 100%
    }

    .main-banner .content-wrap-full {
        flex-direction: column;
        align-items: center
    }

    .main-banner .loan-calculator {
        padding: 24px;
        margin: 30px 0
    }

    .main-banner .loan-calculator__title {
        font-size: 20px;
        margin-bottom: 30px
    }

    .main-banner .loan-calculator__content {
        flex-direction: column;
        gap: 30px
    }

    .main-banner .loan-calculator__right, .main-banner .loan-calculator__left {
        width: 100%;
        max-width: 100%
    }

    .main-banner .calculator-field__value span:first-child {
        font-size: 36px
    }

    .main-page .header__nav .link {
        font-size: 16px
    }

    .sale .swiper-wrapper .swiper-slide {
        max-width: 790px
    }
}

@media screen and (max-width: 1000px) {
    .main-banner__title {
        font-size: 45px;
        line-height: 62px
    }

    .btn-outline {
        padding: 15px 25px
    }

    .btn-primary {
        padding: 15px 25px
    }

    .slider-block {
        margin-top: 50px
    }

    .slider-block__title {
        font-size: 40px;
        line-height: 50px
    }

    .calculator-block {
        margin-top: 80px;
        margin-bottom: 80px
    }

    .documents-block__title {
        font-size: 42px;
        line-height: 50px
    }

    .have-question {
        padding: 20px 50px
    }

    .have-question__text {
        font-size: 24px
    }

    .have-question-btn {
        font-size: 20px
    }

    .why-usdt__title {
        font-size: 42px;
        line-height: 50px
    }

    .why-usdt__btn {
        font-size: 18px
    }

    .tag {
        font-size: 18px;
        line-height: 20px
    }

    .card-swiper {
        margin-bottom: 0
    }
}

@media screen and (max-width: 968px) {
    .main-banner__title {
        font-size: 40px;
        line-height: 50px;
        margin-top: 20px
    }

    .slider-block {
        margin-top: 50px
    }

    .slider-block__title {
        font-size: 40px;
        line-height: 50px
    }

    .slider-btn, .tag-slider-btn-mobile {
        width: 75px;
        height: 75px
    }

    .calculator-block {
        justify-content: center;
        flex-direction: column;
        padding: 0;
        gap: 0
    }

    .calculator-block__left {
        display: none
    }

    .calculator-block__right {
        max-width: 100%
    }

    .amount-slider-block {
        max-width: 100%;
        margin-bottom: 0;
        border-bottom-left-radius: 0;
        border-bottom-right-radius: 0
    }

    .sum-slider {
        max-width: calc(100% - 25px)
    }

    .get-credit-btn {
        display: none
    }

    .get-credit-mobile-btn {
        display: block
    }

    .labels-block {
        gap: 5px;
        flex-direction: row
    }

    .documents-block {
        padding: 45px
    }

    .documents-block__subtitle {
        margin-bottom: 50px
    }

    .have-question {
        margin-bottom: 80px
    }

    .tag-slider-btn {
        min-width: 50px;
        width: 50px !important;
        height: 50px !important
    }

    .tag-slider-btn > svg {
        width: 25px
    }

    .referral-block__title {
        line-height: 40px;
        font-size: 40px
    }

    .referral-card {
        font-size: 40px;
        margin-top: 50px
    }

    .feedback-slider-block__title {
        font-size: 40px;
        line-height: 50px
    }

    .fixed-nav-panel {
        width: 100%
    }

    .fixed-nav-panel__item {
        padding: 15px
    }

    .fixed-nav-panel__name {
        font-size: 16px
    }

    .main-page .header__nav {
        gap: 3px
    }

    .main-page .header__nav .link {
        font-size: 14px
    }

    .main-page .header .btn-secondary, .main-page .header .btn-outline {
        font-size: 11px
    }
}

@media screen and (max-width: 860px) {
    .main-banner__title {
        font-size: 36px;
        line-height: 50px;
        margin-top: 0
    }

    .slider-block {
        margin-top: 40px
    }

    .slider-block__title {
        font-size: 36px;
        line-height: 40px
    }

    .slider-btn, .tag-slider-btn-mobile {
        width: 60px;
        height: 60px
    }

    .slider-card {
        padding: 20px 15px 25px
    }

    .slider-card__number {
        margin-bottom: 70px
    }

    .slider-card__title {
        font-size: 20px
    }

    .documents-block {
        padding: 45px
    }

    .documents-block__title {
        font-size: 38px;
        line-height: 40px
    }

    .documents-block__subtitle {
        margin-bottom: 50px
    }

    .documents-block__wrap {
        flex-direction: column;
        align-items: center
    }

    .have-question {
        padding: 15px 40px
    }

    .have-question__text {
        font-size: 20px
    }

    .have-question-btn {
        font-size: 18px
    }

    .why-usdt__wrap {
        flex-wrap: wrap;
        justify-content: center
    }

    .why-usdt-card:nth-child(2) {
        margin-top: 0
    }

    .tag {
        font-size: 16px;
        padding: 10px
    }

    .tags-block {
        padding: 30px 0
    }

    .tag-slider-btn {
        min-width: 40px;
        width: 40px !important;
        height: 40px !important
    }

    .tag-slider-btn > svg {
        width: 25px
    }

    .referral-block {
        margin-top: 30px;
        padding: 20px
    }

    .referral-block__wrap {
        flex-direction: column
    }

    .referral-block__title {
        font-size: 36px;
        text-align: center
    }

    .referral-card {
        margin: 0 auto 50px;
        padding: 10px
    }

    .referral-btn {
        display: none
    }

    .referral-btn-mobile {
        display: block;
        width: 100%;
        margin: 0 auto;
        max-width: 400px
    }

    .feedback-slider-block__title {
        font-size: 36px;
        line-height: 40px
    }
}

@media screen and (max-width: 768px) {
    .main-banner {
        display: block;
        position: relative
    }

    .main-banner__title {
        margin-bottom: 25px;
        line-height: 40px;
        max-width: 430px
    }

    .main-banner__image {
        position: absolute;
        max-width: 360px;
        right: 0;
        top: 140px;
        z-index: -1
    }

    .main-banner__image > img {
        width: 100%
    }

    .main-info {
        display: block
    }

    .main-info__content {
        max-width: 300px
    }

    .get-sum-btn {
        position: absolute;
        bottom: 40px;
        left: 50%;
        transform: translate(-50%);
        width: max-content
    }

    .slider-block {
        margin-bottom: 20px
    }

    .slider-block__title {
        font-size: 30px
    }

    .slider-block__btns {
        display: none
    }

    .slider-mobile-btn {
        display: flex;
        justify-content: center;
        gap: 40px
    }

    .slider-btn, .tag-slider-btn-mobile {
        width: 50px;
        height: 50px;
        margin-top: 40px
    }

    .slider-btn > svg, .tag-slider-btn-mobile > svg {
        width: 20px
    }

    .calculator-block {
        margin-top: 50px;
        margin-bottom: 50px
    }

    .calculator-block__title {
        font-size: 30px;
        line-height: 38px
    }

    .card-swiper {
        margin-bottom: 15px
    }

    .documents-block {
        padding: 45px
    }

    .documents-block__title {
        font-size: 32px;
        line-height: 40px
    }

    .documents-block__subtitle {
        font-size: 20px;
        margin-bottom: 50px
    }

    .documents-block__wrap {
        flex-direction: column;
        align-items: center
    }

    .have-question {
        padding: 10px 30px;
        margin-bottom: 50px
    }

    .have-question__text {
        font-size: 18px
    }

    .have-question-btn {
        font-size: 16px;
        padding: 10px 15px
    }

    .why-usdt {
        padding: 30px
    }

    .why-usdt__btn {
        display: none
    }

    .why-usdt__title {
        font-size: 38px;
        line-height: 45px
    }

    .why-usdt__title-block {
        margin-bottom: 30px
    }

    .why-usdt__mobile-btn {
        display: block;
        font-size: 16px;
        margin: 20px auto 0;
        max-width: 365px;
        width: 100%
    }

    .why-usdt-card__text {
        font-size: 18px
    }

    .why-usdt-card__image {
        margin-bottom: 30px
    }

    .feedback-slider-mobile-btn {
        display: flex
    }

    .feedback-slider-block__title {
        font-size: 30px
    }

    .feedback-swiper {
        margin-bottom: 20px
    }

    .fixed-nav-panel__item {
        padding: 15px;
        min-height: auto
    }

    .fixed-nav-panel__name {
        font-size: 14px
    }

    .fixed-nav-panel-wrap {
        bottom: 100px
    }

    .questions .content-wrap-full {
        flex-direction: column;
        justify-content: center;
        align-items: center;
        border-radius: 0
    }

    .questions .title {
        font-size: 28px;
        margin-bottom: 20px
    }

    .questions .btn-cta {
        width: 100%
    }

    .space-trust .section-title {
        font-size: 30px;
        line-height: 100%
    }

    .space-trust .text-wrap {
        flex-direction: column
    }

    .space-trust .text-wrap .left-block, .space-trust .text-wrap .right-block {
        transform: translateY(-16px)
    }

    .space-trust .text-wrap .title {
        font-size: 18px
    }

    .space-trust .text-wrap .left-block img {
        margin-top: 10px
    }

    .space-trust .text-wrap .right-block .subtitle {
        display: none
    }

    .space-trust .text-wrap .right-block .subtitle.mobile {
        display: block
    }

    .space-trust .content-wrap-full {
        padding: 20px
    }

    .mt-100 {
        margin-top: 50px
    }

    .we-trust-you .section-title {
        font-size: 28px;
        background: linear-gradient(360deg, #180E50 0%, #29187A 100%), linear-gradient(360deg, color(display-p3 0.090 0.055 0.302) 0%, color(display-p3 0.149 0.098 0.459) 100%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: rgba(0, 0, 0, 0)
    }

    .we-trust-you .section-subtitle {
        margin-bottom: 20px
    }

    .we-trust-you .benefits-swiper .card .title {
        font-size: 18px;
        margin-bottom: 10px
    }

    .benefits .content-wrap-full {
        padding: 20px 0 20px 20px
    }

    .benefits .section-title {
        font-size: 30px;
        line-height: 100%
    }

    .benefits .benefits-loan-swiper .card {
        max-width: 100%;
        width: 100%;
        height: 300px
    }

    .benefits .benefits-loan-swiper .card .title {
        font-size: 18px
    }

    .news-and-promo .top-row {
        margin-bottom: 30px
    }

    .news-and-promo .top-row .section-title {
        font-size: 28px;
        line-height: 100%
    }

    .news-and-promo .top-row .btn-secondary {
        display: none
    }

    .news-and-promo .btn-secondary.mobile {
        display: block;
        margin-top: 30px
    }

    .news-and-promo .slider-wrap .active-card-container {
        margin-bottom: 20px;
        order: -1
    }

    .news-and-promo .slider-wrap .active-card-container .card {
        max-width: 100%;
        width: 100% !important;
        height: auto;
        display: flex !important;
        flex-direction: column
    }

    .news-and-promo .slider-wrap .active-card-container .card .banner-img {
        display: block !important;
        width: 100%;
        height: 150px;
        object-fit: cover;
        margin: 0 auto
    }

    .news-and-promo .slider-wrap .active-card-container .card .subtitle {
        display: block !important;
        margin-bottom: 15px
    }

    .news-and-promo .slider-wrap .active-card-container .card .title {
        margin-top: 10px;
        font-size: 18px
    }

    .news-and-promo .slider-wrap .news-and-promo-swiper .swiper-slide {
        width: 310px !important
    }

    .news-and-promo .slider-wrap .news-and-promo-swiper .card {
        max-width: 310px;
        width: 310px;
        height: 185px
    }

    .news-and-promo .slider-wrap .news-and-promo-swiper .card .banner-img {
        display: none
    }

    .news-and-promo .slider-wrap .news-and-promo-swiper .card .subtitle {
        display: none
    }

    .news-and-promo .slider-wrap .news-and-promo-swiper .card .title-wrap .title {
        font-size: 18px
    }

    .sale .content-wrap-full .banner-1, .sale .content-wrap-full .banner-2 {
        width: 100%;
        margin: 0 auto;
        border-radius: 18px;
    }

    .sale .content-wrap-full .arrow-btn {
        width: 32px;
        height: 32px
    }

    .sale .content-wrap-full .sale-banners-swiper .banner-2 {
        background-position: inherit
    }

    .sale .content-wrap-full .sale-banners-swiper .banner-2 .logo-wrap .logo {
        width: 20px;
        height: 20px
    }

    .sale .content-wrap-full .sale-banners-swiper .banner-2 .logo-wrap .title {
        font-size: 10px
    }

    .sale .content-wrap-full .sale-banners-swiper .banner-2 .banner-title-wrap .banner-title {
        font-size: 20px;
        line-height: 100%
    }

    .main-page .btn-secondary {
        font-size: 16px
    }

    .main-banner .content-wrap-full {
        gap: 0
    }

    .main-banner .title-section {
        margin-bottom: 0;
        font-size: 32px
    }

    .main-banner .social-media {
        display: none
    }

    .main-banner .social-media.mobile {
        display: flex
    }

    .main-banner .loan-calculator {
        padding: 20px;
        width: 100%;
        margin: 20px 0
    }

    .main-banner .loan-calculator__title {
        font-size: 18px
    }

    .main-banner .loan-calculator__right {
        margin-top: 0
    }

    .main-banner .loan-calculator .calculator-field .currency-bottom {
        font-size: 14px
    }

    .main-banner .loan-calculator .calculator-field__value span:first-child {
        font-size: 24px
    }

    .main-banner .loan-calculator .promo-badge {
        font-size: 14px
    }

    .main-banner .calculator-info .amount-pay {
        font-size: 14px;
        line-height: 100%
    }

    .main-banner .calculator-info__promo {
        gap: 0
    }

    .other-promotions-swiper .swiper-wrapper {
        flex-direction: column;
        gap: 24px;
        transform: none !important;
    }

    .other-promotions-swiper .news-and-promo-item {
        width: 100% !important;
    }
}

@media screen and (max-width: 600px) {
    .main-banner__title {
        font-size: 28px;
        line-height: 30px
    }

    .main-banner__image {
        position: absolute;
        max-width: 320px;
        right: 0;
        top: 190px;
        z-index: -1
    }

    .main-info {
        max-width: 350px
    }

    .main-info__title {
        font-size: 45px
    }

    .slider-block__title {
        font-size: 26px
    }

    .labels-block {
        flex-direction: column;
        align-items: baseline;
        gap: 0
    }

    .labels-block__wrap {
        flex-direction: column
    }

    .documents-block {
        padding: 30px
    }

    .documents-block__title {
        font-size: 28px;
        line-height: 40px
    }

    .documents-block__subtitle {
        font-size: 20px;
        margin-bottom: 30px
    }

    .document-card__image {
        margin-bottom: 20px
    }

    .document-card:nth-child(2) .document-card__image {
        margin-bottom: 28px
    }

    .document-card:nth-child(3) {
        padding: 53px 32px 30px
    }

    .document-card:nth-child(3) .document-card__image {
        margin-bottom: 40px
    }

    .have-question {
        flex-direction: column;
        padding: 15px
    }

    .why-usdt {
        padding: 20px 0
    }

    .why-usdt__title {
        font-size: 28px;
        line-height: 45px
    }

    .why-usdt__title-block {
        margin-bottom: 30px
    }

    .why-usdt-card__text {
        font-size: 16px
    }

    .why-usdt-card__image {
        margin-bottom: 20px
    }

    .referral-card {
        margin-bottom: 70px;
        margin-top: 10px
    }

    .fixed-nav-panel {
        gap: 10px;
        padding: 15px
    }

    .fixed-nav-panel__item img {
        width: 15px
    }

    .fixed-nav-panel__text {
        font-size: 14px
    }

    .fixed-nav-panel .btn-primary {
        font-size: 14px
    }

    .fixed-nav-panel-wrap {
        padding: 10px
    }
}

@media screen and (max-width: 540px) {
    .main-info {
        max-width: 240px
    }

    .slider-card {
        max-width: 280px;
        padding: 20px 15px 25px
    }

    .slider-card__number {
        margin-bottom: 50px
    }

    .slider-card__title {
        font-size: 20px
    }

    .slider-block__title {
        font-size: 22px
    }

    .referral-block__title {
        font-size: 30px
    }

    .referral-card {
        font-size: 30px
    }

    .fixed-nav-panel__text {
        font-size: 12px
    }

    .fixed-nav-panel .btn-primary {
        font-size: 12px
    }
}

@media screen and (max-width: 460px) {
    .main-banner__image {
        position: absolute;
        max-width: 300px;
        right: 0;
        top: 230px;
        z-index: -1
    }

    .main-info {
        max-width: 200px
    }

    .fixed-nav-panel {
        padding: 10px;
        gap: 5px
    }

    .sale .content-wrap-full .banner-1, .sale .content-wrap-full .banner-2 {
        width: 100%;
        height: 180px;
        margin: 0 auto;
        background-size: contain
    }

    .sale .content-wrap-full .swiper-slide .banner-2 {
        height: 180px
    }
}

a.docs-a {
  color: white !important;
}
a.docs-a:hover {
    text-decoration: none;
}

@media screen and (max-width: 370px) {
    .main-banner .loan-calculator .calculator-info__promo .amount-pay, .main-banner .loan-calculator .calculator-info__promo .promo-badge {
        flex: 1
    }

    .main-banner .loan-calculator .calculator-info__promo .promo-badge {
        width: 6px
    }
}

@media (max-width: 1240px) {
    .about-us-title {
        font-size: 64px !important;
        line-height: 1 !important;
    }
}

@media (max-width: 768px) {
    .about-us-title {
        font-size: 32px !important;
        line-height: 1 !important;
    }
}

.modal-credit-info__address {
    position: relative;
}


.copy-tooltip {
    position: absolute;

    right: 0;
    bottom: 100%;
    margin-bottom: 12px;


    background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
    color: #ffffff;
    padding: 8px 16px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 500;
    line-height: 1.2;
    white-space: nowrap;


    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.3), 0 4px 6px -2px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.1);


    opacity: 0;
    visibility: hidden;
    transform: translateY(10px) scale(0.95);
    transition: all 0.25s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    z-index: 100;
}


.copy-tooltip::after {
    content: "";
    position: absolute;
    top: 100%;
    right: 14px;
    border-width: 6px;
    border-style: solid;
    border-color: #0f172a transparent transparent transparent;
}


.copy-tooltip.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
}


@supports (backdrop-filter: blur(4px)) {
    .copy-tooltip {
        backdrop-filter: blur(4px);
        background: rgba(15, 23, 42, 0.9);
    }
}
.success-toast {
    position: fixed;
    top: 30px;
    right: 30px;
    background: #FFFFFF;
    border-radius: 12px;
    padding: 24px;
    z-index: 9999;
    width: 100%;
    max-width: 450px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid #E0E0E0;
    transform: translateY(-150%);
    transition: transform 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.success-toast.active {
    transform: translateY(0);
}

.success-toast__content {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}


.toast-icon-check {
    min-width: 40px;
    height: 40px;
    background: #265BFF;
    border-radius: 50%;
    position: relative;
}

.toast-icon-check::after {
    content: '';
    position: absolute;
    left: 14px;
    top: 8px;
    width: 10px;
    height: 18px;
    border: solid white;
    border-width: 0 3px 3px 0;
    transform: rotate(45deg);
}

.toast-text-wrap p {
    margin: 0;
    font-size: 16px;
    color: #4F4F4F;
    line-height: 1.5;
}

.btn--loading {
    position: relative;
    color: transparent !important;
    pointer-events: none;
}

.btn--loading::after {
    content: "";
    position: absolute;
    width: 20px;
    height: 20px;
    top: 50%;
    left: 50%;
    margin-top: -10px;
    margin-left: -10px;
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    border-top-color: #fff;
    animation: spin 0.8s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

.btn-primary:disabled, .btn:disabled {
    cursor: not-allowed;
    filter: grayscale(0.5);
}
#contact-channel-wrapper {
  position: relative;
}

#contact-channel-wrapper .select-dropdown__list {
  display: none;
  position: absolute;
  left: 0;
  right: 0;
  top: calc(100% + 8px);
  z-index: 1000;
}

#contact-channel-wrapper.open .select-dropdown__list {
  display: block;
}

#contact-channel-wrapper {
  position: relative;
    margin-bottom: 0;
}

#contact-channel-wrapper .wrapper.dropdown-choice-types {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;

  width: 100%;
  height: 64px;

  padding: 14px 18px;

  border: 3px solid #fff;
  border-radius: 999px;

  background: #fff;
  backdrop-filter: blur(6px);

  cursor: pointer;
  user-select: none;

  transition: border-color .2s ease, box-shadow .2s ease, background .2s ease;
}


#contact-channel-wrapper .wrapper.dropdown-choice-types:hover {
  border-color: rgba(56, 90, 255, 0.55);
  box-shadow: 0 6px 18px rgba(56, 90, 255, 0.10);
}


#contact-channel-wrapper.open .wrapper.dropdown-choice-types {
  border-color: rgba(178, 190, 253, 0.9);
  box-shadow: 0 10px 28px rgba(56, 90, 255, 0.16);
  background: #fff;
}

#contact-channel-wrapper #contact-channel-input {
  display: inline-block;
  font-size: 16px;
  line-height: 1.2;
  font-family: "Montserrat", sans-serif;
  color: #3c48bd;
  white-space: nowrap;
  text-overflow: ellipsis;
}


#contact-channel-wrapper.open #contact-channel-input {
  color: #3c48bd;
}

#contact-channel-wrapper .dropdown-img {
  width: 18px;
  height: 18px;
  flex: 0 0 18px;
  transition: transform .2s ease;
  opacity: 0.85;
}

#contact-channel-wrapper.open .dropdown-img {
  transform: rotate(180deg);
}


#contact-channel-wrapper .select-dropdown__list {
  display: none;
  position: absolute;
  left: 0;
  right: 0;
  top: calc(100% + 10px);

  margin: 0;
  padding: 8px;

  border-radius: 18px;
  border: 1px solid rgba(56, 90, 255, 0.18);

  background: #CEDDFF;
  backdrop-filter: blur(8px);

  box-shadow: 0 18px 40px rgba(15, 22, 40, 0.14);
  z-index: 1000;

  list-style: none;
}

#contact-channel-wrapper.open .select-dropdown__list {
  display: block;
    border-radius: 30px;
}

#contact-channel-wrapper .select-dropdown__item {
  background-color: #fff;
  padding: 12px 14px;
  border-radius: 25px;

  font-size: 15px;
  line-height: 1.2;
  color: #3c48bd;

  cursor: pointer;
  transition: background .15s ease, transform .05s ease;
}
.input-wrapper.select-dropdown {
    padding-inline: 0;
    border: #fff;
}
#contact-channel-wrapper .select-dropdown__item:hover {
  background: rgba(56, 90, 255, 0.10);
}

#contact-channel-wrapper .select-dropdown__item:active {
  transform: scale(0.99);
}

#contact-channel-wrapper .select-dropdown__item + .select-dropdown__item {
  margin-top: 6px;
}

@media (max-width: 480px) {
  #contact-channel-wrapper .wrapper.dropdown-payment-types {
    min-height: 52px;
    padding: 12px 16px;
  }
  #contact-channel-wrapper #contact-channel-input {
    font-size: 15px;
  }
}
#contact-channel-wrapper .select-dropdown__list {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  width: 100%;
  box-sizing: border-box;
  z-index: 1000;
}

#contact-channel-wrapper .select-dropdown__item {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  text-align: left;
}

#contact-channel-wrapper .wrapper {
  position: relative;
  cursor: pointer;
}

#contact-channel-wrapper .wrapper::after {
  content: "";
  position: absolute;
  right: 20px;
  top: 50%;
  width: 8px;
  height: 8px;
  border-right: 2px solid #5f6fdc;
  border-bottom: 2px solid #5f6fdc;
  transform: translateY(-50%) rotate(45deg);
}

#contact-channel-wrapper.open .wrapper::after {
  transform: translateY(-50%) rotate(-135deg);
}

.news-and-promo-swiper {
    height: 100%;
}

.not-link {
    text-decoration: none;
    text-decoration-line: blink;
}

.not-link:hover {
    text-decoration: none;
}
.pagination-button.disabled {
    opacity: 0.3;
    pointer-events: none;
    cursor: default;
}
.news-and-promos-list {
    transition: opacity 0.3s ease;
}


body.promo-modal-open {
    overflow: hidden;
}

#utmPromoModal {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity .25s ease, visibility .25s ease;
}

#utmPromoModal.active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

#utmPromoModal .promo-modal__overlay {
    position: fixed;
    inset: 0;
    background: rgba(38, 91, 255, 0.5);
    z-index: 2000;
    cursor: pointer;
}

#utmPromoModal .promo-modal__container {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2001;

    width: calc(100% - 32px);
    max-width: 738px;
    max-height: calc(100dvh - 32px);
    overflow-y: auto;

    display: flex;
    flex-direction: column;
    align-items: center;

    padding: 40px 24px 32px;
    border-radius: 32px;
    background: linear-gradient(181.98deg, #015CFF 10.65%, #18279D 105.83%);
    box-shadow: 0 24px 60px rgba(9, 27, 94, 0.35);
}

#utmPromoModal .promo-modal__close-btn {
    position: absolute;
    top: 8px;
    right: 8px;
    width: 32px;
    height: 32px;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    border: none;
    cursor: pointer;
}

#utmPromoModal .promo-modal__close-icon {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

#utmPromoModal .promo-modal__title {
    margin-bottom: 12px;
    font-family: "Montserrat", sans-serif;
    font-weight: 700;
    font-size: 40px;
    line-height: 1.08;
    text-align: center;
    color: #F2F5FF;
}

#utmPromoModal .yellow {
    color: #FFC94F;
}

#utmPromoModal .promo-modal__subtitle {
    margin-bottom: 16px;
    font-family: "Montserrat", sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 1.2;
    text-align: center;
    color: #CEDDFF;
}

#utmPromoModal .promo-modal__subtitle .white_bold {
    font-weight: 700;
    color: #FFFFFF;
}

#utmPromoModal .promo-modal__img {
    display: block;
    width: 100%;
    max-width: 470px;
    margin: 0 auto 20px;
}

#utmPromoModal .promo-modal__hint {
    margin-bottom: 24px;
    font-family: "Montserrat", sans-serif;
    font-weight: 700;
    font-size: 20px;
    line-height: 1.2;
    text-align: center;
    color: #FFFFFF;
}

#utmPromoModal .promo-modal__link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 466px;
    min-height: 64px;
    padding: 18px 24px;
    border-radius: 32px;
    background: #FFFFFF;
    text-decoration: none;
    font-family: "Montserrat", sans-serif;
    font-weight: 700;
    font-size: 16px;
    line-height: 1;
    text-align: center;
    color: #265BFF;
}

#utmPromoModal .promo-modal__link:hover {
    color: #265BFF;
    text-decoration: none;
}

@media screen and (max-width: 767px) {
    #utmPromoModal .promo-modal__container {
        padding: 32px 20px 28px;
        border-radius: 24px;
    }

    #utmPromoModal .promo-modal__title {
        font-size: 24px;
        line-height: 1.15;
        margin-bottom: 10px;
    }

    #utmPromoModal .promo-modal__subtitle {
        font-size: 14px;
        line-height: 1.25;
        margin-bottom: 12px;
    }

    #utmPromoModal .promo-modal__img {
        max-width: 360px;
        margin-bottom: 16px;
    }

    #utmPromoModal .promo-modal__hint {
        font-size: 16px;
        margin-bottom: 20px;
    }

    #utmPromoModal .promo-modal__link {
        min-height: 56px;
        font-size: 15px;
    }
}

.contacts__form {
  margin-bottom: 100px;
}

.footer__main-link {
    color: #fff;
    text-decoration-color: #fff;
}

.footer__main-link:hover {
    color: #fff;
    text-decoration-color: #fff;
}

.error-page {
    margin-bottom: 60px;
}
.error-page__grid {
    display: grid;
    grid-template-columns: 1fr;
    row-gap: 32px;
}
@media screen and (min-width: 768px) {
    .error-page__grid {
        grid-template-columns: 1fr 1fr;
        column-gap: 64px;
    }
}
@media screen and (min-width: 1200px) {
    .error-page__grid {
        grid-template-columns: 0.5fr 1fr;
    }
}
.error-page__content {
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.error-page__404 {
    display: block;
    width: 100%;
    height: auto;
    max-width: 450px;
    object-fit: contain;
    margin: 0 auto 24px;
}
@media screen and (min-width: 768px) {
    .error-page__404 {
        margin: 0 0 40px;
    }
}
.error-page__title {
    font-family: "Montserrat", sans-serif;
    font-weight: 700;
    font-size: 32px;
    line-height: 100%;
    letter-spacing: 0%;
    text-align: center;
    color: #265bff;
    margin-bottom: 16px;
}
@media screen and (min-width: 768px) {
    .error-page__title {
        text-align: start;
    }
}
.error-page__description {
    font-family: "Montserrat", sans-serif;
    font-weight: 400;
    font-size: 14px;
    line-height: 100%;
    letter-spacing: 0%;
    text-align: center;
    color: #3c48bd;
    margin-bottom: 24px;
}
@media screen and (min-width: 768px) {
    .error-page__description {
        text-align: start;
        font-size: 24px;
        margin-bottom: 40px;
    }
}
.error-page__link {
    display: block;
    width: 100%;
    text-align: center;
    font-size: 16px;
}
.error-page__link:hover {
    text-decoration: none;
}
@media screen and (min-width: 768px) {
    .error-page__link {
        width: fit-content;
    }
}
.error-page__img-container {
    display: flex;
    justify-content: center;
    align-items: center;
}

.mobile-popup.blue-modal {
    overflow: hidden;
}

.mobile-popup.blue-modal .modal-dialog {
    max-width: 740px;
}

.mobile-popup.blue-modal .modal-content {
    background: #013187;
    overflow-y: auto;
    max-height: 80vh;
}

.mobile-popup.blue-modal .modal-title {
    display: flex;
    flex-direction: column;
    width: 100%;
    row-gap: 12px;
    line-height: 100%;
    font-weight: 700;
    color: #fff;
}

@media (max-width: 768px) {
    .mobile-popup.blue-modal .modal-title {
        font-size: 20px !important;
    }
}

@media screen and (min-width: 768px) {
    .mobile-popup.blue-modal .modal-title {
        font-size: 40px;
    }
}

.mobile-popup.blue-modal .modal-subtitle {
    font-size: 14px;
    text-align: center;
    font-weight: 500;
}

@media screen and (min-width: 768px) {
    .mobile-popup.blue-modal .modal-subtitle {
        font-size: 20px;
    }
}

.mobile-popup.blue-modal .btn-white {
    margin: 0 auto;
    text-decoration: none;
}

.mobile-popup.blue-modal .mobile-popup__note {
    display: block;
    font-family: "Montserrat", sans-serif;
    font-weight: 400;
    font-size: 12px;
    line-height: 100%;
    text-align: center;
    margin-top: 16px;
    margin-bottom: 16px;
    color: #fff;
}

@media screen and (min-width: 768px) {
    .mobile-popup.blue-modal .mobile-popup__note {
        margin-top: 24px;
        margin-bottom: 24px;
        font-size: 16px;
    }
}

.mobile-popup.blue-modal .mobile-popup__img {
    display: block;
    width: 100%;
    height: auto;
    max-width: unset;
    margin-bottom: -16px;
}

@media screen and (min-width: 768px) {
    .mobile-popup.blue-modal .mobile-popup__img {
        margin-bottom: -46px;
    }
}

.mobile-popup.blue-modal .close-modal-btn__img {
    width: 32px;
    height: 32px;
    max-width: 32px;
    margin: 0;
}

body {
  background: #f2f5ff !important;
}

.btn-secondary {
  background: linear-gradient(278.01deg, #015cff -36.69%, #18279d 179.85%), linear-gradient(278.01deg, color(display-p3 0.149 0.357 1) -36.69%, color(display-p3 0.106 0.149 0.592) 179.85%);
  border-radius: 24px;
}

.dark {
  color: #030b5c;
}

.main-banner .text-wrap {
  justify-content: flex-start;
}

.main-banner {
  position: relative;
  margin-bottom: 20px;
}
@media screen and (min-width: 768px) {
  .main-banner {
    margin-bottom: 200px;
  }
}
.main-banner__wrapper {
  position: relative;
  z-index: 4;
}
.main-banner__wrapper.content-wrap-full {
  display: grid;
  grid-template-columns: 1fr;
}
.main-banner__wrapper .calculator-wrap {
  display: flex;
  justify-content: center;
}
@media screen and (min-width: 1200px) {
  .main-banner__wrapper {
    padding-bottom: 350px;
  }
  .main-banner__wrapper.content-wrap-full {
    grid-template-columns: 1fr 1fr;
  }
}
.main-banner__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}
@media screen and (max-width: 1199px) {
  .main-banner__bg {
    display: none;
  }
}
.main-banner__video {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  object-fit: cover;
  z-index: 1;
}
.main-banner__video--desktop {
  object-position: left center;
}
.main-banner__video--mobile {
  min-width: 1200px;
  width: 100%;
  height: auto;
  display: block;
  border-radius: 20px;
  position: relative;
  left: 50%;
  transform: translateX(-50%);
}
.main-banner__mobile-video {
  display: none;
  overflow: hidden;
}
@media screen and (max-width: 1199px) {
  .main-banner__mobile-video {
    display: block;
    width: 100%;
    margin-top: 30px;
  }
}
.main-banner__hero {
  display: none;
}

body:has(.loader):not(:has(.loader.finished)) {
  overflow: hidden;
}
body:has(.loader.finished) .loader__cloud-left {
  left: -500px;
}
body:has(.loader.finished) .loader__cloud-right {
  right: -500px;
}
body:has(.loader.finished) .loader {
  top: -100%;
  opacity: 0;
}

.loader {
  position: fixed;
  width: 100%;
  height: 100dvh;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  justify-content: center;
  align-items: center;
  background: #f2f5ff;
  z-index: 100;
  transition: top 0.7s ease-in, opacity 0.7s ease-in;
}
.loader__cloud-left {
  position: absolute;
  top: 50%;
  left: -500px;
  transform: translateY(-50%);
  width: 50%;
  z-index: 4;
  transition: left 0.7s cubic-bezier(0.79, 0.14, 0.15, 0.86);
}
.loader__cloud-right {
  position: absolute;
  width: 50%;
  top: 50%;
  right: -500px;
  transform: translateY(-50%);
  z-index: 3;
  transition: right 0.7s cubic-bezier(0.79, 0.14, 0.15, 0.86);
}
.loader__mountain {
  position: absolute;
  width: 100%;
  height: 100%;
  bottom: 0;
  left: 0;
  z-index: 2;
  object-fit: cover;
}
.loader__percentage {
  display: block;
  width: 145px;
  height: 145px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 5;
}
.loader__percentage text {
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  font-size: 32px;
  line-height: 100%;
  letter-spacing: 0%;
  text-align: center;
  fill: #265bff;
}

.content-white-block:has(.featured-grid) {
  background-color: #f2f5ff;
}

.featured-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}
@media screen and (min-width: 1200px) {
  .featured-grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media screen and (max-width: 767px) {
  .featured-grid__container .content-wrap-full {
    padding: 0;
  }
}
.featured-grid__content {
  position: relative;
  z-index: 3;
  display: flex;
  flex-direction: column;
  row-gap: 12px;
  padding: 20px;
}
@media screen and (min-width: 768px) {
  .featured-grid__content {
    padding: 40px;
    padding-right: 0;
    max-width: 60%;
  }
}
.featured-grid__block {
  position: relative;
  border-radius: 56px;
  overflow: hidden;
  background: linear-gradient(180.95deg, #ffffff 0.84%, #f9faff 111.33%), linear-gradient(180.95deg, color(display-p3 1 1 1) 0.84%, color(display-p3 0.976 0.98 1) 111.33%);
  padding-bottom: 158px;
}
@media screen and (min-width: 568px) {
  .featured-grid__block {
    padding-bottom: 258px;
  }
}
@media screen and (min-width: 768px) {
  .featured-grid__block {
    padding-bottom: 236px;
  }
}
.featured-grid__title {
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: 28px;
  line-height: 100%;
  letter-spacing: 0%;
  color: #265bff;
}
@media screen and (min-width: 768px) {
  .featured-grid__title {
    font-size: 40px;
  }
}
.featured-grid__text {
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 100%;
  letter-spacing: 0%;
  color: #3c48bd;
  text-wrap: balance;
}
.featured-grid__btn {
  text-align: center;
  margin-top: 12px;
  width: fit-content;
  box-shadow: -7px 10px 22.9px 0px rgba(80, 64, 176, 0.5019607843);
}
.featured-grid__btn:hover {
  text-decoration: none;
}
.featured-grid__image {
  display: flex;
  width: 100%;
  height: auto;
  object-fit: cover;
  bottom: 0;
  position: absolute;
  z-index: 1;
}
@media screen and (min-width: 568px) {
  .featured-grid__image {
    height: 50%;
  }
}
@media screen and (min-width: 768px) {
  .featured-grid__image {
    height: 100%;
  }
}

.featured-banner {
  background-color: #f2f5ff;
  margin: 60px 0;
}
@media screen and (min-width: 768px) {
  .featured-banner {
    margin: 100px 0;
  }
}
@media screen and (max-width: 767px) {
  .featured-banner .content-wrap-full {
    padding: 0;
  }
}
.featured-banner__top-title {
  font-family: Montserrat, sans-serif;
  font-weight: 700;
  font-size: 28px;
  line-height: 100%;
  letter-spacing: 0%;
  text-align: center;
  color: #265bff;
  margin-bottom: 40px;
}
@media screen and (min-width: 768px) {
  .featured-banner__top-title {
    font-size: 40px;
  }
}
.featured-banner__wrapper {
  display: flex;
  overflow: hidden;
  border-radius: 56px;
  flex-direction: column;
  background: linear-gradient(169.79deg, #e2e8ff 9.94%, #fafbff 47.47%), linear-gradient(169.79deg, color(display-p3 0.89 0.91 1) 9.94%, color(display-p3 0.98 0.984 1) 47.47%);
}
@media screen and (min-width: 768px) {
  .featured-banner__wrapper {
    position: relative;
  }
}
.featured-banner__content {
  position: relative;
  z-index: 6;
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 25px;
}
@media screen and (min-width: 768px) {
  .featured-banner__content {
    max-width: 60%;
    padding: 40px;
    padding-right: 0;
  }
}
.featured-banner__title {
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: 28px;
  line-height: 100%;
  letter-spacing: 0%;
  color: #265bff;
  margin: 0;
}
@media screen and (min-width: 768px) {
  .featured-banner__title {
    font-size: 40px;
  }
}
.featured-banner__text {
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 100%;
  letter-spacing: 0%;
  color: #3c48bd;
  text-wrap: balance;
}
.featured-banner__img-wrap {
  position: relative;
  display: flex;
  height: 300px;
}
@media screen and (min-width: 768px) {
  .featured-banner__img-wrap {
    position: static;
  }
}
.featured-banner__mountain {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media screen and (min-width: 768px) {
  .featured-banner__mountain {
    position: absolute;
    bottom: 0;
    height: auto;
  }
}
.featured-banner__hero {
  position: absolute;
  bottom: 0;
  width: 320px;
  height: auto;
  right: 50%;
  transform: translateX(40%);
  z-index: 2;
}
@media screen and (min-width: 1200px) {
  .featured-banner__hero {
    transform: translateX(70%);
    height: 100%;
    width: auto;
  }
}
.featured-banner__composition {
  position: absolute;
  bottom: 0;
  right: 50%;
  transform: translateX(50%);
  width: 360px;
  height: auto;
  z-index: 3;
}
@media screen and (min-width: 1200px) {
  .featured-banner__composition {
    right: 50px;
    transform: translateX(0);
    width: auto;
    height: 100%;
  }
}

.featured-slider {
  background-color: #f2f5ff;
}
@media screen and (max-width: 767px) {
  .featured-slider .content-wrap-full {
    padding: 0;
  }
}
.featured-slider__grid {
  display: grid;
  grid-template-columns: 100%;
  row-gap: 24px;
  padding: 20px;
  border-radius: 56px;
  background-color: #fff;
}
@media screen and (min-width: 1000px) {
  .featured-slider__grid {
    grid-template-columns: 45% 45%;
    gap: 96px;
  }
}
.featured-slider__circle-slider {
  overflow: visible;
  width: 100%;
}
@media screen and (min-width: 400px) {
  .featured-slider__circle-slider {
    max-width: 335px;
  }
}
@media screen and (min-width: 768px) {
  .featured-slider__circle-slider {
    max-width: 450px;
  }
}
.featured-slider__circle-slider-wrapper {
  width: 100%;
  margin: 0 auto;
  overflow: hidden;
}
.featured-slider__circle-slider-wrapper .swiper-wrapper {
  overflow: visible;
}
.featured-slider__circle-slider-wrapper img {
  width: 100%;
  object-fit: contain;
  object-position: center;
}
.featured-slider__text-slider-wrapper {
  display: flex;
  height: 100%;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.featured-slider__title {
  font-family: Montserrat, sans-serif;
  font-weight: 700;
  font-size: 28px;
  line-height: 100%;
  letter-spacing: 0%;
  color: #265bff;
  margin-bottom: 24px;
}
@media screen and (min-width: 768px) {
  .featured-slider__title {
    font-size: 40px;
    margin-bottom: 44px;
  }
}
.featured-slider__subtitle {
  font-family: Montserrat, sans-serif;
  font-weight: 500;
  font-size: 20px;
  line-height: 100%;
  letter-spacing: 0%;
  color: #1c1c1c;
  margin-bottom: 12px;
}
@media screen and (min-width: 768px) {
  .featured-slider__subtitle {
    font-size: 30px;
  }
}
.featured-slider__text {
  font-family: Montserrat, sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 100%;
  letter-spacing: 0%;
  color: #7b6e9a;
}
@media screen and (min-width: 768px) {
  .featured-slider__text {
    font-size: 20px;
  }
}
.featured-slider__text-slider {
  height: 150px;
}
.featured-slider__text-slider .swiper-slide {
  background-color: #fff;
  padding-left: 21px;
  height: 100%;
}
.featured-slider__text-slider .swiper-pagination {
  right: unset;
  left: 0;
  bottom: unset;
  top: 0;
  transform: unset;
  margin-left: 1px;
}
.featured-slider__text-slider .swiper-pagination .swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  opacity: 1;
  background-color: #ceddff;
  transform: scale(1);
  transition: transform 0.3s ease, background-color 0.3s ease;
  margin: 16px 0;
}
.featured-slider__text-slider .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  transform: scale(1.2);
  background-color: #265bff;
}

.faq {
  width: 100%;
  max-width: 1800px;
  position: relative;
  background-color: transparent;
  margin: 50px auto;
}
@media screen and (min-width: 768px) {
  .faq {
    margin: 100px auto;
  }
}
.faq__hero {
  position: absolute;
  z-index: -1;
  right: 50%;
  bottom: 0;
  width: auto;
  object-fit: contain;
  transform: translateX(50%) scaleX(-1);
  height: 500px;
}
@media screen and (min-width: 768px) {
  .faq__hero {
    height: 100%;
    right: 0;
    width: 650px;
    transform: scaleX(-1);
  }
}
@media screen and (min-width: 768px) {
  .faq .section-title {
    text-align: start;
  }
}
@media screen and (min-width: 768px) {
  .faq .section-subtitle {
    text-align: start;
  }
}
.faq__header {
  display: flex;
  flex-direction: column;
  row-gap: 12px;
}
@media screen and (min-width: 768px) {
  .faq__header {
    max-width: 50%;
  }
}
.faq .faq-swiper {
  margin-top: 130px;
}
@media screen and (min-width: 768px) {
  .faq .faq-swiper {
    margin-top: 0;
  }
}
.faq .faq-swiper .card {
  padding: 20px;
  height: auto;
  min-height: unset;
  flex-grow: 1;
  row-gap: 24px;
  border: none;
  background-color: #ffffff;
  box-shadow: none;
}
@media screen and (min-width: 768px) {
  .faq .faq-swiper .card {
    padding: 40px;
  }
}
.faq .faq-swiper .card .feedback-card-footer {
  padding: 0;
  background-color: transparent;
}
.faq .faq-swiper .card .text-content {
  padding: 0;
}

.questions {
  background-color: #f2f5ff;
}
.questions .content-wrap-full {
  border-radius: 40px;
  padding: 0 20px;
  background: transparent;
}
.questions__content {
  display: flex;
  width: 100%;
  border-radius: 40px;
  justify-content: space-between;
  padding: 32px;
  background: linear-gradient(278.01deg, #015cff -36.69%, #18279d 179.85%), linear-gradient(278.01deg, color(display-p3 0.149 0.357 1) -36.69%, color(display-p3 0.106 0.149 0.592) 179.85%);
}
.questions .btn-cta {
  border-radius: 18px;
}
@media screen and (min-width: 768px) {
  .questions .btn-cta {
    border-radius: 24px;
  }
}

.space-trust {
  background-color: #f2f5ff;
}
.space-trust .content-wrap-full {
  padding: 0 20px;
}
.space-trust .section-title {
  text-align: center;
  font-size: 28px;
  line-height: 100%;
  margin: 0;
  margin-bottom: 24px;
}
@media screen and (min-width: 768px) {
  .space-trust .section-title {
    text-align: start;
    font-size: 40px;
    margin-bottom: 32px;
  }
}
.space-trust .text-wrap .left-block,
.space-trust .text-wrap .right-block {
  transform: none;
}
.space-trust__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}
@media screen and (min-width: 768px) {
  .space-trust__grid {
    grid-template-columns: 1fr 1fr;
  }
}
.space-trust__block {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 20px;
  border-radius: 32px;
  background-color: rgba(255, 255, 255, 0.8);
}
@media screen and (min-width: 768px) {
  .space-trust__block {
    padding: 32px;
  }
}
@media screen and (min-width: 1600px) {
  .space-trust__block {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }
}
.space-trust__block--reverse {
  flex-direction: column-reverse;
}
.space-trust__img-wrap {
  display: flex;
  width: 100%;
  flex-grow: 1;
  height: 100%;
}
.space-trust__img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.space-trust__content {
  display: flex;
  flex-direction: column;
  row-gap: 8px;
}
.space-trust__content .title {
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: 20px;
  line-height: 100%;
  letter-spacing: 0%;
  color: #030b5c;
}
@media screen and (min-width: 768px) {
  .space-trust__content .title {
    font-size: 30px;
  }
}
.space-trust__content .subtitle {
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
  font-size: 14px;
  line-height: 100%;
  letter-spacing: 0%;
  color: #3c48bd;
}
.space-trust__content .btn-secondary {
  font-size: 16px;
  padding-left: 80px;
  padding-right: 80px;
  margin-top: 24px;
  box-shadow: -7px 10px 22.9px 0px rgba(80, 64, 176, 0.5019607843);
}
@media screen and (min-width: 768px) {
  .space-trust__content .btn-secondary {
    width: fit-content;
  }
}

.badges {
  background: #f2f5ff;
  padding: 100px 0;
}
.badges__wrapper {
  background: #f2f5ff;
}
@media screen and (max-width: 767px) {
  .badges .badges-swiper {
    pointer-events: none;
  }
}
.badges .badges-swiper .swiper-wrapper {
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}
@media screen and (min-width: 768px) {
  .badges .badges-swiper .swiper-wrapper {
    flex-wrap: nowrap;
    justify-content: unset;
  }
}
.badges .badges-swiper .swiper-wrapper .badge {
  border-radius: 30px;
  color: #265bff;
  background-color: #fff;
}

#footer.content-white-block {
  background: #f2f5ff;
}

.footer {
  background: #f2f5ff;
}
.footer__legal p {
  font-family: Montserrat;
  font-weight: 400;
  font-size: 12px;
  line-height: 100%;
  letter-spacing: 0%;
  color: #ffffff;
}
@media screen and (min-width: 1200px) {
  .main-page .footer__inner {
    display: grid;
    grid-template-columns: 0.4fr 1fr 0.6fr;
    gap: 20px;
  }
}
@media screen and (min-width: 768px) {
  .main-page .footer__contacts .footer__heading {
    margin-bottom: 32px;
  }
}
@media screen and (min-width: 768px) {
  .footer .top-row {
    margin-bottom: 32px;
  }
}
@media screen and (min-width: 768px) {
  .main-page .footer__logo {
    margin-bottom: 32px;
  }
}
.main-page .footer__divider {
  width: 100%;
  margin-bottom: 20px;
}
.footer .wrapper {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}
@media screen and (min-width: 1200px) {
  .footer .wrapper {
    grid-template-columns: 1fr 1fr 1fr;
  }
}
.footer__block {
  display: flex;
  flex-direction: column;
  row-gap: 8px;
  margin-bottom: 8px;
}
.footer .work-time,
.footer .contact {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: Montserrat;
  font-weight: 400;
  font-size: 14px;
  line-height: 100%;
  letter-spacing: 0%;
  color: #fff;
  text-decoration: none;
}
.footer .work-time img,
.footer .contact img {
  width: 20px;
  height: 20px;
}


.banner-link,
.banner-link:link,
.banner-link:visited {
    color: currentcolor;
    text-decoration: none;
    cursor: pointer;
}

.banner-link:hover,
.banner-link:active,
.banner-link:focus {
    color: currentcolor;
    text-decoration: none;
    outline: none;
}

.promotion-content .btn-primary {
    margin-bottom: 35px;
}
