@charset "UTF-8";
/* Base */
html {
  box-sizing: border-box;
}

/* Reset and base styles  */
* {
  padding: 0px;
  margin: 0px;
  border: none;
}

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

/* Links */
a,
a:link,
a:visited {
  text-decoration: none;
}

a:hover {
  text-decoration: none;
}

/* Common */
aside,
nav,
footer,
header,
section,
main {
  display: block;
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
  font-size: inherit;
  font-weight: inherit;
}

ul,
ul li {
  list-style: none;
}

img {
  vertical-align: top;
  -o-object-fit: cover;
     object-fit: cover;
}

img,
svg {
  max-width: 100%;
  height: auto;
}

/* Form */
input,
textarea,
button,
select {
  font-family: inherit;
  font-size: inherit;
  color: inherit;
  background-color: transparent;
}

input::-ms-clear {
  display: none;
}

button,
input[type=submit] {
  display: inline-block;
  box-shadow: none;
  background-color: transparent;
  background: none;
  cursor: pointer;
}

input:focus,
input:active,
button:focus,
button:active {
  outline: none;
}

button::-moz-focus-inner {
  padding: 0;
  border: 0;
}

label {
  cursor: pointer;
}

select {
  outline: none;
  border: none;
}

@font-face {
  font-family: "Sansation";
  src: url("./../fonts/sansation/SansationRegular.eot");
  src: local("Sansation Regular"), local("SansationRegular"), url("SansationRegular.eot?#iefix") format("embedded-opentype"), url("./../fonts/sansation/SansationRegular.woff") format("woff"), url("./../fonts/sansation/SansationRegular.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "Sansation";
  src: url("./../../fonts/sansation/SansationBold.eot");
  src: local("Sansation Bold"), local("SansationBold"), url("SansationBold.eot?#iefix") format("embedded-opentype"), url("./../fonts/sansation/SansationBold.woff") format("woff"), url("./../fonts/sansation/SansationBold.ttf") format("truetype");
  font-weight: bold;
  font-style: normal;
}
@font-face {
  font-family: "Sansation";
  src: url("./../fonts/sansation/SansationLight.eot");
  src: local("Sansation Light"), local("SansationLight"), url("SansationLight.eot?#iefix") format("embedded-opentype"), url("./../fonts/sansation/SansationLight.woff") format("woff"), url("./../fonts/sansation/SansationLight.ttf") format("truetype");
  font-weight: 300;
  font-style: normal;
}
:root {
  --container-width: 1440px;
  --container-padding: 20px;
  --font-family: "Sansation", sans-serif;
  --font-second: "Montserrat", sans-serif;
  --text-size: 22px;
  --description-size: 28px;
  --btn-size: 18px;
  --page-bg: #fff;
  --text-color: #fff;
  --text-color-black: #0c1f28;
  --link-color: #091920;
  --title-color-black: #192a31;
  --stroke-black: #235d77;
  --stroke-light: #fff;
}

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

body {
  background-color: var(--page-bg);
  color: var(--text-color);
  font-family: var(--font-family);
  font-size: 18px;
  font-weight: normal;
  position: relative;
  overflow-x: hidden;
  min-height: 100%;
}

.wrapper {
  height: 100%;
}

img {
  display: inline-block;
}

a {
  color: inherit;
}

.none {
  display: none !important;
}

.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease;
  z-index: 100;
}

.show-popup .overlay {
  opacity: 1;
  visibility: visible;
}
.show-menu .overlay {
  opacity: 1;
  visibility: visible;
}

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

.no-scroll {
  overflow-y: hidden;
}

.text-left {
  text-align: left;
}

.text-right {
  text-align: right;
}

.text-center {
  text-align: center;
}

.d-flex {
  display: flex;
}

.flex-center {
  justify-content: center;
}

.bottom {
  margin-top: auto;
}

/* Контейнеры */
.container {
  margin: 0 auto;
  padding: 0 var(--container-padding);
  max-width: var(--container-width);
  width: 100%;
}

.container-big {
  max-width: 1480px;
  margin: 0 auto;
  width: 100%;
}

.container-full {
  padding: 0 var(--container-padding);
  max-width: 100%;
}

html,
body {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.footer {
  margin-top: auto;
}

/* Blocks */
.header {
  padding: 20px 0;
  position: absolute;
  top: 0;
  z-index: 9;
  width: 100%;
  transition: top 0.3s ease-in-out, background 0.3s ease-in-out;
}
.header__row {
  display: flex;
  align-items: center;
  gap: 10px;
  justify-content: space-between;
  background-color: transparent;
}
.header__center {
  display: flex;
  gap: 42px;
  max-width: 514px;
  width: 100%;
}
.header__link {
  display: flex;
  align-items: center;
  gap: 15px;
}
.header__link span {
  font-size: 20px;
}

.logo {
  max-width: 100px;
}
.logo__link {
  width: 100%;
  display: inline-block;
}

.header.header-scroll {
  z-index: 99;
}

.header.header-scroll {
  position: fixed;
  background: rgba(226, 226, 226, 0.6);
  -webkit-backdrop-filter: blur(7.5px);
  backdrop-filter: blur(7.5px);
  top: -100px;
}

.header.header-show {
  top: 0;
  transition: top 0.3s ease-in-out;
}

.header.header-show .btn-border {
  font-weight: 700;
  font-size: 16px;
  text-transform: uppercase;
  text-align: center;
  color: #091920;
}

.header.header-show .call-me {
  display: none;
}

.bid {
  display: none;
}

.header.header-show .bid {
  display: block;
}

.header.header-show .header__center {
  display: none;
}
.header__center.header-all .header__btn {
  display: none;
}
.header__center.header-all .bid {
  display: block;
	text-transform: uppercase;
	font-weight: 700;
}
.header-all .bid-all-page {
	color: #091920;
}
.header-all {
	justify-content: center;
}
.burger-menu {
  background-color: #091920;
  padding: 60px 0 42px;
  position: fixed;
  width: 33%;
  height: 100vh;
  max-height: var(--vh, 100vh);
  top: 0;
  right: -100vw;
  bottom: 0;
  z-index: 109;
  transition: all 0.5s ease-in-out;
  opacity: 0;
  visibility: hidden;
}
.burger-menu__nav {
  padding: 50px 0;
  border-top: 3px solid #fff;
  border-bottom: 3px solid #fff;
  margin: 45px 0 30px;
}
.burger-menu__list {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.burger-menu__link {
  font-weight: 400;
  font-size: 28px;
  line-height: 1.1;
  text-transform: uppercase;
  color: #fff;
}

.logo-burger {
  text-align: center;
}
.logo-burger .logo-link {
	display: inline-block;
	max-width: 80px;
}

.burger-menu.show {
  right: 0;
  transition: all 0.3s ease-in;
  opacity: 1;
  visibility: visible;
}

.btn {
  font-family: var(--font-family);
  font-weight: 700;
  font-size: 16px;
  text-transform: uppercase;
  color: #091920;
  position: relative;
  display: flex;
  justify-content: center;
  width: -moz-fit-content;
  width: fit-content;
}

.btn-border {
  border: 1.5px solid #091920;
  padding: 16px 0;
  max-width: 260px;
  width: 100%;
  max-height: 50px;
}

.btn-light {
  color: #fff;
  background: url("./../img/btn-bg.png");
  background-repeat: no-repeat;
  border: none;
  outline: none;
	position: relative;
	overflow: hidden;
	z-index: 2;
	
}
.btn-splash {
	color: #fff;
	transition: transform 0.3s ease-in;
}
.btn-splash:before {
    position: absolute;
    content: '';
    display: inline-block;
    top: -180px;
    left: 0;
    width: 30px;
    height: 100%;
    background-color: #fff;
    animation: shiny-btn1 5s ease-in-out infinite;
	
}
.btn-splash:hover{
  transform: scale(1.05);
  transition: transform 0.3s ease-in-out;
}
.btn-splash:active{
  box-shadow:  4px 4px 6px 0 rgba(255,255,255,.3),
              -4px -4px 6px 0 rgba(116, 125, 136, .2), 
    inset -4px -4px 6px 0 rgba(255,255,255,.2),
    inset 4px 4px 6px 0 rgba(0, 0, 0, .2);
}


@-webkit-keyframes shiny-btn1 {
    0% { -webkit-transform: scale(0) rotate(45deg); opacity: 0; }
    80% { -webkit-transform: scale(0) rotate(45deg); opacity: 0.5; }
    81% { -webkit-transform: scale(4) rotate(45deg); opacity: 1; }
    100% { -webkit-transform: scale(50) rotate(45deg); opacity: 0; }
}

.btn-light-mini {
  background-image: url("./../img/btn-bg-mini-catalog.png");
  max-width: 160px;
  display: flex;
  align-items: center;
  gap: 15px;
}

.btn-big {
  background-image: url("./../img/btn-bg-big.png");
  max-width: 300px;
  padding: 12px 0;
}

.header__btn > img, .header__btn > svg {
  
}

.main-block {
  background: #a0adb3;
  min-height: 780px;
  padding-top: 170px;
  position: relative;
  z-index: 2;
}
.main-block__inner {
  max-width: 1110px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  gap: 10px;
  position: relative;
  border-bottom: 1px solid #4b6b7a;
  padding-bottom: 30px;
}
.main-block__title {
  font-size: 36px;
  font-weight: 300;
  line-height: 1.1;
  text-transform: uppercase;
  color: #192a31;
  max-width: 518px;
}
.main-block__title span {
  color: #0c1f28;
  font-weight: 700;
}
.main-block__descriptions {
  max-width: 510px;
  display: flex;
  flex-direction: column;
  gap: 25px;
}
.main-block__text {
  font-weight: 300;
  font-size: 18px;
  line-height: 1.1;
  color: #192a31;
}

.line-vertical {
  position: absolute;
  width: 100%;
  background-color: #4b6b7a;
  height: 2px;
  top: 320px;
}

.line-horizontal {
  width: 1px;
  height: 100%;
  position: absolute;
  background-color: #4b6b7a;
  left: 50%;
  transform: translateX(-50%);
  top: 0;
}

.display {
  color: #fff;
  position: relative;
  width: 100%;
}
.display__car .car-image {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  z-index: 8;
  max-width: 1500px;
  max-height: 714px;
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
}
.display__car .car-gelik {
  top: -427px;
}
.display__car .car-bmw {
  top: -487px;
}
.display__car .car-rover {
  top: -467px;
}
.display__car .car-lexux {
  top: -320px;
}
.display__car .car-porsche {
  top: -290px;
  max-width: 1696px;
}
.display__car .car-bmw-tight,
.display__car .car-suv {
  top: -467px;
  transform: translateX(-50%) scale(0.8);
  transform-origin: 50% 100%;
}
.display__car .car-gelik-tight {
  top: -517px;
  transform: translateX(-50%) scale(0.8);
  transform-origin: 50% 100%;
}
.display__model {
  text-wrap: nowrap;
  font-family: var(--font-second);
  font-weight: normal;
  font-size: 220px;
  line-height: 1.1;
  text-transform: uppercase;
    position: absolute;
    top: -100%;
    left: 50%;
    transform: translateX(-50%);
    opacity: 0.2;
    color: #a0adb3;
    text-shadow: -2px -2px 0 #192a31, 2px -2px 0 #192a31, -2px 2px 0 #192a31, 2px 2px 0 #192a31, 0 -2px 0 #192a31, 0 2px 0 #192a31, -2px 0 0 #192a31, 2px 0 0 #192a31;
    white-space: nowrap;
    z-index: 8;
  /* Для поддержки в Safari */
  text-stroke: 2px #192a31;
}
.display__footer {
  display: flex;
  justify-content: center;
  min-height: 440px;
}
.display__content {
  max-width: 1200px;
  padding-top: 187px;
}
.display__left {
  background: #091920;
  width: 100%;
}
.display__left .display__content {
  max-width: 700px;
  margin-left: auto;
}
.display__title {
  font-size: 28px;
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  margin-bottom: 30px;
}
.display__subtitle {
  font-size: 22px;
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: 0.01em;
  color: #fff;
}
.display__right {
  background: #0c1f28;
  width: 100%;
}
.display__right .display__content {
  max-width: 597px;
  padding-left: 60px;
}
.display__right .btn {
  margin-left: auto;
}
.display__list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  max-width: 597px;
  row-gap: 30px;
  margin-bottom: 72px;
}
.display__item {
  max-width: 257px;
  width: 100%;
}
.display__item p {
  font-weight: 300;
  font-size: 18px;
  line-height: 96%;
}

.swiper {
  z-index: 8;
  overflow-x: visible !important;
  overflow-y: visible !important;
}

.swiper-wrapper {
  z-index: 8;
}

.car-pagination {
  position: absolute;
  top: -50% !important;
  left: 11% !important;
  display: inline-block;
  height: auto;
  bottom: unset;
  width: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  z-index: 9;
  max-width: 50px;
}

.swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background: #0c1f28;
  opacity: 1;
}

.swiper-pagination-bullet-active {
  width: 20px;
  height: 20px;
  background: transparent;
  border: 1px solid #0c1f28;
  border-radius: 50%;
}

.brands__item.swiper-slide {
  width: -moz-max-content;
  width: max-content;
  
}
.brands__item img {
	max-width: 80px
}

.swiper-custom-btn {
  display: flex;
  align-items: center;
  gap: 40px;
  margin-top: 40px;
}

.swiper-custom-btn-catalog {
  justify-content: end;
}

.swiper-custom-next,
.swiper-custom-prev {
  cursor: pointer;
}

.catalog-car-pagination {
  position: absolute;
  display: flex;
  z-index: 9;
  justify-content: center;
}
.catalog-car-pagination .swiper-pagination-bullet {
  border-radius: 5px;
  max-width: 60px;
  width: 100%;
  height: 5px;
  background: #fff;
  color: #fff;
}
.catalog-car-pagination .swiper-pagination-bullet-active {
  border: 1px solid #fff;
  background: transparent;
}

.brands {
  padding: 40px 0;
}
.brands__row {
  overflow: hidden;
}
.brands__inner {
  align-items: center;
}

.info {
  background-color: #4b6b7a;
}
.info__item {
  display: flex;
  align-items: center;
  gap: 60px;
}
.info__image {
  max-width: 50%;
  width: 100%;
	max-height: 470px;
}
.info__image img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
	max-height: 470px;
}
.info__wrap {
  width: 50%;
}
.info__block {
  width: 100%;
}
.info__title {
  max-width: 631px;
  margin-bottom: 40px;
}
.info__text {
  margin-bottom: 50px;
  max-width: 608px;
}
.info__bottom .info__block {
  max-width: 631px;
  margin-left: auto;
}

.title {
  font-weight: 400;
  font-size: 28px;
  line-height: 1.1;
  letter-spacing: 0.01em;
  text-transform: uppercase;
}

.text {
  font-weight: 300;
  font-size: 20px;
  line-height: 1.1;
}

.banner {
  min-height: 734px;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  background-color: #686868;
  padding-bottom: 51px;
  display: flex;
  align-items: end;
}
.banner__row {
  max-width: 1210px;
  margin: 0 auto;
  height: 100%;
}
.banner__top {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  margin-bottom: 15px;
}
.banner__title {
  font-weight: 700;
  font-size: 36px;
  line-height: 1.1;
  letter-spacing: 0.01em;
  text-transform: uppercase;
}
.banner__text {
  font-weight: 400;
  font-size: 20px;
  line-height: 1.2;
  max-width: 807px;
}

.text-wrap {
  display: flex;
  justify-content: end;
  padding-right: 28px;
}

.service {
  display: flex;
}
.service__content {
  max-width: 50%;
  width: 100%;
  background-color: #235d77;
  padding-right: 40px;
  padding-top: 70px;
}
.service__list {
  max-width: 640px;
  margin-left: auto;
  display: flex;
  flex-direction: column;
  gap: 80px;
}
.service__item {
  display: flex;
  justify-content: space-between;
}
.service__item .btn-border {
  max-width: 220px;
  background-size: 220px;
  background-image: url("./../img/btn-bg-mini.png");
}
.service__title {
  margin-bottom: 20px;
}
.service__text {
  font-size: 18px;
  max-width: 345px;
}
.service__link {
  display: flex;
  align-items: center;
  gap: 20px;
}
.service__img {
  max-width: 50%;
  width: 100%;
  max-height: 720px;
}
.service__img img {
  width: 100%;
  max-height: 720px;
  -o-object-fit: cover;
     object-fit: cover;
}

.comprehensive {
  position: relative;
}
.comprehensive__top {
  background-color: #091920;
  background-repeat: no-repeat;
  background-size: cover;
  padding: 100px 0 63px;
  text-align: center;
}
.comprehensive__content {
  max-width: 999px;
  margin: 0 auto;
}
.comprehensive__title {
  margin-bottom: 40px;
}
.comprehensive__grad {
  position: absolute;
  left: 0;
  right: 0;
  z-index: 2;
}
.comprehensive__grad .grad {
  width: 100%;
}
.comprehensive__image {
  width: 100%;
}
.comprehensive__image img {
  width: 100%;
}

.logo-comprehensive {
  display: none;
}

.comprehensive__grad-bt {
  display: none;
}

.form-section {
  display: flex;
  color: #0c1f28;
}
.form-section__row {
  display: flex;
  gap: 50px;
  padding: 100px 0;
}
.form-section__row .form-section__right {
  padding: 0;
}
.form-section__row .form-section__img {
  min-height: 720px;
}
.form-section__left {
  width: 50%;
	max-height: 770px;
}
.form-section__image-wrap {
  margin-left: auto;
  width: 100%;
	height: 100%
}
.form-section__img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.form-section__right {
  width: 50%;
  padding: 60px 0 44px 50px;
}
.form-section__content {
  max-width: 649px;
}
.form-section__title {
  font-weight: 400;
  font-size: 28px;
  line-height: 1;
  text-transform: uppercase;
  color: inherit;
  margin-bottom: 30px;
}
.form-section__text {
  font-weight: 400;
  font-size: 20px;
  line-height: 1;
  color: inherit;
  margin-bottom: 40px;
}
.form-section__list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  margin-bottom: 40px;
}
.form-section__item {
  display: flex;
  align-items: center;
  gap: 15px;
}
.form-section__item span {
  font-weight: 300;
  font-size: 18px;
  line-height: 0.9;
  color: inherit;
}
.form-section__item svg {
	width: 30px;
	height: 30px;
}

.form__label {
  font-weight: 400;
  font-size: 22px;
  line-height: 1;
  color: inherit;
  margin-bottom: 10px;
  display: inline-block;
}
.form__input {
  max-width: 450px;
  width: 100%;
  min-height: 50px;
  border: 1px solid rgba(35, 93, 119, 0.6);
  padding: 0 15px;
  color: inherit;
}
.form__btn {
  font-weight: 700;
  font-size: 18px;
  text-transform: uppercase;
  text-align: center;
  color: inherit;
  display: flex;
  justify-content: center;
  align-items: center;
}

.input-wrapper {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 20px;
}

.check {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 30px;
}
.check__text {
  font-weight: 300;
  font-size: 14px;
  line-height: 90%;
  color: #0c1f28;
  display: inline-block;
}

.custom-checkbox {
  display: flex;
  align-items: center;
  justify-content:center;
  position: relative;
  width: 19px;
  height: 19px;
}

.custom-checkbox input {
  position: absolute;
  opacity: 0;
  visibility: hidden;
  width: 0;
  height: 0;
}

.checkmark {
  display: flex;
  align-items: center;
  justify-content:center;
  width: 100%;
  height: 100%;
  border: 2px solid #235d77; /* Цвет рамки */
  border-radius: 5px; /* Скругление углов */
  position: relative;
}

.checkmark-icon {
  display: none;
}

.custom-checkbox input:checked + .checkmark > .checkmark-icon {
  display: block;
}
.custom-checkbox .wpcf7-not-valid-tip {
	display: none;
}

.custom-checkbox input[type="checkbox"] {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}


.custom-checkbox input[type="checkbox"]:checked + .checkmark .checkmark-icon {
  display: block;
}


.form-pop .wpcf7-form {
	max-width: 419px;
}

.form-section-catalog {
  color: #fff;
}
.form-section-catalog .form__input {
  border-color: rgba(255, 255, 255, 0.6);
}
.form-section-catalog svg path {
  stroke: var(--stroke-light);
  opacity: 0.6;
}
.form-section-catalog .check__text {
  color: #0c1f28;
  background-color: rgba(255, 255, 255, 0.8);
  border-radius: 4px;
  padding: 3px 19px 3px 10px;
}
.form-section-catalog .checkmark {
  border-color: #fff;
  opacity: 0.6;
}
.form-section-catalog .checkmark-icon path {
  stroke: #a0adb3;
  opacity: 1;
}

.catalog-top {
  background-color: #091920;
  margin-top: 90px;
}

.catalog-swiper-wrapper {
  justify-content: space-between;
}

.breadcrumbs {
  padding: 40px 0 62px;
}
.breadcrumbs .container {
  display: flex;
  align-items: center;
  gap: 90px;
}
.breadcrumbs__page {
  font-weight: 400;
  font-size: 20px;
  color: #fff;
}

.breadcrumbs-contact .breadcrumbs__page {
  color: #091920;
}
.breadcrumbs-contact .btn-border {
  max-width: 160px;
  display: flex;
  align-items: center;
  gap: 15px;
}

.breadcrumbs-servives .breadcrumbs__page {
  color: #091920;
}

.catalog-filter {
  padding-bottom: 35px;
}
.catalog-filter__top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  margin-bottom: 40px;
}
.catalog-filter__title {
  font-weight: 700;
  font-size: 28px;
  line-height: 1.1;
  text-transform: uppercase;
  color: #fff;
}
.catalog-filter__text {
  font-weight: 700;
  font-size: 20px;
  line-height: 110%;
  text-transform: uppercase;
  color: #fff;
}
.filters {
  display: flex;
  align-items: center;
  gap: 20px;
  justify-content: space-between;
}
.filter {
  position: relative;
  max-width: 250px;
  width: 100%;
}
.filter__item {
  border: 1px solid rgba(255, 255, 255, 0.6);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 15px 10px;
  cursor: pointer;
	font-size:16px;
}
.filter__item span {
    white-space: nowrap;
    max-width: 202px;
    overflow: hidden;	
}

.filter__sublist {
  display: none;
  position: absolute;
  background-color: #091920;
  width: 100%;
  padding: 0 10px;
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-top: none;
  max-height: 684px;
  overflow-y: auto;
  z-index: 11;
  /* Стилизация скроллбара */
  /* Стили для стрелок скролла */
}
.filter__sublist.active {
  display: block;
}
.filter__sublist::-webkit-scrollbar {
  width: 14px; /* Ширина скроллбара */
}
.filter__sublist::-webkit-scrollbar-track {
  background: #091920; /* Фон дорожки */
}
.filter__sublist::-webkit-scrollbar-thumb {
  background: #fff; /* Цвет ползунка */
  width: 14px;
  height: 43px;
  max-width: 43px;
}
.filter__sublist::-webkit-scrollbar-button {
  background: #fff;
}
.filter__sublist::-webkit-scrollbar-button:single-button:vertical:decrement {
  background: url('data:image/svg+xml;charset=UTF-8,<svg width="10" height="10" viewBox="0 0 10 10" xmlns="http://www.w3.org/2000/svg"><path d="M5 2 L2 6 H8 Z" fill="white"/></svg>') no-repeat center;
  background-size: contain;
}
.filter__sublist::-webkit-scrollbar-button:single-button:vertical:increment {
  background: url('data:image/svg+xml;charset=UTF-8,<svg width="10" height="10" viewBox="0 0 10 10" xmlns="http://www.w3.org/2000/svg"><path d="M5 8 L2 4 H8 Z" fill="white"/></svg>') no-repeat center;
  background-size: contain;
}
.filter__subitem {
  padding: 11px 0;
  cursor: pointer;
  font-size: 16px;
}

.catalog {
  background-color: #fff;
  padding: 70px 0 60px;
}
.catalog__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px 25px;
}
.catalog-car {
	position: relative;
  max-width: 450px;
  box-shadow: 5px 5px 10px 0 rgba(0, 0, 0, 0.25);
}
.catalog-car__img {
  max-width: 450px;
  max-height: 340px;
  overflow: hidden;
}
.catalog-car__img img {
  -o-object-fit: cover;
     object-fit: cover;
  min-height: 340px;
}
.catalog-car__info {
	display: block;
  padding: 33px 20px 23px;
}
.catalog-car__mark {
	font-weight: 500;
  font-size: 22px;
	color: #091920;margin-bottom: 10px;text-transform: uppercase;
}
.catalog-car__title {
  font-weight: 700;
  font-size: 28px;
  line-height: 1.1;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  color: #091920;
  margin-bottom: 10px;
}
.catalog-car__text {
  font-weight: 400;
  font-size: 22px;
  line-height: 1.1;
  letter-spacing: 0.01em;
  color: #091920;
  margin-bottom: 30px;
}
.catalog-car__footer {
  display: flex;
  justify-content: space-between;
  align-items: end;
}
.catalog-car__h3 {
  font-weight: 300;
  font-size: 14px;
  line-height: 96%;
  color: rgba(9, 25, 32, 0.6);
  margin-bottom: 10px;
}
.catalog-car__p {
  font-weight: 700;
  font-size: 20px;
  line-height: 96%;
  color: #091920;
}
.card-top {
  margin-top: 90px;
}
.card-top .btn-border {
  align-items: center;
  gap: 15px;
  max-width: 160px;
}
.card-top .breadcrumbs__page {
  color: #091920;
}

.card-info {
  color: #091920;
}
.card-info__top {
  padding-bottom: 60px;
}
.card-info__brand {
  margin-bottom: 40px;
  display: flex;
  gap: 20px;
}
.card-info__brand-wrap-img {
	max-width: 150px;
}
.card-info__brand img {
	object-fit: contain;
}
.card-info__brand-title {
  font-weight: 400;
  font-size: 28px;
  line-height: 1.1;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  color: #091920;
  margin-bottom: 5px;
}
.card-info__brand-text {
  font-weight: 300;
  font-size: 26px;
  line-height: 1.1;
  letter-spacing: 0.01em;
  color: #091920;
}
.card-info__about {
  display: flex;
  gap: 40px;
}
.card-info__left {
  max-width: 730px;
  overflow: hidden;
}
.card-info__left .card-swiper-mini-two {
  margin-bottom: 20px;
}
.card-info__left .card-swiper-mini-two .swiper-slide {
  width: 100%;
  min-height: 570px;
}
.card-info__left .card-swiper-mini-two .swiper-slide img {
  width: 100%;
  height: 570px;
  -o-object-fit: cover;
     object-fit: cover;
}
.card-info__left .card-swiper-mini {
  
  margin-left: 0;
  overflow: hidden !important;
}
.card-info__left .card-swiper-mini .swiper-slide {
  max-width: 120px;
  max-height: 80px;
}
.card-info__left .card-swiper-mini .swiper-slide img {
  width: 100%;
  max-height: 80px;
  -o-object-fit: cover;
     object-fit: cover;
}
.card-info__left .swiper-custom-btn-card {
  position: absolute;
  z-index: 11;
  top: 50%;
  transform: translatey(-50%);
  display: flex;
	justify-content:space-between;
  align-items: center;
	width: 100%;
  gap: 20px;
	padding: 0 20px
}
.card-info__left .swiper-custom-btn-card img {
	max-width: 35px;
}
.card-info__list {
  display: grid;
  grid-template-columns: repeat(3, minmax(200px, 1fr));
  gap: 16px;
  margin-bottom: 40px;
}

.card-info__list .card-info__item:nth-child(1) {
	grid-column: 1 / 3
}

.card-info__list .swiper-custom-btn-card img {
	max-width: 35px;
}
.card-info__list-bm {
	display: grid;
  grid-template-columns: repeat(3, minmax(200px, 1fr));
  grid-auto-rows: auto;
  gap: 16px;
  max-width: 100%;
	
}

.card-info__item-title {
  font-weight: 300;
  font-size: 14px;
  line-height: 96%;
  color: rgba(9, 25, 32, 0.6);
  margin-bottom: 5px;
}
.card-info__item-text {
  font-weight: 400;
  font-size: 20px;
	word-wrap: break-word;
	overflow-wrap: break-word;
  line-height: 0.96;
  color: #091920;
}
.card-info__item-text.active {
  color: #2387b3;
}
.card-info__btn {
  font-weight: 700;
  font-size: 18px;
  text-transform: uppercase;
  text-align: center;
  color: #fff;
  background: #091920;
  padding: 15px 0;
  max-width: 300px;
  width: 100%;
}
.card-info__title {
  font-weight: 400;
  font-size: 22px;
  line-height: 1.1;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  color: #091920;
  margin-bottom: 40px;
}
.card-info__center .card-info__item {
  max-width: 400px;
  width: 100%;
}
.card-info__images {
  position: relative;
  overflow-x: hidden !important;
}
.card-info__images .card-swiper-image {
  max-width: 1400px;
  margin-bottom: 20px;
}
.card-info__images .card-swiper-image .swiper-slide img {
  width: 100%;
  max-height: 700px;
  -o-object-fit: cover;
     object-fit: cover;
}
.card-info__images .card-swiper-images {
  overflow: hidden !important;
	width: 100%;
}
.card-info__images .card-swiper-images .swiper-slide {
  max-width: 120px;
  max-height: 80px;
}
.card-info__images .card-swiper-images .swiper-slide img {
  width: 100%;
  max-height: 80px;
  -o-object-fit: cover;
     object-fit: cover;
}
.card-info__images .swiper-custom-btn-card, .swiper-custom-btn-card-mobile {
  position: absolute;
  z-index: 11;
  display: flex;
  align-items: center;
	width: 100%;
	justify-content: space-between;
	top: 50%;
	transform: translatey(-50%);
  gap: 20px;
	padding: 0 15px;
}

.card-info__description {
  display: flex;
  justify-content: space-between;
  padding-bottom: 60px;
}
.card-info__description-left {
  max-width: 680px;
}
.card-info__description-title {
  font-weight: 400;
  font-size: 28px;
  line-height: 1.1;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  color: #091920;
  margin-bottom: 30px;
}
.card-info__description-text {
  font-family: var(--second-family);
  font-weight: 300;
  font-size: 22px;
  line-height: 110%;
  color: #091920;
  margin-bottom: 40px;
}
.card-info__description-list {
  margin-bottom: 40px;
  display: flex;
  flex-direction: column;
  gap: 40px;
}
.card-info__description-item {
	position: relative;
}
.card-info__description-item h2 {
  font-weight: 400;
  font-size: 28px;
  line-height: 110%;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  color: #091920;
  margin-bottom: 10px;
  
}
.open-modal-arr {
	position: absolute;
	right: 7px;
	top: -7px;
	padding: 5px;
	cursor: pointer;
	display: flex;
	align-items: center;
	gap: 5px;
}
.open-modal-arr span {
	font-size: 12px;
}

.open-modal-arr img {
	max-width: 12px;
}
.card-info__description-item p {
  font-weight: 400;
  font-size: 20px;
  line-height: 110%;
  color: #091920;
}
.card-info__description-btn {
  align-items: center;
  gap: 20px;
  max-width: 220px;
}
.card-info__video {
  padding-bottom: 60px;
}
.card-info__video-title {
  margin-bottom: 50px;
}
.card-info__all {
  padding-bottom: 100px;
}
.card-info__all-title {
  margin-bottom: 50px;
}

.line-card {
  width: 100%;
  height: 2px;
  background-color: #4b6b7a;
  margin: 40px 0;
}

.title-2 {
  font-weight: 700;
  font-size: 28px;
  line-height: 110%;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  color: #091920;
}

.video-reviews {
  display: flex;
  gap: 18px; /* Отступ между элементами */
}

.video-reviews__item {
  position: relative;
  flex: 0 0 calc(20% - 10px); /* 5 колонок, учитывая gap */
  max-width: 220px;
  height: 390px;
}

.video-reviews__item img {
  width: 100%;
  display: block;
}

.video-reviews__play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.video-reviews__play img {
  width: 80px;
}

@media (max-width: 768px) {
  .video-reviews__item {
    flex: 0 0 calc(50% - 10px);
    max-width: calc(50% - 10px);
  }
}
@media (max-width: 480px) {
  .video-reviews__item {
    flex: 0 0 100%;
    max-width: 100%;
  }
}
.swiper-custom-btn-card-mobile {
  display: none;
}

.service-banner {
  position: relative;
  margin-top: 92px;
}
.service-banner__top img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.service-banner__bottom {
  background-color: #091920;
  min-height: 200px;
  position: relative;
}
.service-banner__list {
  position: relative;
  bottom: -80px;
  display: flex;
  max-width: 1500px;
  margin: 0 auto;
  background-repeat: no-repeat;
}
.service-banner .ten {
  position: absolute;
  bottom: 40px;
  left: 0;
  width: 100%;
  z-index: 9;
}
.ten {

}
.car-wrapper-ten {
	height: 91px;
}
.ten-car {
	position: absolute;
	right: 0;
	width: 100%;
	max-width: 1561px;
    left: 100px;
    bottom: 40px;
}
.car-wrapper-rel {
	display: flex;
	align-items: center;	
	position: relative;
}
.car-wrapper-rel img {
	position: absolute;
	bottom: 0;
	max-width: 503px;
	visibility: hidden;
}

/* Анимации для каждой машины */
@keyframes slideInRight {
  from {
    transform: translateX(-200vh);
    opacity: 0.9;
	visibility: visible;
  }
  to {
    transform: translateX(0);
    opacity: 1;
	visibility:visible;
  }
}

.first-car {
    right: 1200px;
    z-index: 5;	
	animation: slideInRight 1s ease-out 2s forwards;
}
.second-car {
    right: 920px;
    z-index: 4;
	animation: slideInRight 1s ease-out 1.6s forwards;
}
.three-car {
	right: 670px;
    z-index: 3;
	animation: slideInRight 1s ease-out 1.2s forwards;
}
.four-car {
	right: 490px;
	z-index: 2;
	animation: slideInRight 1s ease-out 0.8s forwards;
}
.five-car {
	right: 300px;
	animation: slideInRight 1s ease-out 0.4s forwards;	
}




.service-banner__inner {
  padding-top: 120px;
	position: relative;
	z-index: 12;
}
.service-banner__btns {
  display: flex;
  align-items: center;
  gap: 25px;
  margin-top: auto;
}
.service-banner__btn {
  font-weight: 700;
  font-size: 18px;
  text-transform: uppercase;
  text-align: center;
  color: #fff;
  max-width: 330px;
  width: 100%;
  background-image: url("./../img/serv-btn.png");
  background-repeat: no-repeat;
  padding: 15px 0;
}
.service-banner__btn.active {
  background: #fff;
  color: #091920;
}

.services-content {
  padding-top: 40px;
}
.services-content__row {
  display: flex;
  flex-direction: column;
  gap: 60px;
}
.services-content__top {
  display: flex;
  align-items: center;
  gap: 30px;
}
.services-content__top .services-content__title {
  font-size: 28px;
  margin-bottom: 20px;
}
.services-content__top .services-content__text {
  font-size: 22px;
  margin-bottom: 20px;
}
.services-content__top .services-content__subtitle {
  font-weight: 400;
  font-size: 24px;
  line-height: 110%;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  color: #091920;
  text-wrap: balance;
}
.services-content__imgage {
  max-width: 685px;
  width: 100%;
}
.services-content__info {
  max-width: 675px;
}
.services-content__title {
  font-weight: 400;
  font-size: 22px;
  line-height: 110%;
  text-transform: uppercase;
  color: #091920;
  margin-bottom: 10px;
}
.services-content__text {
  font-weight: 300;
  font-size: 18px;
  line-height: 110%;
  color: #091920;
}
.services-content__bottom {
  display: flex;
  gap: 30px;
}
.services-content__list {
  display: flex;
  flex-direction: column;
  gap: 30px;
  max-width: 675px;
}
.top-banner {
  margin-top: 90px;
}
.top-banner img {
  width: 100%;
}

.contacts {
  padding-bottom: 100px;
  color: #0c1f28;
}
.contacts__title {
  font-weight: 700;
  font-size: 28px;
  line-height: 110%;
  text-transform: uppercase;
  color: #091920;
  margin-bottom: 40px;
}
.contacts__block {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 20px;
  max-width: 995px;
}
.contacts__block-one {
  margin-bottom: 25px;
}
.contacts__block-title {
  font-weight: 400;
  font-size: 22px;
  line-height: 110%;
  color: #0c1f28;
}
.contacts__text {
  font-weight: 300;
  font-size: 22px;
  line-height: 110%;
  color: #0c1f28;
}
.contacts__bm {
  display: flex;
  justify-content: space-between;
}
.contacts__left {
  max-width: 468px;
  display: flex;
  flex-direction: column;
  gap: 40px;
}
.contacts__social {
  display: flex;
  align-items: center;
  gap: 15px;
}
.contacts__block-social {
  align-items: center;
}
.contacts__map {
  max-width: 660px;
  width: 100%;
  min-height: 470px;
}

.contacts-links {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contacts-link {
  border: 1.5px solid #091920;
  padding: 12px 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  font-weight: 700;
  font-size: 16px;
  max-width: 370px;
}
.contacts-link > span {
  flex: 1 1 auto;
  min-width: 0;
}
.contacts-link > div {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
}
.contacts-link > svg {
  flex: 0 0 16px;
}
.contacts-link img {
  max-height: 23px;
  height: 23px;
  width: auto;
  max-width: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.about {
  padding-bottom: 100px;
}

.about-block {
  background: #091920;
  padding: 100px 0 60px;
}
.about-block__top {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 40px;
  padding-bottom: 60px;
}
.about-block__title {
  font-weight: 400;
  font-size: 28px;
  line-height: 110%;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  text-align: center;
  color: #fff;
}
.about-block__list {
  display: flex;
  flex-direction: column;
  gap: 2px;
  max-width: 999px;
  margin: 0 auto;
}
.about-block__list li {
  list-style: disc;
}
.about-block__item {
  text-wrap: balance;
  font-weight: 300;
  font-size: 24px;
  line-height: 130%;
}
.about-block__image {
  position: relative;
}
.about-block__bottom {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding-top: 15px;
}
.about-block__text {
  font-weight: 300;
  font-size: 24px;
  line-height: 130%;
  text-align: center;
  color: #fff;
}

.gr1 {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
}

.about-bg {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.gr2 {
  position: absolute;
  width: 100%;
  bottom: 0;
  left: 0;
  right: 0;
}

.flex {
  position: relative;
  margin-bottom: 40px;
  display: flex;
  align-items: center;
  gap: 30px;	
}

.logo-about {
  position: relative;
  top: -9px;
  max-width: 100px;
}

.footer {
  background-color: #a0adb3;
  padding: 70px 0 56px;
}
.footer__row {
  display: flex;
  gap: 34px;
}
.footer__left {
  max-width: 706px;
}
.footer__title {
  color: #0c1f28;
  margin-bottom: 50px;
}
.footer__list {
  margin-bottom: 72px;
  display: flex;
  flex-direction: column;
  gap: 35px;
}
.footer__item {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 21px;
}
.footer__item-social {
  align-items: center;
}
.footer__copyright {
  display: flex;
  align-items: center;
  gap: 95px;
}
.footer__copyright p {
  font-weight: 300;
  font-size: 16px;
  line-height: 1.1;
  color: #0c1f28;
}
.footer__map {
  width: 650px;
  height: 100%;
}

.item__left {
  font-weight: 400;
  font-size: 18px;
  line-height: 1.1;
  color: #0c1f28;
  max-width: 199px;
}
.item__right {
  font-weight: 300;
  font-size: 18px;
  line-height: 1.1;
  color: #0c1f28;
}
.item__right-social {
  display: flex;
  align-items: center;
  gap: 15px;
}
.footer-contacts {
  padding: 30px 0 40px;
}
.footer-contacts__row {
  display: flex;
  justify-content: space-between;
}
.footer-contacts__nav {
  max-width: 112px;
}
.footer-contacts__list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.footer-contacts__link {
  font-weight: 400;
  font-size: 20px;
  line-height: 110%;
  text-transform: uppercase;
  color: #0c1f28;
}
.footer-contacts__end {
  max-width: 590px;
  display: flex;
  flex-direction: column;
}
.footer-contacts__tel {
  margin-bottom: 20px;
}
.footer-contacts__text {
  font-weight: 300;
  font-size: 20px;
  line-height: 1.1;
  color: #0c1f28;
  display: inline-block;
}
.footer-contacts__end-copy {
  margin-top: auto;
  display: flex;
  align-items: center;
  gap: 63px;
}
.footer-contacts__end-copy p {
  color: #0c1f28;
  font-weight: 300;
}

.form-block {
  max-width: 1000px;
  background-color: #091920;
  position: fixed;
  left: 50%;
  top: 50%;
  z-index: 98;
  transform: translate(-50%, -50%) scale(0.2);
  opacity: 0;
  visibility: hidden;
  transition: transform 0.3s ease, opacity 0.3s ease;
  z-index: 101;
}
.close-form-popup {
	position: absolute;
	top: 30px;
	right: 30px;
	cursor: pointer;
}
.form-block__content {
  padding: 60px 100px 40px;
  max-width: 650px;
  margin: 0 auto;
}
.form-block__title {
  font-weight: 400;
  font-size: 28px;
  line-height: 1;
  text-transform: uppercase;
  margin-bottom: 32px;
  text-align: center;
}
.form-block__text {
  font-weight: 400;
  font-size: 20px;
  line-height: 1;
  text-align: center;
  margin-bottom: 40px;
}
.form-block .checkmark {
  border-color: #a0adb3;
}
.form-block .check__text {
  font-weight: 300;
  font-size: 14px;
  line-height: 90%;
  color: #0c1f28;
  padding: 3px 10px 3px 13px;
  background-color: rgba(255, 255, 255, 0.8);
}
.form-block .form {
  max-width: 570px;
  margin: 0 auto;
}
.form-block .form__input {
  max-width: 525px;
}

.form-block .form__btn {
  display: flex;
  justify-content: center;
  align-items: center;
  justify-self: center;
  place-self: center;
}

.show-popup .form-block {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, -50%) scale(1);
  transition: transform 0.3s ease, opacity 0.4s ease;
}

.hiding .overlay {
  opacity: 0;
}

.hiding .form-block {
  opacity: 0;
  transform: translate(-50%, -50%) scale(0.5);
}

.hiding {
  visibility: hidden;
  transition-delay: 0.3s;
}

.form-pop .wpcf7 {
	display: flex;
	justify-content: center;
}
.form-pop .wpcf7 .btn-border {
	border-color: #fff;
}
.form-section-catalog .wpcf7 .btn-border {
	border-color: #fff;
}

.form-block__img img {
	width: 100%
}

@media (max-width: 1600px) {
	  .car-pagination {
    left: 5px !important;
  }
	.car-wrapper-rel img {
	max-width: 420px;
}
.first-car {
    right: 960px;
}
.second-car {
    right: 665px;
}
.three-car {
	right: 450px;
}
.four-car {
	right: 270px;
}
.five-car {
	right: 70px
}
	.ten-car {
		left: 45px;
	}
}

@media (max-width: 1400px) {
	.form-block__content {
		padding: 30px 0;
	}
	.form-block__title {
		font-size: 24px;
	    margin-bottom: 20px;	
		
	}
	.form-block__text {
		font-size: 20px;
		margin-bottom: 20px;
	}
	.form__label {
		font-size: 22px;
	}
	.form-block .check {
		margin-bottom: 35px;
	}
	.form__input {
		min-height: 40px;
	}
	.form__btn .btn-border {
		max-height: 40px
	}


  .display__model {
    font-size: 190px;
  }
  .display__left .display__content {
    max-width: 655px;
  }
  .display__car .car-porsche {
    top: -180px;
  }
  .info__item {
    gap: 45px;
  }
  .info__bottom .info__block {
    max-width: 610px;
  }
  .service__list {
    max-width: 610px;
  }
  .service-banner__btn {
    background-size: 309px;
	  max-width: 309px;
  }
	
	.burger-menu {
		padding: 30px 0 42px;
		
	}	
	.burger-menu__nav {
	margin: 21px 0 30px;
		padding: 32px 0;	
	}
	.catalog-car {
		max-width: 410px;
	}
	.ten-car {
	max-width: 1315px;
    left: 0;
}
.car-wrapper-rel img {
	max-width: 390px;
}
.first-car {
    right: 900px;
}
.second-car {
    right: 660px;
}
.three-car {
	right: 420px;
}
.four-car {
	right: 225px;
}
.five-car {
	right: 35px
}
}
@media (max-width: 1280px) {
  .display__model {
    font-size: 160px;
  }
  .display__car .car-gelik {
    top: -350px;
  }
  .display__car .car-bmw {
    top: -420px;
  }
  .display__car .car-rover {
    top: -400px;
  }
  .display__car .car-lexux {
    top: -260px;
  }
  .display__left .display__content {
    max-width: 565px;
    padding-left: 15px;
  }
  .display__title {
    text-wrap: balance;
  }
  .display__right .display__content {
    max-width: 530px;
  }
  .info__item {
    gap: 30px;
  }
  .info__bottom .info__block {
    max-width: 585px;
    padding-left: 15px;
  }
  .title {
    font-size: 28px;
  }
  .text {
    font-size: 22px;
  }
  .service__list {
    max-width: 575px;
    gap: 50px;
    padding-left: 15px;
  }
  .service__item .btn-border {
    max-width: 200px;
    background-size: 200px;
  }
  .service__img img {
    height: 100%;
  }
  .service__content {
    padding-bottom: 40px;
    padding-right: 20px;
  }
 
	.form-block {
		min-width: 900px;
	}
	.car-wrapper-rel img {
	max-width: 315px;
}
}

@media (max-width: 1200px) {

.card-info__about {
    flex-direction: column;
  }	
	.card-info__left {
		max-width: 100%;
	}
}
@media (max-width: 1100px) {
.first-car {
    right: 739px;
}
.second-car {
    right: 597px;
}
.three-car {
	right: 420px;
}
.four-car {
	right: 225px;
}
.five-car {
	right: 35px
}
	
}
@media (max-width: 992px) {
  .header__center {
    display: none;
  }

  .line-horizontal {
    display: none;
  }
  .logo {
    max-width: 70px;
  }
  .main-block {
    padding-top: 130px;
  }
  .main-block__inner {
    border-bottom: none;
    flex-direction: column;
  }
  .main-block__title {
    font-size: 26px;
    max-width: 265px;
    padding-bottom: 15px;
  }
  .main-block__descriptions {
    gap: 20px;
    padding-top: 15px;
    max-width: 264px;
  }
  .main-block__text {
    font-size: 14px;
  }
  .car-pagination {
    top: 60px !important;
    left: 50% !important;
    transform: translateX(-50%);
    flex-direction: row;
    justify-content: center;
    max-height: 20px;
    max-width: none;
    gap: 5px;
  }
  .swiper-pagination-bullet {
    border-color: #fff;
    background: #fff;
    width: 3px;
    height: 3px;
    flex-shrink: 0;
  }
  .swiper-pagination-bullet-active {
    background: transparent;
    width: 7px;
    height: 7px;
  }
  .display__footer {
    flex-direction: column;
    justify-content: flex-start;
  }
  .display__left .display__content {
    margin-left: 0;
    padding-top: 117px;
    padding-bottom: 40px;
  }
  .display__right .display__content {
    padding-top: 30px;
    padding-bottom: 50px;
    padding-left: 15px;
  }
  .display__title {
    font-size: 26px;
  }
  .display__subtitle {
    font-size: 20px;
  }
  .display__list {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }
  .display__item p {
    font-size: 20px;
  }
  .display__model {
    transform: none;
    font-size: 55px;
    position: relative;
    top: 0;
    left: -20px;
    gap: 5px;
  }
  .display__car .car-image {
    position: static;
    transform: none;
  }
  .display__car {
    position: absolute;
    top: -360px;
    left: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .display__right .btn {
    margin-right: auto;
  }
  .display__car .car-porsche {
    position: relative;
    left: 0;
    top: 135px;
  }
  .display__car .car-lexux {
    position: relative;
    left: 0;
    top: 70px;
  }
  .info__item {
    flex-direction: column;
    gap: 0;
  }
  .info__bottom {
    flex-direction: column-reverse;
  }
  .info__image {
    max-width: 100%;
  }
  .info__wrap {
    width: 100%;
  }
  .info__block {
    padding: 60px 50px 52px 20px;
  }
  .info__bottom .info__block {
    margin-left: unset;
  }
  .banner {
    min-height: 780px;
  }
  .banner__top {
    flex-direction: column;
    align-items: start;
  }
  .banner__title {
    font-size: 26px;
  }
  .banner__text {
    font-size: 18px;
  }
  .banner-line {
    display: none;
  }
  .text-wrap {
    padding-left: 0;
  }
  .service {
    flex-direction: column;
  }
  .service__content {
    max-width: 100%;
  }
  .service__img {
    max-width: 100%;
  }
  .service__list {
    margin-left: 0;
  }
  .form-section {
    flex-direction: column-reverse;
  }
  .form-section__left {
    width: 100%;
	  height: 100%;
  }
  .form-section__title {
    font-size: 24px;
    margin-bottom: 22px;
  }
  .form-section__text {
    font-size: 18px;
    margin-bottom: 40px;
  }
  .form-section__list {
    display: flex;
    flex-direction: column;
    margin-bottom: 40px;
  }
  .form-section__right {
    width: 100%;
    padding: 80px 20px 0;
  }
  .form__label {
    font-size: 24px;
  }
  .form {
    display: flex;
    flex-direction: column;
  }
  .form__btn {
    margin: 0 auto;
  }
  .footer__row {
    flex-direction: column;
    justify-content: center;
    text-align: center;
    gap: 60px;
  }
  .footer__map {
    height: 256px;
    width: 100vw;
    max-width: none;
    margin-left: calc(-50vw + 50%);
  }
  .footer__item {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .footer__copyright {
    flex-direction: column;
    gap: 15px;
  }
  .footer__left {
    max-width: 100%;
  }
  .services-content__top {
    flex-direction: column;
  }
  .services-content__bottom {
    flex-direction: column-reverse;
    align-items: center;
  }
  .about-block__title {
    font-size: 26px;
    text-wrap: wrap;
    margin-bottom: 0;
  }
  .about-block__list {
    justify-content: center;
    max-width: 600px;
    gap: 15px;
  }
  .about-block__item {
    font-size: 18px;
  }
  .flex {
    text-align: center;
    margin-bottom: 60px;
	flex-direction: column;
	justify-content: center;
  }
  .about-block__title {
    margin-bottom: 30px;
  }
  .logo-about {
    position: static;
    text-align: center;
    margin: 0 auto;
  }
  .about-block__text {
    font-size: 18px;
  }
  .about-block__bottom {
    padding-top: 60px;
  }
  .filters {
    flex-direction: column;
  }
  .filter {
    max-width: 100%;
  }
  .catalog__list {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .form-section-catalog .form-section__right {
    padding-bottom: 48px;
  }
  .service-banner__top {
    position: relative;
  }
  .service-banner .ten {
    bottom: -60px;
  }
  .service-banner__bottom {
    padding: 57px 0 30px;
  }
  .service-banner__inner {
    padding: 0;
  }
  .service-banner__btns {
    flex-direction: column;
  }
  .service-banner__btn {
    background-size: 330px;
	  max-width: 330px;
  }
  .breadcrumbs-servives {
    padding: 30px 0;
    display: flex;
  }
  .breadcrumbs-servives .container {
    gap: 20px;
  }
  .breadcrumbs-servives .breadcrumbs__page {
    color: #091920;
    font-size: 16px;
  }
  .breadcrumbs-servives .btn-border {
    max-width: 40px;
    height: 40px;
  }
  .services-content {
    padding-top: 0;
  }
  .form-section__row {
    flex-direction: column;
  }
  .form-section__row .form-section__img {
    min-height: 450px;
  }
  .form-section__img-serv {
    max-width: 450px;
  }
  .form-section__row {
    padding-top: 60px;
  }
  .contacts__title {
    font-size: 26px;
    margin-bottom: 30px;
    font-weight: 400;
  }
  .contacts__block {
    display: flex;
    flex-direction: column;
    max-width: 400px;
    gap: 5px;
  }
  .contacts__bm {
    flex-direction: column;
    gap: 60px;
  }
  .footer-contacts {
    padding-top: 40px;
  }
  .footer-contacts__row {
    flex-direction: column;
    align-items: center;
    gap: 40px;
    text-align: center;
  }
  .footer-contacts__logo.logo {
    max-width: 100px;
  }
  .footer-contacts__end-copy {
    flex-direction: column;
    gap: 15px;
    margin-top: 40px;
  }
  .contacts__block-social {
    flex-direction: row;
    gap: 25px;
  }
  .contacts__block-title {
    font-size: 18px;
  }
  .contacts__text {
    font-size: 18px;
  }
  
  .card-info__list {
    flex-direction: column;
    gap: 30px;
  }
  .card-info__list-bm {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }
  .card-info__description {
    flex-direction: column;
  }
  .card-info__row {
    display: flex;
    flex-direction: column;
  }
  .card-info__top {
    order: 1;
  }
  .card-info__images {
    order: 2;
  }
  .card-info__center {
    display: none;
  }
  .card-line-card {
    order: 3;
  }
  .card-info__description {
    order: 4;
  }
  .card-info__video {
    order: 4;
  }
  .card-info__all {
    order: 5;
  }
  .card-swiper-mini-two .swiper-custom-btn-card {
    display: none;
  }
  .card-swiper-image .swiper-custom-btn-card {
    display: none;
    opacity: 0;
    visibility: hidden;
  }
  .swiper-custom-btn-card-mobile {
    display: flex;
    justify-content: space-between;
	  width: 100%;
	  position: absolute;
        top: 50%;
        transform: translateY(-50%);
	  z-index: 11;
	  padding: 0 10px;
  }
	.swiper-custom-btn-card-mobile img {
		max-width: 35px;
	}
  .line-card {
    order: 3;
  }
  .card-info__left .card-swiper-mini {
    max-width: 100%;
  }
		.form-block {
		min-width: 600px;
	}
	.form-block__title {
		font-size: 28px;
	}
	.form-block .form {
		max-width: 420px;
	}
	.check {
		gap: 10px;
	}
	.form-block .form__btn {
		font-size: 16px;
	}
	.form-block__content {
		padding: 80px 20px 45px;
	}
	.form-block__title {
		font-size: 24px;
	}
	.form-block__text {
		font-size: 18px;
	}
	.form__label {
		font-size: 22px;
	}
	.burger-menu {
		width: 100%
	}
	.filter__item span {
		max-width: 100%;
	}
	.footer { 
		padding-bottom: 0;
	}
	.footer-contacts {
		padding-bottom: 60px;
	}
	.contacts__map {
		max-width: 100%;
		min-height: auto;
	}
		.contacts {
		padding-bottom: 0;
	}
	.service-banner { 
		margin-top: 77px;
	}
	.car-wrapper-rel img {
		max-width: 280px;
	}
.first-car {
    right: 605px;
}
.second-car {
    right: 450px;
}
.three-car {
	right: 300px;
}
.four-car {
	right: 150px;
}
.five-car {
	right: 20px
}
	.car-wrapper-ten {
		height: 70px;
	}
	.service-banner .ten {
		bottom: -105px;
	}
}
@media (max-width: 767px) {
	.form-block {
		min-width: 100%;
	}
  .display__car {
    top: -300px;
  }
  .about-block__title {
    max-width: 343px;
  }
  .about-block__list {
    max-width: 290px;
  }
  .about-block__text {
    max-width: 317px;
  }
  .logo-about-wr {
    max-width: 100px;
    margin: 0 auto;
  }
  .swiper-custom-btn-catalog {
    justify-content: start;
  }
  .breadcrumbs__page {
    font-size: 16px;
  }
  .catalog-filter__top {
    flex-direction: column;
    align-items: start;
    gap: 50px;
    margin-bottom: 20px;
  }
  .catalog-filter__title {
    font-size: 26px;
  }
  .catalog-filter__text {
    font-size: 18px;
    max-width: 235px;
  }
  .catalog {
    padding: 60px 0;
  }
  .catalog-car__title {
    font-size: 26px;
    margin-bottom: 10px;
  }
  .catalog-car__text {
    font-size: 18px;
  }
  .catalog-car__footer {
    flex-direction: column;
    align-items: start;
    gap: 30px;
  }
  .catalog-car__info {
    position: relative;
  }
  .catalog-car__link {
    position: absolute;
    right: 20px;
    bottom: 30px;
  }
  .service-banner__btn {
    background-size: 320px;
	  max-width: 320px;
  }
  .card-info__brand {
    margin-bottom: 30px;
  }
  .card-info__brand img {
    width: 50px;
    height: 50px;
  }
  .card-info__brand-title {
    font-size: 24px;
  }
  .card-info__brand-text {
    font-size: 18px;
  }
  .line-card {
    margin: 40px 0;
  }
  .mini-text {
    font-size: 24px;
  }
  .card-info__btn {
    max-width: 260px;
    max-height: 40px;
    padding: 10px 0;
  }
  .card-info__list {
    margin-bottom: 40px;
  }
	.card-info__list .card-info__item:nth-child(1) {
		grid-column: 1 / 2;
	}
  .card-info__title {
    font-size: 24px;
  }
	
	.card-info__item {
		min-width: 100%;
	}
  .card-info__item-text {
    font-size: 16px;
  }
  .card-info__list {
    margin-bottom: 0;
  }
  .card-info__top {
    padding-bottom: 40px;
  }
  .card-info__images {
    padding-bottom: 20px;
  }
  .card-info__description-title {
    font-size: 26px;
  }
  .card-info__description-text {
    font-size: 18px;
    margin-bottom: 15px;
  }
  .card-info__description-list {
    padding-top: 45px;
    gap: 40px;
  }
	.open-modal-arr {
		top: -20px;
	}
  .card-info__description-item h2 {
    font-size: 20px;
  }
  .card-info__description-item p {
    font-size: 18px;
  }
  .card-info__video-title,
  .card-info__all-title {
    font-size: 26px;
    margin-bottom: 30px;
  }
  .video-reviews__item {
    width: 100%;
    height: 390px;
    max-width: 220px;
  }
  .video-reviews {
    flex-wrap: nowrap;
    overflow: auto;
    width: 100vw;
    max-width: none;
    margin-left: calc(-50vw + 50%);
	    scrollbar-width: none; /* Для Firefox */
  -ms-overflow-style: none; /* Для IE и Edge */
  }
	.video-reviews::-webkit-scrollbar {
  display: none; /* Для Chrome, Safari */
}
  .video-reviews__item img {
    width: 220px;
    height: 390px;
    max-width: 220px;
  }
  .video-reviews__play img {
    width: 80px;
    height: 80px;
  }
  .card-info__btn {
    margin-top: 40px;
  }
	.breadcrumbs .btn-border {
		padding: 12px 0;
	}
	.form-block__content {
		padding-top: 35px;
	}
	.car-wrapper-rel img {
		max-width: 195px;
	}
	.ten-car {
		        max-width: 500px;
        left: 50%;
        transform: translateX(-50%);
		bottom: 55px;
	}	
.first-car {
    right: 315px;
}
.second-car {
    right: 210px;
}
.three-car {
	right: 140px;
}
.four-car {
	right: 80px;
}
.five-car {
	right: 10px
}	
}
@media (max-width: 620px) {
  .display__model {
    font-size: 45px;
  }
  .display__car {
    top: -220px;
  }
  .main-block {
    min-height: 640px;
  }
  .display__car .car-porsche {
    top: 70px;
  }
  .display__car .car-lexux {
    top: 40px;
  }
  .service__item {
    flex-direction: column;
    gap: 40px;
  }
  .service__img img {
    max-height: 500px;
  }
  .title {
    font-size: 26px;
  }
  .text {
    font-size: 18px;
  }
  .services-content__info {
    max-width: 340px;
  }
  .services-content__top .services-content__title {
    font-size: 22px;
  }
  .services-content__top .services-content__text {
    font-size: 18px;
  }
  .services-content__top .services-content__subtitle {
    font-size: 20px;
    text-wrap: balance;
  }
  .services-content__top {
    align-items: start;
  }
  .services-content__bottom {
    align-items: start;
  }
  .services-content__bottom .services-content__title {
    font-size: 18px;
  }
  .services-content__row {
    gap: 20px;
  }
  .form-section__image-wrap-serv {
    width: 100vw;
    max-width: none;
    margin-left: calc(-50vw + 50%);
  }
  .contacts .container {
    padding: 0 10px;
  }
	.card-info__list {
		grid-template-columns: repeat(2, 1fr);
	}
	.card-info__list .card-info__item {
		min-width: auto
	}
 
	  .card-info__list .card-info__item:nth-child(3) {
		grid-column: 1 / 2;
	}
}
@media (max-width: 480px) {
	.burger-menu__link {
		font-size: 30px;
	}
	.header .open-popup {
		max-width: 180px;
		font-size: 16px;
	}

	.form-block .form__btn {
		max-width: 200px;
    background-size: 200px;
    padding: 10px 0;
	}
  .display__car {
    top: -170px;
  }
  .main-block {
    min-height: 520px;
  }
  .display__model {
    font-size: 40px;
    top: 25px;
  }
  .display__car .car-gelik {
    position: relative;
    left: 0;
    top: 20px;
  }
  .width-max {
    max-width: 82px;
  }
  .width-max img {

  }
  .swiper-custom-btn img {
    max-width: 27px;
  }
  .info__block .btn {
    margin: 0 auto;
  }
  .info__title {
    font-size: 26px;
    max-width: 300px;
  }
  .info__text {
    font-size: 18px;
    max-width: 328px;
    text-wrap: balance;
  }
  .comprehensive__title {
    max-width: 273px;
    margin: 0 auto;
    margin-bottom: 30px;
  }
  .comprehensive__text {
    max-width: 291px;
    margin: 0 auto;
  }
  .comprehensive__top {
    padding: 80px 0 42px;
  }
  .comprehensive {
    background: #091920;
    position: relative;
  }
  .comprehensive__grad-bt {
    display: block;
    position: absolute;
    bottom: 32px;
    left: 0;
    right: 0;
    width: 100%;
  }
  .comprehensive__grad-bt img {
    width: 100%;
  }
  .comprehensive__image {
    position: relative;
    padding-bottom: 42px;
  }
  .logo-comprehensive {
    display: block;
    position: absolute;
    bottom: 40px;
    left: 50%;
    max-width: 60px;
    transform: translateX(-50%);
    z-index: 9;
  }
  .header.header-show .bid {
    max-width: 160px;
    font-size: 14px;
  }
  .breadcrumbs {
    padding: 30px 0;
  }
  .breadcrumbs .btn-border {
    max-width: 40px;
    height: 40px;
  }
  .breadcrumbs .container {
    gap: 20px;
  }
  .back-text {
    display: none;
  }
  .btn-light-mini {
    background-size: 40px 40px;
  }
  .catalog-car-swiper-wrapper {
    max-width: 360px;
  }
  .contacts-link {
    padding: 12px 15px;
    gap: 10px;
  }
  .contacts-link img {
    max-height: 20px;
    height: 20px;
  }

  .card-info {
    padding-top: 30px;
  }
  .card-info__left .card-swiper-mini-two {
    margin-bottom: 10px;
  }
  .card-info__left .card-swiper-mini-two .swiper-slide {
    min-height: 255px;
  }
  .card-info__left .card-swiper-mini-two .swiper-slide img {
    max-width: 100%;
    height: 255px;
  }
  .swiper-custom-prev-mobile,
  .swiper-custom-next-mobile,
  .swiper-custom-prev-top-mobile,
  ..swiper-custom-next-top-mobile {
    max-width: 30px;
  }
  .card-info__images .card-swiper-image {
    margin-bottom: 10px;
  }
  .catalog__list {
    max-width: 360px;
    margin: 0 auto;
  }
  .card-info__all {
    padding-bottom: 60px;
  }
	.car-wrapper-rel img {
		max-width: 145px;
	}
.first-car {
    right: 240px;
}
.second-car {
    right: 175px;
}
.three-car {
	right: 115px;
}
.four-car {
	right: 65px;
}
	.ten-car {
		max-width: 430px;
	}
}


@media (max-width: 390px) {
.car-wrapper-rel img {
	max-width: 140px;
	}
	.first-car {
    right: 210px;
}
.second-car {
    right: 150px;
}
.three-car {
	right: 97px;
}
.four-car {
	right: 58px;
}
}
@media (max-width: 360px) {
  .catalog-car-swiper-wrapper {
    max-width: 320px;
  }
}

.services-content {
  display: none;
}

.services-content.active {
  display: block;
}

.services-content.about {
	display: block;
}
.acf-map {
    width: 100%;
    height: 400px;
}


.item__social, .item__social img {
	max-width: 40px;
	max-height: 40px;
}
.contacts__item, .contacts__item img {
	max-width: 40px;
	max-height: 40px;
}

.header__btn {
	display: flex;
	align-items: center;
	gap: 10px;
}
.no-results {
	color: #0c1f28;
	font-size: 18px;
}
.wpcf7-not-valid-tip {
	display: none;
}
.wpcf7-not-valid-tip, .wpcf7-response-output, .wpcf7-response-output {
	font-size: 12px;
}

.wpcf7 form .wpcf7-response-output {
	margin-top: 15px;
	padding: 5px;
	border-width: 1px;
}

.wpcf7-tel.wpcf7-not-valid {
	border-color: red !important;
}

.card-info__item-price {
/* 	min-width: 230px; */
}

.catalog-car__status {
    position: absolute;
    top: 20px;
    right: 20px;
    padding: 4px 19px;
	border: 1px solid #fff;
    border-radius: 5px;
    font-weight: 700;
    font-size: 12px;
	z-index: 10;
  }

  .status-available { background-color: #007732; color: #fff; }
  .status-sold { background-color: #8e8e8e; color: #fff; }
  .status-in-transit { background-color: #6398ff; color: #fff; }
  .status-custom-order { background-color: #ff1313; color: #fff; }

.privacy-info {
  background-color: #f9fafb;
  padding: 60px 0;
  color: #1f2937;
}

.privacy-info__inner {
  max-width: 1280px;
  margin: 0 auto;
  background: #ffffff;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  padding: 40px 30px;
}

.privacy-info__title {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 30px;
  color: #111827;
  text-align: center;
}

.privacy-info__content h2 {
  font-size: 24px;
  margin-top: 40px;
  margin-bottom: 20px;
  color: #1e3a8a;
  border-bottom: 1px solid #e5e7eb;
  padding-bottom: 6px;
}

.privacy-info__content p {
  font-size: 16px;
  line-height: 1.75;
  margin-bottom: 20px;
  color: #374151;
}

.privacy-info__content strong {
  color: #6b7280;
  font-weight: 600;
}

.privacy-info__content ul,
.privacy-info__content ol {
  padding-left: 20px;
  margin-bottom: 20px;
}

.privacy-info__content li {
  margin-bottom: 10px;
  line-height: 1.6;
  color: #374151;
}

/* Мобильная адаптация */
@media (max-width: 768px) {
  .privacy-info__inner {
    padding: 30px 20px;
  }

  .privacy-info__title {
    font-size: 24px;
  }

  .privacy-info__content h2 {
    font-size: 20px;
  }

  .privacy-info__content p {
    font-size: 15px;
  }
}

.catalog-swiper-button {
	position: absolute;
	top: 50%;
	transform: translatey(-50%);
	z-index: 10;
	cursor: pointer;
}
.catalog-swiper-button-prev {
	left: 7px;
}

.catalog-swiper-button-next {
	right: 7px;
}

.catalog-swiper-button img {
	max-width: 35px;
	min-height: 100%;
}


/*# sourceMappingURL=style.css.map */









