.new-models {
    margin-block: 120px;
}
.new-models__list {
    margin: 0;
    padding: 0;
    list-style: none;
}
.new-model-card {
    display: grid;
    grid-template-columns:
        minmax(0, 546fr)
        minmax(0, 724fr);
    gap: 30px;
    width: 100%;
    max-width: 1300px;
    margin-inline: auto;
    scroll-margin-top: 175px;
}
.new-model-card + .new-model-card {
    margin-top: 80px;
}
/* sgv disclaimer fix */
.new-models svg g path {
    stroke-width: 2;
}
/* ========================
    models head
======================== */

.new-models__title {
    margin: 0 0 38px;
    font-family: 'Inter';
    font-size: 40px;
    line-height: 1;
    text-align: center;
    text-transform: uppercase;
    font-weight: 700;
}
/* desktop sticky navigation */

.new-models__nav-sticky {
    position: sticky;
    top: 118px;
    z-index: 20;
    width: 100%;
    /* margin-bottom: 60px; */
    background: #ffffff;
    border-bottom: 1px solid rgba(0, 0, 0, 0.25);
}

.new-models__nav {
    width: 100%;
}

.new-models__nav-list {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 0;
    padding: 0;
    list-style: none;
}

.new-models__nav-item {
    display: flex;
}

.new-models__nav-link {
    position: relative;
    display: block;
    padding: 12px 12px 10px;
    font-family: 'Inter';
    font-size: 18px;
    font-weight: 400;
    line-height: 1;
    color: #000000;
    text-decoration: none;

    transition: opacity 0.2s ease;
}
.new-models__nav-link::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: -1px;
    height: 2px;
    background: #000000;
    transform: scaleX(0);
    transform-origin: center;

    transition: transform 0.25s ease;
}
.new-models__nav-link.is-active::after {
    transform: scaleX(1);
}
.new-models__nav-link:hover {
    opacity: 0.65;
}
/* mobile navigation hidden on desktop */
.new-models__mobile-nav {
    display: none;
}

/* left */
.new-model-card__media {
    min-width: 0;
}
.new-model-card__title {
    margin: 0;
    font-family: 'Inter';
    font-size: 40px;
    font-weight: 600;
    line-height: 1;
    letter-spacing: 0em;
    color: #000000;
    margin-bottom: 40px;
}
.new-model-card__car {
    position: relative;
    width: 100%;
    aspect-ratio: 454 / 218;
    max-width: 454px;
}

.new-model-card__car-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    opacity: 0;
}
.new-model-card__car-img.is-active {
    opacity: 1;
}
/* live gal */
.new-model-card__gallery {
    position: relative;

    width: 100%;
    max-width: 454px;
    aspect-ratio: 454 / 80;
    margin-top: 12px;
    padding-inline: 24px;
}

.new-model-card__gallery-swiper {
    width: 100%;
    visibility: hidden;
}
.new-model-card__gallery-swiper.swiper-initialized {
	visibility: visible;
}

.new-model-card__gallery-swiper .swiper-slide {
    height: 80px;
}

.new-model-card__gallery-img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.new-model-card__gallery-link {
    display: block;
    width: 100%;
    height: 100%;
}

.new-model-card__gallery-img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.new-model-card__gallery-link {
    cursor: zoom-in;
}

/* nav btns */
.new-model-card__gallery-prev.swiper-button-disabled,
.new-model-card__gallery-next.swiper-button-disabled {
    opacity: 0.25;
    pointer-events: none;
    cursor: default;
}
.new-model-card__gallery-prev,
.new-model-card__gallery-next {
    position: absolute;
    top: 50%;
    z-index: 2;
    transform: translateY(-50%);
    width: 24px;
    height: 40px;
    border: 0;
    background: transparent;
    cursor: pointer;
}

.new-model-card__gallery-prev {
    left: 0;
}
.new-model-card__gallery-next {
    right: 0;
}
/* right */
.new-model-card__info {
    min-width: 0;
    padding: 20px 30px;
    background: #ffffff;
    box-shadow:
        0 0 16px 3px
        rgba(0, 0, 0, 0.16);

    display: flex;
    flex-direction: column;
    gap: 20px;
}
.new-model-card__info-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.new-model-card__price {
    display: flex;
    align-items: baseline;
    gap: 10px;
}
.new-model-card__price-label {
    font-family: 'Inter';
    font-size: 26px;
    font-weight: 500;
    letter-spacing: 0em;
    color: #000000;
}
.new-model-card__price-current {
    font-family: 'Inter';
    font-size: 30px;
    font-weight: 700;
    letter-spacing: 0em;
    color: #000000;

    padding-inline-end: 8px;
}
.new-model-card__price-old {
    font-family: 'Inter';
    font-size: 25px;
    font-weight: 500;
    letter-spacing: 0em;
    color: #000000;
    text-decoration: line-through;
}
.new-model-card__price-old-mobile {
    display: none;
}
/* benefits */

.new-model-card__benefits {
    display: grid;
    grid-template-columns:
        repeat(2, minmax(0, 1fr));
    gap: 15px 20px;
    padding: 0;
    list-style: none;
    margin-block: 10px;
}

.new-model-card__benefit {
    display: grid;
    grid-template-columns:
        minmax(70px, 34%)
        minmax(0, 1fr);
    align-items: center;
    min-height: 76px;
    overflow: hidden;
    background: #fff;
    border: 1px solid rgba(144, 144, 144, 1)
}
.new-model-card__benefit-art {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: flex-end;
    justify-content: flex-start;
    overflow: hidden;
}

.new-model-card__benefit-art img {
    display: block;
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    object-position: left bottom;
}
/* art tuning */
.new-model-card__benefit-art--warranty img {
    width: 70%;
}
.new-model-card__benefit-art--kasko img {
    width: 85%;
}
.new-model-card__benefit-art--credit img {
    width: 85%;
}
.new-model-card__benefit-art--rate img {
    width: 77%;
}

.new-model-card__benefit-title {
    font-family: 'Inter';
    font-weight: 700;
    font-size: 18px;
    line-height: 1;
    letter-spacing: 1%;
    text-transform: uppercase;
}
.new-model-card__benefit-subtitle {
    font-family: 'Inter';
    font-weight: 500;
    font-size: 12px;
}
.new-model-card__monthly {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    flex-direction: row;
    background: rgba(255, 206, 0, 1);
    padding: 8px 15px;
    border-radius: 5px;

    font-family: 'Inter';
    font-size: 18px;
    font-weight: 500;
    position: relative;
}
.new-model-card__monthly .model-card__disclaimer-text {
    top: 110%;
    transform: none;
}
/* buttons */
.new-model-card__actions {
    display: grid;
    grid-template-columns:
        repeat(2, minmax(0, 1fr));
    gap: 20px;
}
.new-model-card__btn {
    height: 44px;
    font-family: 'Inter';
    font-weight: 500;
    color: #000000;
}
.new-model-card__btn--offer {
    /* background: #000000; */
    color: #000000;
    border: 1px solid #000000;
}
/* risk-warning */
.new-models-risk-warning__container {
    display: flex;
    justify-content: center;
    position: relative;
    gap: 5px;
    align-items: center;
    margin-block: 30px 40px;
}
.new-models-risk-warning {
    font-family: 'Inter';
    font-size: 18px;
    line-height: 1;
}

.new-models-risk-warning__container .model-card__disclaimer-text {
    left: 31%;
    top: 70px;
    width: 400px;
}
/*====================
    adaptive
=====================*/
@media (max-width: 1200px) {
    .new-model-card__price-label {
        font-size: 20px;
    }
    .new-model-card__price-current {
        font-size: 25px;
        padding: 0;
    }
    .new-model-card__price-old {
        font-size: 16px;
    }
}
@media (max-width: 768px) {
    .new-models {
        margin-block: 30px;
    }
    .new-models__nav-sticky {
        display: none;
    }
    .new-models__mobile-nav {
        display: block;
    }
    /* mobile nav */

    .new-models__mobile-nav {
        display: block;
        position: sticky;
        top: 85px;
        z-index: 20;
        background: #fff;
        /* padding-block: 8px; */
    }

    .new-models__mobile-trigger {
        display: flex;
        align-items: center;
        justify-content: space-between;
        width: 100%;
        height: 44px;
        padding: 0 14px;
        border: 0;
        background: #000000;
        color: #ffffff;

        cursor: pointer;
    }
    .new-models__mobile-current {
        flex-shrink: 0;
        font-size: 14px;
        text-transform: uppercase;
    }

    .new-models__mobile-line {
        flex: 1;
        margin-inline: 18px;
        border-bottom:
            1px dotted
            rgba(255, 255, 255, 0.4);
    }

    .new-models__mobile-plus {
        position: relative;
        width: 26px;
        height: 26px;
        flex-shrink: 0;
        border: 1px solid #ffffff;
        border-radius: 50%;
    }

    .new-models__mobile-plus::before,
    .new-models__mobile-plus::after {
        content: '';
        position: absolute;
        top: 50%;
        left: 50%;
        width: 11px;
        height: 1px;
        background: #ffffff;

        transform: translate(-50%, -50%);
    }

    .new-models__mobile-plus::after {
        transform:
            translate(-50%, -50%)
            rotate(90deg);
    }

    .new-models__mobile-menu-inner {
        padding: 16px;
        background: #ffffff;
    }
    .new-models__mobile-link {
        display: flex;
        align-items: center;
        justify-content: space-between;
        width: 100%;
        min-height: 42px;
        padding: 0 16px;
        border: 0;
        background: #f7f7f7;
        text-align: left;
        cursor: pointer;
    }
    .new-models__mobile-check {
        opacity: 0;
    }
    .new-models__mobile-link.is-active
    .new-models__mobile-check {
        opacity: 1;
    }
    /* popup nav */
    .new-models__mobile-popup {
        width: min(100%, 328px);
        padding: 26px 16px 24px;
        background: #fff;
        position: relative;
    }
    .new-models__mobile-menu-title {
        margin: 0 0 14px;

        font-family: 'Inter';
        font-size: 20px;
        line-height: 1;
        font-weight: 500;
        color: rgba(5, 20, 31, 1);
    }
    .new-models__mobile-list {
        display: flex;
        flex-direction: column;
        gap: 4px;
        margin: 0;
        padding: 0;
        list-style: none;
    }

    .new-models__mobile-link {
        display: flex;
        align-items: center;
        justify-content: space-between;
        width: 100%;
        min-height: 64px;
        padding: 0 16px;
        border: 0;
        background: #f7f7f7;
        font-size: 18px;
        text-align: left;
        color: #000000;
        font-weight: 400;
    }
    .new-models__mobile-link.is-active {
        font-family: 'Inter';
        font-weight: 700;
        color: #000000;
    }
    .new-models__mobile-check {
        opacity: 0;
    }

    .new-models__mobile-link.is-active
    .new-models__mobile-check {
        opacity: 1;
    }
    /* close */
    .new-models__mobile-close {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 10px;
        border: 0;
        background: transparent;
        color: #fff;
        text-transform: uppercase;

        position: absolute;
        left: 50%;
        top: calc(100% + 24px);
        transform: translateX(-50%);
        white-space: nowrap;
    }
    /* fancy-standart close */
    .new-models__mobile-popup
    .f-button.is-close-btn {
        display: none;
    }
    /* card */
    .new-model-card {
        grid-template-columns: 1fr;
        gap: 0;
        max-width: 100%;
        scroll-margin-top: 28px;
    }

    .new-model-card + .new-model-card {
        margin-top: 0;
    }
    /* media */
    .new-model-card__media {
        width: 100%;
        padding-inline: clamp(16px, 4.72vw, 24px);
    }
    .new-model-card__title {
        margin-block: 20px;
        font-size: clamp(30px, 8vw, 40px);
        line-height: 1;
    }
    .new-model-card__car {
        width: 100%;
        max-width: none;
        aspect-ratio: 326 / 143;
    }
    .new-model-card__gallery {
        width: 100%;
        max-width: 326px;
        height: 56px;
        margin: 14px auto 14px;
        padding-inline: 18px;
        aspect-ratio: auto;
    }
    .new-model-card__gallery-swiper {
        width: 100%;
        height: 56px;
    }
    .new-model-card__gallery-swiper .swiper-slide {
        height: 56px;
    }
    .new-model-card__gallery-img {
        width: 100%;
        height: 100%;

        object-fit: cover;
    }
    /* live-gal btns */
    .new-model-card__gallery-prev,
    .new-model-card__gallery-next {
        top: 50%;
        width: 18px;
        height: 32px;
        transform: translateY(-50%);
        padding: 0;
    }

    .new-model-card__gallery-prev {
        left: 0;
    }

    .new-model-card__gallery-next {
        right: 0;
    }
/* card-right */
/* costs */
    .new-model-card__price-old {
        display: none;
    }
    .new-model-card__price-old-mobile {
        display: block;
        font-family: 'Inter';
        font-weight: 400;
        font-size: 16px;
        line-height: 1;
        color: rgba(0, 0, 0, 0.5);
        text-decoration: line-through;
        white-space: nowrap;
    }
    .new-model-card__info {
        width: 100%;
        padding:
            20px
            clamp(16px, 4.72vw, 40px)
            24px;
        gap: 16px;
    }
    .new-model-card__info-head {
        display: flex;
        align-items: baseline;
        justify-content: space-between;
        gap: 12px;
    }
    .new-model-card__monthly {
        padding: 7px 12px;
        font-size: clamp(13px, 3vw, 16px);
        /* white-space: nowrap; */
        font-family: 'Inter';
        font-weight: 700;
    }
    .new-model-card__price {
        display: flex;
        align-items: baseline;
        gap: 0;
        width: 100%;
        justify-content: space-between;
    }

    .new-model-card__price-label {
        font-size: clamp(20px, 5vw, 22px);
        line-height: 1;
        white-space: nowrap;
    }

    .new-model-card__price-current {
        font-size: clamp(25px, 7vw, 32px);
        line-height: 1;
        white-space: nowrap;
    }
    /* utp */
    .new-model-card__benefits {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 10px;

        margin-block: 8px;
    }

    .new-model-card__benefit {
        grid-template-columns: 33% minmax(0, 1fr);
        min-height: 60px;
        /* height: 60px; */
        aspect-ratio: 160 / 60;
    }

    .new-model-card__benefit-art {
        position: relative;
        width: 100%;
        height: 100%;

        overflow: visible;
    }

    .new-model-card__benefit-art img {
        position: absolute;
        left: 0;
        bottom: 0;

        width: 100%;
        height: auto;

        max-width: none;
        max-height: none;

        object-fit: contain;
    }
    .new-model-card__benefit-art--warranty img {
        width: 94%;
        transform: translate(-6%, 0);
    }

    .new-model-card__benefit-art--kasko img {
        width: 100%;
        transform: translate(-5%, 8%);
    }

    .new-model-card__benefit-art--credit img {
        width: 100%;
        transform: translate(-2%, 2%);
    }

    .new-model-card__benefit-art--rate img {
        width: 90%;
        transform: translate(-1%, 10%);
    }


    .new-model-card__benefit-title {
        font-size: clamp(10px, 2.6vw, 18px);
    }

    .new-model-card__benefit-subtitle {
        font-size: clamp(8px, 2vw, 12px);
    }

    .new-model-card__benefit-content {
        min-width: 0;
        /* padding-right: 6px; */
        line-height: 0.9;
    }
    .new-models .container {
        padding: 0;
    }
    /* btns */
    .new-model-card__actions {
        display: flex;
        flex-direction: column;
        gap: 9px;
    }
    .new-model-card__btn {
        font-size: 15px;
        text-transform: uppercase;
        font-family: 'Inter';
        font-weight: 600;
    }
    .new-models-risk-warning {
        font-size: 12px;
    }
    .new-models-risk-warning__container {
        margin-block: 10px;
    }
    .new-models-risk-warning__container .model-card__disclaimer-text {
        left: 0;
        top: 30px;
        width: auto;
        max-width: 360px;
    }
    .new-models__title {
        font-size: 20px;
    }

}