@font-face {
  font-display: swap;
  font-family: "Mulish";
  font-weight: 300;
  font-style: normal;
  src: url("../../static/fonts/Mulish-300.woff2") format("woff2");
}
@font-face {
  font-display: swap;
  font-family: "Mulish";
  font-weight: 400;
  font-style: normal;
  src: url("../../static/fonts/Mulish-400.woff2") format("woff2");
}
@font-face {
  font-display: swap;
  font-family: "Mulish";
  font-weight: 500;
  font-style: normal;
  src: url("../../static/fonts/Mulish-500.woff2") format("woff2");
}
@font-face {
  font-display: swap;
  font-family: "Mulish";
  font-weight: 700;
  font-style: normal;
  src: url("../../static/fonts/Mulish-700.woff2") format("woff2");
}
*::-webkit-input-placeholder {
  color: rgba(44, 46, 53, 0.6);
  opacity: 1;
}

*:-moz-placeholder {
  color: rgba(44, 46, 53, 0.6);
  opacity: 1;
}

*::-moz-placeholder {
  color: rgba(44, 46, 53, 0.6);
  opacity: 1;
}

*:-ms-input-placeholder {
  color: rgba(44, 46, 53, 0.6);
  opacity: 1;
}

*::-ms-clear {
  display: none;
}

*::-webkit-scrollbar {
  width: 8px;
}

*::-webkit-scrollbar-track {
  background: #2c2e35;
}

*::-webkit-scrollbar-thumb {
  background: #418fde;
}

* {
  scrollbar-base-color: #ddd;
  scrollbar-face-color: #418fde;
  scrollbar-3dlight-color: transparent;
  scrollbar-highlight-color: transparent;
  scrollbar-track-color: transparent;
  scrollbar-arrow-color: #418fde;
  scrollbar-shadow-color: transparent;
  scrollbar-dark-shadow-color: transparent;
}

*::-moz-selection {
  color: #418fde;
  background: #2c2e35;
}

*::selection {
  color: #418fde;
  background: #2c2e35;
}

body input:focus:required:invalid,
body textarea:focus:required:invalid {
  color: green;
}

body input:required:valid,
body textarea:required:valid {
  color: green;
}

body {
  font-size: 16px;
  min-width: 320px;
  position: relative;
  line-height: 1.4;
  font-family: "Mulish", sans-serif;
  overflow-x: hidden;
  opacity: 1;
  color: #222222;
  background-color: #fff;
  font-variant-numeric: tabular-nums;
  font-feature-settings: "tnum";
}

.img-responsive {
  display: block;
  max-width: 100%;
  height: auto;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  padding: 0;
  font-family: "Mulish", sans-serif;
  font-weight: 700;
  line-height: 1.2em;
}

h2 {
  font-size: 42px;
  line-height: 1.1;
}

a {
  text-decoration-skip-ink: ink;
  transition: all 0.3s;
  color: #418fde;
  appearance: none;
  outline: none;
  outline-width: 0;
}

[v-cloak] {
  display: none;
}

.redput {
  color: #ff0000;
  border-color: #ff0000;
  box-shadow: none;
}
.redput::-webkit-input-placeholder {
  color: #ff0000 !important;
}
.redput:-moz-placeholder {
  color: #ff0000 !important;
}
.redput::-moz-placeholder {
  color: #ff0000 !important;
}
.redput:-ms-input-placeholder {
  color: #ff0000 !important;
}

#app {
  overflow: hidden;
}

.red {
  color: #ff0000 !important;
}

.container {
  max-width: 1700px;
  width: 100%;
  margin: 0 auto;
  padding: 0 20px;
}

section {
  margin-top: 80px;
}

.accent {
  color: #418fde;
}

@media only screen and (max-width: 1400px) {
  .container {
    max-width: 1260px;
  }
}
@media only screen and (max-width: 1200px) {
  .ios {
    overflow-scrolling: touch !important;
    overflow: auto !important;
    height: 100% !important;
  }
}
@media only screen and (max-width: 767px) {
  h2 {
    font-size: 24px;
  }
  .container {
    max-width: 100%;
  }
  section {
    margin-top: 50px;
  }
}
.btn {
  color: #20365a;
  font-weight: 400;
  font-size: 16px;
  line-height: unset;
  white-space: nowrap;
  min-height: 52px;
  padding: 0 32px;
  border: 1px solid #20365a;
  border-radius: 9em;
  text-decoration: none;
  background: transparent;
  transition: 0.2s;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  font-family: "Mulish", sans-serif;
  outline: 0;
  cursor: pointer;
  user-select: none;
  -webkit-tap-highlight-color: transparent;
}
.btn svg {
  min-width: 20px;
  height: 20px;
  transition: 0.2s;
}
.btn:hover {
  border-color: #20365a;
}
.btn:hover svg {
  transform: translateX(6px);
}
.btn--reset {
  margin: 0;
  padding: 0;
  outline: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
  min-height: 1px;
  border-radius: 0;
}
.btn--light {
  color: #2c2e35;
  background: #fff;
  border: 1px solid #fff;
}
.btn--light:hover {
  color: #2c2e35;
  background: #20365a;
  border-color: #20365a;
}
.btn--light:hover svg {
  fill: #2c2e35;
  transform: translateX(6px);
}
.btn--accent {
  color: #fff;
  background: linear-gradient(90deg, #1b365d -14.69%, #418fde 175.76%);
  border: none;
}
.btn--accent:hover {
  color: #fff;
  background: linear-gradient(90deg, #1b365d, #1b365d);
}
.btn--accent svg {
  fill: #fff;
}
.btn--secondary {
  color: #fff;
  background: #141414;
  border-color: #2d2d2d;
}
.btn--secondary:hover {
  color: #fff;
  background: #1f1f1f;
  border-color: #2d2d2d;
}
.btn .progress {
  position: absolute;
  width: 0;
  background-color: rgb(18.6229508197, 31.4262295082, 52.3770491803);
  left: 0;
  top: 0;
  bottom: 0;
  border-radius: 2px;
}
.btn.sending .progress {
  animation-name: sendingPhone;
  animation-duration: 3s;
  animation-timing-function: ease-in-out;
  animation-iteration-count: 1;
}

.form__submit {
  position: relative;
  width: 100%;
  overflow: hidden;
}
.form__submit .text {
  position: relative;
  z-index: 1;
}

.input-block {
  margin: 0 0 16px;
  position: relative;
  display: block;
}

.input {
  position: relative;
  font-family: "Mulish", sans-serif;
  color: #2c2e35;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.3;
  padding: 0 20px;
  min-height: 60px;
  width: 100%;
  background: #f5f4f3;
  border: 1px solid #f5f4f3;
  outline: 0;
  border-radius: 8px;
  transition: 0.2s;
}
.input::placeholder {
  color: #afb3ba;
}
.input:focus {
  border-color: #20365a;
}
.input.redput {
  color: #ff0000;
  border-color: #ff0000;
  box-shadow: none;
}
.input.redput::-webkit-input-placeholder {
  color: #ff0000 !important;
}
.input.redput:-moz-placeholder {
  color: #ff0000 !important;
}
.input.redput::-moz-placeholder {
  color: #ff0000 !important;
}
.input.redput:-ms-input-placeholder {
  color: #ff0000 !important;
}
.input__checkbox {
  width: 16px;
  height: 16px;
  z-index: -1;
  position: absolute;
  top: -1px;
  background: transparent;
}
.input__checkbox:checked + span:before {
  background-color: #20365a;
  background-image: url("../images/icons/yes-light.svg");
}
.input__checkbox + span {
  position: relative;
  color: #9ca3af;
  font-size: 12px;
  padding-left: 24px;
  cursor: pointer;
  display: block;
}
.input__checkbox + span a:not([class]) {
  color: #2c2e35;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}
.input__checkbox + span a:not([class]):hover {
  color: #20365a;
  text-decoration-color: transparent;
}
.input__checkbox + span:before {
  content: "";
  width: 16px;
  height: 16px;
  background-color: #0a0a0a;
  background-repeat: no-repeat;
  background-position: center;
  background-size: 12px;
  border: 1px solid #1f1f1f;
  border-radius: 4px;
  position: absolute;
  top: -1px;
  left: 0;
  transition: 0.2s;
}

.popup {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999999999;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.8);
  visibility: hidden;
  transition: all 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 15px;
}
.popup__wrapper {
  display: flex;
  align-items: center;
  width: 100%;
  position: relative;
}
.popup__image {
  width: 50%;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
}
.popup__content {
  text-align: left;
  padding: 50px;
  width: 100%;
  position: relative;
  z-index: 2;
}
.popup__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}
.popup__bg::after {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.7);
}
.popup__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.popup__title {
  color: #2c2e35;
  font-size: 36px;
  line-height: 1.1;
  text-align: left;
  width: 100%;
}
.popup__subtitle {
  color: #2c2e35;
}
.popup__cars {
  display: flex;
  justify-content: space-between;
  border-bottom: 1px solid #000;
  margin-top: 77px;
}
.popup__car {
  color: rgba(255, 255, 255, 0.3);
  padding-bottom: 20px;
  cursor: pointer;
}
.popup__car.active {
  color: #fff;
  border-bottom: 7px solid rgba(0, 0, 0, 0.3);
}
.popup img.call {
  position: absolute;
  bottom: -160px;
  left: calc(50% - 160px);
}
.popup p.registrtop {
  padding-top: 50px;
  color: #20365a;
}
.popup img.registr {
  position: absolute;
  top: -120px;
  left: calc(50% - 220px);
  width: 440px;
}
.popup .body {
  max-width: 700px;
  margin: 0 auto;
  background-color: #fff;
  position: relative;
  top: 0;
  text-align: center;
  padding: 0;
  max-height: 80vh;
  overflow-y: scroll;
  -webkit-overflow-scrolling: touch;
}
.popup .body .close {
  position: absolute;
  width: 30px;
  height: 30px;
  top: 10px;
  right: 10px;
  cursor: pointer;
  transition: all 0.3s;
  background-color: #418fde;
  border-radius: 50%;
  z-index: 3;
}
.popup .body .close:before {
  content: "";
  display: block;
  position: absolute;
  width: 60%;
  height: 2px;
  background: #fff;
  border-radius: 5px;
  transform: rotate(45deg);
  top: 48%;
  left: 20%;
}
.popup .body .close:after {
  content: "";
  display: block;
  position: absolute;
  width: 60%;
  height: 2px;
  background: #fff;
  border-radius: 5px;
  transform: rotate(-45deg);
  top: 48%;
  left: 20%;
}
.popup .body .close:hover {
  opacity: 0.6;
}
.popup .body .content.tnxpopup {
  display: block;
  max-height: 90vh;
  height: auto;
  -webkit-overflow-scrolling: touch;
  padding: 0px;
  width: 100%;
  color: #2c2e35;
}
.popup .body .content.tnxpopup p {
  font-weight: 300;
  font-size: 16px;
  line-height: 1.4;
}
.popup .body .content.tnxpopup .btn:after {
  display: none;
}
.popup .body .content.tnxpopup p.bold {
  font-weight: 500;
  font-size: 24px;
  margin-bottom: 15px;
  text-transform: uppercase;
}
.popup .body .content.politicpopup {
  display: block;
  height: auto;
  padding: 40px;
  width: 100%;
  color: #2c2e35;
}
.popup .body .content.politicpopup h2 {
  font-size: 24px;
  margin-bottom: 20px;
}
.popup .body .content.politicpopup p {
  font-weight: 400;
  font-size: 16px;
  line-height: 1.3;
  margin: 16px 0;
}
.popup .body .content.politicpopup p + ul {
  margin-top: -12px;
  margin-bottom: 16px;
}
.popup .body .content.politicpopup ul {
  margin: 16px 0;
  padding-left: 16px;
}
.popup .body .content.politicpopup ul li {
  font-weight: 400;
  font-size: 16px;
  line-height: 1.3;
}
.popup .body .content.politicpopup a {
  word-wrap: break-word;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}
.popup .body .content.politicpopup a:hover {
  color: #418fde;
  text-decoration-color: transparent;
}
.popup .body .content.politicpopup > *:first-child {
  margin-top: 0;
}
.popup .body .content.politicpopup > *:last-child {
  margin-bottom: 0;
}
.popup .body .content {
  display: flex;
  padding: 0px;
  text-align: left;
}
.popup .body .content p {
  line-height: 1.2em;
}
.popup .body .content form {
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}
.popup .body .content form .form-elements {
  margin-top: 40px;
}
.popup .body .content form .btn {
  width: 338px;
  margin: 0;
  margin-left: 10px;
}
.popup .body .content form p.green {
  font-size: 18px;
  padding-top: 10px;
  line-height: 1.2em;
  font-weight: 400;
  color: #418fde;
  text-transform: none;
}
.popup.open {
  visibility: visible;
}
.circle-loader {
  border: 2px solid rgba(0, 0, 0, 0.2);
  border-left-color: #418fde;
  animation-name: loader-spin;
  animation-duration: 1s;
  animation-iteration-count: infinite;
  animation-timing-function: linear;
  position: relative;
  display: inline-block;
  vertical-align: top;
  border-radius: 50%;
  width: 20px;
  height: 20px;
  position: absolute;
  right: 10px;
  bottom: 14px;
  opacity: 0;
  transition: all 0.3s;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  z-index: 2;
}
.circle-loader:after {
  border-radius: 50%;
  width: 20px;
  height: 20px;
}
.circle-loader.checking {
  opacity: 1;
}

.load-complete {
  animation: none;
  border-color: #75c960;
  transition: border 500ms ease-out;
}
.load-complete.wrong {
  border-color: #ff0000;
  cursor: pointer;
}
.load-complete.wrong:before {
  content: "";
  display: block;
  height: 2px;
  width: 8px;
  background: #ff0000;
  display: block;
  position: absolute;
  top: 7px;
  left: 4px;
  transform: rotate(45deg);
  transform-origin: center;
}
.load-complete.wrong:after {
  content: "";
  display: block;
  height: 2px;
  width: 8px;
  background: #ff0000;
  display: block;
  position: absolute;
  top: 7px;
  left: 4px;
  transform: rotate(-45deg);
  transform-origin: center;
}

.checkmark {
  display: none;
}
.checkmark:after {
  opacity: 1;
  height: 11px;
  width: 7px;
  transform-origin: left top;
  border-right: 2px solid #75c960;
  border-top: 2px solid #75c960;
  content: "";
  left: 2px;
  top: 8px;
  position: absolute;
}
.checkmark.draw:after {
  animation-duration: 800ms;
  animation-timing-function: ease;
  animation-name: checkmark;
  transform: scaleX(-1) rotate(135deg);
}
.checkmark.checked {
  display: block;
}

@keyframes loader-spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes checkmark {
  0% {
    height: 0;
    width: 0;
    opacity: 1;
  }
  20% {
    height: 0;
    width: 7px;
    opacity: 1;
  }
  40% {
    height: 11px;
    width: 7px;
    opacity: 1;
  }
  100% {
    height: 11px;
    width: 7px;
    opacity: 1;
  }
}
@keyframes sendingPhone {
  0% {
    width: 0;
  }
  20% {
    width: 10%;
  }
  40% {
    width: 30%;
  }
  50% {
    width: 45%;
  }
  55% {
    width: 50%;
  }
  65% {
    width: 80%;
  }
  100% {
    width: 100%;
  }
}
.btngreen {
  background-color: #418fde;
}

.success {
  width: 60%;
  margin: 40px auto 0;
  text-align: center;
  padding: 10px;
  cursor: pointer;
  display: block;
}
.success svg {
  width: 35px;
  height: 28px;
}
.success svg path {
  fill: #fff;
}

@media only screen and (max-width: 1400px) {
  .popup__content {
    padding-left: 50px;
    padding-right: 50px;
  }
}
@media only screen and (max-width: 1200px) {
  .popup__wrapper {
    display: block;
  }
  .popup__image {
    height: 384px;
    width: 100%;
  }
  .popup__content {
    width: 100%;
    padding: 70px 30px;
  }
}
@media only screen and (max-width: 760px) {
  .popup__image {
    height: 180px;
  }
  .popup__content {
    padding: 19px;
  }
  .popup__title {
    font-size: 24px;
  }
  .popup__cars {
    margin-top: 24px;
  }
  .popup__car {
    font-size: 14px;
    padding-bottom: 5px;
  }
  .popup__car.active {
    border-bottom: 4px solid rgba(0, 0, 0, 0.3);
  }
  .popup .body .content form .form-elements {
    margin-top: 21px;
  }
  .popup .body .content form .form-elements .btn {
    width: calc(100% - 30px);
    margin: 0 auto;
  }
  .popup .body .content.politicpopup {
    padding: 24px;
  }
}
.counter {
  width: 100%;
  padding: 10px;
  color: #222;
  background-color: #fff;
  border-radius: 10px;
}
.counter__wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  flex-wrap: nowrap;
  white-space: nowrap;
}
.counter__title {
  font-size: 20px;
  width: 100%;
  margin-bottom: 10px;
}
.counter .cell {
  text-align: center;
  width: auto;
  position: relative;
  flex: 0 0 auto;
}
.counter .sub {
  display: block;
  font-size: 14px;
  font-weight: 400;
  margin-top: 5px;
}
.counter .cell__digits {
  display: flex;
  align-items: center;
  gap: 6px;
  overflow: hidden;
}
.counter .flipCounter {
  position: relative;
  width: 42px;
  height: 48px;
  perspective: 4em;
  perspective-origin: 50% 50%;
}
.counter .upperCard,
.counter .lowerCard {
  display: flex;
  position: relative;
  justify-content: center;
  width: 100%;
  height: 50%;
  overflow: hidden;
  color: #fff;
  background: #20365a;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.2);
}
.counter .upperCard span,
.counter .lowerCard span {
  display: block;
  font-size: 32px;
  line-height: 1;
  font-weight: 700;
  letter-spacing: 0.04em;
}
.counter .upperCard {
  align-items: flex-end;
  border-bottom: 0.5px solid rgba(0, 0, 0, 0.12);
  border-top-left-radius: 8px;
  border-top-right-radius: 8px;
}
.counter .upperCard span {
  transform: translateY(45%);
}
.counter .lowerCard {
  align-items: flex-start;
  border-top: 0.5px solid rgba(255, 255, 255, 0.15);
  border-bottom-left-radius: 8px;
  border-bottom-right-radius: 8px;
  background: #20365a;
}
.counter .lowerCard span {
  transform: translateY(-55%);
}
.counter .flipCard {
  display: flex;
  justify-content: center;
  position: absolute;
  left: 0;
  width: 100%;
  height: 50%;
  overflow: hidden;
  color: #fff;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}
.counter .flipCard span {
  display: block;
  font-size: 32px;
  line-height: 1;
  font-weight: 700;
  letter-spacing: 0.04em;
}
.counter .flipCard.unfold {
  top: 50%;
  align-items: flex-start;
  transform-origin: 50% 0%;
  transform: rotateX(180deg);
  background: #20365a;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-top: 0.5px solid rgba(255, 255, 255, 0.15);
  border-bottom-left-radius: 8px;
  border-bottom-right-radius: 8px;
}
.counter .flipCard.unfold span {
  transform: translateY(-55%);
}
.counter .flipCard.fold {
  top: 0;
  align-items: flex-end;
  transform-origin: 50% 100%;
  transform: rotateX(0deg);
  background: #20365a;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-bottom: 0.5px solid rgba(0, 0, 0, 0.12);
  border-top-left-radius: 8px;
  border-top-right-radius: 8px;
}
.counter .flipCard.fold span {
  transform: translateY(45%);
}
.counter .flipCounter > .flipCard:nth-child(3) {
  z-index: 3;
}
.counter .flipCounter > .flipCard:nth-child(4) {
  z-index: 2;
}
.counter .fold {
  animation: fold 0.6s cubic-bezier(0.455, 0.03, 0.515, 0.955) 0s 1 normal forwards;
  transform-style: preserve-3d;
}
.counter .unfold {
  animation: unfold 0.6s cubic-bezier(0.455, 0.03, 0.515, 0.955) 0s 1 normal forwards;
  transform-style: preserve-3d;
}

@keyframes fold {
  0% {
    transform: rotateX(0deg);
  }
  100% {
    transform: rotateX(-180deg);
  }
}
@keyframes unfold {
  0% {
    transform: rotateX(180deg);
  }
  100% {
    transform: rotateX(0deg);
  }
}
@media only screen and (max-width: 1024px) {
  .counter .flipCounter {
    width: 30px;
  }
  .counter .upperCard span,
  .counter .lowerCard span {
    font-size: 20px;
  }
  .counter .flipCard span {
    font-size: 20px;
  }
}
@media only screen and (max-width: 767px) {
  .counter {
    justify-content: center;
  }
  .counter__wrapper {
    gap: 8px;
    justify-content: center;
  }
  .counter .cell {
    width: auto;
    text-align: center;
  }
  .counter .sub {
    font-size: 10px;
    margin-top: 3px;
  }
  .counter .cell__digits {
    gap: 4px;
  }
  .counter .flipCounter {
    width: 30px;
    height: 35px;
  }
  .counter .upperCard span,
  .counter .lowerCard span {
    font-size: 18px;
  }
  .counter .flipCard span {
    font-size: 18px;
  }
}
.header {
  width: 100%;
  font-size: 18px;
  background: #fff;
  position: fixed;
  z-index: 100;
  padding: 20px 0;
  border-bottom: 1px solid #e6e3e2;
}
.header__wrapper {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  position: relative;
  gap: 15px;
}
.header__logo {
  display: block;
  width: 200px;
  min-width: 200px;
  transition: 0.3s;
}
.header__logo:hover {
  scale: 1.05;
  filter: drop-shadow(2px 2px 3px #777);
}
.header__logo img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}
.header__dealer {
  display: flex;
  align-items: center;
}
.header__dealer-name {
  color: #418fde;
  font-size: 32px;
  font-weight: 700;
}
.header__dealer-text {
  font-size: 14px;
  padding-left: 16px;
  margin-left: 16px;
  border-left: 1px solid #e6e3e2;
}
.header__nav {
  display: flex;
  align-items: center;
  gap: 18px;
}
.header__nav .header__button {
  display: none;
}
.header__nav-item {
  position: relative;
  text-decoration: none;
}
.header__nav-item:hover {
  text-shadow: 1px 1px 2px #777;
  filter: brightness(1.2);
  scale: 1.05;
}
.header__nav-item:hover .header__nav-text:after {
  width: 100%;
}
.header__nav-text {
  color: #222222;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.4;
  text-decoration: none;
  padding: 10px 0;
}
.header__nav-text:after {
  content: "";
  width: 0%;
  height: 2px;
  background: #418fde;
  position: absolute;
  bottom: 0.2em;
  right: 0%;
  transition: 0.6s;
}
.header__nav-back {
  width: 0%;
  height: 98%;
  position: absolute;
  top: 1px;
  left: 1px;
  background-color: #418fde;
  z-index: 1;
  transition: 0.6s linear;
}
.header__action {
  display: flex;
  align-items: center;
  gap: 20px;
}
.header__phone-wrap {
  display: flex;
  align-items: center;
  gap: 18px;
  color: #222222;
}
.header__phone-wrap:hover {
  scale: 1.05;
  text-shadow: 1px 1px 2px #777;
}
.header__phone-wrap:hover .header__logo-icon {
  animation: shaking 0.7s infinite;
}
.header__phone a {
  color: #222222;
  font-size: 20px;
  font-weight: 500;
  text-decoration: none;
}
.header__button .btn {
  min-height: 40px;
  padding: 0 20px;
}
.header__burger {
  display: none;
  width: 40px;
  height: 40px;
  padding: 0;
  border: 1px solid #222222;
  border-radius: 50%;
  background-color: transparent;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  flex-shrink: 0;
  transition: 0.3s ease;
}
.header__burger span {
  display: block;
  width: 18px;
  height: 2px;
  background-color: #222222;
  transition: 0.3s ease;
}
.header__burger.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.header__burger.active span:nth-child(2) {
  opacity: 0;
}
.header__burger.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

@keyframes shaking {
  0% {
    rotate: 0deg;
  }
  25% {
    rotate: -15deg;
  }
  75% {
    rotate: 15deg;
  }
  100% {
    rotate: 0deg;
  }
}
@media only screen and (max-width: 1600px) {
  .header__dealer {
    width: calc(100% - 220px);
  }
  .header__action {
    order: 5;
  }
  .header__nav {
    order: 4;
  }
}
@media only screen and (max-width: 992px) {
  .header__wrapper {
    flex-wrap: wrap;
    gap: 16px;
  }
  .header__burger {
    display: inline-flex;
    order: 4;
  }
  .header__nav {
    opacity: 0;
    visibility: hidden;
    position: fixed;
    left: 0;
    top: 141px;
    height: auto;
    width: 100%;
    background: #ffffff;
    display: block;
    transition: 0.3s ease;
    display: block;
    z-index: 8;
    padding: 12px 20px;
    border: none;
    max-height: calc(100% - 118px - 12px);
    overflow: auto;
  }
  .header__nav::-webkit-scrollbar {
    display: none;
  }
  .header__nav.active {
    opacity: 1;
    visibility: visible;
  }
  .header__action {
    order: 3;
  }
  .header__phone-wrap {
    gap: 8px;
    order: 1;
  }
  .header__phone a {
    font-size: 16px;
  }
}
@media only screen and (max-width: 576px) {
  .header {
    padding: 12px 0;
  }
  .header__wrapper {
    gap: 8px 16px;
  }
  .header__logo {
    width: 130px;
    min-width: 130px;
  }
  .header__dealer-name {
    font-size: 20px;
  }
  .header__dealer-text {
    font-size: 11px;
    border-width: 1px;
    padding-left: 4px;
    margin-left: 4px;
  }
  .header__action .header__button {
    display: none;
  }
  .header__nav {
    top: 104px;
  }
  .header__nav .header__button {
    display: block;
  }
  .header__button {
    width: 100%;
    padding-top: 12px;
    margin-top: 12px;
    border-top: 1px solid #e6e3e2;
  }
  .header__button .btn {
    width: 100%;
  }
}
.main {
  margin-top: 110px;
}
.main__wrapper {
  display: flex;
  align-items: stretch;
  gap: 30px;
  height: 100%;
  position: relative;
}
.main__left {
  width: 66.6%;
  aspect-ratio: 3/2;
  position: relative;
  border-radius: 20px;
  overflow: hidden;
}
.main__left:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 80%;
  background: linear-gradient(180deg, rgba(10, 10, 10, 0.7), transparent);
  z-index: 1;
}
.main__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  mask-image: url("../../static/images/icons/mask.svg");
  mask-repeat: no-repeat;
  mask-size: cover;
  mask-position: bottom right;
}
.main__content {
  position: absolute;
  left: 0;
  top: 0;
  z-index: 2;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  color: #fff;
  padding: 20px;
}
.main__title {
  font-size: 48px;
  text-transform: uppercase;
}
.main__title span {
  color: #418fde;
}
.main__subtitle {
  color: #fff;
  font-size: 24px;
  font-weight: 500;
  margin-top: 20px;
}
.main__button .btn {
  min-width: 330px;
}
.main__content-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  margin-top: auto;
}
.main__content-bottom-desktop {
  display: flex;
}
.main__content-bottom-mobile {
  display: none;
}
.main__content-benefit {
  display: flex;
  align-items: center;
  gap: 15px;
}
.main__content-benefit-text {
  color: #20365a;
  font-size: 20px;
}
.main__right {
  display: flex;
  flex-direction: column;
  gap: 30px;
  width: 33.3%;
  height: stretch;
}
.main__video {
  width: 100%;
  aspect-ratio: 3/2;
  border-radius: 20px;
  overflow: hidden;
  position: relative;
}
.main__video video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: relative;
}
.main__video-content {
  position: absolute;
  top: 15px;
  left: 15px;
  display: flex;
  gap: 10px;
  text-transform: uppercase;
  background-color: #fff;
  padding: 10px 15px;
  border-radius: 10px;
}
.main__video-content-mobile {
  display: none;
}
.main__timer {
  flex-grow: 1;
  font-size: 20px;
  padding: 15px 20px;
  display: flex;
  flex-direction: column;
  aspect-ratio: 3/2;
  width: 100%;
  border-radius: 20px;
  overflow: hidden;
  position: relative;
}
.main__timer img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.main__promo-image {
  position: absolute;
  left: 0;
  top: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
}
.main__promo-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.main__promo {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.main__promo-text {
  font-size: 18px;
  font-weight: 500;
  color: #fff;
  text-align: center;
  text-transform: uppercase;
  text-shadow: 0px 0px 7px #000, 0px 0px 15px #000, 1px 1px 3px #000000;
}
.main__promo-text span {
  color: #418fde;
}

@media only screen and (max-width: 1600px) {
  .main {
    margin-top: 166px;
  }
}
@media only screen and (max-width: 1400px) {
  .main__wrapper {
    flex-direction: column;
  }
  .main__left {
    width: 100%;
  }
  .main__right {
    width: 100%;
    flex-direction: row;
  }
}
@media only screen and (max-width: 996px) {
  .main__title {
    font-size: 36px;
  }
  .main__subtitlte {
    font-size: 20px;
  }
  .main__button .btn {
    min-width: 1px;
  }
}
@media only screen and (max-width: 767px) {
  .main__wrapper {
    gap: 15px;
  }
  .main__content {
    justify-content: space-between;
  }
  .main__left {
    aspect-ratio: 1200/1600;
  }
  .main__image {
    object-position: 70%;
    mask-image: url("../../static/images/icons/mask-mob.svg");
  }
  .main__video-content-mobile {
    top: initial;
    left: initial;
    right: 15%;
    bottom: 4%;
    transform: translate(0%, 0%);
    display: flex;
    background-color: transparent;
    align-items: center;
    padding: 0;
  }
  .main__right {
    flex-direction: column;
  }
  .main__video {
    display: none;
  }
  .main__video-text {
    color: #222222;
  }
  .main__content-bottom-desktop {
    display: none;
  }
  .main__content-bottom-mobile {
    display: flex;
  }
  .main__content-benefit {
    display: none;
  }
  .main__button {
    width: 100%;
    display: flex;
    justify-content: center;
  }
  .main__button .btn {
    width: 100%;
  }
  .main__timer {
    aspect-ratio: 1200/900;
  }
}
@media only screen and (max-width: 576px) {
  .main {
    margin-top: 120px;
  }
  .main__title {
    font-size: 28px;
  }
  .main__subtitle {
    font-size: 18px;
    margin-top: 12px;
  }
  .main__video-content-mobile {
    right: 5%;
    bottom: 2%;
  }
  .main__video-icon {
    width: 20px;
    height: 20px;
  }
  .main__video-text {
    font-size: 12px;
  }
}
.chat__benefits {
  padding: 30px;
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(198, 32, 44, 0.9)), to(#941a23)), #941a23;
  background: -o-linear-gradient(top, rgba(198, 32, 44, 0.9) 0%, #941a23 100%), #941a23;
  background: linear-gradient(180deg, rgba(198, 32, 44, 0.9) 0%, #941a23 100%), #941a23;
  -webkit-box-shadow: 0px 4px 10px rgba(38, 36, 60, 0.08);
  box-shadow: 0px 4px 10px rgba(38, 36, 60, 0.08);
  border-radius: 24px;
  margin-top: 40px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px 10px;
}
.chat__benefit {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
  grid-template-columns: repeat(2, 1fr);
}
.chat__benefit-icon {
  margin-right: 10px;
  width: 36px;
  height: 36px;
}
.chat__benefit-text {
  color: #fff;
  font-size: 18px;
}

@media only screen and (max-width: 996px) {
  .chat__benefits {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media only screen and (max-width: 767px) {
  .chat__benefits {
    grid-template-columns: repeat(1, 1fr);
  }
  .chat__benefit-text {
    font-size: 14px;
  }
}
.marquee {
  position: relative;
  height: 65px;
  margin: 30px 0;
}
.marquee__wrap {
  position: relative;
  display: flex;
  overflow: hidden;
  user-select: none;
  gap: 40px;
  background: #222222;
  color: white;
  padding: 12px 0;
  height: 100%;
}
.marquee__panel {
  flex-shrink: 0;
  display: flex;
  gap: 40px;
  counter-reset: item;
  justify-content: space-around;
  margin-bottom: 0 !important;
  animation: scroll 27s linear infinite;
}
.marquee__panel-text {
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.1s ease-in-out;
  font-size: 18px;
  line-height: 1;
  white-space: nowrap;
  position: relative;
}
.marquee__panel-text::before {
  content: "";
  width: 13px;
  height: 13px;
  background-image: url("../../static/images/icons/marquee-point.svg");
  background-repeat: no-repeat;
  position: absolute;
  top: 50%;
  left: -25px;
  transform: translateY(-50%);
}

@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(calc(-100% - 20px));
  }
}
.director {
  padding: 28px 0;
  background: #d9e8eb;
}
.director__row {
  display: flex;
  align-items: center;
  justify-content: center;
}
.director__img {
  width: 100%;
}
.director__img--wrap {
  width: 96px;
  height: 96px;
  min-width: 96px;
  margin-right: 40px;
  overflow: hidden;
  border-radius: 50%;
  background: #fff;
}
.director__info {
  max-width: 800px;
}
.director__text {
  font-weight: 400;
  font-size: 16px;
  color: #000;
}

@media (max-width: 767px) {
  .director__row {
    display: block;
  }
  .director__img--wrap {
    margin: 0 0 24px;
  }
}
.benefits__special-content {
  display: none;
  align-items: center;
  gap: 25px;
  margin-bottom: 30px;
}
.benefits__special-content img {
  height: 50px;
  max-width: 50px;
  width: 100%;
  object-fit: cover;
}
.benefits__special-content-title {
  font-size: 20px;
  line-height: 1.2;
  text-transform: uppercase;
}
.benefits__wrapper {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}
.benefits__item {
  position: relative;
  min-width: 237px;
  flex: 1;
  cursor: pointer;
  border-radius: 15px;
}
.benefits__item:hover .benefits__content {
  transform: rotate(10deg);
  background: rgba(0, 0, 0, 0.8);
  color: #fff;
}
.benefits__item:hover .benefits__image {
  transform: rotate(-10deg);
}
.benefits__footer {
  margin-top: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}
.benefits__footer span {
  font-size: 16px;
}
.benefits__title {
  font-size: 16px;
  text-transform: uppercase;
}
.benefits__content {
  padding: 16px;
  background-color: #fff;
  border: 1px dashed #9a9b9b;
  border-radius: 15px;
  height: 100%;
  transform-origin: center bottom;
  transition: 0.1s ease-in;
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: relative;
  z-index: 2;
}
.benefits__content-top {
  display: flex;
  align-items: center;
  gap: 10px;
}
.benefits__icon {
  background: #418fde;
  padding: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  max-width: 40px;
  width: 100%;
  height: 40px;
}
.benefits__icon img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.benefits__image {
  position: absolute;
  z-index: 1;
  bottom: 0;
  width: 100%;
  height: 100%;
  border-radius: inherit;
  overflow: hidden;
  transition: 0.1s ease-in;
  border-radius: 15px;
}
.benefits__image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: bottom;
}

@media only screen and (max-width: 996px) {
  .benefits__special-content {
    display: flex;
  }
  .benefits__wrapper {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  .benefits__item:hover .benefits__content {
    transform: none;
  }
  .benefits__item:hover .benefits__image {
    transform: none;
  }
  .benefits__item:last-child {
    grid-area: 2/1/3/3;
  }
  .benefits__title {
    font-size: 14px;
  }
}
@media only screen and (max-width: 767px) {
  .benefits__wrapper {
    gap: 10px;
  }
  .benefits__item {
    height: 130px;
  }
  .benefits__content > img {
    position: absolute;
    left: 30px;
    top: 40px;
  }
}
@media only screen and (max-width: 767px) {
  .benefits__wrapper {
    grid-template-columns: repeat(1, 1fr);
  }
  .benefits__item:last-child {
    grid-area: initial;
  }
  .benefits__content-top {
    flex-direction: column;
    align-items: flex-start;
  }
  .benefits__icon {
    padding: 5px;
    max-width: 30px;
    height: 30px;
  }
  .benefits__title {
    font-size: 12px;
  }
}
.leasing {
  position: relative;
  overflow: hidden;
}
.leasing__wrapper {
  display: flex;
  align-items: center;
  gap: 30px;
  justify-content: space-between;
}
.leasing__bg {
  position: relative;
  width: 50%;
  z-index: 1;
  border-radius: 28px;
  overflow: hidden;
}
.leasing__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}
.leasing__content {
  width: 50%;
  position: relative;
  z-index: 2;
  padding: 30px;
  border-radius: 28px;
  background: #ffffff;
  border-bottom: none;
}
.leasing__title {
  font-size: 58px;
  color: #222222;
  text-align: center;
  text-transform: uppercase;
}
.leasing__subtitle {
  margin-top: 20px;
  font-size: 26px;
  line-height: 1.2;
  text-align: center;
  color: #fff;
}
.leasing__list {
  margin-top: 40px;
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 15px;
}
.leasing__item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 20px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.15);
}
.leasing__icon {
  flex: 0 0 40px;
  width: 40px;
  height: 40px;
  border-radius: 5px;
  background: #418fde;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 5px;
}
.leasing__icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.leasing__item-content {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.leasing__item-title {
  font-size: 16px;
  line-height: 1.2;
  color: #222222;
  text-transform: uppercase;
}
.leasing__item-text {
  font-size: 14px;
  line-height: 1.45;
  color: rgba(34, 34, 34, 0.88);
}
.leasing__button {
  margin-top: 40px;
  display: flex;
  justify-content: center;
}
.leasing__button .btn {
  min-width: 320px;
}
.leasing__button-desktop {
  display: flex;
}
.leasing__button-mobile {
  display: none;
}

@media only screen and (max-width: 1200px) {
  .leasing__wrapper {
    padding: 0;
    flex-direction: column;
    border-radius: 0;
    gap: 0;
  }
  .leasing__content {
    width: 100%;
    padding: 0;
    border-radius: 0;
  }
  .leasing__bg {
    width: 100%;
  }
  .leasing__title {
    font-size: 56px;
  }
  .leasing__subtitle {
    font-size: 22px;
  }
  .leasing__list {
    gap: 18px;
    grid-template-columns: repeat(1, 1fr);
  }
  .leasing__item {
    height: auto;
  }
  .leasing__item:last-of-type {
    border-radius: 10px 10px 0 0;
  }
  .leasing__button-desktop {
    display: none;
  }
  .leasing__button-mobile {
    display: flex;
  }
}
@media only screen and (max-width: 767px) {
  .leasing__bg {
    border-radius: 0 0 20px 20px;
  }
  .leasing__title {
    font-size: 34px;
  }
  .leasing__subtitle {
    margin-top: 16px;
    font-size: 20px;
  }
  .leasing__list {
    margin-top: 28px;
    grid-template-columns: 1fr;
  }
  .leasing__item {
    padding: 18px;
    min-height: auto;
    gap: 14px;
  }
  .leasing__icon {
    flex-basis: 58px;
    width: 58px;
    height: 58px;
    border-radius: 14px;
  }
  .leasing__icon img {
    width: 30px;
    height: 30px;
  }
  .leasing__item-title {
    font-size: 16px;
  }
  .leasing__item-text {
    font-size: 15px;
  }
  .leasing__button {
    margin-top: 30px;
  }
  .leasing__button .btn {
    width: calc(100% - 40px);
    min-width: 0;
    margin: 0 auto;
  }
}
.cars h2 {
  font-size: 50px;
  text-align: left;
  text-transform: uppercase;
  margin-bottom: 40px;
}
.cars__anchors {
  margin-bottom: 32px;
  position: relative;
}
.cars__anchors-wrapper {
  overflow: hidden;
}
.cars__anchors-card {
  max-width: 370px;
  border: 1px dashed #222222;
  border-radius: 15px;
  height: auto;
}
.cars__anchors-card:hover .cars__anchors-img--bg {
  opacity: 1;
}
.cars__anchors-card:hover .cars__anchors-name {
  color: #ffffff;
}
.cars__anchors .cars__anchors-card--more {
  background-color: #418fde;
}
.cars__anchors-inner {
  color: #222222;
  text-decoration: none;
  transition: 0.2s;
  cursor: pointer;
  display: flex;
  gap: 10px;
  overflow: hidden;
  position: relative;
  height: 100%;
  border-radius: 15px;
}
.cars__anchors-img--wrap {
  position: relative;
  max-width: 50%;
  width: 100%;
  height: auto;
  display: flex;
  align-items: center;
  padding: 35px 0;
  z-index: 1;
}
.cars__anchors-img--wrap img {
  width: 100%;
  height: auto;
  object-fit: cover;
}
.cars__anchors-img--bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  transition: 0.3s;
  opacity: 0;
  pointer-events: none;
}
.cars__anchors-img--bg img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.cars__anchors-name {
  font-weight: 700;
  font-size: 25px;
  text-align: left;
  padding: 6px;
  display: flex;
  justify-content: center;
  flex-direction: column;
  position: relative;
  z-index: 3;
  transition: 0.3s;
}
.cars__anchors-name span {
  font-size: 22px;
  font-weight: 500;
}
.cars__anchors-arrow {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 40px;
  height: 40px;
  z-index: 3;
  background-color: #222222;
  padding: 12px;
  border-radius: 50%;
}
.cars__anchors-arrow img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  transform: rotate(270deg);
}
.cars__anchors-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  z-index: 5;
  cursor: pointer;
  transition: 0.3s ease;
}
.cars__anchors-nav::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 12px;
  height: 12px;
  border-top: 2px solid #418fde;
  border-right: 2px solid #418fde;
  transform: translate(-65%, -50%) rotate(45deg);
}
.cars__anchors-nav:hover::after {
  border-color: #7f7f7f;
}
.cars__anchors-nav.swiper-button-disabled {
  opacity: 0.35;
  pointer-events: none;
}
.cars__anchors-nav--prev {
  left: -50px;
  right: initial;
}
.cars__anchors-nav--prev::after {
  transform: translate(-35%, -50%) rotate(-135deg);
}
.cars__anchors-nav--next {
  right: -50px;
}
.cars__bg-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}
.cars__bg-image img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.cars__bg-image img.active {
  opacity: 1;
}
.cars__item {
  margin-bottom: 65px;
  position: relative;
  padding: 20px;
}
.cars__item-border {
  width: 100%;
}
.cars__item-top {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 40px;
}
.cars__name-benefit {
  padding: 10px;
  font-size: 18px;
  background: #418fde;
  color: #fff;
  border-radius: 13px;
  width: max-content;
}
.cars__marker-new {
  position: absolute;
  top: -20px;
  left: 15px;
  font-size: 18px;
  text-transform: uppercase;
  background-color: #418fde;
  border-radius: 15px;
  padding: 10px 15px;
  color: #fff;
}
.cars__label-wrapper {
  position: absolute;
  right: -10px;
  top: -20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 160px;
  height: 160px;
  font-size: 16px;
  color: #fff;
  background-color: #222;
  border-radius: 5em;
  transition: 0.3s;
}
.cars__label-circle {
  position: absolute;
  width: calc(100% - 2em);
  display: block;
  overflow: visible;
  font-size: 22px;
  fill: #fff;
  rotate: 45deg;
}
.cars__label-circle path {
  fill: none;
}
.cars__label-text {
  text-align: center;
  font-size: 16px;
  font-weight: 500;
}
.cars__label-amount {
  font-size: 24px;
  color: #418fde;
  font-weight: 500;
}
.cars__item-wrapper {
  border: 5px solid #fff;
  padding: 20px;
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
  position: relative;
  border-radius: 30px;
}
.cars__item-center {
  display: flex;
  align-items: center;
  width: 100%;
  justify-content: space-between;
}
.cars__item-bottom {
  display: flex;
  align-items: flex-start;
  width: 100%;
  justify-content: space-between;
  margin-bottom: -45px;
}
.cars__item-bottom--not-gallery {
  margin-bottom: 0;
}
.cars__content {
  width: 350px;
  flex-shrink: 0;
}
.cars__name {
  font-size: 54px;
  position: relative;
  z-index: 1;
  width: 100%;
}
.cars__name--small {
  font-size: 32px;
}
.cars__benefits {
  background-color: rgba(22, 22, 22, 0.8980392157);
  padding: 20px 25px;
  border-radius: 12px;
  color: #fff;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.cars__benefits-mobile {
  display: none;
}
.cars__price {
  font-size: 20px;
  line-height: 1;
  text-transform: uppercase;
  width: calc(50% - 6px);
}
.cars__price b {
  display: block;
  color: #418fde;
  font-size: 1.8em;
  line-height: 1;
}
.cars__prices {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 20px;
}
.cars__benefit {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
}
.cars__benefit span {
  font-size: 12px;
  text-transform: uppercase;
}
.cars__benefit img {
  max-width: 25px;
  width: 100%;
  height: 25px;
  padding: 3px;
  border-radius: 4px;
  background: #418fde;
}
.cars__benefit.-hot- {
  color: #a6192e;
  font-weight: 700;
}
.cars__benefit b {
  color: #418fde;
  font-weight: 700;
}
.cars__benefit:last-child {
  margin: 0;
}
.cars__buttons {
  display: flex;
  align-items: center;
  gap: 30px;
}
.cars__gallery-thumbs {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  width: 100%;
  max-width: 430px;
}
.cars__gallery-thumb {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  cursor: pointer;
  background: rgba(255, 255, 255, 0.8);
  aspect-ratio: 1/1;
}
.cars__gallery-thumb img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cars__gallery-thumb-count {
  position: absolute;
  right: 8px;
  bottom: 8px;
  font-size: 12px;
  line-height: 1;
  color: #fff;
  background: rgba(0, 0, 0, 0.65);
  border-radius: 999px;
  padding: 6px 8px;
}
.cars__toggle {
  align-self: center;
  display: flex;
  gap: 40px;
  font-size: 20px;
  border-radius: 22px;
  padding: 15px 20px;
  position: relative;
  overflow: hidden;
  background-color: #fff;
  margin-left: 100px;
}
.cars__toggle.cars__toggle-right:after {
  left: 50%;
}
.cars__toggle:after {
  content: "";
  position: absolute;
  left: 0%;
  top: 0;
  z-index: 0;
  width: 50%;
  height: 100%;
  background-color: #161616;
  border-radius: 22px;
  transition: 0.3s;
}
.cars__toggle-mobile {
  display: none;
}
.cars__btn-toggle {
  padding: 0;
  border-radius: 0;
  border: none;
  background: transparent;
  cursor: pointer;
  transition: 0.3s ease;
  font-size: 20px;
  color: #000;
  position: relative;
  z-index: 1;
}
.cars__btn-toggle.active {
  color: #fff;
}
.cars__image {
  width: auto;
  position: relative;
}
.cars__tips {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.cars__tips .cars__tooltip {
  position: absolute;
  transform: translate(-50%, -50%);
  pointer-events: auto;
  z-index: 5;
  text-align: left;
  max-width: 260px;
}
.cars__tips .cars__tooltip:hover {
  z-index: 6;
}
.cars__tips .cars__tooltip.active .cars__tooltip-dot {
  animation-duration: 1.3s;
}
.cars__tips .cars__tooltip .cars__tooltip-dot {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background-color: #fff;
  border: 1px solid #f4f4f4;
  border-right-color: transparent;
  box-sizing: content-box;
  outline: 1px solid #222222;
  outline-offset: -2px;
  animation: tooltip-blink 1.5s ease-in-out infinite;
  cursor: pointer;
  position: relative;
}
.cars__tips .cars__tooltip .cars__tooltip-text {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  min-width: 180px;
  max-width: 260px;
  background: #fff;
  color: #222222;
  border-radius: 18px;
  padding: 14px 16px;
  font-size: 12px;
  line-height: 1.5;
  text-align: center;
  box-shadow: 0 16px 35px rgba(0, 0, 0, 0.18);
  white-space: normal;
  z-index: 6;
  pointer-events: auto;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.18s ease, visibility 0.18s ease;
}
.cars__tips .cars__tooltip:hover .cars__tooltip-text {
  opacity: 1;
  visibility: visible;
}
.cars__tips .cars__tooltip .cars__tooltip-title {
  font-weight: 700;
  margin-bottom: 8px;
}
.cars__slider {
  width: 800px;
  flex-shrink: 0;
  margin: 0;
}
.cars__slide {
  width: 100%;
}
.cars__slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cars__colors {
  display: block;
  z-index: 5;
}
.cars__color {
  display: block;
  width: 30px;
  height: 30px;
  cursor: pointer;
  border-radius: 30px;
  margin-bottom: 10px;
  transition: 0.3s ease;
  border: 1px solid rgba(129, 129, 129, 0.6470588235);
}
.cars__color:hover {
  box-shadow: rgb(85, 85, 85) 2px 2px 4px;
}
.cars__color.active {
  height: 45px;
}
.cars__item-interior .cars__image {
  opacity: 0;
  pointer-events: none;
}
.cars__item-interior .cars__colors {
  opacity: 0;
  pointer-events: none;
}
.cars__item-interior .cars__name {
  color: #fff;
}
.cars__item-interior .cars__button {
  width: 100%;
}
.cars__item-interior .cars__button .btn-outline {
  border-color: #ffffff;
  color: #ffffff;
  background-color: transparent;
  border: 1px solid #ffffff;
}
.cars__item-interior .cars__button .btn--accent {
  color: #ffffff;
}

@media only screen and (max-width: 1920px) {
  .cars .cars__anchors-nav--prev {
    left: -30px;
  }
  .cars .cars__anchors-nav--next {
    right: -30px;
  }
}
@media only screen and (max-width: 1200px) {
  .cars__item-wrapper {
    border: none;
    padding: 0;
  }
  .cars__toggle {
    margin: 0;
  }
  .cars__item-border {
    border: 5px solid #fff;
    border-radius: 30px;
    padding: 20px;
  }
  .cars__item-center {
    flex-direction: column;
  }
  .cars__benefits-desktop {
    display: none;
  }
  .cars__benefits-mobile {
    display: flex;
    width: 100%;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    order: 2;
  }
  .cars__colors {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
  }
  .cars__color {
    margin-bottom: 0;
  }
  .cars__color.active {
    width: 45px;
    height: 30px;
  }
  .cars__item-bottom {
    flex-direction: column;
    gap: 20px;
    margin-bottom: 0;
    margin-top: -10px;
  }
  .cars__buttons {
    order: 3;
  }
  .cars__gallery-thumbs {
    order: 1;
    margin: 0 auto;
  }
  .cars__toggle-desktop {
    display: none;
  }
  .cars__toggle-mobile {
    display: flex;
  }
  .cars__tips {
    display: none;
  }
}
@media only screen and (max-width: 996px) {
  .cars h2 {
    font-size: 26px;
    margin-bottom: 15px;
  }
  .cars__buttons {
    flex-wrap: wrap;
    margin: 0 auto;
    gap: 15px;
  }
  .cars__button {
    width: 100%;
  }
  .cars__button .btn {
    width: 100%;
  }
  .cars__name {
    font-size: 32px;
  }
  .cars__name-benefit {
    padding: 5px;
    font-size: 12px;
    border-radius: 5px;
  }
  .cars__slider {
    width: 450px;
  }
  .cars__marker-new {
    top: -12px;
    left: 10px;
    font-size: 14px;
    border-radius: 5px;
    padding: 5px 8px;
  }
  .cars__label-wrapper {
    right: -10px;
    top: -20px;
    width: 100px;
    height: 100px;
    font-size: 14px;
  }
  .cars__label-circle {
    font-size: 18px;
  }
  .cars__label-text {
    font-size: 12px;
    margin-top: 18px;
  }
  .cars__label-amount {
    font-size: 18px;
  }
}
@media only screen and (max-width: 767px) {
  .cars__color {
    width: 20px;
    height: 20px;
  }
  .cars__color.active {
    width: 30px;
    height: 20px;
  }
  .cars__name {
    font-size: 26px;
  }
  .cars__label-wrapper {
    width: 80px;
    height: 80px;
  }
  .cars__name-benefit {
    font-size: 10px;
  }
  .cars__btn-toggle {
    font-size: 12px;
  }
  .cars__benefits-mobile {
    grid-template-columns: repeat(1, 1fr);
  }
}
@media only screen and (max-width: 576px) {
  .cars__slider {
    width: 300px;
  }
  .cars__name {
    font-size: 22px;
    display: flex;
    flex-direction: column;
  }
}
.compls h2 {
  font-size: 50px;
  text-align: center;
  text-transform: uppercase;
  margin-bottom: 40px;
}
.compls__tabs {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 15px;
}
.compls__tab {
  padding: 0 32px;
  color: #20365a;
  border: 1px solid #20365a;
  border-radius: 30px;
  cursor: pointer;
  font-size: 16px;
  display: inline-flex;
  align-items: center;
  min-height: 52px;
  transition: 0.1s;
}
.compls__tab:hover {
  background-color: #bccce5;
}
.compls__tab.active {
  pointer-events: none;
  background: linear-gradient(90deg, #1b365d -14.69%, #418fde 175.76%);
  color: #fff;
}
.compls__tabs-wrapper {
  display: none;
  justify-content: center;
  flex-wrap: wrap;
  gap: 15px;
  position: relative;
  width: 100%;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}
.compls__tabs-button {
  background-color: #f2f3f4;
  border-radius: 30px;
  width: 100%;
  text-align: left;
  padding: 27px 40px;
  border: none;
  color: #222;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-size: 16px;
  line-height: 1.2;
  transition: border-color 0.2s ease, background-color 0.2s ease;
}
.compls__tabs-button:hover {
  color: #418fde;
}
.compls__tabs-arrow {
  display: inline-block;
  width: 12px;
  height: 12px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg);
  margin-left: 12px;
}
.compls__tabs-list {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  z-index: 10;
  background-color: #f2f3f4;
  border-radius: 30px;
  overflow: hidden;
  margin-top: 4px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
  padding: 27px 30px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.compls__tabs-item {
  font-size: 16px;
  line-height: 1.2;
  cursor: pointer;
  padding: 10px 0;
  border-bottom: 1px solid #9a9b9b;
}
.compls__tabs-item:last-child {
  border: none;
}
.compls__tabs-item:hover {
  color: #418fde;
}
.compls__filters {
  display: flex;
  gap: 16px;
  justify-content: space-between;
  margin-top: 50px;
}
.compls__filter {
  position: relative;
  width: 100%;
  background-color: #f2f3f4;
  border-radius: 30px;
}
.compls__filter-button {
  background-color: #f2f3f4;
  border-radius: 30px;
  width: 100%;
  text-align: left;
  padding: 27px 40px;
  border: none;
  color: #222;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-size: 16px;
  line-height: 1.2;
  transition: border-color 0.2s ease, background-color 0.2s ease;
}
.compls__filter-button:not(.disabled):hover {
  color: #418fde;
}
.compls__filter-button.disabled {
  opacity: 0.5;
  cursor: not-allowed;
}
.compls__filter-arrow {
  display: inline-block;
  width: 12px;
  height: 12px;
  border-right: 2px solid #418fde;
  border-bottom: 2px solid #418fde;
  transform: rotate(45deg);
  margin-left: 12px;
}
.compls__filter-list {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  z-index: 10;
  background-color: #f2f3f4;
  border-radius: 30px;
  overflow: hidden;
  margin-top: 4px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
  padding: 27px 30px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.compls__filter-item {
  font-size: 16px;
  line-height: 1.2;
  cursor: pointer;
  padding: 10px 0;
  border-bottom: 1px solid #9a9b9b;
}
.compls__filter-item:last-child {
  border: none;
}
.compls__filter-item:hover {
  color: #418fde;
}
.compls__wrap {
  display: grid;
  grid-template-columns: 25% 20% auto auto;
  align-items: center;
  padding-bottom: 10px;
  gap: 30px;
  border-bottom: 1px solid rgb(244, 244, 244);
  position: relative;
  background-color: #fff;
  padding: 40px 20px 10px;
  gap: 30px;
}
.compls__name {
  color: #222;
  display: inline-block;
  font-size: 42px;
  font-weight: 500;
  background-image: url(../../static/images/instock-title.webp);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  background-clip: text;
  -webkit-background-clip: text;
  transition: 0.2s;
}
.compls__name:hover {
  color: transparent;
}
.compls__content {
  display: flex;
  flex-direction: column;
}
.compls__image {
  max-width: 450px;
}
.compls__image img {
  display: block;
  max-width: 100%;
  width: auto;
  height: auto;
}
.compls__title {
  font-size: 32px;
  text-transform: uppercase;
}
.compls__config {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 16px;
  margin: 10px 0;
  font-weight: 400;
}
.compls__buttons {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1em;
}
.compls__button {
  width: 100%;
}
.compls__button .btn {
  width: 100%;
}
.compls__button .btn.open {
  color: #fff;
  background: #418fde;
  border-color: #418fde;
}
.compls__info {
  will-change: max-height;
  transition: max-height 0.3s;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}
.compls__info-title {
  font-size: 24px;
  text-transform: uppercase;
  color: #222;
  margin-bottom: 12px;
}
.compls__info ul {
  border-radius: 14px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.compls__info ul li {
  list-style-type: none;
  display: flex;
  gap: 15px;
  justify-content: start;
  position: relative;
  font-size: 16px;
  line-height: 17px;
}
.compls__info ul li::before {
  content: "";
  background-image: url("../../static/images/icons/point-primary.svg");
  background-repeat: no-repeat;
  background-size: cover;
  width: 100%;
  height: 20px;
  max-width: 20px;
}
.compls__col {
  padding: 32px 20px;
  border-radius: 14px;
  border: 1px dashed #9a9b9b;
}

@media only screen and (max-width: 1200px) {
  .compls__wrap {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    padding-bottom: 15px;
  }
  .compls__name {
    grid-area: 1/1/2/3;
    order: 1;
    text-align: center;
  }
  .compls__image {
    grid-area: 2/1/3/3;
    order: 2;
    max-width: 100%;
  }
  .compls__content {
    order: 3;
    grid-area: 3/1/4/2;
  }
  .compls__buttons {
    order: 4;
    grid-area: 3/2/4/3;
  }
  .compls__info {
    grid-template-columns: 1fr;
    gap: 10px;
  }
}
@media only screen and (max-width: 767px) {
  .compls h2 {
    font-size: 26px;
    margin-bottom: 15px;
  }
  .compls__filters {
    flex-direction: column;
    margin-top: 16px;
  }
  .compls__tabs {
    display: none;
  }
  .compls__tabs-wrapper {
    display: flex;
  }
  .compls__tabs-button {
    font-size: 12px;
    padding: 15px 20px;
    border-radius: 10px;
  }
  .compls__tabs-item {
    font-size: 12px;
  }
  .compls__tabs-list {
    padding: 15px 20px;
    border-radius: 10px;
  }
  .compls__tabs-arrow {
    width: 8px;
    height: 8px;
  }
  .compls__filter-button {
    font-size: 12px;
    padding: 15px 20px;
    border-radius: 10px;
  }
  .compls__filter-arrow {
    width: 8px;
    height: 8px;
  }
  .compls__filter-list {
    padding: 15px 20px;
    border-radius: 10px;
  }
  .compls__filter-item {
    font-size: 12px;
  }
  .compls__name {
    font-size: 26px;
  }
  .compls__title {
    font-size: 16px;
  }
  .compls__wrap {
    grid-template-columns: repeat(1, 1fr);
  }
  .compls__name {
    grid-area: initial;
  }
  .compls__image {
    grid-area: initial;
  }
  .compls__content {
    grid-area: initial;
  }
  .compls__buttons {
    grid-area: initial;
  }
  .compls__info {
    grid-template-columns: 1fr;
    gap: 10px;
  }
}
.testdrive {
  margin-top: 50px;
  position: relative;
  border-radius: 0 0 40px 40px;
  padding: 50px 0;
  overflow: hidden;
}
.testdrive .container {
  display: flex;
  flex-direction: column;
  gap: 16px;
  justify-content: space-between;
  min-height: 530px;
}
.testdrive__picture img, .testdrive__picture source {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.testdrive__content {
  position: relative;
  z-index: 2;
  background-image: url("../../static/images/testdrive-border.webp");
  background-repeat: no-repeat;
  background-size: cover;
  background-size: 100% 100%;
  min-height: 530px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  justify-content: space-between;
}
.testdrive__heading {
  display: flex;
  flex-direction: column;
  gap: 25px;
  padding: 40px;
}
.testdrive__title {
  font-size: 100px;
  color: #f4f4f4;
  line-height: 1;
}
.testdrive__subtitle {
  font-size: 32px;
  color: #f4f4f4;
  font-weight: 300;
}
.testdrive__bottom {
  display: flex;
  justify-content: start;
  align-items: center;
  gap: 40px;
}
.testdrive__bottom-text p {
  max-width: 580px;
  font-size: 22px;
  line-height: 30px;
  color: #f4f4f4;
  font-weight: 300;
}
.testdrive form {
  margin-top: 20px;
}
.testdrive form .btn {
  width: 100%;
}
.testdrive form .checkbox span {
  color: #fff;
  font-size: 12px;
}
.testdrive form .checkbox label::before {
  margin-right: 15px;
}

@media only screen and (max-width: 1200px) {
  .testdrive {
    padding: 50px 0 100px;
  }
  .testdrive__bottom {
    flex-direction: column;
    gap: 10px;
    align-items: flex-start;
    margin-bottom: -60px;
  }
  .testdrive__button {
    margin-left: 15px;
  }
  .testdrive__title {
    font-size: 60px;
  }
  .testdrive__subtitle {
    font-size: 20px;
  }
}
@media only screen and (max-width: 767px) {
  .testdrive__content {
    text-shadow: 1px 2px 2px #000;
  }
  .testdrive__content {
    padding: 20px;
  }
  .testdrive__bottom-text p {
    max-width: 66%;
    font-size: 14px;
    line-height: 16px;
  }
  .testdrive__content {
    min-height: 360px;
    padding: 0;
  }
  .testdrive {
    padding: 30px 10px 90px;
  }
  .testdrive .container {
    min-height: 360px;
  }
  .testdrive__heading {
    gap: 10px;
    padding: 24px 12px;
  }
  .testdrive__title {
    font-size: 26px;
  }
  .testdrive__subtitle {
    font-size: 16px;
  }
  .testdrive__button {
    margin-left: 12px;
  }
  .testdrive__button .btn {
    height: 40px;
  }
}
.tradein {
  height: 600px;
}
.tradein .container {
  height: 100%;
}
.tradein__wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  height: 100%;
}
.tradein__content {
  background: url("../../static/images/tradein-bg.webp");
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  padding: 40px;
  border-radius: 15px;
}
.tradein__content-form .input__checkbox + span {
  color: #fff;
}
.tradein__content-form .input__checkbox + span a:not([class]) {
  color: #fff;
}
.tradein__title-first {
  width: 100%;
  text-align: right;
  position: absolute;
  top: 0;
  left: 0;
  font-size: 52px;
  color: #222;
  cursor: default;
}
.tradein__title-second {
  font-size: 42px;
  color: #f2f3f4;
  line-height: 60px;
  font-weight: 300;
  cursor: default;
}
.tradein__title-second .accent-text {
  color: #418fde;
}
.tradein__text {
  font-size: 28px;
  color: #f2f3f4;
  margin-top: 25px;
  font-weight: 300;
  cursor: default;
}
.tradein__content-form {
  margin-top: 40px;
}
.tradein__compare {
  position: relative;
  border-radius: 15px;
  overflow: hidden;
  user-select: none;
  touch-action: none;
}
.tradein img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
}
.tradein__compare-after {
  position: relative;
  width: 100%;
  height: 100%;
}
.tradein__compare-before {
  position: absolute;
  inset: 0;
  z-index: 2;
  clip-path: inset(0 50% 0 0);
}
.tradein__compare-slider {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 100%;
  background: #fff;
  z-index: 5;
  cursor: ew-resize;
}
.tradein__compare-slider::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #fff;
}

@media only screen and (max-width: 1920px) {
  .tradein__title-first {
    font-size: calc(3.33333333vw - 12px);
  }
}
@media only screen and (max-width: 1200px) {
  .tradein {
    height: auto;
  }
  .tradein__wrapper {
    display: grid;
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .tradein__title-first {
    width: 100%;
    top: 0px;
    left: 0px;
    font-size: 40px;
  }
  .tradein__title-second {
    font-size: 38px;
    line-height: 44px;
  }
  .tradein__text {
    font-size: 20px;
    margin-top: 15px;
  }
  .tradein__content {
    background-size: 100% 100%;
    padding: 25px;
    border-radius: 10px;
  }
}
@media only screen and (max-width: 767px) {
  .tradein__wrapper {
    gap: 20px;
  }
  .tradein__title-second {
    font-size: 28px;
    line-height: 34px;
  }
  .tradein__title-first {
    font-size: 28px;
  }
  .tradein__text {
    font-size: 18px;
  }
  .tradein__content-form {
    margin-top: 30px;
  }
}
@media only screen and (max-width: 576px) {
  .tradein__title-second {
    font-size: 20px;
    line-height: 34px;
  }
  .tradein__content {
    padding: 20px 20px 30px;
  }
  .tradein__title-first {
    font-size: 20px;
  }
  .tradein__text {
    font-size: 16px;
  }
  .tradein__content-form .input {
    font-size: 16px;
  }
  .tradein__content-form .input::placeholder {
    font-size: 16px;
  }
}
.credit {
  position: relative;
  min-height: 1000px;
  display: flex;
  border-radius: 0 0 40px 40px;
  overflow: hidden;
  padding: 30px 0;
}
.credit__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}
.credit__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.credit__bg-img-desktop {
  display: block;
}
.credit__bg-img-mobile {
  display: none;
}
.credit__wrapper {
  position: relative;
  z-index: 2;
  width: 100%;
}
.credit__wrapper .container {
  display: flex;
  justify-content: space-between;
  height: 100%;
  width: 100%;
}
.credit__content {
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 140px;
  justify-content: center;
  flex: 0 0 690px;
}
.credit__content .form {
  padding: 50px 64px;
  max-width: 690px;
  background-color: #f4f4f4;
  border-radius: 14px;
}
.credit__content .form .input {
  background: #fff;
}
.credit__content .form__title {
  font-size: 30px;
  font-weight: 300;
  margin-bottom: 22px;
}
.credit__title {
  font-size: 100px;
  color: #f4f4f4;
  text-align: center;
}
.credit__cards {
  position: relative;
  flex: 1 1 auto;
}
.credit__card {
  padding: 14px;
  background-color: rgba(0, 0, 0, 0.1490196078);
  backdrop-filter: blur(10px);
  border-radius: 12px;
  border: 1px solid #fff;
  border-bottom: none;
  position: absolute;
  max-width: 450px;
  cursor: pointer;
}
.credit__card:nth-child(1) {
  top: 0;
  left: 0;
}
.credit__card:nth-child(2) {
  top: 22%;
  left: 45%;
}
.credit__card:nth-child(3) {
  bottom: 8%;
  left: 10%;
}
.credit__cards-heading {
  display: flex;
  gap: 25px;
}
.credit__cards-icon {
  background-color: #418fde;
  padding: 5px;
  display: inline-flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  fill: currentColor;
  color: inherit;
  font-size: inherit;
  height: 50px;
  width: 50px;
  border-radius: 5px;
}
.credit__cards-title {
  font-size: 24px;
  color: #f2f3f4;
  font-weight: 300;
  line-height: 25px;
  text-shadow: 1px 1px 2px #000;
  text-align: left;
}
.credit__cards-text {
  font-size: 18px;
  color: #f2f3f4;
  font-weight: 300;
  opacity: 0.85;
  margin-left: 75px;
  text-align: left;
  margin-top: 20px;
  text-shadow: 1px 1px 2px #000;
}

@media only screen and (max-width: 1200px) {
  .credit__cards {
    display: none;
  }
  .credit__content {
    flex: 1 1 auto;
    align-items: center;
  }
}
@media only screen and (max-width: 767px) {
  .credit {
    padding: 20px 0;
    border-radius: 0 0 20px 20px;
    min-height: auto;
    background-color: #222;
  }
  .credit__title {
    font-size: 50px;
    text-align: left;
  }
  .credit__content {
    height: 100%;
    flex-direction: column;
    justify-content: space-around;
    gap: 185px;
    align-items: flex-start;
  }
  .credit__content .form {
    padding: 20px;
  }
  .credit__content .form .form__title {
    font-size: 18px;
  }
  .credit__content .form .input {
    font-size: 16px;
  }
  .credit__content .form .input::placeholder {
    font-size: 16px;
  }
  .credit__title {
    text-align: left;
  }
}
@media only screen and (max-width: 576px) {
  .credit__title {
    font-size: 30px;
    text-align: left;
  }
  .credit__bg-img-desktop {
    display: none;
  }
  .credit__bg-img-mobile {
    display: block;
  }
  .credit__bg {
    background-color: #000000;
  }
  .credit__bg img {
    object-fit: cover;
    height: 70%;
  }
}
.contacts__wrapper {
  margin-top: 35px;
  position: relative;
  border-radius: 20px;
  overflow: hidden;
}
.contacts__cards {
  position: absolute;
  z-index: 2;
  top: 50%;
  transform: translateY(-50%);
  left: 60px;
}
.contacts__info {
  padding: 20px 40px;
  max-width: 600px;
  border-radius: 15px;
  background: #f2f3f4;
  border: 1px solid #666666;
}
.contacts__info-footer {
  padding: 20px 40px;
  max-width: 600px;
  border-radius: 15px;
  background: #f2f3f4;
  border: 1px solid #666666;
}
.contacts__map {
  height: 600px;
}
.contacts__title {
  font-size: 36px;
  color: #222;
  text-transform: uppercase;
  text-align: center;
  width: 100%;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.contacts__title span {
  display: block;
  font-weight: 400;
  font-size: 14px;
  text-transform: none;
}
.contacts__info-footer-title {
  font-size: 24px;
}
.contacts__info-footer-text {
  font-size: 18px;
}
.contacts__address {
  display: flex;
  margin-bottom: 15px;
}
.contacts__address svg {
  fill: #418fde;
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  margin-right: 10px;
}
.contacts__phone {
  display: flex;
  margin-bottom: 15px;
}
.contacts__phone a {
  text-decoration: none;
  color: #2c2e35;
}
.contacts__phone a:hover {
  color: #418fde;
}
.contacts__phone svg {
  fill: #418fde;
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  margin-right: 10px;
}
.contacts__time {
  display: flex;
  margin-bottom: 15px;
}
.contacts__time svg {
  fill: #418fde;
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  margin-right: 10px;
}
.contacts__time svg path {
  stroke: #418fde;
  fill: #418fde;
}
.contacts__button {
  margin-top: 20px;
}
.contacts__button .btn {
  width: calc(100% - 30px);
  margin: 0 auto;
}

@media only screen and (max-width: 1200px) {
  .contacts__wrapper {
    border-radius: 0;
  }
  .contacts__cards {
    position: static;
    transform: none;
    width: 100%;
  }
  .contacts__info {
    width: 100%;
    max-width: 100%;
  }
  .contacts__info-footer {
    width: 100%;
    max-width: 100%;
  }
}
@media only screen and (max-width: 767px) {
  .contacts__wrapper {
    border-radius: 0;
  }
  .contacts__info-footer {
    padding: 20px;
  }
  .contacts__info {
    width: 100%;
    padding: 20px;
  }
  .contacts__info-footer-title {
    font-size: 20px;
  }
  .contacts__title {
    font-size: 24px;
  }
  .contacts__info-footer-text {
    font-size: 16px;
  }
  .contacts__map {
    margin-top: 20px;
    height: 300px;
  }
}
.footer {
  padding: 20px 0;
  font-size: 14px;
  background-color: #ffffff;
  margin-top: 20px;
  color: #222222;
}
.footer__top {
  display: flex;
  gap: 180px;
  align-items: center;
  margin-bottom: 30px;
}
.footer__left {
  display: flex;
  align-items: center;
  gap: 30px;
}
.footer__logo {
  max-width: 150px;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
}
.footer__logo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.footer__logo-dealer {
  display: flex;
  align-items: center;
}
.footer__logo-text {
  color: #418fde;
  font-size: 32px;
  font-weight: 700;
  margin: 0;
}
.footer__logo-descript {
  font-size: 14px;
  margin: 0;
}
.footer__logo-divider {
  width: 2px;
  height: 30px;
  background-color: #222222;
  margin: 0 15px;
}
.footer__phone-wrap {
  display: flex;
  align-items: center;
  gap: 18px;
  color: #222222;
  border: 1px solid #222222;
  border-radius: 26px;
  padding: 10px 24px;
}
.footer__phone-wrap:hover {
  scale: 1.05;
  text-shadow: 1px 1px 2px #777;
}
.footer__phone-wrap:hover .footer__logo-icon {
  animation: shaking 0.7s infinite;
}
.footer__phone a {
  color: #222222;
  font-size: 20px;
  font-weight: 500;
  text-decoration: none;
}
.footer__copyright {
  margin: 30px auto;
}
.footer__links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 12px;
}
.footer__link {
  cursor: pointer;
  display: inline-block;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
  transition: 0.2s;
  color: #418fde;
}
.footer__link:hover {
  text-decoration-color: transparent;
}
.footer__disclaimer {
  margin-top: 10px;
}

@media only screen and (max-width: 992px) {
  .footer__top {
    justify-content: space-between;
    gap: 10px;
  }
}
@media only screen and (max-width: 768px) {
  .footer__top {
    flex-direction: column;
    gap: 10px;
  }
}
@media only screen and (max-width: 576px) {
  .footer__left {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    width: 100%;
  }
  .footer__phone-wrap {
    margin-right: auto;
  }
}