@font-face {
    font-family: "Inter";
    src: url("../fonts/Inter-Regular.ttf") format("ttf");
    font-weight: 400;
}

@font-face {
    font-family: "Inter";
    src: url("../fonts/Inter-Medium.ttf") format("ttf");
    font-weight: 500;
}

@font-face {
    font-family: "Inter";
    src: url("../fonts/Inter-Bold.ttf") format("ttf");
    font-weight: 700;
}

:root {
    /* --color-green-blue: #356875; */
    --color-green-blue: #24bee4;
    --color-green-blue-alpha: rgba(36, 190, 228, 0.8);
    --color-dark: #222222;
    --color-white: #fff;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Inter", sans-serif;
}

body,
html {
    overflow-x: hidden;
}

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

.btn {
    width: 180px;
    height: 50px;
    background-color: var(--color-green-blue);
    color: var(--color-white);
    font-size: 14px;
    font-weight: 700;
    outline: none;
    border: 1px solid var(--color-green-blue);
    transition: all ease 0.3s;
    cursor: pointer;
    padding: 0;
}

.btn:hover {
    border-color: var(--color-white);
    background-color: var(--color-dark);
}

.btn.form-block {
    width: 260px;
    height: 37px;
    font-weight: 500;
    text-transform: uppercase;
}

.btn.form-block:hover {
    background-color: var(--color-dark);
}

.btn.white {
    width: 160px;
    background-color: transparent;
    border: 1px solid var(--color-green-blue);
    color: var(--color-green-blue);
    font-weight: 400;
}

.btn.white:hover {
    background-color: var(--color-green-blue);
    border-color: var(--color-white);
    color: var(--color-white);
}

.input {
    width: 220px;
    /* height: 40px; */
    border: 1px solid rgb(255, 255, 255);
    background: rgba(255, 255, 255, 0.1);
    font-size: 16px;
    font-weight: 300;
    color: var(--color-white);

    height: 36px;
    padding: 0;
    padding-left: 10px;
    margin-right: 20px;
}

.input::placeholder {
    color: var(--color-white);
}

.input-modal {
    width: 180px;
    height: 50px;
    background-color: #efefef;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    color: #2c2c2c;
}

input[type="checkbox"] {
    position: absolute;
    opacity: 0;
}

input[type="checkbox"]:checked + span svg {
    display: block;
}

.custom-checkbox {
    background-color: var(--color-green-blue);
    border-radius: 4px;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 10px;
}

.custom-checkbox svg {
    display: none;
}

.modal .custom-checkbox {
    width: 15px;
    height: 15px;
    border-radius: 0;
    background-color: var(--color-white);
}

.check-modal {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 15px;
    height: 15px;
    background-color: var(--color-white);
    margin-right: 10px;
}

.check-modal div {
    display: none;
    width: 9px;
    height: 9px;
    background-color: var(--color-green-blue);
}

.modal input[type="checkbox"]:checked + span div {
    /* background-color: var(--color-green-blue); */
    display: block;
}

a {
    text-decoration: none;
}

.section-title {
    font-size: 40px;
    font-weight: 700;
    color: var(--color-dark);
    text-align: center;
}

.desc-hide {
    display: none;
}

/* .laptop-hide {

} */

/* Header */

.header {
    padding: 15px 0;
}

.header .container {
    display: flex;
    justify-content: space-between;
    gap: 40px;
    font-size: 14px;
}

.wrapper-logo-header {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 12px;
}

.wrapper-tel-n-address {
    flex-grow: 1;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 40px;
}

.wrapper-tel-n-address a {
    color: var(--color-dark);
}

.header .btn {
    height: 40px;
}

.navigation {
    background-color: var(--color-dark);
    padding: 20px 0;
}

.list-nav {
    display: flex;
    justify-content: center;
    gap: 65px;
    text-transform: uppercase;
    font-size: 14px;
}

.list-nav li a {
    color: var(--color-white);
    transition: all ease 0.3s;
}

.list-nav li a:hover {
    color: var(--color-green-blue);
}

/* side menu */
.side-menu {
    display: none;
    flex-direction: column;
    transition: all ease 0.3s;

    width: 0vw;
    background-color: #2c2c2c;

    position: fixed;
    top: 55px;
    left: 0;
    z-index: 555;
    height: 100%;
}

.side-menu-list {
    display: none;
    flex-direction: column;
}

.side-menu.active .side-menu-list {
    display: flex;
    padding: 0 20px;
    margin: 20px 0;
}

.side-menu.active .side-menu-list li {
    display: flex;
    justify-content: center;
    padding: 20px 0;

    font-size: 15px;
    text-transform: uppercase;
}

.side-menu.active .side-menu-list li:not(:last-of-type) {
    border-bottom: 1px solid rgb(53, 104, 117);
}

.side-menu.active .side-menu-list li a {
    color: var(--color-white);
}

.side-menu.active .btn {
    display: inline-flex;
    margin: 0 auto;
    width: 320px;
    justify-content: center;
    align-items: center;
    font-size: 12px;
    font-weight: 500;
    text-transform: uppercase;
}

.burger-open {
    display: none;
}

.burger-close {
    display: none;
    width: 20px;
}

/* Main */

section {
    margin-bottom: 80px;
}

/* Banners */
.banner {
    /* min-height: 100vh; */
    /* background-color: var(--color-dark); */
    margin-bottom: 60px;
}

.wrapper-video {
    position: relative;
}

.wrapper-text-banner {
    position: absolute;
    top: 90px;
    right: 50px;
    text-align: right;
}

.title-banner {
    font-size: 55px;
    color: var(--color-white);
}

.text-banner {
    color: var(--color-green-blue);
    font-size: 45px;
    font-weight: 600;
}

.wrapper-video img {
    width: 100%;
    height: 100%;
}

video {
    width: 100%;
    position: relative;
}

.overlay {
    display: none;
    width: 196px;
    height: 196px;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg width='196' height='196' viewBox='0 0 196 196' fill='none' xmlns='http://www.w3.org/2000/svg'%3e%3ccircle cx='98' cy='98' r='97' stroke='white' stroke-width='2'/%3e%3cpath d='M140 98L77 134.373L77 61.6269L140 98Z' fill='white' fill-opacity='0.75'/%3e%3c/svg%3e");
    background-size: cover;
    background-repeat: no-repeat;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    z-index: 22;
    cursor: pointer;
}

.wrapper-video .btn {
    position: absolute;
    /* bottom: 70px; */
    top: 50px;
    left: 50%;
    transform: translateX(-50%);
    width: 300px;
    height: 60px;
    border-color: var(--color-white);
    color: var(--color-white);
    font-weight: 700;
}

.wrapper-video .btn.video-mob {
    display: none;
}

.wrapper-timer.container {
    color: var(--color-white);
    display: flex;
    padding: 32px 0;
}

.wrapper-timer.container form {
    display: flex;
    flex-wrap: wrap;
}

.wrapper-timer.container form label {
    position: relative;
    width: 100%;
    display: flex;
    align-items: center;
    /* gap: 10px; */
    font-size: 12px;
}

.timer {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    max-width: 425px;
}

.timer h3 {
    /* width: 100%; */
    font-size: 19px;
    font-weight: 400;
    width: 400px;
    padding-bottom: 10px;
}

.time-count__item {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    max-width: 105px;
}

.timer > div:last-of-type {
    max-width: 85px;
}

.time-count__val,
.time__separator {
    font-size: 55px;
    font-weight: 400;
}

.time-count__val {
    /* padding-right: 20px; */
    padding-right: 15px;
}

.time-count__text {
    width: 100%;
    position: relative;
    left: 10px;
    font-size: 12px;
    font-weight: 400;
}

/* Advantages */

.advantages .container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: 180px;
    grid-gap: 20px;
}

.item-advantages {
    border: 1px solid rgb(34, 34, 34);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all ease 0.3s;
}

.item-advantages svg {
    fill: var(--color-green-blue);
}

.item-advantages:hover {
    cursor: pointer;
    background-color: var(--color-green-blue);
    border-color: var(--color-green-blue);
}

.item-advantages p {
    font-size: 24px;
    font-weight: 500;
    color: var(--color-dark);
    text-align: center;
}

.item-advantages:hover p,
.item-advantages:hover svg {
    fill: var(--color-white);
    color: var(--color-white);
    stroke: var(--color-white);
}

/* Models */

.wrapper-models {
    /* display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(4, 524px); */
    grid-gap: 20px;

    display: flex;
    flex-wrap: wrap;
    /* justify-content: center; */
    padding-top: 50px;
}

.item-model {
    box-shadow: 0px 4px 6px 0px rgba(46, 49, 46, 0.15);
    padding: 19px 10px 9px;
    overflow: hidden;
    width: 358px;
    transition: all ease 0.3s;
}

.item-model:hover {
    background-color: var(--color-white);
}

.wrapper-title-n-auto {
    padding-bottom: 17px;
}

.title-model {
    font-size: 24px;
    font-weight: 500;
    text-transform: uppercase;
}

.wrapper-model-advantages {
    display: flex;
    /* font-size: 10px; */
    font-size: 8px;
    justify-content: flex-end;
    gap: 6px;
    padding-bottom: 8px;
}

.wrapper-model-advantages span {
    display: flex;
    gap: 10px;
    align-items: center;
    flex-grow: 1;
    font-size: 12px;
    color: var(--color-green-blue);
}

.wrapper-model-advantages p {
    /* height: 20px; */
    text-transform: uppercase;
    display: flex;
    align-items: center;
    justify-content: center;
}

.wrapper-model-advantages p:first-of-type {
    width: 88px;
    border: 1px solid var(--color-green-blue);
    color: var(--color-green-blue);
    height: 18px;
}

.wrapper-model-advantages p:nth-of-type(2) {
    width: 74px;
    color: var(--color-white);
    background-color: var(--color-green-blue);
    height: 20px;
}

.wrapper-model-advantages p:last-of-type {
    width: 98px;
    border: 1px solid var(--color-green-blue);
    color: var(--color-green-blue);
    height: 18px;
}

.wrapper-bg-n-main-img {
    position: relative;
    padding-bottom: 30px;
}

.bg-model {
    position: relative;
    z-index: -1111;
}

.main-img-model {
    position: absolute;
    z-index: 1;
    /* left: 0;
    top: 0; */

    left: 0;
    top: 45px;
    width: 100%;
    cursor: pointer;
}

.swiper {
    padding: 0 32px;
}

.swiper-slide img {
    /* filter: brightness(.5); */
    transition: all ease 0.3s;
}

/* .swiper-slide img.active, */
.swiper-slide img:hover {
    /* filter: brightness(1); */
    transform: scale(1.1);
}

.swiper-wrapper.active div:first-child img {
    filter: brightness(1);
}

.swiper-button-prev {
    left: 0px;
    height: 70px;
    top: 15px;
    background: #fff;
    width: 30px;
}

.swiper-button-next {
    right: -3px;
    height: 70px;
    top: 17px;
    background: #fff;
    width: 40px;
}

.swiper-button-next svg,
.swiper-button-prev svg {
    width: 16px;
    height: 100%;
    object-fit: contain;
    transform-origin: center;
}

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

.wrapper-price-model {
    padding: 20px 0 15px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    font-weight: 700;
}

.model-price {
    color: var(--color-green-blue);
    font-size: 28px;
}

.model-recprice {
    font-weight: 400;
    /* font-size: 18px; */
    font-size: 17px;
    opacity: 0.5;
}

.wrapper-btn-model {
    display: flex;
    justify-content: space-between;
    gap: 10px;
}

.wrapper-btn-show-model {
    width: 100%;
    display: flex;
}

.btn.white.js--show-more {
    color: var(--color-dark);
    border-color: var(--color-dark);
    font-weight: 700;
    margin: 0 auto;
    margin-top: 25px;
}

/* Equipments */

.equipments .section-title {
    padding-bottom: 40px;
}

.form-filter-equip {
    display: flex;
    justify-content: space-between;
    column-gap: 20px;
    /* max-width: 680px; */
    /* margin: auto; */
    /* gap: 80px; */
}

.select2-container .select2-selection--single {
    border: none;
    border-bottom: 1px solid rgb(34, 34, 34);
    font-size: 20px;
    color: var(--color-dark);
    border-radius: 0;
    height: 38px;
}

.select2-container--default
    .select2-selection--single
    .select2-selection__rendered {
    color: inherit;
}

.select2-container--default
    .select2-selection--single
    .select2-selection__arrow
    b {
    border: none;
    width: 18px;
    height: 10px;
    /* background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg width='16' height='9' viewBox='0 0 16 9' fill='none' xmlns='http://www.w3.org/2000/svg'%3e%3cpath d='M15 1L8 8L1 0.999999' stroke='%23356875' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3e%3c/svg%3e"); */
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg width='16' height='9' viewBox='0 0 16 9' fill='none' xmlns='http://www.w3.org/2000/svg'%3e%3cpath d='M15 1L8 8L1 0.999999' stroke='%2324BEE4' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3e%3c/svg%3e ");
    background-size: cover;
    background-repeat: no-repeat;
    transition: all ease 0.3s;
}

.select2-container--default.select2-container--open
    .select2-selection--single
    .select2-selection__arrow
    b {
    /* transform: rotate(180deg); */
    transform: scale(-1);
}

.select2-container--default
    .select2-selection--single
    .select2-selection__arrow {
    /* right: 15px; */
    right: 12px;
}

.equipments__items {
    display: flex;
    flex-direction: column;
    row-gap: 20px;
    margin-top: 40px;
}

.equipments__item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    column-gap: 30px;
    padding: 25px;
    box-shadow: 0px 4px 39.2px 0px #cdcdcd40;
}

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

.equipments__item-img--wrapper {
    width: 320px;
}

.equipments__item-info {
    display: flex;
    flex-direction: column;
    max-width: 750px;
    width: 100%;
}

.equipments__item-info--top {
    display: grid;
    width: 100%;
    border-bottom: 1px solid var(--color-green-blue);
    grid-template-columns: repeat(3fr, auto);
    grid-template-rows: auto;
    gap: 5px 0px;
    grid-auto-flow: row;
    grid-template-areas:
        "name fuel wheel-drive"
        "equip . .";
    padding-bottom: 44px;
}

.equipments__item-model {
    grid-area: name;
    font-size: 24px;
    font-weight: 500;
    line-height: 1;
    text-transform: uppercase;
}

.equipments__item-fuel {
    grid-area: fuel;
    font-size: 14px;
    font-weight: 400;
    line-height: 1;
    display: flex;
    align-items: center;
    column-gap: 12px;
    margin: 0 auto;
}

.equipments__item-drive {
    grid-area: wheel-drive;
    font-size: 14px;
    font-weight: 400;
    line-height: 1;
    display: flex;
    align-items: center;
    column-gap: 12px;
    margin-left: auto;
}

.equipments__item-equip {
    grid-area: equip;
    font-size: 17px;
    font-weight: 700;
    line-height: 17px;
    color: var(--color-green-blue);
}

.equipments__item-info--bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 24px;
}

.equipments__item-prices {
    display: flex;
    column-gap: 23px;
}

.equipments__item-prices-old {
    font-size: 16px;
    font-weight: 500;
    line-height: 1;
    text-decoration: line-through;
}
.equipments__item-prices-new {
    font-size: 18px;
    font-weight: 700;
    line-height: 18px;
    color: var(--color-green-blue);
}

.equipments__item-buttons {
    display: flex;
}

.equipments__item-button {
    width: 236px;
    height: 50px;
    font-size: 14px;
    font-weight: 700;
    /* outline: none; */
    border: none;
    cursor: pointer;
    transition: all 0.3s;
}

.equipments__item-button--offer {
    background-color: var(--color-green-blue);
    color: var(--color-white);
    border: 1px solid transparent;
}

@media (hover: hover) {
    .equipments__item-button--offer:hover {
        background-color: var(--color-white);
        color: var(--color-green-blue);
        border: 1px solid var(--color-green-blue);
    }
}

.equipments__item-button--credit {
    background-color: transparent;
    color: var(--color-green-blue);
    border: 1px solid var(--color-green-blue);
}

@media (hover: hover) {
    .equipments__item-button--credit:hover {
        background-color: var(--color-green-blue);
        color: var(--color-white);
        border: 1px solid var(--color-white);
    }
}

.equipments__show-more {
    width: 160px;
    height: 50px;
    border: 1px solid #000;
    background: transparent;
    font-size: 14px;
    font-weight: 700;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 20px;
    cursor: pointer;
}

/* Credit */

.credit {
    height: 418px;
    background-size: cover;
    background-repeat: no-repeat;
}

.credit .container {
    background-image: url("/assets/brands/geely/img/webp/bg-credit-desc-1.webp");
    background-size: cover;
    background-repeat: no-repeat;
    height: 100%;
    /* padding-top: 60px; */
    color: #fff;
}

.credit h3 {
    font-size: 32px;
}

.wrapper-credit {
    /* max-width: 500px; */
    margin-left: auto;
    padding-top: 25px;
    padding-right: 50px;
    max-width: 380px;
}

.list-credit {
    border-left: 4px solid var(--color-green-blue);
    margin: 30px 0 40px;
    padding: 5px 0;
    padding-left: 30px;
    font-size: 16px;
    line-height: 30px;
}

.credit form {
    display: flex;
    flex-direction: column;
}

.wrapper-credit .input {
    /* width: 208px; */
    width: 318px;
    /* margin-right: 14px; */
    margin: 0 0 10px;
}

.wrapper-credit form label {
    position: relative;
    width: 100%;
    display: flex;
    align-items: center;
    /* gap: 10px; */
    font-size: 12px;
    padding-top: 10px;
}

.wrapper-credit form label p {
    width: 340px;
}

.wrapper-credit .btn {
    width: 330px;
}

/* Trade-in */

.trade-in {
    height: 428px;
}

.trade-in h3 {
    font-size: 32px;
}

.trade-in .container {
    height: 100%;
    /* padding-top: 60px; */
    color: #fff;
    background-image: url("/assets/brands/geely/img/webp/bg-tradein-desc-1.webp");
    background-size: cover;
    background-repeat: no-repeat;
}

.wrapper-trade-in {
    max-width: 525px;
    margin-left: auto;
    padding-top: 30px;
    padding-right: 20px;
}

.list-trade-in {
    margin: 30px 0;
    font-size: 22px;
    line-height: 30px;
}

.list-trade-in li {
    display: flex;
    align-items: center;
    gap: 20px;
    padding-bottom: 10px;
}

.list-trade-in li br {
    display: none;
}

.wrapper-trade-in .input {
    width: 208px;
    margin-right: 14px;
}

.wrapper-trade-in form label {
    position: relative;
    width: 100%;
    display: flex;
    align-items: center;
    /* gap: 10px; */
    font-size: 12px;
    padding-top: 10px;
}

/* Contacts */

.contacts {
    height: 600px;
    overflow: hidden;
    position: relative;
}

#map {
    height: 600px;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
}

.contacts .container {
    height: 100%;
    padding-top: 100px;
    color: #fff;
}

.wrapper-contacts {
    max-width: 500px;
    margin-right: auto;
    background-color: var(--color-green-blue-alpha);
    padding: 39px 0 53px 47px;
    position: relative;
    z-index: 1;
}

.wrapper-contacts h3 {
    font-size: 40px;
    color: var(--color-white);
}

.list-contacts {
    padding: 40px 0;
}

.list-contacts li:nth-of-type(2) br {
    display: none;
}

.list-contacts li {
    padding-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.wrapper-contacts .btn {
    font-weight: 400;
    width: 275px;
    border: 1px solid var(--color-white);
}

/* Footer */

.footer {
    padding-bottom: 100px;
    background-color: #222;
    color: #fff;
    padding: 50px 0;
    font-size: 14px;
}

.footer__content {
    display: flex;
    flex-wrap: wrap;
}

.footer__legal {
    display: flex;
    flex-direction: row-reverse;
    width: 100%;
    justify-content: space-between;
    align-items: center;
}

.footer__legal p {
    max-width: 540px;
}

.disclaimer {
    width: 100%;
    padding-top: 40px;
}

.footer__links-item {
    margin-bottom: 10px;
}

.footer__links-item a {
    color: var(--color-white);
    text-decoration: underline;
    margin-bottom: 10px;
}

/* .footer .text {
    max-width: 570px;
} */

/* Modals */

.modal {
    display: none;
    width: 600px;
    height: 400px;
    border-radius: 9px;
    background-size: cover;
    background-repeat: no-repeat;
    color: #fff;
    padding: 30px 20px 26px;
}

.modal-credit {
    background-image: url(../img/webp/modal-credit-desc.webp);
}

.modal-callback {
    background-image: url(../img/webp/modal-callback-desc.webp);
}

.popup-success {
    background-image: url(../img/webp/modal-thx-desc.webp);
}

.popup-error {
    background-image: url(../img/webp/modal-already-desc.webp);
}

.title-modal {
    font-size: 32px;
}

.popup-error .title-modal {
    padding-top: 320px;
}

.popup-success p,
.popup-error p {
    font-size: 24px;
    font-weight: 700;
    padding-top: 15px;
}

.list-modal {
    padding: 30px 0 70px;
    font-size: 14px;
    line-height: 20px;
}

.modal-callback .list-modal {
    list-style: disc;
    padding: 30px 0 50px;
    padding-left: 20px;
}

.form-modal {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.modal-callback .form-modal {
    flex-direction: row;
    flex-wrap: wrap;
}

.modal .input {
    width: 180px;
    padding: 0;
    text-align: center;
    height: 50px;
    border: none;
    background: var(--color-white);
    color: #2c2c2c;
}

.modal-callback .input {
    margin: 0;
}

.modal .input::placeholder {
    color: #2c2c2c;
}

.modal label {
    font-size: 12px;
    display: flex;
    align-items: center;
    /* gap: 15px; */
}

.modal label br {
    display: none;
}

.fancybox__content > .f-button.is-close-btn {
    top: 0;
    opacity: 1;
    --f-button-color: var(--color-white);
}

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

/* .showmore-show,
.filtered-show {
  display: block;
} */

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

@font-face {
    font-family: Timer;
    src: url(./ofont.ru_Bicubik.ttf);
    font-weight: 400;
    /* font-style: italic; */
    /* font-display: swap; */
}

.banner img {
    position: relative;
    text-align: center;
    z-index: -10;
    margin-top: -51px;
    width: 100vw;
}
.banner {
    position: relative;
    /* display: flex;
	flex-direction: column;
	align-items: center; */
}
.banner-text {
    position: absolute;
    top: 10%;
    /* left: 20%; */
    color: white;
    /* z-index: 123; */
}
.banner-text h1 {
    font-size: 55px;
    font-weight: 600;
    line-height: 1;
    max-width: 670px;
    margin-bottom: 60px;
}

.banner__utp-list {
    display: flex;
    flex-direction: column;
    row-gap: 20px;
}

.banner__utp-item {
    font-size: 20px;
    font-weight: 500;
    display: flex;
    align-items: center;
    column-gap: 5px;
}

.hero-timer {
    box-shadow: 0px 4px 15.8px 0px #00000040;
    padding: 30px 0;
    background-color: #ffffff;
    width: 100%;
}
.hero-timer > div {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.timer {
    font-family: Timer;
    gap: 15px;
    max-width: none;
    padding-bottom: 0;
}
.time-count__val {
    position: relative;
    z-index: 5;
    margin-bottom: 3px;
    font-weight: 400;
    font-size: 58px;
    line-height: 1;
    text-transform: uppercase;
    color: #323c47;
    padding: 0;
    font-variant-numeric: tabular-nums;
}
.time-count__text {
    position: relative;
    z-index: 5;
    font-weight: 400;
    font-size: 17px;
    line-height: 1;
    text-transform: uppercase;
    color: #323c47;
    padding: 0;
    text-align: center;
    left: 0;
}
.time-coun__separation {
    font-size: 68px;
    color: #323c47;
    font-weight: 400;
}
.time-count__item {
    display: flex;
    flex-direction: column;
    align-items: center;
}
.hero-timer__title {
    font-size: 24px;
    font-weight: 700;
    color: #323c47;
    text-transform: uppercase;
    max-width: 240px;
}
.button {
    width: 180px;
    height: 50px;
    background-color: var(--color-green-blue);
    color: var(--color-white);
    font-size: 14px;
    font-weight: 700;
    outline: none;
    border: 1px solid var(--color-green-blue);
    transition: all ease 0.3s;
    cursor: pointer;
    padding: 0;
}

/* Media */

@media (max-width: 1500px) {
    .banner-text h1 {
        font-size: 35px;
    }
}

@media (max-width: 1299px) {
    .credit {
        height: 350px;
    }

    .credit .container {
        background-image: url("/assets/brands/geely/img/webp/bg-credit-laptop-1.webp");
        background-size: auto;
    }

    .wrapper-credit {
        max-width: 340px;
    }

    .credit h3,
    .trade-in h3 {
        font-size: 23px;
    }

    .list-credit {
        line-height: 28px;
        padding-top: 0;
        padding-bottom: 0;
    }

    .list-credit,
    .list-trade-in {
        font-size: 15px;
        margin: 20px 0;
    }

    .trade-in {
        height: 350px;
    }

    .trade-in .container {
        background-image: url(../img/webp/bg-tradein-laptop-1.webp);
        background-position: center;
    }

    .wrapper-trade-in {
        max-width: 370px;
        padding-left: 20px;
    }

    .list-trade-in {
        font-size: 13px;
        line-height: 16px;
        margin: 10px 0;
    }

    .list-trade-in svg {
        width: 18px;
        height: 18px;
    }

    .trade-in form {
        display: flex;
        flex-direction: column;
    }

    .trade-in .input {
        width: 288px;
        margin: 0 0 10px;
    }

    .trade-in form label p {
        width: 290px;
    }

    .trade-in h3 br {
        display: none;
    }

    .contacts {
        background-image: url(../img/webp/bg-map-laptop-1.webp);
        background-position: center;
        height: 350px;
    }

    .contacts .container {
        padding-top: 0;
    }

    .wrapper-contacts {
        max-width: 425px;
    }

    .wrapper-contacts h3 {
        font-size: 32px;
    }
}

@media (max-width: 1199px) {
    .container {
        max-width: calc(100% - 60px);
    }

    .input {
        width: 160px;
    }

    .btn.form-block {
        width: 225px;
        font-size: 12px;
    }

    .wrapper-credit .btn {
        width: 330px;
    }

    .trade-in .btn {
        width: 300px;
    }

    /* Header */

    .list-nav {
        gap: 40px;
    }

    .wrapper-video .btn.video-desc {
        bottom: 50px;
    }

    .wrapper-timer.container form label {
        font-size: 10px;
    }

    .wrapper-timer.container form label a {
        margin-left: 3px;
    }

    /* Main */

    section {
        margin-bottom: 50px;
    }

    /* Banner */

    .wrapper-text-banner {
        top: 60px;
        right: 20px;
    }

    .title-banner {
        font-size: 32px;
    }

    .text-banner {
        font-size: 25px;
    }

    .banner-text {
        top: 5%;
    }

    /* Advantages */

    .advantages .container {
        grid-template-rows: 140px;
    }

    .item-advantages svg {
        width: 50px;
        height: 50px;
    }

    .item-advantages p {
        font-size: 18px;
    }

    /* Models */

    .wrapper-models {
        justify-content: center;
    }

    .wrapper-title-n-auto {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .desc-hide.car-in-stock {
        /* display: flex; */
        align-items: center;
        gap: 10px;
        color: var(--color-green-blue);
        font-size: 11px;
    }

    .wrapper-model-advantages {
        font-size: 7px;
    }

    .wrapper-model-advantages p:first-of-type {
        width: 72px;
    }

    .wrapper-model-advantages p:nth-of-type(2) {
        width: 60px;
    }

    .wrapper-model-advantages p:last-of-type {
        width: 82px;
    }

    .model-price {
        font-size: 22px;
        width: 100%;
    }

    .model-credit {
        font-size: 13px;
    }

    .model-recprice {
        font-size: 14px;
    }

    .wrapper-btn-model .btn {
        /* width: 145px; */
        /* width: 153px; */
        height: 40px;
        font-size: 10px;
        width: 100%;
    }

    /* Equipments */

    .equipments__item-info {
        max-width: 680px;
    }

    .equipments__item-button {
        width: 200px;
    }
}

@media (max-width: 1070px) {
    /* Equipments */

    .equipments__items {
        flex-direction: row;
        flex-wrap: wrap;
        column-gap: 20px;
        justify-content: center;
    }

    .equipments__item {
        /* width: 100%; */
        column-gap: 0px;
        padding: 21px;
        padding-bottom: 38px;
        flex-direction: column;
    }

    .equipments__item-img--wrapper {
        width: 280px;
        margin-bottom: 18px;
    }

    .equipments__item-info--top {
        display: grid;
        grid-auto-columns: 1fr;
        grid-template-columns: 1fr;
        grid-template-rows: 1fr 1fr 1fr 1fr;
        border: none;
        margin-bottom: 0;
        padding-bottom: 0;
        gap: 0px 0px;
        grid-template-areas:
            "name"
            "equip"
            "fuel"
            "wheel-drive";
    }

    .equipments__item-model {
        font-size: 20px;
        line-height: 24px;
    }
    .equipments__item-fuel {
        margin: unset;
    }
    .equipments__item-drive {
        margin-left: unset;
        margin-top: 13px;
    }
    .equipments__item-info--bottom {
        flex-direction: column;
    }
    .equipments__item-buttons {
        flex-direction: column;
        row-gap: 10px;
        width: 100%;
    }

    .equipments__item-button {
        width: 100%;
    }
    .equipments__item-prices {
        flex-direction: column;
        width: 100%;
    }
    .equipments__item-prices-new {
        font-size: 24px;
        line-height: 1;
        margin-bottom: 19px;
        margin-top: 32px;
    }
    .equipments__item-prices-old {
        width: 100%;
        text-align: right;
        color: #aea6a6;
        font-size: 14px;
        line-height: 1;
        border-bottom: 1px solid var(--color-green-blue);
        padding-bottom: 5px;
    }
}

@media (max-width: 1000px) {
    .banner-text h1 {
        font-size: 20px;
        max-width: 100%;
        margin-bottom: 30px;
    }
    .banner__utp-list {
        display: flex;
        flex-direction: column;
        row-gap: 5px;
    }
    .banner__utp-item {
        font-size: 14px;
    }

    /* timer  */

    .hero-timer > div {
        flex-direction: column;
        gap: 25px;
    }

    .hero-timer__title {
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .header {
        padding-top: 10px;
    }
    .banner__utp-list {
        display: none;
    }
    .banner-text h1 {
        font-size: 24px;
        margin-bottom: 15px;
        line-height: 26px;
        max-width: 290px;
    }
    .banner-text h2 {
        font-size: 16px;
        /* max-width: 240px; */
        font-weight: 500;
        line-height: 17px;
        margin-bottom: 200px;
    }
    .banner-text {
        left: 5%;
        top: 10px;
    }
    .wrapper-tel-n-address {
        color: white;
    }

    .hero-timer__title {
        max-width: none;
    }
    .time-count__val {
        padding: 0;
        font-size: 37px;
    }
    .time-count__text {
        font-size: 10px;
    }
    .time-coun__separation {
        font-size: 43px;
    }

    .advantages .container {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: repeat(2, 1fr);
        gap: 5px;
    }

    .item-advantages {
        height: 120px;
    }

    /* Equipments  */
    .equipments__items {
        column-gap: 10px;
    }

    .equipments__show-more {
        margin-top: 41px;
    }

    .equipments
        .select2-container--default
        .select2-selection--single
        .select2-selection__rendered {
        color: inherit;
        font-size: 15px;
    }

    #map {
        position: unset;
        height: 450px;
    }
}

@media (max-width: 639px) {
    .container {
        max-width: calc(100% - 40px);
    }

    .mob-hide {
        display: none;
    }

    .desc-hide {
        display: block;
    }

    .side-menu {
        display: flex;
    }

    .burger-open {
        display: block;
    }

    section {
        margin-bottom: 40px;
    }

    .section-title {
        font-size: 24px;
    }

    /* Header */

    .wrapper-logo-header p {
        display: none;
    }

    .header .btn {
        display: none;
    }

    .wrapper-tel-n-address p {
        font-size: 10px;
        max-width: 95px;
        text-align: right;
    }

    .wrapper-tel-n-address {
        gap: 20px;
    }

    .navigation {
        display: none;
    }

    .wrapper-video .btn.video-desc {
        display: none;
    }

    .wrapper-timer.container {
        flex-direction: column-reverse;
    }

    .timer {
        max-width: 100%;
        justify-content: center;
        padding-bottom: 0px;
    }

    .time-count__val,
    .time__separator {
        font-size: 32px;
    }

    .timer h3 {
        width: 100%;
        text-align: center;
        font-size: 16px;
        /* padding-bottom: 10px; */
    }

    .time-count__item {
        max-width: 83px;
        justify-content: flex-end;
    }

    .time-count__val {
        padding-right: 0;
    }

    .time-count__text {
        font-size: 10px;
        left: auto;
        padding-left: 0;
    }

    .input {
        width: 100%;
        margin: 0;
    }

    .btn.form-block {
        width: 100%;
        margin: 22px 0;
    }

    /* Main */

    /* Banner */

    .banner {
        margin-bottom: 20px;
    }

    .wrapper-text-banner {
        top: 30px;
        right: 10px;
    }

    .title-banner {
        font-size: 13px;
    }

    .text-banner {
        font-size: 10px;
    }

    .wrapper-timer.container form label p {
        width: 250px;
    }

    .wrapper-timer.container form label a {
        margin-left: 0;
    }

    /* Advantages */

    .advantages .container {
        grid-gap: 6px;
        /* grid-template-rows: 60px; */
    }

    .item-advantages {
        gap: 5px;
        height: 90px;
    }

    .item-advantages svg {
        width: 30px;
        height: 30px;
    }

    .item-advantages p {
        font-size: 12px;
        color: var(--color-dark);
    }

    /* .item-advantages p:last-of-type br {
		display: none;
	} */

    /* Models */

    .wrapper-models {
        padding-top: 15px;
    }

    .item-model:hover {
        background-color: transparent;
    }

    .title-model {
        font-size: 18px;
    }

    .swiper-slide img {
        /* width: 75px; */
        width: 80px;
    }

    .btn.white.js--show-more,
    .btn.white.js--show-more-model {
        border: none;
    }

    .main-img-model {
        top: 40px;
    }

    /* Equipments */

    .form-filter-equip {
        display: flex;
        flex-direction: column;
        row-gap: 20px;
    }

    .equipments
        .select2-container--default
        .select2-selection--single
        .select2-selection__rendered {
        color: inherit;
        font-size: 16px;
    }

    /* Credit */

    .credit,
    .trade-in {
        background-image: none;
        height: auto;
        background-color: var(--color-dark);
    }

    .credit .container,
    .trade-in .container {
        background-image: none;
    }

    .credit {
        height: 570px;
        background-image: url("/assets/brands/geely/img/webp/bg-credit-mob-1.webp");
        background-repeat: no-repeat;
        background-size: cover;
    }

    .bg-credit-mob,
    .bg-tradein-mob,
    .bg-map-mob {
        width: 100%;
    }

    .bg-credit-mob,
    .bg-tradein-mob {
        display: none;
    }

    .credit .container,
    .trade-in .container {
        padding: 20px 0 25px;
    }

    .credit .container {
        padding-top: 210px;
    }

    .wrapper-credit {
        padding-right: 0;
        margin: 0;
        max-width: 100%;
    }

    .list-credit {
        font-size: 16px;
        line-height: 25px;
        border-width: 2px;
        padding: 0;
        padding-left: 18px;
        margin: 20px 0;
    }

    .wrapper-credit .input,
    .wrapper-trade-in .input {
        margin: 0;
        width: calc(100% - 12px);
    }

    .btn.form-block {
        margin: 20px 0;
    }

    .wrapper-credit form label {
        font-size: 10px;
    }

    .wrapper-credit form label p {
        width: 290px;
    }

    /* Trade-in */

    .trade-in {
        height: 700px;
        background-image: url("/assets/brands/geely/img/webp/bg-tradein-mob-1.webp");
        background-repeat: no-repeat;
        background-size: cover;
    }

    .trade-in .container {
        padding-top: 320px;
    }

    .wrapper-trade-in {
        padding: 0;
        max-width: 100%;
    }

    .trade-in h3 {
        width: 300px;
    }

    .list-trade-in {
        font-size: 16px;
        line-height: 20px;
    }

    .list-trade-in li br {
        display: block;
    }

    /* Contacts */

    .contacts {
        background-image: none;
        height: auto;
        background-color: var(--color-green-blue);
    }

    .wrapper-contacts {
        padding-left: 0;
    }

    .wrapper-contacts .btn {
        width: 100%;
    }

    .list-contacts li:nth-of-type(2) {
        line-height: 30px;
    }

    .list-contacts li:nth-of-type(2) br {
        display: block;
    }
}

@media (max-width: 639px) {
    .modal {
        width: 360px;
        height: 320px;
        padding: 15px 15px 18px;
    }

    .modal-credit {
        background-image: url(../img/webp/modal-credit-mob.webp);
    }

    .modal-callback {
        background-image: url(../img/webp/modal-callback-mob.webp);
    }

    .popup-success {
        background-image: url(../img/webp/modal-thx-mob.webp);
    }

    .popup-error {
        background-image: url(../img/webp/modal-already-mob.webp);
    }

    .title-modal,
    .popup-success p,
    .popup-error p {
        font-size: 20px;
    }

    .modal-credit .title-modal {
        max-width: 210px;
    }

    .popup-error .title-modal {
        padding-top: 250px;
    }

    .list-modal {
        font-size: 12px;
        list-style: disc;
        padding: 15px 0;
        padding-left: 15px;
    }

    .modal-callback .list-modal {
        padding: 15px 0;
        padding-left: 15px;
    }

    .modal-callback .list-modal li br {
        display: none;
    }

    .modal .input,
    .modal .btn {
        font-size: 12px;
    }

    .modal label br {
        display: block;
    }

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

@media (max-width: 639px) {
    .footer__legal {
        flex-direction: column-reverse;
        gap: 20px;
    }

    .footer__links-item {
        text-align: center;
    }
}

@media (max-width: 480px) {
    .equipments__item {
        width: 100%;
    }
}

@media (min-width: 415px) {
    .wrapper-bg-n-main-img {
        padding-bottom: 40px;
    }
}
.pos-Preface,
.pos-Cityray,
.pos-Emgrand,
.pos-Belgee.X70 {
    margin-top: -50px;
}
