/* **************************************************************************************************************************************** */

/* css reset */

:root {
  --main-font: "Neo Sans Cyr", "Arial", "Helvetica", "sans-serif";
  --section-mb: 87px;
  --border-radius: 0px;
}

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

img,
picture {
  max-width: 100%;
  height: auto;
  display: block;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  text-wrap: balance;
  cursor: default;
}

address {
  font-style: normal;
}

b,
strong {
  font-weight: 500;
}

input,
button,
textarea,
select {
  font: inherit;
  outline: none;
  color: #000;
}

button {
  border: none;
}

input,
button,
select {
  width: 100%;
  margin: 0;
  box-shadow: none;
  border-radius: 0;
}

input,
select {
  padding: 11px 32px;
}

input,
select {
  color: black;
  border: 1px solid #474450;
  font-size: 16px;
  background: #ffffff4d;
  backdrop-filter: blur(5px);
}

select option {
  color: #000;
  font-size: 16px;
}

.fadeIn {
  visibility: hidden;
}

input[type="checkbox"] {
  height: unset;
  width: unset;
  min-width: unset;
  min-height: unset;
}

input::-moz-placeholder {
  color: #474450;
}

input::-webkit-input-placeholder {
  color: #474450;
}

input:-ms-input-placeholder {
  color: #474450;
}

input::placeholder {
  color: #474450;
}

button {
  cursor: pointer;
}

select {
  -moz-appearance: none;
  -webkit-appearance: none;
  appearance: none;
  background-image: url("../img/ico_select.svg");
  background-repeat: no-repeat;
  background-position: calc(100% - 22px) 50%;
  display: block;
  width: 100%;
  padding-right: 35px;
  transition: border 0.3s ease-out;
  cursor: pointer;
}

.select::-ms-expand {
  display: none;
}

.select option {
  font-weight: normal;
}

select {
  -moz-appearance: none;
  -webkit-appearance: none;
  appearance: none;
  background-image: url("../img/ico_select.svg");
  background-repeat: no-repeat;
  background-position: calc(100% - 22px) 50%;
  display: block;
  width: 100%;
  padding-right: 35px;
  transition: border 0.3s ease-out;
  cursor: pointer;
}

.select option {
  font-weight: normal;
}

ul,
ol {
  list-style: none;
}

:focus {
  outline: 0;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

blockquote,
q {
  quotes: none;
}

q:before,
q:after {
  content: "";
}

a,
ins {
  text-decoration: none;
  color: inherit;
}

sub,
sup {
  vertical-align: baseline;
  position: relative;
  font-size: 0.8em;
}

sup {
  top: -5px;
}

sub {
  bottom: -2px;
}

pre {
  font: inherit;
}

/* css reset END */

/* **************************************************************************************************************************************** */

/* common styles */

body {
  font-family: var(--main-font);
  font-size: 16px;
  position: relative;
  font-weight: 300;
  padding: 0px;
  overflow-x: hidden;
  margin: 0 auto;
  min-height: 100vh;
  line-height: 1.3;
  color: #0b0d0c;
  background-color: #ffffff;
}

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

.form_title {
  color: inherit;
  font-size: 20px;
  padding: 0px;
  margin: 0px;
  text-align: center;
  padding-bottom: 20px;
}

.form_title span {
  display: block;
  white-space: nowrap;
}

input,
textarea,
select,
button,
.btn {
  /* height: 50px; */
}

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

.has-danger input,
.has-danger select,
.has-danger textarea {
  border-width: 2px;
  box-shadow:
    inset 0 1px 1px rgba(0, 0, 0, 0.075),
    0 0 6px #c86461;
}

#form_popup {
  display: none;
}

.popup_container {
  background-color: #4e5a66 !important;
  color: #fff;
  width: 520px;
  max-width: 100%;
  padding: 29px;
  overflow: hidden !important;
  position: relative;
  box-sizing: border-box;
  text-align: center;
  padding-bottom: 30px;
  border-radius: 8px;
}

.alert.fancybox-content {
  overflow: hidden;
  background-color: #4e5a66 !important;
  color: #fff;
  border-radius: 8px;
}

.not_agree button {
  background-color: #cccccc !important;
  border-color: #cccccc !important;
  cursor: auto !important;
  color: white !important;
}

.not_agree button::after {
  background-image: url("../img/ico_btn_arr_white.svg");
  /* background-color: #000; */
}

.agree_field {
  line-height: 100%;
  position: relative;
  display: block;
  top: 0px;
  margin-top: 8px;
  text-align: left;
  font-size: 14px;
}

.popup_container .agree_field {
}

.agree_field a {
  color: inherit;
}

.agree_field input {
  opacity: 0;
  position: absolute;
}

.form_checkbox {
  display: flex;
  align-items: center;
  justify-content: start;
  gap: 5px;
}

.custom-checkbox {
  position: absolute;
  clip: rect(0, 0, 0, 0);
  width: 1px;
  height: 1px;
  margin: -1px;
  overflow: hidden;
}

.custom-checkbox + label {
  display: inline-flex;
  align-items: center;
  user-select: none;
}

.custom-checkbox + label::before {
  content: "";
  margin-top: -2px;
  display: inline-block;
  width: 13px;
  height: 13px;
  flex-shrink: 0;
  flex-grow: 0;
  border: 1px solid #215469;
  border-radius: 2.5px;
  margin-right: 0.5em;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 50% 50%;
  cursor: pointer;
}

.custom-checkbox:checked + label::before {
  background-image: url("../img/ico_check.svg");
  background-position: center center;
  background-size: 12px 12px;
}

/* стили при наведении курсора на checkbox */
.custom-checkbox:not(:disabled):not(:checked) + label:hover::before {
  border-color: #dde1e6;
}

/* стили для активного состояния чекбокса (при нажатии на него) */
.custom-checkbox:not(:disabled):active + label::before {
  background-color: #dde1e6;
  border-color: #dde1e6;
}

/* стили для чекбокса, находящегося в фокусе */
.custom-checkbox:focus + label::before {
  box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
}

/* стили для чекбокса, находящегося в фокусе и не находящегося в состоянии checked */
.custom-checkbox:focus:not(:checked) + label::before {
  border-color: #acacac;
}

/* стили для чекбокса, находящегося в состоянии disabled */
.custom-checkbox:disabled + label::before {
  background-color: #e9ecef;
}

.popup_container .agree_field .check_ex {
  border-color: inherit;
}
.popup_container .agree_field .check_ex i {
}

.container {
  width: 100%;
  max-width: 1381px;
  padding: 0 30px;
  margin: 0 auto;
}

.wide-container {
  padding: 0 25px;
  max-width: 1920px;
  margin: 0 auto;
}

.raw {
  display: flex;
}

.column-2 {
  width: 50%;
}

.column-3 {
  width: 33.333%;
}

.column-4 {
  width: 25%;
}

.bg_color1 {
}

.title {
  font-weight: 400;
  font-size: 56px;
  text-align: center;
}

.title .char {
  visibility: hidden;
  display: inline-block;
}

.btn {
  position: relative;
  background: #ffffff;
  border: 1px solid #ffffff;
  border-radius: 5px;
  color: #0b0d0c;
  padding: 5px 24px;
  min-width: 269px;
  min-height: 50px;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  text-decoration: none;
  transition: all 0.3s linear;
  overflow: hidden;
  font-family: var(--main-font);
  font-weight: 400;
  font-size: 15px;
  gap: 15.4px;
  text-transform: uppercase;
}

.btn span {
  display: inline-block;
  margin-bottom: -2px;
}

.btn.black {
  border-color: #0b0d0c;
  background-color: #0b0d0c;
  color: #fff;
}

.btn.gray {
  background-color: #4e5a66;
  border-color: #4e5a66;
  color: #fff;
}

.btn.transporent {
  background-color: transparent;
  border-color: #215469;
  color: #0b0d0c;
}

.btn:focus,
.btn:hover {
  outline: none;
  border-color: #0b0d0c;
  background-color: #0b0d0c;
  color: #fff;
}

.btn.black:focus,
.btn.black:hover {
  background-color: #4e5a66;
  border-color: #4e5a66;
  color: #fff;
}

.input {
  position: relative;
  display: inline-block;
  border-radius: 5px;
  padding: 13px 19px;
  height: 50px;
  color: #fff;
  background-color: transparent;
  border: 1px solid #ffffff;
  font-weight: 400;
  font-size: 16px;
  outline: none;
}

.input.gray {
  color: #d3d3d3;
  background-color: transparent;
  border-color: #d3d3d3;
}

.input::placeholder {
  color: #d3d3d3;
}

.input.transporent::placeholder {
  color: #fff;
}

/* common styles END */

/* HEADER ************************************************************************************************************************/

.header {
  display: block;
  position: fixed;
  width: 100%;
  z-index: 15;
  top: 0;
  color: #fff;
  transition: border 0.1s linear;
}

.header__top {
  background-color: #3c3e40e5;
  backdrop-filter: blur(10px);
  padding: 12px 0;
  min-height: 75px;
}

/* .scroll-up.header {
  position: fixed;
} */

.header__content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0;
  gap: 15px;
  transition: padding 0.1s linear;
}

.header__logo-block {
  display: flex;
  gap: 16px;
  align-items: center;
}

.header__logo {
  display: flex;
  align-items: center;
}

.header__logo.logo1 {
  max-width: 200px;
}

.header__logo.logo2 {
  max-width: 93px;
}

.stick {
  background-color: #fff;
  width: 1px;
  height: 41px;
}

.logo__text {
  white-space: nowrap;
}

.header__addr-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
}

.header__addr {
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color 0.3s linear;
  white-space: nowrap;
  font-size: 15px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 400;
}

.header__addr::before {
  content: "";
  width: 20px;
  height: 20px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}

.header__place::before {
  background-image: url("../img/ico_addr.svg");
}

.header__phone::before {
  background-image: url("../img/ico_phone.svg");
}

.header__side {
  display: flex;
  width: calc(50% - 57px);
  justify-content: space-between;
}

.header-menu {
}

.header__bottom {
  position: static;
  top: 80px;
  width: 100%;
  background: #ffffff99;
  backdrop-filter: blur(20px);
  transition: top linear 0.3s;
  z-index: -1;
  color: #0b0d0c;
}

/* ._scroll .header__bottom {
  position: absolute;
  top: 0px;
  z-index: -1;
}

.scroll-up .header__bottom {
  top: 80px;
} */

.nav {
  display: flex;
  flex-direction: row;
  transition: padding 0.1s linear;
}

.header__nav {
  align-items: center;
  justify-content: space-between;
}

.nav__list {
  display: flex;
  gap: 15px 40px;
  justify-content: space-between;
  text-transform: uppercase;
}

.nav__list.mob {
  display: none;
}

.nav__link {
  padding: 20px 0 20px 0;
  transition: all 0.3s linear;
  position: relative;
  font-weight: 400;
  font-size: 15px;
}

.nav__link::after {
  content: "";
  transition: all 0.3s linear;
  position: absolute;
  bottom: 20px;
  left: 0;
  width: 0%;
  height: 1px;
  background-color: #4e5a66;
  opacity: 0;
}

.nav__link:hover {
  color: #4e5a66;
}

.nav__link:hover::after {
  opacity: 1;
  width: 100%;
}

.header__contacts {
  display: flex;
  flex-direction: row;
  align-items: start;
  justify-content: space-between;
  height: 100%;
  gap: 10px 20px;
}

/* burger */
.header .burger {
  position: relative;
  display: none;
  width: 33px;
  min-width: unset;
  height: 24px;
  background-color: transparent;
  padding: 0;
  z-index: 2;
}

.header .burger span {
  position: absolute;
  display: block;
  left: 0;
  width: 100%;
  height: 3px;
  background: #fff;
  transition: all 0.2s linear;
}

.header .burger span:nth-child(1) {
  top: 0;
}

.header .burger span:nth-child(2) {
  top: calc(50% - 1px);
  opacity: 1;
}

.header .burger span:nth-child(3) {
  bottom: 0;
}

.header .burger.active span:nth-child(1) {
  transform-origin: top right;
  transform: rotate(-45deg);
  top: -2px;
}

.header .burger.active span:nth-child(2) {
  opacity: 0;
}

.header .burger.active span:nth-child(3) {
  transform-origin: bottom right;
  transform: rotate(45deg);
  bottom: 0px;
}

/* burger  end*/

/* BANNER *************************************************************************************************************/
.banner {
}

.banner__slide {
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;

  display: flex;
  flex-direction: column;
  /* justify-content: space-between; */
  position: relative;
}

@media (min-width: 1920px) {
  .banner__slide {
    min-height: unset;
  }
}

.banner__img {
  display: block;
  width: 100%;
  height: auto;
  max-width: 100%;
}

.banner__img .picture-img {
  max-width: 100%;
  margin: 0 auto;
  height: auto;
  object-fit: cover;
  object-position: center;
}

.banner__container {
  height: 100%;
}

.banner__wrapper {
  position: absolute;
  width: 100%;
  left: 0;
}

.banner__content {
  background-size: 100% 300px;
  background-repeat: no-repeat;
  position: relative;
  padding-top: 161px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  height: 100%;
}

.banner__container .br_mob {
  display: none;
}

.banner__title-block {
  display: flex;
  padding: clamp(10px, 3vw, 28px) 0;
  flex-direction: column;
  align-items: center;
  gap: clamp(5px, 2.5vw, 20px);
  text-align: center;
  margin-bottom: auto;
  color: #fff;
  background: linear-gradient(
    89.99deg,
    rgba(60, 62, 64, 0) 0.01%,
    rgba(60, 62, 64, 0.9) 40.55%,
    rgba(60, 62, 64, 0.9) 68.57%,
    rgba(60, 62, 64, 0) 99.99%
  );
}

.banner__title {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  text-align: center;
  gap: clamp(1px, 2vw, 5px);
}
.banner__title1 {
  font-weight: 400;
  font-size: clamp(22px, 3.5vw, 42px);
}

.banner__title2 {
  font-weight: 400;
  font-size: clamp(19px, 2vw, 25px);
}

.banner__btn {
  max-width: 300px;
  margin-bottom: -24px;
}

.color {
  color: #f89435;
}

/*timer*************************************************************************************************************/
.timer {
  margin-bottom: 80px;
  overflow: hidden;
  background-color: #4e5a66;
  color: #fff;
}

.timer__content {
  position: relative;
  padding: 20px 0px;
  display: flex;
  gap: 20px;
  align-items: center;
  justify-content: space-between;
}

.timer__title {
  font-weight: 400;
  font-size: 24px;
  margin-bottom: 20px;
}

.timer__stick {
  background-color: #fff;
  width: 1px;
  height: 161px;
}

.timer__right {
  width: 100%;
  max-width: 719px;
}

.timer__text1 {
  font-size: 24px;
  margin-bottom: 8px;
}

.timer__text2 {
  font-size: 24px;
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 16px;
}

.timer_assembled {
  width: 583px;
  height: 116px;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.timer__descrs {
  display: flex;
  justify-content: flex-end;
  padding-right: 33px;
  font-size: 12px;
  gap: 121px;
  /* align-self: flex-end; */
  margin: 0 14px;
}

.timer_assembled div {
  /* scale: 0.55; */
}

.timer .form-group {
  display: grid;
  gap: 9px;
  grid-template-columns: 1fr 293px;
}

/* Cars *************************************************************************************************************/

.cars {
  display: flex;
  flex-direction: column;
  gap: 60px;
  margin-bottom: 123px;
  overflow: hidden;
}

.cars__title {
  text-align: center;
  margin-bottom: 64px;
}

/* cars list */

.cars__list {
  display: flex;
  flex-direction: column;
  gap: 93px;
  align-items: center;
}

.cars__item {
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.item__top-block {
  gap: 4px;
}

.item__main-block {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.item__title {
  white-space: nowrap;
  text-transform: uppercase;
  font-weight: 400;
  font-size: 35px;
  text-align: start;
}

.item__title .model {
  font-size: 50px;
}

.item__top {
  display: flex;
  justify-content: space-between;
  position: relative;
  gap: 30px;
}

.item__left {
  display: flex;
  flex-direction: column;
  justify-content: felex-start;
  gap: clamp(12px, 100%, 30px);
}

.item__right {
  display: flex;
  gap: 30px;
  width: 100%;
}

.cars__label {
  font-size: 18px;
  font-weight: 400;
  background-color: #fff;
  border-radius: 5px;
  display: flex;
  gap: 15px;
  align-items: center;
  min-height: 60px;
  width: 100%;
  background-image: url("../img/car_label_bg.png");
  background-size: cover;
  color: #fff;
  padding-left: 30px;
}

.cars__label .date {
  font-size: 25px;
}

.cars__label::before {
  position: relative;
  display: block;
  content: "";
  background-position: center;
  background-repeat: no-repeat;
  width: 40px;
  height: 40px;
  background-size: contain;
  margin-bottom: 1px;
  background-image: url("../img/ico_precent.svg");
  transition:
    background 0.3s linear,
    border 0.3s linear;
  border: 1px solid #fff;
  border-radius: 100%;
}

.cars__label.new::before {
  background-image: url("../img/car_label_new.svg");
  border: none;
}

.cars__label:hover {
  color: #fff;
  background-color: #f89435;
}

.cars__label .color {
  transition: color 0.3s linear;
}

.cars__label:hover .color {
  color: #fff;
}

.item__presents-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-width: 335px;
  justify-content: space-between;
}

.item__presents-link {
  position: relative;
  display: flex;
  align-items: center;
  cursor: pointer;
  gap: 9px;
}

.item__presents-link::before {
  content: "";
  position: relative;
  width: 40px;
  height: 40px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: 100%;
  pointer-events: none;
  transition:
    background-image 0.15s linear,
    opacity 0.15s linear;
  opacity: 1;
}

.item__presents-link.ico1::before {
  background-image: url("../img/car_ico1.svg");
}

.item__presents-link:hover.ico1::before {
  background-image: url("../img/car_ico1_hover.svg");
}

.item__presents-link.ico2::before {
  background-image: url("../img/car_ico2.svg");
}

.item__presents-link:hover.ico2::before {
  background-image: url("../img/car_ico2_hover.svg");
}

.item__presents-link.ico3::before {
  background-image: url("../img/car_ico3.svg");
}

.item__presents-link:hover.ico3::before {
  background-image: url("../img/car_ico3_hover.svg");
}

.item__presents-link.ico4::before {
  background-image: url("../img/car_ico4.svg");
}

.item__presents-link:hover.ico4::before {
  background-image: url("../img/car_ico4_hover.svg");
}

.item__presents-link.ico5::before {
  background-image: url("../img/car_ico5.svg");
}

.item__presents-link:hover.ico5::before {
  background-image: url("../img/car_ico5_hover.svg");
}

.item__link-content {
  /* white-space: nowrap; */
  font-size: 20px;
  font-weight: 400;
}

.item__presents-link.ico1 .item__link-content {
  font-size: 24px;
}

.item__image {
  transition:
    transform 0.3s linear,
    scale 0.3s linear;
  min-height: 205px;
  margin-top: -36px;
}

.item__image:hover {
  transform: translateX(-1.5%);
  scale: 1.02;
}

.item__car-img {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background-position: center 41%;
  background-repeat: no-repeat;
  max-width: 690px;
}

.item__car-img .picture-img {
  min-height: 150px;
}

.item__colors {
  display: flex;
  flex-direction: column;
  gap: 32px;
  align-items: center;
  background-image: url("../img/card_bg.jpg");
  background-size: cover;
  width: 100%;
  border-radius: 10px;
  justify-content: space-between;
}

.item__colors-dots {
  align-items: center;
  display: flex;
  position: relative;
  gap: 20px;
  padding: 10px 15px 0;
  background-color: #fff;
  border-radius: 25px 25px 0 0;
  margin-bottom: -1px;
}

.item__colors-dots::before {
  --grad: 24px;
  position: absolute;
  content: "";
  width: var(--grad);
  left: calc(var(--grad) * (-1) + 1px);
  bottom: 0;
  background: white;
  mask-image: radial-gradient(
    circle at 0 0,
    transparent var(--grad),
    black calc(var(--grad) + 1px)
  );
  height: var(--grad);
  box-shadow: 0px 1px 1px #fff;
}

.item__colors-dots::after {
  --grad: 24px;
  position: absolute;
  content: "";
  width: var(--grad);
  right: calc(var(--grad) * (-1) + 1px);
  bottom: 0;
  background: white;
  mask-image: radial-gradient(
    circle at 100% 0,
    transparent var(--grad),
    black calc(var(--grad) + 1px)
  );
  height: var(--grad);
  box-shadow: 0px -1px 1px #fff;
}

.item__color-dot-item {
  width: 20px;
  height: 20px;
  margin: 5px;
  border-radius: 100%;
  cursor: pointer;
  transition: all 0.3s linear;
  position: relative;
  border: 1px solid transparent;
  display: flex;
  flex-direction: column;
  align-items: center;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.item__color-dot-item.active,
.item__color-dot-item:hover {
  scale: 1.25;
}

.item__car-img-block {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.car__gallery {
  align-self: center;
  position: relative;
  border-radius: 6px;
  margin-top: -53px;
  height: 381px;
}
:root {
  --gallery-margin: 0px;
}

.car__gallery .swiper {
  width: calc(158px + var(--gallery-margin) * 2);
  padding-left: 0px;
  margin: -var(--gallery-margin);
  display: flex;
  height: calc(100% + var(--gallery-margin) * 2);
}

.car__gallery .swiper-wrapper {
  padding: var(--gallery-margin);
}

.car__gallery .swiper-slide {
  border-radius: 5px;
  overflow: hidden;
  transition: all 0.3s ease-out;
  background: #dadada;
}
/* 
.car__gallery .swiper-slide:hover {
  scale: 1.05;
} */

.car__gallery .swiper-slide:hover {
  scale: 1;
}

.car__gallery .swiper-slide .picture-img {
  transition: all 0.3s ease-out;
}

.car__gallery .swiper-slide:hover .picture-img {
  scale: 1.1;
}

.car__gallery .swiper-pagination-vertical.swiper-pagination-bullets,
.swiper-vertical > .swiper-pagination-bullets .swiper-pagination-car-gallery {
  position: absolute;
  left: 0px !important;
  z-index: 1;
  gap: 6px;
  display: flex;
  width: 10px;
  flex-direction: column;
}

.car__gallery picture {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  object-fit: contain;
}

.car__gallery .picture-img {
  width: 100%;
}

.item__buttons {
  z-index: 2;
}

.cars .car__btn {
  width: 31%;
}

.cars .car__btns-block {
  width: 100%;
  display: flex;
  justify-content: space-between;
  margin-top: 30px;
}

.item__buttons {
  display: flex;
  gap: 15px;
  justify-content: space-between;
}

.item__buttons .btn {
  width: 100%;
}

.item__gallery-switch-btns {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 17px;
  margin-top: -53px;
}

.item__gallery-switch-btn {
  writing-mode: vertical-rl;
  background-color: unset;
  border: none;
  padding: 0;
  text-transform: uppercase;
  color: #acb7c2;
  position: relative;
}
.item__gallery-switch-btn.active {
  color: #4e5a66;
}

.item__gallery-switch-btn::after {
  content: "";
  transition: all 0.3s linear;
  position: absolute;
  top: 0px;
  left: 0;
  height: 0%;
  width: 1px;
  background-color: #4e5a66;
  opacity: 0;
}

.item__gallery-switch-btn.active:after {
  height: 100%;
  opacity: 1;
}

/* instock в файле instock.css */

/* trade-in****************************************** */

.trade-in {
  overflow: hidden;
  position: relative;
  z-index: 1;
  padding: 100px 0;
  background-color: #4e5a66;
  color: #fff;
  background-image: url("../img/ico_vectors.svg");
  background-repeat: no-repeat;
  background-position: bottom right;
}

.trade-in__container {
  display: flex;
  gap: 60px;
}

.credit__img {
  overflow: hidden;
  border-radius: var(--border-radius);
  display: flex;
  justify-content: center;
  align-items: center;
}

.credit__img .img {
  height: 100%;
  width: unset;
}

.trade-in__img {
  position: relative;
  display: flex;
  align-items: center;
  justify-self: center;
  border-radius: 10px;
  overflow: hidden;
  height: 100%;
}

.trade-in .picture-img {
  height: 100%;
  object-fit: cover;
}

.trade-in__block {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  width: 100%;
  max-width: 416px;
}

.trade-in__content {
  display: flex;
  flex-direction: column;
  align-items: self-start;
  position: relative;
  justify-content: center;
  width: 100%;
  max-width: 465px;
  gap: 28px;
}

.tride-in__right {
  position: relative;
  width: 100%;
}

.trade-in__title-wrapper {
  top: 0;
  left: 0;
  position: absolute;
  background-color: #4e5561;
  padding: 13px 38px;
  width: 100%;
  z-index: 1;
}

.trade-in__title {
  text-align: start;
}

.trade-in__text {
  font-size: 20px;
}

.trade-in__form {
  width: 100%;
}

.trade-in .form-group {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.trade-in .input {
  height: 50px;
}

/* Test-drive ******************************************************************** */

.test-drive {
  overflow: hidden;
  padding: 120px 0;
  max-width: 1920px;
  margin: 0 auto;
}

.test-drive__container {
  position: relative;
  display: grid;
  grid-template-columns: 691fr 417fr 691fr;
  gap: 60px;
  max-width: unset;
  margin: 0;
  padding: 0;
}

.test-drive__img {
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-self: center;
  overflow: hidden;
  width: 100%;
  height: 100%;
}

.test-drive__img.img1 {
  border-radius: 0 10px 10px 0;
  object-position: right;
}

.test-drive__img.img2 {
  border-radius: 10px 0 0 10px;
  object-position: left;
}

.test-drive__img .picture-img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}

.test-drive__block {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  width: 100%;
  border-radius: 30px;
  position: relative;
  z-index: 1;
  padding: 40px 0;
  min-width: 320px;
}

.test-drive__content {
  display: flex;
  flex-direction: column;
  align-items: start;
  position: relative;
  justify-content: center;
  z-index: 1;
  width: 100%;
}

.test-drive__bg {
  position: absolute;
  justify-self: center;
  left: -19px;
  align-self: flex-start;
}

.test-drive__title {
  margin-bottom: 15px;
}

.test-drive__descr {
  font-size: 20px;
  margin-bottom: 30px;
}

.test-drive .form-group {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.test-drive .btn {
  width: 100%;
}

/*CREDIN *************************************************************************************************************/

.credit {
  overflow: hidden;
  position: relative;
  z-index: 1;
  padding: 100px 0;
  background-color: #4e5a66;
  color: #fff;
  background-image: url("../img/ico_big_percent.svg");
  background-repeat: no-repeat;
  background-position: bottom left;
}

.credit__container {
  display: flex;
  gap: 60px;
}

.credit__img {
  position: relative;
  display: flex;
  align-items: center;
  justify-self: center;
  border-radius: 10px;
  overflow: hidden;
}

.credit .picture-img {
  height: 100%;
  object-fit: cover;
}

.credit__block {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  width: 100%;
  max-width: 416px;
}

.credit__content {
  display: flex;
  flex-direction: column;
  align-items: self-start;
  position: relative;
  justify-content: space-between;
  width: 100%;
  max-width: 465px;
  height: 100%;
  gap: 28px;
}

.credit__left {
  position: relative;
  width: 100%;
}

.credit__title-wrapper {
  top: 0;
  left: 0;
  position: absolute;
  background-color: #4e5561;
  padding: 13px 38px;
  width: 100%;
  z-index: 1;
}

.credit__title {
  text-align: start;
}

.credit__text {
  font-size: 20px;
}

.credit__form {
  width: 100%;
}

.credit .form-group {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.credit .input {
  height: 50px;
}

/* Contacts *************************************************************************************************************/
.contacts {
  position: relative;
}

.contacts__container {
  width: 100%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.contacts__wrapper {
  padding: 34px 40px 40px;
}

.contacts__content {
  top: 70px;
  position: absolute;
  border-radius: 20px;
  color: #0b0d0c;
  background: #ffffffcc;
  backdrop-filter: blur(10px);
  z-index: 2;
  overflow: hidden;
}

.contacts__picture {
  display: flex;
  justify-content: flex-end;
}

.contacts__img {
  min-height: 202px;
  min-width: 445px;
  background-size: 100%;
  background-position: center 89%;
}

.contacts__logo-block {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 19px;
}

.contacts .stick {
  background-color: #0b0d0c;
  height: 30px;
}

.contacts__logo1 {
}

.contacts__logo2 {
}

.logo-marten {
  font-weight: 300;
  font-style: Light;
  font-size: 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.logo-marten .logo-text {
  font-size: 11px;
}

.contacts__list {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.contacts__addr {
  position: relative;
  font-size: 16px;
  display: flex;
  gap: 10px;
  align-items: center;
  justify-content: start;
}

.contacts__addr::before {
  content: "";
  position: relative;
  width: 20px;
  height: 20px;
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
}

.contacts__place::before {
  background-image: url("../img/ico_addr_black.svg");
}

.contacts__time::before {
  background-image: url("../img/ico_clock.svg");
}

.contacts__phone::before {
  background-image: url("../img/ico_phone_black.svg");
  font-size: 16px;
}

.contacts__text {
  font-size: 18px;
}

#map1 {
  height: 526px;
  z-index: 1;
  width: 100%;
  max-width: 100%;
  background: url("../img/map_placeholder_blur.jpg");
  background-repeat: no-repeat;
  background-position: center;
}

.webp #map1 {
  background: url("../img/map_placeholder.webp");
}
/**footer************************************************************************************************************/

.footer {
  background: #0b0d0c;
  color: #fff;
}

.footer__text-block {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.footer__text {
  font-size: 16px;
  font-weight: 400;
  /* color: #d6d6d6; */
  text-decoration: none;
  display: flex;
  align-items: flex-start;
  gap: 4px;
  display: flex;
  align-items: center;
}

.sinoby {
  /* display: flex; */
  /* align-items: flex-start; */
}

.sinoby img {
  margin-top: -2px;
}

.footer__top {
  padding: 40px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer__right {
  display: flex;
  flex-direction: column;
  align-items: end;
  justify-content: space-between;
  gap: 5px;
}

.footer__dislamer-btn {
  font-size: 16px;
  text-decoration: none;
}

.disclamer-hidden {
  display: none;
  text-align: left;
  padding: 35px 0;
}

.copyright {
  font-size: 12px;
}

.disclamer-text {
  white-space: pre-line;
}

.sokie_text {
  position: fixed;
  bottom: 12px;
  width: 80%;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #fff;
  padding: 20px;
  z-index: 99999;
  -webkit-box-shadow: 4px 4px 8px 0px rgba(34, 60, 80, 0.2);
  -moz-box-shadow: 4px 4px 8px 0px rgba(34, 60, 80, 0.2);
  box-shadow: 4px 4px 8px 0px rgba(34, 60, 80, 0.2);
}

.sokie_text.hide {
  display: none;
}

.sokie_text a {
  color: #000;
  text-decoration: underline;
}

.sokie_text p {
  max-width: 86%;
}

.sokie_text button {
  width: 190px;
  height: 44px;
}

/* **************************************************************************************************************************************** */

@media only screen and (max-width: 1600px) {
  .banner__content {
    padding-top: 10vw;
  }

  .test-drive__container {
    /* gap: 20px; */
  }
}

@media only screen and (max-width: 1279px) {
  .btn {
    font-size: 14px;
    padding: 6px 24px;
  }

  .header__place {
    display: none;
  }
  .banner {
    margin-top: 136px;
  }

  .banner__content {
    padding-top: 5vw;
  }

  .banner__title {
    font-size: 2vw;
  }

  .timer__content {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .timer__right,
  .timer__right {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }

  .timer__stick {
    display: none;
  }

  .timer form {
    width: 100%;
    max-width: 557px;
  }

  .timer .form-group {
    display: flex;
    flex-direction: column;
    width: 100%;
  }

  .item__top {
    gap: 10px;
    justify-content: space-between;
  }

  .item__right {
    flex-direction: column;
    align-items: center;
    gap: 10px;
    margin-top: 0;
  }

  .item__left {
    justify-content: center;
  }

  .cars__label span br {
    display: none;
  }

  .car__gallery {
    margin-top: 0;
  }
  .item__car-img-block,
  .car__gallery {
    /* width: 100%; */
    display: flex;
    justify-content: center;
    height: 78px;
  }

  .car__gallery .swiper-wrapper {
    padding: 0;
  }

  .car__gallery .swiper {
    width: clamp(250px, 100%, 600px);
    padding-left: 0;
    padding-bottom: 20px;
    height: unset;
    padding: 0;
    margin: 0;
  }

  .car__gallery .swiper-pagination-horizontal.swiper-pagination-bullets,
  .swiper-horizontal
    > .swiper-pagination-bullets
    .swiper-pagination-car-gallery {
    position: absolute;
    left: unset !important;
    bottom: 0;
    z-index: 1;
    gap: 6px;
    display: flex;
    flex-direction: row;
  }

  .item__gallery-switch-btns {
    flex-direction: row;
    margin-top: unset;
  }

  .item__gallery-switch-btn {
    writing-mode: horizontal-tb;
  }

  .item__gallery-switch-btn::after {
    bottom: 0px;
    left: 0;
    width: 0%;
    height: 1px;
    background-color: #4e5a66;
    opacity: 0;
  }

  .item__gallery-switch-btn.active::after {
    width: 100%;
    height: 1px;
    opacity: 1;
  }

  .trade-in__block {
    padding: 40px;
  }
}

@media only screen and (max-width: 1149px) {
  :root {
    --section-mb: 80px;
  }

  .title {
    font-size: 45px;
  }

  .timer {
    margin-bottom: 50px;
  }

  .cars__item {
    max-width: 768px;
  }

  .item__top {
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }

  .item__left {
    width: 100%;
  }

  .item__buttons {
    flex-direction: column;
    align-items: center;
  }

  .cars .item__top-text {
    align-items: center;
  }

  .item__car-img-block,
  .car__gallery {
    width: 100%;
  }
}

@media only screen and (max-width: 991px) {
  .cookie_text {
    display: block;
    width: 95%;
  }

  .cookie_text p {
    max-width: 100%;
    font-size: 11px;
  }

  .cookie_text button {
    width: 100%;
    margin-top: 10px;
    height: 40px;
  }

  .header .burger {
    display: block;
    margin-left: auto;
    order: 2;
  }

  .banner {
    margin-top: 120px;
  }

  .header__addr-wrap {
    width: unset;
  }

  .header__content {
    padding: 10px 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
  }

  .header__addr-wrap.place {
    display: none;
  }

  .header__addr-wrap.phone {
    order: 4;
    grid-column: span 2;
  }

  ._scroll .header__bottom {
    top: 80px;
  }

  .burger-menu {
    width: 100%;
    max-width: 375px;
    position: absolute;
    top: 0;
    right: 0;
    background: #4e5a66;

    box-shadow: -1px 4px 33px 3px #4e5561ad;
    color: #fff;
    display: none;
  }

  .header__logo-block {
    order: -1;
    width: 263px;
  }

  .header__nav,
  .nav__list {
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }

  .nav__link {
    font-size: 16px;
  }

  .nav__link.no-mob {
    display: none;
  }

  .header .active {
    display: block;
  }

  .btn,
  select,
  input {
    width: 100%;
  }

  .header__btn.btn {
    max-width: 300px;
    min-width: unset;
    order: 3;
    display: none;
  }

  .banner__slide {
    background-size: 1350px;
    background-position: center 0px;
  }

  .banner__wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .item__top-text {
    flex-direction: column;
    gap: 5px;
    padding: 4px;
  }

  .item__title {
  }

  .credit__content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
  }

  .credit__img-side {
    /* display: none; */
  }

  .contacts {
  }

  .contacts__container {
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
  }

  .contacts__content {
    position: static;
    background: none;
    box-shadow: none;
    align-items: center;
    padding: 30px 0;
  }
  .contacts__wrapper {
    padding: 0;
  }
  .footer__top {
    flex-direction: column;
    align-items: center;
    gap: 30px;
  }

  .footer__right {
    align-items: center;
  }

  .footer__text-block {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .footer__text {
    text-align: center;
  }
}
@media only screen and (max-width: 767px) {
  :root {
    --section-mb: 20px;
  }
  .trade-in,
  .credit {
    padding: 40px 0;
  }
  .cars {
    margin-bottom: 30px;
  }

  .yurinfo {
    width: 100%;
  }

  .container {
    padding: 0 15px;
  }

  .title {
    font-size: 30px;
    text-align: center;
  }

  .credit__descr,
  .trade-in__descr {
    text-align: center;
  }

  .header__content {
    flex-wrap: wrap;
  }

  .header__right {
    order: 2;
    width: 100%;
    display: flex;
    justify-content: center;
  }

  .header__phone {
    order: 2;
  }

  .header__top {
    min-height: 74px;
    display: flex;
    align-items: center;
  }

  .header__logo .picture-img {
    gap: 5px;
    height: 100%;
  }

  .header__logo1 .picture-img {
    width: 100px;
  }

  /* .header__logo2 .picture-img {
    width: 121px;
    height: 38px;
  } */

  .header__logo2 {
    display: flex;
    align-items: center;
  }

  .header__btn {
    display: none;
  }

  .banner {
    margin-top: 120px;
  }

  .banner__content {
    width: 100%;
    padding-top: 8vw;
  }
  .banner__container .br_mob {
    display: block;
  }
  .banner__title-block {
    padding: 2vw 1vw;
    background: linear-gradient(89.99deg, rgba(60, 62, 64, 0) 0%, rgba(60, 62, 64, 0.7) 32%, rgba(60, 62, 64, 0.7) 66%, rgba(60, 62, 64, 0) 100%);
  }
  .banner__title {
    font-size: 3.2vw;
  }
  .banner__title1 {
    font-size: 5vw;
  }
  .banner__title2 {
    font-size: 4vw;
  }
  
  .timer {
    padding-bottom: 40px;
    margin-bottom: 30px;
    overflow: hidden;
    width: 100%;
  }

  .timer__content {
    padding-bottom: 0;
  }

  .timer__text1,
  .timer__text2,
  .timer__title {
    text-align: center;
  }

  .timer__title {
    margin-bottom: 0;
    font-size: 20px;
  }

  .timer__text1,
  .timer__text2 {
    font-size: 20px;
  }

  .timer .form-group {
    min-width: unset;
  }

  .timer .form-group {
    flex-direction: column;
  }

  .timer__btn {
    width: unset;
  }

  .timer__megatimer {
    height: 92px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
    align-items: center;
  }

  .timer__megatimer .timer_assembled {
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: center;
    top: 0px;
    transform: scale(0.8) !important;
    position: absolute !important;
    width: 585px;
    height: 115px;
  }

  .cars__title {
    margin-bottom: 30px;
  }

  .item__image {
    min-height: 123px;
  }

  .item__main-block::after {
    background-position: 50% 240px;
    background-size: 95%;
  }

  .item__image .picture-img {
    width: 100%;
  }

  .item__colors-dots {
    gap: 9px;
  }

  .color-name {
    font-size: 12px;
    white-space: wrap;
    max-width: 100px;
    text-align: center;
    min-height: 32px;
    bottom: -38px;
    z-index: 10;
  }
  .cars .car__gallery-block {
    display: block;
  }

  .cars__links {
    display: none;
  }

  .item__title {
    font-size: 25px;
  }

  .item__top-block {
  }

  .item__main-block {
  }

  .item__right {
    align-items: center;
  }

  .item__colors {
    gap: 15px;
    flex-direction: column;
  }
  .item__colors-dots {
    flex-direction: row;
  }
  .item__car-img img {
    background-size: cover;
  }

  .item__gallery-slider {
    width: 330px;
  }

  .item__left {
    width: 100%;
    padding-top: 0;
    align-items: flex-start;
  }

  .item__link-content {
    width: 100%;
    white-space: wrap;
  }

  .item__right {
    gap: 10px;
  }

  .item__car-img {
    padding-top: 0;
  }

  .item__gallery {
    width: 330px;
  }

  .item__main-block {
    gap: 20px;
  }

  .item__main-block::before {
    background-position: 120% 40%;
    background-size: contain;
  }

  .item__presents-list,
  .item__buttons {
    gap: 12px;
  }

  .cars__list {
    gap: 20px;
  }

  .trade-in__container {
    flex-direction: column-reverse;
  }

  .credit__container {
    flex-direction: column;
    max-width: unset;
  }
  .trade-in__img-right,
  .credit__img-side {
    max-width: 465px;
    align-self: center;
  }
  .contacts__left,
  .trade-in__block,
  .credit__block {
    max-width: unset;
    padding: 0;
  }

  .test-drive {
    padding: 30px 0;
  }

  .test-drive__container {
    display: flex;
    flex-direction: column;
    gap: 0;
  }

  .test-drive .test-drive__img {
    border-radius: 10px;
  }

  .contacts__left {
    height: unset;
    padding: 20px;
  }

  #map1 {
    height: 400px;
  }

  .reviews__pagination {
    /* min-height: 25px; */
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 15px;
  }

  .footer__top {
    gap: 10px;
  }

  html {
    overflow-x: hidden;
  }

  body {
    width: 100%;
    overflow-x: hidden;
  }

  .car__gallery .swiper {
    width: 500px;
  }
}

@media only screen and (max-width: 500px) {
  .banner__slide {
    /* min-height: 400px; */
  }

  .offer-label {
    font-size: 16px;
    /* padding-left: 64px; */
  }

  .timer__text {
    font-size: 18px;
  }

  .btn {
    min-width: unset;
    width: 100%;
  }

  .btns {
    width: 100%;
  }

  .credit__block {
    padding: 20px;
  }

  .credit__bottom-img {
    display: none;
  }

  .credit__img-side {
    display: block;
  }

  .item__link-content,
  .item__presents-link {
    min-width: unset;
    font-size: 18px;
  }

  .timer__megatimer {
    height: 80px;
  }

  .timer__megatimer .timer_assembled {
    display: flex;
    transform: scale(0.7) !important;
    width: 756px;
    height: 120px;
  }

  .item__top-block {
    padding: 10px 2px;
  }

  .item__title {
    font-size: 21px;
  }

  .car__gallery .swiper {
    width: 317px;
  }
}

@media only screen and (max-width: 420px) {
  .burger-menu {
    max-width: unset;
  }

  .banner__slide {
    background-size: 120%;
    /* min-height: 370px; */
  }

  .banner__title2 {
    font-size: 5vw;
  }
  .banner__title1 {
    font-size: 6vw;
  }

  .timer__text2 {
    text-align: center;
  }

  .timer__megatimer .timer_assembled {
    display: flex;
    transform: scale(0.6) !important;
    width: 756px;
    height: 120px;
    top: -11px;
  }
}

@media only screen and (max-width: 390px) {
  .timer__megatimer .timer_assembled {
    display: flex;
    transform: scale(0.53) !important;
    width: 756px;
    height: 120px;
  }
}
