@charset "UTF-8";

@font-face {
  font-family: "Montserrat";
  src: url("../fonts/Montserrat-Regular.woff2") format("woff2");
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: "Montserrat";
  src: url("../fonts/Montserrat-Bold.woff2") format("woff2");
  font-weight: bold;
  font-style: normal;
}

@font-face {
  font-family: "Montserrat";
  src: url("../fonts/Montserrat-Light.woff2") format("woff2");
  font-weight: 300;
  font-style: normal;
}

@font-face {
  font-family: "Montserrat";
  src: url("../fonts/Montserrat-ExtraLight.woff2") format("woff2");
  font-weight: 200;
  font-style: normal;
}

@font-face {
  font-family: "Montserrat";
  src: url("../fonts/Montserrat-Medium.woff2") format("woff2");
  font-weight: 500;
  font-style: normal;
}

@font-face {
  font-family: "Montserrat";
  src: url("../fonts/Montserrat-SemiBold.woff2") format("woff2");
  font-weight: 600;
  font-style: normal;
}

@font-face {
  font-family: "Montserrat";
  src: url("../fonts/Montserrat-Thin.woff2") format("woff2");
  font-weight: 100;
  font-style: normal;
}

@font-face {
  font-family: 'Inter';
  src: url('../fonts/Inter-SemiBold.woff2') format('woff2');
  font-weight: 600;
  font-style: normal;
}

@font-face {
  font-family: 'Inter';
  src: url('../fonts/Inter-Regular.woff2') format('woff2');
  font-weight: normal;
  font-style: normal;
}

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

html,
body {
  overflow-x: hidden;
  width: 100%;
  scroll-behavior: smooth;
}

body {
  background: #232536;
  color: #928fa1;
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 135%;
}

li {
  list-style: none;
}

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

a:active,
a:hover,
a:focus {
  outline: 0;
  outline-offset: 0;
}

main {
  position: relative;
}

.link {
  position: relative;
  transition: 0.4s;
}

.link::before {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: #787ea1;
  transform: scaleX(0);
  transition: transform 0.4s;
}

.link:hover::before {
  transform-origin: center;
  transform: scaleX(0.5);
  background-color: #787ea1;
}

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

.container-less {
  max-width: 1615px;
  width: 100%;
  margin: 0 auto;
}

.btn {
  position: relative;
  padding: 9px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
  border: none;
  outline: none;
  border-radius: 17px;
  font-weight: 500;
  font-size: inherit;
  line-height: 134%;
  white-space: nowrap;
  transition: 0.4s;
  cursor: pointer;
}

.btn-white {
  background: #f0f2f3;
  border: 2px solid #0466c8;
  color: #0466c8;
}

.btn-blue {
  background: #0466c8;
  color: #fff;
}

.btn-withIcon {
  height: 45px;
  padding: 0;
  gap: 0;
  background: #0466c8;
  color: #fff;
}

.btn-withIcon span {
  display: flex;
  align-items: center;
  justify-content: center;
}

.btn-withIcon span:first-of-type {
  flex: 1;
}

.btn-withIcon span:last-of-type {
  width: 55px;
  height: 100%;
  border-radius: 0 17px 17px 0;
  background: #373b5d;
}

.btn-withBlur::after {
  content: "";
  display: block;
  width: 82%;
  height: 70%;
  top: 50%;
  left: 50%;
  transform: translateX(-50%);
  position: absolute;
  z-index: -1;
  filter: blur(35px);
  transition: 0.4s;
}

.btn-withBlur:hover::after {
  background: #0466c8;
}

.btn-show {
  flex-direction: column;
  gap: 4px;
  background: #2a2c3d;
  border-radius: 0 0 33px 33px;
  color: #787da1;
}

.heading-two {
  font-weight: 700;
  font-size: 36px;
  line-height: 127%;
  color: #d9d9d9;
}

.heading-three {
  font-weight: 500;
  font-size: 25px;
  line-height: 130%;
  color: #fff;
}

.hero-title {
  position: absolute;
  z-index: -1;
  white-space: nowrap;
  font-style: italic;
  font-weight: 700;
  font-size: 334px;
  line-height: 89%;
  color: #0466c8;
}

.content-after::after {
  content: "";
  display: inline-block;
  width: 100%;
  height: 100%;
  position: absolute;
  background-repeat: no-repeat;
}

.content-before::before {
  content: "";
  display: inline-block;
  width: 100%;
  height: 100%;
  position: absolute;
  background-repeat: no-repeat;
}

.no-scroll {
  overflow: hidden;
}

.blue-elem::before {
  content: "";
  position: absolute;
  width: 10px;
  min-width: 10px;
  height: 31px;
  background: #4b5edb;
  border-radius: 0 10px 10px 0;
}

.blue-rectangle::after {
  content: "";
  position: absolute;
  width: 65%;
  height: 16%;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: -1;
  filter: blur(95px);
  background: #395daa;
  border-radius: 0 10px 10px 0;
}

.header {
  position: absolute;
  z-index: 100;
  width: 100%;
  padding-top: 20px;
}

.header .container {
  display: flex;
  gap: 13px;
}

.header__phone {
  position: relative;
  border-radius: 11px;
}

.header__phone.active .header__phone__arrow {
  transform: rotate(0);
}

/* По умолчанию виден только первый номер (Отдел продаж), остальные скрыты под стрелкой */
.header__phone:not(.active) .header__phone__item:not(:first-of-type) {
  display: none;
}

.header__phone.active .header__phone__item {
  display: flex;
}

.header__phone.active .header__phone__item:last-of-type {
  position: absolute;
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.header__phone.active .header__phone__item:first-of-type {
  border-radius: 11px 11px 0 0;
}

.header__phone.active .header__phone__item {
  border-radius: 0;
}

.header__phone.active .header__phone__item:last-of-type {
  border-radius: 0 0 11px 11px;
}

.header__phone.active .header__phone__item:not(:first-of-type) {
  margin-top: -1px; /* чтобы границы сливались в единый блок */
}

.header__phone.active .header__phone__item:not(:first-of-type) {
  opacity: 1;
  visibility: visible;
}

.header__phone.active .header__phone__item:last-of-type {
  position: relative;
}

.header__phone.active p {
  display: block;
}

.header__phone__item {
  width: 100%;
  padding: 10px 14px;
  display: flex;
  align-items: start;
  gap: 30px;
  border: 1px solid #1a81e8;
  background: #0466c8;
  font-weight: 600;
  line-height: 105%;
  color: #fff;
  transition: 0.4s;
}

.header__phone__item:first-of-type {
  border-radius: 11px;
}

.header__phone__item:last-of-type {
  border-radius: 0 0 11px 11px;
  position: absolute;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-20px);
}

.header__phone__arrow {
  transition: 0.4s;
  transform: rotate(180deg);
}

.header__phone__phoneicon {
  margin-top: -5px;
}

.header__phone p {
  display: none;
}

.nav ul {
  display: flex;
  justify-content: center;
  gap: 30px;
}

.nav.header__nav {
  flex: 1;
}

.nav.header__nav ul {
  padding: 10px 0;
  border-radius: 11px;
  background: #2a2c3d;
  font-size: 17px;
  color: #928fa1;
}

.nav__item__circle {
  display: flex;
  align-items: center;
  gap: 2px;
}

.nav__item__circle::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 100%;
  background: #f00;
}

.burger,
.header-mobile {
  display: none;
}

.swiper {
  overflow: hidden;
}

.swiper-slide img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
}

.swiper:not(.swiperPartners):not(.swiperMain):not(.swiper-car-images):not(.swiper-car-images-thumbs) .swiper-slide:first-of-type,
.swiper-pagination-custom,
.about-main,
.live__info {
  margin-left: 120px;
}

.swiper-pagination-custom {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 46px;
}

.swiper-pagination-line {
  width: 28px;
  height: 4px;
  border-radius: 10px;
  background: #33364c;
  cursor: pointer;
  pointer-events: auto;
  position: relative;
  z-index: 10;
  transition: all 0.3s ease;
}

.swiper-pagination-line:hover {
  background: #555;
}

.swiper-pagination-line-active {
  width: 45px;
  height: 6px;
  background: #0466c8;
}

.swiper-pagination-custom {
  pointer-events: auto;
  z-index: 10;
}

.breadcrumbs {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 5px;
}

.main {
  margin-bottom: -148px;
  position: relative;
  padding: 96px 0 0;
  background: linear-gradient(181deg, #1d1f2f 0%, #2c2e43 100%);
}

.main .container {
  max-width: 1646px;
}

.main .hero-title {
  z-index: 0;
  left: -1%;
  top: 16%;
}

.main__text {
  margin-top: 40px;
  font-size: 28px;
  line-height: 130%;
  color: #626786;
  white-space: nowrap;
}

.main__text-white {
  font-weight: 700;
  color: #a6b4d2;
}

.main__text-white span {
  font-weight: 500;
  font-size: 122px;
  color: #a6b4d2;
}

.main .swiper-slide {
  display: flex;
  align-items: center;
}

.main .swiper-slide img {
  position: relative;
  left: 9%;
}

.main .swiper-pagination-custom {
  position: absolute;
  top: 43%;
  left: 0;
  margin: 0;
}

.swiperAuto {
  padding: 70px 0 44px;
  background: #2a2c3d;
}

.swiperAuto .swiper-slide {
  width: 400px;
  height: 190px;
  text-align: center;
  font-weight: 500;
  font-size: 18px;
  line-height: 142%;
  color: #787ea1;
}

.swiperAuto .swiper-slide p {
  margin-top: 8px;
}

.car-filters {
  border-radius: 0 0 174px 102px;
  background: #2a2c3d;
  font-weight: 500;
  line-height: 134%;
  color: #626786;
}

.car-filters__form {
  display: flex;
  align-items: center;
  gap: 6px;
}

.car-filters__form::after {
  position: static;
  flex: 1;
  height: 1px;
  background: #3f4258;
}

.car-filters__form .btn-blue {
  padding: 12px 20px;
}

.car-filters .btn-show {
  padding: 10px 40px;
  position: relative;
  top: 38px;
  left: 50%;
  transform: translateX(-50%);
}

.car-filters .btn-show svg {
  transition: 0.4s;
}

.select {
  position: relative;
  font-weight: 500;
  line-height: 160%;
  color: #a3adb9;
}

.select__title {
  height: 45px;
  min-width: 240px;
  padding: 12px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #373950;
  border-radius: 17px;
}

.select__title-left>div {
  display: flex;
  gap: 20px;
}

.select__result {
  width: 100%;
  max-height: 300px;
  overflow-y: scroll;
  padding: 12px 14px;
  position: absolute;
  top: 50px;
  z-index: 1;
  background: #373950;
  border-radius: 17px;
  visibility: visible;
  opacity: 1;
  transform: translateY(0);
  transition: 0.4s;
}

.select__result.hidden {
  visibility: hidden;
  opacity: 0;
  transform: translateY(-30%);
}

.select__result__option {
  padding: 8px 12px;
  cursor: pointer;
  transition: background-color 0.2s;
  border-radius: 8px;
}

.select__result__option:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

.carlist {
  margin-top: 50px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  transition: max-height 0.6s ease-in-out;
}

.carlist:not(.active) li:nth-child(n+9) {
  opacity: 0;
  max-height: 0;
  overflow: hidden;
  padding: 0;
  margin: 0;
}

.carlist.active li:nth-child(n+9) {
  opacity: 1;
  max-height: 100px;
}

.carlist__item {
  padding: 15px;
  border-bottom: 1px solid #3f4258;
  transition: opacity 0.4s ease-in-out, max-height 0.5s ease-in-out, padding 0.3s ease-in-out, margin 0.3s ease-in-out;
}

.carlist__count {
  color: #9dabcd;
}

.carlist.active+.btn-show svg {
  transform: rotate(180deg);
}

.order-car {
  margin: -18px 0 -44px 13.5%;
  display: flex;
  align-items: center;
  font-size: 19px;
  line-height: 134%;
  color: #8287a7;
}

.order-car__right img {
  position: relative;
  right: 50px;
  z-index: -1;
}

.order-car p {
  width: 384px;
  margin: 116px 0 78px;
}

.order-car .btn {
  max-width: 214px;
}

.service-list {
  margin-bottom: 282px;
  display: grid;
  grid-template-columns: 24% 24% 50%;
  grid-template-rows: 1fr 1fr;
  height: 636px;
  gap: 10px 18px;
}

.service-list a.service {
  text-decoration: none;
  color: inherit;
}

.service {
  position: relative;
  padding: 57px 28px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background-repeat: no-repeat;
  background-size: 100% 100%;
  border-radius: 23px;
  font-weight: 500;
  line-height: 135%;
  color: #98a3b1;
}

.service .blue-elem::before {
  left: 0;
  background: #0466c8;
}

.service-first {
  grid-column: 1/2;
  grid-row: 1/3;
  background-image: url(../img/main-services-1.png);
}

.service-first .blue-elem::before {
  background: #fff;
}

.service-second {
  grid-column: 2/3;
  grid-row: 1/3;
  background-image: url(../img/main-services-2.png);
}

.service-third {
  grid-column: 3/4;
  grid-row: 1/2;
  background-image: url(../img/main-services-3.png);
}

.service-third .blue-elem::before {
  background: #fff;
}

.service-fourth {
  grid-column: 3/4;
  grid-row: 2/3;
  background-image: url(../img/main-services-4.png);
}

.service p {
  max-width: 350px;
}

.ransom-car {
  margin: 0 0 264px 13%;
  display: flex;
  gap: 150px;
  font-weight: 500;
  font-size: 21px;
  line-height: 136%;
  color: #8287a7;
}

.ransom-car .hero-title {
  left: -3%;
  top: -4%;
}

.ransom-car__left {
  display: flex;
  flex-direction: column;
}

.ransom-car__left p {
  max-width: 320px;
  margin: 146px 0 108px;
}

.ransom-car__left .btn {
  max-width: 260px;
  font-size: 16px;
}

.ransom-car__right {
  position: relative;
}

.ransom-car__right img {
  position: relative;
  top: 78px;
}

.video-gallery {
  position: relative;
  margin-bottom: 298px;
}

.video-gallery .hero-title {
  bottom: -28%;
  left: -7%;
}

.video-gallery .hero-title-marquee {
  position: absolute;
  bottom: -28%;
  left: 0;
  right: 0;
  overflow: hidden;
  z-index: -1;
  pointer-events: none;
}

.video-gallery .hero-title-marquee__inner {
  display: inline-flex;
  white-space: nowrap;
  animation: video-gallery-marquee 25s linear infinite;
}

.video-gallery .hero-title-marquee__inner .hero-title {
  position: static;
  flex-shrink: 0;
  padding-right: 0.3em;
}

@keyframes video-gallery-marquee {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-33.333%);
  }
}

.swiper-video-gallery .swiper-slide {
  width: 888px;
  height: 498px;
}

/* В слайде — плеер VK (как на Live): блок на весь слайд, iframe/превью заполняют */
.swiper-video-gallery .swiper-slide .video-grid__player-wrap {
  width: 100%;
  height: 100%;
  aspect-ratio: auto;
  border-radius: 14px;
}

.swiper-video-gallery .swiper-slide img,
.swiper-video-gallery .swiper-slide video {
  border-radius: 14px;
}

.swiper-video-gallery .swiper-pagination-custom {
  margin-top: 0;
  margin-bottom: 26px;
}

.review-list {
  margin-bottom: 84px;
}

.review-list .container {
  max-width: 1674px;
}

.review-list h2 {
  font-weight: 500;
  font-size: 25px;
  line-height: 224%;
  color: #0466c8;
}

.swiper-review-list {
  margin-top: 28px;
}

.review {
  position: relative;
  width: 557px;
  padding: 18px 38px;
  border-radius: 12px;
  background: #2e3041;
  line-height: 160%;
  color: #757ca8;
}

.review__header {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 500;
  font-size: 20px;
  line-height: 130%;
  color: #d2caca;
}

.review__header:before {
  left: 0;
}

.review__avatar img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
}

.review__info {
  flex: 1;
  display: flex;
  align-items: start;
  justify-content: space-between;
}

.review__info p {
  max-width: 40%;
}

.review__stars {
  display: flex;
  gap: 7px;
}

.review__text {
  margin: 52px 0 30px;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  line-clamp: 4;
  overflow: hidden;
  transition: all 0.3s ease;
}

.review__text.full {
  -webkit-line-clamp: unset;
  line-clamp: unset;
  display: block;
}

.review__more {
  background: none;
  border: 0;
  outline: 0;
  line-height: 160%;
  color: #9fafca;
  transition: 0.4s;
  cursor: pointer;
}

.review__more:hover {
  color: #0466c8;
}

.company-history {
  margin-bottom: 114px;
  padding: 188px 0;
  background: url(../img/main-history-bg.png) no-repeat;
  background-size: cover;
}

.company-history .container {
  display: flex;
  align-items: stretch;
}

.company-history .container>div {
  width: 50%;
}

.company-history__left {
  position: relative;
  font-style: italic;
  font-weight: 700;
  font-size: 70px;
  line-height: 89%;
  color: #fff;
}

.company-history__left img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  border-radius: 38px 0 38px 38px;
}

.company-history__left p {
  max-width: 400px;
  position: absolute;
  top: 80px;
  z-index: 1;
  display: flex;
  gap: 78px;
}

.company-history__left p::before {
  position: static;
}

.company-history__right {
  padding: 68px 64px 32px;
  background: #292b3c;
  border-radius: 38px 38px 38px 0;
  font-size: 19px;
  line-height: 134%;
  color: #6777a1;
}

.company-history__text {
  margin: 150px 0 40px;
}

.company-history__text p:not(:last-of-type) {
  margin-bottom: 30px;
}

.company-history__link {
  display: block;
  text-align: right;
  font-size: 17px;
  color: #0466c8;
}

.company-history__title {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.company-history__title h2 {
  font-weight: 600;
  font-size: 25px;
  line-height: 102%;
  color: #d3d3d3;
}

.partners {
  margin-bottom: 260px;
  padding-bottom: 56px;
  border-bottom: 1px solid #4b4a73;
}

.partners .swiper-slide {
  width: 155px;
  height: 109px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.contacts {
  padding-bottom: 118px;
}

.contacts__info {
  display: flex;
  justify-content: space-between;
  margin-bottom: 68px;
  font-weight: 500;
  font-size: 20px;
  line-height: 130%;
  color: #fff;
}

.contacts__left {
  width: -moz-min-content;
  width: min-content;
  display: flex;
  align-items: start;
  gap: 50px;
  font-style: italic;
  font-weight: 700;
  font-size: 64px;
  line-height: 89%;
  color: #0466c8;
}

.contacts__left p {
  max-width: 400px;
}

.contacts__left img {
  width: 80px;
  height: auto;
  object-fit: contain;
  display: block;
}

.contacts__middle {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.contacts__middle .contacts__text-blue {
  margin-left: 42px;
}

.contacts__year {
  margin-top: 62px;
  margin-left: 42px;
  color: #b2a2a2;
}

.contacts__location {
  position: relative;
  display: flex;
  gap: 18px;
  align-items: center;
}

.contacts__right {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.contacts__right>a {
  display: flex;
  align-items: center;
  gap: 4px;
}

.contacts__btns {
  margin-top: 46px;
  display: flex;
  gap: 12px;
  font-size: 16px;
}

.contacts__text-blue {
  color: #0466c8;
}

.contacts__map img {
  width: 100%;
  border-radius: 43px;
}

.contacts__map-wrap {
  position: relative;
  width: 100%;
  min-height: 400px;
  border-radius: 43px;
  overflow: hidden;
  background: #2a2c3d;
}

.contacts-yandex-map {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}

/* Монохромная карта в подвале (API) */
#contacts-map-wrap .ymaps-layers-pane,
#contacts-map-wrap [class*="ymaps-"][class*="-ground-pane"] {
  filter: grayscale(1);
  -webkit-filter: grayscale(1);
}

/* Монохромная карта в подвале (виджет iframe) */
#contacts-map-wrap iframe {
  filter: grayscale(1);
  -webkit-filter: grayscale(1);
}

.contacts__map-link {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #2a2c3d;
  color: #727796;
  text-decoration: none;
  transition: background 0.2s ease, color 0.2s ease;
}

.contacts__map-link:hover {
  background: #353754;
  color: #fff;
}

.contacts__map-link-text {
  font-size: 18px;
  max-width: 280px;
  text-align: center;
  line-height: 1.4;
}

.contacts__map-route-btn {
  position: absolute;
  bottom: 24px;
  left: 24px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 24px;
  background: #232536;
  color: #fff;
  border-radius: 12px;
  font-weight: 500;
  text-decoration: none;
  transition: opacity 0.2s ease;
}

.contacts__map-route-btn:hover {
  color: #fff;
  opacity: 0.9;
}

.footer {
  padding-bottom: 120px;
  background: #222430;
  line-height: 105%;
  color: #fff;
}

.footer__top {
  display: flex;
  justify-content: space-between;
  margin-bottom: 84px;
}

.footer__bottom {
  display: flex;
  justify-content: space-between;
}

.footer__socials {
  display: flex;
  gap: 12px;
}

/* Иконка MAX (SVG без width/height) — задаём размер, чтобы отображалась */
.footer__socials img.footer__socials-icon--max {
  width: 25px;
  height: 25px;
  object-fit: contain;
}

.bg {
  width: 100%;
  height: 135vh;
  position: absolute;
  bottom: 0;
  z-index: -1;
  background: #222430;
  border-radius: 124px 124px 0 0;
}

@media (max-width: 1750px) {
  body {
    font-size: 11px;
  }

  .container {
    max-width: 1218px;
  }

  .container-less {
    max-width: 1140px;
  }

  .hero-title {
    font-size: 237px;
  }

  .heading-two {
    font-size: 25px;
  }

  .heading-three {
    font-size: 17px;
  }

  .bg {
    border-radius: 88px 88px 0 0;
  }

  .btn {
    padding: 6px 12px;
    border-radius: 12px;
  }

  .btn img {
    max-width: 14px;
  }

  .btn-withIcon {
    padding: 0;
    height: 32px;
  }

  .btn-withIcon span:last-of-type {
    width: 32px;
    border-radius: 0 12px 12px 0;
  }

  .swiper:not(.swiperPartners):not(.swiperMain):not(.swiper-car-images):not(.swiper-car-images-thumbs) .swiper-slide:first-of-type,
  .swiper-pagination-custom,
  .about-main,
  .live__info {
    margin-left: 84px;
  }

  .swiper-pagination-custom {
    gap: 12px;
    margin-top: 30px;
  }

  .swiper-pagination-line {
    width: 19px;
    height: 2px;
    border-radius: 7px;
  }

  .swiper-pagination-line-active {
    width: 32px;
    height: 4px;
  }

  .blue-elem::before {
    border-radius: 0 7px 7px 0;
    width: 7px;
    min-width: 7px;
    height: 22px;
  }

  .header {
    padding-top: 15px;
  }

  .header__logo img {
    width: 152px;
    height: 29px;
  }

  .header__phone__item {
    padding: 8px 12px;
    gap: 24px;
  }

  .header__phone__phoneicon {
    width: 13px;
    height: 13px;
    margin-top: -2px;
  }

  .header__phone__arrow {
    width: 10px;
    height: 8px;
  }

  .nav ul {
    gap: 20px;
  }

  .nav.header__nav ul {
    padding: 8.5px 0;
    border-radius: 8px;
    font-size: 12px;
    line-height: 100%;
  }

  .nav__item__circle::before {
    width: 6px;
    height: 6px;
  }

  .main {
    margin-bottom: -130px;
    padding: 72px 0 0;
  }

  .main .container {
    max-width: 1168px;
  }

  .main__text {
    margin-top: 24px;
    font-size: 20px;
  }

  .main__text-white span {
    font-size: 87px;
  }

  .swiperAuto {
    padding: 70px 0 4px;
  }

  .swiperAuto .swiper-slide {
    width: 260px;
    height: 160px;
    font-size: 12px;
  }

  .car-filters {
    border-radius: 0 0 123px 73px;
  }

  .car-filters__form {
    gap: 4px;
  }

  .car-filters__form .btn-blue {
    padding: 9px 30px;
  }

  .car-filters .btn-show {
    padding: 7px 30px;
    top: 16px;
    border-radius: 0 0 23px 23px;
  }

  .select__title {
    height: 32px;
    min-width: 176px;
    border-radius: 12px;
  }

  .select__result {
    border-radius: 12px;
  }

  .select img {
    max-width: 14px;
  }

  .carlist {
    margin-top: 40px;
  }

  .carlist__item {
    padding: 12px;
  }

  .order-car {
    margin: -20px 0 -32px 13.5%;
    font-size: 13px;
  }

  .order-car__right img {
    width: 122%;
    right: 184px;
  }

  .order-car p {
    width: 80%;
    margin: 80px 0 50px;
  }

  .order-car .btn {
    max-width: 154px;
  }

  .service-list {
    height: 452px;
    gap: 8px;
    margin-bottom: 206px;
  }

  .service {
    padding: 46px 24px;
    border-radius: 16px;
  }

  .ransom-car {
    margin: 0 0 184px 13%;
    gap: 56px;
    font-size: 15px;
  }

  .ransom-car__left p {
    margin: 102px 0 76px;
  }

  .ransom-car__left .btn {
    max-width: 186px;
    font-size: 11px;
  }

  .ransom-car__right img {
    width: 84%;
    top: 56px;
  }

  .video-gallery {
    margin-bottom: 204px;
  }

  .swiper-video-gallery .swiper-slide {
    width: 626px;
    height: 354px;
  }

  .review-list {
    margin-bottom: 64px;
  }

  .review-list .container {
    max-width: 1194px;
  }

  .review-list h2 {
    font-size: 17px;
  }

  .swiper-review-list {
    margin-top: 18px;
  }

  .review {
    width: 396px;
    padding: 18px 30px;
    border-radius: 9px;
  }

  .review__header {
    font-size: 14px;
  }

  .review__header:before {
    border-radius: 0 7px 7px 0;
    width: 7px;
    height: 22px;
  }

  .review__avatar img {
    width: 56px;
    height: 56px;
  }

  .review__stars {
    gap: 4px;
  }

  .review__stars img {
    width: 14px;
  }

  .review__text {
    margin: 32px 0 26px;
  }

  .company-history {
    margin-bottom: 90px;
    padding: 134px 0 116px;
  }

  .company-history__left {
    font-size: 50px;
  }

  .company-history__left img {
    border-radius: 24px 0 24px 24px;
  }

  .company-history__left p {
    top: 52px;
    gap: 58px;
  }

  .company-history__right {
    padding: 52px 52px 32px;
    border-radius: 27px 27px 27px 0;
    font-size: 13px;
  }

  .company-history__text {
    margin: 118px 0 40px;
  }

  .company-history__text p:not(:last-of-type) {
    margin-bottom: 18px;
  }

  .company-history__link {
    font-size: 17px;
  }

  .company-history__title img {
    width: 40px;
  }

  .company-history__title h2 {
    font-size: 17px;
  }

  .partners {
    margin-bottom: 186px;
    padding-bottom: 40px;
  }

  .partners .swiper-slide {
    width: 110px;
    height: 77px;
  }

  .contacts {
    padding-bottom: 80px;
  }

  .contacts__info {
    margin-bottom: 54px;
    font-size: 14px;
  }

  .contacts__left {
    gap: 32px;
    font-size: 45px;
  }

  .contacts__left img {
    width: 56px;
  }

  .contacts__year {
    margin-top: 42px;
  }

  .contacts__location img {
    width: 18px;
  }

  .contacts__right img {
    width: 18px;
  }

  .contacts__btns {
    margin-top: 28px;
    gap: 8px;
    font-size: 11px;
  }

  .contacts__map img {
    border-radius: 31px;
  }

  .contacts__map-wrap {
    border-radius: 31px;
  }

  .footer {
    padding-bottom: 64px;
  }

  .footer__top {
    margin-bottom: 60px;
  }

  .footer__bottom {
    font-size: 14px;
  }

  .footer__bottom .developer img {
    width: 146px;
    height: 42px;
  }

  .footer__socials {
    gap: 10px;
  }

  .footer__socials img {
    vertical-align: -webkit-baseline-middle;
  }
}

@media (max-width: 1365px) {
  body {
    font-size: 21px;
  }

  .container,
  .container-less {
    max-width: 100%;
    padding-left: 40px;
    padding-right: 40px;
  }

  .hero-title {
    font-size: 276px;
  }

  .heading-two {
    font-size: 48px;
  }

  .heading-three {
    font-size: 33px;
    line-height: normal;
  }

  .btn {
    padding: 18px 70px;
    border-radius: 23px;
  }

  .btn img {
    max-width: 32px;
  }

  .btn-withIcon {
    padding: 0;
    height: 60px;
  }

  .btn-withIcon span:last-of-type {
    width: 72px;
    border-radius: 0 23px 23px 0;
  }

  .bg {
    border-radius: 107px 107px 0 0;
  }

  .swiper:not(.swiperPartners):not(.swiperMain):not(.swiper-car-images):not(.swiper-car-images-thumbs) .swiper-slide:first-of-type,
  .swiper-pagination-custom,
  .about-main,
  .live__info {
    margin-left: 36px;
  }

  .swiper-pagination-line {
    width: 37px;
    height: 4px;
    border-radius: 13px;
  }

  .swiper-pagination-line-active {
    width: 60px;
    height: 8px;
  }

  .blue-elem::before {
    border-radius: 0 13px 13px 0;
    width: 13px;
    min-width: 13px;
    height: 41px;
  }

  .header {
    padding-top: 45px;
  }

  .header__logo img {
    width: 285px;
    height: 54px;
  }

  .header__phone {
    margin-left: auto;
    margin-right: 0;
  }

  .header__phone__item {
    padding: 14px 30px;
    gap: 32px;
    border-radius: 15px;
  }

  .header__phone__phoneicon {
    width: 32px;
    height: 32px;
    margin-top: -8px;
  }

  .header__phone__arrow {
    width: 18px;
    height: 16px;
  }

  .nav ul {
    gap: 42px;
  }

  .nav.header__nav {
    display: none;
  }

  .nav__item__circle::before {
    width: 11px;
    height: 11px;
  }

  .burger {
    width: 65px;
    height: 54px;
    display: flex;
    justify-content: center;
    align-items: center;
    border: none;
    outline: none;
    border-radius: 15px;
    background: #2a2c3d;
  }

  .main {
    margin-bottom: 0;
    padding: 214px 0 110px;
  }

  .main .container {
    max-width: 100%;
  }

  .main .hero-title {
    top: 21%;
    left: -4%;
  }

  .main__text {
    margin-top: -46px;
    font-size: 38px;
  }

  .main__text-white span {
    font-size: 163px;
  }

  .main .swiper-slide {
    flex-direction: column-reverse;
  }

  .main .swiper-slide img {
    position: static;
    max-width: -moz-max-content;
    max-width: max-content;
    width: 110%;
  }

  .main .swiper-pagination-custom {
    justify-content: center;
    position: static;
    margin: 112px auto 0;
  }

  .swiperAuto {
    padding: 80px 0 94px;
  }

  .swiperAuto .swiper-slide {
    width: 343px;
    height: 175px;
    font-size: 21px;
  }

  .car-filters {
    border-radius: 0 0 107px 107px;
  }

  .car-filters__form {
    flex-wrap: wrap;
    justify-content: center;
    gap: 24px 16px;
  }

  .car-filters__form::after {
    content: none;
  }

  .car-filters__form .btn img {
    width: 26px;
  }

  .car-filters__form .btn-blue {
    padding: 16px 70px;
    border-radius: 23px;
  }

  .car-filters .btn-show {
    padding: 20px 60px;
    top: 65px;
    border-radius: 0 0 44px 44px;
  }

  .car-filters .btn-show svg {
    width: 21px;
    height: 10px;
  }

  .select {
    width: 49%;
  }

  .select__title {
    height: 60px;
    min-width: 176px;
    padding: 12px 20px;
    border-radius: 23px;
  }

  .select__result {
    border-radius: 23px;
  }

  .select img {
    max-width: 32px;
    max-height: 32px;
  }

  .carlist {
    margin: 86px 0 0;
  }

  .carlist__item {
    padding: 16px;
  }

  .order-car {
    margin: 220px 0 -144px;
    position: relative;
    flex-direction: column;
    font-size: 25px;
  }

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

  .order-car__right img {
    width: 130%;
    top: -246px;
    right: 236px;
  }

  .order-car p {
    width: 53%;
    margin: 66px auto 0;
  }

  .order-car .btn {
    width: 285px;
    max-width: none;
    position: absolute;
    left: 50%;
    bottom: 26%;
    transform: translateX(-50%);
  }

  .service-list {
    height: auto;
    gap: 18px 12px;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 707px 420px 420px;
    margin-bottom: 178px;
  }

  .service {
    padding: 72px 36px;
    border-radius: 31px;
  }

  .service-first {
    grid-column: 1/2;
    grid-row: 1/2;
  }

  .service-second {
    grid-column: 2/3;
    grid-row: 1/2;
  }

  .service-third {
    grid-column: 1/3;
    grid-row: 2/3;
  }

  .service-third p {
    max-width: 50%;
  }

  .service-fourth {
    grid-column: 1/3;
    grid-row: 3/4;
  }

  .service-fourth p {
    max-width: 50%;
  }

  .ransom-car {
    margin: 0 0 210px 0;
    padding-bottom: 148px;
    position: relative;
    flex-direction: column;
    gap: 128px;
    font-size: 28px;
  }

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

  .ransom-car__left p {
    max-width: none;
    width: 53%;
    margin: 66px auto 0;
  }

  .ransom-car__right img {
    position: relative;
    width: 100%;
  }

  .ransom-car .hero-title {
    left: -1%;
    top: -6%;
    font-size: 330px;
  }

  .ransom-car .btn {
    width: 348px;
    max-width: none;
    position: absolute;
    left: 50%;
    bottom: 0;
    font-size: 21px;
    transform: translateX(-50%);
  }

  .video-gallery {
    margin-bottom: 322px;
  }

  .video-gallery .hero-title {
    bottom: -22%;
    font-size: 233px;
  }

  .swiper-video-gallery .swiper-slide {
    width: 834px;
    height: 473px;
  }

  .swiper-video-gallery .swiper-pagination-custom {
    margin-bottom: 66px;
    justify-content: center;
  }

  .review-list {
    margin-bottom: 166px;
  }

  .review-list .container {
    max-width: 100%;
  }

  .review-list h2 {
    font-size: 33px;
  }

  .swiper-review-list {
    margin-top: 34px;
  }

  .review {
    width: 743px;
    padding: 36px 64px;
    border-radius: 16px;
  }

  .review__header {
    font-size: 26px;
  }

  .review__header:before {
    border-radius: 0 13px 13px 0;
    width: 13px;
    height: 41px;
  }

  .review__avatar img {
    width: 106px;
    height: 106px;
  }

  .review__stars {
    gap: 8px;
  }

  .review__stars img {
    width: 28px;
  }

  .review__text {
    margin: 64px 0 40px;
  }

  .company-history {
    margin-bottom: 100px;
    padding: 80px 0;
  }

  .company-history .container {
    flex-direction: column;
  }

  .company-history .container>div {
    width: 100%;
  }

  .company-history__left {
    font-size: 77px;
  }

  .company-history__left img {
    border-radius: 37px 0 37px 37px;
  }

  .company-history__left p {
    top: 86px;
    gap: 76px;
  }

  .company-history__right {
    padding: 52px 52px 32px;
    border-radius: 51px 51px 51px 0;
    font-size: 25px;
  }

  .company-history__text {
    margin: 80px 0 66px;
  }

  .company-history__text p:not(:last-of-type) {
    margin-bottom: 32px;
  }

  .company-history__link {
    text-align: left;
    font-size: 22px;
  }

  .company-history__title img {
    width: 74px;
  }

  .company-history__title h2 {
    font-size: 33px;
  }

  .partners {
    margin-bottom: 240px;
  }

  .partners .swiper-slide {
    width: 207px;
    height: 145px;
  }

  .contacts {
    padding-bottom: 100px;
  }

  .contacts__info {
    height: 400px;
    flex-direction: column;
    flex-wrap: wrap;
    justify-content: left;
    gap: 28px 90px;
    margin-bottom: 120px;
    font-size: 26px;
  }

  .contacts__left {
    flex-direction: column;
    gap: 102px;
    font-size: 75px;
  }

  .contacts__left img {
    width: 90px;
  }

  .contacts__year {
    margin-top: 20px;
  }

  .contacts__location {
    gap: 16px;
  }

  .contacts__location img {
    width: 24px;
  }

  .contacts__location.content-before:before {
    position: static;
    width: 32px;
    height: 32px;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg width='33' height='33' viewBox='0 0 33 33' fill='none' xmlns='http://www.w3.org/2000/svg'%3e%3cpath d='M13.4998 29.1091C14.3086 29.7764 15.1521 30.3863 16.0156 30.9816C16.881 30.3942 17.7204 29.7695 18.5314 29.1091C19.8834 27.999 21.1558 26.7953 22.3391 25.5069C25.0671 22.524 28.0273 18.1998 28.0273 13.3457C28.0273 11.7683 27.7167 10.2063 27.113 8.74902C26.5094 7.29169 25.6246 5.96753 24.5092 4.85214C23.3938 3.73674 22.0696 2.85197 20.6123 2.24832C19.155 1.64468 17.593 1.33398 16.0156 1.33398C14.4382 1.33398 12.8763 1.64468 11.4189 2.24832C9.96161 2.85197 8.63745 3.73674 7.52206 4.85214C6.40667 5.96753 5.52189 7.29169 4.91824 8.74902C4.3146 10.2063 4.00391 11.7683 4.00391 13.3457C4.00391 18.1998 6.96413 22.5227 9.69212 25.5069C10.8754 26.7957 12.1478 27.9985 13.4998 29.1091ZM16.0156 17.6833C14.8652 17.6833 13.762 17.2263 12.9485 16.4128C12.1351 15.5994 11.6781 14.4961 11.6781 13.3457C11.6781 12.1953 12.1351 11.092 12.9485 10.2786C13.762 9.46513 14.8652 9.00814 16.0156 9.00814C17.166 9.00814 18.2693 9.46513 19.0827 10.2786C19.8962 11.092 20.3532 12.1953 20.3532 13.3457C20.3532 14.4961 19.8962 15.5994 19.0827 16.4128C18.2693 17.2263 17.166 17.6833 16.0156 17.6833Z' fill='white' /%3e%3c/svg%3e");
  }

  .contacts__right>a {
    gap: 16px;
  }

  .contacts__right img {
    width: 32px;
  }

  .contacts__btns {
    margin-top: 60px;
    gap: 16px;
    font-size: 21px;
  }

  .contacts__btns .btn {
    padding: 12px 20px;
  }

  .contacts__map img {
    height: 700px;
    border-radius: 57px;
    -o-object-fit: cover;
    object-fit: cover;
  }

  .contacts__map-wrap {
    height: 700px;
    border-radius: 57px;
  }

  .footer {
    padding-bottom: 30px;
  }

  .footer__top {
    flex-direction: column-reverse;
    gap: 134px;
    margin-bottom: 112px;
  }

  .footer__bottom {
    flex-direction: column;
    gap: 104px;
    font-size: 26px;
  }

  .footer__bottom .developer img {
    width: 274px;
    height: 80px;
  }

  .footer .nav ul {
    flex-wrap: wrap;
    justify-content: start;
  }

  .footer .nav ul li {
    width: 30%;
  }

  .footer__socials {
    gap: 32px;
  }

  .footer__socials img {
    width: auto;
    height: 42px;
    vertical-align: -webkit-baseline-middle;
  }
  .footer__socials img.footer__socials-icon--max {
    width: 42px;
    height: 42px;
  }
}

@media (max-width: 1023px) {
  body {
    font-size: 16px;
  }

  .container,
  .container-less {
    padding-left: 30px;
    padding-right: 30px;
  }

  .hero-title {
    font-size: 207px;
  }

  .heading-two {
    font-size: 36px;
  }

  .heading-three {
    font-size: 25px;
  }

  .btn {
    padding: 12px 48px;
    border-radius: 17px;
  }

  .btn img {
    max-width: 28px;
  }

  .btn-withIcon {
    padding: 0;
    height: 45px;
  }

  .btn-withIcon span:last-of-type {
    width: 55px;
    border-radius: 0 17px 17px 0;
  }

  .bg {
    border-radius: 80px 80px 0 0;
  }

  .swiper:not(.swiperPartners):not(.swiperMain):not(.swiper-car-images):not(.swiper-car-images-thumbs) .swiper-slide:first-of-type,
  .swiper-pagination-custom,
  .about-main,
  .live__info {
    margin-left: 32px;
  }

  .swiper-pagination-line {
    border-radius: 10px;
    width: 28px;
    height: 3px;
  }

  .swiper-pagination-line-active {
    border-radius: 10px;
    width: 45px;
    height: 6px;
  }

  .blue-elem::before {
    border-radius: 0 8px 8px 0;
    width: 8px;
    min-width: 8px;
    height: 25px;
  }

  .header {
    padding-top: 34px;
  }

  .header__logo img {
    width: 214px;
    height: 41px;
  }

  .header__phone__item {
    padding: 10px 16px;
    gap: 26px;
    border-radius: 11px;
  }

  .header__phone__phoneicon {
    width: 24px;
    height: 24px;
    margin-top: -5px;
  }

  .header__phone__arrow {
    width: 13px;
    height: 12px;
  }

  .nav ul {
    gap: 34px;
  }

  .nav__item__circle::before {
    width: 8px;
    height: 8px;
  }

  .burger {
    width: 49px;
    height: 41px;
    border-radius: 11px;
  }

  .main {
    margin-bottom: 0;
    padding: 170px 0 88px;
  }

  .main__text {
    font-size: 28px;
  }

  .main__text-white span {
    font-size: 122px;
  }

  .main .swiper-pagination-custom {
    margin: 84px auto 0;
  }

  .swiperAuto {
    padding: 60px 0 30px;
  }

  .swiperAuto .swiper-slide {
    width: 250px;
    height: 165px;
    font-size: 15px;
  }

  .car-filters {
    border-radius: 0 0 80px 80px;
  }

  .car-filters__form {
    gap: 18px 12px;
  }

  .car-filters__form .btn img {
    max-width: 20px;
  }

  .car-filters .btn-show {
    padding: 14px 44px;
    top: 54px;
    border-radius: 0 0 33px 33px;
  }

  .car-filters__form .btn-blue {
    padding: 10px 48px;
    border-radius: 16px;
  }

  .car-filters .btn-show svg {
    width: 16px;
    height: 8px;
  }

  .select__title {
    height: 45px;
    border-radius: 17px;
  }

  .select__result {
    border-radius: 17px;
  }

  .select img {
    max-width: 20px;
    max-height: 20px;
  }

  .carlist {
    margin: 56px 0 -20px;
  }

  .carlist__item {
    padding: 16px;
  }

  .order-car {
    margin: 160px 0 -70px;
    font-size: 19px;
  }

  .order-car__right img {
    width: 125%;
    top: -146px;
    right: 140px;
  }

  .order-car p {
    margin: 44px auto 0;
  }

  .order-car .btn {
    width: 214px;
    bottom: 23%;
    font-size: 16px;
  }

  .service-list {
    gap: 12px 10px;
    grid-template-rows: 530px 316px 316px;
    margin-bottom: 136px;
  }

  .service {
    padding: 56px 26px 40px;
    border-radius: 23px;
  }

  .ransom-car {
    margin: 0 0 160px 0;
    padding-bottom: 119px;
    gap: 84px;
    font-size: 21px;
  }

  .ransom-car__left p {
    margin: 50px auto 0;
  }

  .ransom-car .hero-title {
    font-size: 247px;
  }

  .ransom-car .btn {
    width: 261px;
    font-size: 16px;
  }

  .video-gallery {
    margin-bottom: 236px;
  }

  .video-gallery .hero-title {
    font-size: 175px;
  }

  .swiper-video-gallery .swiper-slide {
    width: 626px;
    height: 355px;
  }

  .swiper-video-gallery .swiper-pagination-custom {
    margin-bottom: 52px;
  }

  .review-list {
    margin-bottom: 132px;
  }

  .review-list h2 {
    font-size: 25px;
  }

  .review {
    width: 557px;
    padding: 20px 40px;
    border-radius: 12px;
  }

  .review__header {
    font-size: 20px;
  }

  .review__avatar img {
    width: 80px;
    height: 80px;
  }

  .review__stars img {
    width: 20px;
  }

  .review__text {
    margin: 48px 0 22px;
  }

  .company-history {
    margin-bottom: 36px;
    padding: 60px 0;
  }

  .company-history__left {
    font-size: 58px;
  }

  .company-history__left img {
    border-radius: 28px 0 28px 28px;
  }

  .company-history__left p {
    top: 60px;
    gap: 56px;
  }

  .company-history__left p::before {
    border-radius: 0 8px 8px 0;
    width: 8px;
    height: 25px;
  }

  .company-history__right {
    padding: 38px 38px 32px 42px;
    border-radius: 38px 38px 38px 0;
    font-size: 19px;
  }

  .company-history__text {
    margin: 56px 0 34px;
  }

  .company-history__text p:not(:last-of-type) {
    margin-bottom: 26px;
  }

  .company-history__link {
    font-size: 17px;
  }

  .company-history__title img {
    width: 55px;
  }

  .company-history__title h2 {
    font-size: 25px;
  }

  .partners {
    margin-bottom: 178px;
    padding-bottom: 8px;
  }

  .contacts {
    padding-bottom: 86px;
  }

  .contacts__info {
    height: 300px;
    gap: 68px 90px;
    font-size: 20px;
  }

  .contacts__left {
    gap: 78px;
    font-size: 56px;
  }

  .contacts__left img {
    width: 67px;
  }

  .contacts__year {
    display: none;
  }

  .contacts__right img {
    width: 24px;
  }

  .contacts__btns {
    margin-top: 36px;
    gap: 12px;
  }

  .contacts__btns .btn {
    padding: 10px 20px;
    font-size: 16px;
  }

  .contacts__map img {
    height: 525px;
  }

  .contacts__map-wrap {
    height: 525px;
  }

  .footer__top {
    gap: 94px;
    margin-bottom: 88px;
  }

  .footer__bottom {
    gap: 78px;
    font-size: 20px;
  }

  .footer__bottom .developer img {
    width: 206px;
    height: 60px;
  }

  .footer__socials {
    gap: 24px;
  }

  .footer__socials img {
    height: 30px;
    vertical-align: -webkit-baseline-middle;
  }
  .footer__socials img.footer__socials-icon--max {
    width: 30px;
    height: 30px;
  }
}

@media (max-width: 767px) {
  body {
    font-size: 15px;
  }

  .container,
  .container-less {
    padding-left: 10px;
    padding-right: 10px;
  }

  .hero-title {
    font-size: 155px;
  }

  .heading-two {
    font-size: 24px;
  }

  .bg {
    border-radius: 34px 34px 0 0;
  }

  .swiper:not(.swiperPartners):not(.swiperMain):not(.swiper-car-images):not(.swiper-car-images-thumbs) .swiper-slide:first-of-type,
  .swiper-pagination-custom,
  .about-main,
  .live__info {
    margin-left: 10px;
  }

  .swiper-pagination-line {
    border-radius: 7px;
    width: 19px;
    height: 1px;
  }

  .swiper-pagination-line-active {
    border-radius: 7px;
    width: 32px;
    height: 4px;
  }

  .header {
    padding-top: 20px;
  }

  .header__phone {
    position: absolute;
    right: 10px;
  }

  .header__phone__item {
    padding: 10px 8px;
    gap: 8px;
  }

  .header__phone__item a {
    display: inline-block;
    position: relative;
    z-index: 2;
    pointer-events: auto;
    touch-action: manipulation;
  }

  .header__phone__item a * {
    pointer-events: auto;
  }

  .header__phone:not(.active) .header__phone__item:first-of-type > div {
    display: none;
  }

  .main {
    padding: 164px 0 42px;
  }

  .main__text {
    margin-top: -14px;
    font-size: 20px;
  }

  .main__text-white span {
    font-size: 86px;
  }

  .main .swiper-pagination-custom {
    margin: 50px auto 0;
  }

  .main .hero-title {
    left: 4%;
    top: 21%;
  }

  .swiperAuto {
    padding: 88px 0 6px;
  }

  .swiperAuto .swiper-slide {
    width: 214px;
  }

  .car-filters {
    border-radius: 0 0 40px 40px;
  }

  .car-filters__form {
    gap: 12px;
  }

  .car-filters__form .btn {
    margin-top: 20px;
  }

  .select {
    width: 100%;
  }

  .select__title {
    height: 45px;
    border-radius: 17px;
  }

  .select__result {
    border-radius: 17px;
  }

  .carlist {
    margin: 48px 0 -20px;
    grid-template-columns: repeat(2, 1fr);
  }

  .order-car {
    margin: 150px 0 162px;
    font-size: 15px;
  }

  .order-car__right img {
    width: 158%;
    top: -48px;
    right: 119px;
  }

  .order-car p {
    width: 90%;
    margin: 38px auto 0;
  }

  .order-car .btn {
    bottom: -3%;
  }

  .service-list {
    gap: 12px 10px;
    display: flex;
    flex-direction: column;
    margin-bottom: 106px;
  }

  .service {
    height: 490px;
    padding: 50px 42px 28px 26px;
  }

  .service-first,
  .service-second {
    background-size: 100% auto;
    background-position-y: center;
  }

  .service-third {
    padding-top: 44px;
    background-image: url(../img/main-services-3-mobile.png);
  }

  .service-third p {
    max-width: 100%;
  }

  .service-fourth {
    padding-top: 44px;
    background-image: url(../img/main-services-4-mobile.png);
  }

  .service-fourth p {
    max-width: 100%;
  }

  .ransom-car {
    margin: 0 0 102px 0;
    padding-bottom: 132px;
    gap: 22px;
    font-size: 15px;
  }

  .ransom-car__left p {
    margin: 30px auto 0;
    width: 75%;
  }

  .ransom-car .hero-title {
    top: 11%;
    font-size: 125px;
  }

  .ransom-car .btn {
    font-size: 15px;
  }

  .video-gallery {
    margin-bottom: 106px;
  }

  .video-gallery .hero-title {
    font-size: 88px;
  }

  .swiper-video-gallery .swiper-slide {
    width: 300px;
    height: 176px;
  }

  .swiper-video-gallery .swiper-pagination-custom {
    margin-bottom: 32px;
  }

  .review-list {
    margin-bottom: 166px;
  }

  .swiper-review-list {
    margin-top: 20px;
  }

  .review {
    width: 333px;
    padding: 30px 20px;
  }

  .review__header {
    align-items: start;
    font-size: 18px;
  }

  .review .blue-elem::before {
    height: 31px;
    margin-top: 11px;
  }

  .review__avatar img {
    width: 57px;
    height: 57px;
  }

  .review__stars img {
    width: 16px;
  }

  .review__info {
    flex-wrap: wrap;
    gap: 26px;
  }

  .review__text {
    margin: 48px 0 22px;
  }

  .company-history {
    margin-bottom: 108px;
    padding: 0;
    background: none;
  }

  .company-history__left {
    font-size: 29px;
  }

  .company-history__left img {
    border-radius: 14px 0 14px 14px;
  }

  .company-history__left p {
    max-width: 50%;
    top: 35px;
    left: 18px;
  }

  .company-history__left p::before {
    content: none;
  }

  .company-history__right {
    padding: 30px 20px 32px;
    border-radius: 19px 19px 19px 0;
    font-size: 14px;
  }

  .company-history__text {
    margin: 50px 0 28px;
    line-height: 183%;
  }

  .company-history__text p:not(:last-of-type) {
    margin-bottom: 22px;
  }

  .company-history__link {
    font-size: 17px;
  }

  .company-history__title img {
    width: 48px;
  }

  .company-history__title h2 {
    font-size: 24px;
  }

  .partners {
    margin-bottom: 58px;
    padding-bottom: 20px;
  }

  .partners .swiper-slide {
    width: 100px;
    height: 70px;
  }

  .contacts {
    padding-bottom: 56px;
  }

  .contacts__info {
    height: auto;
    flex-direction: column;
    gap: 26px;
    margin-bottom: 58px;
    font-size: 16px;
  }

  .contacts__left {
    gap: 31px;
    margin-bottom: 44px;
    font-size: 44px;
  }

  .contacts__left img {
    width: 60px;
  }

  .contacts__middle .contacts__text-blue {
    margin-left: 40px;
  }

  .contacts__right>a {
    gap: 16px;
  }

  .contacts__year {
    display: none;
  }

  .contacts__location img {
    width: 24px;
  }

  .contacts__btns {
    margin-top: 70px;
    gap: 12px;
  }

  .contacts__btns .btn {
    padding: 10px 20px;
    font-size: 16px;
  }

  .contacts__map img {
    height: 525px;
  }

  .contacts__map-wrap {
    height: 525px;
  }

  .footer__top {
    gap: 76px;
    margin-bottom: 66px;
  }

  .footer__bottom {
    gap: 78px;
    font-size: 16px;
    line-height: 131%;
  }

  .footer__bottom a:first-of-type {
    width: 80%;
  }

  .footer__socials img {
    vertical-align: -webkit-baseline-middle;
  }

  .footer .nav ul li {
    width: 42%;
  }
}

.page {
  padding-top: 138px;
}

/* WordPress автоматически добавляет class="page" к <body> для статических страниц.
   Чтобы избежать двойного padding-top (body + main), сбрасываем его на body. */
body.page,
body.error404,
body.search-results,
body.blog {
  padding-top: 0 !important;
}

/* Страница с текстом (политика, произвольная страница без своего шаблона) */
body.page .site-main {
  padding-top: 138px;
  padding-bottom: 120px;
}

body.page .site-main .container {
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

body.page .site-main .breadcrumbs {
  margin-bottom: 24px;
}

body.page .site-main .entry-header {
  margin-bottom: 32px;
  padding-bottom: 24px;
  border-bottom: 1px solid #4b4a73;
}

body.page .site-main .entry-title {
  font-size: 28px;
  font-weight: 700;
  line-height: 1.3;
  color: #f2f5f7;
  margin: 0;
}

body.page .site-main .entry-content {
  font-size: 16px;
  line-height: 1.65;
  color: #d9d9d9;
}

body.page .site-main .entry-content p {
  margin: 0 0 1em;
}

body.page .site-main .entry-content p:last-child {
  margin-bottom: 0;
}

body.page .site-main .entry-content h2 {
  font-size: 22px;
  font-weight: 700;
  color: #f2f5f7;
  margin: 1.5em 0 0.5em;
  line-height: 1.35;
}

body.page .site-main .entry-content h2:first-child {
  margin-top: 0;
}

body.page .site-main .entry-content h3 {
  font-size: 18px;
  font-weight: 600;
  color: #e8e8e8;
  margin: 1.25em 0 0.4em;
  line-height: 1.4;
}

body.page .site-main .entry-content ul,
body.page .site-main .entry-content ol {
  margin: 0.75em 0 1em;
  padding-left: 1.5em;
}

body.page .site-main .entry-content li {
  margin-bottom: 0.35em;
}

body.page .site-main .entry-content a {
  color: #0466c8;
  text-decoration: none;
}

body.page .site-main .entry-content a:hover {
  text-decoration: underline;
}

body.page .site-main .entry-content strong {
  font-weight: 700;
  color: #e8e8e8;
}

@media (max-width: 1023px) {
  body.page .site-main {
    padding-top: 120px;
    padding-bottom: 80px;
  }

  body.page .site-main .entry-title {
    font-size: 24px;
  }

  body.page .site-main .entry-content {
    font-size: 15px;
  }

  body.page .site-main .entry-content h2 {
    font-size: 20px;
  }

  body.page .site-main .entry-content h3 {
    font-size: 17px;
  }
}

@media (max-width: 767px) {
  body.page .site-main {
    padding-top: 100px;
    padding-bottom: 60px;
  }

  body.page .site-main .entry-header {
    margin-bottom: 24px;
    padding-bottom: 16px;
  }

  body.page .site-main .entry-title {
    font-size: 22px;
  }

  body.page .site-main .entry-content {
    font-size: 14px;
  }

  body.page .site-main .entry-content h2 {
    font-size: 18px;
  }

  body.page .site-main .entry-content h3 {
    font-size: 16px;
  }
}

.page-services .order-car {
  margin-top: -180px;
}

.page-services .ransom-car {
  margin-bottom: 110px;
}

.auto-service-list {
  margin-bottom: 342px;
  display: flex;
  gap: 36px;
}

.auto-service {
  flex: 1;
  height: 667px;
  background-size: cover;
}

.auto-service .blue-elem::before {
  left: 0;
}

.auto-service-first {
  background-image: url(../img/autocredit.png);
}

.auto-service-second {
  background-image: url(../img/tow-truck.png);
}

@media (max-width: 1750px) {
  .page {
    padding-top: 100px;
  }

  .page-services .order-car {
    margin-top: -128px;
  }

  .page-services .ransom-car {
    margin-bottom: 80px;
  }

  .auto-service-list {
    margin-bottom: 240px;
    gap: 26px;
  }

  .auto-service {
    height: 474px;
  }
}

@media (max-width: 1365px) {
  .page {
    padding-top: 180px;
  }

  .page-services .order-car {
    margin-top: 56px;
  }

  .page-services .ransom-car {
    margin-bottom: 240px;
  }

  .auto-service-list {
    flex-direction: column;
    margin-bottom: 172px;
    gap: 26px;
  }

  .auto-service {
    height: 564px;
    flex: none;
  }

  .auto-service-first {
    background-image: url(../img/autocredit-notepad.png);
  }

  .auto-service-second {
    background-image: url(../img/tow-truck-notepad.png);
  }

  .auto-service p {
    max-width: 50%;
  }
}

@media (max-width: 1023px) {
  .page {
    padding-top: 120px;
  }

  .page-services .ransom-car {
    margin-bottom: 180px;
  }

  .auto-service-list {
    margin-bottom: 114px;
  }

  .auto-service {
    height: 423px;
  }
}

@media (max-width: 767px) {
  .page {
    padding-top: 100px;
  }

  .page-services .order-car {
    margin-top: 40px;
    margin-bottom: 74px;
  }

  .page-services .order-car .btn {
    bottom: 7%;
  }

  .page-services .ransom-car {
    margin-bottom: 128px;
  }

  .auto-service {
    height: 463px;
  }

  .auto-service p {
    max-width: 100%;
  }

  .auto-service-first {
    background-image: url(../img/autocredit-mobile.png);
  }

  .auto-service-second {
    background-image: url(../img/tow-truck-mobile.png);
  }
}

.page-catalog {
  padding-top: 128px;
  position: relative;
}

.page-catalog:before {
  height: 10%;
  top: 0;
  background: #2a2c3d;
  z-index: -1;
}

.filters {
  margin-top: 0;
  margin-bottom: 68px;
}

.filters .container-less {
  max-width: 1665px;
}

.filters__mileage {
  margin-bottom: 32px;
  position: relative;
  display: flex;
  gap: 38px;
  align-items: center;
}

.filters__mileage>.btn {
  display: none;
}

.filters__mileage>div {
  display: flex;
  background: #3e4059;
  border-radius: 17px;
}

.filters__mileage>div .btn {
  padding: 12px 26px;
  border-radius: 17px;
  background: transparent;
  color: #727796;
}

.filters__mileage>div .btn:hover {
  background: #3071fb;
  color: #fff;
}

.filters__mileage>div .btn.active {
  background: #3071fb;
  color: #fff;
  cursor: default;
}

.filters__mileage::after {
  position: static;
  flex: 1;
  height: 1px;
  background: #3f4258;
}

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

.filters__form .hidden {
  display: none;
}

.filters__form.active .hidden {
  display: flex;
}

.filters__form.active .filters__form__all-parameters img {
  transform: rotate(180deg);
}

.filters__form>div {
  display: flex;
  justify-content: space-between;
}

.filters__form__left {
  display: flex;
  gap: 12px;
}

.filters__form__middle {
  display: flex;
  gap: 12px;
}

.filters__form__middle .select__title {
  min-width: 268px;
}

.filters__form__right {
  display: flex;
  gap: 12px;
}

.filters__form-small-gap {
  gap: 3px;
}

.filters__form__second .filters__form__right .select__title {
  min-width: 130px;
}

.filters__form__toggles {
  gap: 50px;
  margin-top: 16px;
}

.filters__form__toggles>div {
  display: flex;
  align-items: center;
  gap: 26px;
  flex: 1;
}

.filters__form__toggles>div button {
  display: flex;
  align-items: center;
  gap: 12px;
  background: transparent;
  border: none;
  outline: none;
  white-space: nowrap;
  color: #fff;
}

.filters__form__toggles>div button.filters__form__reset {
  color: #3071fb;
  transition: opacity 0.25s ease, visibility 0.25s ease;
}

.filters__form__reset.filters__form__reset--hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  width: 0;
  min-width: 0;
  padding-left: 0;
  padding-right: 0;
  overflow: hidden;
  gap: 0;
}

.filters__form__toggles .btn {
  min-width: 260px;
  padding: 12px 20px;
}

.filters__form__line {
  flex: 1;
  height: 1px;
  background: #3f4258;
}

.filters__form .filters__form__all-parameters img {
  transition: 0.4s;
}

.filters .select__title,
.filters .select__result {
  min-width: 260px;
  background: #3e4059;
}

.filters label {
  position: relative;
}

.filters label span {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  line-height: normal;
  color: #ccc;
}

.filters .input {
  height: 45px;
  min-width: 260px;
  padding: 12px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border: none;
  background: #3e4059;
  color: #a3adb9;
}

.left-radius {
  border-radius: 17px 0 0 17px;
}

.right-radius {
  border-radius: 0 17px 17px 0;
}

.car-catalog {
  margin-bottom: 266px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px 18px;
}

.car-catalog.container {
  max-width: 1665px;
}

/* Карточка в каталоге: min-width 0 чтобы в grid колонки были одинаковой ширины (иначе третья и др. могут растягиваться из-за min-width: auto). */
.car {
  min-width: 0;
  border-radius: 28px;
  background: #2c2e41;
  font-weight: 300;
  font-size: 15px;
  line-height: 165%;
  color: #d3d8f2;
}

.car__image {
  height: 386px;
}

.car__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  border-radius: 28px 28px 0 0;
}

/* Карточка авто в каталоге и в слайдере «Рекомендуем»: блок с фото, заголовком, ценой, годом, характеристиками. */
.car__info {
  padding: 0 28px 24px;
}

/* Заголовок в одну строку, текст плавно скрывается справа (как в style.css.bak от 24.02). */
.car__title-wrap {
  position: relative;
  bottom: 10px;
  padding: 10px;
  border-radius: 12px;
  background: #2c2e41;
  overflow: hidden;
  transition: background 0.4s;
}

.car__title-wrap::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 56px;
  height: 100%;
  background: linear-gradient(to right, transparent, #2c2e41);
  pointer-events: none;
  transition: background 0.4s;
}

.car__title-wrap h3 {
  margin: 0;
  color: #fff;
  font-weight: 500;
  font-size: 21px;
  line-height: 119%;
  white-space: nowrap;
  overflow: hidden;
}

.car__top {
  margin: 8px 10px 22px;
  display: flex;
  padding-bottom: 15px;
  border-bottom: 1px solid #42445b;
  color: #fff;
  font-weight: 500;
  font-size: 19px;
  line-height: 134%;
}

.car__price {
  width: 70%;
  font-weight: 700;
  font-size: 21px;
  line-height: 119%;
}

.car__bottom {
  margin: 0 10px;
  display: flex;
}

.car__bottom>div:first-of-type {
  width: 70%;
}

.recommend {
  margin-bottom: 200px;
}

.recommend .container {
  margin-bottom: 18px;
  padding-left: 14px;
}

.recommend .swiper-slide {
  width: 546px;
  height: 576px;
}

.application {
  height: 455px;
  margin-bottom: 194px;
  position: relative;
  display: flex;
  border-radius: 0 45px 45px 45px;
  background: linear-gradient(175deg, #2537aa 0%, #0f1644 100%);
  color: #fff;
  overflow: hidden;
}

.application__left {
  padding: 51px 75px;
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: space-between;
}

.application__right img {
  position: relative;
  bottom: 30px;
  right: 100px;
  max-width: max-content;
}

.application h2 {
  font-size: 58px;
  line-height: 98%;
}

.application .btn {
  width: 245px;
}

.pagination-faker.woocommerce-pagination {
  margin-top: 48px;
  margin-bottom: 0;
  padding: 0;
  display: flex;
  justify-content: center;
  width: 100%;
}

.pagination-faker .nav-links,
.pagination-faker ul.page-numbers {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 10px;
  list-style: none;
  margin: 0;
  padding: 12px 20px;
  border-radius: 17px;
  background: #2c2e41;
  width: fit-content;
  min-width: 0;
  max-width: 100%;
}

.pagination-faker .page-numbers li {
  margin: 0;
  padding: 0;
  list-style: none;
}

.pagination-faker .nav-links>*,
.pagination-faker .nav-links a,
.pagination-faker .nav-links span,
.pagination-faker ul.page-numbers li>* {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 44px;
  height: 44px;
  padding: 0 14px;
  border-radius: 12px;
  background: #33364c;
  color: #d3d8f2;
  font-size: 15px;
  font-weight: 500;
  text-decoration: none;
  transition: background 0.2s ease, color 0.2s ease;
}

.pagination-faker .nav-links a.page-numbers:hover,
.pagination-faker .nav-links span.page-numbers:hover,
.pagination-faker ul.page-numbers a:hover {
  background: #42445b;
  color: #fff;
}

.pagination-faker .nav-links .current,
.pagination-faker .nav-links span.page-numbers.current,
.pagination-faker ul.page-numbers .current,
.pagination-faker ul.page-numbers span.current {
  background: #0466c8;
  color: #fff;
  cursor: default;
}

.pagination-faker .nav-links .prev,
.pagination-faker .nav-links .next,
.pagination-faker ul.page-numbers a.prev,
.pagination-faker ul.page-numbers a.next {
  min-width: 44px;
  padding: 0 12px;
  font-size: 20px;
  line-height: 1;
  color: #d3d8f2;
}

.pagination-faker .nav-links .dots,
.pagination-faker .nav-links .page-numbers.dots,
.pagination-faker ul.page-numbers .dots span {
  background: transparent !important;
  min-width: 24px;
  width: auto;
  padding: 0 4px;
  color: #9dabcd;
  font-size: 15px;
}

.car-catalog .navigation,
.car-catalog .navigation.pagination,
.page-catalog .car-catalog .navigation,
.car-catalog .woocommerce-pagination,
.car-catalog .pagination-faker {
  grid-column: 1 / -1;
  margin-top: 48px;
  margin-bottom: 0;
  margin-left: 0;
  margin-right: 0;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  max-width: 100%;
  position: relative;
  padding: 0;
}

.car-catalog .nav-links,
.page-catalog .car-catalog .nav-links,
.car-catalog .woocommerce-pagination .nav-links,
.car-catalog .woocommerce-pagination ul.page-numbers {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: flex-start;
  gap: 10px;
  list-style: none;
  margin: 0;
  padding: 12px 20px;
  border-radius: 17px;
  background: #2c2e41;
  width: fit-content;
  min-width: 0;
  max-width: 100%;
}

.car-catalog .woocommerce-pagination .page-numbers li {
  margin: 0;
  padding: 0;
  list-style: none;
}

.car-catalog .nav-links>*,
.car-catalog .nav-links a,
.car-catalog .nav-links span,
.car-catalog .woocommerce-pagination ul.page-numbers li>* {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 44px;
  height: 44px;
  padding: 0 14px;
  border-radius: 12px;
  background: #33364c;
  color: #d3d8f2;
  font-size: 15px;
  font-weight: 500;
  text-decoration: none;
  transition: background 0.2s ease, color 0.2s ease;
}

.car-catalog .nav-links a:hover,
.car-catalog .nav-links span:not(.current):hover,
.car-catalog .woocommerce-pagination ul.page-numbers a:hover {
  background: #42445b;
  color: #fff;
}

.car-catalog .nav-links .current,
.car-catalog .woocommerce-pagination ul.page-numbers .current,
.car-catalog .woocommerce-pagination ul.page-numbers span.current {
  background: #0466c8;
  color: #fff;
  cursor: default;
}

.car-catalog .nav-links .prev,
.car-catalog .nav-links .next,
.car-catalog .woocommerce-pagination ul.page-numbers a.prev,
.car-catalog .woocommerce-pagination ul.page-numbers a.next {
  min-width: 44px;
  padding: 0 12px;
  font-size: 20px;
  line-height: 1;
  color: #d3d8f2;
}

.car-catalog .nav-links .dots,
.car-catalog .woocommerce-pagination ul.page-numbers .dots span {
  background: transparent !important;
  min-width: 24px;
  width: auto;
  padding: 0 4px;
  color: #9dabcd;
  font-size: 15px;
}

@media (max-width: 1750px) {
  .page-catalog {
    padding-top: 98px;
  }

  .page-catalog .swiperAuto {
    padding: 44px 0 4px;
  }

  .filters {
    margin-top: 0;
    margin-bottom: 44px;
  }

  .filters .container-less {
    max-width: 1200px;
  }

  .filters__mileage {
    margin-bottom: 26px;
    gap: 28px;
  }

  .filters__mileage>div {
    border-radius: 12px;
  }

  .filters__mileage .btn {
    padding: 8px 18px;
    border-radius: 12px;
  }

  .filters__mileage>div .btn {
    padding: 9px 16px;
    border-radius: 12px;
  }

  .filters__form {
    gap: 12px;
  }

  .filters__form__left {
    gap: 10px;
  }

  .filters__form__middle {
    gap: 10px;
  }

  .filters__form__right {
    gap: 10px;
  }

  .filters__form-small-gap {
    gap: 2px;
  }

  .filters__form__second .filters__form__right .select__title {
    min-width: 92px;
  }

  .filters__form__toggles {
    gap: 40px;
    margin-top: 8px;
  }

  .filters__form__toggles .btn {
    min-width: 184px;
    padding: 8px 18px;
  }

  .filters .select__title,
  .filters .select__result {
    min-width: 184px;
  }

  .filters .input {
    height: 32px;
    min-width: 184px;
    padding: 8px 18px;
  }

  .left-radius {
    border-radius: 12px 0 0 12px;
  }

  .right-radius {
    border-radius: 0 12px 12px 0;
  }

  .car-catalog {
    margin-bottom: 184px;
    gap: 10px 12px;
  }

  .car-catalog.container {
    max-width: 1200px;
  }

  .car {
    border-radius: 20px;
    font-size: inherit;
  }

  .car__image {
    height: 272px;
  }

  .car__image img {
    border-radius: 20px 20px 0 0;
  }

  .car__info {
    padding: 0 12px 20px;
  }

  .car__title-wrap {
    padding: 10px;
    border-radius: 9px;
  }

  .car__title-wrap h3 {
    font-size: 15px;
  }

  .car__top {
    margin: 0px 10px 14px;
    padding-bottom: 15px;
    font-size: 13px;
  }

  .car__price {
    font-size: 15px;
  }

  .car__bottom {
    margin: 0 10px;
  }

  .recommend {
    margin-bottom: 148px;
  }

  .recommend .swiper-slide {
    width: 388px;
    height: 409px;
  }

  .application {
    height: 323px;
    margin-bottom: 138px;
    border-radius: 0 32px 32px 32px;
  }

  .application__left {
    padding: 36px 62px;
  }

  .application__right img {
    bottom: 12px;
    right: 190px;
    width: 125%;
  }

  .application h2 {
    font-size: 41px;
  }

  .application .btn {
    width: 160px;
  }

  .application .btn img {
    max-width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
  }
}

@media (max-width: 1365px) {
  .page-catalog {
    padding-top: 204px;
  }

  .page-catalog:before {
    height: 15%;
  }

  .filters {
    margin-top: 110px;
    margin-bottom: 134px;
  }

  .filters__mileage {
    justify-content: space-between;
  }

  .filters__mileage::after {
    content: none;
  }

  .filters__mileage>div {
    border-radius: 23px;
  }

  .filters__mileage>div .btn {
    padding: 16px 32px;
    border-radius: 23px;
  }

  .filters__mileage>.btn {
    display: flex;
    padding: 14px 62px;
    border-radius: 23px;
  }

  .filters__form {
    gap: 20px;
  }

  .filters__form>div {
    display: none;
    flex-direction: column;
    gap: 12px;
  }

  .filters__form.active>div {
    display: flex;
  }

  .filters__form__toggles .btn {
    padding: 16px 24px;
  }

  .filters__form .filters__form__right .select__title {
    flex: 1;
  }

  .filters .input {
    width: 100%;
    height: 60px;
  }

  .filters label {
    flex: 1;
  }

  .filters label span {
    right: 20px;
  }

  .filters .select {
    width: auto;
    flex: 1;
  }

  .left-radius {
    border-radius: 23px 0 0 23px;
  }

  .right-radius {
    border-radius: 0 23px 23px 0;
  }

  .car-catalog {
    margin-bottom: 206px;
    gap: 10px;
    grid-template-columns: repeat(2, 1fr);
  }

  .car {
    border-radius: 37px;
  }

  .car__image {
    height: 324px;
  }

  .car__image img {
    border-radius: 37px 37px 0 0;
  }

  .car__info {
    padding: 0 20px 20px;
  }

  .car__title-wrap h3 {
    font-size: 24px;
  }

  .car__top {
    font-size: 25px;
  }

  .car__price {
    font-size: 28px;
  }

  .car__bottom {
    flex-direction: column;
  }

  .car__bottom>div:first-of-type {
    width: 100%;
  }

  .recommend {
    margin-bottom: 208px;
  }

  .recommend .container {
    margin-bottom: 60px;
    padding-left: 40px;
  }

  .recommend .swiper-slide {
    width: 461px;
    height: 631px;
  }

  .application {
    height: 1055px;
    padding: 0;
    width: calc(100% - 80px);
    margin: 0 40px 138px;
    border-radius: 40px;
    background: url(../img/page-car-application.png) no-repeat;
    background-size: cover;
    background-position-y: center;
  }

  .application__left {
    padding: 100px 60px 81px;
  }

  .application__right {
    display: none;
  }

  .application h2 {
    font-size: 77px;
  }

  .application p {
    margin-bottom: 48%;
    width: 50%;
    font-size: 26px;
  }

  .application .btn {
    width: 304px;
  }
}

@media (max-width: 1023px) {
  .page-catalog {
    padding-top: 142px;
  }

  .page-catalog:before {
    height: 8%;
  }

  .filters {
    margin-top: 38px;
    margin-bottom: 104px;
  }

  .filters__mileage>div {
    border-radius: 17px;
  }

  .filters__mileage>div .btn {
    padding: 12px 20px;
    border-radius: 17px;
  }

  .filters__mileage>.btn {
    padding: 10px 46px;
    border-radius: 17px;
  }

  .filters__form__toggles .btn {
    padding: 12px 24px;
  }

  .filters .input {
    height: 45px;
  }

  .left-radius {
    border-radius: 17px 0 0 17px;
  }

  .right-radius {
    border-radius: 0 17px 17px 0;
  }

  .car-catalog {
    margin-bottom: 144px;
  }

  .car {
    border-radius: 28px;
  }

  .car__image {
    height: 240px;
  }

  .car__image img {
    border-radius: 28px 28px 0 0;
  }

  .car__info {
    padding: 0 10px 26px;
  }

  .car__title-wrap h3 {
    font-size: 18px;
  }

  .car__top {
    font-size: 19px;
  }

  .car__price {
    font-size: 21px;
  }

  .car__bottom {
    font-size: 13px;
  }

  .recommend {
    margin-bottom: 142px;
  }

  .recommend .container {
    margin-bottom: 60px;
    padding-left: 40px;
  }

  .recommend .swiper-slide {
    width: 346px;
    height: 473px;
  }

  .application {
    height: 791px;
    width: calc(100% - 60px);
    margin: 0 30px 138px;
    border-radius: 30px;
  }

  .application__left {
    padding: 68px 46px 64px;
  }

  .application h2 {
    font-size: 58px;
  }

  .application p {
    font-size: 20px;
    line-height: 128%;
  }

  .application .btn {
    width: 228px;
  }
}

@media (max-width: 767px) {
  .page-catalog {
    padding-top: 80px;
  }

  .filters {
    margin-top: 0;
    margin-bottom: 130px;
  }

  .filters__mileage {
    flex-direction: column;
    justify-content: center;
    gap: 44px;
  }

  .filters__mileage>div {
    width: 100%;
  }

  .filters__mileage>div .btn {
    flex: 1;
  }

  .filters__form__toggles .btn {
    padding: 12px 24px;
  }

  .filters .input {
    min-width: 150px;
  }

  .filters__form__left {
    flex-direction: column;
  }

  .filters__form__toggle>div {
    justify-content: space-between;
    gap: 6px;
  }

  .filters .select__title,
  .filters .select__result {
    min-width: 170px;
  }

  .car-catalog {
    margin-bottom: 100px;
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .car__bottom {
    line-height: 199%;
  }

  .recommend {
    margin-bottom: 152px;
  }

  .recommend .container {
    margin-bottom: 30px;
    padding-left: 12px;
  }

  .application {
    height: 571px;
    width: calc(100% - 24px);
    margin: 0 12px 96px;
  }

  .application__left {
    padding: 46px 24px 40px;
  }

  .application h2 {
    font-size: 28px;
  }

  .application p {
    width: 75%;
    margin-bottom: 77%;
    font-size: 15px;
    line-height: 151%;
  }
}

.page-car {
  padding-top: 136px;
}

.page-car .recommend {
  margin-bottom: 160px;
}

.page-car .application-mobile {
  display: none;
}

.car-data {
  position: relative;
  margin-top: 58px;
  margin-bottom: 76px;
  display: flex;
  align-items: stretch;
}

.car-data .swipers {
  position: relative;
  width: 921px;
  height: 693px;
}

.car-data:after {
  filter: blur(195px);
  background: #395daa;
  border-radius: 0 10px 10px 0;
  width: 65%;
  height: 16%;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: -1;
}

.swiper-car-images .swiper-slide {
  width: 921px;
  height: 693px;
}

.swiper-car-images img {
  -o-object-fit: cover;
  object-fit: cover;
  width: 100%;
  height: 100%;
  border-radius: 26px 26px 0 26px;
}

.swiper-car-images-thumbs {
  position: absolute;
  bottom: 5px;
  width: 100%;
  height: 96px;
}

.swiper-car-images-thumbs .swiper-slide {
  width: 127px;
  height: 100%;
}

.swiper-car-images-thumbs .swiper-slide img {
  border-radius: 9px;
  -o-object-fit: cover;
  object-fit: cover;
}

.car-info {
  flex: 1;
  border-radius: 0 27px 27px 27px;
  background: #2a2c3d;
  font-weight: 300;
  font-size: 16px;
  line-height: 134%;
  color: #d3d8f2;
}

.car-info h1 {
  padding: 10px 56px 28px;
  border-bottom: 1px solid #45475d;
  font-weight: 500;
  font-size: 33px;
  line-height: 119%;
  color: #fff;
}

.car-info__top {
  margin-bottom: 124px;
  padding: 10px 156px 10px 56px;
  display: flex;
  justify-content: space-between;
}

.car-info__top>div {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 18px;
  color: #8287a7;
}

.car-info__top-white {
  font-weight: 500;
  font-size: 20px;
  line-height: 107%;
  color: #fff;
}

.car-info__middle {
  position: relative;
  padding: 0 4px 70px 56px;
  border-bottom: 1px solid #45475d;
}

.car-info__middle h2 {
  margin-bottom: 56px;
  display: flex;
  align-items: center;
  gap: 24px;
  font-weight: 500;
  font-size: 20px;
  line-height: 107%;
  color: #fff;
}

.car-info__middle h2:before {
  left: 0;
}

.car-info__middle h2:after {
  height: 1px;
  flex: 1;
  position: static;
  background: #45475d;
}

.car-info__table {
  display: flex;
}

.car-info__table__left,
.car-info__table__right {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.car-info__table__left>div,
.car-info__table__right>div {
  display: flex;
  gap: 22px;
}

.car-info__table__left>div p:first-of-type,
.car-info__table__right>div p:first-of-type {
  width: 70px;
  font-size: 16px;
  line-height: 134%;
  color: #8287a7;
  white-space: nowrap;
}

.car-info__bottom {
  padding: 30px 80px 30px 56px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.car-info__bottom p {
  font-weight: 700;
  font-size: 21px;
  line-height: 102%;
  color: #fff;
}

.car-info__bottom__btn-container {
  display: flex;
  gap: 5px;
}

.car-info__bottom .btn {
  padding: 10px 28px;
}

.car-info__bottom .btn-white {
  border: none;
  color: #363636;
}

.car-services-specially {
  margin-bottom: 98px;
  display: flex;
  gap: 52px;
  justify-content: space-between;
}

.car-specially {
  position: relative;
  width: 921px;
  padding: 66px 96px 40px;
  border-radius: 27px;
  background: #2a2c3d;
  font-size: 18px;
  line-height: 139%;
  color: #8287a7;
}

.car-specially h2 {
  display: flex;
  align-items: center;
  gap: 24px;
  font-weight: 500;
  font-size: 24px;
  line-height: 89%;
  color: #3071fb;
}

.car-specially h2.blue-elem::before {
  left: 0;
}

.car-specially h2:last-of-type {
  display: flex;
  align-items: center;
  color: #fff;
}

.car-specially h2:last-of-type.blue-elem::before {
  background: #fff;
}

.car-specially h2:last-of-type:after {
  position: static;
  height: 1px;
  flex: 1;
  background: #45475d;
  opacity: 0.92;
}

.car-specially__text {
  margin: 34px 0 72px;
  width: 70%;
}

.car-services {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.car-services a.service {
  text-decoration: none;
  color: inherit;
}

.car-services .service {
  height: 335px;
  color: #e4e4e4;
}

.car-services .service-first {
  background-image: url(../img/page-car-services-1.png);
}

.car-services .service-second {
  background-image: url(../img/page-car-services-2.png);
}

.car-services .service-third {
  background-image: url(../img/page-car-services-3.png);
}

.car-services .service .blue-elem::before {
  background: #fff;
}

/* Блок описания/комплектации: по умолчанию свёрнут, по клику «Еще» — разворачивается */
.car-equipment-wrap:not(.active) .car-specially__description {
  max-height: 285px;
  overflow: hidden;
  transition: max-height 0.4s ease-out;
}

.car-equipment-wrap.active .car-specially__description {
  max-height: 9999px;
  overflow: visible;
}

.car-equipment-wrap .car-specially__description p {
  line-height: 163%;
}

.car-equipment__btn svg {
  transition: transform 0.3s ease;
}

.car-equipment {
  margin-top: 48px;
  transition: max-height 0.6s ease-in-out;
}

.car-equipment:not(.active) li:nth-child(n+21) {
  opacity: 0;
  max-height: 0;
  overflow: hidden;
  padding: 0;
  margin: 0;
}

.car-equipment.active li:nth-child(n+21) {
  opacity: 1;
  max-height: 100px;
}

.car-equipment.active li:nth-child(n+21) .car-equipment__btn img {
  transform: rotate(180deg);
}

.car-equipment li {
  margin-bottom: 5px;
  list-style: disc;
  list-style-position: inside;
  transition: opacity 0.4s ease-in-out, max-height 0.5s ease-in-out, padding 0.3s ease-in-out, margin 0.3s ease-in-out;
}

.car-equipment__btn {
  margin-top: 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  background: transparent;
  border: none;
  outline: none;
  font-weight: 500;
  font-size: 22px;
  line-height: 97%;
  color: #3071fb;
  cursor: pointer;
}

.car-equipment__btn img {
  transition: 0.4s;
}

.car-application {
  position: relative;
  height: 455px;
  margin-bottom: 194px;
  display: flex;
  font-weight: 500;
  font-size: 25px;
  line-height: 102%;
  color: #d3d3d3;
  overflow: visible;
}

/* Блюр-тень под блоком по макету: как на статике (front), но с видимостью.
   При z-index: -1 псевдоэлемент уходит за секцию и скрыт контентом.
   Размещаем блюр в зоне под секцией (top: 100%), z-index: 0 — виден в margin-bottom. */
.car-application::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  width: 100%;
  height: 168px;
  background: #395daa;
  opacity: 0.6;
  filter: blur(80px);
  border-radius: 9.5px;
  z-index: 0;
  pointer-events: none;
}

.car-application__left,
.car-application__right {
  position: relative;
  z-index: 1;
}

.car-application__img {
  z-index: 2;
}

.car-application h2 {
  font-weight: 700;
  font-size: 58px;
  line-height: 98%;
  color: #fff;
}

.car-application h2:before {
  left: 0;
}

.car-application__left {
  padding: 84px 80px 98px;
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: space-between;
  border-radius: 38px 0 0 38px;
  flex: 1;
  background: linear-gradient(175deg, #2537aa 0%, #0f1644 100%);
  font-size: 16px;
}

.car-application__right {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 60px;
  border-radius: 0 38px 38px 0;
  flex: 1;
  background: #292b3c;
}

.car-application__right p {
  width: 310px;
  margin-left: 31%;
  margin-top: -38px;
}

.car-application__right img {
  position: relative;
  margin-right: 110px;
}

.car-application__img {
  position: absolute;
  height: 100%;
  bottom: -2%;
  left: 15%;
}

.car-application__img img {
  width: 88%;
}

@media (max-width: 1750px) {
  .page-car {
    padding-top: 98px;
  }

  .page-car .recommend {
    margin-bottom: 112px;
  }

  .car-data {
    margin-top: 38px;
    margin-bottom: 54px;
  }

  .car-data .swipers {
    width: 655px;
    height: 493px;
  }

  .swiper-car-images .swiper-slide {
    width: 655px;
    height: 493px;
  }

  .swiper-car-images img {
    border-radius: 18px 18px 0 18px;
  }

  .swiper-car-images-thumbs {
    height: 68px;
  }

  .swiper-car-images-thumbs .swiper-slide {
    width: 90px;
  }

  .car-info {
    border-radius: 0 19px 19px 19px;
    font-size: 11px;
  }

  .car-info h1 {
    padding: 6px 40px 18px;
    font-size: 24px;
  }

  .car-info__top {
    margin-bottom: 98px;
    padding: 4px 106px 0 40px;
    font-size: 12px;
  }

  .car-info__top>div {
    font-size: 12px;
  }

  .car-info__top-white {
    font-size: 14px;
  }

  .car-info__middle {
    padding: 0 4px 50px 42px;
  }

  .car-info__middle h2 {
    margin-bottom: 40px;
    gap: 18px;
    font-size: 14px;
  }

  .car-info__table__left,
  .car-info__table__right {
    gap: 18px;
  }

  .car-info__table__left>div,
  .car-info__table__right>div {
    gap: 22px;
  }

  .car-info__table__left>div p:first-of-type,
  .car-info__table__right>div p:first-of-type {
    width: 52px;
    font-size: 11px;
  }

  .car-info__bottom {
    padding: 18px 60px 18px 42px;
  }

  .car-info__bottom p {
    font-size: 14px;
  }

  .car-info__bottom .btn {
    padding: 10px 22px;
  }

  .car-services-specially {
    margin-bottom: 82px;
    gap: 36px;
  }

  .car-specially {
    width: 655px;
    padding: 48px 70px 28px;
    border-radius: 27px;
    font-size: 12px;
  }

  .car-specially h2 {
    gap: 18px;
    font-size: 17px;
  }

  .car-specially__text {
    margin: 24px 0 52px;
    width: 65%;
  }

  .car-services {
    gap: 8px;
  }

  .car-services .service {
    height: 232px;
  }

  .car-services .service p {
    max-width: 200px;
  }

  .car-equipment {
    margin-top: 38px;
  }

  .car-equipment__btn {
    margin-top: 16px;
    gap: 12px;
    font-size: 15px;
  }

  .car-equipment li {
    margin-bottom: 4px;
  }

  .car-application {
    height: 323px;
    margin-bottom: 138px;
    font-size: 17px;
  }

  .car-application h2 {
    font-size: 41px;
  }

  .car-application__left {
    padding: 60px 62px 70px;
    border-radius: 27px 0 0 27px;
    font-size: 16px;
  }

  .car-application__left .btn {
    padding: 8px 26px;
    font-size: 11px;
  }

  .car-application__right {
    gap: 60px;
    border-radius: 0 27px 27px 0;
  }

  .car-application__right p {
    margin-left: 21%;
    margin-top: -6px;
    width: 210px;
  }

  .car-application__right img {
    max-width: 86px;
    margin-right: 68px;
  }

  .car-application__img {
    bottom: -2%;
    left: 15%;
  }

  .car-application__img img {
    width: 75%;
  }

  .car-application::after {
    width: 100%;
    height: 120px;
    filter: blur(60px);
    opacity: 0.5;
  }
}

@media (max-width: 1365px) {
  .page-car {
    padding-top: 170px;
  }

  .page-car .recommend {
    margin-bottom: 180px;
  }

  .page-car .application-mobile {
    display: flex;
  }

  .page-car .car-application {
    display: none;
  }

  .car-data {
    margin-bottom: 86px;
    flex-direction: column;
    gap: 30px;
  }

  .car-data .swipers {
    width: 100%;
    height: auto;
  }

  .car-data::after {
    width: 100%;
    height: 11%;
    bottom: -42%;
  }

  .swiper-car-images .swiper-slide {
    width: 100%;
    height: 709px;
  }

  .swiper-car-images img {
    border-radius: 27px;
  }

  .swiper-car-images-thumbs {
    display: none;
  }

  .car-info {
    border-radius: 0 36px 36px 36px;
    font-size: 21px;
  }

  .car-info h1 {
    padding: 22px 56px 38px;
    font-size: 45px;
  }

  .car-info__top {
    padding: 8px 26px 0 56px;
    font-size: 24px;
  }

  .car-info__top>div {
    flex: 1;
    font-size: 24px;
  }

  .car-info__top>p {
    flex: 1;
  }

  .car-info__top-white {
    font-size: 26px;
  }

  .car-info__middle {
    padding: 0 4px 60px 60px;
  }

  .car-info__middle h2 {
    margin-bottom: 74px;
    font-size: 26px;
  }

  .car-info__table__left,
  .car-info__table__right {
    gap: 34px;
  }

  .car-info__table__left>div,
  .car-info__table__right>div {
    gap: 22px;
  }

  .car-info__table__left>div p:first-of-type,
  .car-info__table__right>div p:first-of-type {
    width: 132px;
    font-size: 21px;
  }

  .car-info__bottom {
    padding: 72px 50px 60px 62px;
  }

  .car-info__bottom p {
    font-size: 28px;
  }

  .car-info__bottom .btn {
    padding: 16px 36px;
  }

  .car-services-specially {
    margin-bottom: 146px;
    gap: 60px;
    flex-direction: column;
  }

  .car-specially {
    width: 100%;
    padding: 90px 64px 40px;
    border-radius: 36px;
    font-size: 24px;
  }

  .car-specially h2 {
    gap: 18px;
    font-size: 32px;
  }

  .car-specially__text {
    margin: 48px 0 96px;
    width: 86%;
  }

  .car-services {
    gap: 14px;
  }

  .car-services .service {
    height: 447px;
  }

  .car-services .service p {
    max-width: 40%;
  }

  .car-equipment {
    margin-top: 68px;
  }

  .car-equipment__btn {
    margin-top: 36px;
    gap: 12px;
    font-size: 29px;
  }

  .car-equipment__btn svg {
    width: 20px;
    height: 20px;
  }

  .car-equipment li {
    margin-bottom: 6px;
  }
}

@media (max-width: 1023px) {
  .page-car {
    padding-top: 120px;
  }

  .page-car .recommend {
    margin-bottom: 136px;
  }

  .car-data {
    margin-bottom: 72px;
    gap: 28px;
  }

  .swiper-car-images .swiper-slide {
    width: 100%;
    height: 531px;
  }

  .swiper-car-images img {
    border-radius: 20px;
  }

  .car-info {
    border-radius: 0 27px 27px 27px;
    font-size: 16px;
  }

  .car-info h1 {
    margin-bottom: 14px;
    padding: 14px 46px 28px;
    font-size: 33px;
  }

  .car-info__top {
    margin-bottom: 70px;
    padding: 8px 12px 0 48px;
    font-size: 18px;
  }

  .car-info__top>div {
    font-size: 18px;
  }

  .car-info__top-white {
    font-size: 20px;
  }

  .car-info__middle {
    padding: 0 4px 60px 44px;
  }

  .car-info__middle h2 {
    margin-bottom: 64px;
    font-size: 20px;
  }

  .car-info__table__left,
  .car-info__table__right {
    gap: 22px;
  }

  .car-info__table__left>div,
  .car-info__table__right>div {
    gap: 14px;
  }

  .car-info__table__left>div p:first-of-type,
  .car-info__table__right>div p:first-of-type {
    width: 100px;
    font-size: 16px;
  }

  .car-info__bottom {
    padding: 48px 34px 40px 50px;
  }

  .car-info__bottom p {
    font-size: 21px;
  }

  .car-info__bottom .btn {
    padding: 12px 26px;
  }

  .car-services-specially {
    margin-bottom: 122px;
    gap: 48px;
  }

  .car-specially {
    padding: 64px 52px 32px;
    border-radius: 27px;
    font-size: 18px;
  }

  .car-specially h2 {
    font-size: 24px;
  }

  .car-specially__text {
    margin: 36px 0 70px;
    width: 86%;
  }

  .car-services {
    gap: 14px;
  }

  .car-services .service {
    height: 335px;
  }

  .car-services .service p {
    max-width: 40%;
  }

  .car-equipment {
    margin-top: 52px;
  }

  .car-equipment__btn {
    font-size: 22px;
  }

  .car-equipment__btn svg {
    width: 15px;
    height: 15px;
  }

  .car-equipment li {
    margin-bottom: 4px;
  }
}

@media (max-width: 767px) {
  .page-car {
    padding-top: 100px;
  }

  .page-car .recommend {
    margin-bottom: 156px;
  }

  .car-data {
    margin-bottom: 66px;
    gap: 16px;
  }

  .swiper-car-images .swiper-slide {
    height: 265px;
  }

  .swiper-car-images img {
    border-radius: 10px;
  }

  .car-info {
    border-radius: 0 17px 17px 17px;
    font-size: 15px;
  }

  .car-info h1 {
    margin-bottom: 4px;
    padding: 8px 20px 18px;
    font-size: 18px;
    text-align: center;
  }

  .car-info__top {
    flex-direction: column;
    gap: 6px;
    margin-bottom: 40px;
    padding: 18px 12px 0px 26px;
    font-size: 15px;
  }

  .car-info__top>div {
    font-size: 15px;
  }

  .car-info__top-white {
    font-size: 18px;
  }

  .car-info__middle {
    padding: 0 4px 30px 24px;
  }

  .car-info__middle h2 {
    margin-bottom: 40px;
    font-size: 14px;
  }

  .car-info__table {
    flex-direction: column;
    gap: 26px;
  }

  .car-info__table__left,
  .car-info__table__right {
    gap: 26px;
  }

  .car-info__table__left>div p:first-of-type,
  .car-info__table__right>div p:first-of-type {
    font-size: 15px;
  }

  .car-info__bottom {
    flex-direction: column;
    align-items: start;
    gap: 30px;
    padding: 44px 22px 20px 22px;
  }

  .car-info__bottom .btn {
    padding: 12px 28px;
  }

  .car-services-specially {
    margin-bottom: 122px;
    gap: 100px;
  }

  .car-specially {
    padding: 38px 22px 24px;
    border-radius: 17px;
    font-size: 15px;
  }

  .car-specially h2 {
    font-size: 18px;
  }

  .car-specially__text {
    margin: 33px 0 44px;
    line-height: 167%;
  }

  .car-services {
    gap: 14px;
  }

  .car-services .service {
    height: 366px;
  }

  .car-services .service-first {
    background-image: url(../img/page-car-services-1-mobile.png);
  }

  .car-services .service-second {
    background-image: url(../img/page-car-services-2-mobile.png);
  }

  .car-services .service-third {
    background-image: url(../img/page-car-services-3-mobile.png);
  }

  .car-services .service p {
    max-width: 100%;
  }

  .car-equipment {
    margin-top: 36px;
  }

  .car-equipment__btn {
    margin-top: 16px;
    font-size: 18px;
  }

  .car-equipment li {
    margin-bottom: 14px;
  }
}

.service-about {
  margin-top: 148px;
  margin-bottom: 32px;
  display: flex;
  gap: 5%;
  font-weight: 500;
  font-size: 21px;
  line-height: 139%;
  color: #626786;
}

.service-about__left {
  max-width: 32%;
  display: flex;
  flex-direction: column;
  gap: 230px;
}

.service-about__left p:not(:last-of-type) {
  margin-bottom: 30px;
}

.service-about__right {
  margin-top: 48px;
  position: relative;
}

.service-about__right .hero-title {
  left: -5%;
  top: -9%;
}

.service-about__blur {
  position: absolute;
  z-index: -1;
  width: 43vw;
  height: 41vh;
  bottom: -5%;
  right: 0;
  border-radius: 100%;
  background: #343555;
  filter: blur(174px);
}

.how-ransom {
  margin-bottom: 186px;
}

.how-ransom .btn {
  width: 298px;
}

.service-info-list {
  margin: 56px 0 72px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 43px;
}

.service-info-list__item {
  height: 300px;
  padding: 14px 90px 36px 30px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: #2a2c3d;
  border-radius: 27px;
  font-weight: 700;
  font-size: 24px;
  line-height: 122%;
  color: #d9d9d9;
}

.service-info-list__item p:first-of-type {
  font-weight: 600;
  font-size: 26px;
  line-height: 141%;
  color: #3071fb;
}

.service-info-list__item:last-of-type {
  position: relative;
  background: #3071fb;
}

.service-info-list__item:last-of-type p:first-of-type {
  color: #fff;
}

.service-info-list__item:last-of-type:after {
  content: "";
  left: 30%;
  top: 30%;
  z-index: -1;
  width: 110%;
  height: 110%;
  position: absolute;
  filter: blur(195px);
  background: #395daa;
}

.ransom-info {
  position: relative;
  display: flex;
  justify-content: space-between;
  gap: 80px;
  margin-bottom: 166px;
  padding-bottom: 170px;
}

.ransom-info__name {
  width: 360px;
  margin-top: 54px;
  font-style: italic;
  font-weight: 700;
  font-size: 71px;
  line-height: 89%;
  color: #3071fb;
}

.ransom-info__img {
  position: absolute;
  bottom: 0;
  left: -3%;
  z-index: 1;
}

.ransom-info-list {
  flex: 1;
  padding: 48px 36px 62px 21%;
  position: relative;
  display: flex;
  flex-wrap: wrap;
  gap: 80px 100px;
  background: #f2f5f7;
  border-radius: 27px;
  font-size: 22px;
  line-height: 114%;
  color: #373737;
}

.ransom-info-list__item {
  width: 45%;
  max-width: 320px;
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.ransom-info-list__item svg {
  width: 70px;
  height: 70px;
  object-fit: contain;
  display: block;
}

.ransom-info-list:before {
  width: 180px;
  height: 180px;
  left: -5.5%;
  top: 5%;
  background-image: url(../img/check-in-circle.svg);
  background-repeat: no-repeat;
  background-size: contain;
}

.documents {
  margin-bottom: 220px;
}

.documents-list {
  margin-top: 52px;
  display: flex;
  justify-content: space-between;
  gap: 42px;
  font-weight: 500;
  font-size: 21px;
  line-height: 136%;
  color: #626786;
}

.documents-list__item {
  padding: 34px 24px 54px 44px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  justify-content: space-between;
  flex: 1;
  background: #2a2c3d;
  border-radius: 27px;
}

.documents-list__header {
  display: flex;
  justify-content: space-between;
  font-weight: 700;
  font-size: 24px;
  line-height: 122%;
  color: #d9d9d9;
}

.documents-list__desc {
  max-width: 70%;
}

.other-sales .auto-service-list {
  margin: 38px 0 154px;
}

.other-sales .auto-service {
  height: 636px;
}

.other-sales-first {
  background-image: url(../img/comission.png);
}

.other-sales-second {
  background-image: url(../img/traid-in.png);
}

.help {
  position: relative;
  display: flex;
  align-items: center;
  margin-bottom: 22%;
}

.help__left {
  padding: 0 88px 0 60px;
  height: 204px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  border-radius: 38px 0 0 38px;
  background: linear-gradient(167deg, #2537aa 0%, #0f1644 100%);
  font-weight: 700;
  font-size: 39px;
  line-height: 115%;
  color: #fff;
  white-space: nowrap;
}

.help__left.blue-elem::before {
  right: 0;
  background: #292b3c;
  transform: rotate(-180deg);
}

.help__right {
  padding: 20px 30px 20px 60px;
  height: 204px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  border-radius: 0 38px 38px 0;
  background: #292b3c;
  font-weight: 500;
  font-size: 25px;
  line-height: 102%;
  color: #d3d3d3;
}

.help__right p {
  max-width: 48%;
}

.help__right .btn {
  padding: 12px 66px;
  font-size: 16px;
}

@media (max-width: 1750px) {
  .service-about {
    margin-top: 108px;
    margin-bottom: 10px;
    gap: 5%;
    font-size: 14px;
  }

  .service-about__left {
    max-width: 30%;
    gap: 164px;
  }

  .service-about__left p:not(:last-of-type) {
    margin-bottom: 30px;
  }

  .service-about__right {
    margin-top: 28px;
  }

  .service-about__right img {
    width: 100%;
  }

  .how-ransom {
    margin-bottom: 130px;
  }

  .how-ransom .btn {
    width: 212px;
  }

  .service-info-list {
    margin: 40px 0 48px;
    gap: 30px;
  }

  .service-info-list__item {
    height: 213px;
    padding: 10px 60px 27px 22px;
    border-radius: 19px;
    font-size: 18px;
  }

  .service-info-list__item p:first-of-type {
    font-size: 17px;
  }

  .ransom-info {
    gap: 80px;
    margin-bottom: 114px;
    padding-bottom: 124px;
  }

  .ransom-info__name {
    width: 260px;
    margin-top: 46px;
    font-size: 51px;
  }

  .ransom-info__img {
    bottom: 0;
    left: -3%;
  }

  .ransom-info__img img {
    width: 72%;
  }

  .ransom-info-list {
    padding: 38px 36px 42px 22%;
    gap: 52px 48px;
    border-radius: 19px;
    font-size: 15px;
  }

  .ransom-info-list__item svg {
    width: 50px;
    height: 50px;
  }

  .ransom-info-list:before {
    width: 127px;
    height: 127px;
    background-size: contain;
  }

  .documents {
    margin-bottom: 160px;
  }

  .documents-list {
    margin-top: 42px;
    gap: 30px;
    font-size: 15px;
  }

  .documents-list__item {
    padding: 22px 28px 36px 32px;
    gap: 12px;
    border-radius: 19px;
  }

  .documents-list__item svg {
    width: 36px;
  }

  .documents-list__header {
    font-size: 17px;
  }

  .other-sales .auto-service-list {
    margin: 28px 0 104px;
  }

  .other-sales .auto-service {
    height: 452px;
  }

  .help {
    margin-bottom: 22%;
  }

  .help__left {
    padding: 0 70px 0 44px;
    height: 145px;
    border-radius: 19px 0 0 19px;
    font-size: 27px;
  }

  .help__right {
    padding: 20px 58px 20px 44px;
    height: 145px;
    border-radius: 0 19px 19px 0;
    font-size: 17px;
  }

  .help__right .btn {
    padding: 8px 56px;
    font-size: 11px;
  }
}

@media (max-width: 1365px) {
  .service-about {
    position: relative;
    flex-direction: column;
    margin-top: 40px;
    margin-bottom: 228px;
    font-size: 26px;
  }

  .service-about__left {
    max-width: 75%;
    gap: 636px;
  }

  .service-about__right {
    position: absolute;
    top: 27%;
  }

  .how-ransom {
    margin-bottom: 230px;
  }

  .how-ransom .btn {
    width: 398px;
  }

  .service-info-list {
    margin: 86px 0 106px;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px 12px;
  }

  .service-info-list__item {
    height: 304px;
    padding: 24px 90px 36px 30px;
    border-radius: 36px;
    font-size: 32px;
  }

  .service-info-list__item p:first-of-type {
    font-size: 35px;
  }

  .ransom-info {
    flex-direction: column;
    gap: 32px;
    margin-bottom: 154px;
    padding-bottom: 0;
  }

  .ransom-info__name {
    width: 60%;
    margin-top: 46px;
    font-size: 95px;
  }

  .ransom-info__img {
    position: static;
    order: 1;
  }

  .ransom-info__img img {
    width: 100%;
  }

  .ransom-info-list {
    padding: 70px 30px 168px 58px;
    gap: 108px 44px;
    border-radius: 36px;
    font-size: 29px;
  }

  .ransom-info-list__item {
    max-width: 410px;
    width: 47%;
    gap: 28px;
  }

  .ransom-info-list__item svg {
    width: 94px;
    height: 94px;
  }

  .ransom-info-list:before {
    width: 285px;
    height: 285px;
    top: -34%;
    left: unset;
    right: 9%;
  }

  .documents {
    margin-bottom: 220px;
  }

  .documents-list {
    margin-top: 82px;
    flex-direction: column;
    gap: 26px;
    font-size: 28px;
  }

  .documents-list__item {
    padding: 40px 28px 42px 58px;
    gap: 28px;
    border-radius: 36px;
  }

  .documents-list__item svg {
    width: 66px;
  }

  .documents-list__header {
    font-size: 32px;
  }

  .documents-list__desc {
    max-width: 80%;
  }

  .other-sales .auto-service-list {
    margin: 58px 0 198px;
  }

  .other-sales .auto-service {
    height: 815px;
  }

  .help {
    margin-bottom: 36%;
    flex-direction: column;
  }

  .help__left {
    width: 100%;
    height: 201px;
    border-radius: 51px 51px 0 0;
    font-size: 52px;
  }

  .help__left.blue-elem::before {
    right: unset;
    left: 50%;
    bottom: -15px;
    transform: translateX(-50%) rotate(-90deg);
  }

  .help__right {
    flex-direction: column;
    gap: 56px;
    height: 317px;
    border-radius: 0 0 51px 51px;
    font-size: 33px;
  }

  .help__right p {
    max-width: 60%;
  }

  .help__right .btn {
    padding: 16px 104px;
    font-size: 21px;
  }
}

@media (max-width: 1023px) {
  .service-about {
    margin-top: 46px;
    margin-bottom: 168px;
    font-size: 20px;
  }

  .service-about__left {
    gap: 474px;
  }

  .how-ransom {
    margin-bottom: 208px;
  }

  .how-ransom .btn {
    width: 298px;
  }

  .service-info-list {
    margin: 68px 0 82px;
    gap: 24px 10px;
  }

  .service-info-list__item {
    height: 227px;
    padding: 18px 60px 30px 24px;
    border-radius: 27px;
    font-size: 24px;
  }

  .service-info-list__item p:first-of-type {
    font-size: 26px;
  }

  .ransom-info {
    gap: 22px;
    margin-bottom: 124px;
  }

  .ransom-info__name {
    margin-top: 0;
    font-size: 71px;
  }

  .ransom-info-list {
    padding: 52px 16px 124px 42px;
    gap: 74px 24px;
    border-radius: 27px;
    font-size: 22px;
  }

  .ransom-info-list__item {
    gap: 22px;
  }

  .ransom-info-list__item svg {
    width: 70px;
    height: 70px;
  }

  .ransom-info-list:before {
    width: 205px;
    height: 205px;
    top: -30%;
  }

  .documents {
    margin-bottom: 152px;
  }

  .documents-list {
    margin-top: 60px;
    gap: 18px;
    font-size: 21px;
  }

  .documents-list__item {
    padding: 30px 28px 36px 44px;
    gap: 20px;
    border-radius: 27px;
  }

  .documents-list__item svg {
    width: 50px;
  }

  .documents-list__header {
    font-size: 24px;
  }

  .other-sales .auto-service-list {
    margin: 50px 0 162px;
  }

  .other-sales .auto-service {
    height: 619px;
  }

  .help {
    margin-bottom: 250px;
  }

  .help__left {
    height: 151px;
    border-radius: 38px 38px 0 0;
    font-size: 39px;
  }

  .help__right {
    gap: 56px;
    height: 237px;
    border-radius: 0 0 38px 38px;
    font-size: 25px;
  }

  .help__right p {
    max-width: 65%;
  }

  .help__right .btn {
    padding: 10px 66px;
    font-size: 16px;
  }
}

@media (max-width: 767px) {
  .bg {
    height: 205vh;
  }

  .service-about {
    margin-top: 18px;
    margin-bottom: 86px;
    font-size: 15px;
    line-height: 171%;
  }

  .service-about__left {
    gap: 262px;
    max-width: 100%;
  }

  .service-about__right {
    top: 19%;
  }

  .service-about .hero-title {
    left: -11%;
    font-size: 117px;
  }

  .how-ransom {
    margin-bottom: 178px;
  }

  .how-ransom .btn {
    margin: auto;
  }

  .service-info-list {
    margin: 48px 0 92px;
    grid-template-columns: repeat(1, 1fr);
    gap: 16px;
  }

  .service-info-list__item {
    height: auto;
    flex-direction: row;
    justify-content: start;
    gap: 30px;
    padding: 22px 26px 24px 12px;
    border-radius: 17px;
    font-size: 18px;
    line-height: 134%;
  }

  .service-info-list__item p:first-of-type {
    font-size: 18px;
  }

  .ransom-info {
    margin-bottom: 108px;
  }

  .ransom-info__name {
    font-size: 48px;
  }

  .ransom-info__img {
    margin-top: 20px;
  }

  .ransom-info-list {
    padding: 66px 16px 62px 12px;
    gap: 48px;
    border-radius: 17px;
    font-size: 18px;
  }

  .ransom-info-list__item {
    width: 100%;
    max-width: 100%;
    gap: 22px;
    flex-direction: row;
  }

  .ransom-info-list__item svg {
    width: 52px;
    height: 52px;
  }

  .ransom-info-list:before {
    width: 154px;
    height: 154px;
    top: -27%;
    left: unset;
    right: -2%;
  }

  .documents {
    margin-bottom: 86px;
  }

  .documents-list {
    margin-top: 48px;
    gap: 14px;
    font-size: 15px;
  }

  .documents-list__item {
    padding: 26px 28px 30px 24px;
    gap: 22px;
    border-radius: 27px;
    line-height: 167%;
  }

  .documents-list__item svg {
    width: 44px;
  }

  .documents-list__header {
    font-size: 20px;
  }

  .documents-list__desc {
    max-width: 100%;
  }

  .other-sales .auto-service-list {
    margin-bottom: 114px;
  }

  .other-sales .auto-service {
    height: 391px;
  }

  .help {
    margin-bottom: 132px;
  }

  .help__left {
    height: 132px;
    padding: 20px;
    font-size: 28px;
  }

  .help__right {
    height: 237px;
    padding: 20px 26px 20px 26px;
    font-size: 20px;
  }

  .help__right p {
    max-width: 100%;
    text-align: center;
  }
}

.page-autocredit {
  position: relative;
}

.page-autocredit:before {
  top: 0;
  right: 0;
  width: 80vw;
  height: 90vh;
  z-index: -1;
  background-image: url(../img/page-autocredit-circle.png);
  background-size: contain;
}

.page-autocredit .offer-first {
  background-image: url(../img/leasing.png);
}

.page-autocredit .offer-second {
  background-image: url(../img/insurance.png);
}

.page-autocredit .service-about {
  margin-bottom: -64px;
}

.page-autocredit .service-about__left {
  gap: 178px;
}

.page-autocredit .service-about__right {
  margin-top: -52px;
}

.page-autocredit .how-ransom {
  margin-bottom: 226px;
}

.services-partners {
  margin-bottom: 140px;
}

.services-partners .heading-two {
  margin-bottom: 106px;
}

@media (max-width: 1750px) {
  .page-autocredit .service-about {
    margin-bottom: -52px;
  }

  .page-autocredit .service-about__left {
    gap: 128px;
  }

  .page-autocredit .how-ransom {
    margin-bottom: 164px;
  }

  .services-partners {
    margin-bottom: 106px;
  }

  .services-partners .heading-two {
    margin-bottom: 74px;
  }
}

@media (max-width: 1365px) {
  .page-autocredit:before {
    width: 100vw;
    height: 70vh;
    background-image: url(../img/page-autocredit-circle-notepad.png);
  }

  .page-autocredit .service-about {
    margin-bottom: 132px;
  }

  .page-autocredit .service-about__left {
    gap: 646px;
  }

  .page-autocredit .how-ransom {
    margin-bottom: 224px;
  }

  .page-autocredit .service-info-list__item {
    height: 277px;
  }

  .services-partners {
    margin-bottom: 148px;
  }
}

@media (max-width: 1023px) {
  .page-autocredit .service-about {
    margin-bottom: 102px;
  }

  .page-autocredit .service-about__left {
    gap: 474px;
  }

  .page-autocredit .service-about__right {
    margin-top: -124px;
  }

  .page-autocredit .how-ransom {
    margin-bottom: 162px;
  }

  .page-autocredit .service-info-list__item {
    height: 208px;
  }

  .services-partners .heading-two {
    margin-bottom: 36px;
  }

  .services-partners {
    margin-bottom: 114px;
  }
}

@media (max-width: 767px) {
  .page-autocredit .service-about {
    margin-bottom: 92px;
  }

  .page-autocredit .service-about__left {
    gap: 254px;
  }

  .page-autocredit .service-about__right {
    margin-top: -40px;
  }

  .page-autocredit .service-about__right img {
    transform: scale(1.2) translateX(40px);
  }

  .page-autocredit .how-ransom {
    margin-bottom: 120px;
  }

  .page-autocredit .service-info-list__item {
    height: 96px;
  }

  .services-partners {
    margin-bottom: 98px;
  }

  .services-partners .heading-two {
    margin-bottom: 58px;
  }
}

.page-insurance {
  position: relative;
}

.page-insurance .service-about__right img {
  transition: transform 0.3s ease;
}

.page-services__img {
  position: absolute;
  right: 8%;
  top: 38%;
  z-index: 0;
  pointer-events: none;
  opacity: 0.35;
}

.page-insurance:before {
  top: 0;
  right: 0;
  width: 80vw;
  height: 90vh;
  z-index: -1;
  background-image: url(../img/page-insurance-circle.png);
  background-size: contain;
}

.page-insurance .service-about__left {
  gap: 180px;
}

.page-insurance .offer-first {
  background-image: url(../img/leasing.png);
}

.page-insurance .offer-second {
  background-image: url(../img/autocredit.png);
}

.purchase {
  margin-bottom: 178px;
}

.purchase .btn {
  max-width: 271px;
}

.purchase-list {
  margin: 56px 0 66px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 50px;
}

.purchase-list__item {
  height: 325px;
  padding: 30px 34px 52px 64px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: #2a2c3d;
  border-radius: 27px;
  font-weight: 500;
  font-size: 21px;
  line-height: 136%;
  color: #626786;
}

.purchase-list__item__header {
  display: flex;
  justify-content: space-between;
}

.purchase-list__item__header h3 {
  font-size: 24px;
  color: #d9d9d9;
}

.purchase-list__item__header img {
  width: 36px;
}

@media (max-width: 1750px) {
  .page-insurance .service-about {
    margin-bottom: 44px;
  }

  .page-insurance .service-about__left {
    gap: 120px;
  }

  .purchase {
    margin-bottom: 126px;
  }

  .purchase .btn {
    max-width: 192px;
  }

  .purchase-list {
    margin: 40px 0 48px;
    gap: 36px;
  }

  .purchase-list__item {
    height: 231px;
    padding: 22px 40px 38px 46px;
    border-radius: 19px;
    font-size: 15px;
  }

  .purchase-list__item__header h3 {
    font-size: 17px;
  }

  .purchase-list__item__header img {
    width: 27px;
  }
}

@media (max-width: 1365px) {
  .page-insurance::before {
    width: 100vw;
    height: 70vh;
    background-image: url(../img/page-insurance-circle-notepad.png);
  }

  .page-insurance .service-about {
    margin-bottom: 150px;
  }

  .page-insurance .service-about__left {
    gap: 642px;
  }

  .page-insurance .service-about__right {
    top: 20%;
  }

  .purchase {
    margin-bottom: 176px;
  }

  .purchase .btn {
    max-width: 397px;
  }

  .purchase-list {
    margin: 86px 0 102px;
    grid-template-columns: 1fr;
  }

  .purchase-list__item {
    height: 413px;
    padding: 62px 46px 56px 56px;
    border-radius: 36px;
    font-size: 26px;
  }

  .purchase-list__item__header h3 {
    font-size: 32px;
  }

  .purchase-list__item__header img {
    width: 44px;
  }
}

@media (max-width: 1023px) {
  .page-insurance .service-about {
    margin-bottom: 112px;
  }

  .page-insurance .service-about__left {
    gap: 474px;
  }

  .purchase {
    margin-bottom: 136px;
  }

  .purchase .btn {
    max-width: 298px;
  }

  .purchase-list {
    margin: 70px 0;
  }

  .purchase-list__item {
    height: 310px;
    padding: 40px 32px 48px 44px;
    border-radius: 27px;
    font-size: 20px;
  }

  .purchase-list__item__header h3 {
    font-size: 24px;
  }

  .purchase-list__item__header img {
    width: 32px;
  }
}

@media (max-width: 767px) {
  .page-insurance .service-about {
    margin-bottom: 64px;
  }

  .page-insurance .service-about__left {
    gap: 258px;
  }

  .page-insurance .service-about__right {
    top: 16%;
  }

  .page-insurance .service-about__right a:hover img {
    transform: scale(1.1);
  }

  .purchase {
    margin-bottom: 108px;
  }

  .purchase .btn {
    margin: auto;
  }

  .purchase-list {
    margin: 46px 0 72px;
    gap: 14px;
  }

  .purchase-list__item {
    height: auto;
    gap: 44px;
    padding: 28px 30px 34px 22px;
    border-radius: 17px;
    font-size: 15px;
    line-height: 167%;
  }

  .purchase-list__item__header h3 {
    font-size: 18px;
  }

  .purchase-list__item__header img {
    width: 23px;
  }

  .page-services__img {
    right: 4%;
    top: 32%;
    transform: scale(0.8);
  }
}

/* Страница Live — разметка и стили по макету front/live.html.
   Структура main.page-live.page: breadcrumbs → section.live → section.video-gallery → div.bg → partners → contacts. */
.page-live {
  position: relative;
  overflow: visible;
}

.page-live .breadcrumbs {
  color: #fff;
}

.page-live .video-gallery {
  position: relative;
  margin-top: 24px;
  margin-bottom: 88px;
}

.page-live .live {
  display: block;
  position: relative;
  width: 100%;
  margin: 0;
  padding: 0;
}

/* Тень от блока video-gallery, накладывается на секцию .live (макет: rectangle.png) */
.page-live .live__shadow {
  position: absolute;
  left: 0;
  bottom: -25px;
  width: 100%;
  height: 35%;
  min-height: 120px;
  background-image: url('../rectangle.png');
  background-repeat: no-repeat;
  background-position: center bottom;
  background-size: 100% 100%;
  pointer-events: none;
  z-index: 1;
}

.page-live .live__video {
  width: 100%;
  margin-top: -160px;
  position: relative;
}

.page-live .live__video img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 0 0 20px 20px;
  vertical-align: top;
}

.page-live .live__info {
  left: 0;
  margin-left: 120px;
  position: absolute;
  top: 34%;
  font-weight: 500;
  font-size: 21px;
  line-height: 136%;
  color: #fff;
  z-index: 2;
}

.page-live .live__info>p {
  width: 286px;
  margin: 220px 0 60px;
}

.page-live .live__btns {
  display: flex;
  gap: 6px;
}

.page-live .live__btns a:first-of-type {
  display: inline-block;
  width: 63px;
  height: 44px;
  line-height: 0;
}

.page-live .live__btns .btn {
  padding: 10px 26px;
  border: none;
  border-radius: 11px;
  color: #000;
  font-size: 16px;
}

.page-live .live h1 {
  margin: 0;
  font-size: 36px;
  line-height: 102%;
  color: #d9d9d9;
}

.page-live .live h1:after {
  position: static;
  margin-left: 28px;
  width: 16px;
  height: 16px;
  background: #f00;
  border-radius: 100%;
}

.page-live .video-gallery .swiper-slide {
  width: 561px;
  height: 314px;
  box-sizing: border-box;
}

/* Переопределяем глобальное .swiper-slide img (width/height: auto) — в макете картинка заполняет слайд */
.page-live .video-gallery .swiper-slide img,
.page-live .video-gallery .swiper-slide video {
  width: 100%;
  height: 100%;
  max-width: 100%;
  max-height: 100%;
  object-fit: cover;
  object-position: center;
  border-radius: 14px;
}

.page-live .video-gallery .swiper-pagination-custom {
  margin-left: 120px;
  margin-top: 56px;
  margin-bottom: 26px;
}

/* Сетка видео с пагинацией (страница Live) — блоки как посты, кнопка Play как у VK */
.video-gallery--grid .video-grid__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  list-style: none;
  margin: 0 0 40px;
  padding: 0;
}

.video-grid__list .video-grid__player-wrap {
  margin: 0;
}

/* Соотношение 16:9 — как превью в свайпере «О нас»: одинаковая высота карточек, без лишней обрезки */
.video-grid__player-wrap {
  position: relative;
  display: block;
  width: 100%;
  background: #2a2c3d;
  border-radius: 14px;
  overflow: hidden;
  box-sizing: border-box;
}

/* Превью/плеер как на «О нас»: картинка/видео по ширине блока, без обрезания краёв */
.video-grid__embed {
  display: block;
  width: 100%;
  height: 100%;
  border: none;
  border-radius: 14px;
}

.video-grid__preview {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
  object-position: center;
  border-radius: 14px;
}

/* Оверлей по клику открывает попап. Ховер — только через ::after, чтобы не трогать слой с превью */
.video-grid__overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  cursor: pointer;
  border-radius: 14px;
}

.video-grid__overlay::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 14px;
  border: 2px solid transparent;
  background: transparent;
  pointer-events: none;
  transition: background 0.2s, border-color 0.2s;
}

.video-grid__overlay:hover::after {
  background: rgba(4, 102, 200, 0.12);
  border-color: rgba(4, 102, 200, 0.35);
}

.video-grid__overlay:focus-visible {
  outline: 2px solid #0466c8;
  outline-offset: 2px;
}

.video-grid__title {
  display: block;
  margin-top: 12px;
  font-size: 16px;
  line-height: 1.35;
  font-weight: 500;
  color: #fff;
}

.video-grid__pagination {
  margin-top: 24px;
  margin-bottom: 20px;
}

.video-grid__pagination ul {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  list-style: none;
  margin: 0;
  padding: 0;
  justify-content: center;
}

.video-grid__pagination a,
.video-grid__pagination span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  height: 40px;
  padding: 0 12px;
  border-radius: 12px;
  font-weight: 500;
  font-size: 16px;
  text-decoration: none;
  color: #a6acce;
  background: #36394e;
  transition: background 0.2s, color 0.2s;
}

.video-grid__pagination a:hover {
  background: #4a4d6d;
  color: #fff;
}

.video-grid__pagination .current {
  background: #0466c8;
  color: #fff;
}

.video-grid__pagination .prev,
.video-grid__pagination .next {
  background: #373b5d;
}

@media (max-width: 1200px) {
  .video-gallery--grid .video-grid__list {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}

@media (max-width: 768px) {
  .video-gallery--grid .video-grid__list {
    grid-template-columns: 1fr;
    gap: 16px;
    margin-bottom: 32px;
  }

  .video-grid__title {
    font-size: 14px;
    margin-top: 8px;
  }
}

@media (max-width: 1750px) {
  .page-live .video-gallery {
    margin-bottom: 54px;
  }

  .page-live .bg {
    height: 81vh;
  }

  .page-live .live__video {
    margin-top: -116px;
  }

  .page-live .live__video img,
  .page-live .live__video video {
    height: 662px;
    border-radius: 0 0 14px 14px;
  }

  .page-live .live__info {
    margin-left: 84px;
    top: 40%;
    font-size: 15px;
  }

  .page-live .video-gallery .swiper-pagination-custom {
    margin-left: 84px;
  }

  .page-live .live__info>p {
    margin: 160px 0 42px;
  }

  .page-live .live__btns a:first-of-type {
    width: 44px;
    height: 32px;
  }

  .page-live .live__btns a:first-of-type svg {
    width: 44px;
    height: 32px;
  }

  .page-live .live__btns .btn {
    padding: 8px 18px;
    font-size: 11px;
    border-radius: 8px;
  }

  .page-live .live h1 {
    font-size: 25px;
  }

  .page-live .live h1:after {
    margin-left: 20px;
    width: 12px;
    height: 12px;
  }

  .page-live .video-gallery .swiper-slide {
    width: 399px;
    height: 223px;
  }

  .page-live .video-gallery .swiper-pagination-custom {
    margin-top: 40px;
  }
}

@media (max-width: 1365px) {
  .page-live .video-gallery {
    margin-bottom: 106px;
  }

  .page-live .bg {
    height: 133vh;
  }

  .page-live .live__video {
    margin-top: -210px;
  }

  .page-live .live__video img,
  .page-live .live__video video {
    height: 990px;
    width: 100%;
    -o-object-fit: cover;
    object-fit: cover;
  }

  .page-live .live__info {
    margin-left: 36px;
    top: 22%;
    font-size: 28px;
  }

  .page-live .live__info>p {
    width: 380px;
    margin: 89% 0 78px;
  }

  .page-live .live__btns a:first-of-type {
    width: 84px;
    height: 59px;
  }

  .page-live .live__btns a:first-of-type svg {
    width: 84px;
    height: 59px;
  }

  .page-live .live__btns .btn {
    padding: 8px 18px;
    font-size: 21px;
    border-radius: 15px;
  }

  .page-live .live h1 {
    font-size: 48px;
  }

  .page-live .live h1:after {
    margin-left: 38px;
    width: 22px;
    height: 22px;
  }

  .page-live .video-gallery .swiper-slide {
    width: 599px;
    height: 333px;
  }

  .page-live .video-gallery .swiper-pagination-custom {
    margin-left: 36px;
    margin-top: 60px;
  }
}

@media (max-width: 1023px) {
  .page-live .video-gallery {
    margin-bottom: 58px;
  }

  .page-live .bg {
    height: 137vh;
  }

  .page-live .live__video {
    margin-top: -142px;
  }

  .page-live .live__video img,
  .page-live .live__video video {
    height: 730px;
  }

  .page-live .live__info {
    margin-left: 32px;
    font-size: 21px;
  }

  .page-live .live__info>p {
    width: 294px;
    margin: 86% 0 66px;
  }

  .page-live .live__btns a:first-of-type {
    width: 63px;
    height: 44px;
  }

  .page-live .live__btns a:first-of-type svg {
    width: 63px;
    height: 44px;
  }

  .page-live .live__btns .btn {
    font-size: 16px;
    border-radius: 11px;
  }

  .page-live .live h1 {
    font-size: 36px;
  }

  .page-live .live h1:after {
    margin-left: 28px;
    width: 16px;
    height: 16px;
  }

  .page-live .video-gallery .swiper-slide {
    width: 448px;
    height: 249px;
  }

  .page-live .video-gallery .swiper-pagination-custom {
    margin-left: 32px;
  }
}

@media (max-width: 767px) {
  .page-live .bg {
    height: 202vh;
  }

  .page-live .live__video {
    margin-top: -122px;
  }

  .page-live .live__video img,
  .page-live .live__video video {
    height: 500px;
  }

  .page-live .live__info {
    margin-left: 10px;
    font-size: 16px;
  }

  .page-live .live__info>p {
    width: 230px;
    margin: 156px 0 47px;
  }

  .page-live .live h1 {
    font-size: 24px;
  }

  .page-live .live h1:after {
    margin-left: 10px;
    width: 10px;
    height: 10px;
  }

  .page-live .video-gallery .swiper-slide {
    width: 341px;
    height: 190px;
  }

  .page-live .video-gallery .swiper-pagination-custom {
    margin-left: 10px;
  }
}

.page-about .car-services-specially {
  margin-bottom: 240px;
  gap: 60px;
}

.page-about .car-specially {
  position: relative;
  padding: 66px 96px 164px;
}

.page-about .car-specially h2 {
  max-width: 65%;
  line-height: 106%;
}

.page-about .car-specially h2:not(:first-of-type) {
  margin-top: 140px;
}

.page-about .car-specially__text {
  width: 90%;
  margin: 34px 0 28px;
}

.page-about .car-specially .btn {
  position: absolute;
  bottom: -10px;
}

.about-main {
  position: relative;
}

.about-main>div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-weight: 500;
  font-size: 21px;
  line-height: 122%;
  color: #626786;
}

.about-main>div p {
  width: 510px;
  margin-top: 150px;
}

.about-main>div img {
  margin-top: -162px;
}

.about-main .hero-title {
  z-index: 0;
  top: 5%;
  left: -2%;
  font-size: 283px;
}

.swiper-about-video {
  margin: -80px 0 150px;
}

.swiper-about-video .swiper-slide {
  width: 438px;
  height: 244px;
}

/* В слайде — плеер VK (как на Live): блок на весь слайд */
.swiper-about-video .swiper-slide .video-grid__player-wrap {
  width: 100%;
  height: 100%;
  aspect-ratio: auto;
  border-radius: 20px;
}

.swiper-about-video .swiper-slide img,
.swiper-about-video .swiper-slide video {
  border-radius: 20px;
}

.about-data {
  max-width: 693px;
  position: relative;
  border-radius: 0 0 27px 27px;
  background: #151515;
  font-size: 22px;
  line-height: 114%;
  color: #fff;
}

.about-data:before {
  width: 144px;
  height: 144px;
  right: 8%;
  top: -4%;
  background-image: url(../img/check-in-white-circle.svg);
  background-size: contain;
}

.about-data>div {
  padding: 92px 20px 88px 84px;
  display: flex;
  flex-direction: column;
  gap: 94px;
}

.about-data>div p {
  max-width: 80%;
}

.about-data__text-big {
  font-weight: 700;
  font-size: 73px;
  line-height: 114%;
  color: #fff;
}

.about-data__top {
  background: #3071fb;
}

.about-data__bottom .about-data__text-big {
  color: #3071fb;
}

.about-data__name {
  font-style: italic;
  font-weight: 700;
  font-size: 52px;
  line-height: 89%;
  color: #3071fb;
}

.swiper-about-gallery {
  margin-bottom: 320px;
}

.swiper-about-gallery .swiper-slide {
  width: 467px;
  height: 468px;
}

.swiper-about-gallery .swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (max-width: 1750px) {
  .page-about .car-services-specially {
    margin-bottom: 176px;
    gap: 42px;
  }

  .page-about .car-specially {
    padding: 48px 80px 116px;
    line-height: 139%;
  }

  .page-about .car-specially h2 {
    max-width: 68%;
    line-height: 106%;
  }

  .page-about .car-specially h2:not(:first-of-type) {
    margin-top: 92px;
  }

  .page-about .car-specially .btn {
    padding: 8px 12px;
    font-size: 11px;
  }

  .about-main>div {
    font-size: 14px;
  }

  .about-main>div p {
    width: 360px;
    margin-top: 174px;
  }

  .about-main>div img {
    margin-top: -117px;
    width: 72%;
  }

  .about-main .hero-title {
    top: 12%;
    font-size: 202px;
  }

  .swiper-about-video {
    margin: 5px 0 112px;
  }

  .swiper-about-video .swiper-slide {
    width: 312px;
    height: 173px;
  }

  .swiper-about-video .swiper-slide img,
  .swiper-about-video .swiper-slide video {
    border-radius: 14px;
  }

  .about-data {
    max-width: 495px;
    border-radius: 0 0 19px 19px;
    font-size: 15px;
  }

  .about-data:before {
    width: 98px;
    height: 98px;
  }

  .about-data>div {
    padding: 66px 20px 66px 56px;
    gap: 72px;
  }

  .about-data__text-big {
    font-size: 52px;
  }

  .about-data__name {
    font-size: 37px;
  }

  .swiper-about-gallery {
    margin-bottom: 210px;
  }

  .swiper-about-gallery .swiper-slide {
    width: 332px;
    height: 333px;
  }
}

@media (max-width: 1365px) {
  .page-about .car-services-specially {
    margin-bottom: 120px;
    gap: 186px;
  }

  .page-about .car-specially {
    padding: 78px 62px 152px;
  }

  .page-about .car-specially h2 {
    max-width: 84%;
    line-height: 123%;
  }

  .page-about .car-specially h2:not(:first-of-type) {
    margin-top: 104px;
  }

  .page-about .car-specially .btn {
    padding: 16px 12px;
    width: 51%;
    bottom: -28px;
    font-size: 21px;
  }

  .page-about .car-specially__text {
    width: 80%;
  }

  .about-main>div {
    flex-direction: column-reverse;
    align-items: start;
    font-size: 24px;
  }

  .about-main>div p {
    width: 50%;
    margin-top: -50px;
    line-height: 142%;
  }

  .about-main>div img {
    width: 130%;
    margin-top: -210px;
  }

  .about-main .hero-title {
    top: 23%;
    left: -27%;
    font-size: 246px;
  }

  .swiper-about-video {
    margin: 90px 0 78px;
  }

  .swiper-about-video .swiper-slide {
    width: 599px;
    height: 333px;
  }

  .swiper-about-video .swiper-slide img,
  .swiper-about-video .swiper-slide video {
    width: 100%;
    border-radius: 27px;
  }

  .about-data {
    max-width: 100%;
    border-radius: 0;
    font-size: 29px;
  }

  .about-data:before {
    width: 184px;
    height: 184px;
  }

  .about-data>div {
    padding: 120px 20px 118px 104px;
    gap: 130px 8px;
  }

  .about-data>div.about-data__bottom {
    flex-direction: row;
    flex-wrap: wrap;
    padding-bottom: 206px;
  }

  .about-data>div.about-data__bottom>div {
    flex: 1;
  }

  .about-data__text-big {
    font-size: 98px;
  }

  .about-data__name {
    font-size: 69px;
  }

  .swiper-about-gallery {
    margin-bottom: 270px;
  }

  .swiper-about-gallery .swiper-slide {
    width: 835px;
    height: 837px;
  }
}

@media (max-width: 1023px) {
  .page-about .car-services-specially {
    margin-bottom: 86px;
    gap: 152px;
  }

  .page-about .car-specially {
    padding: 58px 44px 116px;
  }

  .page-about .car-specially h2 {
    max-width: 75%;
  }

  .page-about .car-specially h2:not(:first-of-type) {
    margin-top: 84px;
  }

  .page-about .car-specially .btn {
    font-size: 16px;
  }

  .page-about .car-specially__text {
    width: 80%;
  }

  .about-main>div {
    font-size: 18px;
  }

  .about-main>div p {
    margin-top: 20px;
  }

  .about-main .hero-title {
    top: 23%;
    left: -27%;
    font-size: 185px;
  }

  .swiper-about-video {
    margin: 68px 0 60px;
  }

  .swiper-about-video .swiper-slide {
    width: 448px;
    height: 249px;
  }

  .swiper-about-video .swiper-slide img,
  .swiper-about-video .swiper-slide video {
    border-radius: 20px;
  }

  .about-data {
    font-size: 22px;
  }

  .about-data:before {
    width: 138px;
    height: 138px;
  }

  .about-data>div {
    padding: 94px 20px 92px 82px;
    gap: 94px 6px;
  }

  .about-data>div.about-data__bottom {
    padding-bottom: 150px;
    gap: 112px 6px;
  }

  .about-data>div.about-data__bottom>div {
    flex: auto;
  }

  .about-data>div.about-data__bottom>div:first-of-type {
    width: 53%;
  }

  .about-data>div.about-data__bottom>div:last-of-type {
    width: 40%;
  }

  .about-data__text-big {
    font-size: 73px;
  }

  .about-data__name {
    font-size: 52px;
  }

  .swiper-about-gallery {
    margin-bottom: 200px;
  }

  .swiper-about-gallery .swiper-slide {
    width: 625px;
    height: 627px;
  }
}

@media (max-width: 767px) {
  .page-about .car-services-specially {
    margin-bottom: 70px;
    gap: 142px;
    line-height: 167%;
  }

  .page-about .car-specially {
    padding: 26px 24px 56px;
  }

  .page-about .car-specially h2 {
    max-width: 100%;
    line-height: 119%;
  }

  .page-about .car-specially h2:not(:first-of-type) {
    margin-top: 60px;
  }

  .page-about .car-specially .btn {
    width: 100%;
    left: 0;
    padding: 12px;
    bottom: -20px;
    font-size: 16px;
  }

  .page-about .car-specially__text {
    width: 100%;
    margin: 28px 0;
  }

  .about-main>div {
    font-size: 15px;
  }

  .about-main>div p {
    width: 95%;
    margin-top: 0;
    line-height: 167%;
  }

  .about-main>div img {
    width: 200%;
    margin-top: -124px;
  }

  .about-main .hero-title {
    top: 23%;
    left: -27%;
    font-size: 124px;
  }

  .swiper-about-video {
    margin: 54px 0 64px;
  }

  .swiper-about-video .swiper-slide {
    width: 341px;
    height: 190px;
  }

  .swiper-about-video .swiper-slide img,
  .swiper-about-video .swiper-slide video {
    border-radius: 16px;
  }

  .about-data {
    font-size: 15px;
  }

  .about-data:before {
    width: 98px;
    height: 98px;
  }

  .about-data>div {
    padding: 76px 20px 92px 24px;
    gap: 38px;
  }

  .about-data>div p {
    max-width: 92%;
  }

  .about-data>div.about-data__bottom {
    flex-direction: column;
    padding: 44px 20px 50px 24px;
    gap: 52px;
  }

  .about-data>div.about-data__bottom>div:first-of-type,
  .about-data>div.about-data__bottom>div:last-of-type {
    width: 100%;
  }

  .about-data__text-big {
    font-size: 55px;
  }

  .about-data__name {
    max-width: 100%;
    font-size: 42px;
  }

  .swiper-about-gallery {
    margin-bottom: 104px;
  }

  .swiper-about-gallery .swiper-slide {
    width: 345px;
    height: 345px;
  }
}

.page-works .swiper-about-gallery {
  margin-bottom: 98px;
}

.works-main {
  margin-bottom: 128px;
  display: flex;
}

.works-main__text {
  max-width: 36%;
  margin-top: 14px;
  display: flex;
  gap: 94px;
  flex-direction: column;
}

.works-main h1 {
  font-style: italic;
  font-weight: 700;
  font-size: 87px;
  line-height: 89%;
  color: #3071fb;
}

.works-main p {
  font-weight: 500;
  font-size: 21px;
  line-height: 122%;
  color: #626786;
}

.works-main__img {
  position: absolute;
  right: 0;
  top: 0;
  z-index: -1;
}

.works-main__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.works-main__img:after {
  height: 60%;
  bottom: 0;
  right: 0;
  background: linear-gradient(181deg, rgba(35, 37, 54, 0) 0%, #232536 100%);
}

.vacancy {
  margin-bottom: 300px;
}

.vacancy__info {
  margin-bottom: 114px;
  display: flex;
  justify-content: space-between;
  font-weight: 500;
  font-size: 21px;
  line-height: 136%;
  color: #626786;
}

.vacancy__info>div {
  max-width: 35%;
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.vacancy__info h2 {
  margin-top: 24px;
}

.vacancy__info img {
  width: 204px;
}

.vacancy-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 44px 60px;
}

.vacancy-list__item {
  padding: 12px 28px 28px 36px;
  background: #2a2c3d;
  border-radius: 27px;
  font-size: 18px;
  line-height: 163%;
  color: #8287a7;
}

.vacancy-list__item__division {
  margin-bottom: 10px;
  font-weight: 600;
  font-size: 19px;
  line-height: 192%;
  color: #3071fb;
}

.vacancy-list__item__address {
  margin-bottom: 52px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: #a9a9a9;
}

.vacancy-list__item h3 {
  font-size: 24px;
  line-height: 122%;
  color: #d9d9d9;
}

.vacancy-list__item__desc {
  margin: 112px 0 64px;
}

.vacancy-list__item__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 24px;
  line-height: 122%;
  color: #d9d9d9;
}

/* Кнопка «Откликнуться» — по макету Figma и front: высота 32px, радиусы, волна между частями. Контент справа — стрелка на месте, выезжает только текст */
.vacancy-list__item .btn {
  width: 32px;
  height: 32px;
  padding: 0;
  border-radius: 8.54px 12.05px 12.05px 9.25px;
  font-family: Montserrat, sans-serif;
  font-weight: 500;
  font-size: 11.38px;
  line-height: 18.19px;
  overflow: visible;
  justify-content: flex-end;
  background: transparent;
}

/* Синяя часть: волнистый правый край (стыкуется с белой частью) */
.vacancy-list__item .btn span:first-of-type {
  clip-path: polygon(0 0, 100% 0, 100% 25%, 86% 50%, 100% 75%, 100% 100%, 0 100%, 0 0);
  -webkit-clip-path: polygon(0 0, 100% 0, 100% 25%, 86% 50%, 100% 75%, 100% 100%, 0 100%, 0 0);
}

/* Правая часть (стрелочка): волна по макету (45.14×53.27, left -3.61px, 90deg) + скругление справа */
.vacancy-list__item .btn span:last-of-type {
  position: relative;
  flex-shrink: 0;
  width: 32px;
  background: #BDBECA;
  border-radius: 0 6.68px 6.68px 0;
  clip-path: polygon(0 0, 14% 25%, 0 50%, 14% 75%, 0 100%, 100% 100%, 100% 0, 0 0);
  -webkit-clip-path: polygon(0 0, 14% 25%, 0 50%, 14% 75%, 0 100%, 100% 100%, 100% 0, 0 0);
  overflow: visible;
}

/* Волна: размеры и позиция по макету (45.14×53.27, left -3.61px, angle 90deg, opacity 1) */
.vacancy-list__item .btn span:last-of-type::before {
  content: "";
  position: absolute;
  top: 0;
  left: -3.61px;
  width: 45.14004135131836px;
  height: 53.265254974365234px;
  transform: rotate(90deg);
  transform-origin: left center;
  opacity: 1;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 45 53'%3E%3Cpath fill='%23BDBECA' d='M0 0v53h12c6.6 0 12-5.4 12-12s-5.4-12-12-12H0V0zm21 29c0 6.6 5.4 12 12 12h12V0H33c-6.6 0-12 5.4-12 12v17z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: 100% 100%;
  pointer-events: none;
  z-index: 0;
}

.vacancy-list__item .btn span:last-of-type svg {
  position: relative;
  z-index: 1;
}

.vacancy-list__item .btn svg {
  fill: #2a2c3d;
  width: 18px;
  height: 18px;
}

@media (max-width: 1750px) {
  .page-works .swiper-about-gallery {
    margin-bottom: 62px;
  }

  .works-main {
    margin-bottom: 96px;
  }

  .works-main__text {
    max-width: 34%;
    gap: 60px;
  }

  .works-main h1 {
    font-size: 62px;
  }

  .works-main p {
    font-size: 14px;
  }

  .works-main__img {
    width: 67%;
    height: 16%;
  }

  .works-main__img::after {
    bottom: -5%;
  }

  .vacancy {
    margin-bottom: 226px;
  }

  .vacancy__info {
    margin-bottom: 74px;
    font-size: 15px;
  }

  .vacancy__info img {
    width: 144px;
  }

  .vacancy-list {
    gap: 30px 40px;
  }

  .vacancy-list__item {
    padding: 8px 20px 20px 28px;
    border-radius: 19px;
    font-size: 12px;
  }

  .vacancy-list__item__division {
    font-size: 13px;
  }

  .vacancy-list__item__address {
    margin-bottom: 38px;
  }

  .vacancy-list__item__address img {
    width: 12px;
  }

  .vacancy-list__item h3 {
    font-size: 17px;
  }

  .vacancy-list__item__desc {
    margin: 82px 0 46px;
  }

  .vacancy-list__item__bottom {
    font-size: 17px;
  }

  .vacancy-list__item .btn {
    font-size: 11px;
  }

  .vacancy-list__item .btn svg {
    width: 18px;
  }
}

@media (max-width: 1365px) {
  .page-works .swiper-about-gallery {
    margin-bottom: 112px;
  }

  .works-main {
    margin-bottom: 78px;
    flex-direction: column;
    padding: 0;
  }

  .works-main__text {
    max-width: 100%;
    gap: 52px;
    text-align: center;
  }

  .works-main h1 {
    font-size: 48px;
  }

  .works-main p {
    max-width: 55%;
    font-size: 25px;
    margin: auto;
    line-height: 134%;
  }

  .works-main__img {
    position: relative;
    width: 100%;
    height: 750px;
  }

  .works-main__img img {
    -o-object-position: right;
    object-position: right;
  }

  .works-main__img::after {
    bottom: unset;
    top: -1%;
    background: linear-gradient(0deg, rgba(35, 37, 54, 0) 0%, #232536 100%);
  }

  .vacancy {
    margin-bottom: 276px;
  }

  .vacancy__info {
    margin-bottom: 186px;
    font-size: 26px;
  }

  .vacancy__info>div {
    max-width: 70%;
    gap: 50px;
  }

  .vacancy__info img {
    width: 154px;
  }

  .vacancy-list {
    grid-template-columns: repeat(2, 1fr);
    gap: 38px 12px;
  }

  .vacancy-list__item {
    padding: 20px 24px 24px 38px;
    border-radius: 31px;
    font-size: 21px;
    line-height: 184%;
  }

  .vacancy-list__item__division {
    margin-bottom: 14px;
    font-size: 23px;
  }

  .vacancy-list__item__address {
    margin-bottom: 42px;
  }

  .vacancy-list__item__address img {
    width: 21px;
  }

  .vacancy-list__item h3 {
    font-size: 29px;
  }

  .vacancy-list__item__desc {
    margin: 108px 0 70px;
  }

  .vacancy-list__item__bottom {
    flex-direction: column;
    align-items: start;
    gap: 30px;
    font-size: 29px;
  }

  .vacancy-list__item .btn {
    width: 280px;
    background: #0466c8;
    font-size: 16px;
  }

  .vacancy-list__item .btn svg {
    width: 36px;
  }
}

@media (max-width: 1023px) {
  .page-works .swiper-about-gallery {
    margin-bottom: 74px;
  }

  .works-main {
    margin-bottom: 60px;
  }

  .works-main__text {
    gap: 42px;
  }

  .works-main h1 {
    font-size: 36px;
  }

  .works-main p {
    max-width: 60%;
    font-size: 19px;
  }

  .works-main__img {
    height: 560px;
  }

  .vacancy {
    margin-bottom: 154px;
  }

  .vacancy__info {
    margin-bottom: 136px;
    font-size: 20px;
  }

  .vacancy__info>div {
    gap: 40px;
  }

  .vacancy__info img {
    width: 112px;
  }

  .vacancy-list {
    gap: 28px 19px;
  }

  .vacancy-list__item {
    padding: 16px 16px 20px 28px;
    border-radius: 23px;
    font-size: 16px;
  }

  .vacancy-list__item__division {
    margin-bottom: 10px;
    font-size: 17px;
  }

  .vacancy-list__item__address {
    margin-bottom: 32px;
  }

  .vacancy-list__item__address img {
    width: 16px;
  }

  .vacancy-list__item h3 {
    font-size: 22px;
  }

  .vacancy-list__item__desc {
    margin: 78px 0 54px;
  }

  .vacancy-list__item__bottom {
    gap: 20px;
    font-size: 22px;
  }

  .vacancy-list__item .btn {
    width: 210px;
    font-size: 16px;
  }

  .vacancy-list__item .btn svg {
    width: 26px;
  }
}

@media (max-width: 767px) {
  .page-works .swiper-about-gallery {
    margin-bottom: 74px;
  }

  .works-main {
    margin-bottom: 34px;
  }

  .works-main__text {
    gap: 48px;
  }

  .works-main h1 {
    font-size: 24px;
  }

  .works-main p {
    max-width: 90%;
    font-size: 15px;
    line-height: 171%;
  }

  .works-main__img {
    height: 318px;
  }

  .vacancy {
    position: relative;
  }

  .vacancy__info {
    margin-bottom: 40px;
    align-items: start;
    line-height: 146%;
  }

  .vacancy__info>div {
    gap: 30px;
    max-width: 100%;
  }

  .vacancy__info h2 {
    width: 80%;
    margin-top: 0;
  }

  .vacancy__info img {
    position: absolute;
    right: 12px;
    width: 72px;
  }

  .vacancy-list {
    gap: 22px;
    grid-template-columns: 1fr;
  }

  .vacancy-list__item {
    padding: 8px 12px 16px 24px;
    border-radius: 23px;
    font-size: 16px;
  }

  .vacancy-list__item__division {
    margin-bottom: 2px;
  }

  .vacancy-list__item__address {
    margin-bottom: 24px;
  }

  .vacancy-list__item h3 {
    font-size: 20px;
  }

  .vacancy-list__item__desc {
    margin: 54px 0 38px;
  }

  .vacancy-list__item__bottom {
    gap: 32px;
  }

  .vacancy-list__item .btn {
    width: 100%;
  }
}

/* ========== Ховеры как во front (страницы услуг, кнопки) ========== */
.btn-withIcon span:last-of-type {
  transition: background 0.4s;
}

.btn-white:hover {
  background: #e8eeff;
  border-color: #3071fb;
  color: #3071fb;
}

.btn-blue:hover {
  background: #3071fb;
}

.btn-withIcon:hover {
  background: #3071fb;
}

.btn-withIcon:hover span:last-of-type {
  background: #4a4d6d;
}

.btn-show:hover {
  color: #9fafca;
}

.btn-withBlur::after {
  transition: 0.4s;
}

.btn-withBlur:hover::after {
  background: #3071fb;
}

.header__phone__item:hover {
  background: rgba(48, 113, 251, 0.2);
  border-color: #3071fb;
}

.select__title {
  transition: 0.4s;
  cursor: pointer;
}

.select__title:hover {
  background: #4e516c;
}

/* Ховеры главной страницы (блоки услуг, отзывов, история — макет aa81495d) */
.service {
  transition: 0.4s;
}

.service::after {
  content: "";
  display: block;
  width: 85%;
  height: 10%;
  position: absolute;
  bottom: -4%;
  left: 50%;
  transform: translateX(-50%);
  z-index: -1;
  background: transparent;
  filter: blur(35px);
  transition: 0.4s;
}

.service:hover::after {
  background: #0466c8;
}

.review {
  transition: 0.4s;
}

.review:hover {
  background: #36394e;
  transform: translateY(-10px);
}

.company-history__right {
  transition: 0.4s;
}

.company-history__right:hover {
  background: #36394e;
}

/* Карточка авто в каталоге (макет aa81495d): одна скорость анимации ховера (0.4s) у карточки, обёртки заголовка, h3 и фейда. */
.car {
  transition: transform 0.4s, background 0.4s;
}

.car .car__title-wrap h3 {
  transition: background 0.4s;
}

.car:hover {
  background: #36394e;
  transform: translateY(-10px);
}

.car:hover .car__title-wrap {
  background: #36394e;
}

.car:hover .car__title-wrap h3 {
  background: #36394e;
}

.car:hover .car__title-wrap::after {
  background: linear-gradient(to right, transparent, #36394e);
}

/* Карточка вакансии — страница «Работа» (макет aa81495d) */
.vacancy-list__item {
  transition: 0.4s;
}

.vacancy-list__item:hover {
  background: #36394e;
}

.vacancy-list__item .btn {
  transition: 0.4s width;
}

.vacancy-list__item .btn span:first-of-type {
  display: none;
  opacity: 0;
  transition: opacity 0.4s;
}

.vacancy-list__item .btn span:last-of-type {
  transition: background 0.4s;
}

.vacancy-list__item .btn span:last-of-type svg {
  transition: fill 0.4s;
}

.vacancy-list__item:hover .btn {
  width: 220px;
}

.vacancy-list__item:hover .btn span:first-of-type {
  display: flex;
  opacity: 1;
}

.vacancy-list__item:hover .btn span:last-of-type {
  background: #fff;
}

.vacancy-list__item:hover .btn span:last-of-type svg {
  fill: #3071fb;
}

@media (max-width: 1750px) {
  .vacancy-list__item:hover .btn {
    width: 146px;
  }
}

@media (max-width: 1366px) {
  .vacancy-list__item:hover .btn {
    width: 280px;
  }

  .vacancy-list__item .btn span:first-of-type {
    display: flex;
    opacity: 1;
  }
}

@media (max-width: 767px) {
  .vacancy-list__item .btn span:first-of-type {
    display: flex;
    opacity: 1;
  }
}

.page-comission .other-sales-first {
  background-image: url(../img/ransom.png);
}

/* Убирает лишнюю прокрутку снизу: блок .bg (135vh) не должен растягивать body */
.page-comission {
  overflow: hidden;
}

.page-comission .garant {
  margin-bottom: 80px;
}

.page-comission .partners {
  margin-bottom: 100px;
}

.page-comission .contacts {
  padding-bottom: 60px;
}

.comisson-info-list {
  margin: 56px 0 62px;
  display: flex;
  gap: 38px;
}

.comisson-info-list__item {
  padding: 42px 56px 34px 48px;
  height: 395px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  flex: 1;
  border-radius: 27px;
  background: #2a2c3d;
  font-weight: 500;
  font-size: 20px;
  line-height: 146%;
  color: #d9d9d9;
}

.comisson-info-list__item:last-of-type {
  background: #3071fb;
}

.comisson-info-list__item:last-of-type__header p:last-of-type {
  color: #fff;
}

.comisson-info-list__item__header {
  display: flex;
  justify-content: space-between;
  font-weight: 700;
  font-size: 24px;
  line-height: 122%;
  color: #d9d9d9;
}

.comisson-info-list__item__header p:last-of-type {
  font-weight: 600;
  font-size: 26px;
  line-height: 141%;
  color: #3071fb;
}

.comisson-info-list__item>p {
  width: 90%;
}

.garant {
  margin-bottom: 244px;
}

.garant-list {
  margin-top: 52px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px 40px;
}

.garant-list__item {
  padding: 45px 52px 43px;
  background: #f2f5f7;
  border-radius: 27px;
  font-size: 22px;
  line-height: 114%;
  color: #373737;
}

.garant-list__item:last-of-type {
  background: #3071fb;
  color: #f2f5f7;
}

@media (max-width: 1750px) {
  .page-comission .service-about {
    margin-bottom: 50px;
  }

  .comisson-info-list {
    margin: 38px 0 42px;
    gap: 28px;
  }

  .comisson-info-list__item {
    padding: 30px 38px 24px 30px;
    height: 281px;
    border-radius: 19px;
    font-size: 14px;
  }

  .comisson-info-list__item__header {
    font-size: 17px;
  }

  .comisson-info-list__item__header p:last-of-type {
    font-size: 18px;
  }

  .garant {
    margin-bottom: 184px;
  }

  .garant-list {
    margin-top: 37px;
    gap: 20px 28px;
  }

  .garant-list__item {
    padding: 34px 32px 30px;
    border-radius: 19px;
    font-size: 15px;
  }

  .garant-list img {
    width: 120px;
    height: 120px;
  }
}

@media (max-width: 1365px) {
  .page-comission .service-about {
    margin-bottom: 186px;
  }

  .comisson-info-list {
    margin: 90px 0 70px;
    gap: 28px;
    flex-direction: column;
  }

  .comisson-info-list__item {
    padding: 60px 46px 66px 54px;
    height: 380px;
    min-height: 380px;
    border-radius: 36px;
    font-size: 26px;
  }

  .comisson-info-list__item__header {
    font-size: 32px;
  }

  .comisson-info-list__item__header p:last-of-type {
    font-size: 35px;
  }

  .garant {
    margin-bottom: 228px;
  }

  .garant-list {
    margin-top: 104px;
    display: flex;
    flex-wrap: wrap;
    gap: 38px 68px;
  }

  .garant-list__item {
    width: 100%;
    padding: 60px 54px 68px;
    border-radius: 36px;
    font-size: 26px;
  }

  .garant-list__item:nth-last-child(2) {
    width: 66%;
  }

  .garant-list__item p {
    width: 78%;
  }

  .garant-list img {
    width: 182px;
    height: 182px;
  }
}

@media (max-width: 1023px) {
  .page-comission .service-about {
    margin-bottom: 142px;
  }

  .comisson-info-list {
    margin: 68px 0 50px;
  }

  .comisson-info-list__item {
    padding: 42px 36px 56px 44px;
    height: 285px;
    min-height: 285px;
    border-radius: 27px;
    font-size: 20px;
  }

  .comisson-info-list__item__header {
    font-size: 24px;
  }

  .comisson-info-list__item__header p:last-of-type {
    font-size: 26px;
  }

  .comisson-info-list__item>p {
    width: 85%;
  }

  .garant {
    margin-bottom: 168px;
  }

  .garant-list {
    margin-top: 80px;
    gap: 28px 52px;
  }

  .garant-list__item {
    padding: 46px 45px 50px;
    border-radius: 27px;
    font-size: 22px;
  }

  .garant-list__item p {
    width: 90%;
  }

  .garant-list img {
    width: 143px;
    height: 143px;
  }
}

@media (max-width: 767px) {
  .page-comission .service-about {
    margin-bottom: 84px;
  }

  .comisson-info-list {
    margin: 42px 0 50px;
    gap: 24px;
  }

  .comisson-info-list__item {
    padding: 22px 36px 42px 18px;
    height: 256px;
    min-height: 256px;
    border-radius: 17px;
    font-size: 15px;
  }

  .comisson-info-list__item__header {
    font-size: 18px;
  }

  .comisson-info-list__item__header p:last-of-type {
    font-size: 21px;
  }

  .garant {
    margin-bottom: 116px;
  }

  .garant-list {
    margin-top: 32px;
    gap: 12px 24px;
    gap: 24px 0;
    justify-content: space-between;
  }

  .garant-list__item {
    padding: 32px 22px 24px;
    border-radius: 17px;
    font-size: 15px;
    line-height: 167%;
  }

  .garant-list__item:last-of-type p {
    width: 100%;
  }

  .garant-list img {
    width: 105px;
    height: 105px;
  }
}

.page-leasing:before {
  top: 0;
  right: 0;
  width: 60vw;
  height: 89vh;
  background-image: url(../img/page-leasing-blur.png);
  background-size: contain;
}

.page-leasing .service-about {
  margin-bottom: 100px;
  justify-content: space-between;
  gap: 20px;
  font-size: 19px;
}

.page-leasing .service-about__right {
  margin-top: -76px;
}

.page-leasing .service-about__right img {
  left: 8%;
}

.page-leasing .service-info-list {
  margin: 36px 0 30px;
}

.page-leasing .service-info-list__item {
  height: 212px;
}

.page-leasing .service-info-list__item:last-of-type {
  background: #2a2c3d;
}

.page-leasing .service-info-list__item:last-of-type p:first-of-type {
  color: #3071fb;
}

.page-leasing .service-info-list__item:last-of-type:after {
  content: none;
}

.page-leasing .offer-first {
  background-image: url(../img/traid-in.png);
}

.page-leasing .offer-second {
  background-image: url(../img/autocredit.png);
}

@media (max-width: 1750px) {
  .page-leasing .service-about {
    margin-bottom: 72px;
    font-size: 13px;
  }

  .page-leasing .service-about__right {
    margin-top: -54px;
  }

  .page-leasing .service-about__right img {
    width: 90%;
    left: 18%;
  }

  .page-leasing .service-info-list {
    margin: 24px 0 22px;
  }

  .page-leasing .service-info-list__item {
    height: 150px;
  }
}

@media (max-width: 1365px) {
  .page-leasing:before {
    width: 100vw;
    background-image: url(../img/page-leasing-blur-notepad.png);
  }

  .page-leasing .service-about {
    margin-bottom: 176px;
    font-size: 26px;
  }

  .page-leasing .service-about__right {
    margin-top: 0;
    top: 11%;
  }

  .page-leasing .service-about__right img {
    width: 100%;
    left: 7%;
  }

  .page-leasing .service-info-list {
    margin: 90px 0 66px;
  }

  .page-leasing .service-info-list__item {
    height: 277px;
  }
}

@media (max-width: 1023px) {
  .page-leasing .service-about {
    margin-bottom: 102px;
    font-size: 20px;
  }

  .page-leasing .service-info-list {
    margin: 74px 0 44px;
  }

  .page-leasing .service-info-list__item {
    height: 208px;
  }
}

@media (max-width: 767px) {
  .page-leasing .service-about {
    margin-bottom: 112px;
    font-size: 15px;
  }

  .page-leasing .service-info-list {
    margin: 30px 0 36px;
  }

  .page-leasing .service-info-list__item {
    height: auto;
    padding: 22px 12px 24px 12px;
  }
}

.page-traindin .service-about {
  position: relative;
  margin-bottom: 130px;
}

.page-traindin .service-about__left {
  max-width: 33%;
}

.page-traindin .service-about__right {
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
}

.page-traindin .service-info-list {
  margin: 36px 0 30px;
}

.page-traindin .service-info-list__item {
  height: 245px;
}

.page-traindin .service-info-list__item:last-of-type {
  background: #2a2c3d;
}

.page-traindin .service-info-list__item:last-of-type p:first-of-type {
  color: #3071fb;
}

.page-traindin .service-info-list__item:last-of-type:after {
  content: none;
}

.page-traindin .offer-first {
  background-image: url(../img/leasing.png);
}

.page-traindin .offer-second {
  background-image: url(../img/autocredit.png);
}

.traidin-info,
.tow-truck,
.page-tow-truck #swiper-about-gallery .swiper-slide:first-of-type {
  margin-left: calc((100% - 1615px) / 2);
}

@media (max-width: 1750px) {
  .page-traindin .service-about {
    margin-bottom: 130px;
  }

  .page-traindin .service-about__left {
    max-width: 30%;
  }

  .page-traindin .service-about__right {
    width: 80%;
  }

  .page-traindin .service-info-list {
    margin: 24px 0 22px;
  }

  .page-traindin .service-info-list__item {
    height: 213px;
  }

  .traidin-info,
  .tow-truck,
  .page-tow-truck #swiper-about-gallery .swiper-slide:first-of-type {
    margin-left: calc((100% - 1140px) / 2);
  }
}

@media (max-width: 1365px) {
  .page-traindin .service-about {
    margin-bottom: 180px;
  }

  .page-traindin .service-about__left {
    max-width: 75%;
  }

  .page-traindin .service-about__right {
    width: 114%;
  }

  .page-traindin .service-info-list {
    margin: 90px 0 66px;
  }

  .page-traindin .service-info-list__item {
    height: 277px;
  }

  .traidin-info,
  .tow-truck,
  .page-tow-truck #swiper-about-gallery .swiper-slide:first-of-type {
    margin-left: 36px;
  }
}

@media (max-width: 1023px) {
  .page-traindin .service-about {
    margin-bottom: 130px;
  }

  .page-traindin .service-info-list {
    margin: 74px 0 44px;
  }

  .page-traindin .service-info-list__item {
    height: 208px;
  }

  .traidin-info,
  .tow-truck,
  .page-tow-truck #swiper-about-gallery .swiper-slide:first-of-type {
    margin-left: 30px;
  }
}

@media (max-width: 767px) {
  .page-traindin .service-about {
    margin-bottom: 84px;
  }

  .page-traindin .service-about__left {
    max-width: 90%;
  }

  .page-traindin .service-about__right {
    top: 0;
    transform: none;
  }

  .page-traindin .service-info-list {
    margin: 30px 0 36px;
  }

  .page-traindin .service-info-list__item {
    height: auto;
  }

  .traidin-info,
  .tow-truck,
  .page-tow-truck #swiper-about-gallery .swiper-slide:first-of-type {
    margin-left: 10px;
  }
}

.page-tow-truck .service-about {
  position: relative;
  margin-bottom: 170px;
}

.page-tow-truck .service-about__left {
  max-width: 34%;
  gap: 144px;
  line-height: 134%;
}

.page-tow-truck .service-about__right {
  position: absolute;
  top: -48%;
  right: 0;
}

.page-tow-truck .service-about__right img {
  max-width: 100%;
  height: auto;
  display: block;
}

.page-tow-truck .offer-first {
  background-image: url(../img/leasing.png);
}

.page-tow-truck .offer-second {
  background-image: url(../img/autocredit.png);
}

.page-tow-truck .swiper-about-gallery {
  margin-bottom: 90px;
}

.page-tow-truck .swiper-about-gallery .heading-two {
  margin-bottom: 50px;
}

.tow-truck-info {
  margin-bottom: 182px;
}

.tow-truck-info>div {
  display: flex;
  gap: 32px;
  font-size: 22px;
  line-height: 110%;
}

.tow-truck-info__left {
  max-width: 56%;
  padding: 48px 40px 52px 40px;
  display: flex;
  justify-content: space-between;
  align-items: start;
  background: #f2f5f7;
  border-radius: 27px;
  color: #373737;
}

.tow-truck-info__left img {
  width: 66px;
}

.tow-truck-info__left p {
  width: 75%;
}

.tow-truck-info__right {
  position: relative;
  flex: 1;
  padding: 50px 26px 52px 32px;
  display: flex;
  justify-content: space-between;
  align-items: start;
  background: #3071fb;
  border-radius: 27px;
  color: #fff;
}

.tow-truck-info__right>div {
  display: flex;
  flex-direction: column;
  gap: 48px;
}

.tow-truck-info__right h3::before {
  left: 0;
  background: #fff;
}

.tow-truck-info__right img {
  width: 53px;
}

.tow-truck-info .btn {
  width: 270px;
  margin-top: 40px;
}

@media (max-width: 1750px) {
  .page-tow-truck .service-about {
    margin-bottom: 128px;
  }

  .page-tow-truck .service-about__left {
    gap: 92px;
  }

  .page-tow-truck .service-about__right {
    width: 60%;
  }

  .page-tow-truck .swiper-about-gallery {
    margin-bottom: 66px;
  }

  .page-tow-truck .swiper-about-gallery .heading-two {
    margin-bottom: 36px;
  }

  .tow-truck-info {
    margin-bottom: 130px;
  }

  .tow-truck-info>div {
    gap: 22px;
    font-size: 15px;
  }

  .tow-truck-info__left {
    padding: 32px 28px 36px 22px;
    border-radius: 19px;
  }

  .tow-truck-info__left img {
    width: 44px;
  }

  .tow-truck-info__right {
    padding: 44px 16px 32px 24px;
    border-radius: 19px;
  }

  .tow-truck-info__right>div {
    gap: 38px;
  }

  .tow-truck-info .btn {
    width: 192px;
    margin-top: 30px;
  }
}

@media (max-width: 1365px) {
  .page-tow-truck .service-about {
    margin-bottom: 176px;
  }

  .page-tow-truck .service-about__left {
    max-width: 80%;
    gap: 47vh;
    line-height: 146%;
  }

  .page-tow-truck .service-about__right {
    top: -3%;
    width: 100%;
  }

  .page-tow-truck .swiper-about-gallery {
    margin-bottom: 120px;
  }

  .page-tow-truck .swiper-about-gallery .heading-two {
    margin-bottom: 68px;
  }

  .tow-truck-info {
    margin-bottom: 280px;
  }

  .tow-truck-info>div {
    flex-direction: column;
    gap: 32px;
    font-size: 28px;
    line-height: 136%;
  }

  .tow-truck-info__left {
    max-width: 100%;
    padding: 60px 28px 42px 56px;
    border-radius: 36px;
  }

  .tow-truck-info__left img {
    width: 94px;
  }

  .tow-truck-info__left p {
    width: 85%;
  }

  .tow-truck-info__right {
    padding: 58px 16px 76px 52px;
    border-radius: 36px;
  }

  .tow-truck-info__right>div {
    gap: 30px;
  }

  .tow-truck-info__right img {
    width: 96px;
  }

  .tow-truck-info .btn {
    width: 397px;
    margin-top: 80px;
  }
}

@media (max-width: 1023px) {
  .page-tow-truck .service-about {
    margin-bottom: 110px;
  }

  .page-tow-truck .swiper-about-gallery {
    margin-bottom: 86px;
  }

  .page-tow-truck .swiper-about-gallery .heading-two {
    margin-bottom: 56px;
  }

  .tow-truck-info {
    margin-bottom: 280px;
  }

  .tow-truck-info>div {
    gap: 24px;
    font-size: 21px;
  }

  .tow-truck-info__left {
    max-width: 100%;
    padding: 42px 28px 42px 42px;
    border-radius: 27px;
  }

  .tow-truck-info__left img {
    width: 68px;
  }

  .tow-truck-info__right {
    padding: 42px 28px 56px 40px;
    border-radius: 27px;
  }

  .tow-truck-info__right>div {
    gap: 22px;
  }

  .tow-truck-info__right img {
    width: 70px;
  }

  .tow-truck-info .btn {
    width: 298px;
    margin-top: 66px;
  }
}

@media (max-width: 767px) {
  .page-tow-truck .service-about {
    margin-bottom: 110px;
  }

  .page-tow-truck .service-about__left {
    max-width: 95%;
    gap: 40vh;
  }

  .page-tow-truck .service-about__right {
    top: 0;
  }

  .page-tow-truck .swiper-about-gallery {
    margin-bottom: 46px;
  }

  .page-tow-truck .swiper-about-gallery .heading-two {
    margin-bottom: 56px;
  }

  .tow-truck-info {
    margin-bottom: 140px;
  }

  .tow-truck-info>div {
    font-size: 15px;
    line-height: 167%;
  }

  .tow-truck-info__left {
    position: relative;
    padding: 22px 14px 38px 24px;
    border-radius: 17px;
  }

  .tow-truck-info__left img {
    position: absolute;
    width: 52px;
    right: 14px;
    top: 22px;
  }

  .tow-truck-info__left p {
    width: 88%;
  }

  .tow-truck-info__right {
    padding: 22px 12px 22px 26px;
    border-radius: 17px;
    gap: 20px;
  }

  .tow-truck-info__right img {
    width: 60px;
  }

  .tow-truck-info .btn {
    margin: 50px auto 0;
  }
}

/* Селекты в фильтрах каталога — ховер (макет aa81495d) */
.filters .select__title:hover {
  background: #4e516c;
}

/* ========== Модальные окна (интеграция коммитов e125d58d, 4ee24d75) ========== */
.no-scroll {
  overflow: hidden;
}

#request-modal {
  display: none;
}

#request-modal.open {
  display: flex;
}

.modal {
  display: flex;
  align-items: center;
  justify-content: center;
  position: fixed;
  z-index: 100;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background: rgba(0, 0, 0, 0.6);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.5s ease, visibility 0.5s ease;
  pointer-events: none;
}

.modal.open {
  pointer-events: auto;
  opacity: 1;
  visibility: visible;
}

.modal.open .modal__content,
.modal.open .modal-content {
  transform: translateY(0);
}

.modal__content,
.modal .modal-content {
  position: relative;
  width: 467px;
  min-height: 419px;
  padding: 48px 70px 14px;
  border-radius: 20px;
  background: #272a3d;
  font-weight: 500;
  font-size: 16px;
  line-height: 135%;
  text-align: center;
  color: #98a3b1;
  transform: translateY(30px);
  transition: transform 0.5s ease;
}

.modal .heading-two {
  font-size: 24px;
  line-height: 107%;
}

.modal__close,
.modal .close-modal {
  position: absolute;
  right: -74px;
  top: 0;
  width: 65px;
  height: 54px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 15px;
  background: #3a3d52;
  cursor: pointer;
  border: none;
  font-size: 28px;
  color: #98a3b1;
  line-height: 1;
  padding: 0;
}

.modal__close img,
.modal .close-modal img {
  display: block;
  width: 35px;
  height: 35px;
  object-fit: contain;
}

.modal__desc {
  margin: 28px auto 64px;
}

.modal__form,
.modal .request-form {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  margin-bottom: 8px;
}

.modal__form>label,
.modal .request-form>label {
  display: block;
  width: 100%;
  max-width: 289px;
  margin-bottom: 13px;
}

.modal .form-field {
  width: 100%;
  max-width: 289px;
  text-align: left;
}

.modal .form-field label {
  display: block;
  margin-bottom: 6px;
  font-size: 14px;
  color: #98a3b1;
}

.modal .form-field input,
.modal .form-field textarea {
  width: 100%;
  box-sizing: border-box;
}

.modal .form-field textarea {
  min-height: 80px;
  resize: vertical;
}

.modal .btn {
  width: 289px;
  height: 45px;
  margin: 13px auto 62px;
}

.modal input {
  width: 289px;
  height: 45px;
  padding: 10px;
  border: 0;
  border-radius: 17px;
  background: #373950;
  font-weight: 500;
  font-size: 16px;
  line-height: 160%;
  color: #a3adb9;
  outline: none;
  appearance: none;
}

.modal__policy {
  font-weight: 300;
  font-size: 13px;
  line-height: 112%;
  text-align: center;
  color: #98a3b1;
  margin-bottom: 15px;
}

.modal__policy a {
  text-decoration: underline;
  text-decoration-skip-ink: none;
}

/* Форма Contact Form 7 в модалке — сброс стилей плагина и 1:1 как макет */
#request-modal .wpcf7,
#request-modal .wpcf7 * {
  box-sizing: border-box;
}

#request-modal .wpcf7 .wpcf7-form-control-wrap {
  margin: 0;
  padding: 0;
  border: none;
  box-shadow: none;
}

#request-modal .wpcf7 .wpcf7-form-control:not(.wpcf7-submit):not(.wpcf7-hidden) {
  margin: 0;
  border: none;
  box-shadow: none;
}

#request-modal .wpcf7 {
  width: 100%;
  margin: 0;
  padding: 0;
  border: none;
  background: none;
}

#request-modal .wpcf7-form fieldset.hidden-fields-container {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
  margin: 0;
  padding: 0;
  border: 0;
}

#request-modal .wpcf7-form {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  margin-bottom: 8px;
}

#request-modal .wpcf7-form br {
  display: none;
}

#request-modal .wpcf7-form p {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 0;
  padding: 0;
  max-width: 289px;
  width: 100%;
  text-align: left;
}

#request-modal .wpcf7-form label {
  display: block;
  width: 100%;
  margin-bottom: 13px;
  font-weight: 500;
  font-size: 16px;
  line-height: 135%;
  color: #98a3b1;
}

#request-modal .wpcf7-form label .wpcf7-form-control-wrap {
  display: block;
  margin-top: 6px;
  width: 100%;
}

#request-modal .wpcf7-form .wpcf7-form-control-wrap {
  display: block;
  width: 100%;
  max-width: 289px;
  margin-bottom: 0;
}

#request-modal .wpcf7-form .wpcf7-form-control-wrap input[type="tel"] {
  width: 289px;
  max-width: 100%;
  height: 45px;
  padding: 10px;
  margin: 0;
  border: 0;
  border-radius: 17px;
  background: #373950;
  font-weight: 500;
  font-size: 16px;
  line-height: 160%;
  color: #a3adb9;
  outline: none;
  appearance: none;
  box-sizing: border-box;
}

#request-modal .wpcf7-form .wpcf7-form-control.hidden {
  display: none !important;
}

#request-modal .wpcf7-form .wpcf7-submit {
  width: 289px;
  margin: 13px auto 62px;
  height: 45px;
  padding: 10px;
  border: 0;
  border-radius: 17px;
  font-weight: 500;
  font-size: 16px;
  cursor: pointer;
  box-sizing: border-box;
  background: #0466c8;
  color: #fff;
  display: inline-block;
  text-align: center;
  line-height: 1.25;
}

#request-modal .wpcf7-form .wpcf7-submit:hover {
  background: #1a8cfe;
}

#request-modal .wpcf7-spinner {
  position: absolute;
  margin-left: 8px;
}

#request-modal .wpcf7-response-output {
  /* margin: 12px auto 0; */
  padding: 8px 12px;
  max-width: 289px;
  width: 100%;
  border-radius: 17px;
  font-size: 14px;
  text-align: center;
  box-sizing: border-box;
}

#request-modal .wpcf7-response-output.wpcf7-mail-sent-ok {
  background: rgba(4, 102, 200, 0.2);
  color: #a3adb9;
  border: 1px solid #0466c8;
}

#request-modal .wpcf7-response-output.wpcf7-validation-errors,
#request-modal .wpcf7-response-output.wpcf7-mail-sent-ng {
  background: rgba(200, 66, 4, 0.15);
  color: #e8a088;
  border: 1px solid #c84204;
}

#request-modal .modal__form-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}

#request-modal .modal__form-inner>br {
  display: none;
}

#request-modal .screen-reader-response {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

@media (max-width: 1750px) {

  .modal__content,
  .modal .modal-content {
    width: 332px;
    min-height: 298px;
    padding: 34px 50px 10px;
    font-size: 11px;
  }

  .modal .heading-two {
    font-size: 17px;
  }

  .modal__close,
  .modal .close-modal {
    width: 46px;
    height: 38px;
    right: -54px;
  }

  .modal__desc {
    margin: 18px auto 28px;
  }

  .modal__policy {
    font-size: 9px;
    margin-bottom: 15px;
  }

  .modal input,
  .modal .btn {
    width: 205px;
    height: 32px;
    border-radius: 12px;
    font-size: 11px;
  }

  .modal .btn {
    margin: 9px auto 44px;
  }

  #request-modal .wpcf7-form p {
    max-width: 205px;
  }

  #request-modal .wpcf7-form .wpcf7-form-control-wrap,
  #request-modal .wpcf7-form .wpcf7-form-control-wrap input[type="tel"] {
    max-width: 205px;
    width: 205px;
  }

  #request-modal .wpcf7-form .wpcf7-form-control-wrap input[type="tel"] {
    height: 32px;
    border-radius: 12px;
    font-size: 11px;
  }

  #request-modal .wpcf7-form .wpcf7-submit {
    width: 205px;
    height: 32px;
    margin: 9px auto 0px;
    border-radius: 12px;
    font-size: 11px;
  }

  #request-modal .wpcf7-response-output {
    padding: 8px 12px;
    max-width: 205px;
    width: 100%;
    border-radius: 17px;
    font-size: 11px;
    text-align: center;
    box-sizing: border-box;
  }
}

@media (max-width: 1366px) {

  .modal__close,
  .modal .close-modal {
    right: unset;
    left: 50%;
    transform: translateX(-50%);
    top: -100px;
  }

  .modal.open .modal__close,
  .modal.open .close-modal {
    transform: translateX(-50%);
  }
}

@media (max-width: 1024px) {

  .modal__content,
  .modal .modal-content {
    width: 467px;
    min-height: 419px;
    padding: 36px 72px 14px;
    font-size: 16px;
  }

  .modal .heading-two {
    font-size: 24px;
  }

  .modal__close,
  .modal .close-modal {
    width: 65px;
    height: 54px;
    top: -80px;
  }

  .modal__desc {
    margin: 20px auto 35px;
  }

  .modal__policy {
    font-size: 13px;
    margin-bottom: 15px;
  }

  .modal input,
  .modal .btn {
    border-radius: 17px;
    width: 289px;
    height: 45px;
    font-size: 16px;
  }

  .modal .btn {
    margin: 12px auto 62px;
  }
}

@media (max-width: 767px) {

  .modal__content,
  .modal .modal-content {
    width: 334px;
    min-height: 384px;
    padding: 32px 12px 24px;
  }

  .modal .heading-two {
    font-size: 20px;
  }

  .modal__close,
  .modal .close-modal {
    width: 49px;
    height: 41px;
    top: -50px;
  }

  .modal__desc {
    margin: 16px auto 30px;
  }

  .modal__policy {
    margin-bottom: 15px;
  }

  .modal .btn {
    margin: 12px auto 35px;
  }
}

/* ========== Выпадающее мобильное меню (интеграция коммита f681e36b) ========== */
@media (max-width: 1365px) {
  .header {
    z-index: 10;
  }

  .burger {
    width: 65px;
    height: 54px;
    display: flex;
    justify-content: center;
    align-items: center;
    border: none;
    outline: none;
    background: #2a2c3d;
    border-radius: 15px;
    cursor: pointer;
  }

  .burger-close {
    background: #3a3d52;
  }

  .header-mobile {
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 10;
    width: 100%;
    padding-top: 52px;
    background: #27293d;
    border-radius: 0 0 50px 50px;
    font-size: 24px;
    line-height: 105%;
    color: #928fa1;
    transform: translateY(-100%);
    opacity: 0;
    visibility: hidden;
    transition: transform 0.4s, opacity 0.4s, visibility 0.4s;
  }

  .header-mobile.active {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .header-mobile .hero-title {
    max-width: 50%;
    z-index: -1;
    right: 3%;
    white-space: break-spaces;
    font-size: 114px;
    color: #3a3e5b;
  }

  .header-mobile .header__left {
    display: flex;
    gap: 12px;
  }

  .header-mobile .nav {
    position: relative;
    margin: 130px 0 268px 110px;
  }

  .header-mobile .nav ul {
    display: flex;
    flex-direction: column;
    gap: 74px;
  }

  .header-mobile__img {
    position: absolute;
    top: 20%;
    right: 0;
  }
}

@media (max-width: 1023px) {
  .burger {
    width: 49px;
    height: 41px;
    border-radius: 11px;
  }

  .burger svg,
  .burger img {
    width: 26px;
  }

  .header-mobile {
    padding-top: 40px;
    font-size: 18px;
    overflow-y: auto;
  }

  .header-mobile .nav {
    margin: 96px 0 198px 80px;
  }

  .header-mobile .nav ul {
    gap: 56px;
  }

  .header-mobile .hero-title {
    font-size: 86px;
  }

  .header-mobile__img {
    width: 82%;
  }
}

@media (max-width: 767px) {
  .header-mobile {
    overflow: hidden;
    padding-top: 20px;
    font-size: 22px;
  }

  .header-mobile .nav {
    position: static;
    margin: 40px 0 300px 66px;
  }

  .header-mobile .nav ul {
    gap: 50px;
  }

  .header-mobile .hero-title {
    bottom: 36%;
    right: -17%;
    font-size: 57px;
  }

  .header-mobile__img {
    width: 110%;
    top: unset;
    bottom: -3%;
  }
}

/* ========== Попап видео (Fancybox) в стиле модалок темы ========== */
.fancybox-video-theme .fancybox__backdrop {
  background: rgba(0, 0, 0, 0.6);
}

.fancybox-video-theme .fancybox__content {
  background: #272a3d;
  border-radius: 20px;
  padding: 0;
  overflow: hidden;
}

.fancybox-video-theme .fancybox__content .fancybox__iframe,
.fancybox-video-theme .fancybox__content iframe {
  border-radius: 20px;
}

.fancybox-video-theme .fancybox__content>.f-button.is-close-btn {
  top: 0;
  right: -74px;
  width: 65px;
  height: 54px;
  border-radius: 15px;
  background: #3a3d52;
  color: #98a3b1;
  --f-button-bg: #3a3d52;
  --f-button-hover-bg: #4a4d62;
  --f-button-active-bg: #3a3d52;
  --f-button-color: #98a3b1;
  --f-button-hover-color: #98a3b1;
}

@media (max-width: 1024px) {
  .fancybox-video-theme .fancybox__content>.f-button.is-close-btn {
    right: unset;
    left: 50%;
    top: -50px;
    transform: translateX(-50%);
    width: 49px;
    height: 41px;
  }
}

/* Видео-галерея */
.video-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.video-grid__list .video-grid__player-wrap {
  height: 310px;
}

@media (max-width: 1750px) {
  .video-grid__list .video-grid__player-wrap {
    height: 223px;
  }
}

@media (max-width: 1365px) {
  .video-list {
    grid-template-columns: repeat(2, 1fr);
  }

  .video-grid__list .video-grid__player-wrap {
    height: 266px;
  }
}

@media (max-width: 1023px) {
  .video-grid__list .video-grid__player-wrap {
    height: 396px;
  }
}

@media (max-width: 767px) {
  .video-list {
    grid-template-columns: repeat(1, 1fr);
  }

  .video-grid__list .video-grid__player-wrap {
    height: 240px;
  }
}

/* ============================================
   Дополнение из front/css (макет Алины): стили, перенесённые в тему
   Источник: docs/css-comparison.md
   ============================================ */

/* Блокировка скролла при открытой модалке или меню — только overflow, без position:fixed (чтобы не сбрасывать позицию страницы) */
html.no-scroll,
body.no-scroll {
  overflow: hidden;
}

/* Ховеры кнопок из макета (цвета #0466c8 / #1a8cfe) — переопределяют тему для единообразия с front */
.btn-white:hover {
  background: #bee0ff;
}

.btn-blue:hover {
  background: #1a8cfe;
}

/* Кнопка с размытием: из макета — более выраженное свечение (82%, blur 35px) и цвет ховера #0466c8 */
.btn-withBlur::after {
  display: block;
  width: 82%;
  z-index: -1;
  filter: blur(35px);
  transition: 0.4s;
}

.btn-withBlur:hover::after {
  background: #0466c8;
}

/* Телефон в шапке: ховер из макета (сплошные цвета) */
.header__phone__item:hover {
  background: #1c79d5;
  border-color: #6176ff;
}

/* Селект: плавность и ховер из макета */
.select__title {
  transition: 0.4s;
  cursor: pointer;
}

.select__title:hover {
  background: #4e516c;
}

/* Блок услуг на главной: ховер подсветки (макет) */
.service:hover::after {
  background: #0466c8;
}

/* Отзыв: лёгкий подъём при наведении (макет) */
.review:hover {
  background: #36394e;
  transform: translateY(-10px);
}

/* Кнопка «Ещё» в отзыве (макет) */
.review__more:hover {
  color: #0466c8;
}

/* Блок истории компании справа (макет) */
.company-history__right:hover {
  background: #36394e;
}

/* Карточка авто в каталоге: ховер (макет) */
.car:hover {
  background: #36394e;
  transform: translateY(-10px);
}

.car:hover h3 {
  background: #36394e;
}

/* Фильтры: кнопки пробега и селект (макет) */
.filters__mileage>div .btn:hover {
  background: #4b4e68;
  color: #a6acce;
}

.filters .select__title:hover {
  background: #4e516c;
}

/* Карточка вакансии: ховер (макет), без подъёма блока — только раздвигание кнопки */
.vacancy-list__item:hover {
  background: #36394e;
}

.vacancy-list__item:hover .btn {
  background: #0466c8;
}

.vacancy-list__item:hover .btn span:last-of-type {
  background: #fff;
}

.vacancy-list__item:hover .btn span:last-of-type svg {
  fill: #3071FB;
}

.swiper-review-list,
.swiper-recommend {
  overflow: visible;
}


.cookie {
  width: 440px;
  padding: 16px 20px 16px 32px;
  position: fixed;
  bottom: 15px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  align-items: center;
  gap: 16px;
  border-radius: 10px;
  background: rgba(0, 28, 56, 0.7);
  font-family: 'Inter';
  font-size: 12px;
  line-height: normal;
  color: #fff;
}

.cookie a {
  text-decoration: underline;
  text-decoration-skip-ink: none;
}

.cookie button {
  width: 54px;
  height: 54px;
  padding: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 0;
  outline: 0;
  border-radius: 8px;
  background: #d9d9d9;
  font-weight: 600;
  font-size: 14px;
  color: #000;
  cursor: pointer;
}

.cookie.hidden {
  display: none;
}

@media (max-width: 1750px) {
  .cookie {
    width: 388px;
    gap: 11px;
    padding: 12px 18px 12px 24px;
    border-radius: 7px;
    font-size: 11px;
    line-height: 100%;
  }

  .cookie button {
    width: 48px;
    height: 48px;
  }
}

@media (max-width: 1365px) {
  .cookie {
    width: 480px;
    padding: 8px 20px 14px 28px;
    font-size: 14px;
  }
}

@media (max-width: 767px) {
  .cookie {
    width: 360px;
    gap: 6px;
    padding: 20px 12px 24px 14px;
    font-size: 13px;
    line-height: 120%;
  }
}