@charset "UTF-8";
body {
    font-family: "Montserrat", sans-serif;
}

:root {
    --bs-body-font-family: "Montserrat", sans-serif;
}

.breadcrumbs {
    margin-bottom: 18px;
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
    font-size: 16px;
    line-height: 1.2;
    color: #9aa9b2;
}

.breadcrumbs a {
    color: #9aa9b2;
    text-decoration: none;
    transition: color 0.2s ease;
}

.breadcrumbs a:hover {
    color: #0d6f9c;
}

.breadcrumbs a:not(:last-child):after {
    content: " > ";
    margin: 0 5px;
    color: #ccc;
}

.breadcrumbs .active {
    color: #0d6f9c;
}

.main-header {
    background-color: #f0f6f9;
}

.site-header {
    position: relative;
    top: 0;
    z-index: 1030;
    margin: 0 auto;
    background: #fff;
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 90px;
    gap: 16px;
    padding: 20px 0;
    position: relative;
}

.header-brand {
    text-decoration: none;
    flex-shrink: 0;
    position: relative;
    z-index: 12;
}

.header-brand .brand-text {
    font-family: "Montserrat", sans-serif;
    font-size: 40px;
    font-weight: 700;
    color: #1a1a1a;
    text-transform: uppercase;
    border-bottom: 3px solid #1a1a1a;
    padding-bottom: 2px;
    line-height: 1;
    display: inline-block;
}

.header-brand:hover .brand-text {
    color: #00648e;
    border-color: #00648e;
    transition:
        color 0.2s,
        border-color 0.2s;
}

.header-mobile {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex: 1;
    gap: 20px;
}

.header-nav {
    display: flex;
    align-items: center;
    gap: 4px;
    flex: 1;
    justify-content: center;
}

.nav-item-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: #5a5a5a;
    font-size: 18px;
    font-family: "Montserrat", sans-serif;
    padding: 8px 14px;
    border-radius: 6px;
    transition:
        color 0.2s,
        background-color 0.2s;
    gap: 4px;
    white-space: nowrap;
    min-width: 64px;
}

.nav-item-link .nav-icon {
    font-size: 22px;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.nav-item-link .nav-icon svg {
    width: 18px;
    height: 18px;
    stroke: currentColor;
    fill: none;
    stroke-width: 1.8;
}

.nav-item-link .nav-label {
    font-size: 18px;
    line-height: 1;
    font-weight: 400;
    margin-bottom: 2px;
}

.nav-item-link:hover {
    color: #1a1a1a;
    background-color: #0000000d;
}

.nav-item-link.active {
    color: #00648e;
}

.header-contacts {
    display: flex;
    flex-direction: column;
    text-align: center;
    flex-shrink: 0;
}

.header-phone {
    text-decoration: none;
    color: #1a1a1a;
    font-size: 20px;
    font-weight: 700;
    font-family: "Montserrat", sans-serif;
    letter-spacing: 0.5px;
    white-space: nowrap;
    transition: color 0.2s;
}

.header-phone:hover {
    color: #00648e;
}

.btn-callback {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: #00648e;
    color: #fff !important;
    font-size: 16px;
    font-weight: 600;
    font-family: "Montserrat", sans-serif;
    text-decoration: none;
    padding: 12px 35px;
    border-radius: 20px;
    border: none;
    white-space: nowrap;
    cursor: pointer;
    transition: 0.3s;
}

.btn-callback:hover {
    color: white;
    background-color: #045b7c;
}

.btn-callback:active {
    transform: translateY(0);
}

.header-burger {
    display: none;
    width: 44px;
    height: 44px;
    padding: 0;
    border: 0;
    border-radius: 10px;
    background: #f3f7f9;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
    position: relative;
    z-index: 12;
}

.header-burger span {
    width: 20px;
    height: 2px;
    background: #1a1a1a;
    border-radius: 2px;
    transition: 0.2s ease;
}

@media (max-width: 1199.98px) {
    .header-phone {
        font-size: 16px;
    }

    .btn-callback {
        padding: 12px 20px;
    }

    .nav-item-link {
        padding: 8px 10px;
        min-width: 56px;
    }

    .nav-item-link .nav-label {
        font-size: 18px;
        font-weight: 500;
    }
}

@media (max-width: 991.98px) {
    .header-inner {
        min-height: 72px;
        padding: 14px 0;
    }

    .header-brand .brand-text {
        font-size: 30px;
    }

    .header-burger {
        display: inline-flex;
    }

    .header-mobile {
        display: none;
        position: absolute;
        top: calc(100% + 1px);
        left: 0;
        right: 0;
        background: #fff;
        border-bottom: 1px solid #e0e0e0;
        box-shadow: 0 12px 30px #00000014;
        padding: 16px;
        flex-direction: column;
        align-items: stretch;
        gap: 18px;
        z-index: 11;
    }

    .site-header.is-open .header-mobile {
        display: flex;
    }

    .site-header.is-open .header-burger span:nth-child(1) {
        transform: translateY(7px) rotate(45deg);
    }

    .site-header.is-open .header-burger span:nth-child(2) {
        opacity: 0;
    }

    .site-header.is-open .header-burger span:nth-child(3) {
        transform: translateY(-7px) rotate(-45deg);
    }

    .header-nav {
        flex-direction: column;
        align-items: stretch;
        justify-content: flex-start;
        gap: 2px;
    }

    .nav-item-link {
        flex-direction: row-reverse;
        align-items: center;
        width: 100%;
        min-width: 100%;
        padding: 12px 14px;
        border-radius: 12px;
        background: #f8fbfc;
        font-weight: 500;
    }

    .nav-item-link .nav-label {
        font-size: 25px;
        margin-bottom: 0;
    }

    .nav-item-link .nav-icon svg {
        width: 20px;
        height: 20px;
    }

    .header-contacts {
        flex-direction: column;
        align-items: stretch;
        gap: 10px;
        padding-top: 4px;
        border-top: 1px solid #e0e0e0;
    }

    .header-phone {
        display: flex;
        justify-content: center;
        font-size: 18px;
        padding-top: 12px;
    }

    .btn-callback {
        width: 100%;
        min-height: 46px;
        font-size: 14px;
        padding: 10px 16px;
    }
}

@media (max-width: 767.98px) {
    .header-inner {
        min-height: 64px;
        padding: 12px 0;
    }

    .header-brand .brand-text {
        font-size: 24px;
        border-bottom-width: 2px;
    }

    .header-mobile {
        padding: 14px;
    }

    .nav-item-link .nav-label {
        font-size: 18px;
    }

    .header-phone {
        font-size: 16px;
    }
}

.hero {
    padding: 40px 0;
    background: #f5f7f9;
}

.hero__wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    position: relative;
}

.hero__content {
    max-width: 500px;
}

.hero__title {
    font-size: 54px;
    font-weight: 700;
    line-height: 1.2;
    position: absolute;
    top: 50px;
    z-index: 999;
}

.hero__list {
    list-style: none;
    padding: 0;
    margin-top: 220px;
    margin-bottom: 65px;
    min-width: 450px;
}

.hero__list li {
    position: relative;
    margin-bottom: 12px;
    font-size: 24px;
}

.hero__btn {
    background: #00648e;
    color: #fff;
    padding: 18px 130px;
    border-radius: 20px;
    margin-top: 15px;
    text-decoration: none;
    transition: 0.3s;
}

.hero__btn:hover {
    color: white;
    background: #004663;
}

.hero__image {
    position: relative;
    max-width: 900px;
}

.hero__image img {
    width: 100%;
    border-top-right-radius: 40px;
    border-bottom-right-radius: 40px;
    object-fit: cover;
    display: block;
}

.hero__image:before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to right,
        #f0f6f9 0%,
        rgba(240, 246, 249, 0.95) 20%,
        rgba(240, 246, 249, 0.7) 40%,
        rgba(240, 246, 249, 0.3) 60%,
        rgba(240, 246, 249, 0.05) 80%,
        transparent 100%
    );
    border-top-right-radius: 40px;
    border-bottom-right-radius: 40px;
}

@media (min-width: 768px) and (max-width: 1300px) {
    .hero {
        padding: 30px 0;
    }
    .hero__title {
        font-size: 40px !important;
        font-weight: 700;
        line-height: 1.2;
        position: absolute;
        top: 0;
        z-index: 999;
    }
}

@media (max-width: 767.98px) {
    .hero__list {
        min-width: 100%;
    }
    .hero__title {
        font-size: 28px !important;
        position: relative !important;
        padding-left: 15px;
        top: 0 !important;
    }

    .hero__image {
        display: none;
    }

    .hero__list {
        margin-top: 10px !important;
        padding-left: 15px;
    }

    .hero__list li {
        font-size: 18px !important;
    }

    .hero__content {
        max-width: 100%;
    }

    .hero__btn {
        padding: 18px 0 !important;
        display: block;
        text-align: center;
        width: 100%;
    }
}

.credit-section {
    padding: 25px 0;
    background: #fff;
}

.credit-card {
    display: grid;
    grid-template-columns: 1fr 250px;
    background: #f0f6f9;
    border-radius: 28px;
    overflow: hidden;
}

.credit-card__left {
    padding: 44px 40px 32px;
}

.credit-card__right {
    border-left: 1px solid #d8e7ee;
    padding: 28px 22px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.credit-card__title {
    margin: 0 0 34px;
    font-size: 40px;
    line-height: 1.15;
    font-weight: 600;
    color: #111;
}

.credit-card__note {
    margin: 18px 0 0;
    font-size: 14px;
    line-height: 1.35;
    color: #a3b3bb;
}

.credit-range {
    margin-bottom: 26px;
}

.credit-range__top {
    margin-bottom: 14px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.credit-range__label {
    font-size: 16px;
    color: #2d2d2d;
}

.credit-range__value {
    font-size: 16px;
    font-weight: 700;
    color: #111;
    white-space: nowrap;
}

.credit-range__input {
    -webkit-appearance: none;
    appearance: none;
    width: 100%;
    height: 10px;
    border-radius: 999px;
    outline: none;
    cursor: pointer;
    background: linear-gradient(to right, #0d6f9c 0% 50%, #cddfe7 50% 100%);
}

.credit-range__input::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: #0d6f9c;
    border: 0;
    cursor: pointer;
    box-shadow: 0 0 0 4px #0d6f9c14;
}

.credit-range__input::-moz-range-thumb {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: #0d6f9c;
    border: 0;
    cursor: pointer;
    box-shadow: 0 0 0 4px #0d6f9c14;
}

.credit-range__input::-moz-range-track {
    height: 8px;
    border-radius: 999px;
    background: #cddfe7;
}

.credit-range__marks {
    margin-top: 10px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    font-size: 14px;
    color: #9cb0b8;
}

.credit-result {
    margin-top: 10px;
    padding: 26px;
    border-radius: 26px;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.credit-result__text {
    margin: 0 0 6px;
    font-size: 20px;
    color: #666;
}

.credit-result__price {
    font-size: 30px;
    line-height: 1;
    font-weight: 700;
    color: #111;
}

.credit-result__btn {
    min-width: 200px;
    padding: 18px 28px;
    border-radius: 20px;
    background: #0d6f9c;
    color: #fff;
    text-decoration: none;
    font-size: 16px;
    line-height: 1;
    font-weight: 600;
    text-align: center;
    transition: background 0.2s ease;
}

.credit-result__btn:hover {
    background: #09587c;
    color: #fff;
}

.credit-banks {
    width: 100%;
    margin: 0;
    padding: 0;
    list-style: none;
}

.credit-banks__item {
    min-height: 63px;
    padding: 18px 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    border-bottom: 1px solid #d8e7ee;
    font-size: 16px;
    font-weight: 700;
    color: #23323a;
}

.credit-banks__item:last-child {
    border-bottom: 0;
}

@media (max-width: 991px) {
    .credit-card {
        grid-template-columns: 1fr;
    }

    .credit-card__right {
        border-left: 0;
        border-top: 1px solid #d8e7ee;
    }

    .credit-banks {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
    }

    .credit-banks__item {
        border-bottom: 1px solid #d8e7ee;
        border-right: 1px solid #d8e7ee;
    }

    .credit-banks__item:nth-child(2n) {
        border-right: 0;
    }
}

@media (max-width: 767px) {
    .credit-card {
        border-radius: 20px;
    }

    .credit-card__left {
        padding: 28px 20px 24px;
    }

    .credit-card__title {
        font-size: 24px;
        margin-bottom: 26px;
    }

    .credit-result {
        flex-direction: column;
        align-items: stretch;
    }

    .credit-result__btn {
        min-width: 100%;
    }

    .credit-banks {
        grid-template-columns: 1fr;
    }

    .credit-banks__item {
        border-right: 0;
    }
}

.about-section {
    padding: 60px 0 40px;
    background: #fff;
}

.about-section__grid {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 46px;
    align-items: start;
    margin-bottom: 28px;
}

.about-section__media {
    min-height: 314px;
    border-radius: 24px;
    background: #f0f6f9;
}

.about-section__title {
    margin: 0 0 28px;
    font-size: 32px;
    line-height: 1.1;
    font-weight: 700;
    color: #111;
}

.about-section__text {
    max-width: 560px;
}

.about-section__text p {
    margin: 0 0 22px;
    font-size: 24px;
    line-height: 1.32;
    font-weight: 400;
    color: #2a2a2a;
}

.about-section__text p:last-child {
    margin-bottom: 0;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    text-align: center;
}

.about-stats__item {
    padding: 4px 10px 0;
}

.about-stats__value {
    margin-bottom: 8px;
    font-size: 48px;
    line-height: 1;
    font-weight: 700;
    color: #000;
}

.about-stats__text {
    font-size: 18px;
    line-height: 1.3;
    font-weight: 400;
    color: #2f2f2f;
}

@media (max-width: 1199px) {
    .about-section__grid {
        gap: 32px;
    }

    .about-section__text p {
        font-size: 20px;
    }

    .about-stats__value {
        font-size: 40px;
    }

    .about-stats__text {
        font-size: 16px;
    }
}

@media (max-width: 991px) {
    .about-section__grid {
        grid-template-columns: 1fr;
    }

    .about-section__media {
        min-height: 260px;
    }

    .about-section__text {
        max-width: 100%;
    }

    .about-stats {
        grid-template-columns: repeat(2, 1fr);
        row-gap: 28px;
    }
}

@media (max-width: 575px) {
    .about-section {
        padding: 44px 0 28px;
    }

    .about-section__grid {
        gap: 24px;
        margin-bottom: 24px;
    }

    .about-section__media {
        min-height: 210px;
        border-radius: 18px;
    }

    .about-section__title {
        margin-bottom: 20px;
        font-size: 28px;
    }

    .about-section__text p {
        margin-bottom: 18px;
        font-size: 18px;
    }

    .about-stats {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .about-stats__value {
        font-size: 36px;
    }

    .about-stats__text {
        font-size: 16px;
    }
}

.stats {
    padding: 40px 0;
    background: #fff;
}

.stats__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    text-align: center;
}

.stats__item {
    padding: 10px;
}

.stats__value {
    font-size: 42px;
    font-weight: 700;
    color: #000;
    margin-bottom: 8px;
}

.stats__text {
    font-size: 16px;
    color: #333;
    line-height: 1.4;
}

@media (max-width: 991px) {
    .stats__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 5px;
    }
}

.selection {
    padding: 48px 0;
    background: #fff;
}

.selection__wrapper {
    padding: 16px 40px 20px;
    background: #f0f6f9;
    border-radius: 40px;
    gap: 25px;
}

.selection__title {
    margin: 0 0 40px;
    text-align: center;
    font-size: 40px;
    line-height: 1.2;
    font-weight: 700;
    color: #111;
}

.selection__title--clients {
    margin-top: 14px;
    margin-bottom: 40px;
}

.selection-types {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin-bottom: 50px;
}

.selection-types__item {
    padding: 14px 14px 16px;
    background: #fff;
    border-radius: 16px;
    text-align: center;
}

.selection-types__image {
    height: 280px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 6px;
}

.selection-types__image img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    display: block;
}

.selection-types__name {
    margin: 0 0 20px;
    font-size: 32px;
    line-height: 1.2;
    font-weight: 700;
    color: #111;
}

.selection-types__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 92px;
    padding: 18px 36px;
    border-radius: 20px;
    background: #0d6f9c;
    color: #fff;
    text-decoration: none;
    font-size: 16px;
    line-height: 1;
    font-weight: 600;
    transition: background 0.2s ease;
    margin-bottom: 25px;
}

.selection-types__btn:hover {
    background: #09587c;
    color: #fff;
}

.selection-clients {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
}

.selection-clients__item {
    overflow: hidden;
    background: #fff;
    border-radius: 20px;
    margin-bottom: 15px;
}

.selection-clients__image {
    height: 500px;
    background: #e9eef1;
}

.selection-clients__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.selection-clients__body {
    margin-top: -40px;
    padding: 20px 14px 16px;
    background: #fff;
    border-radius: 20px 20px 0 0;
    position: relative;
    z-index: 2;
}

.selection-clients__top {
    margin-bottom: 8px;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 8px;
}

.selection-clients__car {
    margin: 0;
    font-size: 22px;
    line-height: 1.2;
    font-weight: 700;
    color: #111;
}

.selection-clients__tag {
    flex-shrink: 0;
    font-size: 16px;
    line-height: 1.2;
    color: #9aa7ae;
    text-transform: lowercase;
}

.selection-clients__info {
    display: grid;
    gap: 4px;
}

.selection-clients__row {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 300;
    font-size: 20px;
    line-height: 1.25;
}

.selection-clients__row span {
    white-space: nowrap;
}

.selection-clients__row span:first-child {
    color: #9aa7ae;
}

.selection-clients__row strong {
    white-space: nowrap;
    font-size: 20px;
    font-weight: 700;
    color: #111;
}

.selection-clients__row:after {
    content: "";
    flex: 1;
    border-bottom: 2px dotted #d6e1e6;
    margin: 10px 0 0;
}

.selection-clients__row span:first-child {
    order: 0;
}

.selection-clients__row:after {
    order: 1;
}

.selection-clients__row strong {
    order: 2;
}

@media (max-width: 991px) {
    .selection-clients {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 767px) {
    .selection {
        padding: 36px 0;
    }

    .selection__wrapper {
        padding: 14px;
        border-radius: 18px;
    }

    .selection__title {
        font-size: 18px;
    }

    .selection-types {
        grid-template-columns: 1fr;
    }

    .selection-types__image {
        height: 110px;
    }

    .selection-clients__image {
        height: 320px;
    }
}

.faq {
    padding: 56px 0;
    background: #fff;
}

.faq__title {
    margin: 0 0 18px;
    text-align: center;
    font-size: 40px;
    line-height: 1.2;
    font-weight: 700;
    color: #111;
}

.faq__list {
    border-bottom: 1px solid #dbe4e9;
}

.faq__item {
    border-top: 1px solid #dbe4e9;
}

.faq__question {
    width: 100%;
    padding: 18px 0;
    border: 0;
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    text-align: left;
    font-size: 28px;
    line-height: 1.35;
    color: #1b1c1e;
    cursor: pointer;
}

.faq__icon {
    position: relative;
    flex: 0 0 16px;
    width: 16px;
    height: 16px;
}

.faq__icon:before,
.faq__icon:after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 10px;
    height: 1.5px;
    background: #b9c6cd;
    transition:
        transform 0.2s ease,
        opacity 0.2s ease;
}

.faq__icon:before {
    transform: translate(-50%, -50%) rotate(0);
}

.faq__icon:after {
    transform: translate(-50%, -50%) rotate(90deg);
}

.faq__answer {
    max-height: 0;
    font-size: 28px;
    overflow: hidden;
    transition: max-height 0.25s ease;
}

.faq__answer-inner {
    padding: 0 0 30px;
    max-width: 690px;
    font-size: 20px;
    line-height: 1.3;
    color: #9aa7ae;
}

.faq__item.is-open .faq__icon:after {
    opacity: 0;
}

@media (max-width: 767px) {
    .faq {
        padding: 40px 0;
    }

    .faq__title {
        font-size: 22px;
    }

    .faq__question {
        padding: 16px 0;
        font-size: 20px;
    }

    .faq__answer-inner {
        font-size: 20px;
    }
}

.map-section {
    padding-bottom: 48px;
    background: #fff;
}

.map-section__wrapper {
    border-radius: 28px;
    overflow: hidden;
}

.map-section__map {
    position: relative;
    min-height: 500px;
    border-radius: 28px;
    overflow: hidden;
}

.map-section__map iframe,
.map-section__map ymaps,
.map-section__map [class*="ymaps"],
.map-section__map script {
    width: 100%;
}

.map-section__card {
    position: absolute;
    left: 30px;
    bottom: 70px;
    z-index: 5;
    width: 100%;
    max-width: 420px;
    padding: 28px 30px 18px;
    border-radius: 20px;
    background: #0d6f9c;
    color: #fff;
    box-shadow: 0 16px 32px #0d6f9c2e;
}

.map-section__title {
    margin: 0 0 22px;
    font-size: 40px;
    line-height: 1.2;
    font-weight: 700;
    color: #fff;
}

.map-section__list {
    margin: 0 0 24px;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 14px;
}

.map-section__item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 20px;
    margin-top: 8px;
    line-height: 1.45;
    color: #fff;
}

.map-section__item a {
    color: inherit;
    text-decoration: none;
}

.map-section__icon {
    flex-shrink: 0;
    font-size: 16px;
    line-height: 1;
    margin-top: 2px;
}

.map-section__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 18px 20px;
    border-radius: 20px;
    background: #fff;
    color: #111;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    transition: 0.2s ease;
}

.map-section__btn:hover {
    background: #f2f5f7;
    color: #111;
}

@media (max-width: 767px) {
    .map-section {
        padding: 36px 0;
    }

    .map-section__map {
        min-height: 420px;
    }

    .map-section__card {
        left: 16px;
        right: 16px;
        bottom: 16px;
        max-width: none;
        width: auto;
        padding: 22px 16px 16px;
    }

    .map-section__title {
        margin-bottom: 18px;
        font-size: 22px;
    }

    .map-section__item {
        font-size: 14px;
    }

    .map-section__btn {
        min-height: 50px;
        font-size: 14px;
    }
}

.catalog-page {
    padding: 16px 0 40px;
    background: #f8fbfd;
}

.catalog-page__layout {
    display: grid;
    grid-template-columns: 350px 1fr;
    gap: 14px;
    align-items: start;
}

.catalog-filter {
    padding: 14px;
    border-radius: 18px;
    background: #fff;
    box-shadow: 0 4px 24px #19364814;
    position: sticky;
    top: 16px;
}

.catalog-filter__tabs {
    margin-bottom: 14px;
    padding: 4px;
    border-radius: 14px;
    background: #f0f6f9;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 6px;
}

.catalog-filter__tab {
    min-height: 40px;
    border: 0;
    border-radius: 10px;
    background: transparent;
    color: #58666f;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: 0.2s ease;
}

.catalog-filter__tab.is-active {
    background: #0d6f9c;
    color: #fff;
}

.catalog-filter__form {
    display: grid;
    gap: 18px;
}
.catalog-filter__group {
    margin-bottom: 14px;
}
@media (min-width: 768px) {
    .catalog-filter__group {
        display: grid;
        gap: 10px;
    }
}

.catalog-filter__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}

.catalog-filter__title {
    font-size: 18px;
    line-height: 0.2;
    font-weight: 700;
    color: #111;
}

.catalog-filter__reset-link {
    padding: 0;
    border: 0;
    background: transparent;
    font-size: 12px;
    color: #a6b5bd;
    cursor: pointer;
}

.catalog-filter__select,
.catalog-filter__input {
    width: 100%;
    height: 44px;
    padding: 0 14px;
    border: 0;
    border-radius: 20px;
    background: #f0f6f9;
    font-size: 14px;
    color: #5c6a72;
    outline: none;
    box-shadow: none;
}

.catalog-filter__select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%2393A5AF' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    padding-right: 56px;
}

.catalog-filter__range-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0px;
}

.catalog-filter__range-row__input {
    height: 44px;
    padding: 0 14px;
    border: none;
    background: #f0f6f9;
    font-size: 14px;
    color: #5c6a72;
    outline: none;
}

.catalog-filter__range-row__input:first-child {
    border-radius: 20px 0 0 20px;
    border-right: 1px solid #dae9f1;
}

.catalog-filter__range-row__input:last-child {
    border-radius: 0 20px 20px 0;
}

.catalog-filter__footer {
    display: grid;
    gap: 10px;
    padding-top: 4px;
}

.catalog-filter__count {
    font-size: 18px;
    line-height: 1.25;
    font-weight: 700;
    color: #111;
}

.catalog-filter__submit,
.catalog-filter__clear {
    width: 100%;
    min-height: 48px;
    border-radius: 14px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: 0.2s ease;
}

.catalog-filter__submit {
    border: 0;
    background: #0d6f9c;
    color: #fff;
}

.catalog-filter__submit:hover {
    background: #0a5a7e;
}

.catalog-filter__clear {
    border: 1px solid #0d6f9c;
    background: #fff;
    color: #0d6f9c;
}

.catalog-filter__clear:hover {
    background: #f3fbff;
}

.catalog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
}

.catalog-card {
    overflow: hidden;
    border-radius: 18px;
    background: #fff;
    box-shadow: 0 4px 24px #19364814;
}

.catalog-card__image {
    display: block;
    aspect-ratio: 1.45/1;
    background: #eef3f6;
}

.catalog-card__image img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

.catalog-card__body {
    padding: 12px 12px 14px;
}

.catalog-card__top {
    margin-bottom: 2px;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 10px;
}

.catalog-card__name {
    margin: 0;
    font-size: 20px;
    line-height: 1.2;
    font-weight: 400;
    color: #8a98a0;
}

.catalog-card__credit {
    font-size: 12px;
    line-height: 1.2;
    color: #6fa7c4;
    white-space: nowrap;
}

.catalog-card__price {
    margin-bottom: 10px;
    font-size: 20px;
    line-height: 1;
    font-weight: 700;
    color: #1b1c1e;
}

.catalog-card__specs {
    margin-bottom: 10px;
    display: grid;
    gap: 4px;
}

.catalog-card__row {
    display: flex;
    align-items: center;
    font-size: 14px;
    font-weight: 300;
    gap: 8px;
}

.catalog-card__row span:first-child {
    white-space: nowrap;
    color: #b0bcc3;
}

.catalog-card__row span:last-child {
    white-space: nowrap;
    color: #8b989f;
}

.catalog-card__row:before {
    content: "";
    flex: 1;
    height: 1px;
    border-bottom: 1px dashed #d6e1e6;
    margin-top: 10px;
    order: 1;
}

.catalog-card__row span:first-child {
    order: 0;
}

.catalog-card__row span:last-child {
    order: 2;
}

.catalog-card__location {
    margin-bottom: 12px;
    position: relative;
    font-size: 14px;
    line-height: 1.3;
    color: #7f7f7f;
}

.catalog-card__actions {
    display: grid;
    gap: 8px;
}

.catalog-card__btn {
    padding: 12px 35px;
    border-radius: 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 16px;
    font-weight: 700;
    transition: 0.2s ease;
}

.catalog-card__btn--primary,
.catalog-card__btn--primary:hover {
    background: #00648e;
    color: #fff;
}

.catalog-card__btn--secondary {
    border: 1px solid #00648e;
    background: #fff;
    color: #4d5b63;
    font-weight: 300 !important;
}

.catalog-card__btn--secondary:hover {
    background: #f4fbff;
}

@media (max-width: 1400px) {
    .catalog-page__layout {
        grid-template-columns: 250px 1fr;
    }

    .catalog-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .catalog-card__price {
        font-size: 28px;
    }
}

@media (max-width: 991px) {
    .catalog-page__layout {
        grid-template-columns: 1fr;
    }

    .catalog-filter {
        position: static;
    }
}

@media (max-width: 767px) {
    .catalog-page {
        padding-bottom: 28px;
    }

    .catalog-grid {
        grid-template-columns: 1fr;
    }

    .catalog-filter {
        padding: 12px;
    }

    .catalog-filter__title,
    .catalog-filter__count {
        font-size: 16px;
    }

    .catalog-filter__select,
    .catalog-filter__input {
        height: 42px;
        font-size: 16px;
        margin-bottom: 15px;
    }

    .catalog-card__price {
        font-size: 24px;
    }

    .catalog-card__btn {
        min-height: 42px;
        font-size: 16px;
    }

    .catalog-filter__group {
        width: 100%;
    }
}

.catalog-more {
    margin-top: 20px;
    display: flex;
    justify-content: center;
    grid-column: 1/-1;
}

.catalog-more__btn {
    width: 100%;
    border-radius: 14px;
    border: none;
    padding-top: 18px;
    padding-bottom: 18px;
    background: #fff;
    font-size: 16px;
    font-weight: 400;
    cursor: pointer;
    transition: 0.2s ease;
}

.catalog-more__btn:hover {
    background: #fff;
}

.select2-container {
    width: 100% !important;
}

.select2-container .select2-selection--single {
    height: 44px !important;
    display: flex;
    align-items: center;
    border-radius: 12px;
    border: none;
    background: #f0f6f9 !important;
    padding: 0 14px;
}

.select2-selection__rendered {
    line-height: normal !important;
    padding: 0 !important;
    color: #5c6a72;
    font-size: 14px;
}

.select2-selection__arrow {
    height: 44px !important;
    right: 10px !important;
}

.select2-dropdown {
    border-radius: 12px;
    border: none;
    box-shadow: 0 10px 20px #00000014;
    overflow: hidden;
}

.select2-results__option {
    padding: 10px 14px;
    font-size: 14px;
}

.select2-results__option--highlighted {
    background: #0d6f9c !important;
    color: #fff;
}

.select2-results__option--selected {
    background: #eaf6fb;
    color: #111;
}

.select2-search__field {
    height: 38px;
    border-radius: 10px;
    border: none;
    background: #f0f6f9;
    padding: 0 10px;
}

.select2-selection__placeholder {
    color: #9aa9b2;
}

.car-detail {
    padding: 12px 0 40px;
    background: #fff;
}

.car-detail__head {
    margin-bottom: 12px;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 24px;
}

.car-detail__main {
    flex: 1 1 auto;
}

.car-detail__title {
    margin: 0 0 4px;
    font-size: 32px;
    line-height: 1.15;
    font-weight: 400;
    color: #111;
}

.car-detail__id {
    margin-bottom: 12px;
    font-size: 20px;
    line-height: 1.2;
    color: #b5bfc5;
}

.car-detail__badges {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.car-detail__badge {
    min-height: 36px;
    padding: 8px 50px;
    border-radius: 20px;
    background: #f0f6f9;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 16px;
    color: #96a6af;
}

.car-detail__badge--rating {
    gap: 10px;
}

.car-detail__badge--text {
    font-size: 16px;
}

.car-detail__badge--location {
    position: relative;
    padding: 20px 50px !important;
    font-size: 16px;
}

.car-detail__badge-value {
    font-size: 24px;
    font-weight: 300;
    color: #46545d;
}

.car-detail__badge-stars {
    color: #f2c94c;
    font-size: 16px;
    letter-spacing: 1px;
}

.car-detail__price-box {
    flex: 0 0 290px;
    text-align: right;
}

.car-detail__price {
    margin-bottom: 2px;
    font-size: 32px;
    line-height: 1;
    font-weight: 700;
    color: #1b1c1e;
}

.car-detail__credit {
    margin-bottom: 10px;
    font-size: 14px;
    line-height: 1.2;
    color: #0d6f9c;
}

.car-detail__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 190px;
    min-height: 52px;
    padding: 12px 24px;
    border-radius: 20px;
    background: #0d6f9c;
    color: #fff;
    text-decoration: none;
    font-size: 15px;
    font-weight: 600;
    transition: 0.2s ease;
}

.car-detail__btn:hover {
    background: #0a5a7e;
    color: #fff;
}

.car-gallery {
    margin-bottom: 14px;
}

.car-gallery__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2px;
    border-radius: 18px;
    overflow: hidden;
    background: #fff;
}

.car-gallery__item {
    aspect-ratio: 1.2/1;
    background: #eef3f6;
}

.car-gallery__item img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

.car-specs {
    margin-bottom: 16px;
}

.car-specs__title {
    margin: 25px 0 14px;
    font-size: 20px;
    line-height: 1.2;
    font-weight: 700;
    color: #111;
}

.car-specs__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px 30px;
}

.car-specs__item {
    display: flex;
    align-items: center;
}

.car-specs__item:after {
    content: "";
    flex: 1;
    border-bottom: 1px dotted #ccc;
    margin: 0 8px;
    order: 1;
}

.car-specs__label {
    white-space: nowrap;
    order: 0;
}

.car-specs__value {
    white-space: nowrap;
    margin-left: 8px;
    order: 2;
}

.car-equipment__title {
    margin: 25px 0 14px;
    font-size: 18px;
    line-height: 1.2;
    font-weight: 700;
    color: #111;
}

.car-equipment__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
}

.car-equipment__item {
    min-height: 54px;
    padding: 0 16px;
    border: 0;
    border-radius: 14px;
    background: #f0f6f9;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    text-align: left;
    font-size: 16px;
    line-height: 1.2;
    color: #3d4a52;
    cursor: pointer;
}

.car-equipment__arrow {
    position: relative;
    flex: 0 0 14px;
    width: 14px;
    height: 14px;
}

.car-equipment__arrow:before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 8px;
    height: 8px;
    border-right: 1.5px solid #8fa0a9;
    border-bottom: 1.5px solid #8fa0a9;
    transform: translate(-50%, -70%) rotate(45deg);
}

@media (max-width: 1199px) {
    .car-detail__title {
        font-size: 28px;
    }

    .car-detail__price {
        font-size: 32px;
    }

    .car-specs__grid {
        gap: 12px 20px;
    }
}

@media (max-width: 991px) {
    .car-detail__head {
        flex-direction: column;
    }

    .car-detail__price-box {
        flex: none;
        width: 100%;
        text-align: left;
    }

    .car-gallery__grid,
    .car-specs__grid,
    .car-equipment__grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 767px) {
    .car-detail {
        padding-bottom: 28px;
    }

    .car-detail__title {
        font-size: 24px;
    }

    .car-detail__price {
        font-size: 28px;
    }

    .car-detail__btn {
        width: 100%;
    }

    .car-gallery__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .car-specs__grid {
        grid-template-columns: 1fr;
    }

    .car-specs__item {
        flex-direction: column;
        align-items: flex-start;
        gap: 4px;
    }

    .car-specs__item:after {
        display: none; /* убираем пунктирную линию */
    }

    .car-specs__label,
    .car-specs__value {
        white-space: normal; /* разрешаем перенос */
    }

    .car-specs__value {
        margin-left: 0;
        word-break: break-word;
    }

    .car-specs__grid,
    .car-equipment__grid {
        grid-template-columns: 1fr;
    }

    .car-detail__badge {
        width: 100%;
    }

    .featured-cars .catalog-grid {
        grid-template-columns: 1fr !important;
        gap: 2px;
    }

    .featured-cars {
        padding: 15px !important;
    }
}

.featured-cars {
    border-radius: 40px;
    padding: 40px;
    margin-bottom: 30px;
    background-color: #f0f6f9;
}

.featured-cars__title {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 25px;
}

.featured-cars .catalog-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 8px;
}

.cta-section {
    padding: 24px 0;
}

.cta-section .cta-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    background: #eef3f6;
    border-radius: 32px;
    padding: 24px 32px 20px;
    overflow: hidden;
}

.cta-section .cta-box__image {
    flex: 0 0 150px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    position: relative;
}

.cta-section .cta-box__image img {
    max-width: 220px;
    top: -80px;
    height: 180px;
    display: block;
    position: absolute;
}

@media (min-width: 991px) {
    .cta-section .cta-box__content {
        flex: 1 1 380px;
    }
}

@media (max-width: 767px) {
    .cta-section .cta-box__image img {
        max-width: 250px;
        top: 0px;
        display: block;
        position: absolute;
    }

    .cta-section .cta-box__form-wrapper {
        flex: 1 1 200px !important;
        width: 100%;
    }
}

.cta-section .cta-box__title {
    margin: 0;
    font-size: 28px;
    line-height: 1.25;
    font-weight: 400;
    color: #2f2f2f;
}

.cta-section .cta-box__form-wrapper {
    flex: 1 1 500px;
    max-width: 520px;
    width: 100%;
}

.cta-section .cta-form__row {
    display: flex;
    gap: 14px;
    margin-bottom: 10px;
}

.cta-section .cta-form__input {
    width: 100%;
    height: 40px;
    border: none;
    border-radius: 14px;
    background: #fff;
    padding: 0 18px;
    font-size: 15px;
    color: #333;
    outline: none;
}

.cta-section .cta-form__input::placeholder {
    color: #9a9a9a;
}

.cta-section .cta-form__button {
    width: 100%;
    padding: 18px;
    border: none;
    border-radius: 16px;
    background: #005f8f;
    color: #fff;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    transition: 0.2s ease-in-out;
}

.cta-section .cta-form__button:hover {
    background: #004f77;
}

.cta-section .cta-form__policy {
    margin: 8px 0 0;
    text-align: center;
    font-size: 12px;
    color: #8a8a8a;
}

.cta-section .cta-form__policy a {
    color: inherit;
    text-decoration: underline;
}

@media (max-width: 992px) {
    .cta-section .cta-box {
        flex-direction: column;
        text-align: center;
    }

    .cta-section .cta-box__form-wrapper {
        max-width: 100%;
    }
}

@media (max-width: 576px) {
    .cta-section .cta-box {
        padding: 20px 16px;
        border-radius: 24px;
    }

    .cta-section .cta-box__title {
        font-size: 22px;
    }

    .cta-section .cta-form__row {
        flex-direction: column;
    }

    .cta-section .cta-form__input,
    .cta-section .cta-form__button {
        height: 46px;
    }
}

.ui-modal {
    z-index: 2500;
}

.ui-modal .modal-dialog {
    max-width: 1100px;
}

.ui-modal__content {
    border: 0;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
}

.ui-modal__close {
    position: absolute;
    top: 16px;
    right: 16px;
    z-index: 5;
    background-color: #fff;
    border-radius: 20px;
    padding: 10px;
    color: #fff;
    opacity: 100;
}

.ui-modal__close:focus {
    border: none;
}

.ui-modal__grid {
    display: grid;
    grid-template-columns: 500px 1fr;
    min-height: 460px;
}

.ui-modal__left {
    background: #f0f6f9;
    padding: 22px 18px;
}

.ui-modal__right {
    background: #000;
    position: relative;
}

.ui-modal__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.ui-modal__title {
    font-size: 34px;
    text-align: center;
    font-weight: 700;
    margin-bottom: 18px;
    line-height: 1.15;
}

.ui-modal__label {
    font-size: 18px;
    color: #0000008c;
    margin-bottom: 6px;
}

.ui-modal__input {
    border-radius: 20px;
    background: #fff;
    border: 1px solid rgba(0, 0, 0, 0.05);
    padding: 16px 18px;
}

.ui-modal__input:focus {
    box-shadow: none;
    border-color: #00648e;
}

.ui-modal__btn {
    margin-top: 18px;
    width: 100%;
    background-color: #00648e;
    color: #fff;
    border-radius: 20px;
    font-weight: 700;
    padding: 16px 18px;
}

.ui-modal__btn:focus {
    box-shadow: none;
    border-color: #00648e;
}

.ui-modal__btn:hover {
    box-shadow: none;
    background-color: #00648e;
    color: #fff;
    border-color: #00648e;
}

.ui-modal__policy {
    margin-top: 10px;
    font-size: 14px;
    color: #00000073;
    text-align: center;
}

.ui-modal__policy a {
    color: #0000008c;
}

@media (max-width: 991.98px) {
    .ui-modal__grid {
        grid-template-columns: 1fr;
    }

    .ui-modal__right {
        display: none;
    }
}

.footer {

    background: #fff;
    color: #1f2d36;
}

.footer__top {
    display: grid;
    grid-template-columns: 1.1fr 1fr 1fr;
    gap: 48px;
    align-items: start;
    margin-bottom: 54px;
}

.footer__nav,
.footer__links {
    display: grid;
    gap: 18px;
}

.footer__nav a,
.footer__links a {
    font-size: 18px;
    line-height: 1.35;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.02em;
    color: #1f2d36;
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer__nav a:hover,
.footer__links a:hover {
    color: #0d6f9c;
}

.footer__contacts {
    display: grid;
    gap: 18px;
}

.footer__contact {
    display: inline-flex;
    align-items: flex-start;
    gap: 12px;
    max-width: 360px;
    font-size: 18px;
    line-height: 1.45;
    color: #1f2d36;
    text-decoration: none;
}

.footer__contact--address {
    margin-top: 8px;
}

.footer__icon {
    flex: 0 0 18px;
    color: #8d8d8d;
    margin-top: 2px;
}

.footer__bottom {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 24px;
    align-items: center;
    color: #7e7e7e;
    font-size: 14px;
    line-height: 1.4;
}

.footer__payments {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap;
    color: #8a8a8a;
    font-size: 18px;
    font-weight: 700;
}

.footer__dev {
    text-align: right;
}

.footer__copyright,
.footer__dev {
    color: #7e7e7e;
}

@media (max-width: 1199px) {
    .footer__top {
        grid-template-columns: 1fr 1fr;
    }

    .footer__links {
        grid-column: 1/-1;
    }
}

@media (max-width: 767px) {
    .footer {
        padding: 40px 0 28px;
    }

    .footer__top {
        grid-template-columns: 1fr;
        gap: 28px;
        padding: 0 15px;
        margin-bottom: 32px;
    }

    .footer__nav a,
    .footer__links a,
    .footer__contact {
        font-size: 18px;
    }

    .footer__bottom {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer__payments {
        gap: 14px;
        font-size: 18px;
    }

    .footer__dev {
        text-align: center;
    }
}

@media (max-width: 991px) {
    .container-lg {
        padding-left: 20px !important;
        padding-right: 20px !important;
    }

    .stats {
        padding: 20px 0;
    }

    .featured-cars .catalog-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .cta-section .cta-box__image img {
        top: 0;
        height: 180px;
    }

    .cta-section .cta-box__form-wrapper {
        flex: 1 1 100px;
    }
}

@media (min-width: 991px) and (max-width: 1600px) {
    .featured-cars .catalog-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 15px;
    }
}

@media (max-width: 430px) {
    .stats {
        padding: 5px 0;
    }
    .stats__grid {
        grid-template-columns: repeat(1, 1fr);
        gap: 2px;
    }

    .stats__item {
        padding: 2px;
    }

    .container-lg {
        padding-left: 12px !important;
        padding-right: 12px !important;
    }
}
.form-check-input {
    width: 3em !important;
}
.page-item.active .page-link {
    background-color: #00648e;
    border-color: #00648e;
}
.page-link {
    color: #00648e;
    padding: 12px 18px;
}
.page-item:first-child .page-link {
    border-top-left-radius: 1.25rem;
    border-bottom-left-radius: 1.25rem;
}
.page-item:last-child .page-link {
    border-top-right-radius: 1.25rem;
    border-bottom-right-radius: 1.25rem;
}
.car-tab {
    display: none;
}

.car-tab.is-active {
    display: block;
}

.car-tabs__head {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
}

.car-tabs__btn {
    padding: 12px 18px;
    border-radius: 20px;
    background: #f0f6f9;
    cursor: pointer;
    font-weight: 600;
    transition: 0.2s;
    border: none;
}

.car-tabs__btn.is-active {
    background: #0d6f9c;
    color: #fff;
}
.complectations-used__info-list {
    -moz-column-count: 3;
    column-count: 3;
}
.complectation-item__info-list > *, .complectations-used__info-list > * {
    -moz-column-break-inside: avoid;
    break-inside: avoid;
}
.checklist h4 {
     font-weight: 700;
     font-size: 1.13rem;
     margin-bottom: 1em;
}
.checklist ul {
    list-style-type: disc;
    padding-left: 2rem;
    list-style-image: url("data:image/svg+xml,%3Csvg width='17' height='15' viewBox='0 0 17 15' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M5.51442 15L0 7.97713L1.07741 6.97343L5.47668 10.8479L16.8392 0L17 0.104972L5.95662 15H5.51442Z' fill='%23313132'/%3E%3C/svg%3E%0A");
}
.checklist ul > * + * {
    margin-top: 1em;
}
@media (max-width: 992px) {
    .complectations-used__info-list {
        -moz-column-count: 2;
        column-count: 2;
    }
}
@media (max-width: 768px) {
    .complectations-used__info-list {
        -moz-column-count: 1;
        column-count: 1;
    }
    .ui-modal__left{
        padding: 20px !important;
    }
    .callModal > .ui-modal__right{
        display: block;
        grid-column: 1;
    }
    .ui-modal__title{
        font-size: 24px;
    }
    .ui-modal__input {
        padding: 12px 18px;
    }
    .ui-modal__btn {
        padding: 12px 18px;
    }
    .form_submission > label{
        line-height: 1.2;
    }
    .ui-modal__policy {
        font-size: 12px;
    }
}
.ui-modal__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
}

@media (max-width: 768px) {
    .ui-modal__grid {
        grid-template-columns: 1fr;
    }

    .ui-modal__right {
        order: -1; /* картинка будет сверху */
    }

    .ui-modal__left {
        order: 1;
        justify-content: center;
        display: flex;
        flex-direction: column;
    }
}



