:root {
  --bg: #071113;
  --bg-2: #0b181b;
  --text: #ffffff;
  --muted: rgba(255, 255, 255, 0.72);
  --line: rgba(255, 255, 255, 0.45);
  --accent: #00647b;
  --accent-dark: #044654;
  --black: #111111;
  --white: #ffffff;
  --container: 1374px;
  --transition: 0.25s ease;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0 auto;
  max-width: 1920px;
  min-width: 320px;
  overflow-x: hidden;
  color: var(--text);
  background: var(--bg);
  font-family: "Grandis", Arial, sans-serif;
  font-weight: 400;
}

img,
svg,
video {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
}

button,
input,
select,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

.container {
  width: min(100% - 30px, var(--container));
  margin-inline: auto;
}

.hidden-trap,
.popup-template {
  display: none;
}

.anim {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 0.55s ease,
    transform 0.55s ease;
}

.anim.animated,
.render-all .anim {
  opacity: 1;
  transform: none;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 28px;
  border: 1px solid transparent;
  border-radius: 0;
  text-decoration: none;
  text-transform: uppercase;
  text-align: center;
  font-size: 14px;
  line-height: 1.2;
  font-weight: 500;
  letter-spacing: 0;
  transition:
    color var(--transition),
    background-color var(--transition),
    border-color var(--transition);
}

.btn_outline {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.9);
  background: transparent;
}

.btn_outline:hover {
  color: var(--black);
  background: var(--white);
  border-color: var(--white);
}

.btn_white {
  color: var(--black);
  border-color: var(--white);
  background: var(--white);
}

.btn_teal {
  background-color: #00657b;
  margin: 0;
}

.btn_white:hover {
  color: var(--white);
  border-color: var(--black);
  background: var(--black);
}

.btn_accent {
  color: var(--white);
  border-color: var(--accent);
  background: var(--accent);
}

.btn_accent:hover {
  background: var(--accent-dark);
  border-color: var(--accent-dark);
}

.btn_black {
  color: var(--white);
  border-color: #222;
  background: #222;
}

.btn_black:hover {
  color: #222;
  background: var(--white);
}

.mobile-phone {
  display: none;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 30;
  height: 96px;
  background: var(--bg);
}

.site-header__container {
  height: 100%;
  display: grid;
  grid-template-columns: 375px minmax(220px, 1fr) auto 205px;
  align-items: center;
  gap: 40px;
}

.site-brand__desktop {
  width: 375px;
  height: 40px;
  display: flex;
  align-items: center;
  gap: 42px;
}

.site-brand__desktop-jaecoo {
  width: 211px;
  height: 24px;
  flex: 0 0 auto;
}

.site-brand__desktop-jaecoo img {
  width: 100%;
  height: 100%;
}

.site-brand__desktop-tts {
  position: relative;
  width: 90px;
  height: 40px;
  flex: 0 0 auto;
  overflow: hidden;
}

.site-brand__desktop-tts img {
  position: absolute;
  top: 0;
  left: -252.654px;
  width: 343px;
  height: 40px;
  max-width: none;
}

.site-brand {
  margin-left: 4px;
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}

.site-brand__mobile {
  display: none;
}

.site-header__address {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  min-width: 0;
  color: var(--text);
  font-size: 16px;
  line-height: 1.25;
}

.site-header__address span {
  flex: 0 0 auto;
}

.site-header__address strong {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-weight: 400;
}

.site-header__phone {
  white-space: nowrap;
  font-size: 16px;
  font-weight: 700;
  text-decoration: none;
}

.site-header .btn {
  width: 205px;
  min-height: 50px;
  padding: 0 18px;
  font-size: 13px;
  justify-self: end;
}

.hero {
  position: relative;
  margin-top: 96px;
  height: 870px;
  overflow: hidden;
  background: #242b2d;
}

.hero picture {
  display: block;
  height: 100%;
  overflow: hidden;
}

.hero picture img {
  position: relative;
  left: 50%;
  width: 1920px;
  max-width: none;
  height: 870px;
  object-fit: cover;
  object-position: center top;
  transform: translateX(-50%);
}

.hero__content {
  position: absolute;
  inset: 36px 0 auto;
  text-align: center;
}

.hero__content-inner {
  position: relative;
  padding: 24px 60px;
}

.hero__content-inner::before {
  content: "";
  display: block;
  position: absolute;
  inset: 0;
  z-index: 0;
  background: linear-gradient(90deg,
    rgba(0, 0, 0, 0) 0%,
    rgba(0, 0, 0, 0.4) 30%,
    rgba(0, 0, 0, 0.4) 79.55%,
    rgba(0, 0, 0, 0) 100%);
}

.hero__title-date {
  font-size: 32px;
  font-weight: 300;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 10px;
}

.hero__title-date::before {
  content: "";
  display: inline-block;
  width: 45px;
  height: 45px;
  background-image: url("../img/icon-date.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.hero h1 {
  max-width: 1500px;
  margin: 0 auto 0px;
  font-size: 47px;
  line-height: 1.08;
  font-weight: 300;
  position: relative;
}

.hero h1:last-of-type {
  margin-bottom: 28px;
}

.hero h1 strong {
  font-weight: 700;
}

.hero__offers {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin: 0 auto 28px;
  padding: 0;
  list-style: none;
  position: relative;
}

.hero-offer {
  display: flex;
  align-items: stretch;
}

.hero-offer__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  padding: 13px;
  background: var(--accent);
}

.hero-offer__icon img {
  display: block;
  width: 32px;
  height: 32px;
}

.hero-offer__text {
  display: flex;
  align-items: center;
  width: 240px;
  padding: 6px 14px;
  background: var(--white);
  color: var(--black);
  font-size: 18px;
  line-height: 1.15;
  font-weight: 500;
  text-align: left;
}

.hero-offer__text b {
  font-weight: 700;
  color: var(--accent);
}

.hero .btn {
  width: 269px;
  min-height: 54px;
  position: relative;
  margin-top: -27px;
  z-index: 1;
}

.hero__timer {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
}

.hero__timer-inner {
  display: flex;
  align-items: center;
  padding: 20px 0;
}

.hero__timer-label {
  font-size: 32px;
  font-weight: 400;
  color: #fff;
}

.hero__timer .btn {
  flex: 0 0 auto;
  white-space: nowrap;
  margin-top: 0;
}

.brand-runline {
  height: 73px;
  overflow: hidden;
  background: var(--white);
}

.brand-runline__track {
  width: max-content;
  height: 100%;
  display: flex;
  align-items: center;
  gap: 112px;
  animation: runline 38s linear infinite;
}

.brand-runline__track img {
  width: 203px;
  height: 32px;
  object-fit: contain;
  filter: brightness(0);
}

.brand-runline__item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 18px;
  font-weight: 500;
  color: #333;
  white-space: nowrap;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  font-size: 20px;
  font-weight: 500;
}

.brand-runline__item::before {
  content: "";
  display: inline-block;
  width: 24px;
  height: 24px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  flex-shrink: 0;
}

.brand-runline__item--price::before {
  background-image: url("../img/icon-price.svg");
  width: 40px;
  height: 40px;
}

.brand-runline__item--gift::before {
  background-image: url("../img/icon-gift.svg");
  width: 40px;
  height: 40px;
}

.brand-runline__item--sale::before {
  background-image: url("../img/icon-sale.svg");
  width: 40px;
  height: 40px;
}

.brand-runline__item:not(:last-child)::after {
  content: "";
  margin-left: 50px;
  margin-right: 50px;
  color: #00657b;
  font-size: 20px;
}

.brand-runline__track {
  gap: 0;
}

@keyframes runline {
  from {
    transform: translateX(-50%);
  }

  to {
    transform: translateX(0);
  }
}

.models-section {
  padding: 89px 0 0;
}

.models-section > .container {
  width: min(100% - 60px, 1270px);
}

.model-card {
  margin-top: 112px;
}

.model-card:first-child {
  margin-top: 0;
}

.model-card__top {
  display: grid;
  grid-template-columns: minmax(0, 625px) minmax(360px, 625px);
  gap: 20px;
  align-items: end;
}

.model-card__media h2,
.section-title {
  margin: 0;
  color: var(--text);
  font-size: 52px;
  line-height: 1.12;
  font-weight: 700;
  text-transform: uppercase;
}

.model-card__media p {
  margin: 13px 0 36px;
  color: var(--muted);
  font-size: 22px;
  line-height: 1.35;
}

.model-card__image {
  position: relative;
  height: 343px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

.model-card__image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.model-colors {
  min-height: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: -4px;
  color: rgba(255, 255, 255, 0.66);
  font-size: 14px;
}

.model-color {
  position: relative;
  width: 22px;
  height: 22px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: var(--dot);
}

.model-color::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 11px;
  height: 7px;
  border-left: 2px solid var(--white);
  border-bottom: 2px solid var(--white);
  opacity: 0;
  transform: translate(-50%, -60%) rotate(-45deg);
}

.model-color.is-active::before,
.model-color:hover::before {
  opacity: 1;
}

.model-card__badge {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
  margin-bottom: 20px;
}

.model-card__badge-icon {
  display: inline-block;
  width: 54px;
  height: 54px;
  background: #fff url("../img/icon-profit.svg") no-repeat center center;
  background-size: 54px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.model-card__badge-text {
  background: #fff;
  /* border-radius: 40px; */
  padding: 13px 14px 13px 16px;
  font-size: 20px;
  font-weight: 500;
  color: #111;
  letter-spacing: 0.5px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  line-height: 1.4;
  text-transform: uppercase;
}

.model-benefits {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 240px));
  gap: 20px;
  margin-bottom: 55px;
}

.model-benefit {
  display: grid;
  grid-template-columns: 66px 1fr;
  gap: 8px;
  align-items: center;
  min-height: 73px;
  color: var(--white);
  text-decoration: none;
}

.model-benefit img {
  width: 73px;
  height: 73px;
}

.model-benefit strong {
  display: block;
  margin-bottom: 5px;
  font-size: 28px;
  line-height: 1;
  font-weight: 700;
  text-wrap: nowrap;
}

.model-benefit span {
  font-size: 22px;
  line-height: 1.1;
}

.model-card__actions {
  display: grid;
  gap: 22px;
}

.model-card__actions .btn {
  width: 100%;
}

.model-gallery {
  position: relative;
  margin-top: 39px;
}

.model-gallery__slider {
  overflow: hidden;
}

.model-gallery__track {
  align-items: center;
}

.model-gallery__thumb {
  display: block;
  height: 201px;
  overflow: hidden;
}

.model-gallery__thumb picture {
  display: block;
  width: 100%;
  height: 100%;
}

.model-gallery__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition);
}

.model-gallery__thumb:hover img {
  transform: scale(1.04);
}

.model-gallery__nav {
  position: absolute;
  top: 50%;
  width: 32px;
  height: 32px;
  border: 0;
  background: transparent;
  transform: translateY(-50%);
  z-index: 2;
}

.model-gallery__nav::before {
  content: "";
  position: absolute;
  inset: 7px 10px;
  border-top: 1px solid rgba(255, 255, 255, 0.75);
  border-right: 1px solid rgba(255, 255, 255, 0.75);
}

.model-gallery__nav.swiper-button-disabled,
.model-gallery__nav.swiper-button-lock {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  cursor: default;
}

.model-gallery__nav--prev {
  left: -32px;
}

.model-gallery__nav--prev::before {
  transform: rotate(-135deg);
}

.model-gallery__nav--next {
  right: -32px;
}

.model-gallery__nav--next::before {
  transform: rotate(45deg);
}

.fancybox-show-thumbs .fancybox-inner {
  right: 0;
  bottom: 100px;
}

.fancybox-thumbs.fancybox-thumbs-x {
  top: auto;
  left: 0;
  right: 0;
  bottom: 0;
  width: auto;
  height: 100px;
  padding: 10px 72px;
  background: rgba(8, 19, 20, 0.94);
}

.fancybox-thumbs-x .fancybox-thumbs__list {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100% !important;
  height: 100%;
  overflow-x: auto;
  overflow-y: hidden;
}

.fancybox-thumbs-x .fancybox-thumbs__list a {
  float: none;
  width: 100px;
  height: 62px;
  max-width: none;
  max-height: none;
  margin: 0;
  flex: 0 0 100px;
  background-color: rgba(255, 255, 255, 0.08);
}

.fancybox-thumbs__list a::before {
  border: 3px solid var(--accent);
}

.complects {
  padding: 140px 0 0;
}

.section-title {
  padding-bottom: 28px;
  margin-bottom: 18px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.32);
  font-weight: 400;
  text-transform: none;
}

.complect-tabs {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin-bottom: 36px;
}

.complect-tab {
  min-height: 58px;
  border: 1px solid rgba(255, 255, 255, 0.42);
  color: var(--white);
  background: transparent;
  font-size: 20px;
  line-height: 1.2;
  transition:
    background-color var(--transition),
    border-color var(--transition);
}

.complect-tab:hover {
  border-color: var(--accent);
  background: #6b6c6c;
}

.complect-tab.is-active {
  background: var(--accent);
  border-color: var(--accent);
}

.complect-panel {
  display: none;
}

.complect-panel.is-active {
  display: block;
}

.complect-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.complect-card {
  min-width: 0;
}

.complect-card__body {
  min-height: 328px;
  padding: 24px 24px 20px;
  border: 1px solid rgba(255, 255, 255, 0.38);
  text-align: center;
}

.complect-card h3 {
  margin: 0 0 14px;
  min-height: 52px;
  font-size: 32px;
  line-height: 1.12;
  font-weight: 400;
  text-align: center;
  text-transform: uppercase;
}

.complect-card img {
  display: block;
  width: auto;
  height: auto;
  margin: 0 auto 18px;
  max-width: 100%;
  object-fit: contain;
}

.complect-card ul {
  display: grid;
  gap: 16px;
  width: fit-content;
  margin: 0 auto;
  padding: 0;
  list-style: none;
  text-align: left;
  font-size: 16px;
  line-height: 1.25;
}

.complect-card li::before {
  content: "";
  display: inline-block;
  width: 8px;
  height: 8px;
  margin-right: 5px;
  border-radius: 50%;
  background: var(--white);
  vertical-align: 1px;
}

.complect-card__actions {
  display: grid;
  gap: 10px;
  margin-top: 14px;
}

.complect-card__actions .btn {
  width: 100%;
}

.tradein,
.credit {
  padding-top: 140px;
}

.tradein__content,
.credit__content {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 404px;
  gap: 36px;
  align-items: start;
}

.tradein__gallery {
  min-height: 391px;
  display: grid;
  grid-template-columns: 198px minmax(240px, 416px) 197px;
  gap: 14px;
  align-items: end;
  position: relative;
}

.tradein__logo {
  position: absolute;
  left: 28px;
  top: 98px;
  width: 150px;
  filter: brightness(0) invert(1);
}

.tradein__image {
  width: 100%;
  object-fit: cover;
}

.tradein__image--small {
  height: 198px;
}

.tradein__image--main {
  height: 381px;
}

.tradein__image--side {
  height: 391px;
}

.tradein-form,
.credit-form {
  width: 100%;
}

.form-title {
  margin-bottom: 34px;
  color: var(--white);
  font-size: 20px;
  line-height: 1.3;
  font-weight: 500;
}

.form-group {
  margin-bottom: 28px;
}

.form-control {
  width: 100%;
  height: 43px;
  padding: 0;
  border: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: 0;
  color: var(--white);
  background: transparent;
  outline: none;
  text-transform: uppercase;
}

select.form-control {
  appearance: none;
  padding-right: 28px;
  background-image:
    linear-gradient(45deg, transparent 50%, rgba(255, 255, 255, 0.78) 50%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.78) 50%, transparent 50%);
  background-position:
    calc(100% - 12px) 18px,
    calc(100% - 6px) 18px;
  background-size:
    7px 7px,
    7px 7px;
  background-repeat: no-repeat;
}

select.form-control option {
  color: var(--black);
}

.form-control::placeholder {
  color: rgba(255, 255, 255, 0.72);
}

.has-danger .form-control {
  border-color: #ff8a8a;
}

.agree_field {
  display: grid;
  grid-template-columns: 18px 1fr;
  gap: 8px;
  align-items: start;
  margin-top: 12px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 12px;
  line-height: 1.25;
}

.agree_field a {
  color: inherit;
}

.check_ex {
  position: relative;
  width: 18px;
  height: 18px;
  display: inline-block;
  border: 1px solid currentColor;
}

.check_ex input {
  position: absolute;
  inset: 0;
  opacity: 0;
}

.check_ex i {
  position: absolute;
  inset: 3px;
  display: none;
  background: currentColor;
}

.check_ex input:checked + i {
  display: block;
}

.agree_error .agree_field {
  color: #ff8a8a;
}

.credit__content {
  grid-template-columns: minmax(360px, 598px) minmax(400px, 645px);
  align-items: center;
}

.credit__image {
  width: 100%;
  min-height: 348px;
  object-fit: cover;
}

.special-offer {
  padding-top: 95px;
  padding-bottom: 200px;
}

.special-offer__box {
  position: relative;
  min-height: 197px;
  background-color: #00798b;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
}

.special-offer__image {
  position: absolute;
  top: 74px;
  left: -3%;
  width: clamp(560px, 50vw, 646px);
  max-width: 50%;
  margin: 0;
}

.special-offer__content {
  margin-left: auto;
  width: 50%;
  padding-right: 7%;
  padding-top: 19px;
  padding-bottom: 20px;
  box-sizing: border-box;
}

.special-offer h2 {
  max-width: 540px;
  font-size: 24px;
  margin: 0 0 44px;
  line-height: 1.25;
  font-weight: 400;
}

.special-offer .btn {
  width: min(100%, 546px);
}

.contacts-section {
  position: relative;
  min-height: 760px;
  margin-top: 0;
}

.contacts-section__map {
  position: absolute;
  inset: 80px 0 0;
  height: 680px;
  overflow: hidden;
  background: #dce8df;
}

.contacts-section__map iframe {
  width: 100%;
  height: 100%;
  display: block;
  border: 0;
}

.contacts-section__map-loading {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #425050;
}

.contacts-section__overlay {
  position: relative;
  z-index: 2;
  padding-top: 250px;
  pointer-events: none;
}

.contacts-section__card {
  width: 662px;
  pointer-events: auto;
}

.contacts-question,
.contacts-dealer {
  display: grid;
  grid-template-columns: 1fr 207px;
  gap: 24px;
  align-items: center;
  padding: 42px 49px;
  color: #111;
  background: var(--white);
}

.contacts-question h2,
.contacts-dealer h3 {
  margin: 0 0 13px;
  font-size: 22px;
  line-height: 1.1;
  font-weight: 900;
  text-transform: uppercase;
}

.contacts-question p,
.contacts-dealer p {
  margin: 0;
  font-size: 16px;
  line-height: 1.35;
}

.contacts-dealer {
  margin-top: 30px;
  padding-block: 34px;
  grid-template-columns: 1fr 252px;
}

.contacts-dealer__phone {
  display: block;
  margin-bottom: 14px;
  font-size: 23px;
  line-height: 1.1;
  font-weight: 900;
  text-decoration: none;
  white-space: nowrap;
}

.contacts-dealer .btn,
.contacts-question .btn {
  width: 100%;
  min-height: 54px;
  padding-inline: 12px;
}

.contacts-map-pin-logo {
  width: 58px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.contacts-map-pin-logo img {
  width: 50px;
  max-height: 20px;
  filter: brightness(0) invert(1);
}

.site-footer {
  background: var(--bg);
}

.site-footer__panel {
  min-height: 78px;
  display: grid;
  grid-template-columns: repeat(3, auto) 169px;
  gap: 36px;
  align-items: center;
  justify-content: space-between;
}

.site-footer a {
  color: rgba(255, 255, 255, 0.78);
  font-size: 14px;
  text-decoration: none;
}

.site-footer a:hover {
  color: var(--white);
}

.site-footer img {
  width: 169px;
  filter: brightness(0) invert(1);
}

.disclamer {
  display: none;
  padding: 8px 15px 28px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 11px;
  line-height: 1.35;
}

.disclamer p {
  margin: 6px 0;
}

.popup_container {
  width: 460px;
  max-width: calc(100vw - 24px);
  padding: 38px 34px;
  color: #111;
  background: var(--white);
}

.compensate-for-scrollbar {
  margin-right: auto !important;
  overflow: auto !important;
}

.popup_container .form_title {
  margin: 0 0 14px;
  font-size: 32px;
  line-height: 1.12;
  text-align: center;
  text-transform: uppercase;
}

.popup_container .form-title__model {
  display: block;
}

.popup_container .desc {
  margin-bottom: 26px;
  color: #4d5355;
  font-size: 16px;
  line-height: 1.4;
  text-align: center;
}

.popup_container .form-control {
  border-color: #1d1d1d;
  color: #111;
  text-align: center;
}

.popup_container .form-control::placeholder {
  color: #6e7477;
}

.popup_container .agree_field {
  color: #111;
}

.popup_container .btn {
  width: 100%;
}

.alert {
  padding: 30px;
  color: #111;
  background: var(--white);
  font-size: 20px;
}

@media (max-width: 1360px) {
  .site-header__container {
    grid-template-columns: 280px minmax(180px, 1fr) auto 190px;
    gap: 22px;
  }

  .site-brand__desktop {
    width: 280px;
    gap: 30px;
    transform: scale(0.82);
    transform-origin: left center;
  }

  .site-header .btn {
    width: 190px;
  }

  .model-card__top {
    gap: 42px;
  }

  .model-gallery__nav--prev {
    left: 4px;
  }

  .model-gallery__nav--next {
    right: 4px;
  }
}

@media (max-width: 1199px) {
  .hero,
  .hero picture {
    height: 640px;
  }

  .hero picture img {
    height: 640px;
  }

  .hero h1 {
    font-size: 40px;
  }

  .model-card__top,
  .tradein__content,
  .credit__content {
    grid-template-columns: 1fr;
  }

  .model-card__content {
    max-width: 625px;
  }

  .tradein__gallery {
    width: min(100%, 841px);
  }

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

@media (max-width: 991px) {
  .site-header {
    height: 72px;
  }

  .site-header__container {
    grid-template-columns: 230px 1fr auto;
    gap: 16px;
  }

  .site-brand__desktop {
    width: 230px;
    gap: 24px;
    transform: scale(0.7);
  }

  .site-header__address strong,
  .site-header__phone {
    display: none;
  }

  .site-header .btn {
    display: none;
  }

  .hero {
    margin-top: 72px;
  }

  .hero,
  .hero picture {
    height: 560px;
  }

  .hero picture img {
    height: 560px;
  }

  .hero__content {
    top: 54px;
  }

  .hero h1 {
    font-size: 32px;
  }

  .model-card__media h2,
  .section-title {
    font-size: 38px;
  }

  .model-benefits {
    margin-bottom: 36px;
  }

  .model-benefit strong {
    font-size: 26px;
  }

  .model-benefit span {
    font-size: 18px;
  }

  .complect-tabs {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .special-offer {
    padding-bottom: 0;
  }

  .special-offer__box {
    display: grid;
    grid-template-columns: 1fr;
    min-height: 0;
    padding-top: 24px;
  }

  .special-offer__image {
    position: static;
    width: 520px;
    max-width: 100%;
    margin: 0 auto;
  }

  .special-offer__content {
    width: 100%;
    margin-left: 0;
    padding: 12px 24px 32px;
    text-align: center;
  }

  .special-offer h2 {
    max-width: none;
    margin-bottom: 24px;
    font-size: 26px;
  }

  .contacts-section {
    min-height: auto;
    padding-top: 40px;
  }

  .contacts-section__map {
    position: relative;
    inset: auto;
    height: 520px;
  }

  .contacts-section__overlay {
    padding: 0;
  }

  .contacts-section__card {
    width: 100%;
    margin-bottom: 20px;
  }
}

@media (max-width: 767px) {
  .anim {
    opacity: 1;
    transform: none;
  }

  .mobile-phone {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 40;
    display: block;
    padding: 10px 15px;
    color: var(--white);
    background: var(--bg);
    text-align: center;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.2);
  }

  .mobile-phone span {
    display: block;
    margin-bottom: 3px;
    font-size: 12px;
  }

  .mobile-phone a {
    font-weight: 900;
    text-decoration: none;
  }

  .site-header {
    height: 60px;
  }

  .site-header__address {
    display: none;
  }

  .site-header__container {
    grid-template-columns: 1fr;
  }

  .site-brand {
    width: 100%;
    margin-left: 0;
  }

  .site-brand__desktop {
    display: none;
  }

  .site-brand__mobile {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  .site-brand__jaecoo {
    width: 158px;
    height: 19px;
  }

  .site-brand__jaecoo img {
    width: 100%;
    height: 100%;
  }

  .site-brand__tts {
    position: relative;
    width: 82px;
    height: 36px;
    overflow: hidden;
  }

  .site-brand__tts img {
    position: absolute;
    top: 0;
    left: -227px;
    width: 309px;
    height: 36px;
    max-width: none;
  }

  .hero {
    margin-top: 60px;
    display: flex;
    flex-direction: column;
    height: auto;
    min-height: auto;
  }

  .hero picture {
    height: auto;
  }

  .hero picture img {
    position: static;
    width: 100%;
    max-width: 100%;
    height: auto;
    transform: none;
  }

  .hero__content {
    position: absolute;
    inset: auto;
    padding: 22px 0 28px;
    background: none;
  }

  .hero__title-date {
    font-size: 6vw;
    margin-bottom: 10px;
  }

  .hero h1 {
    margin-bottom: 10px;
    font-size: 7vw;
    line-height: 1.2;
  }

  .hero__title-date::before {
    width: 30px;
    height: 30px;
  }

  .hero h1 strong {
    white-space: nowrap;
  }

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

  .hero__content .btn {
    display: none;
  }

  .hero__timer {
    position: static;
    background: #111;
  }

  .hero__timer-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    padding: 20px 0;
  }

  .hero__timer-label {
    white-space: normal;
  }

  .brand-runline {
    height: 48px;
  }

  .brand-runline__track {
    gap: 48px;
    animation-duration: 18s;
  }

  .brand-runline__track img {
    width: 132px;
  }

  .models-section {
    padding-top: 52px;
  }

  .model-card {
    margin-top: 72px;
  }

  .model-card__media h2,
  .section-title {
    font-size: 32px;
    text-align: center;
  }

  .model-card__media p {
    margin: 8px 0 18px;
    font-size: 18px;
    text-align: center;
  }

  .model-card__image {
    height: 240px;
  }

  .model-colors span {
    display: none;
  }

  .model-card__top {
    gap: 10px;
  }

  .model-benefits {
    grid-template-columns: 1fr;
    gap: 12px;
    margin: 8px 0 28px;
  }

  .model-benefit {
    grid-template-columns: 54px 1fr;
    min-height: 58px;
    justify-content: center;
  }

  .model-benefit img {
    width: 54px;
    height: 54px;
  }

  .model-benefit strong {
    display: inline;
    margin-right: 8px;
    font-size: 20px;
  }

  .model-benefit span {
    font-size: 16px;
  }

  .model-card__actions {
    gap: 12px;
  }

  .model-gallery {
    margin-top: 26px;
  }

  .model-gallery__thumb {
    height: 100px;
  }

  .model-gallery__thumb img {
    transition: none;
  }

  .model-gallery__thumb:hover img {
    transform: none;
  }

  .complects,
  .tradein,
  .credit {
    padding-top: 72px;
  }

  .section-title {
    padding-bottom: 18px;
  }

  .complect-tabs {
    grid-template-columns: 1fr 1fr;
    gap: 8px;
  }

  .complect-tab {
    min-height: 48px;
    font-size: 16px;
  }

  .complect-grid {
    grid-template-columns: 1fr;
  }

  .complect-card__body {
    min-height: 0;
    padding: 24px;
  }

  .complect-card h3 {
    font-size: 30px;
  }

  .tradein__gallery {
    grid-template-columns: 1fr 1fr;
    min-height: 0;
  }

  .tradein__logo {
    display: none;
  }

  .tradein__image--main {
    grid-column: span 2;
    order: -1;
    height: auto;
  }

  .tradein__image--small,
  .tradein__image--side {
    height: 180px;
  }

  .form-title {
    margin-top: 16px;
    margin-bottom: 20px;
    text-align: center;
  }

  .credit__image {
    min-height: 220px;
  }

  .special-offer {
    padding-top: 55px;
  }

  .contacts-section {
    display: flex;
    flex-direction: column;
    gap: 30px;
  }

  .contacts-question,
  .contacts-dealer {
    grid-template-columns: 1fr;
    gap: 18px;
    padding: 24px;
    text-align: center;
  }

  .contacts-section__map {
    order: 2;
    height: 420px;
  }

  .contacts-section__overlay {
    order: 1;
  }

  .contacts-section__card {
    margin-bottom: 0;
  }

  .contacts-map-pin-logo {
    width: 48px;
    height: 24px;
  }

  .contacts-map-pin-logo img {
    width: 42px;
    max-height: 17px;
  }

  .site-footer__panel {
    grid-template-columns: 1fr;
    gap: 12px;
    justify-items: center;
    padding: 24px 15px 92px;
    text-align: center;
  }

  .popup_container {
    padding: 32px 22px;
  }

  .popup_container .form_title {
    font-size: 26px;
  }
}

@media (max-width: 420px) {
  .model-card__image {
    height: 205px;
  }

  .model-gallery__thumb {
    height: 88px;
  }
}
