:root {
  --page-max: 1920px;
  --container: 1400px;
  --black: #0d171a;
  --dark: #192123;
  --dark-border: #343c3f;
  --white: #ffffff;
  --accent: #00657b;
  --accent-hover: #3a9db3;
  --soft: #ced7d9;
  --icon: #abbbbe;
  --input-border: #6c7c80;
  --text: #0d171a;
  --transition-base: 0.25s ease;
}

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

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

body {
  margin: 0;
  color: var(--text);
  font-family: var(--font-main, Arial, sans-serif);
  background: var(--white);
  overflow-x: hidden;
  padding-top: 150px;
}

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

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

a {
  color: inherit;
}

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

button {
  border: 0;
}

.site-page {
  width: min(100%, var(--page-max));
  margin-inline: auto;
  overflow: hidden;
  background: var(--white);
}

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

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

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 20;
  width: 100%;
}

.site-header-main {
  height: 100px;
  background: var(--black);
}

.site-header-main__inner {
  display: grid;
  grid-template-columns: 23.98% minmax(0, 1fr) 21.76%;
  column-gap: 4.94%;
  align-items: center;
  width: min(calc(100% - 16px), 1397px);
  height: 100%;
}

.site-brand {
  display: grid;
  grid-template-columns: 47.16% 0.3% 42.98%;
  column-gap: 4.78%;
  align-items: center;
  width: 100%;
  min-width: 0;
  text-decoration: none;
}

.site-brand__logo {
  display: flex;
  align-items: center;
  min-width: 0;
}

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

.site-brand__divider {
  display: block;
  width: 100%;
  height: 20px;
  background: var(--white);
}

.site-brand__dealer {
  /* display: grid;
    gap: 0; */
  color: var(--white);
  line-height: 1;
}

.site-brand__dealer-name {
  height: 14px;
  font-size: 20px;
  font-weight: 400;
}

.site-brand__dealer-caption {
  height: 18px;
  font-size: 14px;
  font-weight: 400;
  white-space: nowrap;
}

.site-contacts {
  display: grid;
  grid-template-columns: minmax(0, 2.08fr) minmax(0, 1fr);
  column-gap: clamp(16px, 4.94vw, 69px);
  row-gap: 4px;
  width: 100%;
  min-width: 0;
}

.site-contacts__location {
  display: contents;
}

.site-contact {
  display: grid;
  align-items: center;
  width: 100%;
  min-width: 0;
  color: var(--white);
  font-size: 16px;
  font-style: normal;
  line-height: 20px;
  text-decoration: none;
  white-space: nowrap;
}

.site-contact--phone {
  grid-template-columns: 13.97% minmax(0, 1fr);
  column-gap: 3.35%;
}

.site-contact--address {
  grid-template-columns: 5.38% minmax(0, 1fr);
  column-gap: 3.76%;
}

.site-contact__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  color: var(--icon);
}

.site-contact__icon svg {
  width: 100%;
  max-width: 25px;
  height: 25px;
  fill: currentColor;
}

.site-contact--address .site-contact__icon svg {
  max-width: 20px;
  height: 25px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
}

.site-contact--phone:hover {
  color: var(--accent);
}

.site-contacts-icon {
  display: none;
  align-items: center;
  justify-content: center;
  width: 25px;
  height: 25px;
  color: var(--icon);
  text-decoration: none;
}

.site-contacts-icon svg {
  display: block;
  width: 25px;
  height: 25px;
}

.site-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 304px;
  height: 56px;
  padding: 0 24px;
  color: var(--white);
  background: var(--accent);
  cursor: pointer;
  text-decoration: none;
  transition:
    background-color var(--transition-base),
    color var(--transition-base);
}

.site-cta span {
  min-width: 0;
}

.site-cta > span:first-child {
  font-size: 16px;
  font-weight: 700;
  line-height: 16px;
  white-space: nowrap;
}

.site-cta__icon {
  position: relative;
  width: 20px;
  height: 20px;
  flex: 0 0 20px;
}

.site-cta__icon::before,
.site-cta__icon::after {
  content: "";
  position: absolute;
  top: 50%;
  background: currentColor;
  transform: translateY(-50%);
}

.site-cta__icon::before {
  left: 1px;
  width: 16px;
  height: 2px;
}

.site-cta__icon::after {
  right: 1px;
  width: 9px;
  height: 9px;
  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor;
  background: transparent;
  transform: translateY(-50%) rotate(45deg);
}

.site-cta--primary {
  background: var(--accent);
}

.site-cta--dark {
  background: var(--black);
}

.site-header-main__callback {
  width: 100%;
}

.site-burger {
  display: none;
  width: 40px;
  height: 40px;
  padding: 0;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  color: var(--white);
  background: transparent;
  cursor: pointer;
}

.site-burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: currentColor;
  transition:
    transform var(--transition-base),
    opacity var(--transition-base);
}

.site-menu {
  height: 50px;
  color: var(--white);
  background: var(--dark);
  border-top: 1px solid var(--dark-border);
}

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

.site-menu a {
  display: inline-flex;
  align-items: center;
  height: 20px;
  font-size: 16px;
  font-weight: 400;
  line-height: 20px;
  text-transform: uppercase;
  text-decoration: none;
  white-space: nowrap;
  transition: color var(--transition-base);
}

.hero {
  display: grid;
  height: 700px;
  overflow: hidden;
}

.hero__picture,
.hero__content {
  grid-area: 1 / 1;
  min-width: 0;
  min-height: 0;
}

.hero__picture {
  display: block;
  width: 100%;
  height: 100%;
}

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

.hero__content {
  display: grid;
  grid-template-rows: 30px 185px 56px 1fr;
  justify-items: center;
  align-items: start;
  /* pointer-events: none; */
}

.hero__offer {
  grid-row: 2;
  z-index: 0;
  /* width: min(calc(100% - 32px), 1000px); */
  /* height: 180px; */
  padding: 20px 24px 40px;
  color: var(--black);
  text-align: center;
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(20px);
}

.hero__offer p,
.hero__offer h1 {
  margin: 0;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero__date,
.hero__offer h1 {
  font-family: var(--font-heading, Arial, sans-serif);
  font-size: 40px;
  line-height: 51px;
}

.hero__date {
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 6px;
  justify-content: center;
  font-size: 36px;
}

.hero__offer h1 {
  margin-top: 15px;
  font-weight: 500;
}

.hero__offer h1 span {
  font-weight: 700;
  font-size: 48px;
}

.hero__subtitle {
  /* margin-top: 11px;
    font-family: var(--font-heading, Arial, sans-serif);
    font-size: 30px;
    font-weight: 500;
    line-height: 38px; */
  margin-top: 10px;
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 600;
  line-height: 22px;
  display: flex;
  align-items: center;
  gap: 11px;
  text-decoration: none;
  color: inherit;
  cursor: pointer;
}

.hero__subtitle1 {
  padding-right: 29px;
}

.hero__cta {
  grid-row: 4;
  z-index: 1;
  pointer-events: auto;
  margin-top: -40px;
}

.timer-offer {
  height: 207px;
  background: var(--soft);
}

.timer-offer__inner {
  display: grid;
  grid-template-columns: minmax(0, 694px) minmax(320px, 597px);
  grid-template-areas:
    "title timer"
    "form timer";
  grid-template-rows: auto auto;
  column-gap: clamp(24px, calc(100% - 1291px), 109px);
  align-content: center;
  align-items: center;
  height: 100%;
}

.timer-offer__title {
  grid-area: title;
  margin: 0 0 20px;
  color: var(--black);
  font-size: 30px;
  font-weight: 400;
  line-height: 38px;
  letter-spacing: 0;
  text-transform: uppercase;
}

.timer-form {
  grid-area: form;
  width: 100%;
}

.timer-form__row {
  display: grid;
  grid-template-columns: 365px 304px;
  gap: 24px;
  align-items: start;
}

.form-group {
  margin: 0;
}

.form-control {
  display: block;
  width: 100%;
  height: 56px;
  border: 1px solid var(--input-border);
  border-radius: 0;
  padding: 0 17px;
  color: var(--black);
  background: var(--white);
  font-family: Inter, Arial, sans-serif;
  font-size: 15px;
  line-height: 18px;
  outline: none;
}

.form-control::placeholder {
  color: var(--icon);
  opacity: 1;
}

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

.timer-form__submit {
  width: 304px;
}

.form-agree {
  display: inline-grid;
  grid-template-columns: 13px auto;
  gap: 7px;
  align-items: center;
  color: var(--black);
  font-size: 10px;
  font-weight: 400;
  line-height: 12px;
  cursor: pointer;
}

.form-agree__text {
  display: flex;
  align-items: center;
  align-self: center;
  column-gap: 3px;
  flex-wrap: wrap;
  min-height: 13px;
}

.timer-form__agree {
  margin-top: 10px;
}

.check_ex {
  position: relative;
  display: block;
  align-self: center;
  width: 13px;
  height: 13px;
}

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

.check_ex i {
  display: block;
  width: 13px;
  height: 13px;
  border-radius: 2.5px;
  background: var(--white);
  box-shadow: inset 0 0 0 1px var(--input-border);
}

.check_ex input:checked + i {
  background: #0075ff;
  box-shadow: none;
}

.check_ex input:checked + i::after {
  content: "";
  position: absolute;
  left: 4px;
  top: 2px;
  width: 5px;
  height: 8px;
  border-right: 2px solid var(--white);
  border-bottom: 2px solid var(--white);
  transform: rotate(45deg);
}

.agree_error .form-agree,
.not_agree .form-agree {
  color: #d53b3b;
}

.timer-offer__timer {
  grid-area: timer;
  display: flex;
  align-items: center;
  justify-content: center;
  justify-self: center;
  width: 100%;
  max-width: 597px;
  overflow: hidden;
}

.timer-offer__timer .sinoby-timer {
  width: 100%;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.models {
  padding: 116px 0 54px;
  color: var(--white);
  background: var(--black);
}

.models__inner {
  width: min(calc(100% - 16px), var(--container));
}

.models__title {
  margin: 0;
  color: var(--white);
  font-family: var(--font-heading, Arial, sans-serif);
  font-size: 44px;
  font-weight: 700;
  line-height: 1.15;
  text-align: center;
  letter-spacing: 0;
  text-transform: uppercase;
}

.models-menu {
  display: grid;
  grid-template-columns: repeat(3, 240px);
  gap: 40px;
  justify-content: center;
  margin: 64px auto 60px;
}

.models-menu__item {
  display: grid;
  grid-template-rows: 40px 80px;
  width: 240px;
  height: 120px;
  padding: 0;
  overflow: hidden;
  color: var(--black);
  background: var(--soft);
  cursor: pointer;
  text-decoration: none;
  transition:
    background-color var(--transition-base),
    transform var(--transition-base);
}

.models-menu__name {
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading, Arial, sans-serif);
  font-size: 24px;
  font-weight: 700;
  line-height: 1.1;
  text-align: center;
}

.models-menu__image {
  display: block;
  width: 240px;
  height: 80px;
}

.models-menu__image img {
  display: block;
  width: 240px;
  height: 100%;
  object-fit: contain;
}

.model-card {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 368px) minmax(0, 692px) 40px 160px;
  grid-template-rows: 314px 56px;
  gap: 24px 25px;
  width: 100%;
  min-height: 454px;
  padding: 30px;
  color: var(--black);
  background-color: var(--white);
  background-image: url("../img/models/card-bg.svg");
  background-repeat: no-repeat;
  background-position: 492px 0;
  background-size: 905.957px 454px;
}

.model-card + .model-card {
  margin-top: 60px;
}

.model-card__promo {
  padding: 10px 15px 8px;
  position: absolute;
  left: 158px;
  top: -16px;
  box-sizing: border-box;
  height: 104px;
  width: 133px;
  background: linear-gradient(180deg, #00657b 0%, #003844 100%);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25);

  display: flex;
  flex-direction: column;
  align-items: center;
  color: #ffffff;
}

.model-card__promo p {
  font-weight: 400;
  font-size: 20px;
  line-height: 28px;
  margin: 0;
}

.model-card__promo span {
  font-weight: 700;
  font-size: 24px;
  line-height: 28px;
}

.model-card__info {
  min-width: 0;
}

.model-card__brand {
  margin: 0;
  color: #c0c0c0;
  font-family: var(--font-heading, Arial, sans-serif);
  font-size: 24px;
  font-weight: 400;
  line-height: 30px;
  text-transform: uppercase;
}

.model-card__name {
  margin: 0 0 18px;
  color: var(--black);
  font-family: var(--font-heading, Arial, sans-serif);
  font-size: 44px;
  font-weight: 700;
  line-height: 1;
  text-transform: uppercase;
}

.model-card__benefit {
  display: grid;
  grid-template-columns: 56px minmax(0, 291px);
  align-items: center;
  width: min(100%, 347px);
  min-height: 53px;
  margin: 0 0 15px;
  color: var(--white);
  text-decoration: none;
}

.model-card__benefit-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 53px;
  padding: 10px;
  background: var(--soft);
  transition: background-color var(--transition-base);
}

.model-card__benefit-icon img {
  width: 35px;
  height: 33px;
  object-fit: contain;
  transition: filter var(--transition-base);
}

.model-card__benefit-text {
  display: flex;
  align-items: center;
  gap: 5px;
  height: 46px;
  padding: 0 12px;
  overflow: hidden;
  background: var(--accent);
  font-family: var(--font-heading, Arial, sans-serif);
  font-size: 24px;
  font-weight: 400;
  line-height: 1;
  text-transform: uppercase;
  white-space: nowrap;
  transition: background-color var(--transition-base);
}

.model-card__benefit-text b {
  font-weight: 700;
}

.model-card__features {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.model-card__feature {
  display: grid;
  grid-template-columns: 30px minmax(0, 1fr);
  gap: 10px;
  align-items: center;
  color: var(--black);
  font-size: 20px;
  font-weight: 400;
  line-height: 28px;
  cursor: pointer;
}

.model-card__feature a {
  text-decoration: none;
  display: flex;
  gap: 10px;
}

.model-card__feature span {
  display: flex;
  align-items: center;
  align-self: center;
  column-gap: 4px;
  white-space: nowrap;
}

.model-card__feature img {
  align-self: center;
  width: 30px;
  max-height: 34px;
  object-fit: contain;
}

.model-card__feature b {
  font-weight: 700;
}

.model-card__visual {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 0;
  height: 314px;
}

.model-card__car-img {
  width: min(100%, 692px);
  height: auto;
  object-fit: contain;
}

.model-colors {
  display: grid;
  gap: 10px;
  align-self: center;
  align-content: center;
  justify-items: center;
  min-width: 0;
}

.model-colors__button {
  width: 30px;
  height: 30px;
  padding: 0;
  border: 1px solid #d3d3d3;
  background: var(--swatch);
  cursor: pointer;
  transition:
    width var(--transition-base),
    height var(--transition-base),
    border-color var(--transition-base);
}

.model-colors__button.is-active {
  width: 40px;
  height: 40px;
}

.model-gallery {
  display: grid;
  grid-template-rows: 21px 264px 21px;
  justify-items: center;
  align-items: center;
  width: 160px;
  height: 308px;
  min-width: 0;
}

.model-gallery__slider {
  width: 160px;
  height: 264px;
}

.model-gallery .swiper-slide {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 160px;
  height: 94px;
  opacity: 0.48;
  transition: opacity var(--transition-base);
}

.model-gallery .swiper-slide img {
  width: 145px;
  height: 94px;
  object-fit: cover;
  transition:
    width var(--transition-base),
    height var(--transition-base);
}

.model-gallery .swiper-slide-next {
  opacity: 1;
}

.model-gallery .swiper-slide.swiper-slide-next img {
  width: 160px;
  height: 116px;
}

.model-gallery__nav {
  position: relative;
  width: 21px;
  height: 21px;
  padding: 0;
  color: var(--black);
  background: transparent;
  cursor: pointer;
}

.model-gallery__nav::before {
  content: "";
  position: absolute;
  left: 5px;
  top: 7px;
  width: 11px;
  height: 11px;
  border-top: 2px solid currentColor;
  border-left: 2px solid currentColor;
  transform: rotate(45deg);
}

.model-gallery__nav--next::before {
  top: 3px;
  transform: rotate(225deg);
}

.model-card__actions {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 25px;
  align-items: center;
}

.model-card__action {
  width: 100%;
}

.complects {
  padding: 92px 0 100px;
  color: var(--white);
  background: var(--black);
}

.complects__inner {
  width: min(calc(100% - 16px), var(--container));
}

.complects__title {
  margin: 0;
  color: var(--white);
  font-family: var(--font-heading, Arial, sans-serif);
  font-size: 44px;
  font-weight: 700;
  line-height: 1.15;
  text-align: center;
  letter-spacing: 0;
  text-transform: uppercase;
}

.complects__filters {
  display: grid;
  grid-template-columns: repeat(3, 450px);
  gap: 25px;
  justify-content: center;
  margin: 25px 0;
}

.complects__filters select {
  display: block;
  min-width: 0;
  width: 100%;
  height: 50px;
  border: 1px solid #d3d3d3;
  border-radius: 0;
  padding: 0 52px 0 20px;
  color: var(--black);
  background-color: var(--white);
  background-image: url("data:image/svg+xml,%3Csvg width='12' height='12' viewBox='0 0 12 12' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1.25 3.75H10.75L6 8.25L1.25 3.75Z' fill='%23000'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 20px center;
  background-size: 12px 12px;
  font-family: var(--font-main, Arial, sans-serif);
  font-size: 16px;
  font-weight: 400;
  line-height: 20px;
  appearance: none;
  -webkit-appearance: none;
  cursor: pointer;
}

.complects__list {
  display: grid;
  gap: 30px;
}

.complect-card {
  position: relative;
  display: grid;
  grid-template-columns: 365px minmax(0, 576px) 335px;
  column-gap: 18px;
  align-items: center;
  width: 100%;
  height: 150px;
  overflow: hidden;
  color: var(--black);
  background: #f8f8f8;
}

.complect-card[hidden] {
  display: none;
}

.complect-card__media {
  position: relative;
  width: 365px;
  height: 150px;
  overflow: hidden;
}

.complect-card__media::before,
.complect-card__media::after {
  content: "";
  position: absolute;
  top: 0;
  height: 150px;
  pointer-events: none;
}

.complect-card__media::before {
  left: -1px;
  width: 240px;
  background: linear-gradient(74deg, #dce4e6 0 86%, transparent 86% 100%);
}

.complect-card__media::after {
  left: 209px;
  width: 90px;
  background: linear-gradient(
    74deg,
    rgba(206, 215, 217, 0.55) 0 62%,
    transparent 62% 100%
  );
}

.complect-card__image {
  position: relative;
  z-index: 1;
  width: 365px;
  height: 150px;
  object-fit: contain;
}

.complect-card__content {
  display: grid;
  grid-template-columns: minmax(139px, 240px) minmax(118px, 150px) 99px;
  gap: 24px;
  align-items: center;
  justify-content: space-between;
  min-width: 0;
}

.complect-card__model,
.complect-card__trim {
  margin: 0;
  font-family: var(--font-heading, Arial, sans-serif);
  color: var(--black);
  line-height: 1;
  white-space: nowrap;
}

.complect-card__model {
  font-size: 25px;
  font-weight: 400;
  text-transform: uppercase;
}

.complect-card__model b {
  font-weight: 700;
}

.complect-card__trim {
  margin-top: 5px;
  font-size: 30px;
  font-weight: 700;
}

.complect-card__specs {
  display: contents;
}

.complect-card__spec {
  display: grid;
  gap: 6px;
  margin: 0;
  color: #25282a;
  font-family: var(--font-heading, Arial, sans-serif);
  font-size: 20px;
  line-height: 1.3;
}

.complect-card__spec dt,
.complect-card__spec dd {
  margin: 0;
}

.complect-card__spec dt {
  font-weight: 400;
}

.complect-card__spec dd {
  font-weight: 700;
  white-space: nowrap;
}

.complect-card__actions {
  display: grid;
  gap: 10px;
  align-content: center;
  width: 335px;
}

.complect-card__button {
  width: 100%;
}

.complects__more {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: max-content;
  margin: 24px auto 0;
  padding: 0;
  color: var(--white);
  background: transparent;
  cursor: pointer;
}

.complects__more[hidden] {
  display: none;
}

.complects__more span:first-child {
  font-size: 16px;
  font-weight: 700;
  line-height: 16px;
  white-space: nowrap;
}

.promo-section {
  display: grid;
  height: 530px;
  overflow: hidden;
  color: var(--white);
  background: var(--black);
}

.promo-section__picture,
.promo-section__inner {
  grid-area: 1 / 1;
  min-width: 0;
  min-height: 0;
}

.promo-section__picture {
  display: block;
  width: 100%;
  height: 100%;
}

.promo-section__image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1);
  transition: transform 0.7s ease;
  will-change: transform;
}

.promo-section__inner {
  display: grid;
  align-items: center;
  height: 100%;
}

.promo-section {
  --promo-width: 506px;
  --promo-control: 446px;
  --promo-mobile-ratio: 800 / 320;
}

.promo-section--credit {
  --promo-width: 532px;
}

.promo-section--test-drive {
  --promo-width: 517px;
  --promo-control: 457px;
  --promo-mobile-ratio: 800 / 331;
}

.promo-section__content {
  display: grid;
  gap: 24px;
  width: min(100%, var(--promo-width));
}

.promo-section__content--left {
  justify-self: start;
}

.promo-section__content--right {
  justify-self: end;
}

.promo-section__title {
  margin: 0;
  color: var(--white);
  font-family: var(--font-heading, Arial, sans-serif);
  font-size: 44px;
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: 0;
  text-transform: uppercase;
}

.promo-card {
  display: grid;
  align-content: start;
  width: 100%;
  height: 297px;
  padding: 30px;
  color: var(--white);
  background: rgba(11, 13, 12, 0.3);
  backdrop-filter: blur(10px);
}

.promo-card__text {
  margin: 0 0 20px;
  color: var(--white);
  font-size: 30px;
  font-weight: 400;
  line-height: 1.2;
  white-space: nowrap;
}

.promo-card__text b {
  font-weight: 700;
}

.promo-card__controls {
  display: grid;
  gap: 10px;
  width: min(100%, var(--promo-control));
}

.promo-card__submit {
  width: 100%;
}

.promo-card__agree {
  color: var(--white);
}

.contacts-map {
  display: flex;
  flex-direction: column;
  color: var(--black);
  background: #e7eef1;
}

.contacts-map__canvas {
  position: relative;
  width: 100%;
  height: 592px;
}

.contacts-strip {
  position: relative;
  z-index: 1;
  flex-shrink: 0;
  background: #fff;
}

.contacts-strip__inner {
  display: grid;
  grid-template-columns: 23.98% minmax(0, 1fr) 21.76%;
  column-gap: 4.94%;
  align-items: center;
  width: min(calc(100% - 16px), 1397px);
  min-height: 56px;
  height: auto;
  margin: 0 auto;
  padding: 25px 0;
}

.contacts-strip .site-brand {
  color: var(--black);
}

.contacts-strip .site-brand__logo-img {
  filter: brightness(0) saturate(100%);
}

.contacts-strip .site-brand__divider {
  background: var(--black);
}

.contacts-strip .site-brand__dealer {
  color: var(--black);
}

.contacts-strip .site-contact {
  color: var(--black);
}

.contacts-strip .site-contact--phone:hover {
  color: var(--accent-hover);
}

.contacts-strip .site-contact--phone {
  grid-template-columns: 25px minmax(0, 1fr);
  column-gap: 6px;
}

.contacts-strip .site-contact--address {
  grid-template-columns: 20px minmax(0, 1fr);
  column-gap: 14px;
}

.contacts-strip__callback {
  width: 304px;
}

.site-footer {
  position: relative;
  flex-shrink: 0;
  height: 119px;
  color: var(--white);
  background: var(--black);
}

.site-footer__disclamer {
  background: var(--black);
  color: var(--white);
  font-size: 13px;
  line-height: 1.6;
  opacity: 0.85;
  padding: 16px;
}

.site-footer__toggle {
  cursor: pointer;
  user-select: none;
}

.site-footer__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  width: min(calc(100% - 16px), var(--container));
  height: 100%;
  margin-inline: auto;
}

.site-footer__item {
  color: var(--white);
  font-size: 16px;
  line-height: 22px;
  text-decoration: none;
}

.site-footer__made {
  display: inline-flex;
  gap: 7px;
  align-items: center;
}

.site-footer__sinoby {
  flex: 0 0 81px;
  width: 81px;
  height: 12px;
}

.popup_container.fancybox-content {
  width: min(456px, calc(100% - 16px));
  max-width: calc(100% - 16px);
  padding: 0;
  overflow-x: hidden;
  background: transparent;
}

.popup-form {
  width: 100%;
  padding: 30px;
  color: var(--black);
  background: var(--white);
}

.popup-form .form_title {
  margin: 0 0 12px;
  font-size: 30px;
  font-weight: 400;
  line-height: 1.2;
  text-transform: uppercase;
}

.popup-form .desc {
  margin-bottom: 24px;
  font-size: 18px;
  line-height: 1.35;
}

.popup-form .form-group {
  margin-bottom: 10px;
}

.popup-form .site-cta {
  width: 100%;
}

.popup-form .form-agree {
  margin-top: 6px;
}

.popup-form a {
  color: var(--accent);
}

.alert {
  max-width: 420px;
  padding: 24px;
  color: var(--black);
  background: var(--white);
  font-size: 20px;
  line-height: 1.35;
}

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

.fancybox-thumbs.fancybox-thumbs-x {
  top: auto;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 92px;
  padding: 6px 44px;
  background: rgba(13, 23, 26, 0.92);
}

.fancybox-thumbs-x .fancybox-thumbs__list {
  height: 100%;
  overflow-x: auto;
  overflow-y: hidden;
}

.fancybox-thumbs-x .fancybox-thumbs__list a {
  max-width: none;
}

.site-cta--primary:hover,
.site-cta--dark:hover,
.model-card__benefit:hover .model-card__benefit-text {
  background: var(--accent-hover);
}

.model-card__feature:hover,
.hero__subtitle1:hover,
.hero__subtitle2:hover {
  color: var(--accent-hover);
}

.hero__subtitle1:hover svg,
.hero__subtitle2:hover svg {
  filter: drop-shadow(2px 4px 6px black);
}

.model-card__benefit:hover .model-card__benefit-icon {
  background: var(--black);
}

.model-card__benefit:hover .model-card__benefit-icon img {
  filter: brightness(0) invert(1);
}

@media (hover: hover) {
  .promo-section:hover .promo-section__image {
    transform: scale(1.045);
  }

  .site-menu a:hover {
    color: var(--accent-hover);
  }

  .models-menu__item:hover {
    background: #e0e8ea;
  }

  .model-colors__button:hover {
    border-color: var(--accent-hover);
  }

  .complects__more:hover {
    color: var(--accent-hover);
  }
}

@media (max-width: 1439px) {
  .site-header-main__inner {
    width: min(calc(100% - 16px), 1397px);
  }

  .models-menu {
    grid-template-columns: repeat(3, minmax(0, 240px));
    gap: clamp(12px, 2.8vw, 40px);
  }

  .models-menu__item,
  .models-menu__image,
  .models-menu__image img {
    width: 100%;
  }

  .model-card {
    grid-template-columns: minmax(0, 28%) minmax(0, 1fr) 40px 160px;
  }

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

  .complect-card {
    grid-template-columns: 26.08% minmax(0, 1fr) 23.93%;
    column-gap: clamp(12px, 1.25vw, 18px);
  }

  .complect-card__media,
  .complect-card__image {
    width: 100%;
  }

  .complect-card__content {
    grid-template-columns: minmax(130px, 1.2fr) minmax(112px, 0.75fr) minmax(
        82px,
        0.55fr
      );
    gap: clamp(16px, 1.6vw, 24px);
  }

  .complect-card__actions {
    width: 100%;
  }

  .contacts-strip__inner {
    grid-template-columns: minmax(260px, 335px) minmax(0, 1fr) 304px;
    column-gap: clamp(16px, 4vw, 69px);
  }
}

@media (max-width: 1199px) {
  .site-header-main__inner {
    grid-template-columns: 38% 24% 29%;
    column-gap: 4.5%;
  }

  .site-header-main .site-contact--address {
    display: none;
  }

  .site-brand {
    grid-template-columns: minmax(96px, 44%) 1px minmax(127px, 1fr);
    column-gap: 4%;
  }

  .site-header-main__callback {
    padding-inline: 16px;
  }

  .hero__date,
  .hero__offer h1 {
    font-size: 34px;
    line-height: 42px;
  }

  .hero__subtitle {
    font-size: 2vw;
    line-height: 24px;
  }

  .timer-offer {
    height: auto;
    min-height: 320px;
  }

  .timer-offer__inner {
    grid-template-columns: minmax(0, 694px);
    grid-template-areas:
      "title"
      "timer"
      "form";
    row-gap: 18px;
    justify-content: center;
    align-content: center;
    height: auto;
    min-height: 320px;
    padding-block: 28px 30px;
  }

  .timer-offer__title {
    margin: 0;
    text-align: center;
  }

  .timer-offer__timer {
    width: min(100%, 597px);
    min-height: 130px;
  }

  .timer-form {
    width: 100%;
  }

  .timer-form__row {
    justify-content: center;
  }

  .timer-form__agree {
    display: grid;
    justify-content: center;
  }

  .model-card {
    grid-template-columns: minmax(0, 28%) minmax(0, 1fr) 34px 130px;
    gap: 22px 18px;
  }

  .model-card__benefit {
    grid-template-columns: 42px minmax(0, 1fr);
    min-height: 47px;
    margin-bottom: 22px;
  }

  .model-card__benefit-icon {
    width: 42px;
    height: 43px;
    padding: 8px;
  }

  .model-card__benefit-icon img {
    width: 26px;
    height: auto;
  }

  .model-card__benefit-text {
    height: 40px;
    padding-inline: 10px;
    font-size: clamp(16px, 1.75vw, 22px);
  }

  .model-card__features {
    gap: 14px;
  }

  .model-card__feature {
    grid-template-columns: 26px minmax(0, 1fr);
    gap: 8px;
    font-size: clamp(15px, 1.55vw, 18px);
    line-height: 1.2;
  }

  .model-card__feature img {
    width: 26px;
    max-height: 29px;
  }

  .model-gallery,
  .model-gallery__slider {
    width: 130px;
  }

  .model-gallery .swiper-slide,
  .model-gallery .swiper-slide.swiper-slide-next img {
    width: 130px;
  }

  .model-gallery .swiper-slide img {
    width: 118px;
  }

  .complect-card__model {
    font-size: 22px;
  }

  .complect-card__trim {
    font-size: 26px;
  }

  .complect-card__spec {
    font-size: 17px;
  }

  .complect-card__button {
    padding-inline: 14px;
  }

  .contacts-strip__inner {
    grid-template-columns: minmax(260px, 335px) minmax(160px, 179px) 304px;
    column-gap: clamp(20px, 5vw, 69px);
  }

  .contacts-strip .site-contact--address {
    display: none;
  }
}

@media (max-width: 991px) {
  .models {
    padding: 74px 0 44px;
  }

  .models__title {
    font-size: 36px;
  }

  .models-menu {
    grid-template-columns: repeat(2, minmax(0, 240px));
    gap: 16px;
    margin: 42px auto 36px;
  }

  .models-menu__item {
    height: auto;
    aspect-ratio: 2 / 1;
    grid-template-rows: 34% 66%;
  }

  .models-menu__name {
    font-size: 22px;
  }

  .models-menu__image {
    height: 100%;
  }

  .model-card {
    grid-template-columns: minmax(0, 1fr);
    grid-template-rows: auto;
    gap: 22px;
    min-height: 0;
    padding: 24px;
    background-position: center;
    background-size: cover;
  }

  .model-card__info,
  .model-card__visual,
  .model-colors,
  .model-gallery,
  .model-card__actions {
    grid-column: 1;
  }

  .model-card__info {
    display: inline-block;
    /* display: grid;
        grid-template-columns: 122px minmax(0, 347px);
        grid-template-areas:
            "brand benefit"
            "name benefit"
            "features features";
        column-gap: 24px;
        align-items: center;
        justify-content: start; */
  }

  .model-card__brand {
    grid-area: brand;
    justify-self: start;
  }

  .model-card__name {
    grid-area: name;
    justify-self: start;
    margin-bottom: 0;
  }

  .model-card__benefit {
    grid-area: benefit;
    align-self: center;
    margin: 0;
  }

  .model-card__features {
    /* grid-area: features;
        grid-template-columns: repeat(2, max-content); */
    gap: 18px 24px;
    justify-content: start;
    margin-top: 24px;
  }

  .model-card__visual {
    height: auto;
  }

  .model-colors {
    display: flex;
    justify-content: center;
    align-items: center;
    height: auto;
  }

  .model-gallery {
    grid-template-columns: 32px minmax(0, 1fr) 32px;
    grid-template-rows: 120px;
    width: 100%;
    height: 120px;
    justify-self: center;
  }

  .model-gallery__slider {
    width: 100%;
    height: 120px;
  }

  .model-gallery__nav--prev {
    grid-column: 1;
    grid-row: 1;
  }

  .model-gallery__slider {
    grid-column: 2;
    grid-row: 1;
  }

  .model-gallery .swiper-slide {
    width: 160px;
    height: 116px;
    opacity: 1;
  }

  .model-gallery .swiper-slide img,
  .model-gallery .swiper-slide.swiper-slide-active img,
  .model-gallery .swiper-slide.swiper-slide-next img {
    width: 160px;
    height: 116px;
  }

  .model-gallery__nav--next {
    grid-column: 3;
    grid-row: 1;
  }

  .model-gallery__nav--prev::before {
    left: 8px;
    top: 5px;
    transform: rotate(-45deg);
  }

  .model-gallery__nav--next::before {
    left: 2px;
    top: 5px;
    transform: rotate(135deg);
  }

  .model-card__actions {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
  }

  .model-card__action {
    height: auto;
    min-height: 56px;
    padding-block: 8px;
  }

  .model-card__action > span:first-child {
    line-height: 18px;
    white-space: normal;
    text-align: center;
  }

  .model-card__feature span {
    white-space: nowrap;
  }

  .complects {
    padding: 70px 0 44px;
  }

  .complects__title {
    font-size: 36px;
  }

  .complects__filters {
    grid-template-columns: 1fr;
    gap: 12px;
    margin: 42px 0 24px;
  }

  .complect-card {
    grid-template-columns: minmax(220px, 38%) minmax(0, 1fr);
    grid-template-areas:
      "media content"
      "media actions";
    column-gap: 18px;
    align-items: start;
    height: auto;
    min-height: 170px;
    padding: 0 20px 20px 0;
    row-gap: 14px;
  }

  .complect-card__media {
    grid-area: media;
    width: 100%;
    margin-inline: 0;
    align-self: start;
  }

  .complect-card__image {
    width: 100%;
  }

  .complect-card__content {
    grid-area: content;
    grid-template-columns: minmax(0, 1fr) minmax(100px, max-content) minmax(
        76px,
        max-content
      );
    gap: 14px;
    align-items: start;
    padding-top: 20px;
  }

  .complect-card__actions {
    grid-area: actions;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-self: end;
  }

  .contacts-strip__inner {
    grid-template-columns: minmax(250px, 335px) minmax(160px, 179px);
    column-gap: clamp(14px, 3vw, 24px);
  }

  .contacts-strip__callback {
    width: 100%;
    padding-inline: 16px;
  }
}

@media (max-width: 767px) {
  body {
    padding-top: 70px;
  }

  .site-header-main {
    height: 72px;
  }

  .site-header-main__inner {
    grid-template-columns: minmax(180px, 1fr) 36px 40px;
    column-gap: 8px;
  }

  .site-header-main .site-contacts {
    display: none;
  }

  .site-header-main .site-contacts-icon {
    display: flex;
  }

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

  .site-burger {
    display: flex;
    justify-self: end;
  }

  html.is-mobile-menu-open .site-burger span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  html.is-mobile-menu-open .site-burger span:nth-child(2) {
    opacity: 0;
  }

  html.is-mobile-menu-open .site-burger span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .site-menu {
    display: none;
    height: auto;
    border-top: 1px solid var(--dark-border);
  }

  html.is-mobile-menu-open .site-menu {
    display: block;
  }

  .site-menu__inner {
    display: grid;
    justify-content: stretch;
    gap: 0;
    height: auto;
    padding-block: 8px;
  }

  .site-menu a {
    height: auto;
    min-height: 44px;
    justify-content: center;
    font-size: 15px;
    line-height: 18px;
    white-space: normal;
    text-align: center;
  }

  .hero {
    height: auto;
    aspect-ratio: 800 / 900;
  }

  .hero__content {
    grid-template-rows: 24px auto 16px auto 1fr;
    /* padding-inline: 16px; */
  }

  .hero__offer {
    width: min(100%, 520px);
    height: auto;
    padding: 16px;
  }

  .hero__date,
  .hero__offer h1 {
    font-size: 28px;
    line-height: 34px;
  }

  .hero__offer h1 span {
    font-size: 28px;
  }

  .hero__subtitle {
    font-size: 3vw;
    line-height: 20px;
  }

  .hero__cta {
    grid-row: 4;
    width: min(304px, 100%);
  }

  .timer-offer {
    min-height: 0;
  }

  .timer-offer__inner {
    width: min(calc(100% - 16px), 694px);
    min-height: 0;
    padding-block: 28px;
  }

  .timer-offer__title {
    font-size: 28px;
    line-height: 34px;
  }

  .timer-offer__timer {
    max-width: 100%;
    min-height: 118px;
  }

  .timer-offer__timer .sinoby-timer[data-sinoby-reserve="sinoby-184qt7"] {
    min-height: 118px;
  }

  .timer-form__row {
    grid-template-columns: minmax(0, 1fr);
    gap: 12px;
    width: 100%;
  }

  .timer-form__submit {
    width: 100%;
  }

  .timer-form__agree {
    grid-template-columns: 16px minmax(0, max-content);
    gap: 8px;
    min-height: 18px;
    max-width: 100%;
    font-size: 14px;
    line-height: 18px;
    justify-content: center;
    text-align: left;
  }

  .timer-form__agree .check_ex,
  .timer-form__agree .check_ex i {
    width: 16px;
    height: 16px;
  }

  .timer-form__agree .check_ex i {
    border-radius: 3px;
  }

  .timer-form__agree .check_ex input:checked + i::after {
    left: 5px;
    top: 2px;
    width: 5px;
    height: 9px;
  }

  .popup_container.fancybox-content {
    width: calc(100% - 16px);
    max-width: calc(100% - 16px);
  }

  .popup-form {
    width: 100%;
    padding: 8px;
  }

  .popup-form .form_title {
    font-size: clamp(24px, 7vw, 30px);
    line-height: 1.25;
  }

  .popup-form .desc {
    margin: 12px 0 16px;
  }

  .popup-form .site-cta {
    min-width: 0;
    padding: 0 8px;
  }

  .promo-section {
    display: block;
    height: auto;
    min-height: 0;
  }

  .promo-section__picture {
    display: block;
    height: auto;
    aspect-ratio: var(--promo-mobile-ratio);
  }

  .promo-section__image {
    display: block;
    width: 100%;
    height: 100%;
  }

  .promo-section__inner {
    display: block;
    height: auto;
    min-height: 0;
    padding-block: 48px;
  }

  .promo-section__content,
  .promo-section__content--right {
    justify-self: start;
    width: min(100%, var(--promo-width));
  }

  .promo-section__title {
    width: calc(100% - 48px);
    margin-inline: 24px;
    font-size: clamp(24px, 6.2vw, 32px);
    line-height: 1.15;
  }

  .promo-card {
    height: auto;
    min-height: 297px;
  }

  .promo-card__text {
    font-size: clamp(21px, 5.2vw, 24px);
    line-height: 1.18;
    white-space: normal;
  }

  .promo-card__agree {
    grid-template-columns: 24px minmax(0, 1fr);
    gap: 8px;
    min-height: 24px;
    font-size: 12px;
    line-height: 16px;
  }

  .promo-card__agree .check_ex,
  .promo-card__agree .check_ex i {
    width: 24px;
    height: 24px;
  }

  .promo-card__agree .check_ex i {
    border-radius: 4px;
  }

  .promo-card__agree .check_ex input:checked + i::after {
    left: 8px;
    top: 4px;
    width: 7px;
    height: 12px;
  }

  .contacts-strip {
    padding: 22px 0;
  }

  .contacts-strip__inner {
    grid-template-columns: minmax(0, 1fr);
    row-gap: 14px;
    justify-items: center;
    width: min(calc(100% - 16px), 420px);
    height: auto;
    margin: 0 auto;
  }

  .contacts-strip .site-brand {
    width: min(335px, 100%);
  }

  .contacts-strip .site-contacts {
    grid-template-columns: 1fr;
    width: auto;
    justify-items: center;
  }

  .contacts-strip .site-contact--address {
    display: grid;
  }

  .contacts-strip .site-contact {
    width: auto;
    justify-content: center;
  }

  .contacts-strip .site-contact--address {
    white-space: normal;
    text-align: left;
  }

  .contacts-strip__callback {
    width: min(304px, 100%);
  }

  .contacts-map__canvas {
    height: 360px;
  }

  .site-footer {
    height: auto;
    padding: 24px 0;
  }

  .site-footer__inner {
    display: grid;
    gap: 14px;
    align-items: center;
    justify-content: center;
    justify-items: center;
    width: min(calc(100% - 16px), 414px);
    height: auto;
    text-align: center;
  }

  .site-footer__item {
    width: 100%;
    justify-self: center;
    text-align: center;
  }

  .site-footer__made {
    justify-content: center;
  }
}

@media (max-width: 540px) {
  .site-brand__dealer-name {
    font-size: 18px;
  }

  .site-brand__dealer-caption {
    font-size: 12px;
  }

  .hero__date,
  .hero__offer h1 {
    font-size: 26px;
    line-height: 32px;
  }

  .timer-offer__title {
    font-size: 24px;
    line-height: 31px;
  }

  .timer-offer__timer {
    min-height: 108px;
  }

  .models {
    padding-top: 56px;
  }

  .models__title {
    font-size: 30px;
  }

  .models-menu {
    gap: 12px;
    margin-top: 32px;
  }

  .models-menu__name {
    font-size: 19px;
  }

  .model-card {
    padding: 20px 16px;
  }

  .model-card__brand {
    font-size: 20px;
    line-height: 25px;
  }

  .model-card__name {
    font-size: 36px;
  }

  .model-card__benefit {
    grid-template-columns: 52px minmax(0, 1fr);
  }

  .model-card__benefit-icon {
    width: 52px;
  }

  .model-card__benefit-text {
    font-size: 20px;
  }

  .model-card__info {
    display: block;
  }

  .model-card__name {
    margin-bottom: 18px;
  }

  .model-card__benefit {
    margin-bottom: 22px;
  }

  .model-card__features {
    display: grid;
    grid-template-columns: 1fr;
    gap: 14px;
    margin-top: 0;
  }

  .model-card__feature {
    font-size: 17px;
    line-height: 22px;
  }

  .model-card__feature span {
    /* white-space: normal; */
  }

  .model-card__actions {
    grid-template-columns: 1fr;
  }

  .complects {
    padding-top: 56px;
  }

  .complects__title {
    font-size: 30px;
  }

  .complect-card {
    grid-template-columns: minmax(0, 1fr);
    grid-template-areas:
      "media"
      "content"
      "actions";
    min-height: 0;
    padding: 0 16px 20px;
    row-gap: 18px;
  }

  .complect-card__media {
    width: calc(100% + 32px);
    margin-inline: -16px;
  }

  .complect-card__content {
    grid-template-columns: 1fr;
    gap: 14px;
    padding-top: 0;
  }

  .complect-card__model {
    font-size: 20px;
  }

  .complect-card__trim {
    font-size: 25px;
  }

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

  .promo-section__title {
    font-size: clamp(22px, 6vw, 28px);
  }

  .promo-card {
    padding: 24px;
  }

  .promo-card__text {
    font-size: 21px;
    line-height: 1.2;
  }

  .complect-card__specs {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
    width: 100%;
  }

  .complect-card__spec {
    justify-items: start;
  }

  .complect-card__spec dd {
    white-space: normal;
  }
}

@media (max-width: 430px) {
  .site-header-main__inner {
    grid-template-columns: minmax(0, 1fr) 36px 40px;
  }

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

  .site-header-main .site-contact--phone > span:last-child {
    display: none;
  }

  .contacts-strip .site-contact--phone {
    grid-template-columns: 25px max-content;
    column-gap: 8px;
  }

  .contacts-strip .site-contact--phone > span:last-child {
    display: block;
  }

  .hero__date,
  .hero__offer h1 {
    font-size: 14px;
    line-height: 30px;
  }

  .hero__subtitle {
    font-size: 3vw;
    line-height: 12px;
  }

  .timer-offer__title {
    font-size: 22px;
    line-height: 29px;
  }

  .timer-offer__timer {
    min-height: 78px;
  }

  .timer-offer__timer .sinoby-timer[data-sinoby-reserve="sinoby-184qt7"] {
    min-height: 78px;
  }

  .models-menu__name {
    font-size: 17px;
  }

  .model-card__benefit-text {
    font-size: 18px;
  }

  .promo-card__text {
    font-size: 20px;
  }

  .promo-card__submit > span:first-child {
    font-size: 14px;
  }
}
