:root {
    --geologica: "Geologica", sans-serif;
    --dark-blue: #32465a;
    --light-blue: #3579f4;
    --back-blue: #f8f9fe;
    --text-gray: #a9b1bc;
}

@font-face {
    font-family: Geologica;
    src: local("Geologica"), local("Geologica-Regular"),
        url(../fonts/Geologica/Geologica-Regular.woff2) format(woff2),
        url(../fonts/Geologica/Geologica-Regular.woff) format(woff),
        url(../fonts/Geologica/Geologica-Regular.eot) format(eot);
    font-weight: 400;
}

@font-face {
    font-family: Geologica;
    src: local("Geologica"), local("Geologica-Medium"),
        url(../fonts/Geologica/Geologica-Medium.woff2) format(woff2),
        url(../fonts/Geologica/Geologica-Medium.woff) format(woff),
        url(../fonts/Geologica/Geologica-Medium.eot) format(eot);
    font-weight: 500;
}

@font-face {
    font-family: Geologica;
    src: local("Geologica"), local("Geologica-SemiBold"),
        url(../fonts/Geologica/Geologica-SemiBold.woff2) format(woff2),
        url(../fonts/Geologica/Geologica-SemiBold.woff) format(woff),
        url(../fonts/Geologica/Geologica-SemiBold.eot) format(eot);
    font-weight: 600;
}

@font-face {
    font-family: Geologica;
    src: local("Geologica"), local("Geologica-Bold"),
        url(../fonts/Geologica/Geologica-Bold.woff2) format(woff2),
        url(../fonts/Geologica/Geologica-Bold.woff) format(woff),
        url(../fonts/Geologica/Geologica-Bold.eot) format(eot);
    font-weight: 700;
}

html {
    font-family: var(--geologica);
}

body.preload-lock {
    overflow: hidden;
}

body.no-scroll {
    overflow: hidden;
}

section {
    padding: 100px 0;
}

@media (max-width: 768px) {
    section {
        padding: 60px 0 !important;
    }
}

.wrapper {
    overflow: hidden;
    min-height: 100%;
}

.container {
    max-width: 1264px;
    margin: 0 auto;
    padding: 0 12px;
}

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

.overlay--active {
    opacity: 0.1;
    z-index: 2;
    pointer-events: all;
}

.btn-blue {
    background: var(--light-blue);
    box-shadow: 0 12px 30px 0 rgba(53, 121, 244, 0.15);
    border-radius: 12px;
    padding: 18px 24px;
    transition: all .2s;
    font-weight: 500;
    font-size: 16px;
    line-height: 150%;
    letter-spacing: 0.02em;
    color: #fff;
    display: block;
}

.btn-blue:hover {
    box-shadow: none;
    background: #4d89f5;
}

.btn-blue:active {
    box-shadow: 0 12px 30px 0 rgba(53, 121, 244, 0.15);
    background: var(--light-blue);
    scale: 0.96;
}

.btn-light-blue {
    border-radius: 12px;
    padding: 8px 12px;
    background: rgba(53, 121, 244, 0.06);
    transition: all .2s;
    font-weight: 500;
    font-size: 16px;
    line-height: 150%;
    letter-spacing: 0.02em;
    color: #3579f4;
}

.btn-light-blue:hover {
    background: rgba(53, 121, 244, 0.1);
}

.btn-light-blue:active {
    box-shadow: 0 12px 30px 0 rgba(53, 121, 244, 0.15);
    background: #3579f4;
    color: #fff;
    scale: 0.96;
}

.main-title {
    font-weight: 600;
    font-size: 80px;
    line-height: 110%;
    letter-spacing: 0.02em;
    color: #3579f4;
}

.title {
    font-weight: 600;
    font-size: 40px;
    line-height: 110%;
    letter-spacing: 0.02em;
    color: #32465a;
}

.title span {
    color: #3579f4;
}

@media (max-width: 768px) {
    .title {
        font-size: 32px !important;
        line-height: 112% !important;
    }

    .main-title {
        font-size: 32px;
        line-height: 112%;
    }
}

.preloader {
    position: fixed;
    inset: 0;
    background: white;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    opacity: 1;
    transition: opacity .2s;
    overflow: hidden;
}

.preloader--disabled {
    opacity: 0;
    z-index: -1;
    pointer-events: none;
    max-width: 0px;
    max-height: 0px;
}

.loader {
    width: 60px;
    height: 60px;
    border: 6px solid #ccc;
    border-top-color: var(--light-blue);
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

.main-path {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-right: auto;
}

.main-path__item {
    font-weight: 400;
    font-size: 14px;
    line-height: 140%;
    letter-spacing: 0.02em;
    color: #32465a;
    white-space: nowrap;
}

.main-path__item--current {
    color: #a9b1bc;
    pointer-events: none;
}

.main-path__line {
    margin: 0 11px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 10px;
    height: 12px;
}

.overlay-contact {
    position: fixed;
    left: 0;
    top: 0;
    min-width: 100%;
    min-height: 100%;
    background: #32465a;
    opacity: 0;
    z-index: -10;
    /* transition: opacity .2s; */
    pointer-events: none;
}

.overlay-contact--active {
    z-index: 40;
    opacity: 0.1;
    pointer-events: all;
}

.contact-popup__wrapper {
    position: fixed;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    z-index: 50;
    background: transparent;
    width: calc(100% - 24px);
    max-width: 610px;
    transform: translate(-50%, -45%);
    opacity: 0;
    visibility: hidden;
    transition: opacity .3s ease, transform .3s ease;
}

.contact-popup__wrapper--active {
    opacity: 1;
    visibility: visible;
    transform: translate(-50%, -50%);
}

.contact-popup__body {
    border-radius: 32px;
    background: #f8f9fe;
    padding: 60px;
}

@media (max-width: 1280px) {
    .contact-popup__body {
        padding: calc(3.9130vw + 9.914px);
    }
}

.contact-popup__title {
    font-weight: 600;
    font-size: 40px;
    line-height: 110%;
    letter-spacing: 0.02em;
    color: #32465a;
    margin-bottom: 28px;
}

.contact-popup__text {
    font-weight: 400;
    font-size: 16px;
    line-height: 150%;
    letter-spacing: 0.02em;
    color: #6a7989;
    margin-bottom: 40px;
}

@media (max-width: 768px) {
    .contact-popup__title {
        font-size: 24px;
        line-height: 120%;
    }

    .contact-popup__text {
        font-size: 14px;
        line-height: 140%;
    }
}

.contact-popup__input-wrapper {
    background: #fff;
    border-bottom: 1px solid #e4e7ee;
    border-radius: 12px;
    padding: 18px 16px 17px 12px;
    display: flex;
    align-items: center;
    transition: all .2s;
    margin-bottom: 12px;
}

.contact-popup__input-wrapper:hover {
    border-color: #a9b1bc;
}

.contact-popup__input-wrapper:focus-within {
    border-color: #3579f4;
}

.contact-popup__input-svg {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    min-width: 24px;
    min-height: 24px;
    margin-right: 5px;
}

.contact-popup__input,
.contact-popup__input::placeholder {
    font-weight: 500;
    font-size: 16px;
    line-height: 150%;
    letter-spacing: 0.02em;
    width: 100%;
}

.contact-popup__input::placeholder {
    color: #a9b1bc;
}

.contact-popup__input-wrapper-email {
    margin-bottom: 32px;
}

.contact-popup__btn {
    margin-bottom: 28px;
    width: 100%;
}

.contact-popup__agree {
    font-weight: 400;
    font-size: 12px;
    line-height: 140%;
    letter-spacing: 0.02em;
    text-align: center;
    color: #6a7989;
    text-align: center;
    max-width: 330px;
    margin: 0 auto;
}

.contact-popup__agree a {
    color: var(--light-blue);
    display: inline;
}

.contact-popup-response__wrapper {

}

.contact-popup-response__wrapper {
    border: 2px solid transparent;
    border-radius: 12px;
    margin-top: 28px;
    padding: 20px;
    text-align: center;
    box-shadow: 0 12px 30px 0 rgba(53, 121, 244, 0.15);
}

.contact-popup-response--success {
    border-color: #33ff4b;
}

.contact-popup-response--error {
    border-color: #ff3333;
}

.contact-popup-response__text {
    font-size: 16px;
}

.contact-popup__btn-close {
    display: flex;
    width: 100%;
    justify-content: center;
    background: #32465a;
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 12px;
}

.contact-popup__btn-close .btn-svg {
    width: 24px;
    height: 24px;
    min-width: 24px;
    min-height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-popup__btn-close .btn-svg {
    margin-right: 12px;
}

.contact-popup__btn-close .btn-text {
    font-weight: 500;
    font-size: 16px;
    line-height: 150%;
    letter-spacing: 0.02em;
    color: #fff;
}

/*---------------- LETTER-POPUP---------------- */
.overlay-popup {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    display: none;
    z-index: 999;
}

.overlay-popup--active {
    display: block;
}

.letter-popup {
    position: fixed;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    max-width: 90vw;
    max-height: 90vh;
    width: 720px;
    border-radius: 12px;
    display: none;
    z-index: 1000;
}

.letter-popup--active {
    display: flex;
    align-items: center;
    justify-content: center;
}

.letter-popup__inner {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px;
    position: relative;
}

.letter-popup__inner img {
    max-width: 100%;
    max-height: 80vh;
    display: block;
}

.popup-close {
    width: 24px;
    height: 24px;
    min-width: 24px;
    min-height: 24px;
    border-radius: 12px;
    background: #fff;
    position: relative;
    display: block;
    margin: 15px 15px 0 auto;
    position: absolute;
    top: -30px;
    right: 0;
}

.popup-close::before,
.popup-close::after {
    content: "";
    position: absolute;
    width: 18px;
    height: 2px;
    border-radius: 4px;
    background: var(--dark-blue);
    left: 50%;
    top: 50%;
}

.popup-close::before {
    transform: translate(-50%, -50%) rotate(45deg);
}

.popup-close::after {
    transform: translate(-50%, -50%) rotate(-45deg);
}

/*---------------- RATINGS---------------- */

.clients-ratings {
    display: flex;
}

.clients-rating {
    border-radius: 12px;
    padding: 12px 16px;
    background: #fff;
    display: flex;
    align-items: center;
}

.clients-rating-ya {
    margin: 0 16px;
}

.rating-img {
    width: 40px;
    height: 40px;
    min-width: 40px;
    min-height: 40px;
}

.rating-img img {
    width: 100%;
}

.rating-inner {
    margin: 0 12px;
}

.rating-name {
    font-weight: 400;
    font-size: 16px;
    line-height: 150%;
    letter-spacing: 0.02em;
    color: #32465a;
}

.rating-count {
    font-weight: 600;
    font-size: 24px;
    color: #32465a;
}

@media(max-width: 1000px) {
    .clients-ratings {
        flex-direction: column;
        margin-right: auto;
    }

    .clients-rating {
        min-width: 336px;
        justify-content: center;
    }

    .clients-rating-ya {
        margin: 16px 0;
    }
}

@media(max-width: 568px) {
    .clients-ratings {
        margin-right: 0;
        width: 100%;
        max-width: none;
    }
}


/*---------------- advantages---------------- */
.advantages-pagination,
.facts-pagination {
    display: none;
    bottom: -34px !important;
}

.advantages-swiper.swiper {
    overflow: visible;
}

.advantages-swiper .swiper-pagination-bullet,
.facts-swiper .swiper-pagination-bullet {
    background: #e4e7ee;
    opacity: 1;
}

.advantages-swiper .swiper-pagination-bullet-active,
.facts-swiper .swiper-pagination-bullet-active {
    background: #6a7989;
}

.advantages-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

.advantages-inner .advantages__item {
    width: 295px;
    height: 242px;
    font-weight: 500;
    font-size: 16px;
    line-height: 150%;
    letter-spacing: 0.02em;
    color: #32465a;
    padding: 24px 40px 30px 40px;
    position: relative;
    z-index: 1;
}

.advantages__back {
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    pointer-events: none;
}

.advantages__item-icon {
    margin-bottom: 12px;
    width: 160px;
    height: 80px;
    display: flex;
    align-items: center;
}

@media(max-width: 1192px) {

    .advantages-pagination,
    .facts-pagination {
        display: block;
    }
}

/*---------------- price---------------- */
.route-price__inner {
    display: grid;
    justify-content: space-between;
    align-items: center;
    -moz-column-gap: 10px;
    column-gap: 10px;
}

.route-price__info {
    max-width: 471px;
    grid-column: 1;
    grid-row: 1;
}

.route-price__info .info-route {
    display: flex;
    align-items: center;
    margin-bottom: 16px;
}

.route-price__info .info-route__cities {
    display: flex;
    align-items: center;
    border-radius: 12px;
    padding: 8px 14px;
    background: #f8f9fe;
    margin-right: 16px;
}

.route-price__info .info-route__cities::before {
    content: "";
    width: 10px;
    height: 10px;
    min-width: 10px;
    min-height: 10px;
    border-radius: 50%;
    background: var(--light-blue);
    margin-right: 12px;
}

.route-price__info .info-route__cities .city {
    font-weight: 500;
    font-size: 24px;
    line-height: 120%;
    letter-spacing: 0.02em;
    color: #32465a;
}

.route-price__info .info-route__cities .route-arrow {
    width: 40px;
    height: 24px;
    min-width: 40px;
    min-height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 8px;
}

.route-price__info .info-route__distance {
    font-weight: 400;
    font-size: 16px;
    line-height: 150%;
    letter-spacing: 0.02em;
    color: #a9b1bc;
}

.route-price__info .info-title {
    font-weight: 600;
    font-size: 40px;
    line-height: 110%;
    letter-spacing: 0.02em;
    color: #32465a;
}

.route-price__info .info-text {
    font-weight: 400;
    font-size: 20px;
    line-height: 150%;
    letter-spacing: 0.02em;
    color: #32465a;
}

.route-price__info .info-text br {
    display: none;
}

.route-price__bottom {
    max-width: 471px;
    grid-column: 1;
    grid-row: 2;
}

.route-price__bottom .btn-wrapper {
    display: flex;
    align-items: center;
    margin-bottom: 40px;
}

.route-price__bottom .btn-wrapper .btn-text {
    max-width: 203px;
    font-weight: 400;
    font-size: 14px;
    line-height: 140%;
    letter-spacing: 0.02em;
    color: #6a7989;
    margin-left: 12px;
}

.route-price__bottom .description {
    font-weight: 400;
    font-size: 16px;
    line-height: 150%;
    letter-spacing: 0.02em;
    color: #6a7989;
}

.route-price__swiper {
    grid-column: 2;
    grid-row: span 2;
}

.route-price__swiper .swiper-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    grid-gap: 20px;
}

.route-price__swiper .swiper-slide {
    border-radius: 32px;
    padding: 24px;
    background: #f8f9fe;
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 322px;
}

.route-price__swiper .swiper-slide .slide-svg {
    width: 64px;
    height: 64px;
    min-width: 64px;
    min-height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
}

.route-price__swiper .swiper-slide .slide-title {
    font-weight: 500;
    font-size: 24px;
    line-height: 120%;
    letter-spacing: 0.02em;
    text-align: center;
    color: #32465a;
    margin-bottom: 16px;
}

.route-price__swiper .swiper-slide .slide-text {
    font-weight: 400;
    font-size: 16px;
    line-height: 150%;
    letter-spacing: 0.02em;
    text-align: center;
    color: #6a7989;
}

@media (max-width: 1000px) {
    .route-price__info {
        max-width: none;
        margin-bottom: 32px;
    }

    .route-price__swiper {
        grid-column: 1;
        grid-row: 2;
        margin-bottom: 32px;
        width: 100%;
    }

    .route-price__bottom {
        max-width: none;
        grid-row: 3;
    }

    .route-price__bottom .btn-wrapper .btn-text {
        margin-left: 0;
        max-width: none;
        margin-top: 16px;
        text-align: center;
    }

    .route-price__bottom .description {
        text-align: center;
    }

    .route-price__bottom .btn-wrapper {
        flex-direction: column;
    }

    .route-price__bottom .btn-wrapper button {
        width: 330px;
    }

    .route-price__swiper .swiper-wrapper {
        display: flex;
        grid-gap: initial;
    }

    .route-price__info .info-title {
        margin-bottom: 24px;
    }
}

@media(max-width: 768px) {
    .route-price__info .info-title {
        font-size: 32px;
        line-height: 112%;
    }

    .route-price__info .info-text {
        font-size: 16px;
        line-height: 150%;
    }

    .route-price__info .info-route__cities .city {
        font-size: 20px;
        line-height: 120%;
    }

    .route-price__info .info-route__cities::before {
        width: 8px;
        height: 8px;
        min-width: 8px;
        min-height: 8px;
        margin-right: 8px;
    }

    .route-price__bottom .description {
        font-size: 14px;
        line-height: 140%;
    }
}

@media(max-width: 568px) {
    .route-price__info .info-route__distance {
        display: none;
    }

    .route-price__swiper .swiper-slide {
        max-width: 295px;
        height: auto;
    }

    .route-price__info .info-text br {
        display: initial;
    }
}

@media(max-width: 360px) {

    .route-price__bottom .btn-wrapper button {
        width: 100%;
    }
}

/*---------------- services---------------- */
.services {
    background: var(--back-blue);
    position: relative;
    overflow: hidden;
    padding-bottom: 96px;
    min-height: 996px;
}

.services__tab-arrow {
    width: 24px;
    height: 24px;
    min-width: 24px;
    min-height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    display: none;
}

.services-back-1 {
    position: absolute;
    left: 0;
    bottom: 122px;
    z-index: 0;
}

.services-back-2 {
    position: absolute;
    top: 25px;
    left: calc(64% + 180px);
    z-index: 0;
    width: 395px;
}

.services-back-2 img {
    width: 100%;
}

.services-back-3 {
    position: absolute;
    right: 47px;
    top: 820px;
    z-index: 0;
}

.services__heading {
    font-weight: 600;
    font-size: 40px;
    line-height: 110%;
    letter-spacing: 0.02em;
    color: #32465a;
    margin-bottom: 60px;
}

.services__heading-strong {
    color: #3579f4;
}

.services__tabs {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 16px;
}

.services__tab {
    margin-bottom: 12px;
    margin-right: 8px;
    border: 1px solid rgba(53, 121, 244, 0.1);
    border-radius: 12px;
    padding: 7px 12px;
    font-weight: 500;
    font-size: 16px;
    line-height: 150%;
    letter-spacing: 0.02em;
    color: #32465a;
    display: flex;
    align-items: center;
    transition: all .2s;
}

.services__tab:active {
    scale: 0.96;
}

.services__tab:hover {
    background: rgba(53, 121, 244, 0.06);
    color: #3579f4;
}

.services__tab--active {
    box-shadow: 0 12px 30px 0 rgba(53, 121, 244, 0.15);
    background: #3579f4;
    color: #fff;
}

.services__tab--active:hover {
    background: #4d89f5;
    color: #fff;
}

.services__list {
    max-width: 0px;
    max-height: 0px;
    opacity: 0;
    transition: opacity .4s ease;
}

.services__list .service-card,
.services__list .service-card__more svg,
.services__list .service-card__icon,
.services__list .service-card__description,
.services__list .service-card__title {
    max-width: 0;
    max-height: 0;
    padding: 0;
    font-size: 0;
}

.services__list--active {
    max-width: none;
    max-height: none;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-gap: 20px;
    align-items: flex-start;
    opacity: 1;
}

.services__list--active .service-card,
.services__list--active .service-card__more svg,
.services__list--active .service-card__icon,
.services__list--active .service-card__description,
.services__list--active .service-card__title {
    max-width: none;
    max-height: none;
}

.services__row {
    display: flex;
}

.services__row:first-child {
    margin-bottom: 20px;
}

.services__list--active .service-card {
    box-shadow: 0 16px 40px -14px rgba(53, 121, 244, 0.07);
    background: #fff;
    border-radius: 32px;
    padding: 40px 40px 32px;
    height: 100%;
    /* transition: all .2s; */
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
    z-index: 1;
}

.services__list--active .service-card__more svg path {
    transition: all .2s;
}

.services__list--active .service-card:hover .service-card__more span {
    color: #3579f4;
}

.services__list--active .service-card:hover .service-card__more svg path {
    fill: #3579f4;
}

.services__list--active .service-card:hover .service-card__title {
    color: #3579f4;
}

.services__list--active .service-card__title {
    font-weight: 500;
    font-size: 24px;
    line-height: 120%;
    letter-spacing: 0.02em;
    color: #32465a;
    margin-bottom: 16px;
    /* transition: all .2s; */
}

.services__list--active .service-card__description {
    font-weight: 400;
    font-size: 16px;
    line-height: 150%;
    letter-spacing: 0.02em;
    color: #6a7989;
}

.services__list--active .service-card__more {
    display: flex;
    align-items: center;
}

.services__list--active .service-card__more span {
    font-weight: 500;
    font-size: 16px;
    line-height: 150%;
    letter-spacing: 0.02em;
    color: #a9b1bc;
    transition: all .2s;
    margin-right: 8px;
}

.services__list--active .service-card__icon {
    position: absolute;
    right: 40px;
    bottom: 10px;
    z-index: -1;
}

.services__list--active .service-card__body {
    margin-bottom: 24px;
}

@media(max-width: 1280px) {
    .services-back-1 {
        width: calc(13.55vw + 173px);
        left: calc(8.6957vw - 111.304px);
        bottom: calc(26.5217vw - 217.266px);
    }

    .services-back-3 {
        right: calc(8.0435vw - 55.96px);
        top: calc(-78.9130vw + 1830.07px);
    }

    .services-back-3 img,
    .services-back-1 img {
        width: 100%;
    }

    .services-back-2 {
        top: calc(11.3043vw - 119.691px);
        right: calc(19.7826vw - 150.213px);
        width: calc(19.1304vw + 150.131px);
    }
}

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

    .service-card__icon {
        width: 60px;
        height: 60px;
    }

    .service-card__icon img {
        width: 100%;
    }
}

@media(max-width: 1000px) {
    .services-back-3 {
        width: 134px;
    }
}

@media(max-width: 860px) {

    .services-back-2 {
        left: initial;
        top: -79px;
    }
}

@media(max-width: 768px) {

    .services__list--active .service-card__title {
        font-size: 20px;
        line-height: 120%;
    }

    .services__list--active .service-card__description {
        font-size: 14px;
        line-height: 140%;
    }

    .services__list--active .service-card {
        padding: 24px;
    }

    .services__tab:hover {
        color: #32465a;
    }

    .service-card__title {
        font-size: 20px;
    }

    .service-card__description {
        font-size: 14px;
        line-height: 140%;
    }

    .services__inner {
        position: relative;
        z-index: 1;
    }

    .services__heading {
        height: 160px;
        margin-bottom: 40px;
    }

    .services__tabs {
        position: absolute;
        top: 112px;
        left: 0;
        width: 100%;
        flex-direction: column;
        align-items: stretch;
        padding: 5px;
        border-radius: 12px;
        z-index: 2;
        transition: max-height 0.3s ease;
        max-height: 48px;
        box-shadow: 0 12px 30px 0 rgba(53, 121, 244, 0.15);
    }

    .services__tab {
        display: none;
        width: 100%;
        text-align: left;
        margin-right: 0;
        padding: 10px 16px;
        cursor: pointer;
        font-size: 16px;
        line-height: 150%;
        color: #6a7989;
        margin-bottom: 0;
        border: none;
    }

    .services__tab--active {
        display: flex;
        color: #fff;
    }

    .services__tab--active .services__tab-arrow {
        display: flex;
        margin-left: auto;
    }

    .services__tabs--open {
        background: #fff;
        max-height: 500px;
    }

    .services__tab--first {
        order: -1;
    }

    .services__tabs--open .services__tab {
        display: flex;
    }

    .services__tabs--open .services__tab--active {
        color: #fff;
    }
}

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

/*---------------- our-cars---------------- */
.cars {
    overflow: hidden;
}

.cars .container {
    overflow: visible;
    position: relative;
}

.cars-back {
    position: absolute;
    top: -103px;
    right: 120px;
    z-index: -1;
}

.cars-inner {
    padding-bottom: 38px;
    overflow: hidden;
}

.cars-title {
    font-weight: 600;
    font-size: 40px;
    line-height: 110%;
    letter-spacing: 0.02em;
    color: #32465a;
    margin-bottom: 60px;
}

.cars-title span {
    color: #3579f4;
    margin-bottom: 60px;
}

.cars-subtitle {
    font-weight: 400;
    font-size: 20px;
    line-height: 150%;
    letter-spacing: 0.02em;
    color: #6a7989;
    margin-bottom: 28px;
    max-width: 765px;
}

.cars-subtitle span {
    color: #3579f4;
}

.cars-block__btn {
    display: none;
    font-weight: 500;
    font-size: 16px;
    line-height: 150%;
    letter-spacing: 0.02em;
    color: #3579f4;
    border-radius: 12px;
    padding: 8px 12px;
    background: rgba(53, 121, 244, 0.06);
    margin: 16px auto 0 auto;
}

.cars-blocks {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    grid-gap: 20px;
    margin-bottom: 60px;
}

.cars-block {
    box-shadow: 0 16px 40px -14px rgba(53, 121, 244, 0.07);
    background: #f8f9fe;
    max-width: 295px;
    display: flex;
    flex-direction: column;
    align-items: center;
    border: 1px solid #f8f9fe;
    border-radius: 32px;
    padding: 24px;
    transition: all .2s;
}

.cars-block__title {
    font-weight: 500;
    font-size: 24px;
    line-height: 120%;
    letter-spacing: 0.02em;
    text-align: center;
    color: #32465a;
    text-align: center;
    margin: 16px 0;
    transition: all .2s;
}

.cars-block__text {
    font-weight: 400;
    font-size: 16px;
    line-height: 150%;
    letter-spacing: 0.02em;
    text-align: center;
    color: #6a7989;
    text-align: center;
}

.cars-block:hover {
    border-color: var(--light-blue);
}

.cars-block:hover .cars-block__title {
    color: var(--light-blue);
}

.cars-swiper {
    overflow: visible;
}

.cars-pagination {
    bottom: -24px !important;
    transform: translateY(100%);
}

.cars-pagination .swiper-pagination-bullet {
    background: #e4e7ee;
    opacity: 1 !important;
}

.cars-pagination .swiper-pagination-bullet-active {
    background: #6a7989;
}

.cars-slide .slide-img {
    overflow: hidden;
    border-radius: 12px;
    position: relative;
    max-width: 667px;
    height: 500px;
    min-height: 250px;
    min-width: 336px;
    margin: 0 auto;
}

.cars-slide .slide-img img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.cars-swiper-next .swiper-navigation-icon,
.cars-swiper-prev .swiper-navigation-icon,
.clients-swiper__blocks-prev .swiper-navigation-icon,
.clients-swiper__blocks-next .swiper-navigation-icon {
    display: none;
}

.cars-swiper-next,
.cars-swiper-prev,
.clients-swiper__blocks-next,
.clients-swiper__blocks-prev {
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    min-width: 60px;
    min-height: 60px;
    transition: all .2s;
    background: transparent;
}

.cars-swiper-next svg path,
.cars-swiper-prev svg path,
.clients-swiper__blocks-next svg path,
.clients-swiper__blocks-prev svg path {
    transition: all .2s;
    fill: #6A7989;
}

.cars-swiper-next:hover svg path,
.cars-swiper-prev:hover svg path,
.clients-swiper__blocks-next:hover svg path,
.clients-swiper__blocks-prev:hover svg path {
    fill: #3579F4;
}

.cars-swiper-next:hover,
.cars-swiper-prev:hover,
.clients-swiper__blocks-next:hover,
.clients-swiper__blocks-prev:hover {
    background: rgba(53, 121, 244, 0.06);
}


.cars-swiper-next svg,
.cars-swiper-prev svg,
.clients-swiper__blocks-prev svg,
.clients-swiper__blocks-next svg {
    width: 18.5px;
    height: 18.5px;
}

.cars-swiper .swiper-button-disabled,
.clients-swiper__blocks .swiper-button-disabled {
    /* opacity: 1 */
}

.contact-popup__inner {
    max-height: 100vh;
    overflow-y: auto;
}

.cars-swiper .swiper-button-disabled:hover,
.clients-swiper__blocks .swiper-button-disabled:hover {
    background: transparent;
}

.cars-swiper .swiper-button-disabled:hover svg path,
.clients-swiper__blocks .swiper-button-disabled:hover svg path {
    fill: #6A7989;
}

@media(max-width: 1280px) {
    .cars-back {
        width: calc(16.5217vw + 57.522px);
        right: calc(17.8261vw - 108.165px);
    }

    .cars-back img {
        width: 100%;
    }
}

@media(max-width: 1150px) {

    .cars-blocks {
        grid-template-columns: 1fr 1fr;
    }

    .cars-block {
        max-width: none;
    }
}

@media(max-width: 768px) {
    .cars-back {
        top: -60px;
    }

    .cars-block__title {
        font-size: 20px;
        line-height: 120%;
    }

    .cars-block__text {
        font-size: 14px;
        line-height: 140%;
    }

    .cars-title {
        margin-bottom: 40px;
    }

    .cars-swiper-prev,
    .cars-swiper-next {
        display: none;
    }

    .cars-subtitle {
        font-size: 16px;
    }
}

@media(max-width: 691px) {
    .cars-slide .slide-img {
        height: 72.359vw;
    }
}

@media(max-width: 568px) {
    .cars-blocks {
        grid-template-columns: 1fr;
        margin-bottom: 40px;
    }

    .cars-block__btn {
        display: block;
    }
}

/*---------------- how-we-work--------------- */
.how-we-work {
    padding: 100px 0;
    overflow: hidden;
}

.how-we-work__title {
    font-weight: 600;
    font-size: 40px;
    line-height: 110%;
    letter-spacing: 0.02em;
    text-align: center;
    color: #32465a;
    margin-bottom: 60px;
}

.how-we-work__cta {
    margin: 77px auto 0 auto;
}

.how-step {
    position: relative;
    display: flex;
    align-items: center;
}

.how-step-3 .how-step__icon {
    transform: translate(-159px, 40px);
}

.how-step-6 .how-step__icon {
    transform: translate(0, -42px);
}

.how-line {
    position: absolute;
    top: 50%;
    transform: translate(100%, 0);
    right: 0;
    z-index: -1;
    pointer-events: none;
}

.how-line-2 {
    bottom: 0;
    left: 50%;
    right: auto;
    top: auto;
    transform: translate(-50%, -37%);
}

.how-we-work__cols {
    position: relative;
}

.how-we-work__col {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    max-width: 1087px;
    margin: 0 auto;
}

.how-we-work__cols .how-we-work__col:first-child {
    margin-bottom: 107px;
}

.how-line__mobile {
    display: none;
}

.how-step__num {
    margin-right: 22px;
    border-radius: 8px;
    width: 32px;
    height: 32px;
    min-width: 32px;
    min-height: 32px;
    background: var(--light-blue);
    font-weight: 700;
    font-size: 24px;
    line-height: 140%;
    letter-spacing: 0.02em;
    text-align: center;
    color: #fff;
}

.how-step__decor {
    position: absolute;
    top: 50%;
    left: -25px;
    z-index: -1;
    transform: translateY(-50%);
}

.how-step__title {
    width: 170px;
    font-weight: 500;
    font-size: 16px;
    line-height: 150%;
    letter-spacing: 0.02em;
    color: #32465a;
}

@media(max-width: 1264px) {

    .how-line-2 {
        width: 59.256vw;
    }

    .how-line-2 img {
        width: 100%;
    }
}

@media(max-width: 768px) {

    .how-step-6 .how-step__icon,
    .how-step-3 .how-step__icon {
        transform: translate(0, 0);
    }

    .how-step {
        height: 86px;
        margin-bottom: 28px;
    }

    .how-step-6 {
        margin-bottom: 0;
    }

    .how-line__mobile {
        display: block;
        position: absolute;
        bottom: -46px;
    }

    .how-we-work__cta {
        margin-top: 40px;
        width: 336px;
    }

    .how-line-2 {
        display: none;
    }

    .how-line {
        display: none;
    }

    .how-we-work__col {
        flex-direction: column;
    }

    .how-we-work__cols .how-we-work__col:first-child {
        margin-bottom: 0;
    }

    .how-we-work__title {
        margin-bottom: 40px;
    }
}

/*---------------- swiper-clients--------------- */
.clients-title__wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 50px;
}

.clients-title {
    font-weight: 600;
    font-size: 40px;
    line-height: 110%;
    letter-spacing: 0.02em;
    color: #32465a;
}

.clients-title span {
    color: #3579f4;
}

.clients-swiper__blocks-title {
    margin-bottom: 16px;
    font-weight: 400;
    font-size: 20px;
    line-height: 150%;
    letter-spacing: 0.02em;
    color: #6a7989;
    padding: 15px 0;
}

.clients-swiper__blocks {
    margin-bottom: 40px;
    overflow: visible;
}

.clients-swiper__blocks-slide {
    border-radius: 24px;
    padding: 40px 40px 32px;
    background: #fff;
    width: 370px;
    height: auto !important;
}

.clients-swiper__blocks-slide .slide-title {
    font-weight: 400;
    font-size: 20px;
    line-height: 150%;
    letter-spacing: 0.02em;
    color: #32465a;
    margin-bottom: 16px;
}

.clients-swiper__blocks-slide .slide-text {
    font-weight: 400;
    font-size: 16px;
    line-height: 150%;
    letter-spacing: 0.02em;
    color: #6a7989;
    margin-bottom: 32px;
}

.clients-swiper__blocks-slide .slide-file {
    display: flex;
    align-items: center;
}

.clients-swiper__blocks-slide .slide-file__svg {
    margin-right: 12px;
}

.clients-swiper__blocks-slide .slide-file__text {
    font-weight: 400;
    font-size: 14px;
    line-height: 140%;
    letter-spacing: 0.02em;
    color: #a9b1bc;
}

.clients-blocks__btn {
    display: block;
    margin-left: auto;
    width: 228px;
    margin-bottom: 100px;
}

.clients-swiper__blocks-nav {
    position: absolute;
    top: -31px;
    right: 0;
    height: 60px;
    width: 128px;
    transform: translateY(-100%);
}

@media(max-width: 1000px) {
    .clients-title__wrapper {
        flex-direction: column;
        margin-bottom: 32px;
    }

    .clients-title {
        margin-bottom: 40px;
        margin-right: auto;
    }
}

@media(max-width: 768px) {
    .clients-swiper__blocks-slide {
        padding: 24px;
        width: 295px;
    }

    .clients-swiper__blocks-slide .slide-text {
        max-width: 247px;
        margin-bottom: 24px;
    }

    .clients-swiper__blocks-nav {
        display: none;
    }

    .clients-swiper__blocks-title {
        font-size: 16px;
        padding: 0;
    }

    .clients-title {
        margin-bottom: 40px;
    }

    .clients-blocks__btn {
        margin-bottom: 60px;
    }
}

@media(max-width: 568px) {
    .clients-blocks__btn {
        margin-right: auto;
    }
}

/*---------------- search-form---------------- */

.search-form__form {
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-shadow: 0 16px 40px -14px rgba(53, 121, 244, 0.15);
    background: #fff;
    border-radius: 24px;
    position: absolute;
    bottom: 0;
    left: 12px;
    transform: translateY(calc(50% + 88px));
    width: calc(100% - 24px);
    padding: 24px;
}

.search-form__row {
    display: flex;
    align-items: center;
}

.search-form__col {
    border-bottom: 1px solid #e4e7ee;
    border-radius: 12px;
    padding: 18px 16px 18px 12px;
    max-width: 220px;
    transition: all .2s;
}

.search-form__col--error {
    border-color: #ff3333;
}

.search-form__input::placeholder,
.search-form__input {
    font-weight: 500;
    font-size: 16px;
    line-height: 150%;
    letter-spacing: 0.02em;
    width: 100%;
}

.search-form__input::placeholder {
    color: #a9b1bc;
}

.search-form__col:hover {
    border-color: #a9b1bc;
}

.search-form__col svg path {
    fill: #e4e7ee;
    transition: all .2s;
}

.search-form__col:hover svg path {
    fill: #a9b1bc;
}

.search-form__col:focus-within {
    border-color: #3579f4;
}

.search-form__col:focus-within svg path {
    fill: #a9b1bc;
}

.custom-select {
    position: relative;
    width: 220px;
}

.custom-select.open {
    z-index: 2;
    position: relative;
}

.custom-select.open .custom-select__trigger {
    position: relative;
    z-index: 2;
}

.custom-select__trigger {
    width: 100%;
    padding: 18px 12px;
    border-radius: 12px;
    border-bottom: 1px solid #e4e7ee;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: white;
    cursor: pointer;
    font-size: 16px;
    font-weight: 500;
}

.custom-select__trigger.custom-select__trigger--error {
    border-color: #ff3333;
}

.search-form__select--weight {
    max-width: 190px;
}

.custom-select__inner {
    display: flex;
    align-items: center;
    color: #a9b1bc;
}

.custom-select__svg {
    width: 24px;
    height: 24px;
    min-width: 24px;
    min-height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 5px;
}

.custom-select__svg svg {
    transition: all .2s;
}

.custom-select.open .custom-select__dropdown {
    opacity: 1;
    visibility: visible;
}

.custom-select .custom-select__arrow {
    transition: all .2s;
}

.custom-select.open .custom-select__arrow {
    transform: rotate(180deg);
}

.custom-select.open .custom-select__arrow svg path {
    fill: #32465a;
}

.custom-select.selected .custom-select__trigger {
    border-bottom: 1px solid #3579f4;
}

.custom-select.selected .custom-select__svg svg path {
    fill: #3579f4;
}

.custom-select.selected .custom-select__inner {
    color: #32465a;
}

.custom-select__dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: white;
    border-radius: 0 0 16px 16px;
    padding: 8px;
    padding-top: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-9px);
    transition: 0.25s;
    z-index: 0;
}

.custom-select__option {
    padding: 8px 12px;
    cursor: pointer;
    font-size: 16px;
    line-height: 150%;
    color: #6a7989;
    border-radius: 12px;
}

.custom-select__option:hover {
    background: #f4f7ff;
    color: #32465a;
}

.search-form__label {
    display: flex;
    align-items: center;
}

.search-form__icon {
    width: 24px;
    height: 24px;
    min-width: 24px;
    min-height: 24px;
    margin-right: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.search-form__submit {
    min-width: 230px;
    margin-left: 25px;
}

.search-form__control {
    margin-left: 16px;
}

.search-form__control select {
    width: 100%;
}

.search-form__swap {
    margin: 0 4px;
}

@media(max-width: 1192px) {
    .search-form__submit {
        margin: 24px auto 0 auto;
    }

    .search-form__form {
        flex-wrap: wrap;
        transform: translateY(calc(50% + 172px));
    }
}

@media(max-width: 1000px) {
    .search-form__form {
        flex-direction: column;
        max-width: 500px;
        left: 50%;
        transform: translate(-50%, calc(100% + 68px));
        padding: 16px;
    }

    .search-form__col {
        width: 100%;
        max-width: none;
    }

    .search-form__select--weight {
        max-width: none;
    }

    .search-form__control--type {
        margin: 16px 0;
    }

    .search-form__swap {
        margin: 8px auto;
        display: block;
        transform: rotate(90deg);
    }

    .search-form__control {
        margin-left: 0;
        width: 100%;
    }

    .search-form__control--weight {
        margin: 16px 0;
    }

    .search-form__submit {
        width: 100%;
    }
}

/*---------------- BRANDS-SLIDER (NO JS)---------------- */

.clients-brands__swiper {
    overflow: visible;
}

.clients-brands__title {
    font-weight: 600;
    font-size: 40px;
    line-height: 110%;
    letter-spacing: 0.02em;
    color: #32465a;
    margin-bottom: 60px;
}

.clients-brands__swiper .clients-brands__slide {
    width: 300px;
    height: 142px;
    border-radius: 24px;
    transition: all .2s;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
}

.clients-brands__swiper .swiper-wrapper {
    display: flex;
    width: max-content;
    animation: brandsScroll 25s linear infinite;
}

@keyframes brandsScroll {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

.clients-brands__slide img {
    filter: grayscale(1) opacity(.5);
    transition: .3s;
}

.clients-brands__slide:hover {
    background: #fff;
}

.clients-brands__slide:hover img {
    filter: grayscale(0) opacity(1);
}

.clients-brands__swiper:hover .swiper-wrapper {
    animation-play-state: paused;
}

.swiper-container {
    width: 100vw;
    max-width: 1920px;
    position: relative;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
    overflow: hidden;
}

.swiper-container::before,
.swiper-container::after {
    content: "";
    position: absolute;
    top: 0;
    width: 443px;
    height: 100%;
    pointer-events: none;
    z-index: 2;
}

.swiper-container::before {
    left: 0;
    background: #FFF;
    background: linear-gradient(90deg, #f7faff 64%, transparent 79%);
}

.swiper-container::after {
    right: 0;
    background: #FFF;
    background: linear-gradient(90deg, transparent 22%, #f7faff 36%);
}

@media(max-width: 1920px) {

    .swiper-container::before,
    .swiper-container::after {
        width: calc(65.7012vw - 818.46px);
    }

    .swiper-container::before,
    .swiper-container::after {
        width: calc(65.7012vw - 818.46px);
    }
}

@media(max-width: 1264px) {
    .swiper-container::before {
        background: linear-gradient(90deg, #f7faff 15%, transparent 100%);
        width: 12px;
    }

    .swiper-container::after {
        background: linear-gradient(90deg, transparent 0%, #f7faff 85%);
        width: 12px;
    }
}

@media(max-width: 768px) {
    .clients-brands__title {
        margin-bottom: 40px;
    }
}

@media(max-width: 568px) {
    .clients-brands__slide {
        width: 150px;
        height: 71px;
        margin-right: 8px;
    }

    .clients-brands__slide img {
        transform: scale(0.5);
    }
}

/*---------------- REQUEST-FORM---------------- */

.request-form {
    max-width: 602px;
}

.request-form .form-inputs__wrapper {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 32px;
    flex-wrap: wrap;
}

.request-form .input-wrapper {
    max-width: 295px;
    width: 100%;
    border-bottom: 1px solid #e4e7ee;
    border-radius: 12px;
    padding: 18px 16px 18px 12px;
    background: #fff;
    display: flex;
    align-items: center;
}

.request-form .input-icon {
    width: 24px;
    height: 24px;
    min-width: 24px;
    min-height: 24px;
    margin-right: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.request-form .form-input {
    width: 100%;
    font-weight: 500;
    font-size: 16px;
    line-height: 150%;
    letter-spacing: 0.02em;
    color: #32465a;
}

.request-form .form-input::placeholder {
    font-weight: 500;
    font-size: 16px;
    line-height: 150%;
    letter-spacing: 0.02em;
    color: #a9b1bc;
}

.request-form .form-btn__wrapper {
    display: flex;
    align-items: center;
}

.request-form .form-btn {
    margin-right: 28px;
    width: 239px;
    min-width: 239px;
}

.request-form .form__policy {
    font-weight: 400;
    font-size: 12px;
    line-height: 140%;
    letter-spacing: 0.02em;
    color: #6a7989;
    max-width: 346px;
    text-align: left;
}

.request-form .form__policy a {
    display: inline;
    color: #3579f4;
    background: #f8f9fe;
    border-radius: 12px;
}

.request-form .form-response__wrapper {
    border: 2px solid transparent;
    border-radius: 12px;
    margin-top: 32px;
    padding: 20px;
    text-align: center;
    box-shadow: 0 12px 30px 0 rgba(53, 121, 244, 0.15);
}

.request-form .form-response--success {
    border-color: #33ff4b;
}

.request-form .form-response--error {
    border-color: #ff3333;
}

.request-form .form-response__text {
    font-size: 16px;
}

.request-inner {
    border-radius: 32px;
    padding: 60px;
    background: #f8f9fe;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.request-back {
    position: absolute;
    right: -95px;
    top: -50px;
    pointer-events: none;
    z-index: -1;
}

.request-title {
    font-weight: 600;
    font-size: 40px;
    line-height: 110%;
    letter-spacing: 0.02em;
    color: #32465a;
    margin-bottom: 28px;
    max-width: 620px;
}

.request-title span {
    border-radius: 100px;
    padding: 8px 20px;
    width: 111px;
    height: 50px;
    background: #3579f4;
    color: #fff;
    font-size: 28px;
    line-height: 120%;
}

.request-title br {
    display: none;
}

.request-subtitle {
    font-weight: 400;
    font-size: 16px;
    line-height: 150%;
    letter-spacing: 0.02em;
    color: #6a7989;
    margin-bottom: 40px;
    max-width: 528px;
}

@media(max-width: 1000px) {
    .request-back {
        display: none;
    }

}

@media(max-width: 768px) {
    .request-form .form-inputs__wrapper .input-wrapper:first-child {
        margin-bottom: 12px;
    }

    .request-title {
        margin-bottom: 28px;
    }

    .request-title span {
        font-size: 20px;
        line-height: 120%;
        padding: 4px 12px;
    }

    .request-title {
        font-size: 24px !important;
        line-height: 120% !important;
    }

    .request-subtitle {
        font-size: 14px;
        line-height: 140%;
    }

    .request-title br {
        display: initial;
    }
}

@media(max-width: 568px) {
    .request-form .form-btn__wrapper {
        flex-direction: column;
    }

    .request-form .form-btn {
        width: 100%;
        margin-right: 0;
        margin-bottom: 28px;
    }

    .request-form .form__policy {
        text-align: center;
    }

    .request-form .input-wrapper {
        width: 100%;
        max-width: none;
    }

    .request-inner {
        padding: 24px;
    }
}