/***************Glolbal***************/
* {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

.page {
    height: 100%;
}

.page-body {
    position: relative;
    min-height: 100%;
    font-family: 'Renault Life Bold';
    font-size: 16px;
    line-height: 20px;
    color: black;
    /* display: -ms-grid; */
    /* display: grid; */
    -ms-grid-rows: -webkit-min-content 1fr -webkit-min-content;
    -ms-grid-rows: min-content 1fr min-content;
    grid-template-rows: -webkit-min-content 1fr -webkit-min-content;
    grid-template-rows: min-content 1fr min-content;
}

.container {
    max-width: 1300px;
    margin: 0 auto;
}

ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

a {
    text-decoration: none;
    cursor: pointer;
}

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

p {
    margin: 0;
    padding: 0;
}

img {
    max-width: 100%;
    height: auto;
}

.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    margin: -1px;
    border: 0;
    padding: 0;
    white-space: nowrap;
    -webkit-clip-path: inset(100%);
    clip-path: inset(100%);
    clip: rect(0 0 0 0);
    overflow: hidden;

    left: -43px;
    top: 10px;
}

.mobile-active {
    display: none;
}

.tablet-active {
    display: none;
}

.desktop-active {
    display: block;
}

/***************Objects***************/
.second-heading {
    margin: 0 0 25px 0;
    font-family: 'Renault Life Regular';
    font-weight: 700;
    text-transform: uppercase;
    font-size: 45px;
    line-height: 50px;
}

.btn {
    width: 250px;
    height: 44px;
    text-transform: uppercase;
    -webkit-box-shadow: 5px 7px 10px rgba(241, 199, 19, 0.22);
    box-shadow: 5px 7px 10px rgba(241, 199, 19, 0.22);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.filled-btn {
    position: relative;
    z-index: 0;
    overflow: hidden;
    background: -o-linear-gradient(left, #FBAB18 0%, #F0C713 100%);
    background: -webkit-gradient(linear, left top, right top, from(#FBAB18), to(#F0C713));
    background: linear-gradient(90deg, #FBAB18 0%, #F0C713 100%);
}

.outlined-btn {
    position: relative;
    z-index: 1;
    border: 2px solid #FBAB18;
    background-color: transparent;
    -webkit-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease;
}

.filled-btn::after {
    background: #fff;
    content: "";
    width: 50px;
    height: 155px;
    left: -75px;
    opacity: .2;
    position: absolute;
    top: -50px;
    -webkit-transform: rotate(35deg);
    -ms-transform: rotate(35deg);
    transform: rotate(35deg);
    -webkit-transition: all 550ms cubic-bezier(0.19, 1, 0.22, 1);
    -o-transition: all 550ms cubic-bezier(0.19, 1, 0.22, 1);
    transition: all 550ms cubic-bezier(0.19, 1, 0.22, 1);
}

.filled-btn:hover.filled-btn::after {
    left: 120%;
    -webkit-transition: all 550ms cubic-bezier(0.19, 1, 0.22, 1);
    -o-transition: all 550ms cubic-bezier(0.19, 1, 0.22, 1);
    transition: all 550ms cubic-bezier(0.19, 1, 0.22, 1);
}

.outlined-btn::before {
    position: absolute;
    z-index: -1;
    top: 0;
    left: unset;
    right: 0;
    content: '';
    width: 0%;
    height: 100%;
    background-color: #FBAB18;
    -webkit-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease;
}

.outlined-btn:hover::before {
    position: absolute;
    z-index: -1;
    top: 0;
    left: 0;
    right: 0;
    content: '';
    width: 100%;
    height: 100%;
    background-color: #FBAB18;
}

.standart-input {
    width: 100%;
    outline: none;
    text-align: center;
    background-color: transparent;
    border: none;
    border-bottom: 4px solid #FBAB18;
}

::-webkit-input-placeholder {
    color: #000;
    opacity: 0.5;
    font-family: 'Proxima Nova Regular';
    font-weight: 400;
    text-transform: uppercase;
    text-align: center;
}

::-moz-placeholder {
    color: #000;
    opacity: 0.5;
    font-family: 'Proxima Nova Regular';
    font-weight: 400;
    text-transform: uppercase;
    text-align: center;
}

/* Firefox 19+ */
:-moz-placeholder {
    color: #000;
    opacity: 0.5;
    font-family: 'Proxima Nova Regular';
    font-weight: 400;
    text-transform: uppercase;
    text-align: center;
}

/* Firefox 18- */
:-ms-input-placeholder {
    color: #000;
    opacity: 0.5;
    font-family: 'Proxima Nova Regular';
    font-weight: 400;
    text-transform: uppercase;
    text-align: center;
}

.shadow {
    visibility: hidden;
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: black;
    opacity: 0;
    -webkit-transition: opacity .8s ease;
    -o-transition: opacity .8s ease;
    transition: opacity .8s ease;
    z-index: 99;
}

.active-shadow {
    visibility: visible;
}

/***************Header***************/
.main-header {
    width: 100%;
}

.main-banner-swiper {
        /* min-height: 900px; */
        width: 100%;
}

.main-header-fixed {
    width: 100%;
    height: 76px;
    background-color: #fff;
    position: fixed;
    top: 0;
    z-index: 98;
}

.header-container {
    height: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.mobile-header {
    display: none;
}

.header-start {
    max-height: 50px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.header-logo__wrapper {
    margin-right: 31px;
}

.header-logo-img {
    max-height: 50px;
}

.header-text {
    font-family: 'Proxima Nova Regular';
    text-transform: uppercase;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
}

.header-phone {
    font-family: 'Proxima Nova Semi-Bold';
    color: black;
    -webkit-transition: color .4s ease;
    -o-transition: color .4s ease;
    transition: color .4s ease;
}

.header-phone:hover {
    color: #FBAB18;
    -webkit-transition: color .4s ease;
    -o-transition: color .4s ease;
    transition: color .4s ease;
}

.header-credit-btn__wrapper {
    margin-right: 12%;
}

.header-feedback {
    text-transform: uppercase;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.header-feedback-text {
    color: #000;
    -webkit-transition: color .4s ease;
    -o-transition: color .4s ease;
    transition: color .4s ease;
}

.header-feedback:hover .header-feedback-text {
    color: #FBAB18;
    -webkit-transition: color .4s ease;
    -o-transition: color .4s ease;
    transition: color .4s ease;
}

.header-feedback-img {
    position: relative;
    top: 5px;
}

/***************Main***************/
.main-content {
    padding-top: 76px;
    padding-bottom: 100px;
}

.main-banner {
    margin-bottom: 50px;
    min-height: 900px;
    width: 100%;
    background-image: url(../img/main-banner.webp);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.main-banner._two {
    background-image: url(../img/main-banner2.webp);
}

.main-banner__container {
    padding-top: 100px;
    padding-bottom: 7px;
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.main-banner-button__wrapper .outlined-btn {
    display: none;
}

.banner-bottom {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
}

.main-banner-heading {
    max-width: 1250px;
    margin-bottom: 40px;
    color: #fff;
    text-transform: uppercase;
    font-family: 'Renault Life Bold';
    font-size: 48px;
    line-height: 54px;
}

.main-banner-heading.desk_hide {
    display: none;
}

.main-banner._two .main-banner-heading {
    color: #090B09;
    text-align: left;
    font-weight: 400;
}

.main-banner-heading-sub {
    font-size: 24px;
    line-height: 26px;
    text-transform: initial;

    margin-top: 10px;
}

.main-banner-heading-sub br {
    display: none;
}

.banner-feedback {
    position: relative;
    margin-bottom: 30px;
    color: #fff;
    font-size: 20px;
    line-height: 22px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
}

.banner-feedback.desk_hide {
    display: none;
}

/* .banner-feedback::before {
    content: "";
    width: 100%;
    height: 6px;
    position: absolute;
    top: -17px;
    left: 0;
    background-image: url(../img/icons/line.svg);
    background-repeat: no-repeat;
    background-size: contain;
  } */
.banner-tel-link {
    color: #FBAB18;
    -webkit-transition: color .4s ease;
    -o-transition: color .4s ease;
    transition: color .4s ease;
}

.banner-tel-link:hover {
    color: #dfdfdf;
    -webkit-transition: color .4s ease;
    -o-transition: color .4s ease;
    transition: color .4s ease;
}

.timer__wrapper {
    margin-right: 100px;
}

.timer-heading {
    margin-bottom: 25px;
    color: #fff;
    font-family: 'PF DinDisplay Pro Regular';
    font-size: 30px;
    line-height: 32px;
}

.main-banner._two .timer-heading {
    text-align: left;
}

.mobile-banner-bottom {
    display: none;
}

.cars-heading__wrapper {
    position: relative;
    margin-left: 22%;
    margin-bottom: 80px;
    text-transform: uppercase;
    font-family: 'PF DinDisplay Pro Bold';
    font-size: 40px;
    line-height: 50px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
}

.cars-heading__wrapper::before {
    content: "";
    position: absolute;
    left: -40px;
    width: 17px;
    height: 100%;
    background-image: url(../img/text-line.png);
    background-repeat: no-repeat;
    background-size: cover;
}

.cars-heading__bottom {
    background: -o-linear-gradient(left, #fbab18 0%, rgb(239 208 31) 100%);
    background: -webkit-gradient(linear, left top, right top, from(#fbab18), to(rgb(239 208 31)));
    background: linear-gradient(90deg, #fbab18 0%, rgb(239 208 31) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.cars {
    /* display: none; */
    padding-bottom: 100px;
}

.car {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.car+.car {
    margin-top: 50px;
}

.car-revert {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
    -ms-flex-direction: row-reverse;
    flex-direction: row-reverse;
}

.car-gradient__wrapper {
    width: 45%;
    margin-right: 15%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.car-revert .car-gradient__wrapper {
    margin-right: 0;
    margin-left: 18%;
}

.car-gradient {
    position: relative;
    width: 100%;
    height: 70%;
    background-repeat: no-repeat;
    background-size: cover;
    -webkit-box-shadow: 15px 0px 5px 0px rgba(238, 169, 2, 0.65);
    box-shadow: 15px 0px 5px 0px rgba(238, 169, 2, 0.65);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.car-revert .car-gradient {
    -webkit-box-shadow: -15px 0px 5px 0px rgba(238, 169, 2, 0.65);
    box-shadow: -15px 0px 5px 0px rgba(238, 169, 2, 0.65);
}

.duster-gradient {
    background-image: url(../img/duster_bg.webp);
}

.kaptur-gradient {
    background-image: url(../img/kaptur_bg.png);
}

.sandero-gradient {
    background-image: url(../img/sandero_bg.png);
}

.sandero-stepway-gradient {
    background-image: url(../img/sandero-stepway_bg.png);
}

.logan-gradient {
    background-image: url(../img/logan_bg.png);
}

.logan-stepway-gradient {
    background-image: url(../img/logan-stepway_bg.png);
}

.arkana-gradient {
    background-image: url(../img/arkana_bg.png);
}

.koleos-gradient {
    background-image: url(../img/koleos_bg.png);
}

.car-revert .car-gradient {
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
}

.gradient-text {
    font-family: 'Renault Life Bold';
    font-size: 120px;
    line-height: 120px;
    color: #fff;
    text-transform: uppercase;
    opacity: 0.15;
}

.car-revert .gradient-text {
    text-align: end;
}

.car-img {
    max-width: 630px;
    position: absolute;
    /* right: -48%; */
    right: -39%;
    /* top: -11%; */
    top: 0;
    z-index: 10;
}

.car-revert .car-img {
    right: 0;
    left: -32%;
    top: 10px;
}

.card {
    position: relative;
}

.car-card__wrapper {
    position: relative;
    top: -30px;
    z-index: 5;
}

.car-card {
    width: 420px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
}

.car-revert .car-card {
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
}

.card-heading {
    font-family: 'Renault Life Bold';
    font-size: 50px;
    line-height: 55px;
    text-transform: uppercase;
    color: black;
    background: -o-linear-gradient(left, #fbab18 0%, rgb(239 208 31) 100%);
    background: -webkit-gradient(linear, left top, right top, from(#fbab18), to(rgb(239 208 31)));
    background: linear-gradient(90deg, #fbab18 0%, rgb(239 208 31) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.card-heading__mobile {
    display: none;
    font-size: 46px;
    line-height: 52px;
}

.card__inner {
    /* padding: 31px 18px 15px; */
    padding: 31px 0 15px;
    background-color: #f2f2f2;
    -webkit-box-shadow: 0px 0px 44px 11px rgba(0, 0, 0, 0.13);
    box-shadow: 0px 0px 44px 11px rgba(0, 0, 0, 0.13);
}

.card__container {
    padding: 0 15px;
}

.car-card .card__inner {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    flex-direction: column;
    align-items: center;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
}

.car-card .card__inner .complictation-cost._red {
    padding: 0 18px 0 36px;
}

.car-revert .card__inner {
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
}

.car-cost {
    height: 50px;
    padding: 0 25px;
    margin-bottom: 13px;
    font-family: 'PF DinDisplay Pro Bold';
    font-size: 40px;
    line-height: 40px;
    font-weight: bold;
    background-image: url(../img/gradient1.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.car-options {
    position: relative;
    margin-bottom: 17px;
    margin-left: 30px;
}

.car-options-item {
    position: relative;
    font-size: 0.85em;
    margin-top: 5px;
}

.car-options-item::before {
    content: "";
    position: absolute;
    left: -30px;
    width: 20px;
    height: 20px;
    background: -o-linear-gradient(left, #FBAB18 0%, #F0C713 100%);
    background: -webkit-gradient(linear, left top, right top, from(#FBAB18), to(#F0C713));
    background: linear-gradient(90deg, #FBAB18 0%, #F0C713 100%);
    border-radius: 5px;
}

.car-options-item+.car-options-item {
    margin-top: 5px;
}

.card-buttons__wrapper .btn+.btn {
    margin-top: 9px;
}

.heading__wrapper {
    margin: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.stock-menu__wrapper {
    width: 100%;
    height: 72px;
    position: relative;
    margin-bottom: 20px;
    background-color: #f2f2f2;
}

.stock-menu__container {
    height: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.stock-menu {
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.stock-menu-item {
    height: 100%;
}

.stock-link {
    padding: 0 13px;
    height: 100%;
    text-transform: uppercase;
    color: black;
    font-weight: 600;
    text-align: center;
    background: none;
    background-repeat: no-repeat;
    -webkit-transition: all .4s ease;
    -o-transition: all .4s ease;
    transition: all .4s ease;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.stock-link:hover {
    background: -o-linear-gradient(left, #FBAB18 0%, #F0C713 100%);
    background: -webkit-gradient(linear, left top, right top, from(#FBAB18), to(#F0C713));
    background: linear-gradient(90deg, #FBAB18 0%, #F0C713 100%);
    -webkit-transition: all .4s ease;
    -o-transition: all .4s ease;
    transition: all .4s ease;
}

.active-link {
    background: -o-linear-gradient(left, #FBAB18 0%, #F0C713 100%);
    background: -webkit-gradient(linear, left top, right top, from(#FBAB18), to(#F0C713));
    background: linear-gradient(90deg, #FBAB18 0%, #F0C713 100%);
}

.stock-menu-item.active-link a {
    background: -o-linear-gradient(left, #FBAB18 0%, #F0C713 100%);
    background: -webkit-gradient(linear, left top, right top, from(#FBAB18), to(#F0C713));
    background: linear-gradient(90deg, #FBAB18 0%, #F0C713 100%);
}

.credit {
    margin-bottom: 120px;
}

.credit-car-heading {
    font-size: 45px;
    line-height: 50px;
}

.credit-car-img__wrapper {
    width: 70%;
    margin-right: 20px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.credit-car-img {
    width: 100%;
}

.credit-car__container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.credit-card,
.feedback-card {
    max-width: 310px;
}

.credit-card .card__inner {
    padding: 35px 28px;
}

.credit-cost {
    margin-bottom: 18px;
    font-size: 22px;
    line-height: 30px;
    display: inline-block;
}

.feedback-name__wrapper {
    margin-bottom: 13px;
}

.feedback-tel__wrapper {
    margin-bottom: 10px;
}

.feedback-btn__wrapper {
    margin-bottom: 13px;
}

.agreement__wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.agreement-label {
    position: relative;
    font-family: 'Proxima Nova Regular';
    font-weight: 400;
    left: 15px;
    font-size: 13px;
    line-height: 14px;
    cursor: pointer;
}

.checkmark {
    position: absolute;
    left: -43px;
    top: 2px;
    height: 25px;
    width: 25px;
    background-color: #fff;
    border-radius: 5px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.checkmark::before {
    content: "";
    width: 18px;
    height: 15px;
    background-image: url(../img/icons/checkbox_checked.svg);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    opacity: 0;
    -webkit-transition: opacity .2s ease;
    -o-transition: opacity .2s ease;
    transition: opacity .2s ease;
}

.agreement-label input:checked~.checkmark::before {
    opacity: 1;
    -webkit-transition: opacity .2s ease;
    -o-transition: opacity .2s ease;
    transition: opacity .2s ease;
}

.select-lists__wrapper {
    margin-bottom: 32px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.dropbtn {
    width: 250px;
    height: 44px;
    position: relative;
    padding: 0 20px;
    background-color: transparent;
    font-family: 'Proxima Nova Regular';
    font-weight: 400;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    color: #000;
}

.dropdown::after {
    content: "";
    position: absolute;
    top: 19px;
    right: 16px;
    width: 7px;
    height: 6px;
    background-image: url(../img/icons/down.svg);
    background-repeat: no-repeat;
    background-size: cover;
}

.dropdown+.dropdown {
    margin-left: 20px;
}

.dropbtn::before {
    position: absolute;
    content: '';
    width: 0;
    height: 100%;
    background-color: #FBAB18;
    top: 0;
    left: 50%;
    z-index: -1;
    -webkit-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease;
}

.dropbtn:hover::before {
    position: absolute;
    content: '';
    width: 100%;
    height: 100%;
    background-color: #FBAB18;
    top: 0;
    left: 0%;
    z-index: -1;
    -webkit-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease;
}

.dropbtn::after {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    z-index: -2;
    background-color: #f2f2f2;
}

.dropdown {
    position: relative;
    display: inline-block;
}

.dropdown-content {
    display: none;
    width: 100%;
    position: absolute;
    top: 54px;
    background-color: #f2f2f2;
    border: 2px solid #FBAB18;
    overflow: auto;
    -webkit-box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
    box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
    z-index: 5;
}

.dropdown-item {
    font-family: 'Proxima Nova Regular';
    font-weight: 400;
    color: black;
    padding: 8px 16px;
    text-decoration: none;
    display: block;
}

.dropdown-item:hover {
    background-color: #c5c5c5;
}

.show-list {
    display: block;
}

.car-result__wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.car-result-list {
    width: 100%;
}

.car-result__wrapper .showMore {
    margin-top: 25px;
}

.car-result-item {
    position: relative;
    padding-bottom: 12px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
}


.car-result-item+.car-result-item {
    margin-top: 45px;
}

.car-result-item::after {
    content: "";
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 4px;
    background: #fbab18;
    background: -o-linear-gradient(left, #fbab18 0%, #f0c713 100%);
    background: -webkit-gradient(linear, left top, right top, from(#fbab18), to(#f0c713));
    background: linear-gradient(90deg, #fbab18 0%, #f0c713 100%);
}

.car-img__wrapper {
    max-width: 300px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.car-characteristics__wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    display: none;
}

.car-item-buttons__wrapper{
    width: 50%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.complictation-cost {
    width: 255px;
    height: 60px;
    margin-bottom: 25px;
    /* padding: 0 25px; */
    padding: 0 36px;
    font-family: 'PF DinDisplay Pro Bold';
    font-weight: bold;
    /* font-size: 30px; */
    /* line-height: 32px; */
    font-size: 25px;
    line-height: 27px;
    background-image: url(../img/gradient1.png);
    /* background-image: url(../img/eq-line.png); */
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    flex-direction: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    align-items: flex-end;
}

.complictation-cost._red {
    background-image: url(../img/eq-line2.png);
    align-items: flex-start;
}

.complictation-cost._red .complictation-old-cost {
    display: flex;
    align-items: center;
    gap: 3px;

    text-decoration: none;
}

.complictation-cost._red .complictation-old-cost .complictation-cost_credit {
    margin-bottom: -8px;

    cursor: pointer;
}

.select2-search--dropdown {
    display: none;
}

.select2-container--open .select2-dropdown--below {
    margin-top: 10px;

    border-radius: 0;

    border: 2px solid #FBAB18;
}

.select2-results__option {
    font-family: 'Proxima Nova Regular';
    font-weight: 400;
    color: black;
    padding: 8px 16px;
}

.select2-container--default .select2-results__option--highlighted.select2-results__option--selectable {
    background-color: #c5c5c5;
    color: #000;
}

.complictation-old-cost {
    margin: 0 0 3px auto;
    font-family: Arial, Helvetica, sans-serif;
    /* font-size: 24px; */
    /* line-height: 26px; */
    color: rgba(50, 50, 50, 1);
    font-size: 11px;
    line-height: 13px;
    font-weight: 400;
    text-decoration: line-through;
    display: inline-block;
}

.car-item-buttons__wrapper .btn+.btn {
    margin-top: 10px;
}

.car-name {
    text-transform: uppercase;
    display: inline-block;
}

.car-name+.complictation-old-cost,
.car-name+.complictation-old-cost+.complictation-cost {
    display: none;
}

.engine {
    margin-bottom: 10px;
    font-family: 'Proxima Nova Regular';
    font-weight: 400;
    display: inline-block;
}

/***************Footer***************/
.main-footer {
    position: relative;
}

.feedback-card__wrapper {
    position: absolute;
    top: 10%;
    left: 20%;
}

.feedback-card .card__inner {
    padding: 27px;
}

.feedback-head__wrapper {
    margin-bottom: 35px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    text-align: center;
}

.feedback-card .feedback-btn__wrapper {
    margin-bottom: 0;
}

.feedback-card .agreement__wrapper {
    margin-bottom: 13px;
}

.feedback-img {
    min-height: 71px;
    margin-bottom: 12px;
}

.feedback-heading {
    font-family: 'Proxima Nova Regular';
    font-weight: 400;
    text-transform: uppercase;
    display: inline-block;
}

.map-image {
    min-height: 600px;
    background-image: url(../img/map.webp);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

.disclaimer {
    padding-top: 40px;
    padding-bottom: 40px;
    background-color: #f1f1f1;
}

.disclaimer p.hidden {
    display: none;
}

button.toggleDisclaimer {
    width: unset;
    margin: 0 auto 10px auto;
}

/***************Modals***************/
.modal {
    display: none;
    width: 600px;
    height: 500px;
    /* visibility: hidden;
    position: fixed;
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    z-index: 100;
    opacity: 0; */
    /* -webkit-transition: opacity .8s ease;
    -o-transition: opacity .8s ease;
    transition: opacity .8s ease; */
    background-image: url(../img/modal_bg.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;

    padding: 0;
}

.modal-cont {
       display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.fancybox__content>.f-button.is-close-btn {
    width: 28px;
    height: 28px;
    
    right: -28px;

    border-radius: 5px;

    opacity: 1;

    background: linear-gradient(90deg, #484848 0%, #797979 100%);
}

.active-modal {
    visibility: visible;
}

.feedback-card-modal {
    padding-top: 8%;
}

.modal .card__inner {
    color: #fff;
    background-color: transparent;
}

.modal-close {
    width: 28px;
    height: 28px;
    padding: 0;
    position: absolute;
    z-index: 105;
    top: -35px;
    right: -165px;
    border-radius: 5px;
    background: -o-linear-gradient(left, #484848 0%, #797979 100%);
    background: -webkit-gradient(linear, left top, right top, from(#484848), to(#797979));
    background: linear-gradient(90deg, #484848 0%, #797979 100%);
    -webkit-transform: matrix(-1, 0, 0, 1, 0, 0);
    -ms-transform: matrix(-1, 0, 0, 1, 0, 0);
    transform: matrix(-1, 0, 0, 1, 0, 0);
}

.modal-close::after {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background-image: url(../img/icons/modal_close.svg);
    background-repeat: no-repeat;
    background-position: center;
}

.modal.thanks-modal,
.modal.already-modal {
    background-image: url(../img/popUp/thanks-bg.jpg);
}

.thanks-modal .card,
.already-modal .card {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.thanks-modal .card__inner,
.already-modal .card__inner {
    color: #000;
    background-color: rgba(255, 255, 255, 0.5);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.thanks-modal .modal-close {
    right: -145px;
}

.already-modal .modal-close {
    right: -85px;
}

.modal-heading {
    margin: 0;
    font-size: 28px;
    line-height: 32px;
    text-align: center;
    display: block;
}

.thanks-modal .modal-heading,
.already-modal .modal-heading {
    margin-bottom: 20px;
}

.modal-text {
    margin: 0;
    font-size: 20px;
    line-height: 24px;
}

.modal .standart-input {
    color: #fff;
}

.modal .agreement__wrapper {
    margin-bottom: 13px;
}

.modal ::-webkit-input-placeholder {
    color: #fff;
}

.modal ::-moz-placeholder {
    color: #fff;
}

/* Firefox 19+ */
:-moz-placeholder {
    color: #fff;
}

/* Firefox 18- */
.modal :-ms-input-placeholder {
    color: #fff;
}

.opacity08-on {
    opacity: 0.8;
    -webkit-transition: opacity .8s ease;
    -o-transition: opacity .8s ease;
    transition: opacity .8s ease;
}

.opacity1-on {
    opacity: 1;
    -webkit-transition: opacity .8s ease;
    -o-transition: opacity .8s ease;
    transition: opacity .8s ease;
}

/*==========New style===========*/
.swiper {
    width: 100%;
    height: 100%;
}

.swiper-slide {
    text-align: center;
    font-size: 18px;
    background: #fff;
    /* Center slide text vertically */
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
}

.swiper-slide img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.card-buttons__wrapper-discount,
.car-item-buttons__wrapper-discount {
    text-align: center;
    font-size: 31px;
    line-height: 46px;
}

@media screen and (max-width: 1600px) {
    .car-revert .car-img {
            left: -31%;
    }
}

/***************Adaptive***************/
@media screen and (max-width: 1500px) {
    .container {
        max-width: 1200px;
    }

    .main-banner {
        min-height: 770px;
    }

    .main-banner__container {
        padding-top: 7%;
    }

    .cars-heading__wrapper {
        margin-left: 20%;
        margin-bottom: 55px;
        font-size: 35px;
        line-height: 40px;
    }

    .car-img {
        max-width: 530px;
        /* top: -33%; */
        top: -22%;
    }

    .car-gradient {
        height: 50%;
    }

    .gradient-text {
        font-size: 100px;
        line-height: 100px;
    }
}

@media screen and (max-width: 1200px) {
    .container {
        max-width: 900px;
    }

    .btn {
        width: 230px;
        height: 40px;
    }

    .second-heading {
        font-size: 40px;
        line-height: 45px;
    }

    .main-banner {
        min-height: 550px;
        margin-bottom: 70px;
    }

    /* .main-banner-swiper {
        min-height: 550px;
    } */

    .timer-heading {
        margin-bottom: 10px;
        font-size: 26px;
        line-height: 30px;
    }

    .main-banner-heading {
        font-size: 38px;
        line-height: 44px;
        margin-bottom: 20px;
    }

    .main-banner__container {
        padding-top: 6%;
        padding-bottom: 8px;
    }

    .gradient-text {
        font-size: 85px;
        line-height: 85px;
    }

    .cars-heading__wrapper {
        margin-left: 18%;
        margin-bottom: 45px;
        font-size: 30px;
        line-height: 35px;
    }

    .cars {
        padding-bottom: 35px;
    }

    .car-card__wrapper {
        margin-right: 20px;
    }

    .car-revert .car-card__wrapper {
        margin-right: 0;
        margin-left: 20px;
    }

    .car-gradient__wrapper {
        margin-right: 0;
        -webkit-box-flex: 1;
        -ms-flex-positive: 1;
        flex-grow: 1;
    }

    .car-revert .car-gradient__wrapper {
        margin-left: 10%;
    }

    .car-img__wrapper {
        max-width: 225px;
    }

    .car-name {
        max-width: 160px;
    }

    .card-heading {
        font-size: 40px;
        line-height: 45px;
    }

    .car-card {
        width: 360px;
    }

    .car-cost {
        height: 50px;
        font-size: 30px;
        line-height: 30px;
    }

    .car-img {
        /* max-width: 400px; */
        max-width: 358px;
        top: -6%;
        /* left: 43%; */
        left: 29%;
    }

    .car-revert .car-img {
        /* left: -31%; */
        left: -12%;
    }

    .car+.car {
        margin-top: 25px;
    }

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

@media screen and (max-width: 900px) {
    .container {
        max-width: 767px;
        padding: 0 10px;
    }

    .header-credit-btn__wrapper {
        display: none;
    }

    .main-banner-button__wrapper {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
    }

    .timer__wrapper {
        margin-right: 0;
    }

    .banner-bottom {
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
    }

    .timer-heading {
        font-size: 20px;
        line-height: 24px;
    }

    .banner-feedback {
        display: none;
        /* margin-bottom: 23px; */
    }

    .main-banner {
        min-height: 420px;
        margin-bottom: 60px;
    }

    .main-banner__container {
        padding-top: 5%;
    }

    .main-banner-heading {
        margin-bottom: 8px;
        font-size: 25px;
        line-height: 30px;
    }

    .cars-heading__wrapper {
        margin-left: 15%;
        font-size: 25px;
        line-height: 30px;
    }

    .car-card {
        width: 300px;
    }

    .card__inner {
        padding: 15px;
    }

    .car+.car {
        margin-top: 10px;
    }

    .car-img {
        top: -33%;
        left: 24%;
    }

    .car-gradient__wrapper {
        width: unset;
        margin-right: 0;
    }

    .car-revert .car-gradient__wrapper {
        -webkit-box-flex: 1;
        -ms-flex-positive: 1;
        flex-grow: 1;
        margin-left: 0;
    }

    .car-gradient {
        height: 40%;
        -webkit-box-shadow: none;
        box-shadow: none;
    }

    .car-revert .car-img {
        left: -7%;
    }

    .car-revert .car-gradient {
        -webkit-box-shadow: none;
        box-shadow: none;
    }

    .gradient-text {
        font-size: 60px;
        line-height: 65px;
    }

    .car-img__wrapper {
        max-width: 180px;
    }

    .car-name {
        max-width: 130px;
    }
}

@media screen and (max-width: 767px) {
    .container {
        max-width: none;
        padding: 0 15px;
    }
}

@media screen and (max-width: 767px) {
    .container {
        padding: 0 8px;
    }

    .is-compact .fancybox__content>.f-button.is-close-btn {
        background: none;
    }

    .card-buttons__wrapper-discount,
    .car-item-buttons__wrapper-discount {
        font-size: 23px;
        line-height: 32px;
    }

    .card-buttons__wrapper-discount {
        width: 250px;
    }

    .btn {
        width: 200px;
        height: 30px;
        font-size: 12px;
        line-height: 14px;
        color: #000;
    }

    .second-heading {
        font-size: 20px;
        line-height: 22px;
    }

    .main-content {
        padding-top: 85px;
        padding-bottom: 50px;
    }

    .main-header-fixed {
        height: 85px;
    }

    .header-container {
        display: none;
    }

    .mobile-header {
        height: 100%;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -ms-flex-pack: distribute;
        justify-content: space-around;
    }

    .logo {
        /* margin-bottom: 15px; */
        position: relative;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
    }

    /* .logo::before, */
    .logo::after {
        width: 7px;
        height: 100%;
        content: "";
        position: absolute;
        right: 12%;
        background-image: url(../img/text-line.png);
        background-repeat: no-repeat;
        background-size: cover;
    }

    .logo-text {
        font-family: 'Proxima Nova Regular';
        font-weight: 400;
        font-size: 16px;
        line-height: 18px;
        /* text-transform: uppercase; */
    }

    .logo img {
        max-width: 38px;
    }

    .header-phone {
        font-size: 14px;
        line-height: 16px;
    }

    .mobile-feedback {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -ms-flex-pack: distribute;
        justify-content: space-around;
    }

    .mobile-feedback .btn {
        -webkit-box-shadow: none;
        box-shadow: none;
    }

    .main-banner {
        min-height: 360px;
        /*480px*/
        margin-bottom: 20px;
        background-image: url(../img/main-banner_mob.webp);
        /* background-size: 158%;
      background-position: 33%; */
    }

    .banner-top {
        padding-top: 14px;
        height: 100%;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }

    /* .banner-bottom {
        display: none;
    } */

    .main-banner-heading {
        margin-top: 0;
        margin-bottom: 10px;
        text-align: center;
        /* font-size: 20px; */
        /* line-height: 22px; */
    }

    .main-banner {
        min-height: 600px;
    }

    /* .main-banner-button__wrapper .filled-btn {
        display: none;
    } */

    .main-banner-button__wrapper .outlined-btn {
        height: 35px;
        width: 60%;
        background-color: #fff;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
    }

    .mobile-banner-bottom {
        position: relative;
        margin-bottom: 40px;
        display: block;
    }

    .mobile-banner-bottom__inner {
        position: relative;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }

    .mobile-banner-feedback {
        position: relative;
        font-size: 16px;
        line-height: 18px;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
    }

    .timer__wrapper {
        width: 100%;
        /* position: absolute; */
        /* top: -120px; */
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
    }

    .timer-heading {
        font-size: 19px;
        line-height: 22px;
        font-weight: bold;
        text-align: center;

        position: relative;
        z-index: 1;
    }

    .timer-heading br {
        display: none;
    }

    .main-banner._two .timer-heading br {
        display: block;
    }

    .main-banner._two .main-banner-heading {
        text-align: center;
    }

    .main-banner-heading-sub {
        margin-top: 5px;

        text-align: center;
        font-size: 16px;
        line-height: 18px;
    }

    .banner-tel-link {
        color: #FBAB18;
    }

    .gradient-text {
        display: none;
    }

    .card__container {
        -webkit-box-flex: 1;
        -ms-flex-positive: 1;
        flex-grow: 1;
    }

    .car-characteristics__wrapper {
        width: 200px;
        -webkit-box-align: start;
        -ms-flex-align: start;
        align-items: flex-start;
    }

    .car-characteristics__wrapper .complictation-cost,
    .car-characteristics__wrapper .complictation-new-cost {
        display: none;
    }

    .car .car-card {
        width: 100%;
    }

    .car-name+.complictation-cost {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
    }

    .car-cost {
        position: relative;
        left: 43%;
        -webkit-transform: translateX(-50%);
        -ms-transform: translateX(-50%);
        transform: translateX(-50%);
        height: 50px;
        font-size: 34px;
        line-height: 42px;
    }

    .car {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }

    .car+.car {
        margin-top: 40px;
    }

    .car-gradient {
        min-height: 200px;
    }

    .car-img {
        max-width: 320px;
        left: 24px;
        right: unset;
        top: 4%;
    }

    .car-revert .car-img {
        left: 5%;
    }

    .car-card__wrapper {
        margin: 0 10px;
        top: 10px;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: end;
        -ms-flex-pack: end;
        justify-content: flex-end;
    }

    .car-revert .car-card__wrapper {
        margin: 0 10px;
    }

    .cars-heading__wrapper {
        max-width: 280px;
        margin-left: 15%;
        font-size: 15px;
        line-height: 18px;
    }

    .cars-heading__wrapper::before {
        left: -15px;
        width: 10px;
    }

    .card-heading__mobile {
        display: inline-block;
        text-align: center;
        text-transform: uppercase;
        background: -o-linear-gradient(left, #fbab18 0%, rgb(239 208 31) 100%);
        background: -webkit-gradient(linear, left top, right top, from(#fbab18), to(rgb(239 208 31)));
        background: linear-gradient(90deg, #fbab18 0%, rgb(239 208 31) 100%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
    }

    .car-card .card__inner {
        padding: 10px 0 10px 0;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;

        width: 100%;
    }

    .car-card .card__inner .complictation-cost {
        z-index: 0;

        padding: 0 17px 0 5px;
        align-items: center;
    }
    

    .car-card .card__inner .car-item-buttons__wrapper-flex {
        width: 100%;
        justify-content: center;
    }

    .car-card .card__inner .complictation-cost::before {
        left: 0;

         width: calc(100% + 6px);
    }

    .car-card .card__inner .complictation-cost._red {
        padding: 0 10px 0 20px;
    }

    .car-card .card__inner .complictation-cost._red::before {
        right: 0;

         width: calc(100% + 6px);
    }

    .stock-menu__wrapper {
        height: 50px;
    }

    .stock-menu__container {
        margin: 0;
        width: 393px;
        overflow-x: scroll;
        -webkit-overflow-scrolling: touch;
    }

    /* .stock-menu__wrapper::after {
      content: "";
      width: 10px;
      height: 10px;
      position: absolute;
      top: 20px;
      right: 6px;
      background-image: url(../img/icons/next.svg);
      background-repeat: no-repeat;
      background-position: center;
      background-size: contain;
    }*/
    .arrow-next {
        content: "";
        width: 20px;
        height: 20px;
        position: absolute;
        top: 14px;
        right: 0;
        background-image: url(../img/icons/next.svg);
        background-repeat: no-repeat;
        background-position: center;
        background-size: contain;
    }

    .swiper-button-prev {
        display: none;
    }

    .swiper-button-next-custom {
        content: "";
        width: 20px;
        height: 20px;
        position: absolute;
        top: 14px;
        right: 10px;
        background-image: url(../img/icons/next.svg);
        background-repeat: no-repeat;
        background-position: center;
        background-size: contain;
    }

    .swiper-button-next.swiper-button-disabled,
    .swiper-button-prev.swiper-button-disabled {
        opacity: 1;
    }

    .stock-link {
        padding: 0 10px;
        font-size: 12px;
        line-height: 16px;
    }

    .credit {
        margin-bottom: 30px;
    }

    .credit-card__wrapper {
        padding: 10px 0;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
    }

    .credit-car__container {
        position: relative;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
    }

    .car-card .card-heading {
        display: none;
    }

    .card-heading {
        font-size: 24px;
        line-height: 28px;
        display: inherit;
    }

    .credit-card {
        max-width: unset;
        width: 100%;
    }

    .credit-car-img__wrapper {
        width: 100%;
        margin-right: 0;
    }

    .credit-card .card__inner {
        padding: 10px 15px;
    }

    .feedback-card {
        max-width: 250px;
    }

    .credit-cost {
        margin-bottom: 6px;
        font-size: 16px;
        line-height: 20px;
    }

    .car-options {
        margin-left: 32px;
    }

    .car-options-item {
        font-size: 16px;
        line-height: 20px;
    }

    .car-result-item {
        /* padding: 0 5px 18px 5px; */
        padding: 0 0 18px;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
    }

    .car-result-item+.car-result-item {
        margin-top: 25px;
    }

    .car-name {
        max-width: none;
        width: 200px;
        margin-bottom: 13px;
        font-size: 16px;
        line-height: 20px;
        text-align: center;
    }

    .car-img__wrapper {
        max-width: 100%;
        margin-bottom: 10px;
    }

    .complictation-cost {
        margin-bottom: 5px;
        padding: 0 18px;
        /* font-size: 30px; */
        /* line-height: 38px; */
        font-size: 20px;
        line-height: 22px;
    }

    .car-name+.complictation-old-cost,
    .car-name+.complictation-old-cost+.complictation-cost {
        display: flex;
    }

    .car-item-buttons__wrapper {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
    }

    .card-buttons__wrapper .btn {
        width: 250px;
        height: 44px;
        font-size: 16px;
        line-height: 20px;
        color: #000;
    }

    .map-image {
        min-height: 300px;
        /*background-size: 350%;
        background-position: 72%;*/
        background-image: url(../img/map-mob.webp);
    }

    .disclaimer {
        padding-top: 25px;
        padding-bottom: 25px;
    }

    .feedback-card__wrapper {
        position: static;
    }

    .feedback-card .card__inner {
        padding: 15px;
        -webkit-box-shadow: none;
        box-shadow: none;
    }

    .feedback-head__wrapper {
        margin-bottom: 15px;
    }

    .feedback-heading {
        text-align: center;
        text-transform: none;
    }

    .feedback-card__wrapper .feedback-card {
        max-width: unset;
        width: 100%;
    }

    .feedback-img {
        min-height: unset;
        max-height: 45px;
        margin-bottom: 12px;
    }

    .feedback-name__wrapper {
        margin-bottom: 10px;
    }

    .feedback-btn__wrapper {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
    }

    .feedback-btn__wrapper .btn {
        width: 210px;
    }

    .dropbtn {
        width: 100%;
    }

    .dropdown {
        width: 45%;
    }

    .standart-input {
        font-size: 14px;
        line-height: 16px;
    }

    ::-webkit-input-placeholder {
        font-size: 15px;
        line-height: 18px;
        text-transform: none;
    }

    ::-moz-placeholder {
        font-size: 15px;
        line-height: 18px;
        text-transform: none;
    }

    /* Firefox 19+ */
    :-moz-placeholder {
        font-size: 15px;
        line-height: 18px;
        text-transform: none;
    }

    /* Firefox 18- */
    :-ms-input-placeholder {
        font-size: 15px;
        line-height: 18px;
        text-transform: none;
    }

    .modal {
        width: 95%;
        height: 320px;
    }

    .agreement-label {
        font-size: 12px;
        line-height: 14px;
    }

    .modal-close {
        top: 0px;
        right: -58px;
        background: none;
    }
}

@media screen and (max-width: 390px) {
    .stock-menu__container {
        width: 363px;
    }
}

@media screen and (max-width: 375px) {
    .stock-menu__container {
        width: 341px;
    }
}

.swiper-slide {
    background-color: #f2f2f2;
}

.equips__filter {
    display: flex;
    align-items: center;
    gap: 20px;
}

.equips__filter-block {
    width: 250px;
}

.select2-container--default .select2-selection--single {
    height: 44px;

    border: none;

    border-radius: 0;

    display: flex;
    align-items: center;

    padding: 0 20px;

    background-color: transparent;
    background-color: #f2f2f2;
    font-family: 'Proxima Nova Regular';
    font-weight: 400;
    color: #000;

    position: relative;
}

.select2-container--default .select2-selection--single::before {
    position: absolute;
    content: '';
    width: 0;
    height: 100%;
    background-color: #FBAB18;
    top: 0;
    left: 50%;
    z-index: -1;
    -webkit-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease;
}

.select2-container:hover .select2-selection--single::before {
     position: absolute;
    content: '';
    width: 100%;
    height: 100%;
    background-color: #FBAB18;
    top: 0;
    left: 0%;
    z-index: -1;
    -webkit-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease;
    z-index: 1;
}

.select2-container--default .select2-selection--single .select2-selection__arrow {
    top: 8px;
    right: 8px;

    z-index: 1;
}

.select2-container--default .select2-selection--single .select2-selection__rendered {
    position: relative;
    z-index: 1;

    color: #000;
}

.filtered-show,
.showmore-show {
    display: block;
    opacity: 1;
    transition: .3s;
}

.filtered-show,
.showmore-show {
    display: block;
    opacity: 1;
    transition: .3s;
}

.filtered-hide,
.showmore-hide {
    display: none;
    opacity: 0;
}

.js--show-more {
    margin: 20px auto;
    display: block;
    padding: 10px;
    border-radius: 5px;
}

.js--show-more.hidden {
    display: none;
}

.car-item-buttons__wrapper-flex {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.car-item-buttons__wrapper-flex._flex-center {
    align-items: center;
}

.car-item-buttons__wrapper-flex._flex-end {
    align-items: flex-end;
    gap: 8px;
}

.car-item-buttons__wrapper-flex.desk_hide {
    display: none;
}

@media screen and (max-width: 767px) {
    .equips__filter-block {
        width: 45%;
    }

    .engine {
        font-size: 14px;
    }

    .car-item-buttons__wrapper-flex.mob_hide {
        display: none;
    }

    .car-item-buttons__wrapper-flex.desk_hide {
        display: flex;

        width: 100%;
    }

    .car-item-buttons__wrapper-flex._flex-end {
        flex-direction: column-reverse;
    }
}

@media screen and (max-width: 575px) {
    .complictation-cost {
        width: 50%;
        height: 43px;

        /* background: none; */

        position: relative;

        padding: 0 17px 0 0;
        align-items: center;
    }

    .complictation-cost._red {
        /* background: none; */

            padding: 0 0 0 19px;
    }
    
    /* .complictation-cost::before {
        content: "";

        display: block;

        width: calc(100% + 17px);
        height: 100%;

        position: absolute;
        top: 0;
            left: -10px;
        z-index: -1;
        background-position: right;
        background-image: url(../img/eq-line_mob.png);
        background-repeat: no-repeat;
    } */

    .complictation-cost._red::before {
        left: auto;
        right: -8px;
        background-image: url(../img/eq-line_mob2.png);
        background-repeat: no-repeat;
        background-position: left;
        width: calc(100% + 14px);
    }

    .complictation-cost._red .complictation-old-cost .complictation-cost_credit img {
        width: 15px;
        height: 15px;
    }

    .complictation-cost._red .complictation-old-cost {
        flex-direction: row-reverse;
    justify-content: space-between;
    width: 100%;
    }
}

#modal-credit-2 {
    background: linear-gradient(180.00deg, rgb(251, 171, 24),rgb(240, 199, 19) 100%);

    width: 487px;
    height: max-content;
}

#modal-credit-2 .modal-cont {
    padding: 13px 18px  22px;

    display: block;
}

#modal-credit-2 .modal-head {
    display: block;

    font-size: 14px;
    line-height: 16px;
    color: #000;
    font-weight: 600;

    margin-bottom: 14px;
}

#modal-credit-2 .modal-head.desk_hide {
    display: none;
}

#modal-credit-2 .modal-text {
    font-size: 12px;
    line-height: 14px;
    color: #000;
    font-weight: 400;

    display: block;
}

#modal-credit-2 .modal-text._margin_top {
    margin-top: 5px;
}
  
#modal-credit-2 .modal-list {
    margin-top: 5px;

    list-style: disc;
    padding-left: 13px;
}

#modal-credit-2 .modal-list .modal-text {
    display: list-item;    
}

#modal-credit-2.fancybox__content>.f-button.is-close-btn {
    top: 5px;
    right: 5px;
    background: none;

    width: 13px;
    height: 13px;
}

#modal-credit-2.fancybox__content>.f-button.is-close-btn svg {
    stroke: #000;
}

@media screen and (max-width: 1024px) {
    #modal-credit-2 .modal-cont {
        padding: 10px 12px 21px;
    }

    #modal-credit-2.fancybox__content>.f-button.is-close-btn {
        width: 10px;
        height: 10px;
    }

    #modal-credit-2 .modal-head.desk_hide {
        display: block;
    }

    #modal-credit-2 .modal-head.mob_hide {
        display: none;
    }

    #modal-credit-2 {
        width: 95%;
    }

    #modal-credit-2 .modal-head {
        font-size: 13px;
        line-height: 16px;

        margin-bottom: 12px;
    }

    #modal-credit-2 .modal-text {
        font-size: 9px;
        line-height: 11px;
    }    
}

.main-banner-swiper .swiper-pagination {
    right: 10%;
    left: auto;
    width: max-content;
    bottom: 160px;
    top: auto;
}

.main-banner-swiper .swiper-pagination-bullet {
    border-radius: 0;

    background: rgba(255, 255, 255, 0.4);
    opacity: 1;

    width: 90px;
    height: 2px;

    transition: all .2s;
}

.main-banner-swiper .swiper-pagination-bullet:hover {
    background: rgba(240, 199, 19, 1);
}

.main-banner-swiper .swiper-pagination-bullet-active {
    background: #fff;
}

.main-banner-swiper .swiper-pagination-bullet-active:hover {
    background: #fff;
}

.main-banner-btn {
    font-size: 16px;
    line-height: 18px;
}

@media screen and (max-width: 500px) {
    .main-banner._two .countdown .tiles {
        width: 100%;
    }

    .main-banner._two {
        background-image: url(../img/main-banner2_mob.webp);
    }

    .banner-feedback.desk_hide {
        display: block;

        color: #000;
        text-align: center;
        font-size: 15px;
        line-height: 17px;

        padding-top: 15px;
    }

    .main-banner {
        margin-bottom: 0;
    }

    .main-banner-heading-sub br {
        display: block;
    }

    .main-banner-swiper .swiper-pagination {
        right: auto;

        left: 50%;
        transform: translate3d(-50%, 0, 0);

        bottom: 131px;
    }

    .main-banner-heading.desk_hide {
        display: block;
    }

    .main-banner-heading.mob_hide {
        display: none;
    }

    .main-banner-btn {
        font-size: 12px;
        line-height: 14px;
    }
}