@charset "UTF-8";
* {
  font-family: 'PF DinDisplay Pro', sans-serif;
  font-style: normal;
  scrollbar-width: thin;
  scrollbar-color: #949494 #181B1D;
}

a {
  text-decoration: none;
}

body {
  overflow-x: hidden;
}

.container {
  padding: 0;
}

@media (max-width: 575px) {
  .container {
    padding: 0 10px;
  }
}

/* Отключаем стандартный стиль чекбокса */
.checkbox-input {
  appearance: none;
  -webkit-appearance: none;
  /* для поддержки в Safari */
}

/* Стилизация чекбокса */
.checkbox-input {
  appearance: none;
  width: 1rem;
  height: 1rem;
  border: 1px solid #A4A4A4;
  border-radius: 0.25rem;
  background-color: #fff;
  cursor: pointer;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  margin: 0;
}

/* Оформление состояния checked */
.checkbox-input:checked {
  background-color: #181B1D;
  border-color: #181B1D;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3e%3cpath fill='none' stroke='%23fff' stroke-linecap='round' stroke-linejoin='round' stroke-width='3' d='m6 10 3 3 6-6'/%3e%3c/svg%3e");
}

/* Эффект нажатия */
.checkbox-input:active {
  filter: brightness(90%);
}

/* Смена цвета границы при наведении */
.checkbox-input:hover:not(:disabled) {
  border-color: #181B1D;
}

/* Стили для чекбокса при фокусе */
.checkbox-input:focus {
  border-color: #181B1D;
  outline: none;
  box-shadow: 0 0 0 0.25rem rgba(24, 27, 29, 0.25);
}

/* Отключенный чекбокс */
.checkbox-input:disabled {
  filter: none;
  opacity: 0.5;
  cursor: not-allowed;
}

.checkbox-input:disabled ~ .checkbox-label {
  opacity: 0.5;
  cursor: not-allowed;
}

.checkbox-content {
  gap: 8px;
  display: flex;
}

.checkbox-content input {
  margin: auto;
  min-height: 16px;
  min-width: 16px;
  max-height: 16px;
  max-width: 16px;
  padding: 0 !important;
}

.checkbox-content p {
  margin-bottom: 0;
  max-width: 100% !important;
  font-family: "Noto Sans", sans-serif !important;
  text-align: start !important;
}

.checkbox-content a {
  text-decoration: underline !important;
  font-family: "Noto Sans", sans-serif !important;
}

.btn {
  font-size: 16px;
  font-weight: 400;
  line-height: 137.5%;
  border-radius: 0;
  padding: 13px 16px 11px;
  display: flex;
  align-items: center;
  justify-content: center;
  column-gap: 14px;
  cursor: pointer;
  transition: background-color 0.3s ease, color 0.3s ease;
  clip-path: polygon(0px 0px, 100% -2px, calc(100% - 15px) calc(100% + 2px), 0px calc(100% + 2px));
  text-transform: uppercase;
}

.btn img {
  width: 22px;
  height: 22px;
  filter: invert(0);
  transition: filter .3s ease;
}

.btn-default {
  background: linear-gradient(270deg, #2E2E2E 8.41%, #555555 89.05%);
  color: #fff;
  font-family: "Haval", "sans-serif" !important;
  border-bottom: 5px solid #FFFFFF;
  font-size: 15px;
  line-height: 120%;
  font-weight: 600;
  padding: 12px 14px;
}

.btn-default:hover {
  color: #fff;
  background: linear-gradient(270deg, #2E2E2E 8.41%, #555555 89.05%);
  border-bottom: 5px solid #FFFFFF;
}

.btn-default:hover img {
  filter: invert(1);
}

.btn-trnsp-black {
  color: #181B1D;
  background-color: transparent;
  border: 2px solid #181B1D;
}

.btn-trnsp-black:hover {
  color: #fff !important;
  background-color: #181B1D !important;
  border: 2px solid #181B1D;
}

.btn-trnsp-black:hover img {
  filter: invert(1);
}

.btn-black {
  color: #fff;
  background-color: #181B1D;
  border: 2px solid #181B1D;
}

.btn-black:hover {
  color: #181B1D !important;
  background-color: #00CABF !important;
  border: 2px solid #00CABF;
}

.btn-black:hover img {
  filter: invert(1);
}

.btn-trnsp-white {
  color: #181B1D;
  background-color: #fff;
  border: 2px solid #fff;
}

.btn-trnsp-white:hover {
  color: #fff;
  background-color: black !important;
  border: 2px solid black;
}

.btn-trnsp-white:hover img {
  filter: invert(1);
}

.btn-white-trnsp {
  color: white;
  background-color: #00CABF;
  border: 2px solid #00CABF;
}

.btn-white-trnsp:hover {
  color: white !important;
  background-color: #181B1D !important;
  border: 2px solid #181B1D;
}

.btn-white-trnsp:hover img {
  filter: invert(1);
}

.btn-black-trnsp {
  color: #fff;
  background-color: #181B1D;
  border: 2px solid #181B1D;
}

.btn-black-trnsp:hover {
  color: #181B1D !important;
  background-color: #00CABF !important;
  border: 2px solid #00CABF;
}

.btn-black-trnsp:hover img {
  filter: invert(1);
}

.btn-red-trnsp {
  color: #fff;
  background-color: #EC1B2E;
  border: 2px solid #EC1B2E;
}

.btn-red-trnsp:hover {
  color: #EC1B2E !important;
  background-color: transparent !important;
  border: 2px solid #EC1B2E;
}

.btn-trnsp-red {
  color: #EC1B2E;
  background-color: transparent;
  border: 2px solid #EC1B2E;
}

.btn-trnsp-red:hover {
  color: #fff !important;
  background-color: #EC1B2E !important;
  border: 2px solid #EC1B2E;
}

@media (min-width: 576px) and (max-width: 991.96px) {
  .btn-default {
    font-size: 16px;
    padding: 18px 20px;
  }
}

@media (max-width: 575.96px) {
  .btn {
    font-size: 14px;
    padding: 9px 10px 7px;
  }
  .btn-default {
    font-size: 14px;
    padding: 18px;
  }
}

.swiper-notification {
  display: none;
}

.models-header, .specials-header, .services-header, .mobileApp-header, .aboutDealer-header, .exterior-header, .technology-header, .news-header, .contacts-header, .aboutPage-header, .aboutPage-team-header, .lizingOfferAdditional-header, .lizingPartners-header, .springOfferAdditional-header, .springOfferFAQ-header, .tradeInAssessment-header, .autoInStock-header, .inStock-header, .selectCarEquipment-header, .lizing-header, .lizing-form-header {
  color: #000;
  font-family: "Haval", "sans-serif" !important;
  font-size: 40px;
  font-weight: 400;
  line-height: 120%;
  margin-bottom: 0;
}

@media (min-width: 576px) and (max-width: 991px) {
  .models-header, .specials-header, .services-header, .mobileApp-header, .aboutDealer-header, .exterior-header, .technology-header, .news-header, .contacts-header, .aboutPage-header, .aboutPage-team-header, .lizingOfferAdditional-header, .lizingPartners-header, .springOfferAdditional-header, .springOfferFAQ-header, .tradeInAssessment-header, .autoInStock-header, .inStock-header, .selectCarEquipment-header, .lizing-header, .lizing-form-header {
    font-size: 32px;
  }
}

@media (max-width: 575px) {
  .models-header, .specials-header, .services-header, .mobileApp-header, .aboutDealer-header, .exterior-header, .technology-header, .news-header, .contacts-header, .aboutPage-header, .aboutPage-team-header, .lizingOfferAdditional-header, .lizingPartners-header, .springOfferAdditional-header, .springOfferFAQ-header, .tradeInAssessment-header, .autoInStock-header, .inStock-header, .selectCarEquipment-header, .lizing-header, .lizing-form-header {
    font-size: 20px;
  }
}

header {
  z-index: 9;
  position: relative;
  top: 0;
}

header .header_upper {
  background-color: #fff;
  padding: 10px 0;
}

header .header_upper > div, header .header_upper-contacts > div > div, header .header_upper-contacts > div > a {
  color: #181B1D;
  font-weight: 300;
  font-size: 14px;
  line-height: 140%;
  text-decoration: none;
}

header .header_upper-contacts {
  column-gap: 78.5px;
}

header .header_upper-contacts > div, header .header_upper-contacts > a > div {
  column-gap: 12px;
  cursor: pointer;
}

header .header_upper-contacts > a > div span {
  color: #181B1D !important;
}

.sticky-header {
  z-index: 100;
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  transition: all 0.1s ease;
  background-color: #fff;
  height: 70px;
}

.sticky-header.active {
  -webkit-box-shadow: 0 4px 32px rgba(0, 0, 0, 0.1);
  box-shadow: 0 4px 32px rgba(0, 0, 0, 0.1);
}

.sticky-header > div > div {
  column-gap: 26px;
}

.sticky-header > div > div .logos {
  column-gap: 44px;
}

.sticky-header > div > div .logos #logo {
  height: 24px;
}

.sticky-header > div > div .logos #logo_bash {
  height: 18px;
}

.sticky-header.scroll {
  padding: 5px 0;
  z-index: 10;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
}

.sticky-header nav {
  column-gap: 26px;
}

.sticky-header nav a {
  color: #181B1D;
  font-weight: 300;
}

.sticky-header nav .btn.btn-white-trnsp {
  padding: 9px 16px 7px;
}

.sticky-header nav .link {
  font-style: normal;
  white-space: nowrap;
  font-weight: 300;
  font-size: 16px;
  line-height: 137.5%;
  color: #181B1D;
  padding: 12px 0;
  text-decoration: none;
  transition: all .2s ease;
  column-gap: 10px;
}

.sticky-header nav .modelsGrid {
  opacity: 0;
  transition: opacity .3s ease;
  pointer-events: none;
  transition-delay: .1s;
  background-color: #fff;
  padding: 30px 0 30px;
  position: absolute;
  top: 100%;
  overflow-y: auto;
  left: 0;
  right: 0;
  border: 1px solid #E4E4E4;
  box-shadow: 7px 10px 37px rgba(11, 69, 127, 0.07);
}

.sticky-header nav .modelsGrid > div > div {
  row-gap: 40px;
  column-gap: 50px;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  grid-template-rows: 1fr;
}

.sticky-header nav .modelsGrid a {
  text-decoration: none !important;
}

.sticky-header nav .modelsGrid-el {
  flex-grow: 1;
  row-gap: 10px;
}

.sticky-header nav .modelsGrid-el img {
  max-height: 137px;
  height: 100%;
}

.sticky-header nav .modelsGrid-el > div {
  row-gap: 2px;
}

.sticky-header nav .modelsGrid-el > div h2 {
  font-family: "Haval", "sans-serif" !important;
  font-style: normal;
  font-weight: 600;
  font-size: 20px;
  line-height: 140%;
  color: #000;
}

.sticky-header nav .modelsGrid-el > div p {
  font-weight: 400;
  font-size: 16px;
  line-height: 150%;
  color: #949494;
}

.sticky-header nav .modelsGrid.active {
  opacity: 1;
  pointer-events: auto;
}

.sticky-header nav .ownerGrid {
  opacity: 0;
  transition: opacity .3s ease;
  pointer-events: none;
  transition-delay: .1s;
  background-color: #fff;
  padding: 12px 10px;
  position: absolute;
  top: 197%;
  overflow-y: auto;
  left: 0;
  right: 0;
  border: 1px solid #E4E4E4;
  box-shadow: 7px 10px 37px rgba(11, 69, 127, 0.07);
}

@media (max-width: 1400px) {
  .sticky-header nav .ownerGrid {
    top: 210%;
  }
}

.sticky-header nav .ownerGrid > div > div {
  row-gap: 40px;
  column-gap: 50px;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  grid-template-rows: 1fr;
}

.sticky-header nav .ownerGrid a {
  text-decoration: none !important;
}

.sticky-header nav .ownerGrid-el {
  flex-grow: 1;
  row-gap: 10px;
}

.sticky-header nav .ownerGrid-el img {
  max-height: 137px;
  height: 100%;
}

.sticky-header nav .ownerGrid-el > div {
  row-gap: 2px;
}

.sticky-header nav .ownerGrid-el > div h2 {
  font-family: "Haval", "sans-serif" !important;
  font-style: normal;
  font-weight: 600;
  font-size: 20px;
  line-height: 140%;
  color: #000;
}

.sticky-header nav .ownerGrid-el > div p {
  font-weight: 400;
  font-size: 16px;
  line-height: 150%;
  color: #949494;
}

.sticky-header nav .ownerGrid.active {
  opacity: 1;
  pointer-events: auto;
}

.sticky-header .burger {
  display: block;
  position: relative;
  width: 50px;
  height: 30px;
  cursor: pointer;
  padding: 0 !important;
}

.sticky-header .burger::after, .sticky-header .burger::before, .sticky-header .burger div {
  position: absolute;
  width: 50px;
  height: 3px;
  background: #fff;
}

.sticky-header .burger::after, .sticky-header .burger::before {
  content: '';
}

.sticky-header .burger::after {
  bottom: 3.5px;
  transform: rotate(0deg);
  transition: bottom .3s ease, transform .3s ease, width .3s ease;
  transition-delay: .3s, 0s, .6s;
}

.sticky-header .burger::before {
  top: 3.5px;
  transform: rotate(0deg);
  transition: top .3s ease, transform .3s ease, width .3s ease;
  transition-delay: .3s, 0s, .6s;
}

.sticky-header .burger div {
  background: linear-gradient(90deg, #fff 0, #fff 44px, transparent 44px, transparent 100%);
  transition: width .3s ease;
  transition-delay: .6s;
}

.sticky-header .burger.active div {
  width: 0;
  transition-delay: 0s;
}

.sticky-header .burger.active::after {
  bottom: 13.5px;
  width: 37px;
  transform: rotate(45deg);
  transition-delay: 0s, .3s, 0s;
}

.sticky-header .burger.active::before {
  top: 13.5px;
  width: 37px;
  transform: rotate(-45deg);
  transition-delay: 0s, .3s, 0s;
}

@media (min-width: 992px) and (max-width: 1400px) {
  .sticky-header {
    height: 76px;
  }
  .sticky-header nav .modelsGrid > div > div {
    grid-template-columns: 1fr 1fr 1fr;
  }
}

@media (min-width: 576px) and (max-width: 992px) {
  .sticky-header {
    height: 56px;
  }
  .sticky-header > div > div .logos #logo {
    height: 16px;
  }
  .sticky-header nav {
    column-gap: 16px;
  }
  .sticky-header nav .modelsGrid > div > div {
    grid-template-columns: 1fr 1fr 1fr;
    row-gap: 20px;
    column-gap: 10px;
  }
  .sticky-header nav .modelsGrid > div h2, .sticky-header nav .modelsGrid > div p {
    font-size: 14px;
  }
  .sticky-header nav .modelsGrid img {
    width: 100%;
    height: unset;
    max-height: unset;
  }
  .sticky-header nav .link {
    font-size: 14px;
    padding: 8px 0;
  }
}

@media (max-width: 575px) {
  .sticky-header {
    height: 56px;
  }
  .sticky-header > div > div .logos #logo {
    height: 16px;
  }
}

.main_slider {
  padding: 0;
  z-index: 0;
  position: relative;
  overflow-x: hidden;
}

.main_slider .swiper-slide {
  position: relative;
}

.main_slider .swiper-slide .photo {
  width: 100%;
  object-fit: cover;
  height: auto;
}

.main_slider .swiper-slide .block {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  top: 0;
  z-index: 1;
}

.main_slider .swiper-slide .block-text-center {
  z-index: 2;
  align-items: center;
  width: 100%;
  height: 100%;
  padding-top: 94px;
  row-gap: 22px;
}

@media (max-width: 992px) {
  .main_slider .swiper-slide .block-text-center {
    align-items: flex-start !important;
    row-gap: 14px !important;
    padding-top: unset !important;
  }
  .main_slider .swiper-slide .block-text-center h2 {
    text-align: left !important;
  }
  .main_slider .swiper-slide .block-text-center p {
    text-align: left !important;
    font-size: 16px !important;
    padding-top: 10px !important;
  }
}

@media (max-width: 575.96px) {
  .main_slider .swiper-slide .block-text-center {
    row-gap: 10px !important;
  }
  .main_slider .swiper-slide .block-text-center h2 {
    text-align: left !important;
    font-size: 24px !important;
  }
  .main_slider .swiper-slide .block-text-center p {
    text-align: left !important;
    font-size: 12px !important;
    padding-top: 10px !important;
  }
}

.main_slider .swiper-slide .block-text-center h2 {
  font-family: "Haval", "sans-serif" !important;
  font-size: 34.6px;
  line-height: 120%;
  color: #fff;
  font-weight: 400;
  text-align: center;
  text-transform: uppercase;
}

.main_slider .swiper-slide .block-text-center p {
  font-family: 'PF DinDisplay Pro', sans-serif;
  font-weight: 400;
  font-size: 22px;
  line-height: 174%;
  text-align: center;
  text-transform: uppercase;
  color: #000;
}

.main_slider .swiper-slide .block-text-center p.gradient {
  position: relative;
  color: white;
  margin-top: 10px;
}

@media (max-width: 992px) {
  .main_slider .swiper-slide .block-text-center p.gradient {
    position: static !important;
    color: #000 !important;
    margin-top: unset !important;
  }
  .main_slider .swiper-slide .block-text-center p.gradient:after, .main_slider .swiper-slide .block-text-center p.gradient:before {
    content: unset !important;
  }
}

.main_slider .swiper-slide .block-text-center p.gradient:after {
  content: "";
  position: absolute;
  background: linear-gradient(90deg, #516E90 10.74%, rgba(84, 117, 155, 0) 100%);
  height: 100%;
  width: 41%;
  left: 0;
  top: 0;
  transform: scaleX(-1.5);
  z-index: -1;
}

.main_slider .swiper-slide .block-text-center p.gradient:before {
  content: "";
  position: absolute;
  background: linear-gradient(90deg, #516E90 10.74%, rgba(84, 117, 155, 0) 100%);
  height: 100%;
  width: 49%;
  right: 0;
  z-index: -1;
}

.main_slider .swiper-slide .block-text {
  z-index: 2;
  row-gap: 14px;
  padding-bottom: 80px;
}

.main_slider .swiper-slide .block-text h2 {
  font-family: "Haval", "sans-serif" !important;
  font-style: normal;
  font-weight: 400;
  font-size: 40px;
  line-height: 120%;
  color: #fff;
}

.main_slider .swiper-slide .block-text ul, .main_slider .swiper-slide .block-text li, .main_slider .swiper-slide .block-text p {
  font-weight: 400;
  font-size: 16px;
  line-height: 150%;
  color: #fff;
}

.main_slider .swiper-slide .block-text ul {
  padding-left: 25px;
}

.main_slider .swiper-slide .block-text-btns {
  gap: 14px;
}

.main_slider .swiper-slide .block-text-spec {
  position: relative;
}

.main_slider .swiper-slide .block-text-spec .addresses {
  position: absolute;
  bottom: -70px;
}

.main_slider .swiper-slide .block-text-spec .addresses a {
  color: white;
}

.main_slider .swiper-slide .block-text-spec .addresses a:hover {
  color: white;
}

.main_slider .swiper-button-next, .main_slider .swiper-button-prev {
  height: 40px;
  width: 40px;
}

.main_slider .swiper-button-next img, .main_slider .swiper-button-prev img {
  width: 100%;
  height: 100%;
}

.main_slider .swiper-button-next::after, .main_slider .swiper-button-prev::after {
  content: unset;
}

.main_slider .paginationWrap {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
}

.main_slider .paginationWrap .swiper-pagination {
  column-gap: 10px;
  padding: 0 0 30px 0;
  position: relative;
}

.main_slider .paginationWrap .swiper-pagination-bullet {
  width: 45px;
  height: 20px;
  background: none;
  border-radius: 0;
  opacity: 1;
  position: relative;
  top: 50%;
}

.main_slider .paginationWrap .swiper-pagination-bullet:after {
  content: "";
  height: 3px;
  width: 100%;
  display: block;
  position: relative;
  top: 50%;
  background-color: #9B9B9B;
}

.main_slider .paginationWrap .swiper-pagination-bullet-active:after {
  content: "";
  height: 3px;
  width: 100%;
  position: relative;
  top: 50%;
  display: block;
  background-color: #fff;
}

.main_slider-btns {
  row-gap: 16px;
  position: absolute;
  top: 36px;
  right: 0;
  z-index: 2;
  width: 300px;
}

.main_slider-btns a {
  box-shadow: 0px 1px 4px 0px rgba(0, 0, 0, 0.2);
}

@media (max-width: 1400px) {
  .main_slider .swiper-slide .photo {
    height: 600px;
  }
}

@media (min-width: 992px) and (max-width: 1399.96px) {
  .main_slider .swiper-slide .block-text {
    margin-left: 40px;
  }
  .main_slider .swiper-slide .block-text-spec {
    padding-bottom: 40px;
  }
  .main_slider .paginationWrap .swiper-pagination {
    margin-left: 40px;
  }
}

@media (min-width: 576px) and (max-width: 991.96px) {
  .main_slider-btns {
    position: unset;
    top: unset;
    right: unset;
    z-index: unset;
    padding: 50px 0;
    margin: 0 auto;
    width: 100%;
    gap: 16px;
    flex-direction: row !important;
  }
  .main_slider .swiper-slide .photo {
    height: 800px;
  }
  .main_slider .swiper-slide .block {
    padding-top: 70px;
  }
  .main_slider .swiper-slide .block-text {
    padding: 0 13px;
  }
  .main_slider .swiper-slide .block-text h2.small {
    font-size: 32px;
  }
  .main_slider .swiper-slide .block-text-btns {
    max-width: 310px;
  }
  .main_slider .swiper-slide .block-text-spec .addresses {
    bottom: -328px;
  }
  .main_slider .swiper-slide .block-text-spec .addresses span {
    font-weight: 800;
  }
}

@media (max-width: 575.96px) {
  .main_slider-btns {
    position: unset;
    top: unset;
    right: unset;
    z-index: unset;
    padding: 40px 0;
    width: calc(100% - 20px);
    margin: 0 auto;
    gap: 16px;
  }
  .main_slider .swiper-slide .photo {
    height: 560px;
  }
  .main_slider .swiper-slide .block {
    padding: 50px 20px 0 20px;
  }
  .main_slider .swiper-slide .block-text {
    padding-bottom: 0;
  }
  .main_slider .swiper-slide .block-text h2 {
    font-size: 24px;
  }
  .main_slider .swiper-slide .block-text h2.small {
    font-size: 18px;
  }
  .main_slider .swiper-slide .block-text p {
    font-size: 14px;
  }
  .main_slider .swiper-slide .block-text-spec {
    row-gap: 6px;
  }
  .main_slider .swiper-slide .block-text-spec .preheader {
    font-size: 16px !important;
  }
  .main_slider .swiper-slide .block-text-spec .description {
    font-size: 14px !important;
  }
  .main_slider .swiper-slide .block-text-spec h2 {
    font-size: 22px;
  }
  .main_slider .swiper-slide .block-text-spec .addresses {
    font-size: 12px !important;
    bottom: -206px;
  }
  .main_slider .paginationWrap .swiper-pagination {
    column-gap: 6px;
  }
  .main_slider .paginationWrap .swiper-pagination-bullet {
    width: 25px;
    height: 10px;
  }
}

.favs {
  padding: 60px 0 75px;
}

.favs > div {
  gap: 30px;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-template-rows: 1fr;
}

.favs-item {
  background: #fff;
  padding: 32.5px 40px;
  gap: 20px;
  box-shadow: 7px 10px 37px rgba(11, 69, 127, 0.07);
}

.favs-item p {
  font-weight: 600;
  font-size: 16px;
  line-height: 150%;
  color: #000;
}

.favs-item img {
  width: 50px;
  height: 50px;
}

@media (min-width: 992px) and (max-width: 1400px) {
  .favs > div {
    gap: 20px;
  }
  .favs-item {
    padding: 21.5px 20px;
  }
}

@media (min-width: 576px) and (max-width: 992px) {
  .favs {
    padding: 40px 0 50px;
  }
  .favs > div {
    gap: 10px;
    grid-template-columns: 1fr;
  }
  .favs-item {
    padding: 20px 30px;
  }
  .favs-item p {
    font-weight: 600;
    font-size: 16px;
    line-height: 150%;
    color: #000;
  }
}

@media (max-width: 575px) {
  .favs {
    padding: 40px 0 30px;
  }
  .favs > div {
    gap: 10px;
    grid-template-columns: 1fr;
  }
  .favs-item {
    padding: 20px;
    column-gap: 16px;
  }
  .favs-item p {
    font-size: 14px;
  }
}

.timer {
  padding: 0 0 70px;
}

.timer-labels {
  margin-top: 5px;
}

.timer-labels div {
  font-family: "Haval", "sans-serif" !important;
  font-size: 16px;
  line-height: 110%;
  color: #fff;
}

@media (min-width: 992px) {
  .timer-labels div {
    padding-left: 0;
  }
}

@media (max-width: 767.96px) {
  .timer-labels div {
    font-size: 10px;
  }
}

@media (max-width: 575.96px) and (min-width: 576px) {
  .timer-labels div:nth-child(3) {
    padding-left: 0;
  }
}

@media (max-width: 767.96px) {
  .timer-labels div:nth-child(3) {
    padding-left: 0;
  }
}

.timer-container {
  background: #181B1D;
  padding: 50px 35px;
  display: flex;
  flex-direction: column;
  row-gap: 26px;
}

@media (max-width: 1400px) and (min-width: 991.96px) {
  .timer-container {
    padding: 50px;
  }
}

@media (max-width: 992px) and (min-width: 575.96px) {
  .timer-container {
    padding: 40px 20px;
  }
}

@media (max-width: 575.96px) {
  .timer-container {
    padding: 30px 11.5px;
  }
}

.timer-title {
  font-family: "Haval", "sans-serif" !important;
  font-size: 40px;
  line-height: 110%;
  color: #181B1D;
}

@media (max-width: 1400px) {
  .timer-title {
    font-size: 30px;
  }
}

@media (max-width: 992px) {
  .timer-title {
    font-size: 32px;
  }
}

@media (max-width: 575.96px) {
  .timer-title {
    font-size: 20px;
  }
}

@media (max-width: 1400px) {
  .timer-content {
    flex-direction: column;
    align-items: center;
    row-gap: 40px;
  }
}

@media (max-width: 992.96px) {
  .timer-content {
    align-items: center;
    row-gap: 30px;
  }
}

@media (max-width: 575.96px) {
  .timer-content {
    align-items: center;
    row-gap: 24px;
  }
}

.timer-form {
  row-gap: 26px;
}

.timer-form p {
  color: #fff;
  font-size: 16px;
  line-height: 130%;
  max-width: 300px;
}

.timer-form p a {
  color: #fff;
}

@media (max-width: 992px) and (min-width: 576px) {
  .timer-form p {
    max-width: none;
  }
}

@media (max-width: 575.96px) {
  .timer-form p {
    font-size: 12px;
    max-width: 300px;
  }
}

.timer-form input {
  font-size: 16px;
  line-height: 150%;
  font-weight: 400;
  padding: 12px 15px;
  border: 1px solid #a4a4a4;
  font-family: "Haval", "sans-serif" !important;
  outline: none;
}

@media (max-width: 575.96px) {
  .timer-form input {
    font-size: 14px;
  }
}

@media (min-width: 1400px) {
  .timer-form {
    width: 380px;
  }
}

@media (min-width: 992px) and (max-width: 1399.96px) {
  .timer-form {
    width: 700px;
  }
}

@media (min-width: 768px) and (max-width: 991.96px) {
  .timer-form {
    width: 640px;
  }
}

@media (min-width: 575.96px) and (max-width: 767.96px) {
  .timer-form {
    width: 420px;
  }
}

@media (max-width: 575.96px) {
  .timer-form {
    width: 100%;
    row-gap: 12px;
  }
}

@media (max-width: 575.96px) {
  .timer-form button {
    font-size: 13px;
  }
}

.flip-clock-wrapper {
  width: fit-content;
  margin: 0;
}

.flip-clock-wrapper .flip {
  box-shadow: none;
  background: none;
  height: 120px;
  /* Default height */
  width: 80px;
  /* Default width */
  margin-right: 10px;
  border-radius: 5px;
}

@media (min-width: 992px) and (max-width: 1399.96px) {
  .flip-clock-wrapper .flip {
    height: 100px;
    /* Reduced height */
    width: 90px;
    /* Reduced width */
  }
}

@media (min-width: 767.96px) and (max-width: 991.96px) {
  .flip-clock-wrapper .flip {
    height: 84px;
    /* Reduced height */
    width: 52px;
  }
}

@media (max-width: 767.96px) {
  .flip-clock-wrapper .flip {
    height: 44px;
    /* Further reduced height */
    width: 30px;
    /* Further reduced width */
    margin-right: 2px;
    padding-left: 30px;
  }
}

.flip-clock-wrapper ul {
  margin: 0;
}

.flip-clock-wrapper ul li a div div.inn {
  text-shadow: none;
  color: #00CABF;
  background: #25252e !important;
  display: flex;
  align-items: center;
  flex-direction: column;
  font-size: 80px;
  line-height: 170%;
  font-family: "Haval", "sans-serif" !important;
}

@media (max-width: 1399.96px) and (min-width: 991.96px) {
  .flip-clock-wrapper ul.flip li a div div.inn {
    line-height: 115%;
  }
}

@media (max-width: 992px) {
  .flip-clock-wrapper ul.flip li a div div.inn {
    font-size: 50px;
    line-height: 150%;
  }
}

@media (max-width: 767.96px) {
  .flip-clock-wrapper ul.flip li a div div.inn {
    font-size: 30px;
    line-height: 155%;
  }
}

.flip-clock-wrapper ul li a div.up:after {
  top: 98%;
  height: 2px;
  background: #949494;
}

.flip-clock-wrapper ul.flip:nth-child(3),
.flip-clock-wrapper ul.flip:nth-child(4),
.flip-clock-wrapper ul.flip:nth-child(9),
.flip-clock-wrapper ul.flip:nth-child(6) {
  margin-right: 22px;
}

@media (max-width: 991.96px) {
  .flip-clock-wrapper ul.flip:nth-child(3),
.flip-clock-wrapper ul.flip:nth-child(4),
.flip-clock-wrapper ul.flip:nth-child(9),
.flip-clock-wrapper ul.flip:nth-child(6) {
    margin-right: 12px;
  }
}

@media (max-width: 575.96px) {
  .flip-clock-wrapper ul.flip:nth-child(3),
.flip-clock-wrapper ul.flip:nth-child(4),
.flip-clock-wrapper ul.flip:nth-child(9),
.flip-clock-wrapper ul.flip:nth-child(6) {
    margin-right: 8px;
  }
}

#timer .flip-clock-divider {
  display: none;
}

.flip-clock-label {
  display: block;
  text-align: center;
  font-size: 18px;
  color: #000;
  margin-top: 10px;
  width: 100%;
}

.flip-clock-wrapper ul.play li.flip-clock-before .up .shadow,
.flip-clock-wrapper ul.play li.flip-clock-active .up .shadow,
.flip-clock-wrapper ul.play li.flip-clock-before .down .shadow,
.flip-clock-wrapper ul.play li.flip-clock-active .down .shadow {
  background: none;
}

.models {
  padding: 75px 0;
  overflow: hidden;
}

.models > div {
  row-gap: 40px;
}

.models .swiper-button-next, .models .swiper-button-prev {
  top: calc(50% + 75px);
  height: 40px;
  width: 40px;
}

.models .swiper-button-next::after, .models .swiper-button-prev::after {
  content: unset;
}

.models .swiper-button-next {
  right: 30px;
}

.models .swiper-button-prev {
  left: 30px;
}

.modelsSwiperWrap {
  row-gap: 26px;
}

.modelsSwiper .swiper-slide {
  row-gap: 30px;
}

.modelsSwiper .swiper-slide .photo {
  position: relative;
  opacity: 0;
  transition: opacity .3s ease;
}

.modelsSwiper .swiper-slide .photo img {
  display: block;
  position: relative;
  width: 100%;
  z-index: 1;
}

.modelsSwiper .swiper-slide .desc {
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s ease;
}

.modelsSwiper .swiper-slide .desc {
  column-gap: 100px;
}

.modelsSwiper .swiper-slide .desc-info {
  row-gap: 6px;
}

.modelsSwiper .swiper-slide .desc-name {
  font-family: "Haval", "sans-serif" !important;
  font-size: 40px;
  line-height: 120%;
  color: #000;
  font-weight: 600;
}

.modelsSwiper .swiper-slide .desc-class {
  font-size: 16px;
  line-height: 150%;
  color: #949494;
  font-weight: 400;
}

.modelsSwiper .swiper-slide .desc-price {
  font-size: 22px;
  line-height: 150%;
  color: #000;
  font-weight: 400;
}

.modelsSwiper .swiper-slide .desc-btns {
  gap: 12px;
}

.modelsSwiper .swiper-slide.swiper-slide-active .desc, .modelsSwiper .swiper-slide.swiper-slide-active .photo > div {
  pointer-events: auto;
  opacity: 1;
}

.modelsSwiper .swiper-slide.swiper-slide-next .photo, .modelsSwiper .swiper-slide.swiper-slide-prev .photo, .modelsSwiper .swiper-slide.swiper-slide-active .photo {
  opacity: 1;
}

.models .paginationWrap {
  overflow-y: auto;
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.models .paginationWrap::-webkit-scrollbar {
  width: 0;
  height: 0;
  display: none;
}

.models .paginationWrap .swiper-pagination {
  position: unset;
  overflow-x: visible;
}

.models .paginationWrap .swiper-pagination .swiper-pagination-bullet {
  user-select: none;
  white-space: nowrap;
  position: relative;
  border-radius: 0;
  background: none;
  opacity: 1;
  width: unset;
  height: unset;
  margin: 0 !important;
  padding: 0 26px 10px;
  font-size: 18px;
  line-height: 150%;
  font-weight: 400;
  outline: none;
}

.models .paginationWrap .swiper-pagination .swiper-pagination-bullet:after {
  content: "";
  height: 2px;
  left: 0;
  right: 0;
  bottom: 0;
  display: block;
  position: absolute;
  background-color: #DFDFDF;
}

.models .paginationWrap .swiper-pagination .swiper-pagination-bullet-active:after {
  background-color: #181B1D;
  height: 3px;
}

@media (min-width: 576px) and (max-width: 991px) {
  .models {
    padding: 50px 0;
  }
  .models > div {
    row-gap: 30px;
  }
  .models .paginationWrap .swiper-pagination .swiper-pagination-bullet {
    font-size: 16px;
  }
  .modelsSwiperWrap {
    row-gap: 20px;
  }
  .modelsSwiper .swiper-slide .desc {
    column-gap: 50px;
  }
  .modelsSwiper .swiper-slide .desc-name {
    font-size: 32px;
  }
}

@media (max-width: 575px) {
  .models {
    padding: 30px 0;
  }
  .models > div {
    row-gap: 20px;
  }
  .models .paginationWrap .swiper-pagination .swiper-pagination-bullet {
    font-size: 14px;
  }
  .modelsSwiperWrap {
    row-gap: 20px;
  }
  .modelsSwiper .swiper-slide {
    row-gap: 20px;
  }
  .modelsSwiper .swiper-slide .desc {
    row-gap: 20px;
  }
  .modelsSwiper .swiper-slide .desc-name {
    font-size: 26px;
  }
  .modelsSwiper .swiper-slide .desc-class {
    font-size: 14px;
  }
  .modelsSwiper .swiper-slide .desc-price {
    font-size: 16px;
  }
}

.chooseCar {
  height: 572px;
  overflow: hidden;
}

.chooseCarWrapper {
  padding: 75px 0;
  background: url("/assets/img/main/podbor.webp") center no-repeat #181B1D;
  background-size: cover;
}

.chooseCarFirstBlock {
  row-gap: 20px;
  padding: 100px 65px 45px;
}

.chooseCarFirstBlock-title {
  font-family: "Haval", "sans-serif" !important;
  font-weight: 400;
  font-size: 45px;
  color: #fff;
  line-height: 110%;
}

.chooseCarFirstBlock-img {
  width: 100%;
}

.chooseCarFirstBlock-description {
  font-family: "Haval", "sans-serif" !important;
  font-size: 24px;
  line-height: 150%;
  color: #fff;
  font-weight: 400;
}

.chooseCarStageHeader, .chooseCarStageHeader span {
  font-family: "Haval", "sans-serif" !important;
  font-weight: 600;
  font-size: 32px;
  line-height: 110%;
  color: #000;
}

.chooseCarStageHeader span {
  color: #949494;
  white-space: nowrap;
}

.chooseCarStageHeaderWrapper {
  row-gap: 20px;
}

.chooseCarStageDescription {
  font-weight: 600;
  font-size: 16px;
  line-height: 110%;
  color: #000;
}

.chooseCarStageCounter {
  font-weight: 400;
  font-size: 16px;
  line-height: 150%;
  color: #A4A4A4;
}

.chooseCarStageSwitchers {
  column-gap: 10px;
}

.chooseCarStageControls {
  column-gap: 20px;
  width: 100%;
  max-width: 320px;
}

.chooseCarStageControlsWrapper {
  row-gap: 10px;
}

.chooseCarStageContent {
  row-gap: 20px;
}

.chooseCarRadioButtons {
  row-gap: 10px;
}

.chooseCarRadioButtons label {
  display: block;
  font-weight: 400;
  font-size: 16px;
  line-height: 150%;
  color: #000;
  padding-left: 32px;
  position: relative;
  cursor: pointer;
}

.chooseCarRadioButtons label input {
  position: absolute;
  opacity: 0;
  z-index: -1;
}

.chooseCarRadioButtons label input + span {
  position: absolute;
  top: 2px;
  left: 0;
  display: block;
  border: 1px solid black;
  width: 20px;
  height: 20px;
}

.chooseCarRadioButtons label input:checked + span {
  background: url("/media/quiz/check.svg") 50% no-repeat;
}

.chooseCarSelects {
  row-gap: 20px;
}

.chooseCarSelectsEl {
  position: relative;
  background-color: #fff;
  z-index: 0;
}

.chooseCarSelectsEl select {
  padding: 12px 52px 12px 16px;
  line-height: 150%;
  font-weight: 600;
  font-size: 16px;
  outline: none;
  border: 1px solid #000;
  border-radius: 0;
  background: transparent;
  appearance: none;
  -moz-appearance: none;
  -webkit-appearance: none;
  width: 100%;
  cursor: pointer;
}

.chooseCarSelectsEl::after {
  content: url("/assets/img/select/chevron-down_b.svg");
  width: 24px;
  height: 24px;
  top: 13px;
  right: 13px;
  position: absolute;
  z-index: -1;
}

.chooseCarSelectsEl option {
  color: #000;
}

.chooseCarColors {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 9px;
  row-gap: 22px;
  max-width: 232px;
}

.chooseCarColors label {
  width: 74px;
  height: 44px;
  display: block;
  position: relative;
  cursor: pointer;
}

.chooseCarColors label input {
  position: absolute;
  z-index: -1;
  opacity: 0;
}

.chooseCarColors label input + span {
  display: block;
  width: 74px;
  height: 44px;
  position: absolute;
  top: 0;
  left: 0;
}

.chooseCarColors label input:checked + span {
  border: 3px solid black;
}

.chooseCarColors label:hover input + span {
  border: 3px solid black;
  width: 74px;
  height: 44px;
}

.chooseCarSecondBlock, .chooseCarThirdBlock, .chooseCarFourBlock, .chooseCarFiveBlock, .chooseCarSixBlock, .chooseCarFormBlock, .chooseCarFinalBlock {
  padding: 90px 104px;
}

.chooseCarSecondBlock, .chooseCarThirdBlock, .chooseCarFourBlock, .chooseCarFiveBlock, .chooseCarSixBlock {
  row-gap: 10px;
}

.chooseCarSecondBlockImg img, .chooseCarThirdBlockImg img, .chooseCarFourBlockImg img, .chooseCarFiveBlockImg img, .chooseCarSixBlockImg img {
  height: 260px;
}

.chooseCarSecondBlock .chooseCarStageContent {
  row-gap: 36px;
}

.chooseCarFormBlockImg, .chooseCarFinalBlockImg {
  z-index: 0;
}

.chooseCarFormBlockImg img, .chooseCarFinalBlockImg img {
  height: 350px;
}

.chooseCarFormBlockInput {
  position: relative;
}

.chooseCarFormBlockInput input {
  padding: 12px 13px 12px 44px;
  background: #FFF;
  border: 1px solid #A4A4A4;
  border-radius: 0;
  font-weight: 600;
  font-size: 16px;
  line-height: 150%;
  width: 100%;
}

.chooseCarFormBlockInput .icon-container {
  position: absolute;
  top: 15px;
  padding: 0 0 0 12px;
}

.chooseCarFormBlockInput .icon-container .icon-phone {
  background: url(/assets/img/phone.svg) no-repeat;
  background-size: contain;
  height: 20px;
  width: 20px;
}

.chooseCarFormBlockPolicy p, .chooseCarFormBlockPolicy a {
  color: #a4a4a4;
  font-size: 14px;
  line-height: 150%;
  font-weight: 400;
}

.chooseCarFormBlockPolicy a {
  text-decoration: unset;
}

.chooseCarFormBlock .chooseCarStageContent {
  width: 420px;
  z-index: 1;
}

.chooseCarFormBlock .chooseCarStageContent .button {
  width: 90%;
}

.chooseCarFinalBlock .chooseCarStageContent {
  row-gap: 30px;
  width: 400px;
}

.chooseCarFinalBlockDone {
  width: 50px;
  height: 50px;
}

@media (min-width: 992px) and (max-width: 1399.96px) {
  .chooseCarFirstBlock {
    padding: 100px 0 45px;
    overflow: hidden;
  }
  .chooseCarFirstBlock-img {
    width: 100%;
  }
  .chooseCarFormBlockImg img, .chooseCarFinalBlockImg img {
    height: 285px;
  }
  .chooseCarStageHeader, .chooseCarStageHeader span {
    font-size: 26px;
  }
  .chooseCarStageControls {
    max-width: 295px;
  }
  .chooseCarSecondBlock, .chooseCarThirdBlock, .chooseCarFourBlock, .chooseCarFiveBlock, .chooseCarSixBlock, .chooseCarFormBlock, .chooseCarFinalBlock {
    padding: 75px 20px 75px 50px;
  }
  .chooseCarSecondBlockImg img, .chooseCarThirdBlockImg img, .chooseCarFourBlockImg img, .chooseCarFiveBlockImg img, .chooseCarSixBlockImg img {
    height: 248px;
  }
  .chooseCarSecondBlock .chooseCarStageContent {
    row-gap: 30px;
  }
  .chooseCarFormBlock .chooseCarStageContent {
    width: 357px;
  }
}

@media (min-width: 576px) and (max-width: 991.96px) {
  .chooseCar {
    height: 450px;
  }
  .chooseCarWrapper {
    padding: 50px 0;
  }
  .chooseCarFirstBlock {
    padding: 60px 0 20px;
  }
  .chooseCarFirstBlock-title {
    font-size: 32px;
  }
  .chooseCarFirstBlock-imgAndBtnWrapper {
    row-gap: 35px;
  }
  .chooseCarStageHeader, .chooseCarStageHeader span {
    font-size: 20px;
  }
  .chooseCarStageDescription {
    font-size: 12px;
  }
  .chooseCarStageControls {
    max-width: 260px;
  }
  .chooseCarRadioButtons label {
    font-size: 14px;
    padding-left: 28px;
  }
  .chooseCarRadioButtons label input + span {
    width: 16px;
    height: 16px;
  }
  .chooseCarSelectsEl select {
    padding: 9.5px 52px 9.5px 15px;
    font-size: 14px;
  }
  .chooseCarSelectsEl::after {
    top: 9px;
    right: 16px;
  }
  .chooseCarColors {
    grid-template-columns: repeat(2, 1fr);
  }
  .chooseCarSecondBlock, .chooseCarThirdBlock, .chooseCarFourBlock, .chooseCarFiveBlock, .chooseCarSixBlock, .chooseCarFormBlock, .chooseCarFinalBlock {
    padding: 50px 20px 30px;
  }
  .chooseCarSecondBlockImg img, .chooseCarThirdBlockImg img, .chooseCarFourBlockImg img, .chooseCarFiveBlockImg img, .chooseCarSixBlockImg img {
    object-fit: contain;
    height: 135px;
    width: 280px;
  }
  .chooseCarFormBlockImg img, .chooseCarFinalBlockImg img {
    object-fit: contain;
    height: 135px;
    width: 280px;
  }
  .chooseCarFormBlockPolicy p, .chooseCarFormBlockPolicy a {
    font-size: 12px;
  }
  .chooseCarFormBlock .chooseCarStageHeader {
    min-width: 460px;
  }
  .chooseCarFormBlock .chooseCarStageContent {
    width: 260px;
  }
  .chooseCarFormBlock .chooseCarStageContent .button {
    width: 100%;
  }
}

@media (max-width: 575.96px) {
  .chooseCarWrapper {
    padding: 35px 0;
  }
  .chooseCarFirstBlock {
    padding: 50px 0 8px 20px;
    row-gap: 10px;
  }
  .chooseCarFirstBlock-title {
    font-size: 20px;
  }
  .chooseCarFirstBlock-description {
    font-size: 14px;
  }
  .chooseCarFirstBlock-img {
    width: 100%;
  }
  .chooseCarFirstBlock-imgAndBtnWrapper {
    row-gap: 20px;
  }
  .chooseCarStageHeader, .chooseCarStageHeader span {
    font-size: 16px;
  }
  .chooseCarStageHeaderWrapper {
    row-gap: 18px;
  }
  .chooseCarStageDescription {
    font-size: 14px;
  }
  .chooseCarStageControls {
    max-width: unset;
  }
  .chooseCarStageControlsWrapper {
    row-gap: 18px;
  }
  .chooseCarStageContent {
    row-gap: 18px;
  }
  .chooseCarSelectsEl select {
    padding: 9.5px 52px 9.5px 15px;
    font-size: 14px;
  }
  .chooseCarSelectsEl::after {
    top: 9px;
    right: 16px;
  }
  .chooseCarSecondBlock, .chooseCarThirdBlock, .chooseCarFourBlock, .chooseCarFiveBlock, .chooseCarSixBlock, .chooseCarFormBlock {
    padding: 50px 20px;
  }
  .chooseCarSecondBlockImg img, .chooseCarThirdBlockImg img, .chooseCarFourBlockImg img, .chooseCarFiveBlockImg img, .chooseCarSixBlockImg img {
    height: 120px;
  }
  .chooseCarFormBlockImg img {
    position: unset;
    height: 150px;
  }
  .chooseCarFormBlockPolicy p, .chooseCarFormBlockPolicy a {
    font-size: 12px;
  }
  .chooseCarFormBlock .chooseCarStageContent {
    width: 100%;
  }
  .chooseCarFormBlock .chooseCarStageContent .button {
    font-size: 11px;
    padding: 17px 25px 12px 15px;
    width: 100%;
  }
  .chooseCarFinalBlock {
    padding: 0;
    row-gap: 20px;
  }
  .chooseCarFinalBlock .chooseCarStageContent {
    padding: 0 20px;
    row-gap: 20px;
    width: 100%;
  }
  .chooseCarFinalBlockImg img {
    position: unset;
    height: 215px;
    width: 100%;
    object-fit: cover;
    object-position: left;
  }
}

.tradeInAssessment {
  row-gap: 40px;
}

.tradeInAssessmentWrapper {
  padding: 75px 0 0;
}

.tradeInAssessment-header {
  color: #fff;
}

.tradeInAssessmentContent {
  padding: 70px 0 95px;
  background-image: url("/assets/img/main/ocenka.webp");
  background-size: cover;
  background-position: center;
  position: relative;
  z-index: 0;
}

.tradeInAssessmentContent:after {
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0) 61.57%);
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  z-index: -1;
  content: '';
}

.tradeInAssessmentForm {
  row-gap: 20px;
  max-width: 380px;
}

.tradeInAssessmentField input {
  font-size: 16px;
  line-height: 150%;
  font-weight: 400;
  padding: 12px 15px;
  border: 1px solid #a4a4a4;
  font-family: "Haval", "sans-serif" !important;
  outline: none;
}

.tradeInAssessmentPolicy p {
  color: #fff;
  font-size: 16px;
  line-height: 120%;
}

.tradeInAssessmentPolicy p a {
  color: #fff;
  text-decoration: none;
}

@media (min-width: 992px) and (max-width: 1399.96px) {
  .tradeInAssessmentWrapper {
    padding: 85px 0;
  }
}

@media (min-width: 576px) and (max-width: 991.96px) {
  .tradeInAssessmentWrapper {
    padding: 50px 0;
  }
  .tradeInAssessmentContent {
    padding: 70px 0;
  }
}

@media (max-width: 575.96px) {
  .tradeInAssessment {
    row-gap: 20px;
  }
  .tradeInAssessmentWrapper {
    padding: 35px 0;
  }
  .tradeInAssessmentContent {
    padding: 60px 0;
    background-position: 85% 75%;
  }
  .tradeInAssessmentField input {
    font-size: 14px;
    padding: 8px 15px;
  }
}

.inStock {
  row-gap: 50px;
}

.inStockWrapper {
  padding: 75px 0;
}

.inStockGrid {
  grid-template-columns: repeat(3, 1fr);
  row-gap: 50px;
  column-gap: 30px;
}

.inStockCard {
  row-gap: 26px;
  width: 100%;
  overflow: hidden;
}

.inStockCardSlider {
  height: 270px;
  position: relative;
}

.inStockCardSliderFullscreen {
  position: absolute;
  width: 40px;
  height: 40px;
  top: 10px;
  right: 10px;
  z-index: 2;
}

.inStockCardSliderFullscreen img {
  width: 100%;
  height: 100%;
}

.inStockCardSlider .swiper-pagination {
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  display: flex;
  padding: 12px 18px;
}

.inStockCardSlider .swiper-pagination-bullet {
  background: unset;
  position: relative;
  display: flex;
  align-items: end;
  justify-content: center;
  flex-grow: 1;
  height: 100%;
  margin: 0 !important;
  opacity: 1;
}

.inStockCardSlider .swiper-pagination-bullet:after {
  content: '';
  height: 3px;
  width: calc(100% - 8px);
  background-color: #D6D6D6;
}

.inStockCardSlider .swiper-pagination-bullet-active:after {
  background-color: #949494;
}

.inStockCardSlider img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}

.inStockCardContent, .inStockCardText {
  row-gap: 20px;
}

.inStockCardHeader {
  font-family: "Haval", "sans-serif" !important;
  font-size: 20px;
  line-height: 110%;
  font-weight: 600;
  color: #000;
}

.inStockCardSpecials {
  row-gap: 14px;
}

.inStockCardSpecialsEl {
  column-gap: 14px;
}

.inStockCardSpecialsEl p {
  font-size: 16px;
  line-height: 110%;
  font-weight: 400;
  display: flex;
  flex-direction: row;
  gap: 8px;
}

.inStockCardSpecialsEl .popover {
  border: none;
  z-index: 10;
}

.inStockCardSpecialsEl .popover-content {
  display: flex;
  align-items: center;
  flex-direction: column;
  opacity: 0;
  visibility: hidden;
  position: absolute;
  bottom: 60%;
  left: -900%;
  z-index: 11;
  transform: translate(0, 10px);
  background-color: #FFFFFF;
  padding: 6px 10px;
  border-radius: 10px;
  box-shadow: 0 8px 16px 0 #00000014, 0 0 4px 0 #0000000A;
  width: 245px;
}

@media (max-width: 576px) {
  .inStockCardSpecialsEl .popover-content {
    left: -670%;
    width: 187px;
  }
}

.inStockCardSpecialsEl .popover-content p {
  text-align: center;
  font-weight: 600;
  font-size: 14px;
  line-height: 150%;
  color: #000;
  margin: 0;
}

@media (max-width: 576px) {
  .inStockCardSpecialsEl .popover-content p {
    font-size: 12px;
  }
}

.inStockCardSpecialsEl .popover:hover .popover-content {
  z-index: 10;
  opacity: 1;
  visibility: visible;
  transform: translate(0, -20px);
  transition: all 0.5s cubic-bezier(0.75, -0.02, 0.2, 0.97);
}

.inStockCardBtns {
  row-gap: 14px;
}

@media (min-width: 992px) and (max-width: 1399.96px) {
  .inStockCardSlider {
    height: 210px;
  }
  .inStockCardSliderFullscreen {
    top: 4px;
    right: 4px;
  }
  .inStockCardSlider .swiper-pagination {
    padding: 12px;
  }
}

@media (min-width: 576px) and (max-width: 991.96px) {
  .inStockWrapper {
    padding: 50px 0;
  }
  .inStockGrid {
    grid-template-columns: 1fr 1fr;
    row-gap: 70px;
    column-gap: 30px;
  }
  .inStockCardSlider {
    height: 210px;
  }
  .inStockCardSliderFullscreen {
    top: 4px;
    right: 4px;
  }
  .inStockCardSlider .swiper-pagination {
    padding: 12px;
  }
  .inStockCardContent, .inStockCardText {
    row-gap: 20px;
  }
  .inStockCardBtns {
    row-gap: 14px;
    max-width: unset;
  }
}

@media (max-width: 575.96px) {
  .inStock {
    row-gap: 30px;
  }
  .inStockWrapper {
    padding: 35px 0;
  }
  .inStockGrid {
    grid-template-columns: 1fr;
    row-gap: 30px;
  }
  .inStockCardSlider {
    height: 210px;
  }
  .inStockCardSliderFullscreen {
    top: 4px;
    right: 4px;
  }
  .inStockCardSlider .swiper-pagination {
    padding: 12px;
  }
  .inStockCardContent, .inStockCardText {
    row-gap: 20px;
  }
  .inStockCardBtns {
    row-gap: 14px;
  }
}

.autoInStock {
  row-gap: 50px;
}

.autoInStockWrapper {
  padding: 75px 0;
}

.autoInStock-headerWrapper select {
  max-width: 300px;
  color: #000;
  padding: 12px 52px 12px 16px;
  line-height: 150%;
  font-size: 16px;
  outline: none;
  border: 1px solid #000;
  border-radius: 0;
  font-family: "Haval", "sans-serif" !important;
  background: unset;
  appearance: none;
  -moz-appearance: none;
  -webkit-appearance: none;
  width: 100%;
  cursor: pointer;
}

@media (max-width: 1200px) {
  .autoInStock-headerWrapper select {
    max-width: none;
  }
}

@media (max-width: 1200px) {
  .autoInStock-headerWrapper {
    row-gap: 30px;
  }
}

.autoInStock-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(300px, 1fr));
  row-gap: 50px;
  column-gap: 30px;
}

@media (min-width: 576px) and (max-width: 991.96px) {
  .autoInStock-grid .inStockCard .inStockCardSlider {
    height: 270px;
  }
}

@media (max-width: 1200px) {
  .autoInStock-grid {
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  }
}

.autoInStock .btn-more {
  font-size: 16px;
  font-family: "Haval", "sans-serif" !important;
  cursor: pointer;
}

@media (min-width: 576px) and (max-width: 991.96px) {
  .autoInStockWrapper {
    padding: 50px 0;
  }
}

@media (max-width: 575.96px) {
  .autoInStock {
    row-gap: 30px;
  }
  .autoInStockWrapper {
    padding: 35px 0;
  }
  .autoInStock .btn-more {
    font-size: 14px;
  }
}

.selectCarEquipment {
  row-gap: 50px;
}

.selectCarEquipment h2 {
  color: #fff;
}

.selectCarEquipmentWrapper {
  padding: 75px 0;
  background: #25252e;
}

.selectCarEquipmentFilters {
  column-gap: 30px;
}

.selectCarEquipmentFilter {
  position: relative;
  z-index: 0;
  width: 100%;
}

.selectCarEquipmentFilter select {
  padding: 12px 52px 12px 16px;
  line-height: 150%;
  font-size: 16px;
  outline: none;
  border: 1px solid #fff;
  border-radius: 0;
  background: unset;
  appearance: none;
  -moz-appearance: none;
  -webkit-appearance: none;
  width: 100%;
  cursor: pointer;
}

.selectCarEquipmentFilter select[disabled] {
  border: 1px solid #a4a4a4;
  cursor: default;
}

.selectCarEquipmentFilter::after {
  content: url("/assets/img/select/chevron-down.svg");
  width: 24px;
  height: 24px;
  top: 13px;
  right: 13px;
  position: absolute;
  z-index: -1;
}

.selectCarEquipmentFilter option {
  color: #000;
}

.selectCarEquipmentFilter option:first-of-type {
  color: #A4A4A4;
}

.selectCarEquipmentCars {
  grid-template-columns: 1fr 1fr 1fr;
  column-gap: 30px;
  row-gap: 30px;
}

.selectCarEquipmentCar {
  row-gap: 14px;
}

.selectCarEquipmentCarNameInfoWrapper, .selectCarEquipmentCarBtnsWrapper {
  row-gap: 14px;
}

.selectCarEquipmentCarName {
  font-weight: 600;
  font-size: 16px;
  line-height: 110%;
  color: #9A9A9A;
  font-family: "Haval", "sans-serif" !important;
}

.selectCarEquipmentCarInfo {
  font-weight: 600;
  font-size: 20px;
  line-height: 110%;
  color: #fff;
  font-family: "Haval", "sans-serif" !important;
}

.selectCarEquipmentCarImg {
  row-gap: 14px;
}

.selectCarEquipmentCarImg img {
  height: 110px;
  object-position: center;
  object-fit: contain;
}

.selectCarEquipmentLoadMore {
  font-size: 16px;
  line-height: 120%;
  text-decoration: underline;
  color: #fff;
  font-family: "Haval", "sans-serif" !important;
  font-weight: 600;
  cursor: pointer;
}

@media (min-width: 576px) and (max-width: 991.96px) {
  .selectCarEquipment {
    row-gap: 40px;
  }
  .selectCarEquipmentWrapper {
    padding: 50px 0;
  }
  .selectCarEquipmentFilters {
    row-gap: 20px;
    column-gap: 10px;
  }
  .selectCarEquipmentFilter {
    width: calc(50% - 5px);
  }
  .selectCarEquipmentCar {
    row-gap: 10px;
  }
  .selectCarEquipmentCarNameInfoWrapper, .selectCarEquipmentCarBtnsWrapper {
    row-gap: 10px;
  }
  .selectCarEquipmentCarName {
    font-size: 14px;
  }
  .selectCarEquipmentCarInfo {
    font-size: 16px;
  }
  .selectCarEquipmentCarImg {
    row-gap: 10px;
  }
  .selectCarEquipmentCarImg img {
    width: 100%;
    height: 96px;
  }
}

@media (max-width: 575.96px) {
  .selectCarEquipment {
    row-gap: 30px;
  }
  .selectCarEquipmentWrapper {
    padding: 35px 0;
  }
  .selectCarEquipmentFilters {
    row-gap: 10px;
  }
  .selectCarEquipmentCars {
    grid-template-columns: 1fr;
    column-gap: 30px;
    row-gap: 30px;
  }
  .selectCarEquipmentCar {
    row-gap: 10px;
  }
  .selectCarEquipmentCarNameInfoWrapper, .selectCarEquipmentCarBtnsWrapper {
    row-gap: 10px;
  }
  .selectCarEquipmentCarName {
    font-size: 14px;
  }
  .selectCarEquipmentCarInfo {
    font-size: 16px;
  }
  .selectCarEquipmentCarImg {
    row-gap: 10px;
  }
  .selectCarEquipmentCarImg img {
    width: 100%;
    height: 96px;
  }
  .selectCarEquipmentLoadMore {
    font-size: 14px;
  }
}

.offer {
  padding: 75px 0;
}

.offer > div > div {
  box-shadow: 7px 10px 37px #0B457F12;
}

.offer-photo {
  width: 50%;
}

.offer-photo img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  max-height: 350px;
}

.offer-info {
  row-gap: 20px;
  width: 50%;
  padding: 60px;
}

.offer-info h3 {
  color: #000;
  font-family: "Haval", "sans-serif" !important;
  font-size: 32px;
  font-weight: 600;
  line-height: 120%;
  word-break: break-word;
}

.offer-info p {
  color: #000;
  font-size: 16px;
  font-weight: 400;
  line-height: 150%;
}

@media (min-width: 992px) and (max-width: 1400px) {
  .offer-info h3 {
    font-size: 26px;
  }
}

@media (min-width: 576px) and (max-width: 991px) {
  .offer {
    padding: 50px 0;
  }
  .offer-photo {
    width: 100%;
  }
  .offer-info {
    width: 100%;
    padding: 40px;
  }
  .offer-info h3 {
    font-size: 26px;
  }
}

@media (max-width: 575px) {
  .offer {
    padding: 30px 0;
  }
  .offer-photo {
    width: 100%;
  }
  .offer-info {
    width: 100%;
    padding: 30px 20px;
    row-gap: 10px;
  }
  .offer-info h3 {
    font-size: 20px;
  }
}

.services {
  padding: 75px 0;
}

.services > div {
  row-gap: 40px;
}

.services-grid {
  display: grid;
  grid-template-rows: 1fr;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 30px;
}

.services-grid-el {
  row-gap: 20px;
}

.services-grid-el .photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.services-grid-el .content {
  row-gap: 10px;
}

.services-grid-el .content h3 {
  color: #000;
  font-size: 22px;
  font-weight: 500;
  line-height: 140%;
}

@media (min-width: 576px) and (max-width: 991px) {
  .services {
    padding: 50px 0;
  }
  .services-grid {
    grid-template-columns: 1fr;
  }
  .services-grid-el .photo img {
    height: unset;
  }
}

@media (max-width: 575px) {
  .services {
    padding: 30px 0;
  }
  .services-grid {
    grid-template-columns: 1fr;
  }
  .services-grid-el .content h3 {
    font-size: 14px;
  }
}

.mobileApp {
  background-size: cover;
  background-repeat: no-repeat;
  height: 480px;
  background-position: 40% center;
}

.mobileAppWrap {
  padding-bottom: 75px;
}

.mobileApp-header {
  color: #fff;
}

.mobileApp-content {
  max-width: 380px;
  row-gap: 14px;
}

.mobileApp-content p {
  font-size: 16px;
  line-height: 150%;
  color: #fff;
}

@media (min-width: 576px) and (max-width: 991px) {
  .mobileApp {
    height: 276px;
  }
  .mobileAppWrap {
    padding-bottom: 50px;
  }
  .mobileApp-header {
    font-size: 26px;
  }
  .mobileApp-content {
    max-width: 250px;
  }
}

@media (max-width: 575px) {
  .mobileApp {
    height: 450px;
    background-size: auto 75%;
    background-repeat: no-repeat;
    background-position: 60% bottom;
  }
  .mobileAppWrap {
    padding-bottom: 30px;
  }
  .mobileApp > div {
    background: repeating-linear-gradient(180deg, #25292c 0, #25292c 40%, transparent 50%, transparent 100%);
  }
  .mobileApp-header {
    font-size: 20px;
  }
  .mobileApp-content {
    max-width: 200px;
    padding-top: 60px;
  }
}

.aboutDealer {
  padding: 75px 0;
}

.aboutDealer > div {
  column-gap: 40px;
}

.aboutDealer-photo {
  max-width: 660px;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.aboutDealer-photo img {
  height: 100%;
  width: 100%;
  min-height: 350px;
  object-fit: cover;
  object-position: right;
}

.aboutDealer-info {
  row-gap: 30px;
  max-width: 540px;
}

.aboutDealer-info p {
  color: #8C8C8C;
  font-size: 16px;
  font-weight: 400;
  line-height: 150%;
}

@media (min-width: 992px) and (max-width: 1200px) {
  .aboutDealer-info {
    max-width: 380px;
  }
  .aboutDealer-photo {
    max-width: 490px;
  }
}

@media (min-width: 576px) and (max-width: 991px) {
  .aboutDealer {
    padding: 50px 0;
  }
  .aboutDealer > div {
    row-gap: 30px;
  }
  .aboutDealer-photo {
    max-width: unset;
    height: 350px;
  }
  .aboutDealer-info {
    row-gap: 30px;
    max-width: unset;
  }
}

@media (max-width: 575px) {
  .aboutDealer {
    padding: 30px 0;
  }
  .aboutDealer > div {
    row-gap: 20px;
  }
  .aboutDealer-photo {
    max-width: unset;
  }
  .aboutDealer-photo img {
    object-position: center;
    min-height: unset;
    height: 200px;
  }
  .aboutDealer-info {
    row-gap: 20px;
    max-width: unset;
  }
  .aboutDealer-info h2 {
    font-size: 20px;
  }
  .aboutDealer-info p {
    font-size: 14px;
  }
}

.news {
  padding: 75px 0;
}

.news > div {
  row-gap: 40px;
}

.news-block {
  gap: 30px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.news-blockWrap {
  row-gap: 20px;
}

.news-block .news-item {
  min-height: 100%;
  width: 100%;
  color: #000;
  row-gap: 16px;
  overflow: hidden;
  text-decoration: none !important;
  transition: all .2s ease;
}

.news-block .news-item .photo {
  height: 215px;
  width: 100%;
  display: block;
  object-fit: cover;
}

.news-block .news-item .text {
  row-gap: 10px;
}

.news-block .news-item .text h3 {
  font-weight: 400;
  font-size: 16px;
  line-height: 150%;
  color: #000;
  overflow: hidden;
  display: -webkit-box;
  height: 72px;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  transition: all 0.2s ease;
}

.news-block .news-item .text .publicdate {
  font-weight: 400;
  font-size: 16px;
  line-height: 150%;
  color: #949494;
}

@media (min-width: 992px) and (max-width: 1200px) {
  .news-block .news-item .photo {
    height: 186px;
  }
}

@media (min-width: 576px) and (max-width: 991px) {
  .news {
    padding: 50px 0;
  }
  .news > div {
    row-gap: 30px;
  }
  .news-header {
    font-size: 26px;
  }
  .news-block {
    gap: 10px;
    grid-template-columns: repeat(2, 1fr);
  }
  .news-blockWrap {
    row-gap: 20px;
  }
  .news-block > a:nth-of-type(3) {
    display: none;
  }
  .news-block .news-item .photo {
    height: 170px;
  }
  .news-block .news-item .text {
    row-gap: 10px;
  }
  .news-block .news-item .text h3 {
    font-size: 14px;
    height: 63px;
  }
  .news-block .news-item .text .publicdate {
    font-size: 14px;
  }
}

@media (max-width: 575px) {
  .news {
    padding: 30px 0;
  }
  .news > div {
    row-gap: 30px;
  }
  .news-block {
    grid-template-columns: repeat(1, 1fr);
  }
  .news-blockWrap {
    row-gap: 20px;
  }
  .news-block > a:nth-of-type(2), .news-block > a:nth-of-type(3) {
    display: none;
  }
  .news-block .news-item .photo {
    height: 160px;
  }
  .news-block .news-item .text {
    row-gap: 10px;
  }
  .news-block .news-item .text h3 {
    font-size: 14px;
    height: 63px;
  }
  .news-block .news-item .text .publicdate {
    font-size: 14px;
  }
}

.offerBorderless {
  height: 500px;
  background-color: #181B1D;
  position: relative;
}

.offerBorderless > div {
  z-index: 1;
}

.offerBorderlessWrap {
  padding: 75px 0;
}

.offerBorderless-photo {
  position: absolute;
  width: 50%;
  top: 0;
  bottom: 0;
  right: 0;
}

.offerBorderless-photo-wrap {
  left: 0;
  right: unset;
}

.offerBorderless-photo img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}

.offerBorderless-info {
  row-gap: 30px;
  max-width: 460px;
}

.offerBorderless-info-wrap {
  position: absolute;
  right: 0;
}

.offerBorderless-info h2 {
  color: #fff;
  font-family: "Haval", "sans-serif" !important;
  font-size: 32px;
  font-weight: 600;
  line-height: 120%;
  word-break: break-word;
}

.offerBorderless-info p {
  color: #fff;
  font-size: 16px;
  font-weight: 400;
  line-height: 150%;
}

@media (min-width: 992px) and (max-width: 1200px) {
  .offerBorderless-info {
    max-width: 440px;
  }
}

@media (min-width: 576px) and (max-width: 991px) {
  .offerBorderless {
    height: unset;
  }
  .offerBorderlessWrap {
    padding: 50px 0;
  }
  .offerBorderless-photo {
    position: unset;
    width: 100%;
    top: unset;
    bottom: unset;
    right: unset;
  }
  .offerBorderless-photo-wrap {
    left: unset;
  }
  .offerBorderless-photo img {
    height: 270px;
  }
  .offerBorderless-info {
    row-gap: 20px;
    max-width: 500px;
    padding: 40px 0;
  }
  .offerBorderless-info-wrap {
    position: unset;
    right: unset;
  }
  .offerBorderless-info h2 {
    font-size: 26px;
  }
}

@media (max-width: 575px) {
  .offerBorderless {
    height: unset;
  }
  .offerBorderlessWrap {
    padding: 30px 0;
  }
  .offerBorderless-photo {
    position: unset;
    width: 100%;
    top: unset;
    bottom: unset;
    right: unset;
  }
  .offerBorderless-photo-wrap {
    left: unset;
  }
  .offerBorderless-photo img {
    height: 200px;
  }
  .offerBorderless-info {
    row-gap: 10px;
    max-width: 500px;
    padding: 40px 0;
  }
  .offerBorderless-info-wrap {
    position: unset;
    right: unset;
  }
  .offerBorderless-info h2 {
    font-size: 20px;
  }
}

.contacts_main {
  padding: 75px 0 150px;
}

.contacts_main.bottomSmallPadding {
  padding-bottom: 60px;
}

.contacts_main .contacts {
  gap: 50px;
  font-weight: 300;
}

.contacts_main .contacts-map {
  max-width: 594px;
  height: 348px;
  flex: 1 0 0;
}

.contacts_main .contacts-map iframe {
  width: 100%;
  height: 100%;
}

.contacts_main .contacts-type {
  color: #00CABF;
  font-size: 24px;
  font-family: "Haval", "sans-serif" !important;
}

.contacts_main .contacts-info {
  gap: 30px;
  flex: 1 0 0;
}

.contacts_main .contacts-contact {
  gap: 10px;
}

.contacts_main .contacts-contact a {
  color: #0A0A0A;
  font-size: 24px;
  font-weight: 400;
  line-height: 140%;
  column-gap: 18px;
  margin-bottom: 20px;
  font-family: "Haval", "sans-serif" !important;
}

.contacts_main .contacts-contact a img {
  height: 30px;
}

@media (min-width: 992px) and (max-width: 1200px) {
  .contacts_main .contacts {
    gap: 40px;
  }
  .contacts_main .contacts-map {
    height: 348px;
  }
}

@media (min-width: 576px) and (max-width: 991px) {
  .contacts_main {
    padding: 50px 0 100px;
  }
  .contacts_main.bottomSmallPadding {
    padding-bottom: 20px;
  }
  .contacts_main .contacts {
    gap: 30px;
  }
  .contacts_main .contacts-map {
    max-width: unset;
    height: 350px;
    flex: unset;
    width: 100%;
  }
  .contacts_main .contacts-info {
    gap: 30px;
    width: 100%;
  }
  .contacts_main .contacts-contact a {
    font-size: 16px;
  }
  .contacts_main .contacts-contact a img {
    height: 24px;
  }
}

@media (max-width: 575px) {
  .contacts_main {
    padding: 30px 0 60px;
  }
  .contacts_main.bottomSmallPadding {
    padding-bottom: 20px;
  }
  .contacts_main .contacts {
    gap: 30px;
  }
  .contacts_main .contacts-map {
    max-width: unset;
    height: 350px;
    flex: unset;
    width: 100%;
  }
  .contacts_main .contacts-info {
    gap: 20px;
    width: 100%;
  }
  .contacts_main .contacts-contact {
    gap: 20px;
  }
  .contacts_main .contacts-contact a {
    font-size: 16px;
    max-width: 220px;
  }
  .contacts_main .contacts-contact a img {
    height: 24px;
  }
}

footer {
  background-color: #181B1D;
  padding: 40px 0 35px;
  row-gap: 28px;
}

footer .footerTop {
  column-gap: 50px;
  margin-bottom: 36px;
  display: flex;
  align-items: start;
  justify-content: space-between;
}

footer .footerTop-logo a {
  text-decoration: none;
  margin-bottom: 10px;
  gap: 50px;
}

footer .footerTop-logo a img {
  height: 20px;
}

footer .footerTop-logo a > div img {
  height: 16px;
}

footer .footerTop-logo p {
  font-weight: 400;
  font-size: 16px;
  line-height: 150%;
  color: #fff;
  max-width: 242px;
}

footer .footerTop-contacts {
  row-gap: 14px;
}

footer .footerTop-contacts > p {
  font-weight: 400;
  font-size: 16px;
  line-height: 130%;
  color: #F8FAFF;
  margin-bottom: 0;
}

footer .footerTop-contacts--item {
  row-gap: 7px;
}

footer .footerTop-contacts--item > p {
  font-weight: 600;
  font-size: 16px;
  line-height: 150% !important;
  color: #fff;
}

footer .footerTop-contacts--item > a {
  font-weight: 600;
  font-size: 16px;
  line-height: 150%;
  color: #FFF;
  text-decoration: none;
}

footer .footerTop-contacts--item-phone {
  font-size: 22px !important;
  line-height: 140% !important;
}

footer .footerTop-links {
  color: #fff;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

footer .footerTop-links > div {
  row-gap: 14px;
}

footer .footerTop-links p {
  font-weight: 400;
  font-size: 16px;
  line-height: 150%;
}

footer .footerTop-links nav a {
  text-decoration: none;
  font-weight: 600;
  font-size: 16px;
  line-height: 150%;
  color: #fff;
  margin-bottom: 10px;
}

footer .footerTop-links nav a:last-of-type {
  margin-bottom: 0;
}

footer .footerTop-links nav a:hover {
  text-decoration: underline;
}

footer .footerBottom {
  row-gap: 20px;
}

footer .footerBottom a {
  color: #fff;
  font-weight: 600;
  font-size: 16px;
  line-height: 150%;
  text-decoration: none;
}

footer .footerBottom a span {
  text-decoration: underline;
}

footer .footerBottom .text {
  font-size: 11px;
  font-weight: 400;
  line-height: 130%;
  width: 100%;
  color: #fff;
}

@media (min-width: 992px) and (max-width: 1200px) {
  footer .footerTop-contacts .btn {
    font-size: 14px;
  }
}

@media (min-width: 576px) and (max-width: 991px) {
  footer {
    padding: 40px 0 30px;
    row-gap: 10px;
  }
  footer .footerTop {
    column-gap: 50px;
    margin-bottom: 30px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr;
    gap: 30px;
  }
  footer .footerTop-logo p {
    font-size: 14px;
  }
  footer .footerTop-contacts {
    row-gap: 10px;
  }
  footer .footerTop-contacts--item > p {
    font-size: 14px;
  }
  footer .footerTop-contacts--item > a {
    font-size: 14px;
  }
  footer .footerTop-contacts--item-phone {
    font-size: 14px !important;
    line-height: 150%;
  }
  footer .footerTop-links > div {
    row-gap: 10px;
  }
  footer .footerTop-links nav a {
    font-size: 14px;
  }
  footer .footerBottom {
    row-gap: 10px;
  }
  footer .footerBottom a {
    font-size: 14px;
  }
}

@media (max-width: 575px) {
  footer {
    padding: 40px 0;
    row-gap: 20px;
  }
  footer .footerTop {
    row-gap: 20px;
    margin-bottom: 0;
    display: flex;
    flex-direction: column;
  }
  footer .footerTop-logo a {
    gap: 20px;
  }
  footer .footerTop-logo p {
    font-size: 14px;
  }
  footer .footerTop-contacts {
    row-gap: 6px;
  }
  footer .footerTop-contacts--item {
    row-gap: 7px;
  }
  footer .footerTop-contacts--item > p {
    font-size: 14px;
  }
  footer .footerTop-contacts--item > a {
    font-size: 14px;
  }
  footer .footerTop-contacts--item-phone {
    font-size: 14px !important;
    line-height: 150% !important;
  }
  footer .footerTop-links > div {
    row-gap: 6px;
  }
  footer .footerTop-links nav a {
    font-size: 14px;
    margin-bottom: 5px;
  }
  footer .footerBottom {
    row-gap: 8px;
  }
  footer .footerBottom > div {
    row-gap: 8px;
  }
  footer .footerBottom a {
    font-size: 14px;
  }
  footer .footerBottom .text {
    font-size: 10px;
  }
}

.sidenav {
  position: fixed;
  width: 100%;
  height: 100%;
  background: #181B1D80;
  top: 0;
  right: -100%;
  z-index: 900;
  opacity: 0;
  transition: opacity 0.3s ease, right 0s ease 0.3s;
}

.sidenav.active {
  opacity: 1;
  right: 0;
  transition: opacity 0.3s ease;
}

.sidenav.active .sidenav-block {
  right: 0;
}

.sidenav.active .sidenav-click {
  left: 0;
}

.sidenav .close {
  position: absolute;
  width: 34px;
  height: 34px;
  top: 40px;
  right: 40px;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
}

.sidenav .close > div {
  position: absolute;
  height: 3px;
  width: 38px;
  background: #181B1D;
}

.sidenav .close > div:nth-child(1) {
  transform: rotate(45deg);
}

.sidenav .close > div:nth-child(2) {
  transform: rotate(-45deg);
}

.sidenav-block {
  transition: all 0.3s ease;
  background: #fff;
  position: absolute;
  top: 0;
  right: -100%;
  width: 100%;
  max-width: 500px;
  height: 100%;
  padding: 70px;
  overflow-y: auto;
}

.sidenav-block-btns {
  row-gap: 10px;
  max-width: 280px;
}

.sidenav-block-contacts {
  row-gap: 15px;
}

.sidenav-block-contacts-contact {
  column-gap: 14px;
}

.sidenav-block-contacts-contact img {
  height: 20px;
}

.sidenav-block-contacts-contact span {
  color: #000;
  font-size: 16px;
  font-weight: 600;
  line-height: 150%;
}

.sidenav-block-contacts > div {
  row-gap: 10px;
}

.sidenav-block-desc > a, .sidenav-block .modelsList > p, .sidenav-block-contacts > p {
  color: #000;
  font-family: "Haval", "sans-serif" !important;
  font-size: 20px;
  font-weight: 400;
  line-height: 120%;
  width: 100%;
  text-decoration: none;
}

.sidenav-block-desc {
  row-gap: 30px;
}

.sidenav-block-desc .modelsList {
  row-gap: 15px;
}

.sidenav-block-desc .modelsList > div {
  row-gap: 10px;
}

.sidenav-block-desc .modelsList > div a {
  text-decoration: none;
  color: #000;
}

.sidenav-block-desc .modelsList > div a:hover {
  text-decoration: underline;
}

.sidenav-block-desc .modelsList > div a div {
  color: #000;
  font-size: 16px;
  font-weight: 400;
  line-height: 150%;
}

@media (max-width: 575px) {
  .sidenav {
    z-index: 90;
  }
  .sidenav .close {
    position: absolute;
    width: 30px;
    height: 30px;
    top: 10px;
    right: 10px;
  }
  .sidenav .close > div {
    height: 3px;
    width: 37px;
    background: #181B1D;
  }
  .sidenav-block {
    max-width: 320px;
    padding: 86px 20px 30px;
  }
  .sidenav-block-desc {
    row-gap: 20px;
  }
  .sidenav-block-desc .modelsList {
    row-gap: 15px;
  }
  .sidenav-block-contacts {
    row-gap: 15px;
  }
  .sidenav-block-contacts-contact span {
    font-size: 14px;
  }
}

.springOfferAdditional {
  padding: 75px 0;
}

.springOfferAdditional > div {
  row-gap: 50px;
}

.springOfferAdditional-head {
  row-gap: 30px;
  max-width: 802px;
}

.springOfferAdditional-head p {
  font-weight: 400;
  font-size: 22px;
  line-height: 140%;
}

.springOfferAdditional-cards {
  grid-template-rows: 1fr;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 30px;
}

.springOfferAdditional-cards-el {
  padding: 40px 30px;
  row-gap: 24px;
  box-shadow: 7px 10px 37px 0 rgba(11, 69, 127, 0.07);
}

.springOfferAdditional-cards-el .photo {
  width: 100%;
  max-width: 158px;
}

.springOfferAdditional-cards-el .photo img {
  width: 100%;
}

.springOfferAdditional-cards-el .text {
  row-gap: 10px;
}

.springOfferAdditional-cards-el .text h3 {
  font-family: "Haval", "sans-serif" !important;
  font-size: 20px;
  line-height: 120%;
  font-weight: 400;
  color: #000;
}

.springOfferAdditional-cards-el .text p {
  font-weight: 600;
  font-size: 16px;
  line-height: 150%;
  color: #000;
}

@media (min-width: 992px) and (max-width: 1400px) {
  .springOfferAdditional-cards {
    gap: 20px;
  }
}

@media (min-width: 576px) and (max-width: 991px) {
  .springOfferAdditional {
    padding: 35px 0;
  }
  .springOfferAdditional-header {
    font-size: 26px;
  }
  .springOfferAdditional-head p {
    font-size: 16px;
  }
  .springOfferAdditional-cards {
    grid-template-columns: 1fr;
    gap: 10px;
  }
  .springOfferAdditional-cards-el {
    padding: 30px 50px;
    row-gap: 14px;
  }
  .springOfferAdditional-cards-el .photo {
    max-width: 138px;
  }
  .springOfferAdditional-cards-el .text h3 {
    font-size: 16px;
  }
  .springOfferAdditional-cards-el .text p {
    font-size: 16px;
  }
}

@media (max-width: 575px) {
  .springOfferAdditional {
    padding: 30px 0;
  }
  .springOfferAdditional-head p {
    font-size: 16px;
  }
  .springOfferAdditional-cards {
    grid-template-columns: 1fr;
    gap: 10px;
  }
  .springOfferAdditional-cards-el {
    padding: 15px 18px;
    row-gap: 10px;
  }
  .springOfferAdditional-cards-el .photo {
    max-width: 110px;
  }
  .springOfferAdditional-cards-el .text h3 {
    font-size: 16px;
  }
  .springOfferAdditional-cards-el .text p {
    font-size: 14px;
  }
}

.springOfferInstruct {
  height: 775px;
  background-color: #181B1D;
  position: relative;
}

.springOfferInstruct > div {
  z-index: 1;
}

.springOfferInstructWrap {
  padding: 75px 0;
}

.springOfferInstruct-photo {
  position: absolute;
  width: 50%;
  top: 0;
  bottom: 0;
  right: 0;
}

.springOfferInstruct-photo img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}

.springOfferInstruct-info {
  row-gap: 30px;
  max-width: 460px;
}

.springOfferInstruct-info h2 {
  color: #fff;
  font-family: "Haval", "sans-serif" !important;
  font-size: 32px;
  font-weight: 600;
  line-height: 120%;
  word-break: break-word;
}

.springOfferInstruct-info .textWithIcon {
  column-gap: 20px;
}

.springOfferInstruct-info .textWithIcon img {
  width: 24px;
  height: 24px;
}

.springOfferInstruct-info p {
  color: #fff;
  font-size: 16px;
  font-weight: 400;
  line-height: 150%;
}

@media (min-width: 992px) and (max-width: 1200px) {
  .springOfferInstruct-info {
    max-width: 440px;
  }
}

@media (min-width: 576px) and (max-width: 991px) {
  .springOfferInstruct {
    height: unset;
  }
  .springOfferInstructWrap {
    padding: 50px 0;
  }
  .springOfferInstruct-photo {
    position: unset;
    width: 100%;
    top: unset;
    bottom: unset;
    right: unset;
  }
  .springOfferInstruct-photo img {
    height: 270px;
  }
  .springOfferInstruct-info {
    row-gap: 20px;
    max-width: 500px;
    padding: 40px 0;
  }
  .springOfferInstruct-info h2 {
    font-size: 26px;
  }
}

@media (max-width: 575px) {
  .springOfferInstruct {
    height: unset;
  }
  .springOfferInstructWrap {
    padding: 30px 0;
  }
  .springOfferInstruct-photo {
    position: unset;
    width: 100%;
    top: unset;
    bottom: unset;
    right: unset;
  }
  .springOfferInstruct-photo img {
    height: 200px;
  }
  .springOfferInstruct .textWithIcon {
    column-gap: 10px;
  }
  .springOfferInstruct .textWithIcon img {
    width: 20px;
    height: 20px;
  }
  .springOfferInstruct-info {
    row-gap: 10px;
    max-width: 500px;
    padding: 40px 0;
  }
  .springOfferInstruct-info h2 {
    font-size: 20px;
  }
  .springOfferInstruct-info p {
    font-size: 14px;
  }
}

.springOfferFAQ {
  row-gap: 40px;
}

.springOfferFAQ .Wrap {
  padding: 75px 0;
}

.springOfferFAQ .accordion-button {
  box-shadow: none;
  border-radius: 0;
  border: 0;
  background-color: #fff;
  color: #000;
  padding: 25.5px 0;
  font-weight: 400;
  font-size: 18px;
  line-height: 150%;
}

.springOfferFAQ .accordion-button::after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23212529'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.springOfferFAQ .accordion-item {
  box-shadow: none;
  border-radius: 0;
  border-bottom: 2px solid #9494944C;
  border-top: 0;
  border-left: 0;
  border-right: 0;
}

.springOfferFAQ .accordion-body {
  padding: 10px 0 20px 0;
  max-width: 810px;
  font-weight: 600;
  font-size: 16px;
  line-height: 150%;
}

@media (min-width: 576px) and (max-width: 991px) {
  .springOfferFAQ {
    padding: 35px 0;
  }
  .springOfferFAQ-header {
    font-size: 26px;
  }
  .springOfferFAQ .accordion-button {
    font-size: 14px;
  }
  .springOfferFAQ .accordion-body {
    font-size: 14px;
  }
}

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

.springOfferDecodedInfo > div {
  row-gap: 10px;
}

.springOfferDecodedInfo p {
  font-size: 12px;
  line-height: 150%;
  font-weight: 400;
  color: #000;
}

@media (min-width: 576px) and (max-width: 991px) {
  .springOfferDecodedInfo {
    padding: 20px 0 40px;
  }
}

@media (max-width: 575px) {
  .springOfferDecodedInfo {
    padding: 20px 0 40px;
  }
  .springOfferDecodedInfo > div {
    row-gap: 8px;
  }
  .springOfferDecodedInfo p {
    font-size: 10px;
    line-height: 150%;
    font-weight: 400;
  }
}

.modelMainBlock {
  position: relative;
  height: 600px;
}

.modelMainBlockWrap {
  padding-bottom: 75px;
}

.modelMainBlock-photo {
  width: 100%;
  height: 100%;
}

.modelMainBlock-photo img {
  width: 100%;
  height: 100%;
  object-position: center 75%;
  object-fit: cover;
}

.modelMainBlock-text {
  z-index: 1;
  row-gap: 14px;
  max-width: 410px;
  padding-bottom: 95px;
}

.modelMainBlock-textWrap {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 100%;
}

.modelMainBlock-text h1, .modelMainBlock-text h2 {
  font-family: "Haval", "sans-serif" !important;
  font-weight: 400;
  font-size: 50px;
  line-height: 120%;
}

.modelMainBlock-text h1 span, .modelMainBlock-text h2 span {
  font-family: "Haval", "sans-serif" !important;
  font-weight: 400;
  font-size: 50px;
  line-height: 120%;
}

.modelMainBlock-text p {
  font-weight: 400;
  font-size: 16px;
  line-height: 150%;
}

.modelMainBlock-btns {
  gap: 14px;
}

@media (min-width: 1400px) {
  .modelMainBlock {
    height: 800px;
  }
}

@media (min-width: 576px) and (max-width: 991px) {
  .modelMainBlock {
    height: 700px;
  }
  .modelMainBlockWrap {
    padding-bottom: 50px;
  }
  .modelMainBlock-text {
    max-width: unset;
  }
  .modelMainBlock-textWrap {
    padding-top: 70px;
  }
}

@media (max-width: 575px) {
  .modelMainBlock {
    height: 560px;
  }
  .modelMainBlockWrap {
    padding-bottom: 30px;
  }
  .modelMainBlock-textWrap {
    padding-top: 50px;
  }
  .modelMainBlock-text h1 {
    font-size: 26px;
  }
  .modelMainBlock-text p {
    font-size: 14px;
  }
}

.modelColors {
  padding: 75px 0;
}

.modelColors > div {
  row-gap: 40px;
}

.modelColors-nameAndPriceWrap {
  row-gap: 6px;
}

.modelColors-name {
  font-family: "Haval", "sans-serif" !important;
  font-size: 40px;
  line-height: 120%;
  font-weight: 400;
}

.modelColors-price {
  font-size: 22px;
  line-height: 150%;
  font-weight: 400;
}

.modelColors-data {
  gap: 40px;
  flex: 1 0 0;
  max-width: 415px;
}

.modelColors-data .btns {
  gap: 10px;
}

.modelColors-data .chars_switcherWrap {
  row-gap: 30px;
}

.modelColors-data .chars_switcherWrap .chars_switcher > div {
  padding: 0 18px 12px;
  border-bottom: 2px solid #D6D6D6;
  color: #000;
  transition: border-bottom 0.3s ease;
  cursor: pointer;
  font-weight: 500;
  font-size: 18px;
  line-height: 110%;
}

.modelColors-data .chars_switcherWrap .chars_switcher > div.active {
  border-bottom: 2px solid #000001;
}

.modelColors-data .chars_switcherWrap .chars_switcher_content > div {
  grid-template-rows: 1fr;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.modelColors-data .chars_switcherWrap .chars_switcher_content > div > div {
  row-gap: 8px;
}

.modelColors-data .chars_switcherWrap .chars_switcher_content > div .val {
  font-weight: 400;
  font-size: 26px;
  line-height: 120%;
  color: #000;
  font-family: "Haval", "sans-serif" !important;
}

.modelColors-data .chars_switcherWrap .chars_switcher_content > div .val_desc {
  font-weight: 400;
  font-size: 14px;
  line-height: 150%;
  color: #949494;
}

.modelColors-model {
  width: 50%;
  min-width: 700px;
}

.modelColors-model .colorsSwiper {
  row-gap: 20px;
}

.modelColors-model .colorsSwiper .swiper-slide img {
  width: 100%;
}

.modelColors-model .colorsSwiper .swiper-pagination {
  position: unset;
  column-gap: 8px;
}

.modelColors-model .colorsSwiper .swiper-pagination-bullet {
  width: unset;
  height: unset;
  background: unset;
  border-radius: 0;
  opacity: 1;
}

.modelColors-model .colorsSwiper .swiper-pagination-bullet img {
  width: 100%;
  height: 44px;
}

.modelColors-model .colorsSwiper .swiper-pagination-bullet-active {
  position: relative;
}

.modelColors-model .colorsSwiper .swiper-pagination-bullet-active::after {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border: 2px solid #000;
  background: transparent;
  content: '';
}

.modelColors-modelAndDataWrap {
  gap: 30px;
}

@media (min-width: 992px) and (max-width: 1400px) {
  .modelColors-model {
    min-width: 615px;
  }
}

@media (min-width: 576px) and (max-width: 991px) {
  .modelColors {
    padding: 50px 0;
  }
  .modelColors-data {
    max-width: unset;
    width: 100%;
  }
  .modelColors-data .chars_switcherWrap .chars_switcher_content > div {
    grid-template-columns: 1fr 1fr 1fr 1fr;
  }
  .modelColors-data .chars_switcherWrap .chars_switcher_content > div .val {
    font-size: 20px;
  }
  .modelColors-data .btns .btn {
    width: 100%;
    padding: 13px 6px 11px;
  }
  .modelColors-model {
    width: 100%;
    min-width: unset;
  }
  .modelColors-model .colorsSwiper {
    row-gap: 30px;
  }
  .modelColors-modelAndDataWrap {
    gap: 30px;
  }
}

@media (max-width: 575px) {
  .modelColors {
    padding: 30px 0;
  }
  .modelColors-data {
    max-width: unset;
    width: 100%;
    row-gap: 30px;
  }
  .modelColors-data .chars_switcherWrap .chars_switcher_content > div {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }
  .modelColors-data .chars_switcherWrap .chars_switcher_content > div .val {
    font-size: 20px;
  }
  .modelColors-data .btns .btn {
    width: 100%;
    padding: 13px 6px 11px;
  }
  .modelColors-model {
    width: 100%;
    min-width: unset;
  }
  .modelColors-model .colorsSwiper {
    row-gap: 30px;
  }
  .modelColors-model .colorsSwiper .swiper-pagination {
    column-gap: 6px;
  }
  .modelColors-model .colorsSwiper .swiper-pagination-bullet img {
    height: 24px;
  }
  .modelColors-modelAndDataWrap {
    gap: 30px;
  }
}

.exterior {
  padding: 75px 0;
}

.exterior > div {
  row-gap: 40px;
}

.exterior-head {
  gap: 20px;
  max-width: 780px;
}

.exterior-head span {
  font-weight: 400;
  font-size: 16px;
  line-height: 150%;
  color: #949494;
}

.exterior-head p {
  font-weight: 600;
  font-size: 16px;
  line-height: 150%;
  color: #000;
}

.exterior-block {
  gap: 30px;
}

.exterior-block > img {
  width: 66%;
  object-fit: cover;
}

.exterior-block > div {
  gap: 30px;
  width: 33%;
}

.exterior-block > div img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.exterior-mobileBlock {
  column-gap: 20px;
  width: 100%;
  padding: 0 12px;
}

.exterior-mobileBlockWrap {
  overflow: visible;
  overflow-x: auto;
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.exterior-mobileBlockWrap::-webkit-scrollbar {
  width: 0;
  height: 0;
  display: none;
}

.exterior-mobileBlock > img {
  width: 90%;
  object-fit: cover;
  max-height: 350px;
}

@media (min-width: 992px) and (max-width: 1400px) {
  .exterior-block {
    gap: 20px;
    width: 100%;
  }
  .exterior-block > img {
    width: 100%;
    height: 100%;
    max-height: 550px;
  }
  .exterior-block > div {
    gap: 20px;
    width: 100%;
  }
  .exterior-block > div img {
    width: calc(50% - 10px);
    max-height: 290px;
    height: unset;
    object-fit: cover;
  }
}

@media (min-width: 576px) and (max-width: 991px) {
  .exterior {
    padding: 50px 0;
    row-gap: 30px;
  }
  .exterior-head {
    max-width: 580px;
  }
}

@media (max-width: 575px) {
  .exterior {
    padding: 30px 0;
    row-gap: 30px;
  }
  .exterior-head {
    gap: 10px;
    max-width: 580px;
  }
  .exterior-head p {
    font-size: 14px;
  }
  .exterior-mobileBlock {
    column-gap: 10px;
  }
}

.technology {
  padding: 75px 0;
  row-gap: 30px;
}

.technology > div {
  gap: 30px;
}

.technology > div > img {
  width: 700px;
  height: 680px;
  object-fit: cover;
}

.technology > div > div {
  row-gap: 60px;
}

.technology-head {
  gap: 20px;
  padding-left: 20px;
}

.technology-head span {
  font-weight: 400;
  font-size: 16px;
  line-height: 150%;
  color: #949494;
}

.technology-head p, .technology-head ul li {
  font-weight: 600;
  font-size: 16px;
  line-height: 150%;
  color: #000;
}

.technology-head ul {
  row-gap: 10px;
}

.technology-block > div {
  width: 100%;
  gap: 30px;
}

.technology-block > div img {
  width: calc(50% - 15px);
  max-height: 200px;
  object-fit: cover;
}

.technology-mobileBlock {
  column-gap: 20px;
  width: 100%;
  padding: 0 12px;
}

.technology-mobileBlockWrap {
  overflow: visible;
  overflow-x: auto;
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.technology-mobileBlockWrap::-webkit-scrollbar {
  width: 0;
  height: 0;
  display: none;
}

.technology-mobileBlock > img {
  object-fit: cover;
  width: 100%;
  height: 350px;
}

@media (min-width: 992px) and (max-width: 1400px) {
  .technology {
    padding: 75px 0;
  }
  .technology > div > div {
    row-gap: 40px;
    width: 100%;
  }
  .technology-block > div {
    gap: 20px;
    width: 100%;
  }
  .technology-block > div img {
    width: 100%;
    height: 100%;
    max-height: 400px;
    object-fit: cover;
  }
  .technology-mobileBlock {
    column-gap: 20px;
    width: 100%;
    padding: 0 12px;
  }
  .technology-mobileBlockWrap {
    overflow: visible;
    overflow-x: auto;
    -ms-overflow-style: none;
    scrollbar-width: none;
  }
  .technology-mobileBlockWrap::-webkit-scrollbar {
    width: 0;
    height: 0;
    display: none;
  }
  .technology-mobileBlock > img {
    width: 90%;
    object-fit: cover;
    max-height: 350px;
  }
}

@media (min-width: 576px) and (max-width: 991px) {
  .technology > div > div {
    row-gap: 30px;
  }
  .technology-head {
    padding-left: 0;
  }
}

@media (max-width: 575px) {
  .technology > div > div {
    row-gap: 30px;
  }
  .technology-head {
    gap: 10px;
    padding-left: 0;
  }
  .technology-head p, .technology-head ul li {
    font-size: 14px;
  }
  .technology-head ul {
    row-gap: 8px;
  }
}

.breadcrumbs {
  column-gap: 10px;
  font-weight: 500;
  font-size: 16px;
  line-height: 150%;
  color: #000;
  text-decoration: none;
  flex-wrap: wrap;
  text-transform: uppercase;
}

.breadcrumbs a {
  font-weight: 500;
  font-size: 16px;
  line-height: 150%;
  color: #949494;
  text-decoration: none;
  text-transform: uppercase;
}

@media (max-width: 575px) {
  .breadcrumbs {
    font-size: 14px;
  }
  .breadcrumbs a {
    font-size: 14px;
  }
}

.policyPage {
  padding-top: 60px;
}

.policyPage h1 {
  margin-bottom: 30px;
}

.policyPage h3 {
  margin-top: 30px;
  margin-bottom: 15px;
}

.policyPage p {
  margin-bottom: 15px;
}

.ask-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1100;
  overflow: hidden;
  justify-content: center;
  align-items: center;
}

.ask-block-bckg {
  width: 100%;
  max-width: 556px;
  flex-grow: 1;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-color: #fff;
}

.ask-block-close {
  position: absolute;
  top: 15px;
  right: 15px;
  width: 20px;
  height: 20px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ask-block-close::after, .ask-block-close::before {
  content: "";
  height: 2px;
  width: 28px;
  background-color: #0A0A0A;
  position: absolute;
}

.ask-block-close::before {
  transform: rotate(45deg);
}

.ask-block-close::after {
  transform: rotate(-45deg);
}

.ask-block-content {
  padding: 30px 40px;
  background-color: #fff;
  width: fit-content;
  max-width: 512px;
  position: relative;
}

.ask-block p.request {
  font-family: "Haval", "sans-serif" !important;
  font-size: 26px;
  font-weight: 600;
  line-height: 120%;
  margin-top: 0;
  margin-bottom: 15px;
  color: #000;
}

.ask-block .ask-block-fields {
  width: 100%;
  gap: 15px;
  margin-bottom: 15px;
}

.ask-block .ask-block-fields p {
  font-weight: 500;
  font-size: 16px;
  line-height: 22px;
  margin-bottom: 10px;
}

.ask-block .ask-block-fields input {
  padding: 12px 13px 12px 44px;
  background: #fff;
  border: 1px solid #A4A4A4;
  border-radius: 0;
  font-weight: 500;
  font-size: 16px;
  line-height: 150%;
  width: 100%;
}

.ask-block .ask-block-fields input:focus-visible {
  outline: 1px solid #1862E5;
}

.ask-block .ask-block-fields #ask {
  padding: 12px 13px;
}

.ask-block .ask-block-fields > div {
  width: 100%;
  position: relative;
}

.ask-block .ask-block-fields .icon-container {
  position: absolute;
  top: 47px;
  padding: 0px 0px 0px 12px;
}

.ask-block .ask-block-fields .icon-container .icon-user {
  background: url("/assets/img/user.svg") no-repeat;
  background-size: contain;
  height: 20px;
  width: 20px;
}

.ask-block .ask-block-fields .icon-container .icon-phone {
  background: url("/assets/img/phone.svg") no-repeat;
  background-size: contain;
  height: 20px;
  width: 20px;
}

.ask-block .btn-callback {
  font-weight: 400;
  font-size: 18px;
  line-height: 24px;
  width: 100%;
  margin-bottom: 10px;
}

.ask-block p.text-center {
  font-weight: 400;
  font-size: 14px;
  line-height: 150%;
  color: #A4A4A4;
  margin: 10px 0 0 0;
}

.ask-block p.text-center a {
  color: #A4A4A4;
  text-decoration: underline;
}

.ask-ok-content {
  max-width: 500px;
  padding: 40px;
  background-color: #fff;
  position: relative;
}

.ask-ok-content .header {
  row-gap: 10px;
}

.ask-ok-content .header img {
  height: 50px;
  width: 50px;
}

.ask-ok-content .header .request {
  font-family: "Haval", "sans-serif" !important;
  font-size: 20px;
  font-weight: 600;
  line-height: 110%;
}

.ask-ok-content .header .additional {
  font-size: 16px;
  font-weight: 600;
  line-height: 150%;
}

@media (max-width: 575px) {
  .ask-ok-content {
    max-width: 300px;
    padding: 30px 20px;
  }
  .ask-ok-content .header {
    row-gap: 10px;
  }
  .ask-ok-content .header img {
    height: 30px;
    width: 30px;
  }
  .ask-ok-content .header .request {
    font-size: 24px;
  }
  .ask-ok-content .header .additional {
    font-size: 14px;
  }
  .ask-block p.request {
    font-size: 20px;
  }
  .ask-block-content {
    padding: 20px;
    min-width: 280px;
    max-width: calc(100% - 200px);
  }
  .ask-block p.text-center {
    font-size: 12px;
  }
}

.askMe {
  cursor: pointer;
}

.newsAll > div {
  row-gap: 40px;
}

.newsAll-head {
  row-gap: 40px;
  overflow: hidden;
  position: relative;
}

.newsAll-head h1 {
  color: #000;
  font-size: 40px;
  font-weight: 400;
  line-height: 120%;
  font-family: "Haval", "sans-serif" !important;
}

.newsAll-block {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  column-gap: 30px;
  row-gap: 30px;
  position: relative;
}

.newsAll-block-item {
  min-height: 100%;
  width: 100%;
  color: #131313;
  overflow: hidden;
  text-decoration: none !important;
  transition: all 0.2s ease;
}

.newsAll-block-item img {
  width: 100%;
  height: 100%;
  display: block;
  margin-bottom: 16px;
  object-fit: cover;
  min-height: 220px;
}

.newsAll-block-item h3 {
  font-weight: 400;
  font-size: 16px;
  line-height: 150%;
  color: #000;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  height: 72px;
  text-transform: uppercase;
  transition: all 0.2s ease;
}

.newsAll-block-item .publicdate {
  margin-bottom: 0;
  font-weight: 400;
  font-size: 16px;
  line-height: 150%;
  color: #949494;
}

@media (min-width: 992px) and (max-width: 1400px) {
  .newsAll-block {
    column-gap: 20px;
    row-gap: 20px;
  }
  .newsAll-block-item img {
    min-height: 188px;
  }
}

@media (min-width: 576px) and (max-width: 991px) {
  .newsAll > div {
    row-gap: 30px;
  }
  .newsAll-head {
    row-gap: 30px;
  }
  .newsAll-head h1 {
    font-size: 26px;
  }
  .newsAll-block {
    grid-template-columns: repeat(2, 1fr);
    column-gap: 10px;
    row-gap: 20px;
  }
  .newsAll-block-item img {
    min-height: 175px;
  }
  .newsAll-block-item h3 {
    font-size: 14px;
    height: 63px;
  }
  .newsAll-block-item .publicdate {
    font-size: 14px;
  }
}

@media (max-width: 575px) {
  .newsAll > div {
    row-gap: 30px;
  }
  .newsAll-head {
    row-gap: 30px;
  }
  .newsAll-head h1 {
    font-size: 20px;
  }
  .newsAll-block {
    grid-template-columns: repeat(2, 1fr);
    column-gap: 10px;
    row-gap: 20px;
  }
  .newsAll-block-item img {
    min-height: 100px;
  }
  .newsAll-block-item h3 {
    font-size: 14px;
    line-height: 150%;
    -webkit-line-clamp: 2;
    height: 42px;
  }
  .newsAll-block-item .publicdate {
    font-size: 14px;
  }
}

.single-news-name {
  max-width: 850px;
  row-gap: 40px;
}

.single-news-name-text {
  row-gap: 30px;
}

.single-news-name-text h1 {
  font-weight: 400;
  font-size: 40px;
  line-height: 120%;
  color: #000;
  font-family: "Haval", "sans-serif" !important;
  text-transform: uppercase;
}

.single-news-name img {
  margin-bottom: 40px;
  width: 100%;
  max-width: 850px;
  height: 400px;
  object-fit: cover;
}

.single-news-desc {
  max-width: 850px;
}

.single-news-desc img {
  margin-bottom: 40px;
  width: 100%;
  height: 400px;
  object-fit: cover;
}

.single-news-desc p, .single-news-desc ul li {
  font-weight: 400;
  font-size: 16px;
  line-height: 150%;
  color: #000;
}

.single-news-desc p, .single-news-desc ul {
  margin-bottom: 12px;
}

.single-news .publicdate {
  font-weight: 400;
  font-size: 16px;
  line-height: 150%;
  color: #8C8C8C;
  margin-bottom: 0;
  text-transform: uppercase;
}

@media (min-width: 576px) and (max-width: 991px) {
  .single-news-name {
    row-gap: 30px;
  }
  .single-news-name-text {
    row-gap: 30px;
  }
  .single-news-name-text h1 {
    font-size: 26px;
  }
  .single-news-name img {
    margin-bottom: 30px;
    height: 300px;
  }
  .single-news-desc img {
    margin-bottom: 30px;
    height: 300px;
  }
}

@media (max-width: 575px) {
  .single-news-name {
    row-gap: 20px;
  }
  .single-news-name-text {
    row-gap: 20px;
  }
  .single-news-name-text h1 {
    font-size: 20px;
  }
  .single-news-name img {
    margin-bottom: 20px;
    height: unset;
  }
  .single-news-desc img {
    margin-bottom: 20px;
    height: unset;
  }
  .single-news-desc p, .single-news-desc ul li {
    font-size: 14px;
  }
  .single-news-desc p, .single-news-desc ul {
    margin-bottom: 8px;
  }
  .single-news .publicdate {
    font-size: 14px;
  }
}

.typed {
  padding: 50px 0 120px;
}

@media (min-width: 992px) and (max-width: 1200px) {
  .ask-block {
    max-width: 860px;
  }
  .mainBlockSlider .swiper-button-prev, .mainBlockSlider .swiper-button-next {
    top: unset;
    bottom: 40px;
    margin-top: 0;
  }
  .mainBlockSlider .swiper-slide .info-upper {
    row-gap: 40px;
  }
  .mainBlockSlider .swiper-slide .info-upper .btns {
    row-gap: 10px;
  }
  .mainBlockSlider .swiper-slide .info-upper .btns .btn.btn-trnsp-white {
    width: 100%;
  }
  .mainBlockSlider .swiper-slide .info-bottom > div {
    padding: 25px 25px;
  }
}

@media (min-width: 768px) and (max-width: 992px) {
  .mainBlockSlider .swiper-slide .photo img {
    width: 100%;
    height: 512px;
    object-fit: cover;
  }
  .mainBlockSlider .swiper-slide .info-upper {
    row-gap: 40px;
  }
  .mainBlockSlider .swiper-slide .info-upper .text {
    row-gap: 10px;
    max-width: 700px;
  }
  .mainBlockSlider .swiper-slide .info-upper .text.maxWidth {
    max-width: 370px;
  }
  .mainBlockSlider .swiper-slide .info-upper .text .headText {
    font-size: 40px;
    line-height: 48px;
  }
  .mainBlockSlider .swiper-slide .info-upper .text .descriptionText {
    font-size: 16px;
    line-height: 22px;
  }
  .mainBlockSlider .swiper-slide .info-upper .text .priceText {
    font-size: 32px;
    line-height: 38px;
  }
  .mainBlockSlider .swiper-slide .info-upper .btns {
    row-gap: 10px;
  }
  .mainBlockSlider .swiper-slide .info-upper .btns .btn.btn-trnsp-white {
    width: 100%;
  }
  .mainBlockSlider .swiper-slide .info-bottom > div {
    padding: 25px;
  }
  .mainBlockSlider .swiper-slide .info-bottom > div:nth-of-type(1) {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.2) 0%, rgba(196, 196, 196, 0) 156.08%);
    row-gap: 14px;
    width: 250px;
  }
  .mainBlockSlider .swiper-slide .info-bottom > div:nth-of-type(1) p {
    white-space: unset;
  }
  .ask-block-bckg {
    display: none !important;
  }
  .single-news-name h3 {
    font-size: 40px;
    margin-bottom: 48px;
  }
  .single-news-name img {
    margin-bottom: 40px;
    width: 100%;
  }
  .single-news-desc img {
    margin-bottom: 30px;
  }
}

@media (max-width: 767px) {
  .typed {
    padding: 50px 0 70px;
  }
  .mainBlock {
    height: 600px;
  }
  .mainBlockSlider {
    height: 100%;
  }
  .mainBlockSlider .swiper-slide {
    position: relative;
  }
  .mainBlockSlider .swiper-slide .photo {
    flex-grow: 1;
  }
  .mainBlockSlider .swiper-slide .photo img {
    width: 100%;
    height: 90%;
    min-height: unset;
    object-fit: cover;
  }
  .mainBlockSlider .swiper-slide .info {
    position: absolute;
    padding-bottom: 25px;
    padding-top: 25px;
    z-index: 1;
    background: linear-gradient(0deg, #4c5865 0%, #4c5865 50%, rgba(76, 88, 101, 0) 100%);
    height: auto !important;
    top: unset;
  }
  .mainBlockSlider .swiper-slide .info-upper {
    row-gap: 20px;
  }
  .mainBlockSlider .swiper-slide .info-upper .text {
    row-gap: 8px;
  }
  .mainBlockSlider .swiper-slide .info-upper .text.maxWidth {
    max-width: unset;
  }
  .mainBlockSlider .swiper-slide .info-upper .text .headText {
    font-size: 32px;
    line-height: 38px;
  }
  .mainBlockSlider .swiper-slide .info-upper .text .descriptionText {
    font-size: 14px;
    line-height: 19px;
  }
  .mainBlockSlider .swiper-slide .info-upper .text .priceText {
    font-size: 20px;
    line-height: 24px;
  }
  .mainBlockSlider .swiper-slide .info-upper .btns {
    row-gap: 10px;
    width: 100%;
  }
  .mainBlockSlider .swiper-slide .info-upper .btns .btn {
    width: 100%;
  }
  .mainBlockSlider .swiper-slide .info-upper .swiper-pagination {
    position: relative;
    text-align: center;
    display: flex;
    align-items: center;
    column-gap: 12px;
    justify-content: center;
  }
  .mainBlockSlider .swiper-slide .info-upper .swiper-pagination .swiper-pagination-bullet {
    opacity: 1;
    background-color: #4E525F;
  }
  .mainBlockSlider .swiper-slide .info-upper .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
    background-color: #fff;
  }
  .mainBlockSlider .swiper-slide .info-bottom > div {
    padding: 40px 25px;
  }
  .mainBlockSlider .swiper-slide .info-bottom > div .swiper-pagination {
    position: relative;
    text-align: start;
    display: flex;
    align-items: center;
    column-gap: 12px;
    justify-content: start;
  }
  .mainBlockSlider .swiper-slide .info-bottom > div .swiper-pagination .swiper-pagination-bullet {
    opacity: 1;
    background-color: #4E525F;
  }
  .mainBlockSlider .swiper-slide .info-bottom > div .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
    background-color: #fff;
  }
  .mainBlockSlider .swiper-slide .info-bottom > div p {
    color: #fff;
    font-size: 16px;
    font-weight: 400;
    line-height: normal;
    max-width: 590px;
  }
  .mainBlockSlider .swiper-slide .info-bottom > div:nth-of-type(1) {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.2) 0%, rgba(196, 196, 196, 0) 156.08%);
    row-gap: 14px;
    width: 340px;
  }
  .mainBlockSlider .swiper-slide .info-bottom > div:nth-of-type(1) p {
    white-space: nowrap;
  }
  .mainBlockSlider .swiper-slide .info-bottom > div:nth-of-type(2) {
    background-color: #31343C;
  }
  .mainBlockSlider .swiper-slide .info-bottom > div:nth-of-type(3) {
    padding: 40px;
    width: 340px;
  }
  .mainBlockSlider .swiper-slide .info-bottom > div:nth-of-type(3) .btn {
    white-space: nowrap;
  }
  .single-news-name h3 {
    font-size: 32px;
    line-height: 38px;
    margin-bottom: 30px;
  }
  .single-news-name img {
    margin-bottom: 20px;
  }
  .single-news-desc img {
    margin-bottom: 30px;
    max-height: 300px;
  }
  .single-news-desc p, .single-news-desc ul li {
    font-size: 14px;
    line-height: 19px;
  }
  .single-news-desc p, .single-news-desc ul {
    margin-bottom: 15px;
  }
  .single-news .publicdate {
    font-size: 14px;
    line-height: 19px;
  }
}

.aboutPage-head {
  padding-bottom: 75px;
}

.aboutPage-head--block {
  position: relative;
}

.aboutPage-head--block .photo {
  height: 600px;
  width: 100%;
}

.aboutPage-head--block .photo img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.aboutPage-head--block .text {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 100%;
  z-index: 1;
  padding-top: 50px;
}

.aboutPage-head--block .text > div {
  row-gap: 30px;
  max-width: 530px;
}

.aboutPage-head--block .text .btns {
  gap: 10px;
}

.aboutPage-info {
  padding: 75px 0;
}

.aboutPage-info > div {
  gap: 20px;
}

.aboutPage-info .text {
  flex: 1 0 0;
  row-gap: 30px;
  max-width: 600px;
}

.aboutPage-info .text h2 {
  font-weight: 400;
  font-size: 26px;
  line-height: 120%;
  font-family: "Haval", "sans-serif" !important;
  color: #000;
}

.aboutPage-info .text p {
  font-weight: 400;
  font-size: 16px;
  line-height: 150%;
  margin-bottom: 24px;
  color: #000;
}

.aboutPage-info .text p:last-of-type {
  margin-bottom: 0;
}

.aboutPage-info .text > div {
  row-gap: 30px;
}

.aboutPage-info .photo {
  width: 100%;
  max-width: 540px;
  row-gap: 40px;
}

.aboutPage-info .photo img {
  object-fit: cover;
  width: 100%;
  height: 100%;
  max-height: 243px;
}

.aboutPage-info .photoMobile {
  column-gap: 20px;
  width: 100%;
}

.aboutPage-info .photoMobileWrap {
  overflow: visible;
  overflow-x: auto;
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.aboutPage-info .photoMobileWrap::-webkit-scrollbar {
  width: 0;
  height: 0;
  display: none;
}

.aboutPage-info .photoMobile > img {
  width: 90%;
  object-fit: cover;
  max-height: 350px;
}

.aboutPage-team {
  padding: 75px 0;
}

.aboutPage-team .container {
  row-gap: 50px;
}

.aboutPage-team-header {
  font-size: 40px;
  line-height: 120%;
  font-family: "Haval", "sans-serif" !important;
}

.aboutPage-team-grid {
  /* Стилизация скроллбара для WebKit-браузеров */
}

.aboutPage-team-grid .simplebar-wrapper {
  padding-bottom: 20px;
}

.aboutPage-team-grid .simplebar-content {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  row-gap: 30px;
  column-gap: 30px;
  width: 100%;
  scrollbar-width: thin;
  scrollbar-color: #949494 #181B1D;
}

.aboutPage-team-grid .simplebar-content::before, .aboutPage-team-grid .simplebar-content::after {
  content: unset;
}

.aboutPage-team-grid-el {
  row-gap: 20px;
}

.aboutPage-team-grid-el img {
  width: 100%;
}

.aboutPage-team-grid-el-text {
  row-gap: 10px;
}

.aboutPage-team-grid-el-text h5 {
  font-size: 20px;
  font-weight: 800;
  line-height: 140%;
}

.aboutPage-team-grid-el-text p {
  height: 48px;
  font-size: 16px;
  font-weight: 500;
}

.aboutPage-team-grid-el-text div p, .aboutPage-team-grid-el-text div a {
  height: auto;
  font-size: 16px;
  font-weight: 500;
  color: #212529;
  margin: 0;
}

.aboutPage-team-grid-el-text div-mail a {
  text-decoration: underline;
}

.aboutPage-team-grid::-webkit-scrollbar-track {
  background: #181B1D;
}

.aboutPage-team-grid::-webkit-scrollbar-thumb {
  background-color: #949494;
  border-radius: 20px;
}

.aboutPage-gallery {
  padding: 75px 0;
  display: flex;
  width: 100%;
}

.aboutPage-gallery a {
  display: block;
  width: 100%;
  height: auto;
  position: relative;
}

.aboutPage-gallery a img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

.aboutPage-gallery > a {
  width: 50%;
}

.aboutPage-gallery > div {
  width: 50%;
  display: flex;
  flex-direction: column;
}

.aboutPage-gallery > div > div {
  display: flex;
  width: 100%;
}

.aboutPage-gallery > div > div a {
  width: 50%;
}

.aboutPage-gallery > div > div a.view-more {
  position: relative;
}

.aboutPage-gallery > div > div a.view-more::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.88);
  z-index: 1;
}

.aboutPage-gallery > div > div a.view-more .view-more-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  display: flex;
  align-items: center;
  row-gap: 5px;
}

.aboutPage-gallery > div > div a.view-more .view-more-content svg {
  width: 24px;
  height: 24px;
}

.aboutPage-gallery > div > div a.view-more .view-more-content p {
  font-size: 16px;
  line-height: 150%;
  color: white;
  font-weight: 500;
}

.aboutPage_gallery_swiper {
  padding: 0;
  z-index: 0;
  position: relative;
  overflow-x: hidden;
}

.aboutPage_gallery_swiper .swiper-slide img {
  width: 100%;
}

.aboutPage_gallery_swiper .swiper-button-next, .aboutPage_gallery_swiper .swiper-button-prev {
  height: 40px;
  width: 40px;
}

.aboutPage_gallery_swiper .swiper-button-next img, .aboutPage_gallery_swiper .swiper-button-prev img {
  width: 100%;
  height: 100%;
}

.aboutPage_gallery_swiper .swiper-button-next::after, .aboutPage_gallery_swiper .swiper-button-prev::after {
  content: unset;
}

.aboutPage-breadcrumbs {
  font-size: 16px;
  line-height: 150%;
  color: white;
  font-weight: 500;
}

.aboutPage-breadcrumbs a {
  color: white;
}

@media (max-width: 1399.92px) and (min-width: 991.96px) {
  .aboutPage-head--block .text {
    padding-top: 42px;
  }
  .aboutPage-team-grid .simplebar-content {
    grid-template-columns: 1fr 1fr 1fr;
  }
  .aboutPage-team .container {
    row-gap: 40px;
  }
}

@media (min-width: 991.96px) {
  .aboutPage-head--block .text {
    row-gap: 132px;
  }
  .aboutPage_gallery_swiper {
    display: none;
  }
}

@media (min-width: 576px) and (max-width: 991px) {
  .aboutPage-head {
    padding-bottom: 50px;
  }
  .aboutPage-head--block {
    position: relative;
  }
  .aboutPage-head--block .photo {
    height: 700px;
  }
  .aboutPage-head--block .text {
    padding-top: 30px;
    row-gap: 30px;
  }
  .aboutPage-head--block .text > div {
    row-gap: 14px;
    max-width: unset;
  }
  .aboutPage-info {
    row-gap: 30px;
    padding: 50px 0;
  }
  .aboutPage-info > div {
    gap: 30px;
  }
  .aboutPage-info .text {
    max-width: unset;
    row-gap: 30px;
  }
  .aboutPage-info .photo {
    max-width: 470px;
    row-gap: 30px;
  }
  .aboutPage-team {
    padding: 50px 0;
  }
  .aboutPage-team-header {
    font-size: 32px;
  }
  .aboutPage-team .container {
    row-gap: 30px;
  }
  .aboutPage-team-grid .simplebar-content {
    grid-template-columns: 1fr 1fr;
    row-gap: 20px;
    column-gap: 20px;
  }
  .aboutPage-team-grid-el-text h5 {
    font-size: 18px;
  }
  .aboutPage-team-grid-el-text p {
    font-size: 14px;
  }
  .aboutPage-team-grid-el-text div p, .aboutPage-team-grid-el-text div a {
    font-size: 14px;
  }
  .aboutPage_gallery_swiper {
    padding: 50px 0;
  }
}

@media (max-width: 575px) {
  .aboutPage-head {
    padding-bottom: 30px;
  }
  .aboutPage-head--block .photo {
    height: 560px;
  }
  .aboutPage-head--block .text {
    padding-top: 40px;
    row-gap: 20px;
  }
  .aboutPage-head--block .text > div {
    row-gap: 14px;
    max-width: unset;
  }
  .aboutPage-head--block .text .btns {
    column-gap: 10px;
  }
  .aboutPage-info {
    row-gap: 20px;
    padding: 30px 0;
  }
  .aboutPage-info > div {
    gap: 20px;
  }
  .aboutPage-info .text {
    row-gap: 20px;
  }
  .aboutPage-info .text h2 {
    font-size: 20px;
  }
  .aboutPage-info .text p {
    font-size: 14px;
  }
  .aboutPage-info .photoMobile {
    column-gap: 10px;
    width: 100%;
  }
  .aboutPage-info .photoMobile > img {
    width: 96%;
    object-fit: cover;
    min-height: 190px;
    box-sizing: border-box;
  }
  .aboutPage-info .photoMobile > img:last-of-type {
    padding-right: 12px;
  }
  .aboutPage-team {
    padding: 30px 0;
  }
  .aboutPage-team-header {
    font-size: 20px;
  }
  .aboutPage-team .container {
    row-gap: 20px;
  }
  .aboutPage-team-grid-el {
    flex: 0 0 100vw;
  }
  .aboutPage-team-grid-el img {
    width: 100%;
    object-fit: cover;
  }
  .aboutPage-team-grid-el-text {
    text-align: center;
  }
  .aboutPage-team-grid-el-text h5 {
    font-size: 16px;
  }
  .aboutPage-team-grid-el-text p {
    font-size: 12px;
  }
  .aboutPage-team-grid-el-text div p, .aboutPage-team-grid-el-text div a {
    font-size: 12px;
  }
  .aboutPage-team-grid .simplebar-content {
    display: flex;
    column-gap: 20px;
  }
  .aboutPage-team-grid .simplebar-track.simplebar-horizontal {
    background-color: #949494;
    height: 8px;
    border-radius: 20px;
  }
  .aboutPage-team-grid .simplebar-scrollbar {
    width: 25px !important;
    min-width: 25px !important;
  }
  .aboutPage-team-grid .simplebar-scrollbar::before {
    opacity: 1;
    height: 8px;
    width: 25px;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
  }
  .aboutPage_gallery_swiper {
    padding: 30px 0;
  }
  .aboutPage_gallery_swiper .swiper-button-next, .aboutPage_gallery_swiper .swiper-button-prev {
    height: 30px;
    width: 30px;
  }
}

.our-team .accordion {
  --bs-accordion-btn-focus-box-shadow: unset;
  --bs-accordion-border-width: unset;
}

.our-team .accordion-button::after {
  background-image: url(/media/aboutPage/team/chevron-down.svg);
  width: 40px;
  height: 40px;
  background-size: 100%;
}

.our-team .accordion-button:not(.collapsed)::after {
  background-image: url(/media/aboutPage/team/chevron-up.svg);
}

.our-team .accordion-button:focus {
  border-color: unset;
}

.our-team-btn {
  font-size: 26px;
  line-height: 140%;
  color: black;
  font-weight: 400;
  margin: 0;
  padding: 23px 0;
  border-top: 1px solid #181B1D;
}

@media (min-width: 576px) and (max-width: 991px) {
  .our-team-btn {
    font-size: 22px;
  }
}

@media (max-width: 576px) {
  .our-team-btn {
    font-size: 18px;
  }
}

.our-team-btn:not(.collapsed) {
  background-color: unset;
  color: unset;
}

.our-team-body {
  display: grid;
  grid-template-columns: repeat(3, 306px);
  padding-top: 20px;
  padding-bottom: 34px;
  column-gap: 21px;
}

@media (min-width: 576px) and (max-width: 991px) {
  .our-team-body {
    grid-template-columns: repeat(2, 1fr);
    column-gap: 12px;
    row-gap: 20px;
  }
}

@media (max-width: 576px) {
  .our-team-body {
    grid-template-columns: repeat(1, 1fr);
    row-gap: 20px;
  }
}

.our-team-body-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.our-team-body-card img {
  width: 100%;
}

.our-team-body-card-text {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

@media (max-width: 576px) {
  .our-team-body-card-text {
    gap: 8px;
  }
}

.our-team-body-card-text h5 {
  font-size: 20px;
  line-height: 140%;
  color: black;
  font-weight: 800;
  margin: 0;
  text-align: center;
}

@media (min-width: 576px) and (max-width: 991px) {
  .our-team-body-card-text h5 {
    font-size: 18px;
  }
}

@media (max-width: 576px) {
  .our-team-body-card-text h5 {
    font-size: 16px;
  }
}

.our-team-body-card-text p {
  font-size: 16px;
  line-height: 140%;
  color: black;
  font-weight: 500;
  height: 44px;
  margin: 0;
  text-align: center;
}

@media (min-width: 576px) and (max-width: 991px) {
  .our-team-body-card-text p {
    height: 48px;
  }
}

@media (max-width: 576px) {
  .our-team-body-card-text p {
    height: 40px;
    font-size: 14px;
  }
}

.our-team-body-card-text div {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.our-team-body-card-text div p {
  font-size: 16px;
  line-height: 140%;
  color: black;
  font-weight: 500;
  margin: 0;
  height: unset;
  text-align: center;
}

@media (min-width: 576px) and (max-width: 991px) {
  .our-team-body-card-text div p {
    font-size: 14px;
  }
}

@media (max-width: 576px) {
  .our-team-body-card-text div p {
    font-size: 14px;
  }
}

.our-team-body-card-text div a {
  font-size: 16px;
  line-height: 140%;
  color: black;
  font-weight: 500;
  margin: 0;
  text-align: center;
}

@media (min-width: 576px) and (max-width: 991px) {
  .our-team-body-card-text div a {
    font-size: 14px;
  }
}

@media (max-width: 576px) {
  .our-team-body-card-text div a {
    font-size: 14px;
  }
}

.serv-center {
  padding-bottom: 75px;
}

@media (max-width: 992px) and (min-width: 576px) {
  .serv-center {
    padding-bottom: 50px;
  }
}

@media (max-width: 576px) {
  .serv-center {
    padding-bottom: 30px;
  }
}

.serv-center-blocks {
  padding-top: 40px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(3, 1fr);
  gap: 30px;
}

@media (max-width: 1400px) and (min-width: 992px) {
  .serv-center-blocks {
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(4, 1fr);
  }
}

@media (max-width: 992px) and (min-width: 576px) {
  .serv-center-blocks {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(5, 220px);
    gap: 10px;
  }
}

@media (max-width: 576px) {
  .serv-center-blocks {
    grid-template-columns: 1fr;
    grid-template-rows: repeat(8, 1fr);
    gap: 10px;
  }
}

.serv-center-block {
  background-color: #181B1D;
}

@media (max-width: 576px) {
  .serv-center-block {
    display: flex;
    flex-direction: row !important;
    justify-content: space-between;
  }
}

@media (max-width: 576px) {
  .serv-center-block .piece {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
  }
}

.serv-center-block .text {
  padding: 30px;
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: flex-start;
  gap: 20px;
}

@media (min-width: 576px) and (max-width: 992px) {
  .serv-center-block .text {
    padding: 20px;
  }
}

@media (max-width: 576px) {
  .serv-center-block .text {
    padding-right: 0px;
  }
}

.serv-center-block .text p {
  font-size: 20px;
  line-height: 120%;
  color: white;
  font-weight: 400;
  margin: 0;
  font-family: "Haval", "sans-serif" !important;
}

@media (min-width: 576px) and (max-width: 992px) {
  .serv-center-block .text p {
    font-size: 14px;
  }
}

@media (max-width: 576px) {
  .serv-center-block .text p {
    font-size: 14px;
  }
}

.serv-center-block .text span {
  font-size: 16px;
  line-height: 140%;
  color: white;
  font-weight: 500;
  margin: 0;
}

@media (min-width: 576px) and (max-width: 992px) {
  .serv-center-block .text span {
    font-size: 14px;
  }
}

@media (max-width: 576px) {
  .serv-center-block .text span {
    font-size: 14px;
  }
}

.serv-center-block-special-1 {
  grid-row: span 2;
  background-color: #181B1D;
  justify-content: space-between;
}

.serv-center-block-1 {
  grid-column: span 2;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}

@media (min-width: 576px) and (max-width: 992px) {
  .serv-center-block-1 {
    flex-direction: column;
  }
}

@media (max-width: 576px) {
  .serv-center-block-1 {
    grid-column: span 1;
  }
}

.serv-center-block-1 div {
  display: flex;
  align-items: end;
  justify-content: end;
}

.serv-center-block-1 div img {
  width: auto;
  height: 240px;
}

@media (min-width: 576px) and (max-width: 992px) {
  .serv-center-block-1 div img {
    height: 130px;
  }
}

@media (min-width: 992px) and (max-width: 1400px) {
  .serv-center-block-1 {
    flex-direction: column;
  }
  .serv-center-block-1 div img {
    height: 140px;
  }
}

.serv-center-block-2 {
  grid-column: span 2;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}

@media (min-width: 576px) and (max-width: 992px) {
  .serv-center-block-2 {
    flex-direction: column;
  }
}

@media (max-width: 576px) {
  .serv-center-block-2 {
    grid-column: span 1;
  }
}

.serv-center-block-2 div {
  display: flex;
  align-items: end;
  justify-content: end;
}

.serv-center-block-2 div img {
  width: auto;
  height: 240px;
}

@media (min-width: 576px) and (max-width: 992px) {
  .serv-center-block-2 div img {
    height: 160px;
  }
}

@media (min-width: 992px) and (max-width: 1400px) {
  .serv-center-block-2 {
    flex-direction: column;
  }
}

@media (max-width: 576px) {
  .serv-center-block-2 {
    font-size: 14px;
  }
}

.serv-center-block-3 {
  grid-row: span 2;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
}

.serv-center-block-3 .text {
  padding: 18px;
}

.serv-center-block-3 .piece {
  display: flex;
  align-items: center;
  flex-direction: column;
  background-color: #181B1D;
}

.serv-center-block-3 .piece:last-child {
  display: flex;
  flex-direction: column-reverse;
}

.serv-center-block-3 div img {
  width: auto;
  height: 155px;
}

@media (max-width: 1400px) and (min-width: 992px) {
  .serv-center-block-3 {
    grid-row: span 1;
    order: 1;
    grid-column: span 3;
    flex-direction: row;
    justify-content: space-around;
  }
}

@media (max-width: 992px) and (min-width: 576px) {
  .serv-center-block-3 {
    order: 1;
    flex-direction: row;
    justify-content: space-around;
    grid-column: span 2;
    grid-row: span 1;
  }
}

@media (max-width: 576px) {
  .serv-center-block-3 {
    grid-row: span 1;
  }
}

.serv-center-block-4 {
  grid-column: span 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.serv-center-block-4 div {
  display: flex;
  align-items: end;
  justify-content: end;
}

.serv-center-block-4 div img {
  width: auto;
  height: 140px;
}

@media (max-width: 576px) {
  .serv-center-block-4 {
    grid-column: span 1;
  }
}

.serv-center-block-5 {
  grid-column: span 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.serv-center-block-5 .text {
  padding-bottom: 0;
}

.serv-center-block-5 div {
  display: flex;
  align-items: end;
  justify-content: end;
}

.serv-center-block-5 div img {
  width: auto;
  height: 140px;
}

@media (max-width: 992px) {
  .serv-center-block-5 div img {
    height: 120px;
  }
}

@media (max-width: 576px) {
  .serv-center-block-5 {
    grid-column: span 1;
  }
}

.serv-center-block-6 {
  grid-column: span 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.serv-center-block-6 div {
  display: flex;
  align-items: end;
  justify-content: end;
}

.serv-center-block-6 div img {
  width: auto;
  height: 140px;
}

@media (max-width: 576px) {
  .serv-center-block-6 {
    grid-column: span 1;
  }
}

.serv-center-block-special-2 {
  grid-column: span 3;
  display: grid;
  grid-template-columns: repeat(5, auto);
  gap: 30px;
}

.serv-center-block-7 {
  grid-column: span 3;
  display: flex;
  justify-content: space-between;
}

.serv-center-block-7 div {
  display: flex;
  align-items: end;
  justify-content: end;
}

.serv-center-block-7 div img {
  width: auto;
  height: 240px;
  object-fit: cover;
}

@media (max-width: 1400px) and (min-width: 992px) {
  .serv-center-block-7 {
    grid-row: span 1;
    grid-column: span 3;
    display: flex;
    justify-content: space-between;
  }
}

@media (max-width: 992px) and (min-width: 576px) {
  .serv-center-block-7 {
    grid-row: span 1;
    grid-column: span 2;
    display: flex;
    justify-content: space-between;
  }
}

@media (max-width: 576px) {
  .serv-center-block-7 {
    grid-column: span 1;
  }
}

.serv-center-block-8 {
  grid-column: span 2;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.serv-center-block-8 div {
  display: flex;
  align-items: end;
  justify-content: end;
}

.serv-center-block-8 div img {
  width: auto;
  height: 160px;
}

@media (max-width: 992px) {
  .serv-center-block-8 div img {
    height: 140px;
  }
}

@media (max-width: 1400px) and (min-width: 992px) {
  .serv-center-block-8 {
    grid-row: span 1;
    grid-column: span 1;
  }
}

@media (max-width: 992px) and (min-width: 576px) {
  .serv-center-block-8 {
    grid-row: span 1;
    grid-column: span 1;
  }
}

@media (max-width: 576px) {
  .serv-center-block-8 {
    grid-column: span 1;
  }
}

.auto-repair {
  padding: 75px 0;
}

@media (max-width: 992px) and (min-width: 576px) {
  .auto-repair {
    padding: 50px 0;
  }
}

@media (max-width: 576px) {
  .auto-repair {
    padding: 30px 0;
  }
}

.auto-repair-blocks {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.auto-repair-title h2 {
  font-size: 40px;
  line-height: 120%;
  color: black;
  font-weight: 500;
  margin: 0;
  font-family: "Haval", "sans-serif" !important;
}

@media (min-width: 576px) and (max-width: 992px) {
  .auto-repair-title h2 {
    font-size: 26px;
  }
}

@media (max-width: 576px) {
  .auto-repair-title h2 {
    font-size: 20px;
  }
}

@media (max-width: 992px) {
  .auto-repair-block {
    height: 370px;
    width: 240px;
  }
}

.auto-repair-block-text {
  padding: 30px 22px;
  display: flex;
  flex-direction: column;
  align-items: start;
  gap: 25px;
}

.auto-repair-block-text h3 {
  font-size: 26px;
  line-height: 120%;
  color: white;
  font-weight: 500;
  margin: 0;
  font-family: "Haval", "sans-serif" !important;
}

@media (min-width: 992px) and (max-width: 1400px) {
  .auto-repair-block-text h3 {
    font-size: 20px;
  }
}

@media (max-width: 992px) {
  .auto-repair-block-text h3 {
    font-size: 16px;
  }
}

.auto-repair-block-text p {
  font-size: 16px;
  line-height: 150%;
  color: white;
  font-weight: 500;
  margin: 0;
}

@media (max-width: 992px) {
  .auto-repair-block-text p {
    font-size: 14px;
  }
}

.auto-repair-block-background {
  position: relative;
  width: 100%;
  height: 100%;
}

.auto-repair-block-background picture {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  top: 0;
  z-index: -1;
}

.auto-repair-block-background picture img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.auto-repair-block-special {
  background-color: #181B1D;
}

@media (max-width: 992px) {
  .auto-repair-block-special {
    height: 370px;
    width: 240px;
  }
}

.auto-repair-block-special-text {
  padding: 120px 22px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 25px;
}

@media (max-width: 992px) {
  .auto-repair-block-special-text {
    padding: 90px 22px;
  }
}

.auto-repair-block-special-text a {
  font-size: 26px;
  line-height: 120%;
  color: white;
  font-weight: 500;
  margin: 0;
}

@media (min-width: 992px) and (max-width: 1400px) {
  .auto-repair-block-special-text a {
    font-size: 20px;
  }
}

@media (max-width: 992px) {
  .auto-repair-block-special-text a {
    font-size: 16px;
  }
}

.auto-repair-block-special-text p {
  font-size: 16px;
  line-height: 150%;
  color: white;
  font-weight: 500;
  margin: 0;
  text-align: center;
}

@media (max-width: 992px) {
  .auto-repair-block-special-text p {
    font-size: 14px;
  }
}

.auto-repair-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(2, 460px);
  gap: 30px;
}

@media (max-width: 1400px) {
  .auto-repair-grid {
    column-gap: 10px;
    row-gap: 30px;
  }
}

.auto-repair-swiper {
  display: flex;
}

.auto-repair-swiper-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding-top: 30px;
}

.auto-repair-swiper-nav .swiper-button-prev {
  position: unset;
  width: unset;
  height: unset;
  margin: unset;
}

.auto-repair-swiper-nav .swiper-button-next {
  position: unset;
  position: unset;
  width: unset;
  height: unset;
  margin: unset;
}

.help-road {
  padding: 75px 0;
}

@media (max-width: 992px) and (min-width: 576px) {
  .help-road {
    padding: 50px 0;
  }
}

@media (max-width: 576px) {
  .help-road {
    padding: 30px 0;
  }
}

.help-road-blocks-title {
  padding-bottom: 40px;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}

@media (min-width: 320px) and (max-width: 576px) {
  .help-road-blocks-title {
    padding-bottom: 20px;
  }
}

.help-road-blocks-title h2 {
  font-size: 40px;
  line-height: 120%;
  color: white;
  font-weight: 500;
  margin: 0;
  font-family: "Haval", "sans-serif" !important;
}

@media (min-width: 576px) and (max-width: 992px) {
  .help-road-blocks-title h2 {
    font-size: 26px;
  }
}

@media (max-width: 576px) {
  .help-road-blocks-title h2 {
    font-size: 20px;
  }
}

.help-road-blocks-title-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
}

@media (max-width: 576px) {
  .help-road-blocks-title-nav {
    padding-top: 30px;
  }
}

.help-road-blocks-title-nav .swiper-button-prev {
  position: unset;
  width: unset;
  height: unset;
  margin: unset;
}

.help-road-blocks-title-nav .swiper-button-next {
  position: unset;
  position: unset;
  width: unset;
  height: unset;
  margin: unset;
}

.help-road-background {
  position: relative;
  width: 100%;
  height: 100%;
}

.help-road-background picture {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  top: 0;
  z-index: -1;
}

.help-road-background picture img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.help-road-blocks {
  padding: 100px 0;
  gap: 40px;
}

@media (min-width: 992px) and (max-width: 1400px) {
  .help-road-blocks {
    padding: 90px 0;
  }
}

@media (min-width: 576px) and (max-width: 992px) {
  .help-road-blocks {
    padding: 70px 0;
  }
}

@media (min-width: 320px) and (max-width: 576px) {
  .help-road-blocks {
    padding: 40px 0;
  }
}

.help-road-blocks-swiper {
  overflow: unset;
}

.help-road-blocks-swiper .swiper-wrapper {
  display: flex;
  flex-direction: row;
  align-items: stretch;
}

.help-road-blocks-swiper .swiper-wrapper .swiper-slide {
  height: 488px;
}

.help-road .special {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 25px;
}

.help-road-block {
  background-color: #181B1DB2;
  padding: 40px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  height: 488px;
}

.help-road-block h3 {
  font-size: 26px;
  line-height: 120%;
  color: white;
  font-weight: 500;
  margin: 0;
  font-family: "Haval", "sans-serif" !important;
}

@media (min-width: 992px) and (max-width: 1400px) {
  .help-road-block h3 {
    font-size: 20px;
  }
}

@media (max-width: 992px) {
  .help-road-block h3 {
    font-size: 16px;
  }
}

.help-road-block p {
  font-size: 16px;
  line-height: 150%;
  color: white;
  font-weight: 500;
  margin: 0;
}

@media (max-width: 992px) {
  .help-road-block p {
    font-size: 14px;
  }
}

.help-road-block a {
  font-size: 26px;
  line-height: 120%;
  color: white;
  font-weight: 500;
  margin: 0;
}

@media (min-width: 992px) and (max-width: 1400px) {
  .help-road-block a {
    font-size: 20px;
  }
}

@media (max-width: 992px) {
  .help-road-block a {
    font-size: 16px;
  }
}

.help-road-block ul {
  margin: 0;
  padding-left: 15px;
}

.help-road-block ul li {
  font-size: 16px;
  line-height: 150%;
  color: white;
  font-weight: 500;
  margin: 0;
}

@media (max-width: 992px) {
  .help-road-block ul li {
    font-size: 14px;
  }
}

.road-reviews {
  padding: 75px 0;
}

@media (max-width: 992px) and (min-width: 576px) {
  .road-reviews {
    padding: 50px 0;
  }
}

@media (max-width: 576px) {
  .road-reviews {
    padding: 30px 0;
  }
}

.road-reviews-blocks-title {
  padding-bottom: 40px;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}

@media (min-width: 320px) and (max-width: 576px) {
  .road-reviews-blocks-title {
    padding-bottom: 20px;
  }
}

.road-reviews-blocks-title h2 {
  font-size: 40px;
  line-height: 120%;
  color: black;
  font-weight: 500;
  margin: 0;
  font-family: "Haval", "sans-serif" !important;
}

@media (min-width: 576px) and (max-width: 992px) {
  .road-reviews-blocks-title h2 {
    font-size: 26px;
  }
}

@media (max-width: 576px) {
  .road-reviews-blocks-title h2 {
    font-size: 20px;
  }
}

.road-reviews-blocks-title-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
}

@media (max-width: 576px) {
  .road-reviews-blocks-title-nav {
    padding-top: 30px;
  }
}

.road-reviews-blocks-title-nav .swiper-button-prev {
  position: unset;
  width: unset;
  height: unset;
  margin: unset;
}

.road-reviews-blocks-title-nav .swiper-button-next {
  position: unset;
  position: unset;
  width: unset;
  height: unset;
  margin: unset;
}

.road-reviews .swiper-slide img {
  width: 100%;
  height: 100%;
}

.credit {
  padding: 90px 0;
  background-color: #181B1D;
}

.credit .container {
  gap: 37px;
}

.credit-images {
  position: relative;
  display: flex;
  align-items: center;
}

.credit .askBlockFieldWrapper {
  width: 100%;
}

.credit .askBlockField input {
  font-size: 16px;
  line-height: 150%;
  font-weight: 400;
  padding: 12px 15px;
  border: 1px solid #00CABF;
  font-family: "Haval", "sans-serif" !important;
  outline: none;
  width: 100%;
}

.credit-header {
  font-size: 40px;
  line-height: 120%;
  color: white;
  font-family: "Haval", "sans-serif" !important;
}

.credit-container {
  row-gap: 40px;
  min-width: 516px;
}

@media (max-width: 992px) {
  .credit-container {
    min-width: unset;
  }
}

.credit .car-bg {
  z-index: 2;
  width: 100%;
  position: relative;
}

.credit .elem-bg {
  position: absolute;
  width: 100%;
  right: 0;
  z-index: 1;
  top: 17%;
}

.credit-content {
  row-gap: 24px;
  max-width: 516px;
}

.credit-content-flex {
  display: flex;
  gap: 24px;
}

.credit-content-flex label {
  padding-bottom: 10px;
  font-size: 16px;
  line-height: 150%;
  color: #FFFFFF;
  font-family: 'PF DinDisplay Pro', sans-serif;
}

.credit-content-el {
  row-gap: 10px;
}

.credit-content-el p {
  font-size: 16px;
  line-height: 150%;
  color: #FFFFFF;
  font-family: 'PF DinDisplay Pro', sans-serif;
}

.credit-content-el .selectCarEquipmentFilter option:first-of-type {
  color: black;
}

.credit-content-el #output-payments, .credit-content-el #output-term {
  position: absolute;
  top: -35px;
  background: white;
  padding: 7px 14px;
  font-size: 14px;
  font-weight: 600;
  color: black;
  box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.0784314), 0px 0px 6px 0px rgba(0, 0, 0, 0.0196078);
  transform: translateX(-50%);
  line-height: 1;
  white-space: nowrap;
  font-family: 'PF DinDisplay Pro', sans-serif;
}

.credit-content-el-inputWrapper {
  row-gap: 18px;
}

.credit-content-el-inputWrapper .range-value p {
  font-size: 14px;
  line-height: 150%;
  color: white;
  font-family: 'PF DinDisplay Pro', sans-serif;
}

.credit-content-el--range {
  row-gap: 33px;
}

.credit-content-bottom {
  row-gap: 12px;
}

.credit-content-bottom p {
  font-weight: 400;
  font-size: 16px;
  line-height: 130%;
  text-align: center;
  color: white;
  font-family: "Haval", "sans-serif" !important;
}

.credit-content-bottom a {
  text-decoration: none;
  color: white;
  font-family: "Haval", "sans-serif" !important;
}

.credit-content-input {
  -webkit-appearance: none;
  /* Скрывает слайдер, чтобы можно было создать свой */
  width: 100%;
  /* Указание параметра ширины требуется для Firefox. */
  background: transparent;
  font-family: "Haval", "sans-serif" !important;
}

.credit-content-input:focus {
  outline: none;
}

.credit-content-input::-webkit-slider-runnable-track {
  width: 100%;
  height: 4px;
  cursor: pointer;
  background: linear-gradient(to right, #949494 var(--value, 0%), white var(--value, 0%));
  border-radius: 4px;
}

.credit-content-input::-webkit-slider-thumb {
  -webkit-appearance: none;
  border: 2px solid #949494;
  height: 14px;
  width: 14px;
  border-radius: 50px;
  background: #ffffff;
  cursor: pointer;
  margin-top: -5px;
}

.credit-content-input::-moz-range-track {
  width: 100%;
  height: 4px;
  cursor: pointer;
  background: linear-gradient(to right, #949494 var(--value, 0%), white var(--value, 0%));
  border-radius: 4px;
}

.credit-content-input::-moz-range-thumb {
  box-shadow: 1px 1px 1px #000000, 0px 0px 1px #0d0d0d;
  border: 1px solid #000000;
  height: 36px;
  width: 16px;
  border-radius: 3px;
  background: #ffffff;
  cursor: pointer;
}

.credit-content-input::-ms-track {
  width: 100%;
  height: 8.4px;
  cursor: pointer;
  background: transparent;
  border-color: transparent;
  border-width: 16px 0;
  color: transparent;
}

.credit-content-input::-ms-fill-lower {
  background: white;
  border-radius: 2.6px;
}

.credit-content-input::-ms-fill-upper {
  background: #949494;
  border-radius: 2.6px;
}

.credit-content-input::-ms-thumb {
  box-shadow: 1px 1px 1px #000000, 0px 0px 1px #0d0d0d;
  border: 1px solid #000000;
  height: 36px;
  width: 16px;
  border-radius: 3px;
  background: #ffffff;
  cursor: pointer;
}

@media (min-width: 1399.96px) {
  .credit .container {
    row-gap: 30px;
  }
}

@media (max-width: 1399.96px) and (min-width: 991.96px) {
  .credit {
    padding: 80.5px 0 81.5px;
  }
  .credit .elem-bg {
    top: 25%;
  }
  .credit .credit-content-flex {
    gap: 14px;
  }
}

@media (max-width: 991.96px) and (min-width: 767.96px) {
  .credit {
    padding: 50px 0;
  }
  .credit .container {
    row-gap: 0;
    flex-direction: column;
  }
  .credit .car-bg {
    padding-top: 30px;
    padding-bottom: 56px;
  }
  .credit-content {
    max-width: 100%;
    width: 100%;
  }
  .credit .credit-content-flex {
    gap: 14px;
  }
  .credit-header {
    font-size: 32px;
  }
}

@media (max-width: 767.96px) {
  .credit {
    padding: 40px 0 0;
    row-gap: 30px;
  }
  .credit .container {
    row-gap: 30px;
    flex-direction: column;
  }
  .credit .car-bg {
    padding-top: 20px;
    padding-bottom: 35px;
  }
  .credit-container {
    row-gap: 0;
  }
  .credit-header {
    font-size: 20px;
    text-align: center;
    padding: 0 30px;
  }
  .credit-content {
    max-width: 100%;
    width: 100%;
    row-gap: 20px;
    padding: 0 30px;
  }
  .credit-content-flex {
    flex-direction: column;
    gap: 29px;
  }
  .credit-content-el {
    min-width: 100%;
  }
  .credit-content .askBlockFieldWrapper {
    min-width: 100%;
  }
  .credit-content-bottom p {
    font-size: 12px;
  }
}

.lizingOfferAdditional {
  padding: 75px 0;
}

.lizingOfferAdditional > div {
  row-gap: 50px;
}

.lizingOfferAdditional-head {
  row-gap: 30px;
  max-width: 800px;
}

.lizingOfferAdditional-head-container {
  width: 100%;
  margin: 0 auto;
  text-align: center;
}

.lizingOfferAdditional-head p {
  font-weight: 400;
  font-size: 22px;
  line-height: 140%;
}

.lizingOfferAdditional-cards {
  grid-template-rows: 1fr;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 30px;
}

.lizingOfferAdditional-cards-el {
  padding: 40px 30px;
  row-gap: 24px;
  box-shadow: 7px 10px 37px 0 rgba(11, 69, 127, 0.07);
}

.lizingOfferAdditional-cards-el .photo {
  width: 100%;
  max-width: 60px;
}

.lizingOfferAdditional-cards-el .photo img {
  width: 100%;
}

.lizingOfferAdditional-cards-el .text {
  row-gap: 10px;
}

.lizingOfferAdditional-cards-el .text h3 {
  font-family: "Haval", "sans-serif" !important;
  font-size: 20px;
  line-height: 120%;
  font-weight: 400;
  color: #000;
}

.lizingOfferAdditional-cards-el .text p {
  font-weight: 600;
  font-size: 16px;
  line-height: 150%;
  color: #000;
}

@media (min-width: 992px) and (max-width: 1400px) {
  .lizingOfferAdditional-cards {
    gap: 20px;
  }
  .lizingOfferAdditional-head-container {
    text-align: start;
    justify-content: start !important;
  }
}

@media (min-width: 576px) and (max-width: 991px) {
  .lizingOfferAdditional {
    padding: 35px 0;
  }
  .lizingOfferAdditional-header {
    font-size: 26px;
  }
  .lizingOfferAdditional-head p {
    font-size: 16px;
  }
  .lizingOfferAdditional-head-container {
    text-align: start;
    justify-content: start !important;
  }
  .lizingOfferAdditional-cards {
    grid-template-columns: 1fr;
    gap: 10px;
  }
  .lizingOfferAdditional-cards-el {
    padding: 30px 50px;
    row-gap: 14px;
  }
  .lizingOfferAdditional-cards-el .photo {
    max-width: 60px;
  }
  .lizingOfferAdditional-cards-el .text h3 {
    font-size: 16px;
  }
  .lizingOfferAdditional-cards-el .text p {
    font-size: 16px;
  }
}

@media (max-width: 575px) {
  .lizingOfferAdditional {
    padding: 35px 0;
  }
  .lizingOfferAdditional-head p {
    font-size: 16px;
  }
  .lizingOfferAdditional-head-container {
    text-align: start;
    justify-content: start !important;
  }
  .lizingOfferAdditional-cards {
    grid-template-columns: 1fr;
    gap: 10px;
  }
  .lizingOfferAdditional-cards-el {
    padding: 15px 18px;
    row-gap: 10px;
  }
  .lizingOfferAdditional-cards-el .photo {
    max-width: 60px;
  }
  .lizingOfferAdditional-cards-el .text h3 {
    font-size: 16px;
  }
  .lizingOfferAdditional-cards-el .text p {
    font-size: 14px;
  }
}

.lizingOfferInstruct {
  height: 775px;
  background-color: #181B1D;
  position: relative;
}

.lizingOfferInstruct > div {
  z-index: 1;
}

.lizingOfferInstructWrap {
  padding: 75px 0;
}

.lizingOfferInstruct-photo {
  position: absolute;
  width: 50%;
  top: 0;
  bottom: 0;
  right: 0;
}

.lizingOfferInstruct-photo img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}

.lizingOfferInstruct-info {
  row-gap: 30px;
  max-width: 460px;
}

.lizingOfferInstruct-info h2 {
  color: #fff;
  font-family: "Haval", "sans-serif" !important;
  font-size: 32px;
  font-weight: 600;
  line-height: 120%;
  word-break: break-word;
}

.lizingOfferInstruct-info .textWithIcon {
  column-gap: 20px;
}

.lizingOfferInstruct-info .textWithIcon img {
  width: 24px;
  height: 24px;
}

.lizingOfferInstruct-info p {
  color: #fff;
  font-size: 16px;
  font-weight: 400;
  line-height: 150%;
}

@media (min-width: 992px) and (max-width: 1200px) {
  .lizingOfferInstruct-info {
    max-width: 440px;
  }
}

@media (min-width: 576px) and (max-width: 991px) {
  .lizingOfferInstruct {
    height: unset;
  }
  .lizingOfferInstructWrap {
    padding: 50px 0;
  }
  .lizingOfferInstruct-photo {
    position: unset;
    width: 100%;
    top: unset;
    bottom: unset;
    right: unset;
  }
  .lizingOfferInstruct-photo img {
    height: 270px;
  }
  .lizingOfferInstruct-info {
    row-gap: 20px;
    max-width: 500px;
    padding: 40px 0;
  }
  .lizingOfferInstruct-info h2 {
    font-size: 26px;
  }
}

@media (max-width: 575px) {
  .lizingOfferInstruct {
    height: unset;
  }
  .lizingOfferInstructWrap {
    padding: 35px 0;
  }
  .lizingOfferInstruct-photo {
    position: unset;
    width: 100%;
    top: unset;
    bottom: unset;
    right: unset;
  }
  .lizingOfferInstruct-photo img {
    height: 200px;
  }
  .lizingOfferInstruct .textWithIcon {
    column-gap: 10px;
  }
  .lizingOfferInstruct .textWithIcon img {
    width: 20px;
    height: 20px;
  }
  .lizingOfferInstruct-info {
    row-gap: 10px;
    max-width: 500px;
    padding: 40px 0;
  }
  .lizingOfferInstruct-info h2 {
    font-size: 20px;
  }
  .lizingOfferInstruct-info p {
    font-size: 14px;
  }
}

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

.lizingOfferDecodedInfo > div {
  row-gap: 10px;
}

.lizingOfferDecodedInfo p {
  font-size: 14px;
  line-height: 150%;
  font-weight: 400;
  color: #000;
}

@media (min-width: 576px) and (max-width: 991px) {
  .lizingOfferDecodedInfo {
    font-size: 12px;
    padding: 20px 0 40px;
  }
}

@media (max-width: 575px) {
  .lizingOfferDecodedInfo {
    padding: 20px 0 40px;
  }
  .lizingOfferDecodedInfo > div {
    row-gap: 8px;
  }
  .lizingOfferDecodedInfo p {
    font-size: 12px;
    line-height: 150%;
    font-weight: 400;
  }
}

.lizingPartners {
  padding: 75px 0;
  overflow: hidden;
}

.lizingPartners-content {
  row-gap: 40px;
}

.lizingPartners-content-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 30px;
  align-items: center;
}

.lizingPartners-content-grid-el {
  background: #181b1d;
  height: 150px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lizingPartners-slider {
  overflow: visible;
}

.lizingPartners-slider .swiper-wrapper {
  overflow: visible;
}

@media (max-width: 575.96px) {
  .lizingPartners-slider .swiper-wrapper {
    padding: 0;
  }
}

.lizingPartners-slider .swiper-slide {
  width: 225px;
}

.lizingPartners-slider-button-container {
  column-gap: 10px;
}

.lizingPartners-slider-button-container div {
  width: 44px;
  height: 44px;
  background: #949494;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}

.lizingPartners-header {
  text-align: center;
  max-width: 810px;
}

.lizingPartners-container {
  row-gap: 30px;
}

.lizingPartners-container-el {
  gap: 30px;
}

.lizingPartners-container-el div {
  width: 307px;
}

@media (max-width: 1399.96px) and (min-width: 991.96px) {
  .lizingPartners-content {
    row-gap: 30px;
  }
  .lizingPartners-content-grid {
    gap: 20px;
  }
  .lizingPartners-header {
    text-align: start;
    max-width: none;
  }
}

@media (max-width: 991.96px) and (min-width: 575.96px) {
  .lizingPartners {
    padding: 50px 0;
  }
  .lizingPartners-content {
    row-gap: 30px;
  }
  .lizingPartners-content-grid-el {
    width: 225px;
  }
  .lizingPartners-content-grid-el img {
    max-width: 185px;
  }
  .lizingPartners-header {
    max-width: none;
    text-align: start;
    font-size: 26px;
  }
}

@media (max-width: 575.96px) {
  .lizingPartners {
    padding: 35px 0;
  }
  .lizingPartners-header {
    max-width: none;
    text-align: start;
  }
  .lizingPartners-content {
    row-gap: 30px;
  }
  .lizingPartners-content-grid-el img {
    max-width: 185px;
  }
  .lizingPartners-slider-button-container div {
    width: 52px;
    height: 52px;
  }
}

.lizingHeader-photo {
  height: 600px;
}

.lizingHeader-photo img {
  object-position: center 30%;
}

.lizingHeader-container {
  height: 600px;
}

.lizingHeader-text {
  padding: 50px 0 0 10px;
  gap: 65px;
}

@media (min-width: 576px) and (max-width: 991px) {
  .lizingHeader-text {
    gap: 15px;
    padding: 30px 0 0 10px;
  }
  .lizingHeader-photo {
    height: 700px;
  }
  .lizingHeader-photo img {
    object-position: center 75%;
  }
  .lizingHeader-container {
    height: 700px;
  }
}

@media (max-width: 575px) {
  .lizingHeader-text {
    gap: 20px;
    padding: 40px 0 0 10px;
  }
  .lizingHeader-photo {
    height: 560px;
  }
  .lizingHeader-photo img {
    object-position: center 75%;
  }
  .lizingHeader-container {
    height: 560px;
  }
}

.testDrive {
  padding: 75px 0;
}

.testDrive > div > div {
  box-shadow: 7px 10px 37px #0B457F12;
}

.testDrive-photo {
  width: 50%;
}

.testDrive-photo img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  max-height: 350px;
}

.testDrive-info {
  row-gap: 20px;
  width: 50%;
  padding: 60px;
  background: #181B1D;
  color: white;
}

.testDrive-info .popover {
  border-radius: 100%;
  z-index: 10;
  background-color: unset;
  border: unset;
}

.testDrive-info .popover-content {
  opacity: 0;
  visibility: hidden;
  position: absolute;
  bottom: 80%;
  left: -355%;
  z-index: 11;
  transform: translate(0, 10px);
  background-color: #FFFFFF;
  padding: 8px;
  border-radius: 12px;
  box-shadow: 0 4px 8px 0 #0000000F, 0 0 4px 0 #0000000A;
  width: 180px;
}

.testDrive-info .popover-content p {
  font-weight: 400;
  font-size: 14px !important;
  line-height: 150%;
  text-align: center;
}

@media (max-width: 992px) {
  .testDrive-info .popover-content {
    left: -420%;
  }
}

@media (max-width: 768px) {
  .testDrive-info .popover-content {
    padding: 8px;
    bottom: 50%;
    width: 170px;
    left: -410%;
  }
}

.testDrive-info .popover-content p {
  text-align: center;
  font-weight: 400;
  font-size: 12px;
  line-height: 110%;
  color: #000001;
  margin: 0;
}

.testDrive-info .popover:hover .popover-content {
  z-index: 10;
  opacity: 1;
  visibility: visible;
  transform: translate(0, -20px);
  transition: all 0.5s cubic-bezier(0.75, -0.02, 0.2, 0.97);
}

.testDrive-info h3 {
  font-family: "Haval", "sans-serif" !important;
  font-size: 32px;
  font-weight: 400;
  line-height: 120%;
  word-break: break-word;
  margin: 0;
}

.testDrive-info p {
  font-size: 16px;
  font-weight: 300;
  line-height: 150%;
}

@media (min-width: 992px) and (max-width: 1400px) {
  .testDrive-info h3 {
    font-size: 26px;
  }
}

@media (min-width: 576px) and (max-width: 991px) {
  .testDrive {
    padding: 50px 0;
  }
  .testDrive-photo {
    width: 100%;
  }
  .testDrive-info {
    width: 100%;
    padding: 40px;
  }
  .testDrive-info h3 {
    font-size: 26px;
  }
}

@media (max-width: 575px) {
  .testDrive {
    padding: 30px 0;
  }
  .testDrive-photo {
    width: 100%;
  }
  .testDrive-info {
    width: 100%;
    padding: 30px 20px;
    row-gap: 10px;
  }
  .testDrive-info h3 {
    font-size: 20px;
  }
}

.specials {
  row-gap: 35px;
  padding: 75px 0;
}

.specials-header {
  width: 100%;
}

.specials-content {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}

@media (max-width: 575.99px) {
  .specials-content {
    flex-direction: column;
    gap: 8px;
  }
}

.specials-card {
  position: relative;
  display: flex;
  align-items: flex-end;
  padding: 20px;
  height: 307px;
  width: 300px;
  border: 1px solid black;
  border-radius: 12px;
  overflow: hidden;
}

@media (max-width: 999.99px) {
  .specials-card {
    height: 255px;
    width: 225px;
  }
}

@media (max-width: 575.99px) {
  .specials-card {
    height: 80px;
    width: 100%;
    align-items: center;
    justify-content: flex-end;
    padding: 10px;
  }
}

.specials-card-plus {
  position: absolute;
  z-index: 3;
  top: 20px;
  left: 20px;
  transition: .35s ease;
  width: 40px;
  height: 40px;
}

@media (max-width: 575.99px) {
  .specials-card-plus {
    top: 50%;
    transform: translateY(-50%);
  }
}

@media (max-width: 430px) {
  .specials-card-plus {
    width: 30px;
    height: 30px;
  }
}

.specials-card-text {
  position: relative;
  z-index: 3;
  text-wrap: pretty;
  text-transform: uppercase;
  font-size: 27px;
  margin: 0;
}

.specials-card-text-accent-font {
  font-weight: 800;
}

.specials-card-text-accent-color {
  color: #00CABF;
}

@media (max-width: 991px) {
  .specials-card-text {
    font-size: 20px;
  }
}

@media (max-width: 575.99px) {
  .specials-card-text {
    font-size: 20px;
    text-align: end;
  }
}

@media (max-width: 430px) {
  .specials-card-text {
    font-size: 16px;
  }
}

.specials-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  transition: opacity 0.35s ease;
  opacity: 0;
}

.specials-card--bg-visible {
  color: #fff;
}

.specials-card--bg-visible .specials-card-bg-img {
  opacity: 1;
}

.specials-card--bg-visible:hover {
  background-color: white;
  color: #000;
}

.specials-card--bg-visible:hover .specials-card-bg-img {
  opacity: 0;
}

.specials-card--bg-invisible {
  color: #000;
}

.specials-card--bg-invisible:hover {
  color: #fff;
}

.specials-card--bg-invisible:hover .specials-card-bg-img {
  opacity: 1;
}

.specials-card:hover .specials-card-plus {
  transform: rotate(45deg);
}

@media (max-width: 575.99px) {
  .specials-card:hover .specials-card-plus {
    transform: translateY(-50%) rotate(45deg);
  }
}

.specials .specialsSwiper {
  overflow: visible;
}

.specials .swiper-wrapper {
  overflow: visible;
}

.specials .swiper-slide {
  background: linear-gradient(90deg, #0A0A0A 0%, #30363A 67.5%, #8C8C8C 100%);
  z-index: 0;
  padding: 6px;
  border-radius: 20px;
  cursor: pointer;
  position: relative;
  min-width: 282px;
}

.specials .swiper-slide::after {
  position: absolute;
  top: 3px;
  left: 3px;
  bottom: 3px;
  right: 3px;
  content: '';
  background-color: #fff;
  border-radius: 18px;
  z-index: -1;
}

.specials .swiper-slide img {
  width: 100%;
  border-radius: 15px;
}

.specials .swiper-button-prev, .specials .swiper-button-next {
  width: 56px;
  height: auto;
}

.specials .swiper-button-prev {
  left: 0;
}

.specials .swiper-button-next {
  right: 0;
}

.specials .swiper-button-disabled {
  display: none !important;
}

@media (min-width: 991.96px) and (max-width: 1399.96px) {
  .specials .swiper-slide {
    min-width: 225px;
  }
}

@media (min-width: 768px) and (max-width: 991.96px) {
  .specials {
    padding: 50px 0;
  }
}

@media (min-width: 575.96px) and (max-width: 991.96px) {
  .specials .swiper {
    grid-template-columns: repeat(auto-fit, minmax(175px, 1fr));
  }
  .specials .swiper-slide {
    min-width: 175px;
  }
}

@media (max-width: 767.96px) {
  .specials {
    padding: 30px 0;
    row-gap: 25px;
  }
  .specials .swiper-slide {
    padding: 4px;
    border-radius: 15px;
  }
  .specials .swiper-slide::after {
    top: 2px;
    left: 2px;
    bottom: 2px;
    right: 2px;
    border-radius: 14px;
  }
  .specials .swiper-slide img {
    border-radius: 12px;
  }
}

@media (max-width: 575.96px) {
  .specials .swiper-slide {
    min-width: 122px;
  }
}

.ownersGift {
  justify-self: center;
  padding: 75px 0;
  max-width: 802px;
}

@media (max-width: 991.96px) {
  .ownersGift {
    max-width: 100%;
    padding: 50px 0;
  }
}

@media (max-width: 575.96px) {
  .ownersGift {
    padding: 30px 0;
  }
}

.ownersGiftContent {
  display: flex;
  flex-direction: column;
  gap: 67px;
}

@media (max-width: 575.96px) {
  .ownersGiftContent {
    gap: 40px;
  }
}

.ownersGiftHead {
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: flex-start;
}

@media (max-width: 575.96px) {
  .ownersGiftHead button {
    width: 100%;
  }
}

.ownersGiftImage img {
  width: 100%;
}

.ownersChangeCar {
  display: flex;
  flex-direction: column;
  gap: 50px;
  padding: 75px 0;
}

@media (max-width: 991.96px) {
  .ownersChangeCar {
    padding: 50px 0;
  }
}

@media (max-width: 575.96px) {
  .ownersChangeCar {
    padding: 30px 0;
    gap: 22px;
  }
}

.ownersChangeCar-header {
  max-width: 802px;
  justify-self: center;
}

@media (max-width: 991.96px) {
  .ownersChangeCar-header {
    max-width: 100%;
  }
}

.ownersChangeCarList {
  display: grid;
  row-gap: 20px;
  column-gap: 30px;
  grid-template-columns: 1fr 1fr 1fr;
}

@media (max-width: 1399.96px) {
  .ownersChangeCarList {
    column-gap: 20px;
  }
}

@media (max-width: 991.96px) {
  .ownersChangeCarList {
    column-gap: 10px;
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 575.96px) {
  .ownersChangeCarList {
    grid-template-columns: 1fr;
  }
}

.ownersChangeCarEl {
  display: flex;
  flex-direction: column;
  box-shadow: 0px 0px 37px 0px #0B457F14;
}

.ownersChangeCarElImage {
  position: relative;
  height: 220px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

@media (max-width: 1399.96px) {
  .ownersChangeCarElImage {
    height: 190px;
  }
}

@media (max-width: 991.96px) {
  .ownersChangeCarElImage {
    height: 166px;
  }
}

.ownersChangeCarElImageSticky {
  align-self: flex-start;
  background: linear-gradient(270deg, #2E2E2E 8.41%, #555555 89.05%);
  margin-bottom: 4px;
  width: fit-content;
  user-select: none;
}

.ownersChangeCarElImageSticky p {
  color: #FFFFFF;
  font-family: "Haval", "sans-serif" !important;
  font-size: 12px;
  font-weight: 500;
  line-height: 100%;
  padding: 5px 10px;
  text-transform: uppercase;
  margin-bottom: 0;
}

@media (max-width: 1399.96px) {
  .ownersChangeCarElImageSticky p {
    font-size: 8px;
  }
}

.ownersChangeCarElImage img {
  position: absolute;
  height: 100%;
  width: 100%;
  object-fit: contain;
  top: 0;
  z-index: -1;
}

.ownersChangeCarElInfo {
  display: flex;
  flex-direction: column;
  gap: 22px;
  height: 100%;
  justify-content: space-between;
  padding: 0 20px 20px 20px;
}

@media (max-width: 991.96px) {
  .ownersChangeCarElInfo {
    padding: 0 10px 20px 10px;
  }
}

.ownersChangeCarElInfoTop {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

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

.ownersChangeCarElTitle {
  font-family: "Haval", "sans-serif" !important;
  font-weight: 400;
  margin-bottom: 0;
  font-size: 22px;
  line-height: 110%;
}

@media (max-width: 991.96px) {
  .ownersChangeCarElTitle {
    font-size: 18px;
  }
}

.ownersChangeCarElDescription {
  color: #1111117A;
  font-size: 16px;
  font-weight: 600;
  line-height: 150%;
  font-family: 'PF DinDisplay Pro', sans-serif;
}

@media (max-width: 1399.96px) {
  .ownersChangeCarElDescription {
    font-size: 14px;
  }
}

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

.ownersChangeCarElScopeItem {
  display: flex;
  gap: 8px;
  align-items: center;
}

.ownersChangeCarElScopeItem img {
  height: 24px;
  width: 24px;
}

.ownersChangeCarElScopeItem p {
  margin-bottom: 0;
  color: #000000;
  font-family: 'PF DinDisplay Pro', sans-serif;
  font-weight: 600;
  line-height: 150%;
  font-size: 16px;
}

@media (max-width: 1399.96px) {
  .ownersChangeCarElScopeItem p {
    font-size: 14px;
  }
}

.fixed-content {
  position: fixed;
  left: 0;
  right: 0;
  z-index: 10000;
  bottom: 0;
}

.cookie_block {
  box-shadow: 0px -5px 44px 0px #00000012;
  left: 0;
  right: 0;
  z-index: 99;
  bottom: 0;
  display: none;
  background-color: #F1F1F1;
}

.cookie_block-content {
  padding: 16px 0;
  display: flex;
  flex-direction: row;
  gap: 30px;
  align-items: center;
  justify-content: space-between;
}

@media (max-width: 1400px) {
  .cookie_block-content {
    padding: 6px 0;
  }
}

@media (max-width: 992px) {
  .cookie_block-content {
    padding: 18px 0;
  }
}

@media (max-width: 768px) {
  .cookie_block-content {
    padding: 6.5px 0;
    flex-direction: column;
    gap: 14px;
    align-items: flex-start;
  }
}

.cookie_block-link {
  text-decoration: underline;
  color: #206CCF;
}

.cookie_block-text {
  font-weight: 400;
  font-size: 16px;
  line-height: 150%;
  margin-bottom: 0;
  max-width: 1045px;
}

@media (max-width: 768px) {
  .cookie_block-text {
    font-size: 14px;
  }
}

.chargingStation {
  display: flex;
  flex-direction: column;
  gap: 50px;
}

@media (max-width: 768px) {
  .chargingStation {
    gap: 16px;
  }
}

.chargingStation-container {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

@media (max-width: 768px) {
  .chargingStation-container {
    gap: 16px;
  }
}

.chargingStation-wrapper {
  position: relative;
}

.chargingStation-map {
  height: 726px;
  width: 100%;
}

@media (max-width: 1400px) {
  .chargingStation-map {
    height: 610px;
  }
}

@media (max-width: 992px) {
  .chargingStation-map {
    height: 800px;
  }
}

@media (max-width: 768px) {
  .chargingStation-map {
    height: 553px;
  }
}

.chargingStation-info {
  box-shadow: 7px 4px 19px 0px #2F31400F;
  position: absolute;
  top: 118px;
  left: 50px;
  max-width: 560px;
  padding: 50px 40px;
  background-color: #FFFFFF;
  display: flex;
  flex-direction: column;
  gap: 26px;
}

@media (max-width: 1400px) {
  .chargingStation-info {
    top: 30px;
    left: 30px;
    gap: 22px;
    padding: 40px 30px;
    max-width: 484px;
  }
}

@media (max-width: 992px) {
  .chargingStation-info {
    top: 25px;
    left: 25px;
    padding: 30px;
    max-width: 430px;
  }
}

@media (max-width: 768px) {
  .chargingStation-info {
    top: unset;
    bottom: 0;
    left: 0;
    padding: 20px;
    max-width: 100%;
    width: 100%;
  }
}

.chargingStation-head {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

@media (max-width: 768px) {
  .chargingStation-head {
    gap: 4px;
  }
}

.chargingStation-title {
  font-family: "Haval", "sans-serif" !important;
  font-weight: 400;
  font-size: 32px;
  line-height: 120%;
  text-transform: uppercase;
  color: #111111;
}

@media (max-width: 992px) {
  .chargingStation-title {
    font-size: 26px;
  }
}

@media (max-width: 768px) {
  .chargingStation-title {
    font-size: 20px;
  }
}

.chargingStation-description {
  font-family: 'PF DinDisplay Pro', sans-serif;
  font-weight: 600;
  font-size: 16px;
  line-height: 150%;
  color: #6B6B6B;
}

@media (max-width: 992px) {
  .chargingStation-description {
    font-size: 14px;
  }
}

.chargingStation-common {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

@media (max-width: 768px) {
  .chargingStation-common {
    gap: 12px;
  }
}

.chargingStation-address {
  color: #111111;
  font-family: "Haval", "sans-serif" !important;
  font-weight: 400;
  font-size: 20px;
  line-height: 120%;
  text-transform: uppercase;
}

@media (max-width: 992px) {
  .chargingStation-address {
    font-size: 18px;
  }
}

@media (max-width: 768px) {
  .chargingStation-address {
    font-size: 16px;
  }
}

.chargingStation-time {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

@media (max-width: 992px) {
  .chargingStation-time {
    gap: 14px;
  }
}

@media (max-width: 768px) {
  .chargingStation-time {
    gap: 10px;
  }
}

.chargingStation-time p {
  font-family: 'PF DinDisplay Pro', sans-serif;
  font-weight: 600;
  font-size: 16px;
  line-height: 150%;
  color: #6B6B6B;
}

@media (max-width: 992px) {
  .chargingStation-time p {
    font-size: 14px;
  }
}

.chargingStation-btns {
  display: flex;
  border: 1px solid #000000;
  width: fit-content;
  max-width: 100vw;
  overflow-x: auto;
  /* Скрыть полосу прокрутки */
  scrollbar-width: none;
  /* Firefox */
  -ms-overflow-style: none;
}

.chargingStation-btns::-webkit-scrollbar {
  display: none;
  /* Chrome, Safari */
}

.chargingStation-btns div {
  cursor: pointer;
  padding: 11.5px 0;
  background-color: #FFFFFF;
}

@media (max-width: 768px) {
  .chargingStation-btns div {
    padding: 6px 0;
  }
}

.chargingStation-btns div:first-child p {
  border-left: unset;
}

.chargingStation-btns div p {
  margin-bottom: 0;
  border-left: 1px solid #000000;
  padding: 0 24px;
  font-family: 'PF DinDisplay Pro', sans-serif;
  font-weight: 500;
  font-size: 18px;
  line-height: 140%;
  text-align: center;
  position: relative;
}

@media (max-width: 768px) {
  .chargingStation-btns div p {
    font-size: 14px;
    padding: 0 12px;
  }
}

.chargingStation-btns div.active {
  background-color: #00CABF;
}

.chargingStation-btns div.active + div p {
  border-left: unset;
}

.textDop {
  top: -71px !important;
}

@media (min-width: 576px) and (max-width: 991px) {
  .textDop {
    top: unset !important;
  }
}

@media (max-width: 575px) {
  .textDop {
    top: unset !important;
  }
}

@media (min-width: 576px) and (max-width: 991px) {
  .bckgPosBanner img {
    object-position: center 48% !important;
  }
}

@media (max-width: 575px) {
  .bckgPosBanner img {
    object-position: center 51% !important;
  }
}

@media (min-width: 576px) and (max-width: 991px) {
  .bckgPosBorder {
    object-position: center 85%;
  }
}

.nonStopTitleBlock {
  margin-bottom: 20px;
}

@media (min-width: 576px) and (max-width: 991px) {
  .nonStopTitleBlock {
    margin-bottom: 30px;
  }
}

@media (max-width: 575px) {
  .nonStopTitleBlock {
    margin-bottom: 20px;
  }
}

.nonStopTitleText {
  font-size: 40px;
  line-height: 120%;
  text-transform: uppercase;
  color: #000;
  font-family: "Haval", "sans-serif" !important;
  font-weight: 400;
}

@media (min-width: 576px) and (max-width: 991px) {
  .nonStopTitleText {
    font-size: 32px;
  }
}

@media (max-width: 575px) {
  .nonStopTitleText {
    font-size: 20px;
  }
}

.nonStopSlide {
  width: 395px;
}

@media (max-width: 1000px) {
  .nonStopSlide {
    width: 311px;
  }
}

@media (max-width: 1439px) {
  .nonStopBr {
    display: none;
  }
}

@media (max-width: 575px) {
  .nonStopBr {
    display: block;
  }
}

.controlSlide {
  width: 592px;
}

@media (max-width: 1439px) {
  .controlSlide {
    width: 470px;
  }
}

@media (max-width: 575px) {
  .controlSlide {
    width: 350px;
  }
}

.esGap {
  margin-top: 75px;
}

@media (max-width: 991px) {
  .esGap {
    margin-top: 50px;
  }
}

@media (max-width: 575px) {
  .esGap {
    margin-top: 30px;
  }
}

@media (max-width: 991px) {
  .protect1 {
    width: 100%;
  }
}

@media (max-width: 575px) {
  .protect1 {
    width: 100%;
  }
}

@media (max-width: 991px) {
  .protect2 {
    width: 50%;
  }
}

@media (max-width: 575px) {
  .protect2 {
    width: 50%;
  }
}

@media (max-width: 991px) {
  .protect3 {
    width: 50%;
  }
}

@media (max-width: 575px) {
  .protect3 {
    width: 50%;
  }
}

.protectionGap {
  row-gap: unset !important;
}

@media (min-width: 992px) and (max-width: 1400px) {
  .protectionGap {
    row-gap: 40px !important;
  }
}

@media (max-width: 575px) {
  .protectionGap {
    row-gap: 30px !important;
  }
}

.preOrder {
  width: 100%;
  background-color: #181b1d;
  display: flex;
  justify-content: space-between;
  gap: 67px;
}

@media (max-width: 1439px) {
  .preOrder {
    gap: 20px;
  }
}

@media (max-width: 991px) {
  .preOrder {
    flex-direction: column;
    gap: 60px;
  }
}

@media (max-width: 575px) {
  .preOrder {
    gap: 40px;
  }
}

.preOrderContainer {
  display: flex;
  justify-content: space-between;
  gap: 67px;
}

@media (max-width: 1439px) {
  .preOrderContainer {
    gap: 20px;
  }
}

@media (max-width: 991px) {
  .preOrderContainer {
    flex-direction: column;
    gap: 60px;
  }
}

@media (max-width: 575px) {
  .preOrderContainer {
    gap: 40px;
  }
}

.preOrderContent {
  display: flex;
  flex-direction: column;
  gap: 40px;
  padding: 80px 0;
}

@media (max-width: 991px) {
  .preOrderContent {
    flex-direction: column;
    padding-bottom: 0;
    padding-top: 60px;
    gap: 30px;
  }
}

@media (max-width: 575px) {
  .preOrderContent {
    padding-bottom: 0;
    padding-top: 60px;
    gap: 20px;
  }
}

.preOrderContentTitleBlock {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

@media (max-width: 575px) {
  .preOrderContentTitleBlock {
    gap: 6px;
  }
}

.preOrderContentSubTitle {
  font-family: 'PF DinDisplay Pro', sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 150%;
  text-transform: uppercase;
  color: #FFFFFF;
}

.preOrderContentTitle {
  font-family: "Haval", "sans-serif" !important;
  font-weight: 400;
  font-size: 40px;
  line-height: 120%;
  text-transform: uppercase;
  color: #FFFFFF;
}

@media (max-width: 991px) {
  .preOrderContentTitle {
    font-size: 32px;
  }
}

@media (max-width: 575px) {
  .preOrderContentTitle {
    font-size: 20px;
  }
}

.preOrderContentFormInner {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-bottom: 30px;
}

@media (max-width: 1439px) {
  .preOrderContentFormInner {
    gap: 14px;
    margin-bottom: 30px;
  }
}

@media (max-width: 991px) {
  .preOrderContentFormInner {
    justify-content: center;
    margin-bottom: 24px;
  }
}

@media (max-width: 575px) {
  .preOrderContentFormInner {
    gap: 20px;
    flex-direction: column;
    margin-bottom: 20px;
  }
}

.preOrderPhoneLabel {
  font-family: 'PF DinDisplay Pro', sans-serif;
  font-weight: 600;
  font-size: 16px;
  line-height: 150%;
  color: #FFFFFF;
}

@media (max-width: 575px) {
  .preOrderPhoneLabel {
    font-size: 14px;
  }
}

.preOrderPhoneInput {
  padding: 13px 16px;
  border: 1px solid #A4A4A4;
  background: #fff;
}

@media (max-width: 575px) {
  .preOrderPhoneInput {
    padding: 9px 16px;
  }
}

.preOrderNameLabel {
  font-family: 'PF DinDisplay Pro', sans-serif;
  font-weight: 600;
  font-size: 16px;
  line-height: 150%;
  color: #FFFFFF;
}

@media (max-width: 575px) {
  .preOrderNameLabel {
    font-size: 14px;
  }
}

.preOrderNameInput {
  padding: 13px 16px;
  border: 1px solid #A4A4A4;
  background: #fff;
}

@media (max-width: 575px) {
  .preOrderNameInput {
    padding: 9px 16px;
  }
}

.preOrderBtn {
  margin-bottom: 12px;
}

@media (max-width: 991px) {
  .preOrderBtn {
    margin-bottom: 16px;
  }
}

@media (max-width: 575px) {
  .preOrderBtn {
    margin-bottom: 14px;
  }
}

.preOrderCheck {
  width: 24px;
  height: 24px;
  background-color: transparent;
  border: 1px solid #949494;
}

.preOrderCheck:checked {
  background-color: #949494;
  border-color: #00C896;
}

.preOrderHrefText {
  color: #949494;
}

.preOrderHref {
  color: #949494;
}

.preOrderContentImgBlock {
  width: 50%;
}

@media (max-width: 991px) {
  .preOrderContentImgBlock {
    display: none;
  }
}

.preOrderContentImgBlockMobile {
  display: none;
}

@media (max-width: 991px) {
  .preOrderContentImgBlockMobile {
    display: block;
    width: 100%;
  }
}

.preOrderPhoneWrap {
  width: 50%;
}

@media (max-width: 575px) {
  .preOrderPhoneWrap {
    width: 100%;
  }
}

.preOrderNameWrap {
  width: 50%;
}

@media (max-width: 575px) {
  .preOrderNameWrap {
    width: 100%;
  }
}

.preOrderContentImg {
  width: 953px;
  height: 620px;
}

@media (max-width: 1600px) {
  .preOrderContentImg {
    object-position: -45px;
  }
}

@media (max-width: 1440px) {
  .preOrderContentImg {
    width: 753px;
  }
}

@media (max-width: 1300px) {
  .preOrderContentImg {
    width: 753px;
    object-position: -45px;
  }
}

.model-slider__content {
  display: flex;
  width: 100%;
  max-width: none;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
  margin: 0 auto;
  padding: 40px 0;
}

.model-slider__info {
  flex: 1 1 0;
  max-width: 400px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
}

.model-slider__title {
  font-size: 40px;
  font-weight: 400;
  margin-bottom: 12px;
  font-family: "Haval", "sans-serif" !important;
}

@media (max-width: 1000px) {
  .model-slider__title {
    display: none;
  }
}

@media (max-width: 576px) {
  .model-slider__title {
    font-size: 32px;
  }
}

.model-slider__price {
  font-size: 22px;
  font-weight: 400;
  margin-bottom: 24px;
}

@media (max-width: 1200px) {
  .model-slider__price {
    margin-bottom: 40px;
  }
}

@media (max-width: 1000px) {
  .model-slider__price {
    display: none;
  }
}

@media (max-width: 576px) {
  .model-slider__price {
    font-size: 16px;
  }
}

.model-slider__features {
  list-style: none;
  padding: 0;
}

.model-slider__features li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 20px;
  font-weight: 400;
  line-height: 140%;
  margin-bottom: 16px;
  padding-left: 0;
  list-style: none;
}

@media (max-width: 576px) {
  .model-slider__features li {
    font-size: 16px;
    margin-bottom: 12px;
  }
}

.model-slider__feature-icon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  display: inline-block;
}

.model-slider__actions {
  display: flex;
  flex-direction: column;
  gap: 8px;
  width: 100%;
}

.model-slider__btn {
  font-size: 1rem;
  padding: 12px 24px;
  border: none;
  cursor: pointer;
  border-radius: 0;
  font-family: inherit;
  font-weight: 600;
  transition: background 0.2s, color 0.2s;
}

.model-slider__btn--primary {
  background: #111;
  color: #fff;
}

.model-slider__btn--outline {
  background: #fff;
  color: #111;
  border: 2px solid #111;
}

.model-slider__visual {
  flex: 1 1 0;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  min-width: 0;
}

.model-slider__top-buttons {
  display: flex;
  gap: 12px;
  margin-bottom: 24px;
}

@media (max-width: 576px) {
  .model-slider__top-buttons {
    display: none;
  }
}

.model-slider__btn--small {
  font-size: 0.95rem;
  padding: 10px 18px;
  background: linear-gradient(270deg, #2E2E2E 8.41%, #555555 89.05%);
  color: #fff;
  border-bottom: 5px solid white;
  box-shadow: 0px 1px 4px 0px rgba(0, 0, 0, 0.2);
  font-family: "Haval", "sans-serif" !important;
}

.model-slider__img {
  max-width: 420px;
  width: 100%;
  height: auto;
  display: block;
}

.model-slider__title_m {
  font-size: 40px;
  font-weight: 400;
  margin-bottom: 12px;
  font-family: "Haval", "sans-serif" !important;
  display: none;
}

@media (max-width: 1000px) {
  .model-slider__title_m {
    display: block;
  }
}

@media (max-width: 576px) {
  .model-slider__title_m {
    font-size: 32px;
  }
}

.model-slider__price_m {
  font-size: 22px;
  font-weight: 400;
  margin-bottom: 24px;
  display: none;
}

@media (max-width: 1000px) {
  .model-slider__price_m {
    display: block;
  }
}

@media (max-width: 576px) {
  .model-slider__price_m {
    font-size: 16px;
  }
}

@media (max-width: 1000px) {
  .model-slider__content {
    flex-direction: column-reverse;
    align-items: center;
    gap: 24px;
  }
  .model-slider__info {
    max-width: 100%;
    align-items: center;
    text-align: center;
  }
  .model-slider__visual {
    align-items: flex-start;
  }
  .model-slider__top-buttons {
    justify-content: center;
  }
  .model-slider__price {
    margin-bottom: 55px;
  }
  .model-slider__features {
    margin: 0;
  }
}

@media (max-width: 999px) {
  .model-slider__slide {
    min-height: 0;
  }
  .model-slider__content {
    padding: 24px 0;
  }
  .model-slider__img {
    max-width: 320px;
  }
}

@media (max-width: 600px) {
  .model-slider__content {
    padding: 12px 0;
  }
  .model-slider__title {
    font-size: 1.3rem;
  }
  .model-slider__img {
    max-width: 100%;
  }
  .model-slider__actions {
    flex-direction: row;
    gap: 12px;
  }
}

@media (min-width: 1000px) {
  .model-slider__img {
    max-width: 858px;
  }
}

@media (min-width: 576px) and (max-width: 999px) {
  .model-slider__img {
    max-width: 540px;
  }
}

@media (max-width: 575px) {
  .model-slider__img {
    max-width: 300px;
  }
}

@media (max-width: 1199px) and (min-width: 1000px) {
  .model-slider__features--desktop,
.model-slider__visual--desktop,
.model-slider__img:not(.model-slider__img--tablet) {
    display: none !important;
  }
  .model-slider__features--tablet,
.model-slider__img--tablet {
    display: block !important;
  }
  .model-slider__content {
    flex-direction: row;
    align-items: flex-start;
  }
  .model-slider__info {
    width: 35%;
    max-width: 35%;
    align-items: flex-start;
    text-align: left;
  }
  .model-slider__visual {
    width: 65%;
    max-width: 65%;
    align-items: flex-start;
    text-align: left;
  }
  .model-slider__img--tablet {
    width: 100%;
    max-width: 100%;
    margin: 32px 0 0 0;
    display: block;
    padding-bottom: 5px;
  }
  .model-slider__btn--small {
    white-space: nowrap;
    min-width: 220px;
  }
}

@media (min-width: 1200px), (max-width: 999px) {
  .model-slider__features--tablet,
.model-slider__img--tablet {
    display: none !important;
    padding-bottom: 5px;
  }
  .model-slider__features--desktop,
.model-slider__visual--desktop,
.model-slider__img:not(.model-slider__img--tablet) {
    display: block !important;
  }
}

/* Новый брейкпоинт и порядок блоков для мобилки */
@media (max-width: 767px) {
  .model-slider__info {
    order: 1;
    width: 100%;
    align-items: flex-start;
    text-align: left;
  }
  .model-slider__top-buttons {
    order: 2;
    width: 100%;
    justify-content: flex-start;
    margin-bottom: 16px;
    display: none;
  }
  .model-slider__visual {
    order: 3;
    width: 100%;
    align-items: flex-start;
  }
  .model-slider__features--tablet {
    order: 4;
    width: 100%;
    margin-bottom: 16px;
  }
  .model-slider__actions {
    order: 5;
    width: 100%;
    margin-top: 10px;
  }
}

.modelMainBlockInfo {
  position: absolute;
  bottom: 0;
  right: 0;
  text-transform: uppercase;
  color: white;
  padding: 0 50px 10px 0;
  display: flex;
  flex-direction: column;
  gap: 2px;
  user-select: none;
  opacity: 80%;
}

@media (max-width: 992px) {
  .modelMainBlockInfo {
    padding: 0 0 3px 0;
    gap: 1px;
    align-content: center;
    flex-wrap: wrap;
    width: 100%;
    right: unset;
  }
}

@media (max-width: 575.96px) {
  .modelMainBlockInfo {
    padding: 0 8px 40px 8px;
  }
}

.modelMainBlockInfoLong {
  position: absolute;
  bottom: 0;
  right: 0;
  left: 0;
  text-transform: uppercase;
  color: white;
  padding-bottom: 10px;
  display: flex;
  flex-direction: column;
  gap: 2px;
  user-select: none;
  opacity: 80%;
}

@media (max-width: 992px) {
  .modelMainBlockInfoLong {
    padding: 0 8px 5px 8px;
    gap: 1px;
    align-content: center;
    flex-wrap: wrap;
    right: unset;
  }
}

.modelMainBlockInfoLong1 {
  width: 56%;
  left: auto;
}

@media (max-width: 992px) {
  .modelMainBlockInfoLong1 {
    width: 100%;
  }
}

.modelMainBlockInfoText1 {
  font-family: "Haval", "sans-serif" !important;
  font-weight: 400;
  font-size: 12px;
  line-height: 16px;
}

.modelMainBlockInfoText1Long {
  font-family: "Haval", "sans-serif" !important;
  font-weight: 400;
  font-size: 8px;
  line-height: 9px;
}

@media (max-width: 992px) {
  .modelMainBlockInfoText1Long {
    font-size: 7px;
    line-height: 7px;
  }
}

@media (max-width: 575.96px) {
  .modelMainBlockInfoText1Long {
    font-size: 5px;
    line-height: 10px;
  }
}

@media (max-width: 992px) {
  .modelMainBlockInfoText1 {
    font-size: 7px;
    line-height: 12px;
  }
}

@media (max-width: 575.96px) {
  .modelMainBlockInfoText1 {
    font-size: 6px;
    line-height: 10px;
  }
}

.modelMainBlockInfoText2 {
  font-family: "Haval", "sans-serif" !important;
  font-weight: 400;
  font-size: 15px;
  line-height: 20px;
}

.modelMainBlockInfoText2Long {
  font-family: "Haval", "sans-serif" !important;
  font-weight: 400;
  font-size: 10px;
  line-height: 20px;
}

@media (max-width: 992px) {
  .modelMainBlockInfoText2Long {
    font-size: 8px;
    line-height: 20px;
  }
}

@media (max-width: 575.96px) {
  .modelMainBlockInfoText2Long {
    font-size: 7px;
    line-height: 20px;
  }
}

@media (max-width: 992px) {
  .modelMainBlockInfoText2 {
    font-size: 10px;
    line-height: 14px;
  }
}

@media (max-width: 575.96px) {
  .modelMainBlockInfoText2 {
    font-size: 8px;
    line-height: 12px;
  }
}

.lizing {
  color: white;
  position: relative;
  height: 100%;
}

.lizing-wrapper {
  height: 895px;
  background-image: url("/media/lizing/bg.webp");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  padding: 70px 0 30px;
}

@media (max-width: 1200px) {
  .lizing-wrapper {
    height: 937px;
  }
}

@media (max-width: 992px) {
  .lizing-wrapper {
    height: 980px;
  }
}

@media (max-width: 770px) {
  .lizing-wrapper {
    background-image: url("/media/lizing/bg-sm.webp");
    height: 1298px;
  }
}

@media (max-width: 430px) {
  .lizing-wrapper {
    padding: 50px 0 30px;
  }
}

.lizing-wrapper .container {
  height: 100%;
}

.lizing-header {
  font-size: 32px;
  color: white;
  font-weight: 400;
  margin-bottom: 30px;
}

@media (max-width: 770px) {
  .lizing-header {
    font-size: 26px;
  }
}

@media (max-width: 430px) {
  .lizing-header {
    font-size: 20px;
    margin-bottom: 24px;
  }
}

.lizing-special-price {
  padding: 28px 55px;
  border: 1px solid white;
  text-align: center;
  border-radius: 10px;
  backdrop-filter: blur(5px);
  width: fit-content;
  font-weight: 400;
  font-size: 26px;
  margin-bottom: 40px;
}

@media (max-width: 770px) {
  .lizing-special-price {
    font-size: 22px;
    padding: 25px;
  }
}

@media (max-width: 430px) {
  .lizing-special-price {
    font-size: 18px;
    padding: 19px 16px;
  }
}

.lizing-gift {
  padding: 16px;
  background-color: #181B1D;
  font-weight: 400;
  width: fit-content;
  border-radius: 10px;
  max-width: 455px;
}

@media (max-width: 430px) {
  .lizing-gift {
    padding: 12px;
    font-size: 14px;
  }
}

.lizing-gift-title {
  font-size: 22px;
  margin-bottom: 16px;
}

@media (max-width: 430px) {
  .lizing-gift-title {
    margin-bottom: 12px;
    font-size: 18px;
  }
}

.lizing-gift-list {
  gap: 12px;
  padding: 0;
  list-style: none;
  margin-bottom: 0;
}

@media (max-width: 430px) {
  .lizing-gift-list {
    gap: 6px;
  }
}

.lizing-gift-list-item {
  gap: 12px;
}

@media (max-width: 430px) {
  .lizing-gift-list-item {
    gap: 8px;
  }
}

.lizing-policy a {
  color: inherit;
}

.lizing-form {
  position: absolute;
  bottom: 0;
  right: 0;
  background: #00CABF;
  border-radius: 10px;
  padding: 20px;
  width: fit-content;
}

@media (max-width: 770px) {
  .lizing-form {
    width: 100%;
  }
}

.lizing-form-header {
  color: white;
  text-align: right;
  margin-bottom: 24px;
  font-size: 26px;
}

@media (max-width: 430px) {
  .lizing-form-header {
    font-size: 20px;
  }
}

.lizing-form-controls {
  gap: 16px;
}

@media (max-width: 770px) {
  .lizing-form-controls {
    flex-direction: column;
    gap: 10px;
  }
}

@media (max-width: 430px) {
  .lizing-form-controls {
    font-size: 20px;
  }
}

.lizing-form-controls input {
  flex-grow: 3;
  padding: 12px 16px;
}

@media (max-width: 770px) {
  .lizing-form-controls input {
    flex-grow: 0;
  }
}

@media (max-width: 430px) {
  .lizing-form-controls input {
    padding: 8px 16px;
  }
}

.lizing-form-controls button {
  flex-grow: 1;
}

@media (max-width: 770px) {
  .lizing-form-controls button {
    flex-grow: 0;
  }
}

.selectWrapper {
  position: relative;
}

.selectWrapper:after {
  content: url(/assets/img/select/chevron-down.svg);
  width: 24px;
  height: 24px;
  top: 13px;
  right: 13px;
  position: absolute;
  z-index: -1;
}

.main_sliderWrapper .main_slider-arrow {
  appearance: none;
  position: absolute;
  top: 50%;
  z-index: 4;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: rgba(24, 27, 29, 0.42);
  cursor: pointer;
  transform: translateY(-50%);
  transition: opacity .2s ease, background-color .2s ease;
}

.main_sliderWrapper .main_slider-arrow:hover {
  background: rgba(24, 27, 29, 0.68);
}

.main_sliderWrapper .main_slider-arrow.swiper-button-disabled {
  opacity: .35;
  cursor: default;
  pointer-events: none;
}

.main_sliderWrapper .main_slider-arrow img {
  display: block;
  width: 40px;
  height: 40px;
}

.main_sliderWrapper .main_slider-arrow--prev {
  left: clamp(16px, 3vw, 56px);
}

.main_sliderWrapper .main_slider-arrow--next {
  right: clamp(16px, 3vw, 56px);
}

.main_sliderWrapper .main_slider-pagination {
  position: absolute;
  left: 50%;
  bottom: 32px;
  z-index: 4;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: auto;
  transform: translateX(-50%);
}

.main_sliderWrapper .main_slider-pagination .swiper-pagination-bullet {
  width: 52px;
  height: 4px;
  margin: 0 !important;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.46);
  opacity: 1;
  transition: background-color .2s ease, width .2s ease;
}

.main_sliderWrapper .main_slider-pagination .swiper-pagination-bullet-active {
  background: #00CABF;
}

.main_slider .swiper-slide {
  min-height: calc(100vh - 84px);
  background: #181B1D;
}

.main_slider .swiper-slide:after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(90deg, rgba(24, 27, 29, 0.78) 0%, rgba(24, 27, 29, 0.28) 48%, rgba(24, 27, 29, 0.08) 100%);
}

.main_slider .swiper-slide picture {
  display: block;
  width: 100%;
  height: 100%;
}

.main_slider .swiper-slide .photo {
  display: block;
  width: 100%;
  height: calc(100vh - 84px);
  min-height: 560px;
  max-height: 760px;
  object-fit: cover;
}

.main_slider .swiper-slide.main_slider-model-slide {
  background: radial-gradient(circle at 72% 52%, rgba(0, 202, 191, 0.18), rgba(24, 27, 29, 0) 34%), #181B1D;
}

.main_slider .swiper-slide.main_slider-model-slide:after {
  background: linear-gradient(90deg, rgba(24, 27, 29, 0.9) 0%, rgba(24, 27, 29, 0.58) 42%, rgba(24, 27, 29, 0.12) 100%);
}

.main_slider .swiper-slide.main_slider-model-slide .photo {
  box-sizing: border-box;
  object-fit: contain;
  object-position: 74% center;
  padding: 100px 7vw 70px 38vw;
}

.main_slider .swiper-slide .block.main_slider-content {
  z-index: 2;
}

.main_slider .swiper-slide .block .main_slider-caption {
  row-gap: 28px;
  max-width: 640px;
  color: #fff;
}

.main_slider .swiper-slide .block .main_slider-title {
  font-family: "Haval", "PF DinDisplay Pro", sans-serif !important;
  font-size: clamp(44px, 4.7vw, 82px);
  font-weight: 400;
  line-height: 108%;
  color: #fff;
  text-transform: uppercase;
}

.main_slider .swiper-slide .block .main_slider-subtitle {
  color: #fff;
  font-size: clamp(28px, 2.8vw, 48px);
  font-weight: 700;
  line-height: 115%;
  text-transform: uppercase;
}

.main_slider .swiper-slide .block .main_slider-price {
  color: #fff;
  font-size: clamp(22px, 2vw, 34px);
  font-weight: 500;
  line-height: 120%;
}

.main_slider .swiper-slide .block .main_slider-actions {
  gap: 16px;
}

.main_slider .swiper-slide .block .main_slider-action {
  align-self: flex-start;
  min-width: 270px;
}

.main_slider .swiper-slide .block .main_slider-action--white {
  color: #181B1D !important;
  background-color: #fff !important;
  border-color: #fff !important;
}

.main_slider .swiper-slide .block .main_slider-action--white:hover {
  color: #181B1D !important;
  background-color: #fff !important;
  border-color: #fff !important;
}

@media (min-width: 576px) and (max-width: 991.96px) {
  .main_slider .swiper-slide .photo {
    height: 800px;
    min-height: 800px;
  }
  .main_slider .swiper-slide.main_slider-model-slide .photo {
    padding: 170px 7vw 80px 30vw;
  }
  .main_slider .swiper-slide .block {
    padding-top: 70px;
  }
  .main_slider .swiper-slide .block .main_slider-caption {
    row-gap: 22px;
    max-width: 520px;
  }
  .main_slider .swiper-slide .block .main_slider-title {
    font-size: 48px;
  }
  .main_slider .swiper-slide .block .main_slider-subtitle {
    font-size: 34px;
  }
  .main_slider .swiper-slide .block .main_slider-price {
    font-size: 28px;
  }
  .main_sliderWrapper .main_slider-arrow {
    width: 44px;
    height: 44px;
  }
  .main_sliderWrapper .main_slider-arrow img {
    width: 38px;
    height: 38px;
  }
}

@media (max-width: 575.96px) {
  .main_sliderWrapper .main_slider-arrow {
    width: 38px;
    height: 38px;
  }
  .main_sliderWrapper .main_slider-arrow img {
    width: 34px;
    height: 34px;
  }
  .main_sliderWrapper .main_slider-pagination {
    bottom: 18px;
    gap: 8px;
  }
  .main_sliderWrapper .main_slider-pagination .swiper-pagination-bullet {
    width: 34px;
    height: 3px;
  }
  .main_slider .swiper-slide .photo {
    height: 560px;
    min-height: 560px;
  }
  .main_slider .swiper-slide.main_slider-model-slide .photo {
    object-position: center bottom;
    padding: 245px 20px 28px;
  }
  .main_slider .swiper-slide .block {
    padding: 50px 20px 0;
  }
  .main_slider .swiper-slide .block .main_slider-caption {
    row-gap: 18px;
    max-width: 310px;
  }
  .main_slider .swiper-slide .block .main_slider-title {
    font-size: 34px;
    line-height: 112%;
  }
  .main_slider .swiper-slide .block .main_slider-subtitle {
    font-size: 26px;
    line-height: 120%;
  }
  .main_slider .swiper-slide .block .main_slider-price {
    font-size: 22px;
  }
  .main_slider .swiper-slide .block .main_slider-actions {
    width: 100%;
    max-width: 260px;
  }
  .main_slider .swiper-slide .block .main_slider-action {
    min-width: 0;
    width: 100%;
    max-width: 260px;
  }
}

.Models {
  padding: 72px 0 84px;
  background: #fff;
  color: #181B1D;
}

.Models-title {
  margin: 0 0 44px;
  color: #181B1D;
  font-family: "Haval", "PF DinDisplay Pro", sans-serif !important;
  font-size: 40px;
  font-weight: 400;
  line-height: 110%;
  text-align: center;
  text-transform: uppercase;
}

.Models-tabs {
  display: flex;
  width: 100%;
  overflow-x: auto;
  border-bottom: 1px solid #181B1D;
  scrollbar-width: thin;
  scrollbar-color: #00CABF transparent;
}

.Models-tab {
  position: relative;
  flex: 1 0 auto;
  min-width: 168px;
  padding: 0 20px 15px;
  border: 0;
  background: transparent;
  color: #181B1D;
  font-size: 20px;
  font-weight: 400;
  line-height: 120%;
  text-align: center;
  white-space: nowrap;
  cursor: pointer;
  transition: color .2s ease;
}

.Models-tab:after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 2px;
  background: transparent;
  transition: background-color .2s ease;
}

.Models-tab.is-active {
  color: #00CABF;
}

.Models-tab.is-active:after {
  background: #00CABF;
}

.Models-slider, .Models-panels {
  position: relative;
}

.Models-panel {
  display: none;
  grid-template-columns: minmax(0, 1.52fr) minmax(320px, 0.95fr);
  gap: 32px;
  align-items: stretch;
  padding-top: 46px;
}

.Models-panel.is-active {
  display: grid;
}

.Models-image {
  min-height: 500px;
  background: linear-gradient(135deg, #eff3f4, #d8e2e4);
  overflow: hidden;
}

.Models-image img {
  box-sizing: border-box;
  display: block;
  width: 100%;
  height: 100%;
  padding: 42px;
  object-fit: contain;
}

.Models-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  min-width: 0;
}

.Models-name {
  margin: 0 0 12px;
  color: #181B1D;
  font-family: "Haval", "PF DinDisplay Pro", sans-serif !important;
  font-size: 34px;
  font-weight: 400;
  line-height: 110%;
  text-transform: uppercase;
}

.Models-price {
  margin: 0 0 12px;
  color: #181B1D;
  font-size: 28px;
  line-height: 120%;
}

.Models-benefits {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 0 0 28px;
  padding: 0;
  list-style: none;
}

.Models-benefits li {
  position: relative;
  padding-left: 31px;
  color: #181B1D;
  font-size: 22px;
  line-height: 120%;
}

.Models-benefits li:before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: #00CABF;
  font-size: 24px;
  line-height: 1;
}

.Models-specs {
  display: grid;
  grid-template-columns: repeat(3, minmax(82px, 1fr));
  gap: 20px 24px;
  width: 100%;
  margin: 0 0 28px;
}

.Models-spec {
  text-align: center;
}

.Models-spec dt {
  color: #00CABF;
  font-size: 25px;
  font-weight: 600;
  line-height: 110%;
}

.Models-spec dd {
  margin: 6px 0 0;
  color: #181B1D;
  font-size: 13px;
  line-height: 120%;
}

.Models-colors {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 32px;
}

.Models-colorSwatch {
  display: block;
  width: 68px;
  height: 40px;
  border: 1px solid transparent;
}

.Models-colorSwatch.is-active {
  border-color: #00CABF;
  box-shadow: inset 0 0 0 1px #fff;
}

.Models-actions {
  display: flex;
  flex-direction: column;
  gap: 14px;
  width: 100%;
  max-width: 360px;
}

.Models-actions .btn {
  width: 100%;
  min-height: 54px;
}

.Models-arrow {
  position: absolute;
  top: 50%;
  z-index: 2;
  width: 42px;
  height: 42px;
  padding: 0;
  border: 0;
  background: rgba(24, 27, 29, 0.35);
  color: #fff;
  font-size: 28px;
  line-height: 42px;
  cursor: pointer;
  transform: translateY(-50%);
  transition: background-color .2s ease;
}

.Models-arrow:hover {
  background: #00CABF;
}

.Models-arrow--prev {
  left: -58px;
}

.Models-arrow--next {
  right: -58px;
}

@media (max-width: 1199px) {
  .Models-arrow--prev {
    left: 10px;
  }
  .Models-arrow--next {
    right: 10px;
  }
}

@media (max-width: 991px) {
  .Models {
    padding: 54px 0 64px;
  }
  .Models-title {
    margin-bottom: 32px;
    font-size: 34px;
  }
  .Models-panel {
    grid-template-columns: 1fr;
    gap: 28px;
    padding-top: 32px;
  }
  .Models-image {
    min-height: auto;
    aspect-ratio: 16 / 10;
  }
  .Models-content {
    max-width: 620px;
  }
  .Models-arrow {
    display: none;
  }
}

@media (max-width: 575px) {
  .Models {
    padding: 42px 0 52px;
  }
  .Models-title {
    font-size: 28px;
    text-align: left;
  }
  .Models-tab {
    min-width: 140px;
    padding: 0 14px 12px;
    font-size: 17px;
  }
  .Models-name {
    font-size: 28px;
  }
  .Models-price {
    font-size: 24px;
  }
  .Models-benefits li {
    font-size: 18px;
  }
  .Models-specs {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .Models-actions {
    max-width: none;
  }
}
