*,
*::after,
*::before {
    padding: 0;
    margin: 0;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    font: inherit;
    vertical-align: baseline;
}

article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
    display: block;
}
body {
    line-height: 1;
}
ol, ul {
    list-style: none;
}
blockquote, q {
    quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
    content: '';
    content: none;
}
table {
    border-collapse: collapse;
    border-spacing: 0;
}

/*--- vars ---*/
:root {
    --main-font-family: 'Raleway', sans-serif;
    --main-font-size: 16px;
    --main-text-color: #000;
    --main-bg-color: #fff;
    --main-placeholder-color: #000000;
    --color-prem: #FFD341;
    --color-gray: #949494;
}

body {
    font-family: var(--main-font-family);
    font-size: var(--main-font-size);
    color: var(--main-text-color);
    font-weight: 500;
    background: var(--main-bg-color);
    position: relative;
    font-variant-numeric: lining-nums;
    overflow-x: hidden;
}

body.active {
    overflow: hidden;
}

input, button, textarea {
    font-family: var(--main-font-family), sans-serif;
}

.main {
    overflow: hidden;
}

.container {
    max-width: 1280px;
    width: 100%;
    margin: 0 auto;
}

.btn__prem {
    border: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: #000;
    background-color: var(--color-prem);
    height: 56px;
    font-weight: 600;
    box-shadow: 0px 0px 8px rgba(160, 130, 28, 0.32);
    border-radius: 30px;
    transition: all .4s ease;
}

.btn__prem:hover {
    box-shadow: 0px 0px 16px #FFD341;
}

.btn__item {
    border: 1px solid var(--color-prem);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: #000;
    background-color: #fff;
    height: 56px;
    font-weight: 500;
    border-radius: 30px;
    transition: all .4s ease;
}

.btn__item:hover {
    background-color: var(--color-prem);
    box-shadow: 0px 0px 16px #FFD341;
}

.input__prem {
    outline: none;
    border: none;
    height: 56px;
    background-color: #fff;
    border-radius: 16px;
    padding: 0px 16px;
}

.input__prem::placeholder {
    color: #000;
    font-size: 16px;
    font-weight: 500;
}

.header {
    padding-top: 70px;
    margin-bottom: 120px;
}

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

}

.header__mobil {
    display: none;
}

.header__logo {
    position: relative;
    z-index: 9;
}
.header__logo a {
    z-index: 9;
    position: relative;
}

.header__logo::before {
    content: '';
    position: absolute;
    z-index: 4;
    width: 380px;
    height: 380px;
    background-color: var(--color-prem);
    left: -88px;
    top: -280px;
    border-radius: 100%;
}

.header__home {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 9999;
    margin-bottom: 0;
}

.header__home .header__logo::before  {
    display: none;
}

.header__list {
    display: flex;
    align-items: center;
}

.header__list li {
    margin-right: 16px;
}

.header__list li a {
    text-decoration: none;
    color: #000;
    display: inline-flex;
    align-items: center;
    padding: 19px 24px;
    border-radius: 30px;
    transition: all .4s ease;
}

.header__list li a svg {
    margin-right: 10px;
}

.header__list li:last-child {
    margin-right: 0;
}

.header__list li a:hover {
    background-color: var(--color-prem);
}

/* index.html */

.intro {
    padding-top: 125px;
    padding-bottom: 100px;
    position: relative;
}

.intro::after,
.intro::before {
    content: '';
    position: absolute;
    z-index: -1;
    background-color: var(--color-prem);
    border-radius: 100%;
}

.intro::before {
    width: 1235px;
    height: 1235px;
    top: -615px;
    left: -615px;
}

.intro::after {
    width: 440px;
    height: 440px;

    bottom: 90px;
    right: -220px;
}

.intro__inner {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
}

.intro__contact a {
    text-decoration: none;
    color: #000;
    font-weight: 700;
    font-size: 24px;

}

.intro__contact p {
    margin-top: 8px;
}

.intro__img {
    width: 65%;
    margin-right: 30px;
}

.intro__content {
    width: 57%;
    padding-top: 70px;
}

.intro__img > img {
    width: 100%;
}

.intro__content h1 {
    font-size: 64px;
    font-weight: 700;
    margin-bottom: 40px;
}

.intro__content p {
    font-size: 24px;
    margin-bottom: 32px;
}

.intro__content ul  {
    margin-bottom: 30px;
}

.intro__content ul li {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.intro__content ul li:last-child {
    margin-bottom: 0;
}

.intro__content ul li::before {
    content: '';
    background: url('../images/intro-list-icon.svg') center no-repeat;
    background-size: cover;
    min-width: 32px;
    min-height: 32px;
    margin-right: 16px;
}

.intro__content .btn__prem {
    padding: 0px 40px;
}

.cars {
    background-color: #FCFCFC;
    padding-bottom: 260px;
}

.cars__tabs {
    padding: 16px 40px;
    background-color: #FCFCFC;
    width: 80%;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 40px;
    transform: translateY(-50px);
    box-shadow: inset 0px 0px 16px rgba(0, 0, 0, 0.04);
    border-radius: 60px;
    display: flex;
    align-items: center;
    height: 100px;
}

.cars__tabs-des {
    font-size: 20px;
    font-weight: 600;
    margin-right: 64px;
}

.tabs-nav {
    display: flex;
    align-items: center;
}

.tabs-nav li {
    margin-right: 32px;
}

.tabs-nav li a {
    padding: 24px 32px;
    border-radius: 40px;
    text-decoration: none;
    color: #000;
    font-size: 20px;
    font-weight: 600;
    transition: all .4s ease;
}

.tabs-nav li a.active {
    background-color: var(--color-prem);
}

.tabs-nav li:last-child {
    margin-right: 0;
}

.cars__box-title {
    font-size: 32px;
    padding-bottom: 25px;
    margin-bottom: 25px;
    border-bottom: 1px solid #E0E0E0;
}

.cars__box-title span {
    font-weight: 700;
}

.cars__list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 50px;
}

.car__item {
    padding: 30px 30px 64px 30px;
    border-radius: 32px;
    position: relative;
    transition: all .4s ease;
}

.car__item:hover {
    background-color: #fff;
}

.car__item:hover .car__item-btn {
    height: auto;
    opacity: 1;
    visibility: visible;
}

.car__item-name {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 24px;
}

.car__item-name h3 {
    font-size: 20px;
}

.car__item-type {
    font-size: 14px;
    color: #949494;
}

.car__item img {
    width: 100%;
    margin-bottom: 24px;
}

.car__item-price-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
}


.car__item-price-credit {
    padding-left: 32px;
    border-left: 1px solid #000;
}

.car__item-price p {
    font-size: 14px;
    margin-bottom: 8px;
    color: #949494;
}

.car__item-price .car__item-price-inner {
    color: #949494;
    font-size: 14px;
}

.car__item-price .car__item-price-inner span {
    font-size: 24px;
    font-weight: 600;
}

.car__item-price-credit p {
    font-size: 14px;
    margin-bottom: 8px;
}

.car__item-price-credit .car__item-price-inner {
    font-size: 14px;
    font-weight: 700;
}

.car__item-price-credit .car__item-price-inner span {
    font-size: 24px;
}

.car__item-btn {
    position: absolute;
    z-index: 1;
    bottom: -10px;
    left: 50%;
    transform: translate(-50%, 0);
    opacity: 0;
    visibility: hidden;
    transition: all .4s ease;
}

.car__item .btn__prem {
    padding: 0px 30px;
    margin-bottom: -20px;
}

.present__banner {
    margin-top: -100px;
}

.present__banner-row {
    background-color: #000;
}

.present__banner {
    margin-bottom: 160px;
}

.present__banner-inner {
    position: relative;
}

.present__banner-img {
    max-width: 623px;
    position: absolute;
    z-index: 1;
    top: 40px;
    left: 40px;
}

.present__banner-content {
    color: #fff;
    width: 45%;
    margin-left: auto;
}

.present__banner-row {
    position: relative;
    overflow: hidden;
    border-radius: 32px;
    padding: 60px;
}

.present__banner-row::after {
    content: '';
    width: 890px;
    height: 890px;
    position: absolute;
    top: 50%;
    transform: translate(0, -50%);
    left: -300px;
    background-color: var(--color-prem);
    border-radius: 100%;
    z-index: 0;
}

.present__banner-content h2 {
    font-size: 64px;
    font-weight: 700;
    margin-bottom: 40px;
}

.present__banner-content p {
    margin-bottom: 40px;
}

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

.present__banner-form-item {
    width: 48%;
}

.present__banner-form-item .input__prem,
.present__banner-form-item .btn__prem {
    width: 100%;
    font-size: 16px;
}

.benefit {
    background-color: #000;
    color: #fff;
    padding: 70px 0px;
    margin-bottom: 200px;
}

.benefit h2 {
    font-size: 64px;
    text-align: center;
    font-weight: 700;
    margin-bottom: 64px;
}

.benefit h2 span {
    color: var(--color-prem);
}

.benefit__inner {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    position: relative;
}

.benefit__col {
    width: 48%;
}

.benefit__col.active {
    padding: 64px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(16px);
    border-radius: 32px;
}

.benefit__col h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 40px;
}

.benefit__col ul li {
    margin-bottom: 40px;
    font-weight: 600;
    display: flex;
    align-items: center;
}
.benefit__col ul li::before {
    content: '';
    background: url('../images/check-ext-icon.svg') center no-repeat;
    background-size: cover;
    min-width: 32px;
    min-height: 32px;
    margin-right: 16px;
}

.benefit__col ul li:last-child {
    margin-bottom: 0;
}

.benefit__col.active ul li::before {
    background: url('../images/intro-list-icon.svg') center no-repeat;
    background-size: cover;
}

.benefit__col.active ul {
    margin-bottom: 40px;
}

.benefit__col .btn__prem {
    padding: 0px 40px;
}

.benefit__img {
    position: absolute;
    min-width: 750px;
    z-index: 1;
    bottom: -180px;
    left: -40px;
}

.step {
    margin-bottom: 64px;
}

.step__inner {
    display: flex;
    align-items: start;
}

.step__img {
    width: 65%;
}

.step__img h2 {
    font-size: 64px;
    font-weight: 700;
}

.step__img h2 span {
    background-color: var(--color-prem);
    width: 90px;
    height: 90px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 100%;
}

.step__img img {
    margin-top: -50px;
    margin-left: -100px;
    position: relative;
    z-index: -1;
}

.step__content {
    border-left: 1px solid #D3D3D3;
    width: 35%;
}

.step__item {
    margin-bottom: 70px;
    display: flex;
    align-items: center;
    margin-left: -11px;
}

.step__item.active span {
    color: var(--color-prem);
}

.step__item::before {
    content: '';
    min-width: 23px;
    min-height: 23px;
    background-color: var(--color-prem);
    border-radius: 100%;
    margin-right: 55px;
}

.step__item span {
    font-size: 64px;
    font-weight: 700;
    color: #E0E0E0;

}

.step__item p {
    margin: 20px 0px;
}

.step__item:last-child {
    margin-bottom: 0;
}

.step__item .btn__prem {
    padding: 0px 40px;
}

.cycle {
    margin-bottom: 64px;
}

.cycle__inner {
    padding: 64px 100px;
    background: #FCFCFC;
    border-radius: 32px;
}

.cycle__inner h2 {
    font-size: 40px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 32px;
}

.cycle__list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 50px;
}

.cycle__item {
    display: flex;
    align-items: start;
    padding: 25px;
    background-color: #fff;
    border-radius: 16px;
}

.cycle__item img {
    margin-right: 20px;
    margin-top: -5px;
}

.cycle__contnet h3 {
    font-size: 24px;
    font-weight: 600;
    line-height: 1.5;
    margin-bottom: 24px;
}

.cycle__contnet p {
    font-size: 14px;
}

.banks {
    margin-bottom: 120px;
}

.banks h2 {
    text-align: center;
    font-size: 64px;
    font-weight: 700;
    margin-bottom: 32px;
}

.banks__inner {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 24px 16px;
}

.banks-item {
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feedback {
    margin-bottom: 200px;
}

.feedback__inner {
    position: relative;
}

.feedback__content {
    background-color: var(--color-prem);
    position: relative;
    overflow: hidden;
    padding: 64px 100px;
    border-radius: 32px;
}

.feedback__img {
    position: absolute;
    z-index: 2;
    right: -50px;
    bottom: -150px;
}

.feedback__content::after {
    content: '';
    width: 1070px;
    height: 1070px;
    position: absolute;
    z-index: 0;
    left: -200px;
    top: -410px;
    background-color: #000;
    border-radius: 100%;
}

.feedback__text {
    color: #fff;
    position: relative;
    z-index: 1;
}

.feedback__text h2 {
    font-size: 64px;
    font-weight: 700;
    margin-bottom: 40px;
}

.feedback__text p {
    margin-bottom: 40px;
}

.feedback__text p span {
    font-weight: 700;
}

.feedback__form {
    display: flex;
    align-items: center;
}

.feedback__form .input__prem {
    width: 240px;
    margin-right: 16px;
}

.feedback__form .btn__prem {
    width: 215px;
}

.footer {
    padding: 70px 0px;
    background-color: #FCFCFC;
}

.footer__inner {
    display: flex;
    align-items: start;
    padding-bottom: 60px;
    margin-bottom: 30px;
    border-bottom: 1px solid #E0E0E0;
}

.footer__contact {
    margin-right: 100px;
}

.footer__contact .btn__item {
    width: 100%;
}

.footer__title {
    text-transform: uppercase;
    font-size: 24px;
    font-weight: 800;
    margin-bottom: 40px;
}

.footer__des {
    font-size: 14px;
    margin-bottom: 24px;
    color: #949494;
}

.footer__phone {
    margin-bottom: 16px;
}

.footer__phone p {
    font-size: 14px;
    color: #949494;
}

.footer__phone a {
    text-decoration: none;
    color: #000;
    font-weight: 700;
}

.footer__contact .btn__prem {
    padding: 0px 40px;
}

.footer__row {
    display: flex;
    align-items: start;
}

.footer__col {
    margin-right: 50px;
}

.footer__col:first-child {
    margin-right: 130px;
}

.footer__col:last-child {
    margin-right: 0;
}

.footer__col li  {
    margin-bottom: 24px;
}

.footer__col li h3 {
    font-weight: 700;
    height: 20px;
}

.footer__col li a {
    text-decoration: none;
    color: #949494;
    font-size: 14px;
}

.copyright p {
    font-size: 12px;
    font-weight: 400;
    color: #949494;
}

.header__logo::before {
    width: 340px;
    height: 340px;
    left: -74px;
    top: -257px;
}

.credit-comp__title {
    font-size: 32px;
    font-weight: bold;
    margin-bottom: 32px;
}

.credit-comp {
    margin-bottom: 50px;
}

.credit-comp-grid {
    display: -ms-grid;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(420px, 1fr));
    grid-gap: 16px;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
}

.credit-comp-item {
    background: #fff;
    border-radius: 16px;
}

.credit-comp-item__title span {
    font-weight: bold;
    color: #FFD341;
}

.credit-comp-item__title {
    padding: 20px 40px 20px 25px;
    cursor: pointer;
    position: relative;
}

.credit-comp-item__title:after {
    content: "";
    position: absolute;
    right: 24px;
    top: -6px;
    bottom: 0;
    margin: auto;
    border: solid #ffd341;
    border-width: 0 2px 2px 0;
    display: inline-block;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
    width: 12px;
    height: 12px;
}

.credit-comp-item__title.jai-btn-content-showed:after {
    -webkit-transform: rotate(-135deg);
    -ms-transform: rotate(-135deg);
    transform: rotate(-135deg);
    top: 8px;
}

.credit-comp-item__content {
    padding: 20px 24px;
    border-top: 1px solid #f3f3f3;
}

.credit-comp-list {
    display: -ms-grid;
    display: grid;
    grid-gap: 15px;
}

.credit-comp-list__item {
    position: relative;
    font-size: 14px;
    font-weight: 500;
    padding-left: 20px;
}

.credit-comp-list__item:after {
    content: "";
    position: absolute;
    left: 0;
    top: 2px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #ffd341;
}

@media (max-width: 1280px) {

    .intro__contact a {
        font-size: 15px;
    }

    .intro__contact p {
        font-size: 14px;
    }

    .header__list li {
        margin-right: 0;
    }

    .header__list li a {
        padding: 10px;
        font-size: 14px;
    }




    .header {
        padding-top: 30px;
        margin-bottom: 80px;
    }

    .header__logo::before {
        width: 300px;
        height: 300px;
        left: -53px;
        top: -231px;
    }

    .container {
        max-width: 970px;
    }

    .intro__content h1 {
        font-size: 46px;
    }

    .intro__content p {
        font-size: 20px;
    }

    .cars__tabs {
        width: 100%;
        padding: 20px;
    }

    .cars__list {
        grid-template-columns: repeat(2, 1fr);
    }

    .present__banner-content {
        position: relative;
        z-index: 1;
    }

    .present__banner-img {
        max-width: 410px;
        top: auto;
        bottom: 0;
    }

    .present__banner-row::after {
        width: 750px;
        height: 750px;
    }

    .present__banner-content h2 {
        font-size: 42px;
        margin-bottom: 20px;
    }

    .present__banner-content {
        width: 50%;
    }

    .cars {
        padding-bottom: 150px;
    }

    .present__banner {
        margin-bottom: 100px;
    }

    .benefit h2 {
        font-size: 46px;
    }

    .benefit__col.active {
        padding: 32px;
    }

    .benefit__img {
        width: 600px;
        min-width: 500px;
    }

    .step__img h2 {
        font-size: 46px;
    }

    .step__img h2 span {
        width: 70px;
        height: 70px;
    }

    .cycle__list {
        grid-template-columns: repeat(2, 1fr);
    }

    .banks__inner {
        grid-template-columns: repeat(4, 1fr);
    }

    .banks h2 {
        font-size: 48px;
    }

    .banks {
        margin-bottom: 80px;
    }

    .feedback__img {
        width: 400px;
        bottom: -70px;
    }

    .feedback__text h2 {
        font-size: 48px;
    }

    .feedback__content {
        padding: 40px 60px;
    }

    .feedback {
        margin-bottom: 100px;
    }

    .footer__col:first-child {
        margin-right: 50px;
    }

    .footer__col {
        margin-right: 20px;
    }

    .footer__contact {
        margin-right: 25px;
    }

    .footer__contact .btn__prem {
        padding: 0px 20px;
    }

    .footer__inner {
        padding-bottom: 30px;
    }

    .footer {
        padding: 40px 0px;
    }
}

@media (max-width: 970px) {

    .header__home .header__logo a {
        display: none;
    }

    .header__logo-link {
        display: block !important;
    }

    .header__logo::before {
        top: -210px;
    }

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

    .header__logo a:first-child {
        margin-bottom: 10px;
    }

    .header__logo a {
        text-decoration: none;
        color: #000;
        font-weight: 600;
    }

    .container {
        max-width: 100%;
        padding: 0px 20px;
    }

    .header__inner {
        display: none;
    }

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

    .header__burger {
        width: 30px;
        height: 20px;
        position: relative;
    }

    .header__burger-line {
        position: absolute;
        left: 0;
        z-index: 1;
        width: 100%;
        height: 2px;
        background-color: var(--color-prem);
        transition: all .4s ease;
    }

    .header__burger.active .header__burger-line:nth-child(1) {
        -webkit-transform: translateY(9px)
        rotate(45deg);
        -ms-transform: translateY(9px)
        rotate(45deg);
        transform: translateY(9px)
        rotate(45deg);
    }

    .header__burger.active .header__burger-line:nth-child(2) {
        opacity: 0;
    }

    .header__burger.active .header__burger-line:nth-child(3) {
        -webkit-transform: translateY(-9px)
        rotate(-45deg);
        -ms-transform: translateY(-9px)
        rotate(-45deg);
        transform: translateY(-9px)
        rotate(-45deg);
    }

    .header__burger-line:nth-child(1) {
        top: 0;
    }
    .header__burger-line:nth-child(2) {
        top: 50%;
        transform: translate(0, -50%);
    }
    .header__burger-line:nth-child(3) {
        bottom: 0;
    }

    .header__mobil-list {
        position: fixed;
        z-index: 999;
        left: -100%;
        width: 70%;
        top: 76px;
        background-color: #fff;
        padding: 20px;
        height: 100vh;
        transition: all .4s ease;
    }

    .header__mobil-list.active {
        left: 0;
    }

    .header__mobil-list .header__list {
        display: block;
    }

    .header {
        padding-top: 20px;
    }
    .main {
        padding-top: 80px;
    }

    .intro {
        padding-top: 0px;
    }


    .header__list li {
        margin-right: 0;
        margin-bottom: 10px;
    }

    .intro__contact {
        margin-bottom: 10px;
    }

    .header__mobil-list .btn__item {
        padding: 0px 40px;
    }

    .cars__tabs {
        flex-direction: column;
        height: 150px;
        margin-bottom: 0;
    }

    .cars__tabs-des {
        margin-bottom: 40px;
        margin-right: 0;
    }

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

    .present__banner-img {
        position: static;
        width: 48%;
    }

    .present__banner-inner {
        background-color: #000;
        border-radius: 32px;
        padding: 60px;
        overflow: hidden;
    }

    .present__banner-inner::after {
        content: '';
        width: 690px;
        height: 690px;
        position: absolute;
        top: 50%;
        transform: translate(0, -50%);
        left: -300px;
        background-color: var(--color-prem);
        border-radius: 100%;
        z-index: 0;
    }

    .present__banner-row {
        padding: 0;
        overflow: auto;
        border-radius: 0;
    }

    .present__banner-row::after {
        display: none;
    }

    .present__banner-content {
        width: 100%;
    }

    .benefit__img {
        display: none;
    }

    .benefit__inner {
        display: block;
    }

    .benefit__col {
        width: 100%;
    }

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

    .step__img img {
        display: none;
    }

    .step__inner {
        display: block;
    }

    .step__img,
    .step__content {
        width: 100%;
    }

    .step__img {
        margin-bottom: 20px;
    }

    .benefit {
        margin-bottom: 40px;
    }

    .cycle__inner {
        padding: 0;
        border-radius: 0;
    }

    .cycle {
        background-color: #FCFCFC;
        padding: 20px 0px;
    }

    .banks__inner {
        grid-template-columns: repeat(3, 1fr);
    }

    .banks {
        margin-bottom: 40px;
    }

    .feedback__content::after {
        width: 100%;
        height: 813px;
        left: -201px;
        top: -316px;
    }

    .feedback__img {
        display: none;
    }

    .footer__inner {
        display: block;
    }

    .footer__contact {
        margin-bottom: 20px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        flex-wrap: wrap;
    }

    .footer__title,
    .footer__des,
    .footer__phone,
    .footer__contact .btn__item {
        width: 48%;
    }

    .intro::before {
        width: 600px;
        height: 600px;
        left: -200px;
        top: -200px;
    }

    .intro::after {
        width: 220px;
        height: 220px;
        right: -100px;
    }

}

@media (max-width: 800px) {
    .intro__inner {
        display: block;
    }

    .intro__img {
        width: 100%;
    }

    .intro__content {
        width: 100%;
        padding-top: 20px;
    }

    .tabs-nav li a {
        padding: 15px 30px;
    }

    .cars__list {
        grid-gap: 26px;
    }

    .car__item {
        padding: 15px 15px 64px 15px;
    }

    .car__item-btn {
        opacity: 1;
        visibility: visible;
        width: 100%;
    }

    .car__item .btn__prem {
        width: 100%;
    }
}

@media (max-width: 700px) {
    .tabs-nav {
        flex-direction: column;
    }

    .tabs-nav li {
        margin-right: 0;
        margin-bottom: 30px;
    }

    .cars__tabs {
        height: auto;
    }

    .cars__list {
        grid-template-columns: repeat(1, 1fr);
    }

    .car__item-price-credit {
        width: 50%;
    }

    .present__banner-inner {
        display: block;
    }

    .present__banner-img {
        width: 100%;
        position: relative;
        z-index: 1;
    }

    .present__banner-inner::after {
        top: -500px;
        transform: translate(-50%, 0);
        left: 50%;
    }

    .cycle__list {
        grid-template-columns: repeat(1, 1fr);
    }

    .wrapper .cycle__inner {
        padding: 0px !important;
    }

    .cycle__inner {
        padding: 0px;
    }

    .cycle__inner h2 {
        font-size: 32px;
    }

    .banks__inner {
        grid-template-columns: repeat(2, 1fr);
    }

    .feedback__text h2 {
        font-size: 38px;
    }

    .feedback__form .input__prem {
        width: 100%;
        margin-bottom: 10px;
        margin-right: 0;
    }

    .feedback__content::after {
        height: 150%;
        width: 150%;
        left: -199px;
        top: 50%;
        transform: translate(0 , -50%);
    }

    .feedback__form .btn__prem {
        width: 100%;
    }
}

@media (max-width: 500px) {


    .present__banner-img {
        max-width: 100%;
        left: 0;
    }

    .present__banner-inner {
        padding: 20px;
    }

    .present__banner-form {
        display: block;
    }

    .present__banner-form-item {
        width: 100%;
        margin-bottom: 10px;
    }

    .feedback__content {
        padding: 25px;
    }

    .feedback__form {
        display: block;
    }

    .feedback__form .input__prem {
        width: 100%;
        margin-bottom: 10px;
    }

    .feedback__form .btn__prem {
        width: 100%;
    }

    .feedback,
    .cycle,
    .present__banner {
        margin-bottom: 40px;
    }

    .footer__row {
        flex-wrap: wrap;
    }

    .footer__col {
        width: 48%;
    }

    .footer__col:first-child {
        display: none;
    }

    .footer__col:first-child,
    .footer__col {
        margin-right: 0;
    }

    .intro__content h1 {
        font-size: 38px;
    }

    .cars__box-title {
        font-size: 28px;
    }

    .car__item-price-credit {
        padding-left: 15px;
    }

    .car__item-price .car__item-price-inner span,
    .car__item-price-credit .car__item-price-inner span {
        font-size: 20px;
    }

    .intro::before {
        left: -320px;
        top: -295px;
    }
}

@media (max-width: 450px) {
    .footer__title, .footer__des, .footer__phone, .footer__contact .btn__item {
        width: 100%;
    }
}

/*--- index.html ---*/

/* models.html */

.section__title {
    text-align: center;
    font-size: 64px;
    font-weight: 700;
    margin-bottom: 40px;
    margin-top: 40px;
}

.models__list {
    background-color: #FCFCFC;
    padding: 100px 0px 180px 0px;
}

.models__inner .cars__box {
    margin-bottom: 64px;
}

.feedback__marg {
    margin-top: -200px;
}

.cars__box-title-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 25px;
    margin-bottom: 25px;
    border-bottom: 1px solid #E0E0E0;
}

.cars__box-title-row .cars__box-title {
    border: none;
    padding-bottom: 0;
    margin-bottom: 0;
}

.car__box-sort {
    display: flex;
    align-items: center;
}

.car__box-sort-des {
    margin-right: 16px;
}

.car__box-sort-form {
    width: 160px;
}

.select2-container--default .select2-selection--single .select2-selection__rendered {
    color: #000;
    font-weight: 500;
    line-height: 56px;
    padding: 0px 25px;
    border: 1px solid grey;
    border-radius: 50px;
}

.select2-container--default .select2-selection--single {
    height: 56px;
    border: none;
    background-color: #fff;
}

.select2-container--default .select2-selection--single .select2-selection__arrow {
    height: 56px;
    right: 20px;
}

.select2-container--default .select2-selection--single .select2-selection__arrow b {
    border: solid #F0E343;
    border-width: 0 2px 2px 0;
    display: inline-block;
    padding: 3px;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
    top: 26px;
    margin-top: -5px;
}
.select2-container--default.select2-container--open .select2-selection--single .select2-selection__arrow b {
    border: solid #F0E343;
    border-width: 0 2px 2px 0;
    display: inline-block;
    padding: 3px;
    top: 27px;
    -webkit-transform: rotate(-135deg);
    -ms-transform: rotate(-135deg);
    transform: rotate(-135deg);
}

.select2-container--default .select2-results__option--highlighted.select2-results__option--selectable {
    background-color: var(--color-prem);
    color: #000;
}

@media (max-width: 970px) {
    .page-main {
        padding-top: 80px !important;
    }

    .main {
        padding-top: 0;
    }

    .section__title {
        font-size: 48px;
        margin-top: 40px;
    }

    .models__list {
        padding: 40px 0px 180px 0px;
    }
}

@media (max-width: 780px) {
    .cars__box-title-row {
        display: block;
    }

    .cars__box-title-row .cars__box-title {
        margin-bottom: 10px;
    }
}

@media (max-width: 590px) {
    .section__title {
        font-size: 38px;
    }
}

/*--- models.html ---*/

/* credit.html */

.wrapper {
    padding: 64px 0px 150px 0px;
    background-color: #FCFCFC;
}

.credit__inner {
    display: flex;
    align-items: start;
    justify-content: space-between;
}

.credit__form,
.credit__content {
    width: 48%;
}

.credit__form-box {
    margin-bottom: 30px;
}

.credit__form-box h3 {
    font-size: 40px;
    font-weight: 700;
    color: #E0E0E0;
    margin-bottom: 30px;
}

.credit__form-item {
    width: 48%;
}

.credit__form-item p {
    margin-left: 24px;
    font-weight: 700;
    margin-bottom: 8px;
}

.credit__form-row {
    display: flex;
    justify-content: space-between;
    align-items: end;
}

.credit__form-box .credit__form-item {
    margin-bottom: 30px;
}

.credit__form-item .input__prem {
    width: 100%;
    padding: 0px 24px;
}

.credit__content > img {
    width: 100%;
    margin-bottom: 10px;
}

.credit__content h3 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 16px;
}

.credit__content p {
    margin-bottom: 5px;
}



.credit__content p strong {
    font-weight: 700;
}

.credit__content p span {
    color: #C4C4C4;
}

.credit__price {
    margin: 32px 0px;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
}

.credit__price-inner {
    width: 48%;
}

.credit__price-inner p {
    margin-bottom: 8px;
}

.credit__price-to,
.credit__price-do {
    font-size: 32px;
}

.credit__price-do {
    font-weight: 700;
}

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

.credit__content-row .btn__prem {
    font-size: 16px;
}

.credit__content-row .btn__prem,
.credit__content-des {
    width: 48%;
}

.credit__content-des {
    font-size: 12px;
    font-weight: 600;
    color: #C4C4C4;
}

.wrapper .present__banner {
    margin-top: 0;
}

.credit__list {
    margin-bottom: 70px;
}

.credit__list-inner {
    display: flex;
    align-items: start;
    justify-content: space-between;
}

.credit__list-item {
    padding: 64px;
    background-color: #fff;
    border-radius: 32px;
    width: 48%;
    height: 470px;
}

.credit__list-item h3 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 32px;
}

.credit__list-item li  {
    margin-bottom: 32px;
    display: flex;
    align-items: center;
}

.credit__list-item li::before {
    content: '';
    min-width: 8px;
    min-height: 8px;
    border-radius: 100%;
    background-color: var(--color-prem);
    margin-right: 16px;
}

.credit__list-item > p {
    font-size: 12px;
    font-weight: 400;
    color: #C4C4C4;
    line-height: 1.4;
}

@media (max-width: 1280px) {
    .credit__inner {
        display: block;
    }

    .credit__form, .credit__content {
        width: 100%;
    }

    .credit {
        margin-bottom: 40px;
    }
}

@media (max-width: 970px) {
    .wrapper .banks {
        margin-bottom: 80px;
    }

    .v__news-cards {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 570px) {
    

    .v__news-cards {
        grid-template-columns: repeat(1, 1fr);
    }
}

@media (max-width: 770px) {
    .credit__list-inner {
        display: block;
    }

    .credit__list-item {
        width: 100%;
        margin-bottom: 20px;
    }

    .credit-comp-grid {
        grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
    }
}

@media (max-width: 590px) {
    .wrapper {
        padding: 35px 0px 150px 0px;
    }

    .credit__form-row {
        display: block;
    }

    .credit__form-item {
        width: 100%;
    }

    .credit__price {
        display: block;
    }

    .credit__price-inner {
        margin-bottom: 10px;
        width: 100%;
    }

    .credit__content-row {
        display: block;

    }

    .credit__content-row .btn__prem {
        margin-bottom: 10px;
    }

    .credit__form-box h3 {
        font-size: 24px;
    }

    .credit__list-item {
        padding: 30px;
        height: auto;
    }

    .credit__content-row .btn__prem, .credit__content-des {
        width: 100%;
    }
}

/*--- credit.html ---*/

/* services.html */

.wrapper .cycle__inner{
    padding: 0 100px 60px 100px;
}

/*--- services.html ---*/

/* contact.html */

.contact {
    margin-bottom: 290px;
}

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

.contact__content {
    width: 30%;
    padding: 64px;
    background-color: #fff;
    border-radius: 32px;
    height: 415px;
}

.map {
    width: 69%;
    border-radius: 32px;
}

.map iframe {
    border-radius: 32px;
}

.contact__item {
    margin-bottom: 32px;
}

.contact__item p {
    margin-bottom: 4px;
}

.contact__item p span {
    font-weight: 700;
}

.contact__item a {
    text-decoration: none;
    color: #000;
    font-size: 24px;
    font-weight: 700;
}

.contact__content .btn__prem {
    width: 100%;
}

@media (max-width: 1280px) {
    .contact__inner {
        display: block;
    }

    .contact__content {
        width: 100%;
        margin-bottom: 10px;
    }

    .map {
        width: 100%;
    }

    .contact__content .btn__prem {
        width: auto;
        padding: 0px 40px;
    }
}

@media (max-width: 570px) {
    .contact__content {
        padding: 30px;
        height: auto;
    }
}

/*--- contact.html ---*/

.popup {

    border-radius: 30px;
    overflow: unset;
}

.fancybox-content {
    padding: 0;
}

.feedback__thx {
    text-align: center;
    padding: 60px;
}

.feedback__thx h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 32px;
}

.feedback__popup {
    position: relative;
}

.feedback__popup-content {
    overflow: hidden;
    position: relative;
    padding: 75px;
}

.feedback__popup-content::after {
    content: '';
    width: 400px;
    height: 400px;
    position: absolute;
    left: -100px;
    bottom: -115px;
    background-color: var(--color-prem);
    z-index: 0;
    border-radius: 100%;
}

.feedback__popup-text {
    width: 70%;
    margin-left: auto;
    position: relative;
    z-index: 3;
}

.feedback__popup-text h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 15px;
}

.feedback__popup-text p {
    font-size: 14px;
    margin-bottom: 30px;
}

.feedback__popup-text p span {
    font-weight: 700;
}

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

.feedback__popup-form-item {
    width: 48%;
}

.feedback__popup-form-item .input__prem,
.feedback__popup-form-item .btn__prem {
    width: 100%;
}

.feedback__popup-form-item .input__prem {
    border: 1px solid #E5E5E5;
}

.feedback__popup-img {
    position: absolute;
    z-index: 1;
    bottom: 0;
    left: -40px;
}

.offer__popup-content {
    padding: 60px;
    overflow: hidden;
    position: relative;
    border-radius: 30px;
}

.offer__popup-content::after {
    content: '';
    width: 600px;
    height: 600px;
    position: absolute;
    right: -300px;
    top: 50%;
    transform: translate(0, -50%);
    background-color: var(--color-prem);
    z-index: 0;
    border-radius: 100%;
}

.offer__popup-text {
    position: relative;
    z-index: 3;
}

.offer__popup-text h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 4px;
    line-height: 1.5;
}

.offer__popup-text p {
    font-size: 24px;
    margin-bottom: 32px;
}

.offer__popup-text form {
    display: block;
}

.offer__popup-text .input__prem {
    width: 240px;
    margin-bottom: 10px;
    border: 1px solid #E5E5E5;
}
.offer__popup-text .btn__prem {
    padding: 0px 40px;
    font-size: 16px;
}

.offer__popup-img {
    position: absolute;
    z-index: 1;
    bottom: 0;
    right: -50px;
    width: 480px;
}

.request__popup {
    padding: 77px 65px;
    border-radius: 30px;
    overflow: hidden;
}

.request {
    overflow: hidden;
}

.request__popup::after {
    content: '';
    width: 400px;
    height: 400px;
    position: absolute;
    right: -200px;
    top: 50%;
    transform: translate(0, -50%);
    background-color: var(--color-prem);
    z-index: 0;
    border-radius: 100%;
}

.request__popup > * {
    position: relative;
    z-index: 3;
}

.request__popup-img {
    position: absolute;
    z-index: 2;
    right: 0;
    top: 50%;
    transform: translate(0, -50%);
}

.request__popup h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 8px;
}

.request__popup p {
    margin-bottom: 30px;
    font-weight: 600;
}

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

.request__popup form .input__prem {
    width: 240px;
    margin-right: 15px;
    border: 1px solid #E5E5E5;
}

.request__popup form .btn__prem {
    padding: 0px 40px;
    font-size: 16px;
}

@media (max-width: 770px) {
    .request__popup-img {
        right: -150px;
    }
}

@media (max-width: 890px) {
    .popup {
        width: 100% !important;
    }
}

@media (max-width: 800px) {
    .offer__popup-img {
        position: static;
        width: 100%;
    }

    .offer__popup-text p {
        margin-bottom: 15px;
    }
}


@media (max-width: 660px) {
    .popup {
        width: 100% !important;
    }

    .request__popup {
        padding: 30px;
    }

    .request__popup form {
        display: block;
    }

    .request__popup form .input__prem {
        margin-bottom: 10px;
    }
}

@media (max-width: 630px) {
    .feedback__popup-content {
        padding: 40px;
    }

    .feedback__popup-img {
        display: none;
    }

    .feedback__popup-text {
        width: 100%;
    }

    .feedback__popup-form {
        display: block;
    }

    .feedback__popup-form-item {
        width: 100%;
        margin-bottom: 10px;
    }
}

@media (max-width: 600px) {
    .offer__popup-content {
        padding: 40px;
    }

    .offer__popup-text h2 {
        font-size: 28px;
    }

    .request__popup-img {
        top: auto;
        transform: translate(0, 0);
        bottom: -120px;
    }

    .offer__popup-text .input__prem,
    .offer__popup-text .btn__prem {
        width: 100%;
    }

    .offer__popup-text h2 {
        font-size: 20px;
    }

    .offer__popup-text p {
        font-size: 18px;
    }
}
