/**
 * Theme Name:  usaglobal
 *
 * Author:      Nick Armfield
 * Author URI:  https://github.com/nickarmfield
 *
 * Version:     1.0
 */

#preloader {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #000;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 888;
}

.loader {
  width: 50px;
  height: 50px;
  border: 5px solid #fff;
  border-top: 5px solid #ff6d00;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

* {
  padding: 0px;
  margin: 0px;
  border: 0px;
}

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

*::before,
*::after {
  display: inline-block;
}

html,
body {
  height: 100%;
  color: var(--secondary);
  background-color: var(--primary);
  min-width: 320px;
}

body {
  color: var(--secondary);
  line-height: 1;
  font-family: "Montserrat", sans-serif;
  font-size: 1.25rem;
  -ms-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

input,
button,
textarea {
  font-family: "Montserrat", sans-serif;
  font-size: inherit;
  line-height: inherit;
  color: inherit;
  background-color: transparent;
}

input,
textarea {
  width: 100%;
}

button,
select,
option {
  cursor: pointer;
}

a {
  display: inline-block;
  color: inherit;
  text-decoration: none;
}

ul li {
  list-style: none;
}

img {
  vertical-align: top;
}

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

.lock body {
  overflow: hidden;
  -ms-touch-action: none;
      touch-action: none;
  -ms-scroll-chaining: none;
      overscroll-behavior: none;
}

.wrapper {
  min-height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  overflow: hidden;
}

@supports (overflow: clip) {
  .wrapper {
    overflow: clip;
  }
}

.wrapper > main {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
}

.wrapper > * {
  min-width: 0;
}

[class*=__container] {
  max-width: 120rem;
  margin: 0 auto;
  padding: 0 0.9375rem;
}

.button {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  padding: 0px 0px;
}

.button--fw {
  width: 100%;
}

.calc-btn {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 1rem;
  font-weight: 600;
  line-height: 30px;
  margin-bottom: 0.625rem;
  padding: 0.4375rem 0.9375rem 0.4375rem 3.375rem;
  border: 1px solid #9E9E9E;
}

.calc-btn::before {
  content: "";
  position: absolute;
  display: block;
  width: 100%;
  height: 100%;
  max-width: 1.875rem;
  max-height: 1.875rem;
  background: url(./assets/images/icons/calc.svg);
  left: 10px;
}

.calc-btn:hover {
  cursor: pointer;
}

:root {
  --primary: #000000;
  --secondary: #ffffff;
  --accent: #FF6D00;
  --inverse: #ffff3f;
  --bg-primary: #000000;
  --bg-secondary: #7678ed;
  --bg-accent: #4cc9f0;
  --bg-inverse: #2d00f7;
  --text-primary: #fbfffe;
  --text-secondary: #080708;
  --text-accent: #e8eddf;
  --text-inverse: #e8eddf;
}

.menu__body {
  height: 100%;
}

.menu__list {
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.menu__item {
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  padding: 0rem 1.25rem 0rem 1.25rem;
}

.menu__item:hover {
  background: #131313;
}

.menu__link {
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding-bottom: 2.0625rem;
}

.icon-menu {
  display: none;
}

.menu-about,
.menu-contacts {
  display: none;
}

.menu-pair {
  display: none;
}

.menu-valuation {
  display: none;
}

.menu-calculate {
  background: url(./assets/images/icons/calc.svg) no-repeat center right;
  background-size: contain;
}

.menu-catalog {
  background: url(./assets/images/icons/bamper.svg) no-repeat center right;
  background-size: contain;
}

.slide-right {
  -webkit-transition: -webkit-transform 0.5s ease;
  transition: -webkit-transform 0.5s ease;
  transition: transform 0.5s ease;
  transition: transform 0.5s ease, -webkit-transform 0.5s ease;
  -webkit-transform-origin: top left;
      -ms-transform-origin: top left;
          transform-origin: top left;
}

.slide-right.active {
  -webkit-transform: translateX(0);
      -ms-transform: translateX(0);
          transform: translateX(0);
}

.menu-services__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 28px;
}

.menu-services__link {
  font-size: 0.875rem;
  font-weight: 500;
}

.spollers {
  display: none;
}

.spollers__item {
  font-size: 1.25rem;
  font-weight: 600;
  text-transform: uppercase;
}

.spollers__title {
  width: 100%;
  cursor: default;
  text-align: left;
  border: 1px solid #333333;
  padding: 0.6875rem 0.9375rem;
  position: relative;
  list-style: none;
}

.spollers__title::marker,
.spollers__title::-webkit-details-marker {
  display: none;
}

._spoller-init .spollers__title {
  cursor: pointer;
}

._spoller-init .spollers__title::before,
._spoller-init .spollers__title::after {
  content: "";
  position: absolute;
  right: 10px;
  background-color: var(--secondary);
  height: 2px;
  width: 10px;
  -webkit-transition: -webkit-transform 0.5s ease 0s;
  transition: -webkit-transform 0.5s ease 0s;
  transition: transform 0.5s ease 0s;
  transition: transform 0.5s ease 0s, -webkit-transform 0.5s ease 0s;
}

._spoller-init .spollers__title::before {
  bottom: 17px;
  -webkit-transform: rotate(-40deg);
      -ms-transform: rotate(-40deg);
          transform: rotate(-40deg);
}

._spoller-init .spollers__title::after {
  top: 17px;
  -webkit-transform: rotate(40deg);
      -ms-transform: rotate(40deg);
          transform: rotate(40deg);
}

._spoller-init .spollers__title._spoller-active::before {
  -webkit-transform: translate(-75%) rotate(40deg);
      -ms-transform: translate(-75%) rotate(40deg);
          transform: translate(-75%) rotate(40deg);
}

._spoller-init .spollers__title._spoller-active::after {
  top: 50%;
  -webkit-transform: translateY(75%) rotate(-40deg);
      -ms-transform: translateY(75%) rotate(-40deg);
          transform: translateY(75%) rotate(-40deg);
}

.spollers__body {
  padding: 1.0625rem 0rem 1.0625rem 1rem;
}

.spollers__body .spollers__title {
  border: none;
}

.p-models__spollers {
  display: block;
}

.faq.spollers {
  width: 21.875rem;
  gap: 18px;
  margin: 0 auto;
}

.faq-spollers__title {
  cursor: default;
  font-size: 0.75rem;
  font-weight: 700;
  line-height: 15px;
  padding: 0.75rem 1.5rem 1.0625rem;
  background: var(--accent);
  list-style: none;
}

.faq-spollers__title::marker,
.faq-spollers__title::-webkit-details-marker {
  display: none;
}

.faq-spollers__body {
  color: var(--primary);
  font-size: 0.6875rem;
  font-weight: 400;
  line-height: 18px;
  padding: 0.75rem 1.5rem 2.25rem;
  background: var(--secondary);
}

.spollers-car {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 133px 140px;
  grid-template-columns: 133px 140px;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.spollers-car__navigation {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 13px;
}

.spollers-car__title {
  position: relative;
  width: 100%;
  font-size: 0.9375rem;
  font-weight: 500;
  padding-bottom: 0.75rem;
  text-transform: uppercase;
  text-align: left;
}

.spollers-car__title::after {
  content: "";
  position: absolute;
  display: block;
  width: 1rem;
  height: 1rem;
  background: url(.././assets/images/icons/spr-arrow.svg) no-repeat center right;
  top: 0;
  right: 0;
}

.spollers-car__title._tab-active {
  border-bottom: 1px solid #6D6E70;
}

.spollers-car__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 20px;
}

.spollers-car__link {
  display: block;
  font-size: 1.125rem;
  font-weight: 500;
  text-transform: capitalize;
}

[data-showmore-button] span:last-child {
  display: none;
}

._showmore-active [data-showmore-button] span {
  display: none;
}

._showmore-active [data-showmore-button] span:last-child {
  display: block;
}

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

.ibg--top {
  -o-object-position: top;
     object-position: top;
}

.ibg--bottom {
  -o-object-position: bottom;
     object-position: bottom;
}

.ibg--left {
  -o-object-position: left;
     object-position: left;
}

.ibg--right {
  -o-object-position: right;
     object-position: right;
}

.ibg--contain {
  -o-object-fit: contain;
     object-fit: contain;
}

.subtitle {
  font-size: 2.875rem;
  font-weight: 700;
  text-align: center;
  text-transform: uppercase;
  margin-bottom: 2.75rem;
}

.breadcrumb {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 1.5625rem 3.4375rem;
  background-color: #131313;
}

.breadcrumb-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: var(--secondary);
  font-size: 1.25rem;
  font-weight: 600;
  line-height: 24px;
}

.breadcrumb-item + .breadcrumb-item::before {
  content: "";
  display: inline-block;
  width: 2.0625rem;
  height: 2.0625rem;
  margin: 0rem 0.3125rem;
  background: url("./assets/images/icons/arrow.svg") no-repeat center center;
}

.header {
  color: var(--secondary);
  height: 7.125rem;
  font-size: 1.25rem;
  font-weight: 600;
  background-color: var(--bg-primary);
}

.header__container {
  position: relative;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.header__menu {
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}

.header__logo {
  position: absolute;
  left: 50%;
  -webkit-transform: translate(-50%, 0);
      -ms-transform: translate(-50%, 0);
          transform: translate(-50%, 0);
}

.header__logo .logo {
  width: 10.5rem;
  height: 2.8125rem;
}

.header__logo .logo img {
  width: 100%;
  height: 100%;
}

.header__info--wrapper {
  height: 100%;
}

.header__info--block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
  height: 100%;
  gap: 1.875rem;
}

.header__valuation {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  height: 100%;
  margin-right: 8.8125rem;
  padding: 0rem 1.25rem 2.0625rem;
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

.header__valuation:hover {
  background: #131313;
}

.header__about {
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

.header__about:hover {
  text-decoration: underline;
}

.header__contacts {
  padding: 6px 26px;
  background: var(--accent);
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

.header__contacts:hover {
  -webkit-box-shadow: 8px 2px 20px 2px rgba(255, 109, 0, 0.42);
          box-shadow: 8px 2px 20px 2px rgba(255, 109, 0, 0.42);
}

.header .active {
  font-weight: 900;
  background: #131313;
}

.footer {
  color: #0b0b0b;
  background-color: var(--secondary);
}

.footer-content {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 2.5625rem 0rem 5.5625rem 0rem;
}

.footer-content:first-child {
  padding-bottom: 0rem;
}

.footer-content:last-child .footer-list {
  width: 100%;
}

.footer-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.social-block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 17px;
  margin-bottom: 0.9375rem;
}

.social-block__link {
  background-position: center center;
  background-repeat: no-repeat;
  display: block;
  width: 4.125rem;
  height: 4.125rem;
}

.inst {
  background-image: url(./assets/images/icons/inst.svg);
}

.vk {
  background-image: url(./assets/images/icons/vk.svg);
}

.address {
  font-size: 1.3125rem;
  font-weight: 700;
  margin-bottom: 2rem;
}

.footer-menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  /* gap: 13px; */
  gap: 8px;
  font-size: 1.25rem;
  font-weight: 600;
}

.logos {
  position: absolute;
  top: 20px;
  right: 50%;
  -webkit-transform: translate(50%, 0);
      -ms-transform: translate(50%, 0);
          transform: translate(50%, 0);
}

.footer-logo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.footer-contacts {
  width: 100%;
}

.contacts-title {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.contacts-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  font-size: 1.3125rem;
  font-weight: 600;
}

.contacts-list__item {
  max-width: 20%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.contacts-list__item div {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.contacts-list__item:not(:last-child) {
  margin-right: 20px;
}

.contacts-list__link {
  margin-bottom: 0.625rem;
}

.contacts-list__link img {
  margin-right: 10px;
}

.contacts-list__link span {
  color: #828282;
}

.contacts-list__descr {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  font-size: 1rem;
  font-weight: 400;
}

.contacts-list__descr.imp {
  font-weight: 700;
}

.services-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 16px;
}

#copyright {
  display: block;
  padding-bottom: 1.25rem;
  font-size: 1rem;
  font-weight: 400;
}

.models-menu__container {
  position: relative;
}

.models-menu__slider {
  width: 90%;
}

.models-menu__slide {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.models-menu__link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 11rem;
  height: 6.75rem;
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

.models-menu__link:hover {
  background: var(--secondary);
}

.models-menu__link:hover svg path {
  fill: #000;
}

.cars-models__wrapper {
  position: relative;
}

.cars-models__slide {
  height: 40.5rem;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
}

.cars-models--preview {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.cars-models__list {
  position: absolute;
  padding: 0.6875rem 0 1.375rem;
  border-left: 2px solid var(--secondary);
  -webkit-transform: translate(0, -50%);
      -ms-transform: translate(0, -50%);
          transform: translate(0, -50%);
  top: 50%;
  right: 240px;
}

.cars-models__item:not(:last-child) {
  margin-bottom: 1.0625rem;
}

.cars-models__link {
  position: relative;
  font-size: 1.5625rem;
  margin-left: 1.625rem;
}

.cars-models__link.active {
  border-bottom: 1px solid var(--secondary);
}

.main-slider__container {
  position: relative;
}

.main-slider__container::after {
  content: "";
  position: absolute;
  display: block;
  background-image: url(./assets/images/dots.png);
  width: 11.75rem;
  height: 6rem;
  left: 32px;
  bottom: 0;
}

.top-car__slider {
  padding-bottom: 3.1875rem;
}

.top-car__slide {
  position: relative;
  height: 40.5rem;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
}

.pagination__slider {
  width: 90%;
  background: #0A0A0A;
}

.top-car__pagination {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.about__container {
  position: relative;
}

.about__container::after {
  content: "";
  position: absolute;
  display: block;
  background-image: url(./assets/images/dots.png);
  width: 6rem;
  height: 6rem;
  left: 55px;
  bottom: 125px;
  z-index: 1;
}

.about-wrapper {
  max-width: 1460px;
  margin: 0 auto;
  padding-bottom: 5.6875rem;
}

.about-title {
  font-size: 3rem;
  font-weight: 900;
  text-align: center;
  text-transform: uppercase;
  margin-bottom: 3.375rem;
}

.about-text__block {
  position: relative;
  max-width: 60.25rem;
  padding-top: 5.625rem;
  margin-bottom: 0.6875rem;
}

.about-subtitle {
  position: absolute;
  color: rgba(255, 255, 255, 0.3);
  font-size: 8rem;
  font-weight: 700;
  text-transform: uppercase;
  top: 0;
}

.about-description {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.3125rem;
  font-weight: 400;
  margin-left: 10px;
}

.about-video__container {
  position: relative;
}

.about-video__controls {
  position: absolute;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1.25rem;
  bottom: 22px;
  left: 20px;
  z-index: 3;
}

.about-video__controls button {
  min-width: 45px;
}

#aboutVideo {
  position: relative;
  z-index: 2;
}

.why {
  position: relative;
}

.why::after {
  content: "";
  position: absolute;
  display: block;
  width: calc(100% - 150px);
  height: 0.125rem;
  margin: 0 4.6875rem;
  background: #707070;
  bottom: 0;
  left: 0;
  display: none;
}

.why-content {
  max-width: 91.25rem;
  margin: 0 auto;
  padding-bottom: 9.3125rem;
}

.why-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.why-item {
  width: 13.75rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 3.875rem;
}

.why-description {
  font-size: 1.0625rem;
  text-align: center;
}

.reviews-widget {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-bottom: 6.25rem;
}

.reviews-widget .reviews-card {
  width: 47.5rem;
  height: 67.625rem;
}

/* ------- Страница "Модели" ------- */

.p-models__slider {
  position: relative;
}

.p-models__slide {
  position: relative;
  height: 47.25rem;
}

.p-models__title {
  position: absolute;
  width: 100%;
  color: rgba(255, 255, 255, 0.5);
  font-size: 13.5625rem;
  font-weight: 500;
  text-align: center;
  text-transform: uppercase;
}

.p-models__image {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.p-models__pagination {
  width: 11rem;
  max-height: 719px;
  position: absolute;
  padding: 0rem 1.3125rem 3.3125rem 1.5625rem;
  background: rgba(19, 19, 19, 0.44);
  top: 0;
  overflow-y: scroll;
}

.p-models__spollers--title {
  font-size: 0.8125rem;
  font-weight: 500;
  padding: 0.75rem 0rem 0.75rem 1.6875rem;
  border: none;
}

._spoller-init .p-models__spollers--title::before,
._spoller-init .p-models__spollers--title::after {
  width: 0.5rem;
  height: 0.0625rem;
  background-color: #828282;
  left: 10px;
}

._spoller-init .p-models__spollers--title::before {
  bottom: 16px;
}

._spoller-init .p-models__spollers--title::after {
  top: 15px;
}

._spoller-init .p-models__spollers--title._spoller-active {
  color: var(--accent);
  font-size: 0.9375rem;
  font-weight: 600;
  padding-bottom: 0rem;
}

._spoller-init .p-models__spollers--title._spoller-active::before,
._spoller-init .p-models__spollers--title._spoller-active::after {
  background: var(--accent);
}

._spoller-init .p-models__spollers--title._spoller-active::before {
  bottom: 30%;
  -webkit-transform: rotate(40deg);
      -ms-transform: rotate(40deg);
          transform: rotate(40deg);
  -webkit-transform: translate(-70%) rotate(40deg);
      -ms-transform: translate(-70%) rotate(40deg);
          transform: translate(-70%) rotate(40deg);
}

._spoller-init .p-models__spollers--title._spoller-active::after {
  top: 67%;
  -webkit-transform: none;
      -ms-transform: none;
          transform: none;
  -webkit-transform: rotate(-40deg);
      -ms-transform: rotate(-40deg);
          transform: rotate(-40deg);
}

.p-models__spollers--title:hover {
  text-decoration: underline;
}

.p-models__spollers--body {
  position: relative;
  padding: 0.25rem 0rem 0.75rem 1.6875rem;
}

.p-models__spollers--body::before {
  content: "";
  position: absolute;
  display: block;
  background: #D9D9D9 repeat-y;
  width: 0.125rem;
  height: calc(100% - 17px);
  top: 4px;
  left: 10.5px;
  border-radius: 9.5px;
  z-index: 2;
}

.p-models__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 0.5rem;
}

.p-models__item {
  position: relative;
}

.p-models__item:last-child::before {
  content: "";
  position: absolute;
  display: block;
  background: #6D6E70 repeat-y;
  width: 0.0625rem;
  height: 0.9375rem;
  left: -16px;
  bottom: -10px;
}

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

.p-models__item.active {
  color: var(--accent);
}

.p-models__link {
  display: block;
  font-size: 0.8125rem;
  font-weight: 500;
}

/* ------- Секция услуг ------- */

.options__wrapper {
  padding: 3.9375rem 0rem 4.3125rem 0rem;
}

.options__list {
  max-width: 95.3125rem;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (2fr)[2];
  grid-template-columns: repeat(2, 2fr);
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 0.8125rem 2.8125rem;
  margin: 0 auto;
}

.options__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  padding: 1.375rem 2.625rem 1.375rem 0.6875rem;
}

.options__icon {
  margin-right: 1.625rem;
}

.options__text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.options__title {
  font-size: 2.25rem;
  font-weight: 500;
  margin-bottom: 0.9375rem;
  text-transform: uppercase;
}

.options__description {
  color: rgba(242, 242, 242, 0.7);
  font-size: 1rem;
  line-height: 20px;
}

.options__additional {
  max-width: 1520px;
  margin: 0 auto 1.875rem;
  border-right: 18px solid var(--accent);
}

.options__additional .options__title {
  color: rgba(255, 255, 255, 0.5);
  font-size: 4rem;
  margin-bottom: 2.75rem;
  text-transform: none;
}

.options__additional .options__text {
  width: 67.9375rem;
}

.options__more {
  margin-top: 1.6875rem;
  text-decoration: underline;
}

/* ------- Секция галерея ------- */

.gallery__title {
  color: rgba(255, 255, 255, 0.5);
  font-size: 8rem;
  font-weight: 500;
  margin-bottom: 2.75rem;
  padding-left: 11.75rem;
}

.gallery-block {
  position: relative;
  max-width: 116.5rem;
  padding: 0rem 6.6875rem 4.0625rem;
}

.gallery__slide img {
  width: inherit;
}

.gal-prev,
.gal-next {
  position: absolute;
  width: 4rem;
  height: 4rem;
  top: 40%;
  -webkit-transform: translate(0, -50%);
      -ms-transform: translate(0, -50%);
          transform: translate(0, -50%);
  z-index: 2;
}

.gal-prev::before,
.gal-prev::after,
.gal-next::before,
.gal-next::after {
  content: "";
  position: absolute;
  display: block;
  background-color: #929496;
  width: 1.25rem;
  height: 0.125rem;
  left: 24px;
  -webkit-transition: -webkit-transform 0.5s ease 0s;
  transition: -webkit-transform 0.5s ease 0s;
  transition: transform 0.5s ease 0s;
  transition: transform 0.5s ease 0s, -webkit-transform 0.5s ease 0s;
}

.gal-prev::before,
.gal-next::before {
  top: 24px;
  -webkit-transform: rotate(-45deg);
      -ms-transform: rotate(-45deg);
          transform: rotate(-45deg);
}

.gal-prev::after,
.gal-next::after {
  bottom: 24px;
  -webkit-transform: rotate(45deg);
      -ms-transform: rotate(45deg);
          transform: rotate(45deg);
}

.gal-prev {
  left: 28px;
}

.gal-next {
  right: 28px;
  -webkit-transform: translate(0, -50%) rotate(180deg);
      -ms-transform: translate(0, -50%) rotate(180deg);
          transform: translate(0, -50%) rotate(180deg);
}

/* ------- Страница Услуги ------- */

/* ------- Верхнее меню ------- */

.service-menu__list {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 2.9375rem 2.5rem;
  padding: 1.6875rem 0rem 1.0625rem 3.5rem;
  background-color: #131313;
}

.service-menu__item {
  max-width: 10rem;
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

.service-menu__item:hover {
  cursor: pointer;
}

.service-menu__item:hover .service-menu__link {
  text-decoration: underline;
}

.service-menu__link {
  display: block;
  font-size: 1rem;
  font-weight: 500;
  line-height: 20px;
}

/* ------- Верхнее меню ------- */

#opKey .services-options__wrapper {
  gap: 4.125rem;
  padding: 4.6875rem 0rem 0rem 8.125rem;
}

#opKey .services-options--top {
  margin-top: -1.5625rem;
  margin-bottom: 1rem;
}

#opKey .services-options__image {
  max-width: 48rem;
  max-height: 32.6875rem;
}

#opKey .description {
  max-width: 37.5625rem;
  margin-left: 8.625rem;
}

#opRus {
  margin-top: -2.25rem;
}

#opRus .services-options__wrapper {
  gap: 5.5625rem;
  padding: 8.0625rem 8.6875rem 3.375rem 5.875rem;
}

#opRus .services-options--top {
  gap: 3.1875rem;
  margin-top: -1.5rem;
  margin-bottom: 2.125rem;
}

#opRus .services-options__image {
  max-width: 47.4375rem;
  max-height: 33.25rem;
}

#opRus .title {
  word-break: break-all;
}

#opRus .description {
  max-width: 46.8125rem;
}

#opCrash .services-options__wrapper {
  position: relative;
  gap: 7.5625rem;
  padding: 17.75rem 0rem 6.5rem 8.125rem;
}

#opCrash .services-options__wrapper::after {
  content: "";
  position: absolute;
  display: block;
  background-image: url(./assets/images/dots.png);
  width: 24.5rem;
  height: 6rem;
  top: 104px;
  right: 222px;
}

#opCrash .services-options--top {
  margin-top: -2rem;
}

#opCrash .services-options__image {
  max-width: 46.1875rem;
  max-height: 31.9375rem;
}

#opCrash .description {
  max-width: 37.25rem;
  margin-left: 8.625rem;
}

#opChip .services-options__wrapper {
  padding: 6.6875rem 0rem 6.6875rem 8.9375rem;
}

#opChip .services-options__col:first-child {
  z-index: 2;
}

#opChip .services-options__col:nth-child(2) {
  color: var(--primary);
  width: 73%;
  margin: -6.6875rem 0rem -6.6875rem -18.4375rem;
  padding-right: 8.6875rem;
  background: var(--secondary);
}

#opChip .services-options--top {
  width: 100%;
  gap: 1.25rem;
  margin-top: 1.3125rem;
  margin-bottom: 3.5rem;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding-left: 21.5625rem;
}

#opChip .services-options--bottom {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

#opChip .services-options__image {
  max-width: 47.375rem;
  max-height: 32.6875rem;
  border-right: none;
  border-left: 26px solid var(--accent);
}

#opChip .icon {
  background: var(--primary);
}

#opChip .description {
  padding-left: 21.5625rem;
}

#opDiagnos {
  position: relative;
  z-index: 2;
}

#opDiagnos .services-options__wrapper {
  gap: 8.75rem;
  padding: 3.625rem 0rem 0rem 5.875rem;
}

#opDiagnos .services-options__image {
  max-width: 46.25rem;
  max-height: 31.9375rem;
  margin-top: 9.25rem;
}

#opDiagnos .title {
  word-break: break-all;
}

#opDiagnos .description {
  max-width: 38.25rem;
  margin-left: 8.625rem;
}

#opEl {
  margin-top: -10.875rem;
}

#opEl .services-options__wrapper {
  gap: 3.8125rem;
  margin-bottom: 8.1875rem;
  padding: 10.875rem 0rem 3.0625rem 5.875rem;
}

#opEl .services-options__col:first-child {
  z-index: 2;
}

#opEl .services-options__col:nth-child(2) {
  width: 53%;
  color: var(--primary);
  margin: -10.875rem 0rem -4.5625rem 0rem;
  padding: 13.1875rem 8.6875rem 4.375rem 2.75rem;
  background: var(--secondary);
}

#opEl .services-options--top {
  gap: 5rem;
  margin-bottom: 0.75rem;
}

#opEl .services-options__image {
  max-width: 49.0625rem;
  max-height: 33.875rem;
  margin-top: 0.6875rem;
  border-right: none;
  border-left: 26px solid var(--accent);
}

#opEl .title {
  padding-left: 3.75rem;
}

#opEl .icon {
  background: var(--primary);
}

#opEl .description {
  max-width: 42.9375rem;
}

#opCorr .services-options__wrapper {
  color: var(--primary);
  gap: 2.625rem;
  padding: 2.1875rem 0rem 4.5rem 8.125rem;
  background: var(--secondary);
}

#opCorr .services-options__col:first-child {
  max-width: 50rem;
}

#opCorr .services-options--top {
  gap: 1.5625rem;
  margin-bottom: 2.125rem;
}

#opCorr .services-options__image {
  max-width: 46.25rem;
  max-height: 31.9375rem;
  margin-top: 0.1875rem;
}

#opCorr .icon {
  background: var(--primary);
}

#opCorr .title {
  font-size: 3.75rem;
  line-height: 73px;
  word-break: break-all;
}

#opCorr .description {
  max-width: 42.125rem;
  margin-left: 8.625rem;
}

#opEgr .services-options__wrapper {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding: 1.0625rem 0rem 4.0625rem 5.875rem;
}

#opEgr .services-options__col:nth-child(2) {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 4.75rem;
}

#opEgr .services-options--top {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding-bottom: 0.3125rem;
}

#opEgr .services-options__image {
  max-width: 50.8125rem;
  max-height: 33.875rem;
  border-right: none;
  border-left: 26px solid var(--accent);
}

#opEgr .title {
  font-size: 3.5625rem;
  margin-right: 5.4375rem;
}

#opEgr .description {
  width: 46.8125rem;
  margin-top: 5.3125rem;
}

#opTo .services-options__wrapper {
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 6.875rem;
  padding: 4.1875rem 0rem 0rem 0rem;
}

#opTo .services-options__col:first-child {
  color: var(--primary);
  margin: -4.1875rem -28.6875rem 0rem 0rem;
  padding: 0rem 23.875rem 7.75rem 12.25rem;
  background: var(--secondary);
}

#opTo .services-options__col:nth-child(2) {
  z-index: 2;
}

#opTo .services-options--top {
  margin: 4.375rem 0rem 3.875rem 0rem;
}

#opTo .services-options__image {
  max-width: 56.125rem;
  max-height: 31.9375rem;
}

#opTo .description {
  max-width: 38.9375rem;
}

#opRecov .services-options__wrapper {
  gap: 4.75rem;
  margin-bottom: 10.75rem;
  padding: 8.625rem 0rem 0rem 8.125rem;
}

#opRecov .services-options__col:first-child {
  width: 100%;
}

#opRecov .services-options--top {
  margin-bottom: 0.8125rem;
}

#opRecov .services-options__image {
  max-width: 55.25rem;
  max-height: 32.375rem;
  border-right: none;
  border-left: 26px solid var(--accent);
}

#opRecov .title {
  font-size: 3.75rem;
  line-height: 73px;
  margin-right: 3.625rem;
}

#opRecov .description {
  max-width: 46.25rem;
}

/* ------- Общие настройки опций ------- */

.services-options__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.services-options__wrapper.wblock {
  color: var(--primary);
  background: var(--secondary);
}

.services-options__image {
  border-right: 26px solid var(--accent);
}

.services-options__image img {
  width: 100%;
  height: 100%;
}

.services-options .icon {
  display: -ms-grid;
  display: grid;
  place-items: center;
  padding: 1.8125rem 1.5rem;
}

.services-options--top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.services-options .title {
  font-size: 3.4375rem;
  font-weight: 700;
  line-height: 89px;
  text-transform: uppercase;
}

.services-options .title span {
  color: var(--accent);
}

.services-options .description {
  font-size: 1rem;
  font-weight: 500;
  line-height: 20px;
}

.wblock .icon {
  background: var(--primary);
}

.wblock .services-options__image {
  border-right: none;
  border-left: 26px solid var(--accent);
}

/* ------- Общие настройки опций ------- */

/* ------- Страница Доставка ------- */

.delivery-top__container {
  position: relative;
}

.delivery-top__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0.75rem 0rem 0rem 0rem;
}

.delivery-top__wrapper .title {
  font-size: 2.1875rem;
  font-weight: 700;
  line-height: 43px;
  margin-bottom: 1.6875rem;
  text-align: center;
  text-transform: uppercase;
}

.delivery-top__wrapper .country {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 22.125rem;
}

.delivery-top__wrapper .country span {
  color: rgba(255, 255, 255, 0.6);
  font-size: 9rem;
  font-weight: 700;
  line-height: 176px;
  text-transform: uppercase;
}

.delivery-top__wrapper .country .slash {
  position: absolute;
  width: 5rem;
  height: 7.625rem;
  background: #666666;
  -webkit-transform: skewX(-35deg) translate(-70%, -50%);
      -ms-transform: skewX(-35deg) translate(-70%, -50%);
          transform: skewX(-35deg) translate(-70%, -50%);
  top: 50%;
  left: 50%;
}

.delivery-top__img {
  position: relative;
  width: 100%;
  margin-top: -6.875rem;
  z-index: 2;
}

/* ------- Страница Доставка Шаги ------- */

.steps {
  position: relative;
  margin-top: -7.5rem;
  z-index: 2;
}

.steps .subtitle {
  font-size: 2.3125rem;
  font-weight: 700;
  line-height: 45px;
  margin-bottom: 2.4375rem;
  text-transform: inherit;
}

.steps .step__container {
  position: relative;
}

.steps .step__wrapper {
  max-width: 77.0625rem;
  position: relative;
  margin: 0 auto;
}

.steps .step__block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 13.3125rem;
}

.steps .step__col--left {
  min-width: 13.875rem;
}

.steps .step__text img {
  width: 100%;
}

.steps .step__text--title {
  font-size: 3rem;
  font-weight: 700;
  line-height: 59px;
  margin-bottom: 1.375rem;
  text-transform: uppercase;
}

.steps .number {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  font-size: 10.4375rem;
  font-weight: 700;
  line-height: 204px;
}

.steps .number span {
  color: var(--accent);
  font-size: 3.125rem;
  font-weight: 700;
  line-height: 61px;
  text-transform: uppercase;
}

.steps .description {
  font-size: 1.3125rem;
  font-weight: 400;
  line-height: 26px;
  margin-bottom: 0rem;
  text-transform: initial;
}

.st1 {
  position: relative;
  margin-bottom: 2.9375rem;
}

.st1::before {
  content: "";
  position: absolute;
  display: block;
  width: 11.4375rem;
  height: 5.875rem;
  background: url("./assets/images/dots.png") no-repeat;
  left: -210px;
  bottom: 130px;
}

.st2 {
  margin-bottom: 1.25rem;
}

.st3 {
  position: relative;
}

.st3.step__block {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 0rem;
}

.st3 .step__row--top,
.st3 .step__row--bottom {
  z-index: 2;
}

.st3 .step__row--top {
  padding-top: 11.875rem;
}

.st3 img {
  position: absolute;
  width: auto;
  left: 50%;
  -webkit-transform: translate(-50%, 0);
      -ms-transform: translate(-50%, 0);
          transform: translate(-50%, 0);
}

.st3 .number {
  -webkit-box-orient: vertical;
  -webkit-box-direction: reverse;
      -ms-flex-direction: column-reverse;
          flex-direction: column-reverse;
}

.st3 .step__text {
  width: 56.875rem;
  margin: 0 0 0 auto;
}

.st3 .description {
  margin-bottom: 1.25rem;
}

.st3::before {
  content: "";
  position: absolute;
  display: block;
  width: 5.875rem;
  height: 5.875rem;
  background: url("./assets/images/dots.png") no-repeat;
  top: 460px;
  right: -190px;
}

.st4 {
  margin-top: -4.25rem;
  margin-bottom: 6.5rem;
}

.st4.step__block {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 0rem;
}

.st4 .number {
  -webkit-box-orient: vertical;
  -webkit-box-direction: reverse;
      -ms-flex-direction: column-reverse;
          flex-direction: column-reverse;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

.st4 .number span:first-child {
  color: var(--secondary);
  font-size: 3.125rem;
  line-height: 61px;
}

.st4 .number span:last-child {
  color: var(--secondary);
  font-size: 10.125rem;
  line-height: 197px;
  margin-bottom: 1.125rem;
  padding: 0rem 2.3125rem 0rem 2.3125rem;
  background: var(--accent);
}

.st4 img {
  width: 100%;
  max-height: 22.6875rem;
}

.st4 .step__row--top {
  position: relative;
}

.st4 .step__row--bottom {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1.6875rem;
  margin-top: -8.125rem;
}

.st4 .step__text--title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.st4 .step__text--title span {
  color: var(--accent);
}

/* ------- Страница Доставка Стоимость ------- */

.calculate__wrapper {
  margin-bottom: 7.5rem;
}

.calculate .calculate-title {
  font-size: 2.9375rem;
  font-weight: 700;
  line-height: 57px;
  margin-bottom: 6rem;
  text-transform: uppercase;
  text-align: center;
}

/* ------- Страница Доставка Свяжитесь ------- */

.qa__wrapper {
  max-width: 66.3125rem;
  margin: 0 auto 8.75rem;
}

.qa__block--orange {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 7rem;
  background-color: var(--accent);
}

.qa .block-text {
  width: 100%;
  max-width: 605px;
  padding: 3.8125rem 2.25rem 2.9375rem 2rem;
}

.qa .block-text h3 {
  font-size: 1.6875rem;
  font-weight: 600;
  line-height: 33px;
  margin-bottom: 1.1875rem;
  text-transform: uppercase;
}

.qa .block-text h2 {
  font-size: 2.5rem;
  font-weight: 800;
  line-height: 49px;
  text-transform: uppercase;
}

.qa .qa-block__phone {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-top: 2.875rem;
}

.qa .phone {
  color: var(--primary);
  font-size: 1.5625rem;
  font-weight: 700;
  line-height: 30px;
  padding: 1.25rem 1rem;
  text-align: center;
  background: var(--secondary);
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

.qa .phone:hover {
  text-decoration: underline;
}

.qa .phone:focus,
.qa .phone:active {
  color: var(--secondary);
  background-color: var(--primary);
  text-decoration: none;
}

.qa .qa-title {
  font-size: 1.5625rem;
  font-weight: 700;
  line-height: 30px;
  margin-bottom: 4.375rem;
  text-align: center;
  text-transform: uppercase;
}

.qa .faq-link {
  position: relative;
  display: block;
  color: var(--primary);
  width: 30.25rem;
  font-size: 2.25rem;
  font-weight: 700;
  line-height: 44px;
  margin: 0 auto;
  padding: 1.0625rem;
  text-align: center;
  background-color: var(--secondary);
}

.qa .faq-link i {
  position: absolute;
  display: block;
  width: 4.875rem;
  height: 100%;
  background-color: var(--accent);
  top: 0;
  right: 0;
}

.qa .faq-link i::before,
.qa .faq-link i::after {
  content: "";
  position: absolute;
  left: 50%;
  background-color: var(--secondary);
  width: 1.1875rem;
  height: 0.125rem;
  -webkit-transition: -webkit-transform 0.5s ease 0s;
  transition: -webkit-transform 0.5s ease 0s;
  transition: transform 0.5s ease 0s;
  transition: transform 0.5s ease 0s, -webkit-transform 0.5s ease 0s;
}

.qa .faq-link i::before {
  bottom: 31px;
  -webkit-transform: translate(-50%) rotate(-40deg);
      -ms-transform: translate(-50%) rotate(-40deg);
          transform: translate(-50%) rotate(-40deg);
}

.qa .faq-link i::after {
  top: 31px;
  -webkit-transform: translate(-50%) rotate(40deg);
      -ms-transform: translate(-50%) rotate(40deg);
          transform: translate(-50%) rotate(40deg);
}

/* ------- Страница Доставка История ------- */

.delivery-history .delivery__block {
  margin-bottom: 4.0625rem;
}

.delivery-history .delivery__block--title {
  font-size: 4.5rem;
  font-weight: 700;
  line-height: 88px;
  margin-bottom: 0.8125rem;
  text-align: center;
  text-transform: uppercase;
}

.delivery-history .delivery__block--text,
.delivery-history .delivery__block--link {
  font-size: 1.5rem;
  font-weight: 400;
  line-height: 29px;
  text-align: center;
}

.delivery-history .delivery__block--text {
  margin-bottom: 1.875rem;
}

.delivery-history .delivery__block--link {
  display: block;
  text-decoration: underline;
}

.delivery__wrapper {
  margin-bottom: 15.375rem;
}

.delivery__wrapper.swiper-wrapper {
  margin-bottom: 4.375rem;
}

.delivery__slide-info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 0.5rem;
  padding: 0.25rem 0.4375rem 0.4375rem;
  background-color: rgba(43, 43, 43, 0.4);
}

.delivery__slide--buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 1.875rem;
}

.delivery__slide--buttons .swiper-button-disabled::before,
.delivery__slide--buttons .swiper-button-disabled::after {
  background-color: #4F4F4F !important;
}

.delivery__slide--buttons .delivery-prev,
.delivery__slide--buttons .delivery-next {
  position: relative;
  width: 6.25rem;
  height: 6.25rem;
  background-color: rgba(43, 43, 43, 0.4);
}

.delivery__slide--buttons .delivery-prev::before,
.delivery__slide--buttons .delivery-prev::after,
.delivery__slide--buttons .delivery-next::before,
.delivery__slide--buttons .delivery-next::after {
  content: "";
  position: absolute;
  left: 50%;
  background-color: var(--secondary);
  width: 1.4375rem;
  height: 0.1875rem;
  -webkit-transition: -webkit-transform 0.5s ease 0s;
  transition: -webkit-transform 0.5s ease 0s;
  transition: transform 0.5s ease 0s;
  transition: transform 0.5s ease 0s, -webkit-transform 0.5s ease 0s;
}

.delivery__slide--buttons .delivery-prev::before,
.delivery__slide--buttons .delivery-next::before {
  bottom: 42px;
  -webkit-transform: translate(-50%) rotate(-40deg);
      -ms-transform: translate(-50%) rotate(-40deg);
          transform: translate(-50%) rotate(-40deg);
}

.delivery__slide--buttons .delivery-prev::after,
.delivery__slide--buttons .delivery-next::after {
  top: 42px;
  -webkit-transform: translate(-50%) rotate(40deg);
      -ms-transform: translate(-50%) rotate(40deg);
          transform: translate(-50%) rotate(40deg);
}

.delivery__slide--buttons .delivery-prev {
  -webkit-transform: rotate(-180deg);
      -ms-transform: rotate(-180deg);
          transform: rotate(-180deg);
}

.slide-info__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.slide-info__col {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.slide-info__col span {
  color: #D9D9D9;
  font-size: 0.6875rem;
  font-weight: 400;
  line-height: 13px;
}

.slide-info__col:not(:first-child) {
  text-align: end;
}

.car-model {
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 24px;
  text-transform: uppercase;
}

.car-price {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  color: var(--accent);
  font-size: 1.25rem;
  font-weight: 500;
  line-height: 24px;
}

.week-info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.week {
  font-size: 0.8125rem;
  font-weight: 500;
  line-height: 16px;
}

.car-price--auction {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

/* ------- Отдельная страница историия доставки ------- */

.delivery-page .delivery__slide {
  width: 23.8125rem;
}

.delivery-page__block {
  display: -ms-grid;
  display: grid;
  grid-template-columns: repeat(auto-fill, 381px);
  grid-gap: 3.125rem;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin: 0 5rem;
  padding-top: 3.125rem;
  padding-bottom: 7.1875rem;
}

/* ------- Страница FAQ ------- */

.faq__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 6.125rem;
  padding-top: 3.125rem;
  padding-bottom: 7.5rem;
  margin: 0rem 8.25rem 0rem 6.0625rem;
}

.faq__menu {
  position: sticky;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1.125rem;
  color: var(--primary);
  min-width: 24.4375rem;
  height: -webkit-max-content;
  height: -moz-max-content;
  height: max-content;
  padding: 1.4375rem 1.8125rem 1.4375rem 1.75rem;
  background-color: var(--secondary);
  border-left: 13px solid var(--accent);
  top: 50px;
}

.faq__item {
  font-size: 1.125rem;
  font-weight: 500;
  line-height: 22px;
}

.faq__item:hover {
  cursor: pointer;
  text-decoration: underline;
}

.faq__link {
  display: block;
}

.faq-answer__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 2rem;
}

.faq-answer__block {
  padding: 0.5625rem 0.3125rem 1.4375rem 3.25rem;
  background-color: rgba(12, 12, 12, 0.2);
  border: 1px solid #333333;
  border-radius: 7px;
}

.faq-answer__item--title {
  font-size: 1.5rem;
  font-weight: 900;
  line-height: 29px;
  margin-bottom: 1rem;
}

.faq-answer__item--description {
  font-size: 1.3125rem;
  font-weight: 400;
  line-height: 28px;
}

/* ------- Страница Калькулятор ------- */

.calculator__wrapper {
  max-width: 69.125rem;
  margin: 0 auto 9.875rem;
  padding-top: 4.625rem;
}

.contacts-block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 2.1875rem;
  width: 59rem;
  margin: 0 auto 16.0625rem;
  padding: 1.9375rem 2.4375rem 2.4375rem 2.4375rem;
  background-color: #EF7114;
}

.contacts-block .title {
  font-size: 2.5rem;
  font-weight: 800;
  line-height: 49px;
  margin: 0 auto;
  text-transform: uppercase;
}

.contacts-block .block-phone {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.contacts-block .phone {
  color: #828282;
  font-size: 2rem;
  font-weight: 600;
  line-height: 39px;
  padding: 1.0625rem 3.8125rem;
  background-color: var(--secondary);
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

.contacts-block .phone span {
  color: var(--primary);
}

.contacts-block .phone:hover {
  color: var(--primary);
  text-decoration: underline;
}

.contacts-block .phone:focus,
.contacts-block .phone:active {
  color: var(--secondary);
  background-color: var(--primary);
  text-decoration: none;
}

/* ------- Страница Запчасти ------- */

.spares__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 7.25rem;
  padding: 3.0625rem 0rem 14.0625rem 0rem;
  background: url(./assets/images/spares.jpg) no-repeat center;
  background-size: cover;
}

.spares__wrapper .title {
  color: var(--primary);
  font-size: 4rem;
  font-weight: 800;
  line-height: 78px;
  text-align: center;
  text-transform: uppercase;
}

.bamper-ad {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 3.6875rem;
  width: 100%;
  max-width: 50.3125rem;
  padding: 3.75rem 3.4375rem;
  background-color: var(--accent);
  margin: 0 auto;
}

.bamper-ad .title {
  color: var(--secondary);
  font-weight: 900;
  text-transform: none;
}

.bamper-ad .description {
  font-size: 1.5rem;
  font-weight: 600;
  line-height: 29px;
}

.spares-link__wrapper {
  padding: 10.25rem 0rem 3.625rem 0rem;
}

.spares-link__block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 2.1875rem;
}

.spares-link__slider {
  margin-bottom: 3.625rem;
}

.spares-link__slide {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 1.6875rem;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.spares-link__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  width: 32.5rem;
  height: 22.8125rem;
  background-repeat: no-repeat;
  background-size: 100%;
}

.spares-link__item span {
  display: block;
  padding: 1.3125rem 1.1875rem;
  font-size: 0.8125rem;
  font-weight: 500;
  line-height: 16px;
  background: rgba(0, 0, 0, 0.7);
}

.spares-link__nav {
  cursor: default;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1.875rem;
}

.spares-link__nav #numberSlides {
  font-size: 1.25rem;
  font-weight: 600;
}

.spares-link__nav .nav-btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1.875rem;
}

.spares-link__nav .nav-btn .swiper-button-disabled::before,
.spares-link__nav .nav-btn .swiper-button-disabled::after {
  background-color: #4F4F4F !important;
}

.spares-link__nav .nav-btn .spares-prev,
.spares-link__nav .nav-btn .spares-next {
  position: relative;
  width: 6.25rem;
  height: 6.25rem;
  background-color: rgba(43, 43, 43, 0.4);
}

.spares-link__nav .nav-btn .spares-prev::before,
.spares-link__nav .nav-btn .spares-prev::after,
.spares-link__nav .nav-btn .spares-next::before,
.spares-link__nav .nav-btn .spares-next::after {
  content: "";
  position: absolute;
  left: 50%;
  background-color: var(--secondary);
  width: 1.4375rem;
  height: 0.1875rem;
  -webkit-transition: -webkit-transform 0.5s ease 0s;
  transition: -webkit-transform 0.5s ease 0s;
  transition: transform 0.5s ease 0s;
  transition: transform 0.5s ease 0s, -webkit-transform 0.5s ease 0s;
}

.spares-link__nav .nav-btn .spares-prev::before,
.spares-link__nav .nav-btn .spares-next::before {
  bottom: 42px;
  -webkit-transform: translate(-50%) rotate(-40deg);
      -ms-transform: translate(-50%) rotate(-40deg);
          transform: translate(-50%) rotate(-40deg);
}

.spares-link__nav .nav-btn .spares-prev::after,
.spares-link__nav .nav-btn .spares-next::after {
  top: 42px;
  -webkit-transform: translate(-50%) rotate(40deg);
      -ms-transform: translate(-50%) rotate(40deg);
          transform: translate(-50%) rotate(40deg);
}

.spares-link__nav .nav-btn .spares-prev {
  -webkit-transform: rotate(-180deg);
      -ms-transform: rotate(-180deg);
          transform: rotate(-180deg);
}

/* ------- Страница Контакты ------- */

/* ------- Страница Контакты НОВАЯ ВЕРСИЯ ------- */

.contacts__container {
  position: relative;
}

.contacts__container .title {
  position: absolute;
  cursor: default;
  color: rgba(255, 255, 255, 0.3);
  font-size: 7.0625rem;
  font-weight: 700;
  line-height: 138px;
  text-transform: uppercase;
  top: 50%;
  right: 0;
  -webkit-writing-mode: tb;
      -ms-writing-mode: tb;
          writing-mode: tb;
  -webkit-transform: translate(0, -50%) rotate(180deg);
      -ms-transform: translate(0, -50%) rotate(180deg);
          transform: translate(0, -50%) rotate(180deg);
}

.contacts__container .subtitle {
  display: none;
  position: absolute;
  cursor: default;
  color: rgba(255, 255, 255, 0.3);
  font-size: 7.0625rem;
  font-weight: 700;
  line-height: 138px;
  text-transform: uppercase;
  top: 50%;
  right: 119px;
  -webkit-writing-mode: tb;
      -ms-writing-mode: tb;
          writing-mode: tb;
  -webkit-transform: translate(0, -50%) rotate(180deg);
      -ms-transform: translate(0, -50%) rotate(180deg);
          transform: translate(0, -50%) rotate(180deg);
}

.contacts__wrapper {
  position: relative;
  margin-left: 7rem;
  padding: 5.6875rem 0rem 10.6875rem 0rem;
}

.contacts__wrapper::after {
  content: "";
  position: absolute;
  display: block;
  width: 24.5rem;
  height: 5.875rem;
  background: url("./assets/images/dots.png") no-repeat;
  bottom: 28px;
  left: -112px;
}

.contacts__block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 5.8125rem;
  margin-right: 7.5625rem;
}

.contacts__block .contacts-map {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  max-width: 58.875rem;
  max-height: 34.1875rem;
}

.contacts-services__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -ms-flex-item-align: center;
      -ms-grid-row-align: center;
      align-self: center;
  gap: 5.625rem;
  width: 50%;
}

.contacts-services__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 2.1875rem;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
}

.contacts-services__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.contacts-services__title {
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 29px;
  margin-bottom: 0.875rem;
}

.contacts-services__phone {
  position: relative;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  color: #D0D1D3;
  font-size: 1rem;
  line-height: 20px;
  padding-bottom: 0.3125rem;
  margin-bottom: 0.875rem;
}

.contacts-services__phone span {
  color: var(--secondary);
  font-weight: 700;
}

.contacts-services__phone::after {
  content: "";
  position: absolute;
  display: block;
  width: 100%;
  height: 0.0625rem;
  background: #707070;
  bottom: 0;
}

.contacts-services__social {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.contacts-services__social-link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 2.6875rem;
  height: 2.6875rem;
  border-radius: 50%;
}

.contacts-services__social-link:focus,
.contacts-services__social-link:active,
.contacts-services__social-link:hover {
  background-color: var(--accent);
}

.contacts-address {
  font-size: 2.3125rem;
  font-weight: 700;
  line-height: 45px;
}

/* ------- Страница Оценка авто ------- */

.valuation__wrapper {
  max-width: 1383px;
  margin: 0 auto;
}

.valuation-title {
  position: relative;
  font-size: 2.5rem;
  font-weight: 900;
  line-height: 52px;
  margin-top: 2.5625rem;
  margin-bottom: 3.25rem;
  padding-left: 5.375rem;
  text-transform: uppercase;
}

.valuation-title span {
  color: var(--accent);
}

.valuation-title::after {
  content: "";
  position: absolute;
  width: 28.5rem;
  height: 0.5rem;
  background-color: var(--accent);
  bottom: -7px;
  left: 364px;
}

.damage__block {
  position: relative;
  margin-bottom: 6.25rem;
}

.damage__block::before {
  content: "";
  position: absolute;
  display: block;
  width: 20.8125rem;
  height: 5.875rem;
  background-image: url(./assets/images/dots.png);
  background-repeat: no-repeat;
  top: 0;
  left: 47px;
}

.damage__block::after {
  content: "";
  position: absolute;
  display: block;
  width: 5.875rem;
  height: 4.6875rem;
  background-image: url(./assets/images/dots.png);
  background-repeat: no-repeat;
  top: 0;
  right: 58px;
}

.damage__list {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 2.0625rem;
  padding-top: 2.5rem;
  padding-left: 7.5rem;
  z-index: 2;
}

.damage__item {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: end;
  max-width: 23.875rem;
  width: 100%;
  height: 8.125rem;
  padding: 0 15px 13px 14px;
  background-repeat: no-repeat;
  background-size: cover;
}

.damage__item span {
  font-size: 1.25rem;
  font-weight: 600;
  line-height: 24px;
}

.water {
  background-image: url(./assets/images/damage-water.jpg);
}

.flash {
  background-image: url(./assets/images/damage-flash.jpg);
}

.fire {
  background-image: url(./assets/images/damage-fire.jpg);
}

.inspecting__block {
  position: relative;
  margin-left: 2.9375rem;
  margin-bottom: 3.375rem;
  padding: 2.1875rem 6.5625rem 4.5625rem 6.125rem;
  background: linear-gradient(10deg, rgb(255, 109, 0) 0%, rgb(0, 0, 0) 50%, rgb(0, 0, 0) 100%);
  border-top: 12px solid var(--accent);
  border-right: 1px solid #D0D1D3;
  border-bottom: 1px solid #D0D1D3;
  border-left: 1px solid #D0D1D3;
}

.inspection-title {
  font-size: 2rem;
  font-weight: 700;
  line-height: 39px;
  margin-bottom: 4rem;
  text-transform: uppercase;
}

.inspecting__step {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  height: 14.0625rem;
  padding: 1.5625rem 0.5rem 0rem 0.5rem;
  margin-bottom: 6.125rem;
}

.inspecting__step .step {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 0;
      -ms-flex: 0 1 29%;
          flex: 0 1 29%;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  height: 100%;
}

.inspecting__step .step img {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}

.inspecting__step .step span {
  font-size: 1rem;
  font-weight: 500;
  line-height: 20px;
}

.inspecting__step .step:nth-child(2) {
  border-left: 1px solid #D0D1D3;
  border-right: 1px solid #D0D1D3;
}

.inspecting__step::after {
  display: none;
  content: "";
  position: absolute;
  width: 11.4375rem;
  height: 0.0625rem;
  margin-bottom: 0rem;
  background: #D0D1D3;
  bottom: 0;
  left: 50%;
  -webkit-transform: translate(-50%, 0);
      -ms-transform: translate(-50%, 0);
          transform: translate(-50%, 0);
}

.inspection-subtitle {
  font-size: 1.5rem;
  font-weight: 600;
  line-height: 29px;
}

.howworks__block {
  position: relative;
  margin-bottom: 4.8125rem;
  margin-left: 7.5rem;
}

.howworks__block::after {
  content: "";
  position: absolute;
  display: block;
  width: 11.4375rem;
  height: 5.875rem;
  background-image: url(./assets/images/dots.png);
  background-repeat: no-repeat;
  top: 0;
  right: 0;
}

.howworks-title {
  padding-top: 1.9375rem;
  font-size: 2rem;
  font-weight: 700;
  line-height: 39px;
  text-transform: uppercase;
}

.howworks-steps {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 0.9375rem;
  padding-top: 5.375rem;
}

.howworks-steps .step {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 0;
      -ms-flex: 0 1 24%;
          flex: 0 1 24%;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 14.1875rem;
  padding: 1.6875rem 1rem 2.125rem 1rem;
  background: #131313;
}

.howworks-steps .step span {
  position: absolute;
  font-size: 2.25rem;
  font-weight: 700;
  line-height: 44px;
  top: 2px;
  left: 16px;
}

.howworks-steps .step p {
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 17px;
}

.advantages-block {
  position: relative;
  margin-left: 2.9375rem;
  margin-bottom: 4.5625rem;
  padding: 3.375rem 3.8125rem 2.25rem 3.8125rem;
  background: radial-gradient(143.35% 120.07% at 0% -19%, rgb(255, 109, 0), rgb(0, 0, 0) 50%, rgb(0, 0, 0) 100%);
  border: 1px solid #D0D1D3;
}

.advantages-title {
  font-size: 2.25rem;
  font-weight: 700;
  line-height: 44px;
  margin-bottom: 3.5625rem;
  text-align: center;
  text-transform: uppercase;
}

.advantages-row {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.advantages-row:not(:last-child) {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 16.5625rem;
  padding-bottom: 4rem;
  border-bottom: 1px solid #D0D1D3;
}

.advantages-row:not(:last-child)::after {
  content: "";
  position: absolute;
  width: 0.0625rem;
  height: 157px;
  background: #D0D1D3;
  top: 16px;
}

.advantages-row:last-child {
  padding-top: 2.375rem;
}

.advantages-row:last-child .advantage-item:nth-child(2) {
  border-right: 1px solid #D0D1D3;
  border-left: 1px solid #D0D1D3;
}

.advantage-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 0;
      -ms-flex: 0 1 420px;
          flex: 0 1 420px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 10.75rem;
}

.advantage-item p {
  font-size: 1rem;
  font-weight: 500;
  line-height: 20px;
  padding: 0rem 1.25rem 0rem 1.25rem;
}

.contacts-wrapper {
  position: relative;
  padding-top: 10.9375rem;
  padding-bottom: 18.8125rem;
}

.contacts-wrapper::after {
  content: "";
  position: absolute;
  display: block;
  width: 11.4375rem;
  height: 5.875rem;
  background-image: url(./assets/images/dots.png);
  background-repeat: no-repeat;
  top: 0;
  left: 0;
}

.contacts-info {
  position: relative;
}

.contacts-info img {
  position: absolute;
  top: -107px;
  right: 44px;
  z-index: 1;
}

.contacts-info__text {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 2.875rem;
  max-width: 742px;
  margin-left: 13.6875rem;
  padding: 3.9375rem 3.9375rem 4.5625rem 3.1875rem;
  -webkit-backdrop-filter: blur(5px);
          backdrop-filter: blur(5px);
  background: radial-gradient(271.64% 259.05% at 0% -19%, rgba(255, 109, 0, 0.8), rgba(0, 0, 0, 0.8) 49.796%, rgba(0, 0, 0, 0.8) 100%);
  z-index: 2;
}

.contacts-info__text p {
  position: relative;
  font-size: 2rem;
  font-weight: 500;
  line-height: 39px;
  z-index: 4;
}

.contacts-info__text a {
  display: block;
  margin: 0 auto;
  padding: 1.5625rem 1.4375rem;
  font-size: 2rem;
  font-weight: 700;
  line-height: 39px;
  background: var(--accent);
  z-index: 4;
}

.contacts-info__text a span {
  color: #131313;
  font-weight: 500;
}

.contacts-info__text a:hover {
  text-decoration: underline;
}

.swiper {
  overflow: hidden;
}

.swiper-initialized {
  -ms-touch-action: pan-y;
      touch-action: pan-y;
}

.swiper-wrapper {
  width: 100%;
  height: 100%;
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.swiper-vertical .swiper-wrapper {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.swiper-autoheight .swiper-wrapper {
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

.swiper-initialized .swiper-slide {
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.swiper-button__wrapper {
  position: absolute;
  width: 189px;
  height: 108px;
  background-color: #131313;
  top: 0;
  right: 15px;
}

.swiper-button-prev,
.swiper-button-next {
  position: absolute;
  display: block;
  top: 50%;
  -webkit-transform: translate(0, -50%);
      -ms-transform: translate(0, -50%);
          transform: translate(0, -50%);
}

.swiper-button-prev svg,
.swiper-button-next svg {
  fill: #f2f2f2;
}

.swiper-button-prev {
  left: 30px;
}

.swiper-button-next {
  right: 30px;
}

.swiper-button-disabled svg {
  fill: rgba(242, 242, 242, 0.3);
}

.swiper-pagination-bullet-active {
  background: var(--secondary) !important;
}

.swiper-pagination-bullet-active img {
  -webkit-filter: invert(1);
          filter: invert(1);
}

.pag-bullet {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 188px;
  height: 108px;
}

.pag-bullet:hover {
  cursor: pointer;
}

.pag-top-bullet {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

@font-face {
  font-family: "lg";
  src: url(data:font/woff2;base64,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) format("woff2"), url(data:font/woff;base64,d09GRgABAAAAABLgAAsAAAAAEpQAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAABPUy8yAAABCAAAAGAAAABgDxIGIGNtYXAAAAFoAAAApAAAAKSI7DN0Z2FzcAAAAgwAAAAIAAAACAAAABBnbHlmAAACFAAADjgAAA44V8bBEWhlYWQAABBMAAAANgAAADYbqSuuaGhlYQAAEIQAAAAkAAAAJAeuA91obXR4AAAQqAAAAHAAAABwZgALDmxvY2EAABEYAAAAOgAAADonfiQgbWF4cAAAEVQAAAAgAAAAIAAmAI5uYW1lAAARdAAAAUoAAAFKqFVCHnBvc3QAABLAAAAAIAAAACAAAwAAAAMD7AGQAAUAAAKZAswAAACPApkCzAAAAesAMwEJAAAAAAAAAAAAAAAAAAAAARAAAAAAAAAAAAAAAAAAAAAAQAAA6QoDwP/AAEADwABAAAAAAQAAAAAAAAAAAAAAIAAAAAAAAwAAAAMAAAAcAAEAAwAAABwAAwABAAAAHAAEAIgAAAAeABAAAwAOAAEAIOAa4B3gM+Bw4JXg8uH/4g3jEugN6Qr//f//AAAAAAAg4BrgHeAz4HDglODy4f/iDOMR6A3pAP/9//8AAf/jH+of6B/TH5cfdB8YHgweABz9GAMXEQADAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAB//8ADwABAAAAAAAAAAAAAgAANzkBAAAAAAEAAAAAAAAAAAACAAA3OQEAAAAAAQAAAAAAAAAAAAIAADc5AQAAAAAEAFYAAQOqA1UAAwATACMAJwAAAREzEQcyNzY1NCcmIyIHBhUUFxYTMhcWFRQHBiMiJyY1NDc2ExEzEQIqVoCMZWVlZYyMZWVlZYywfX19fbCwfX19fTBWAQEBVP6srGVljIxlZWVljIxlZQMAfX2wsH19fX2wsH19/awBVP6sAAMAVgABA6oDVQAPAB8AIgAAJTI3NjU0JyYjIgcGFRQXFhMyFxYVFAcGIyInJjU0NzYTEQUCAIxlZWVljIxlZWVljLB9fX19sLB9fX19WgEAVWVljIxlZWVljIxlZQMAfX2wsH19fX2wsH19/ZYBgMAAAAAAAwBVAAADqwNVABQAKQA+AAABITIXFhURFAcGIyEiJyY1ETQ3NjMHERQXFjMhBgcGIyEiJyY1ETQ3NjclISIHBhURFBcWMyEyNzY1ETQnJiMBgAGrNSUmJiU1/lU1JiUlJjXVDA0RAiQOISEp/lU1JSYYGCYCgP5VEgwNDQwSAasRDQwMDREDVSUmNf5WNSYlJSY1Aao1JiWy/d0SDA0lGBgmJTUBqykhIQ1dDA0S/lYSDQwMDRIBqhIMDQABANYAgQMqAtUACwAAAQcXBycHJzcnNxc3Ayru7jzu7jzu7jzu7gKZ7u487u487u487u4AAQBVAFUDqwMAACIAAAEyFxYVFA8BITIXFhUUBwYjIRcWFRQHBiMiJwEmNTQ3ATYzAasRDQwM4gKZEgwNDQwS/WfiDAwNERIN/tYNDQEqDRIDAAwNEhIM4gwNERINDOIMEhIMDQ0BKg0SEQ0BKwwAAAEAVQBVA6sDAAAiAAABMhcBFhUUBwEGIyInJjU0PwEhIicmNTQ3NjMhJyY1NDc2MwJVEg0BKg0N/tYNEhIMDAzi/WcSDA0NDBICmeIMDAwSAwAM/tUMEhIN/tYNDQwSEgziDQwSEQ0M4gwSEwwMAAACAKoAKwNWAysAAwAKAAA3IRUhAQcnMxEzEaoCrP1UAgCqqoBUgVYBVqysAar+VgAJAKoAVQNWAwEAAwAHAAsADwATABcAGwAfACMAACU1MxUDNTMVATUzFTczFSMBNTMVITUzFQM1MxUzNTMVATUzFQKqrKys/lSsVKys/wCs/lSsrKxUrP5UrFWsrAEArKwBAKysrKz/AKysrKz/AKysrKwCAKysAAAEANYAgQMqAtUABQALABEAFwAAATMVIzUjEzUzFSM1ATUzFSMVHQEzFSM1AlbUVICAVNT+gNSAgNQC1dSA/lSA1FQBLNRUgKyAVNQABADWAIEDKgLVAAUACwARABcAAAEzFSM1MwM1MxUjFQE1MxUjNRE1MxUjNQKqgNRUVNSA/qxU1NRUAlVU1P2s1FSAAdSA1FT+rFTUgAAAAAADAIAAQQNqAysACwAbADIAAAEjFSM1IzUzNTMVMwcyNzY1NCcmIyIHBhUUFxYhFwcnNScGIyInJjU0NzYzMhcWFRQHFwIAVipWVipWalA4ODg4UFA4ODg4AVDUQNQMTGh0UVFRUXR0UFBCDAIBVlYqVlbWODhQUDg4ODhQUDg41EDUIgxCUFB0dFFRUVF0aEwMAAAAAwCAAEEDagMrAAMAEwAqAAABMxUjFzI3NjU0JyYjIgcGFRQXFiEXByc1JwYjIicmNTQ3NjMyFxYVFAcXASrW1mxQODg4OFBQODg4OAFQ1EDUDExodFFRUVF0dFBQQgwCKyqsODhQUDg4ODhQUDg41EDUIgxCUFB0dFFRUVF0aEwMAAAAAQCAAAMDgANVADMAACUyFhUUBiMiJjU8ATclDgEjIiY1NDYzMhYXJS4BNTQ2MzIWFRQGIyImJwUeARUUBgcFPgEDADNJSTMzSQL+0hIsGjRMSzUZLRIBLAEDSzU0TEs1GS0S/tQBAwICATAQLP1JMzNLSzMHDwawERFLNTRMEhCuBw8INExMNDVLExGwCA8HCA8HsA8RAAAEAK4AWQNWA4EAFAAaACAAJgAAARYXFhUUBwYHNTY3NjU0JyYnFSc3AzcWFxUmAxYXByYnNwYHIzY3Aip+V1dXV35cPT09PVzCwvw+LjxgcgogPDgMgiQIVgw6Av0QYGCCgmBgEFYQR0deXkdHEKa+wv0cPiIKVgwBHDowPEpcvjQ2WkwAAAAABACqAFkDUgOBAAUACwARACYAAAE2NzMGBwc2NxcGBwEjJic3FicHNQYHBhUUFxYXFSYnJjU0NzY3NQLQIgpWDDjkPC4+SGABKFYKIj46sMJcPT09PVx+V1dXV34BFy48XEosCiI+OAwBfDwuPEiMvqYQR0deXkdHEFYQYGCCgmBgEIQAAgCAAIEDgALVAAYADQAAAQc1ITUhNQEVIRUhFScDgKr+1AEs/lQBLP7UqgIrqoBUgP8AgFSAqgACANYAKwMqAysABgANAAABFyMRIxEjATMHJzMRMwGAqoBUgAHUgKqqgFQDK6r+1AEs/lSqqgEsAAIAFP/hA+wDuAAcADEAAAEiBw4BBwYVFBceARcWMzI3PgE3NjU0Jy4BJyYjEyMiBh0BMwcjFSM1IzUzNTQ2OwEVAgBmWVqFJycnJ4VaWWZmWVqFJycnJ4VaWWZ0SQcMXA1PV09PPC5JA7gmJ4VaWWZmWlmFJycnJ4VZWmZmWVqFJyb+rRALNkzk5EwtMEVRAAUAFP/hA+wDuAAcAFYAYgB1AIsAAAEiBw4BBwYVFBceARcWMzI3PgE3NjU0Jy4BJyYjAw4BIyoBMTAiIyImNTQ2OwEuATEqASMiJicuATU0NjczFRQGBw4BBx4BFRQGBw4BFRQWFx4BFRQGByUjFSM1IzUzNTMVMwUqASMOAQcOARUeATc+AScuASM3LgEjKgEHDgEHDgEXHgEzOgE3PgEnAgBmWVqFJycnJ4VaWWZmWVqFJycnJ4VaWWYcFy0JAgICAQ9pdRkBDgEBBAIKIBATE3cBdxwMBA4CFwwVDQkLDwsQJR4eAQJMNExMNEz+vwIEAhEfCwsLAjQjIysCAikhLQoeGAIFAwoPBQQBBAcjEwIFAxUWCQO4JieFWllmZlpZhScnJyeFWVpmZllahScm/UILBhxEQx0TIQUKDCodUh8BAwoHAQEBAgwnHCAlDAgNBwgQCQ8rIyMzDtNNTTNNTW4CDAoLGQ0bHQIDJRsZI8YgGAEDEA0NGg8bIwEGNx8AAAACABT/4QPsA7gAHABRAAABIgcOAQcGFRQXHgEXFjMyNz4BNzY1NCcuAScmIxMuAScOAQcmNjcmNhcWBw4BBwYXFjc+AScmJyYnJgYHBhceAQcuATc+ATc2FhcWBw4BBwYnAgBmWVqFJycnJ4VaWWZmWVqFJycnJ4VaWWYiGBsTCiAlDCYOFyovHAUFFQICJCYaGhcFBRciLS1NGBkIBBwSLB8CA2xAUoQLBgkJKyEiKwO4JieFWllmZlpZhScnJyeFWVpmZllahScm/aACFAs1XxtRgUAmaxMLHx9DHR0HBxsbUSsrGCIDAykoJzEYHSEKQC1LYQcJS0wsKitDFBMDAAAAAAIAFP/hA+wDuAAcAF4AAAEiBw4BBwYVFBceARcWMzI3PgE3NjU0Jy4BJyYjExwBFRQHDgEHBiMiJicyFjMyNjcuASceATMyNjcuAT0BHgEXLgE1NDY3HgEXLgE1NDYzMhYXPgE3DgEHPgE3DgEHAgBmWVqFJycnJ4VaWWZmWVqFJycnJ4VaWWbIEhJGMzNDKUshBgwGIj0ZIDEKBQkEBw0GIS0KFgwTGAcGJGc9AgE5KBUkDhAfDgUWDw4cDQkZDgO4JieFWllmZlpZhScnJyeFWVpmZllahScm/m4DBwMwMTFPGRkXFAEWEwEmHQEBAgEHNSMBBQYBDSsZDRkLLDcDBgsFKDkQDgMMCBEbCgIIBg8ZCgAAAAACAFgAAgOrA1UALgBWAAABNTwBNS4BJy4BJzAiMSMmBgcOAQcOARUUFhcHBhQXHgE/AR4BMzI2Nz4BNz4BNSMUBgcOAQcOASMiJicuAQ8BNzYmJy4BNTQ2Nz4BNz4BOwEeARceARcDqwU7MTOKUAIVLV0sJ0QbKjAREksDAwUgEeIlVC0sVSc9ZCEUF1YREBpPMR9DIydIHwgRCKM3AgEEEhAmIRY1ICJJIxM/bSgnLwMBwBUBAQFLhDM1QgQBFRcUNiI0gkgoVCnjBg4HEQ8FTBESExIcXkAoXTEnSR8zSxYODxIQBAEDNqIJEQcjSSM5ZikbKxASEAM0KihoOwAAAgBVAAADqwNVACYAQQAAAQcGFBcWMj8BFRQWMzI2NRE0JicuASc4ATEuAScuASMhIgYVFBYzATc2NCcmIg8BNTQmIyIGFREUFjMhMjY1NCYjAxniDAwNIwziGRISGQICAQUDAwcEAwkE/wASGRkS/mfiDAwNIwziGRISGRkSAQASGRkSAwDiDCQMDQ3imRIZGRIBAAQIBAQHAwMEAgIBGRESGf1V4g0jDA0N4ZkRGRkR/wASGRkSERkAAAACAGIADAOeA0kAJgBOAAABNzY0JyYiDwE1NCYjIgYVERQWFx4BFzgBMR4BFx4BMyEyNjU0JiMBNxUUFjMyNjURNCYnLgEnMDQxLgEnLgEjISIGFRQWOwEHBhQXFjI3ArziDQ0MJAziGRIRGQECAQUDAwcEBAgEAQASGRkS/UniGRIRGQECAQUDAwcEBAgE/wASGRkSmeINDQwkDAIr4gwjDQwM4pkSGRkS/wAECQMEBwMDBQECAhkSEhn94uGZERkZEQEABQgEAwcDAQMEAgECGRIRGeINIw0MDAAAAQAAAAIAAKwEdEFfDzz1AAsEAAAAAADcTnOMAAAAANxOc4wAAP/hA+wDuAAAAAgAAgAAAAAAAAABAAADwP/AAAAEAAAAAAAD7AABAAAAAAAAAAAAAAAAAAAAHAQAAAAAAAAAAAAAAAIAAAAEAABWBAAAVgQAAFUEAADWBAAAVQQAAFUEAACqBAAAqgQAANYEAADWBAAAgAQAAIAEAACABAAArgQAAKoEAACABAAA1gQAABQEAAAUBAAAFAQAABQEAABYBAAAVQQAAGIAAAAAAAoAFAAeAF4AmAD2ARABSAGAAZgB1AH6AiICbAKuAvoDPgOAA5wDuAQABMIFRAXQBlAGrgccAAAAAQAAABwAjAAJAAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAA4ArgABAAAAAAABAAIAAAABAAAAAAACAAcAgQABAAAAAAADAAIAdQABAAAAAAAEAAIAlgABAAAAAAAFAAsAVAABAAAAAAAGAAIAewABAAAAAAAKABoABgADAAEECQABAAQAAgADAAEECQACAA4AiAADAAEECQADAAQAdwADAAEECQAEAAQAmAADAAEECQAFABYAXwADAAEECQAGAAQAfQADAAEECQAKADQAIGxnAGwAZ0ZvbnQgZ2VuZXJhdGVkIGJ5IEljb01vb24uAEYAbwBuAHQAIABnAGUAbgBlAHIAYQB0AGUAZAAgAGIAeQAgAEkAYwBvAE0AbwBvAG4ALlZlcnNpb24gMi4wAFYAZQByAHMAaQBvAG4AIAAyAC4AMGxnAGwAZ2xnAGwAZ1JlZ3VsYXIAUgBlAGcAdQBsAGEAcmxnAGwAZwAAAAMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA=) format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: block;
}

.lg-icon {
  /* use !important to prevent issues with browser extensions that change fonts */
  font-family: "lg" !important;
  speak: never;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.lg-container {
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
}

.lg-next,
.lg-prev {
  background-color: rgba(0, 0, 0, 0.45);
  border-radius: 2px;
  color: #999;
  cursor: pointer;
  display: block;
  font-size: 22px;
  margin-top: -10px;
  padding: 8px 10px 9px;
  position: absolute;
  top: 50%;
  z-index: 1080;
  outline: none;
  border: none;
}

.lg-next.disabled,
.lg-prev.disabled {
  opacity: 0 !important;
  cursor: default;
}

.lg-next:hover:not(.disabled),
.lg-prev:hover:not(.disabled) {
  color: #fff;
}

.lg-single-item .lg-next,
.lg-single-item .lg-prev {
  display: none;
}

.lg-next {
  right: 20px;
}

.lg-next:before {
  content: "\e095";
}

.lg-prev {
  left: 20px;
}

.lg-prev:after {
  content: "\e094";
}

@-webkit-keyframes lg-right-end {
  0% {
    left: 0;
  }

  50% {
    left: -30px;
  }

  100% {
    left: 0;
  }
}

@keyframes lg-right-end {
  0% {
    left: 0;
  }

  50% {
    left: -30px;
  }

  100% {
    left: 0;
  }
}

@-webkit-keyframes lg-left-end {
  0% {
    left: 0;
  }

  50% {
    left: 30px;
  }

  100% {
    left: 0;
  }
}

@keyframes lg-left-end {
  0% {
    left: 0;
  }

  50% {
    left: 30px;
  }

  100% {
    left: 0;
  }
}

.lg-outer.lg-right-end .lg-object {
  -webkit-animation: lg-right-end 0.3s;
  animation: lg-right-end 0.3s;
  position: relative;
}

.lg-outer.lg-left-end .lg-object {
  -webkit-animation: lg-left-end 0.3s;
  animation: lg-left-end 0.3s;
  position: relative;
}

.lg-toolbar {
  z-index: 1082;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
}

.lg-media-overlap .lg-toolbar {
  background-image: -webkit-gradient(linear, left bottom, left top, from(rgba(0, 0, 0, 0)), to(rgba(0, 0, 0, 0.4)));
  background-image: linear-gradient(0deg, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.4));
}

.lg-toolbar .lg-icon {
  color: #999;
  cursor: pointer;
  float: right;
  font-size: 24px;
  height: 47px;
  line-height: 27px;
  padding: 10px 0;
  text-align: center;
  width: 50px;
  text-decoration: none !important;
  outline: medium none;
  will-change: color;
  -webkit-transition: color 0.2s linear;
  transition: color 0.2s linear;
  background: none;
  border: none;
  -webkit-box-shadow: none;
          box-shadow: none;
}

.lg-toolbar .lg-icon.lg-icon-18 {
  font-size: 18px;
}

.lg-toolbar .lg-icon:hover {
  color: #fff;
}

.lg-toolbar .lg-close:after {
  content: "\e070";
}

.lg-toolbar .lg-maximize {
  font-size: 22px;
}

.lg-toolbar .lg-maximize:after {
  content: "\e90a";
}

.lg-toolbar .lg-download:after {
  content: "\e0f2";
}

.lg-sub-html {
  color: #eee;
  font-size: 16px;
  padding: 10px 40px;
  text-align: center;
  z-index: 1080;
  opacity: 0;
  -webkit-transition: opacity 0.2s ease-out 0s;
  transition: opacity 0.2s ease-out 0s;
}

.lg-sub-html h4 {
  margin: 0;
  font-size: 13px;
  font-weight: bold;
}

.lg-sub-html p {
  font-size: 12px;
  margin: 5px 0 0;
}

.lg-sub-html a {
  color: inherit;
}

.lg-sub-html a:hover {
  text-decoration: underline;
}

.lg-media-overlap .lg-sub-html {
  background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0)), to(rgba(0, 0, 0, 0.6)));
  background-image: linear-gradient(180deg, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.6));
}

.lg-item .lg-sub-html {
  position: absolute;
  bottom: 0;
  right: 0;
  left: 0;
}

.lg-error-msg {
  font-size: 14px;
  color: #999;
}

.lg-counter {
  color: #999;
  display: inline-block;
  font-size: 16px;
  padding-left: 20px;
  padding-top: 12px;
  height: 47px;
  vertical-align: middle;
}

.lg-closing .lg-toolbar,
.lg-closing .lg-prev,
.lg-closing .lg-next,
.lg-closing .lg-sub-html {
  opacity: 0;
  -webkit-transition: -webkit-transform 0.08 cubic-bezier(0, 0, 0.25, 1) 0s, opacity 0.08 cubic-bezier(0, 0, 0.25, 1) 0s, color 0.08 linear;
  -webkit-transition: opacity 0.08 cubic-bezier(0, 0, 0.25, 1) 0s, color 0.08 linear, -webkit-transform 0.08 cubic-bezier(0, 0, 0.25, 1) 0s;
  transition: opacity 0.08 cubic-bezier(0, 0, 0.25, 1) 0s, color 0.08 linear, -webkit-transform 0.08 cubic-bezier(0, 0, 0.25, 1) 0s;
  transition: transform 0.08 cubic-bezier(0, 0, 0.25, 1) 0s, opacity 0.08 cubic-bezier(0, 0, 0.25, 1) 0s, color 0.08 linear;
  transition: transform 0.08 cubic-bezier(0, 0, 0.25, 1) 0s, opacity 0.08 cubic-bezier(0, 0, 0.25, 1) 0s, color 0.08 linear, -webkit-transform 0.08 cubic-bezier(0, 0, 0.25, 1) 0s;
}

body:not(.lg-from-hash) .lg-outer.lg-start-zoom .lg-item:not(.lg-zoomable) .lg-img-wrap,
body:not(.lg-from-hash) .lg-outer.lg-start-zoom .lg-item:not(.lg-zoomable) .lg-video-cont {
  opacity: 0;
  -ms-transform: scale3d(0.5, 0.5, 0.5);
  -webkit-transform: scale3d(0.5, 0.5, 0.5);
  transform: scale3d(0.5, 0.5, 0.5);
  will-change: transform, opacity;
  -webkit-transition: -webkit-transform 250ms cubic-bezier(0, 0, 0.25, 1) 0s, opacity 250ms cubic-bezier(0, 0, 0.25, 1) !important;
  -webkit-transition: opacity 250ms cubic-bezier(0, 0, 0.25, 1), -webkit-transform 250ms cubic-bezier(0, 0, 0.25, 1) 0s !important;
  transition: opacity 250ms cubic-bezier(0, 0, 0.25, 1), -webkit-transform 250ms cubic-bezier(0, 0, 0.25, 1) 0s !important;
  transition: transform 250ms cubic-bezier(0, 0, 0.25, 1) 0s, opacity 250ms cubic-bezier(0, 0, 0.25, 1) !important;
  transition: transform 250ms cubic-bezier(0, 0, 0.25, 1) 0s, opacity 250ms cubic-bezier(0, 0, 0.25, 1), -webkit-transform 250ms cubic-bezier(0, 0, 0.25, 1) 0s !important;
}

body:not(.lg-from-hash) .lg-outer.lg-start-zoom .lg-item:not(.lg-zoomable).lg-complete .lg-img-wrap,
body:not(.lg-from-hash) .lg-outer.lg-start-zoom .lg-item:not(.lg-zoomable).lg-complete .lg-video-cont {
  opacity: 1;
  -ms-transform: scale3d(1, 1, 1);
  -webkit-transform: scale3d(1, 1, 1);
  transform: scale3d(1, 1, 1);
}

.lg-group:after {
  content: "";
  display: table;
  clear: both;
}

.lg-container {
  display: none;
  outline: none;
}

.lg-container.lg-show {
  display: block;
}

.lg-on {
  scroll-behavior: unset;
}

.lg-toolbar,
.lg-prev,
.lg-next,
.lg-pager-outer,
.lg-hide-sub-html .lg-sub-html {
  opacity: 0;
  will-change: transform, opacity;
  -webkit-transition: -webkit-transform 0.25s cubic-bezier(0, 0, 0.25, 1) 0s, opacity 0.25s cubic-bezier(0, 0, 0.25, 1) 0s;
  -webkit-transition: opacity 0.25s cubic-bezier(0, 0, 0.25, 1) 0s, -webkit-transform 0.25s cubic-bezier(0, 0, 0.25, 1) 0s;
  transition: opacity 0.25s cubic-bezier(0, 0, 0.25, 1) 0s, -webkit-transform 0.25s cubic-bezier(0, 0, 0.25, 1) 0s;
  transition: transform 0.25s cubic-bezier(0, 0, 0.25, 1) 0s, opacity 0.25s cubic-bezier(0, 0, 0.25, 1) 0s;
  transition: transform 0.25s cubic-bezier(0, 0, 0.25, 1) 0s, opacity 0.25s cubic-bezier(0, 0, 0.25, 1) 0s, -webkit-transform 0.25s cubic-bezier(0, 0, 0.25, 1) 0s;
}

.lg-show-in .lg-toolbar,
.lg-show-in .lg-prev,
.lg-show-in .lg-next,
.lg-show-in .lg-pager-outer {
  opacity: 1;
}

.lg-show-in.lg-hide-sub-html .lg-sub-html {
  opacity: 1;
}

.lg-show-in .lg-hide-items .lg-prev {
  opacity: 0;
  -webkit-transform: translate3d(-10px, 0, 0);
  transform: translate3d(-10px, 0, 0);
}

.lg-show-in .lg-hide-items .lg-next {
  opacity: 0;
  -webkit-transform: translate3d(10px, 0, 0);
  transform: translate3d(10px, 0, 0);
}

.lg-show-in .lg-hide-items .lg-toolbar {
  opacity: 0;
  -webkit-transform: translate3d(0, -10px, 0);
  transform: translate3d(0, -10px, 0);
}

.lg-show-in .lg-hide-items.lg-hide-sub-html .lg-sub-html {
  opacity: 0;
  -webkit-transform: translate3d(0, 20px, 0);
  transform: translate3d(0, 20px, 0);
}

.lg-outer {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  text-align: left;
  opacity: 0.001;
  outline: none;
  will-change: auto;
  overflow: hidden;
  -webkit-transition: opacity 0.15s ease 0s;
  transition: opacity 0.15s ease 0s;
}

.lg-outer * {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.lg-outer.lg-zoom-from-image {
  opacity: 1;
}

.lg-outer.lg-visible {
  opacity: 1;
}

.lg-outer.lg-css3 .lg-item:not(.lg-start-end-progress).lg-prev-slide,
.lg-outer.lg-css3 .lg-item:not(.lg-start-end-progress).lg-next-slide,
.lg-outer.lg-css3 .lg-item:not(.lg-start-end-progress).lg-current {
  -webkit-transition-duration: inherit !important;
  transition-duration: inherit !important;
  -webkit-transition-timing-function: inherit !important;
  transition-timing-function: inherit !important;
}

.lg-outer.lg-css3.lg-dragging .lg-item.lg-prev-slide,
.lg-outer.lg-css3.lg-dragging .lg-item.lg-next-slide,
.lg-outer.lg-css3.lg-dragging .lg-item.lg-current {
  -webkit-transition-duration: 0s !important;
  transition-duration: 0s !important;
  opacity: 1;
}

.lg-outer.lg-grab img.lg-object {
  cursor: -webkit-grab;
  cursor: -o-grab;
  cursor: -ms-grab;
  cursor: grab;
}

.lg-outer.lg-grabbing img.lg-object {
  cursor: move;
  cursor: -webkit-grabbing;
  cursor: -o-grabbing;
  cursor: -ms-grabbing;
  cursor: grabbing;
}

.lg-outer .lg-content {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

.lg-outer .lg-inner {
  width: 100%;
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  -webkit-transition: opacity 0s;
  transition: opacity 0s;
  white-space: nowrap;
}

.lg-outer .lg-item {
  will-change: transform, opacity;
  display: none !important;
}

.lg-outer .lg-item:not(.lg-start-end-progress) {
  background: url(data:image/gif;base64,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) no-repeat scroll center center transparent;
}

.lg-outer.lg-css3 .lg-prev-slide,
.lg-outer.lg-css3 .lg-current,
.lg-outer.lg-css3 .lg-next-slide {
  display: inline-block !important;
}

.lg-outer.lg-css .lg-current {
  display: inline-block !important;
}

.lg-outer .lg-item,
.lg-outer .lg-img-wrap {
  display: inline-block;
  text-align: center;
  position: absolute;
  width: 100%;
  height: 100%;
}

.lg-outer .lg-item:before,
.lg-outer .lg-img-wrap:before {
  content: "";
  display: inline-block;
  height: 100%;
  vertical-align: middle;
}

.lg-outer .lg-img-wrap {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  white-space: nowrap;
  font-size: 0;
}

.lg-outer .lg-item.lg-complete {
  background-image: none;
}

.lg-outer .lg-item.lg-current {
  z-index: 1060;
}

.lg-outer .lg-object {
  display: inline-block;
  vertical-align: middle;
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  position: relative;
}

.lg-outer .lg-empty-html.lg-sub-html,
.lg-outer .lg-empty-html .lg-sub-html {
  display: none;
}

.lg-outer.lg-hide-download .lg-download {
  opacity: 0.75;
  pointer-events: none;
}

.lg-outer .lg-first-slide .lg-dummy-img {
  position: absolute;
  top: 50%;
  left: 50%;
}

.lg-outer.lg-components-open:not(.lg-zoomed) .lg-components {
  -webkit-transform: translate3d(0, 0%, 0);
  transform: translate3d(0, 0%, 0);
  opacity: 1;
}

.lg-outer.lg-components-open:not(.lg-zoomed) .lg-sub-html {
  opacity: 1;
  -webkit-transition: opacity 0.2s ease-out 0.15s;
  transition: opacity 0.2s ease-out 0.15s;
}

.lg-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1040;
  background-color: #000;
  opacity: 0;
  will-change: auto;
  -webkit-transition: opacity 333ms ease-in 0s;
  transition: opacity 333ms ease-in 0s;
}

.lg-backdrop.in {
  opacity: 1;
}

.lg-css3.lg-no-trans .lg-prev-slide,
.lg-css3.lg-no-trans .lg-next-slide,
.lg-css3.lg-no-trans .lg-current {
  -webkit-transition: none 0s ease 0s !important;
  transition: none 0s ease 0s !important;
}

.lg-css3.lg-use-css3 .lg-item {
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.lg-css3.lg-fade .lg-item {
  opacity: 0;
}

.lg-css3.lg-fade .lg-item.lg-current {
  opacity: 1;
}

.lg-css3.lg-fade .lg-item.lg-prev-slide,
.lg-css3.lg-fade .lg-item.lg-next-slide,
.lg-css3.lg-fade .lg-item.lg-current {
  -webkit-transition: opacity 0.1s ease 0s;
  transition: opacity 0.1s ease 0s;
}

.lg-css3.lg-use-css3 .lg-item.lg-start-progress {
  -webkit-transition: -webkit-transform 1s cubic-bezier(0.175, 0.885, 0.32, 1.275) 0s;
  transition: -webkit-transform 1s cubic-bezier(0.175, 0.885, 0.32, 1.275) 0s;
  transition: transform 1s cubic-bezier(0.175, 0.885, 0.32, 1.275) 0s;
  transition: transform 1s cubic-bezier(0.175, 0.885, 0.32, 1.275) 0s, -webkit-transform 1s cubic-bezier(0.175, 0.885, 0.32, 1.275) 0s;
}

.lg-css3.lg-use-css3 .lg-item.lg-start-end-progress {
  -webkit-transition: -webkit-transform 1s cubic-bezier(0, 0, 0.25, 1) 0s;
  transition: -webkit-transform 1s cubic-bezier(0, 0, 0.25, 1) 0s;
  transition: transform 1s cubic-bezier(0, 0, 0.25, 1) 0s;
  transition: transform 1s cubic-bezier(0, 0, 0.25, 1) 0s, -webkit-transform 1s cubic-bezier(0, 0, 0.25, 1) 0s;
}

.lg-css3.lg-slide.lg-use-css3 .lg-item {
  opacity: 0;
}

.lg-css3.lg-slide.lg-use-css3 .lg-item.lg-prev-slide {
  -webkit-transform: translate3d(-100%, 0, 0);
  transform: translate3d(-100%, 0, 0);
}

.lg-css3.lg-slide.lg-use-css3 .lg-item.lg-next-slide {
  -webkit-transform: translate3d(100%, 0, 0);
  transform: translate3d(100%, 0, 0);
}

.lg-css3.lg-slide.lg-use-css3 .lg-item.lg-current {
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
  opacity: 1;
}

.lg-css3.lg-slide.lg-use-css3 .lg-item.lg-prev-slide,
.lg-css3.lg-slide.lg-use-css3 .lg-item.lg-next-slide,
.lg-css3.lg-slide.lg-use-css3 .lg-item.lg-current {
  -webkit-transition: -webkit-transform 1s cubic-bezier(0, 0, 0.25, 1) 0s, opacity 0.1s ease 0s;
  -webkit-transition: opacity 0.1s ease 0s, -webkit-transform 1s cubic-bezier(0, 0, 0.25, 1) 0s;
  transition: opacity 0.1s ease 0s, -webkit-transform 1s cubic-bezier(0, 0, 0.25, 1) 0s;
  transition: transform 1s cubic-bezier(0, 0, 0.25, 1) 0s, opacity 0.1s ease 0s;
  transition: transform 1s cubic-bezier(0, 0, 0.25, 1) 0s, opacity 0.1s ease 0s, -webkit-transform 1s cubic-bezier(0, 0, 0.25, 1) 0s;
}

.lg-container {
  display: none;
}

.lg-container.lg-show {
  display: block;
}

.lg-container.lg-dragging-vertical .lg-backdrop {
  -webkit-transition-duration: 0s !important;
  transition-duration: 0s !important;
}

.lg-container.lg-dragging-vertical .lg-css3 .lg-item.lg-current {
  -webkit-transition-duration: 0s !important;
  transition-duration: 0s !important;
  opacity: 1;
}

.lg-inline .lg-backdrop,
.lg-inline .lg-outer {
  position: absolute;
}

.lg-inline .lg-backdrop {
  z-index: 1;
}

.lg-inline .lg-outer {
  z-index: 2;
}

.lg-inline .lg-maximize:after {
  content: "\e909";
}

.lg-components {
  -webkit-transform: translate3d(0, 100%, 0);
  transform: translate3d(0, 100%, 0);
  will-change: transform;
  -webkit-transition: -webkit-transform 0.35s ease-out 0s;
  transition: -webkit-transform 0.35s ease-out 0s;
  transition: transform 0.35s ease-out 0s;
  transition: transform 0.35s ease-out 0s, -webkit-transform 0.35s ease-out 0s;
  z-index: 1080;
  position: absolute;
  bottom: 0;
  right: 0;
  left: 0;
}

.lg-outer .lg-thumb-outer {
  background-color: #0d0a0a;
  width: 100%;
  max-height: 350px;
  overflow: hidden;
  float: left;
}

.lg-outer .lg-thumb-outer.lg-grab .lg-thumb-item {
  cursor: -webkit-grab;
  cursor: -o-grab;
  cursor: -ms-grab;
  cursor: grab;
}

.lg-outer .lg-thumb-outer.lg-grabbing .lg-thumb-item {
  cursor: move;
  cursor: -webkit-grabbing;
  cursor: -o-grabbing;
  cursor: -ms-grabbing;
  cursor: grabbing;
}

.lg-outer .lg-thumb-outer.lg-dragging .lg-thumb {
  -webkit-transition-duration: 0s !important;
  transition-duration: 0s !important;
}

.lg-outer .lg-thumb-outer.lg-rebuilding-thumbnails .lg-thumb {
  -webkit-transition-duration: 0s !important;
  transition-duration: 0s !important;
}

.lg-outer .lg-thumb-outer.lg-thumb-align-middle {
  text-align: center;
}

.lg-outer .lg-thumb-outer.lg-thumb-align-left {
  text-align: left;
}

.lg-outer .lg-thumb-outer.lg-thumb-align-right {
  text-align: right;
}

.lg-outer.lg-single-item .lg-thumb-outer {
  display: none;
}

.lg-outer .lg-thumb {
  padding: 5px 0;
  height: 100%;
  margin-bottom: -5px;
  display: inline-block;
  vertical-align: middle;
}

.lg-outer .lg-thumb-item {
  cursor: pointer;
  float: left;
  overflow: hidden;
  height: 100%;
  border-radius: 2px;
  margin-bottom: 5px;
  will-change: border-color;
}

.lg-outer .lg-thumb-item.active,
.lg-outer .lg-thumb-item:hover {
  border-color: rgb(169, 7, 7);
}

.lg-outer .lg-thumb-item img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}

.lg-outer.lg-can-toggle .lg-item {
  padding-bottom: 0;
}

.lg-outer .lg-toggle-thumb:after {
  content: "\e1ff";
}

.lg-outer.lg-animate-thumb .lg-thumb {
  -webkit-transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
}

@media (min-width: 768px) {
  .lg-outer .lg-thumb {
    padding: 10px 0;
  }

  .lg-outer .lg-thumb-item {
    border-radius: 4px;
    border: 2px solid #fff;
    -webkit-transition: border-color 0.25s ease;
    transition: border-color 0.25s ease;
  }
}

@media (max-width: 1688.98px) {
  .header {
    font-size: 1rem;
  }
}

@media (max-width: 1347.98px) {
  .menu__item {
    padding: 0rem 0.625rem 0rem 0.625rem;
  }

  .header {
    font-size: 0.75rem;
  }
}

@media (max-width: 991.98px) {
  .swiper-button__wrapper {
    width: 115px;
    height: 70px;
  }

  .swiper-button-prev {
    left: 10px;
  }

  .swiper-button-next {
    right: 10px;
  }

  .pag-bullet {
    width: 115px;
    height: 70px;
  }

  .pag-top-bullet img {
    width: 70%;
  }
}

@media (max-width: 767.98px) {
  .swiper-button__wrapper {
	  height: 60px;
	  right: 0;
/*     display: none; */
  }

  .pag-bullet {
    width: 83px;
    height: 60px;
    background: rgba(43, 43, 43, 0.4);
  }
}

@media (max-width: 89.99875em) {
  .header__valuation {
    margin-right: 3.125rem;
  }

  .header {
    height: 6.25rem;
    font-size: 0.875rem;
  }

  .cars-models__list {
    right: 90px;
  }

  .about__container::after {
    display: none;
  }

  .gallery__title {
    padding-left: 5.625rem;
  }

  .service-menu__list {
    padding-left: 3.125rem;
    padding-right: 3.125rem;
  }

  .service-menu__list::before,
  .service-menu__list::after {
    content: "";
    position: absolute;
    display: block;
    width: calc(100% - 100px);
    height: 0.0625rem;
    background-color: #6D6E70;
    left: 50%;
    -webkit-transform: translate(-50%, 0);
        -ms-transform: translate(-50%, 0);
            transform: translate(-50%, 0);
  }

  .service-menu__list::before {
    display: none;
  }

  .service-menu__item {
    max-width: none;
  }

  #opKey .services-options__wrapper {
    gap: 0.625rem;
    padding: 2.625rem 3.25rem 3.25rem 1.5625rem;
  }

  #opKey .services-options--top {
    margin-top: 0rem;
  }

  #opKey .services-options--bottom {
    margin-bottom: 3.75rem;
  }

  #opKey .description {
    margin-left: 6.25rem;
  }

  #opRus .services-options__wrapper {
    gap: 6.25rem;
    padding: 3.3125rem 3.25rem 3.375rem 1.5625rem;
  }

  #opRus .services-options--top {
    margin-top: -1.75rem;
    margin-bottom: 1.4375rem;
  }

  #opRus .icon {
    margin-top: -1.625rem;
  }

  #opRus {
    margin-top: 0rem;
  }

  #opCrash .services-options__wrapper::after {
    width: 18.125rem;
    height: 4.375rem;
    top: 0;
  }

  #opCrash .services-options__wrapper {
    gap: 5.4375rem;
    padding: 1.8125rem 3.25rem 6.25rem 1.5625rem;
  }

  #opCrash .services-options--top {
    margin-top: 0rem;
  }

  #opCrash .services-options__image {
    margin-top: 77px;
  }

  #opCrash .description {
    margin-left: 6.25rem;
  }

  #opChip .services-options__wrapper {
    padding: 5.625rem 0rem 4.125rem 1.5625rem;
  }

  #opChip .services-options__col:nth-child(2) {
    margin: -5.625rem 0rem -4.125rem -14.5625rem;
    padding-right: 3.25rem;
  }

  #opChip .services-options--top {
    padding-left: 18.125rem;
  }

  #opChip .description {
    padding-left: 18.125rem;
  }

  #opDiagnos .services-options__wrapper {
    gap: 4.375rem;
    padding: 1.8125rem 3.25rem 2.875rem 1.5625rem;
  }

  #opDiagnos .services-options__image {
    margin-top: 3.8125rem;
  }

  #opDiagnos .description {
    margin-left: 6.25rem;
  }

  #opEl .services-options__wrapper {
    gap: 3rem;
    margin-bottom: 0rem;
    padding: 0rem 0rem 4.125rem 1.5625rem;
  }

  #opEl .services-options__col:nth-child(2) {
    width: 72%;
    padding: 1.4375rem 3.25rem 0rem 2.75rem;
    margin: -1.125rem 0rem -4.375rem -14.5625rem;
  }

  #opEl .services-options--top {
    padding-left: 8.125rem;
  }

  #opEl .services-options__image {
    max-width: 36.5rem;
    max-height: 25.0625rem;
  }

  #opEl .description {
    max-width: initial;
    padding-left: 11.875rem;
  }

  #opEl {
    margin-top: 0rem;
  }

  #opCorr .services-options__wrapper {
    padding: 1.8125rem 3.25rem 2.875rem 1.5625rem;
  }

  #opCorr .services-options__col:first-child {
    max-width: none;
  }

  #opCorr .title {
    font-size: 3.125rem;
    line-height: 63px;
    word-break: break-all;
  }

  #opEgr .services-options__wrapper {
    padding: 1.0625rem 3.25rem 4.0625rem 1.5625rem;
  }

  #opEgr .services-options--top {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }

  #opEgr .title {
    font-size: 2.5rem;
    line-height: 59px;
    margin-right: 1.25rem;
  }

  #opTo .services-options__wrapper {
    padding: 3.3125rem 3.25rem 3.375rem 1.5625rem;
  }

  #opTo .services-options__col:first-child {
    margin-top: -3.3125rem;
    padding-bottom: 5rem;
    padding-left: 4.375rem;
  }

  #opRecov .services-options__wrapper {
    padding: 3.3125rem 3.25rem 3.375rem 1.5625rem;
  }

  #opRecov .title {
    font-size: 3.125rem;
  }

  .services-options .icon {
    min-width: 6.0625rem;
    height: 6.5rem;
    padding: 0rem 0rem 0rem 0rem;
  }

  .services-options .icon img {
    width: 4.5625rem;
    height: 4.5625rem;
  }

  .services-options .title {
    font-size: 3.125rem;
    line-height: 63px;
  }

  .steps .step__block {
    gap: 8.75rem;
  }

  .steps {
    margin-top: -3.75rem;
  }

  .st1::before {
    left: -70px;
  }

  .st3 .step__text {
    width: 100%;
  }

  .st4 {
    margin-top: 0rem;
  }

  .contacts__wrapper {
    margin-left: 0;
  }

  .contacts__block {
    gap: 1.875rem;
    margin-right: 194px;
  }

  .valuation-title::after {
    left: 278px;
  }

  .valuation-title {
    padding-left: 0rem;
  }

  .damage__block::before {
    left: 0;
  }

  .damage__list {
    padding-left: 4.375rem;
  }

  .inspecting__block {
    padding: 2.1875rem 1.25rem 4.5625rem 1.25rem;
  }

  .inspecting__step {
    padding: 1.5625rem 0rem 0rem;
  }
}

@media (max-width: 89.99875em) and (max-width: 71.24875em) {
  .service-menu__list::before {
    display: block;
    top: 35%;
  }

  .service-menu__list::after {
    bottom: 30%;
  }
}

@media (max-width: 71.24875em) {
  .menu__item {
    padding: 0rem 0.4375rem;
  }

  .menu__link {
    padding-bottom: 1.25rem;
  }

  .header__valuation {
    margin-right: 0rem;
    padding: 0rem 1.25rem 1.25rem;
  }

  .header {
    height: 5rem;
    font-size: 0.75rem;
  }

  .footer-content {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }

  .footer-list:first-child {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }

  .footer-list:nth-of-type(2) {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
    width: 100%;
  }

  .footer-list:last-child {
    width: auto;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }

  .fr {
    width: 28%;
  }

  .footer-logo {
    margin: 0 auto;
  }

  .contacts-list__item {
    max-width: none;
    -webkit-box-flex: 1;
        -ms-flex: 1 0 40%;
            flex: 1 0 40%;
  }

  .contacts-list {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 20px;
    -webkit-box-pack: inherit;
        -ms-flex-pack: inherit;
            justify-content: inherit;
  }

  .contacts-list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 35px;
    font-size: 1rem;
  }

  .contacts-list .imp {
    -webkit-box-ordinal-group: 0;
        -ms-flex-order: -1;
            order: -1;
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }

  .cars-models__list {
    right: 0;
  }

  .why-list {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    row-gap: 42px;
    -ms-flex-pack: distribute;
        justify-content: space-around;
  }

  .why-item {
    width: 11.875rem;
    gap: 2.625rem;
  }

  .why-icon {
    width: 80px;
    height: 80px;
  }

  .why-icon img {
    width: 100%;
  }

  .p-models__title {
    font-size: 9.1875rem;
  }

  .p-models__pagination {
    width: 8.5rem;
    padding: 0rem 0.625rem 2.0625rem;
  }

  ._spoller-init .p-models__spollers--title::before {
    bottom: 12px;
  }

  ._spoller-init .p-models__spollers--title::after {
    top: 12px;
  }

  ._spoller-init .p-models__spollers--title._spoller-active {
    font-size: 0.75rem;
  }

  .p-models__spollers--title {
    font-size: 10px;
    padding: 0.625rem 0rem 0.625rem 1.6875rem;
  }

  .p-models__link {
    font-size: 0.625rem;
  }

  #opKey .services-options__wrapper {
    gap: 3.4375rem;
    padding: 2.625rem 1.25rem 3.25rem 6.6875rem;
  }

  #opKey .services-options--top {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
    gap: 4.875rem;
  }

  #opKey .description {
    margin-left: 0;
  }

  #opRus .services-options__wrapper {
    gap: 3.125rem;
  }

  #opCrash .services-options__wrapper::after {
    right: 87px;
  }

  #opCrash .services-options__wrapper {
    padding: 2.625rem 0rem 3.25rem 6.6875rem;
  }

  #opCrash .services-options--top {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
  }

  #opCrash .description {
    margin-left: 0;
  }

  #opDiagnos .services-options__wrapper {
    padding: 2.625rem 0rem 3.25rem 6.6875rem;
  }

  #opDiagnos .services-options--top {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
  }

  #opDiagnos .description {
    margin-left: 0;
  }

  .delivery-top__wrapper .country span {
    font-size: 7.75rem;
  }

  .st4 img {
    max-height: 16.4375rem;
  }

  .qa .block-pic img {
    max-width: 28.5rem;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }

  .faq__wrapper {
    margin: 0rem 0rem 8.6875rem 0rem;
  }

  .valuation-title::after {
    left: 95px;
  }

  .valuation-title {
    font-size: 1.875rem;
    line-height: 42px;
  }

  .damage__list {
    padding-left: 0rem;
  }
}

@media (max-width: 61.99875em) {
  .calc-btn {
    margin-bottom: 1.875rem;
  }

  .menu__body {
    position: fixed;
    width: 100%;
    height: 100%;
    left: -100%;
    top: 4.3125rem;
    overflow: auto;
    background: var(--bg-primary);
    padding: 0.5rem 1.875rem 0.9375rem 2.0625rem;
    -webkit-transition: left 0.3s;
    transition: left 0.3s;
    z-index: 999;
  }

  .menu-open .menu__body {
    left: 0;
  }

  .menu-open .menu__body::before {
    left: 0;
  }

  .menu__list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 20px;
    width: 33.125rem;
    margin: 0 auto;
    height: auto;
  }

  .menu__item {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    padding: 0.6875rem 0.5625rem 0.6875rem 0.9375rem;
    text-transform: uppercase;
    border: 1px solid #333333;
  }

  .menu__item .menu__link:nth-child(2) {
    border-left: 1px solid #6D6E70;
    padding-right: 1.875rem;
    padding-left: 1.5rem;
  }

  .menu__link {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    width: 100%;
    height: auto;
    padding: 0;
    font-size: 1.25rem;
  }

  .icon-menu {
    display: block;
    position: relative;
    width: 1.625rem;
    height: 1.0625rem;
    z-index: 5;
  }

  .icon-menu span,
  .icon-menu::before,
  .icon-menu::after {
    content: "";
    -webkit-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
    right: 0;
    position: absolute;
    width: 100%;
    height: 0.1875rem;
    background-color: #fff;
    border-radius: 16px;
  }

  .icon-menu::before {
    top: 0;
  }

  .icon-menu::after {
    bottom: 0;
  }

  .icon-menu span {
    top: calc(50% - 0.09375rem);
  }

  .menu-open .icon-menu span {
    width: 0;
  }

  .menu-open .icon-menu::before {
    top: calc(50% - 0.09375rem);
    -webkit-transform: rotate(-45deg);
        -ms-transform: rotate(-45deg);
            transform: rotate(-45deg);
  }

  .menu-open .icon-menu::after {
    bottom: calc(50% - 0.09375rem);
    -webkit-transform: rotate(45deg);
        -ms-transform: rotate(45deg);
            transform: rotate(45deg);
  }

  .menu-brands {
    display: none;
  }

  .menu-services {
    display: none;
  }

  .menu-about,
  .menu-contacts {
    display: block;
  }

  .menu-pair {
    display: block;
    font-size: 0.9375rem;
    font-weight: 500;
    text-transform: none;
  }

  .menu-valuation {
    display: block;
  }

  .spollers {
    display: -ms-grid;
    display: grid;
    gap: 15px;
  }

  .faq.spollers {
    display: none;
  }

  .spollers-car {
    gap: 7.5rem;
    -ms-grid-columns: 133px auto;
    grid-template-columns: 133px auto;
    -webkit-box-pack: initial;
        -ms-flex-pack: initial;
            justify-content: initial;
  }

  .header__menu {
    height: auto;
  }

  .header__logo .logo {
    width: 6.9375rem;
    height: 1.8125rem;
  }

  .header__info--wrapper {
    height: auto;
    -webkit-box-align: initial;
        -ms-flex-align: initial;
            align-items: initial;
    padding-bottom: 0;
  }

  .header__valuation {
    display: none;
  }

  .header__about {
    display: none;
  }

  .header__contacts {
    width: 2.125rem;
    height: 2.125rem;
    border-radius: 50%;
    padding: 0;
    font-size: 0;
    background-image: url("./assets/images/icons/phone.svg");
    background-repeat: no-repeat;
    background-position: center center;
  }

  .header {
    height: 4.3125rem;
  }

  .footer-content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 1.25rem;
    padding: 1.3125rem 0rem 3.6875rem 0rem;
  }

  .fr {
    width: auto;
  }

  .social-block__link {
    width: 2.3125rem;
    height: 2.3125rem;
    background-size: contain;
  }

  .address {
    margin-bottom: 0.9375rem;
  }

  .logos {
    position: initial;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin: 0 auto;
    -webkit-transform: translate(0, 0);
        -ms-transform: translate(0, 0);
            transform: translate(0, 0);
  }

  .footer-logo img {
    width: 100%;
  }

  .contacts-list__item:not(:last-child) {
    margin-right: 0;
  }

  .cars-models__item:not(:last-child) {
    margin-bottom: 0.625rem;
  }

  .cars-models__link {
    font-size: 16px;
    line-height: 15px;
  }

  .top-car__slide {
    height: 27.5rem;
  }

  .pagination__slider {
    padding-right: 2.5rem;
  }

  .about-title {
    font-size: 30px;
  }

  .about-text__block {
    max-width: 100%;
    padding-top: 0rem;
    margin-bottom: 0rem;
  }

  .about-subtitle {
    position: initial;
    color: rgba(255, 255, 255, 0.8);
    font-size: 3.9375rem;
    padding: 0 2.5625rem;
    margin-bottom: 0.5rem;
  }
	
  .about-video__controls {
    bottom: 230px;
  }

  .p-models__container {
    padding: 0;
  }

  .p-models__slide {
    height: 21.5625rem;
  }

  .p-models__title {
    color: var(--secondary);
    font-size: 3.8125rem;
    margin-top: 1.5625rem;
  }

  .p-models__pagination {
    display: none;
  }

  .options__list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }

  .gallery__title {
    font-size: 4rem;
    padding-left: 0rem;
  }

  .gallery-block {
    padding: 0rem 4rem 5rem;
  }

  .gal-prev,
  .gal-next {
    top: 30%;
  }

  .gal-prev {
    left: 0;
  }

  .gal-next {
    right: 0;
  }

  .service-menu__list {
    display: none;
  }

  #opKey .services-options__wrapper {
    gap: 1.25rem;
    padding: 0.5rem 0.9375rem 4.0625rem 0.9375rem;
  }

  #opKey .services-options--top {
    -webkit-box-orient: initial;
    -webkit-box-direction: initial;
        -ms-flex-direction: initial;
            flex-direction: initial;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    margin-top: 0rem;
  }

  #opKey .services-options--bottom {
    margin-bottom: 0rem;
  }

  #opKey .services-options__image {
    max-height: none;
    margin: 0 auto;
  }

  #opKey .description {
    max-width: none;
    margin-left: 0;
  }

  #opRus .services-options__wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    gap: 1.25rem;
    padding: 0.5rem 0.9375rem 1.625rem 0.9375rem;
  }

  #opRus .services-options--top {
    gap: 4.875rem;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
    margin-top: 0rem;
    margin-bottom: 0.9375rem;
  }

  #opRus .services-options__image {
    max-height: none;
    margin: 0 auto;
  }

  #opRus .icon {
    margin-top: 0rem;
  }

  #opRus .description {
    max-width: initial;
  }

  #opCrash .services-options__wrapper::after {
    display: none;
  }

  #opCrash .services-options__wrapper {
    gap: 1.25rem;
    padding: 0.5rem 0.9375rem 4.0625rem 0.9375rem;
  }

  #opCrash .services-options--top {
    gap: 4.875rem;
    -webkit-box-orient: initial;
    -webkit-box-direction: initial;
        -ms-flex-direction: initial;
            flex-direction: initial;
    -webkit-box-pack: initial;
        -ms-flex-pack: initial;
            justify-content: initial;
  }

  #opCrash .services-options__image {
    max-height: none;
    margin: 0 auto;
  }

  #opCrash .description {
    max-width: none;
  }

  #opChip .services-options__container {
    background: var(--secondary);
  }

  #opChip .services-options__wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    gap: 1.25rem;
    padding: 0.5rem 0.9375rem 1.625rem 0.9375rem;
  }

  #opChip .services-options__col:nth-child(2) {
    width: auto;
    margin: 0rem 0rem 0rem 0rem;
    padding-right: 0rem;
  }

  #opChip .services-options--top {
    gap: 4.875rem;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
    margin-top: 0rem;
    margin-bottom: 0.9375rem;
    padding-left: 0rem;
  }

  #opChip .services-options__image {
    max-height: none;
    margin: 0 auto;
  }

  #opChip .description {
    max-width: initial;
    padding-left: 0rem;
  }

  #opDiagnos .services-options__wrapper {
    gap: 1.25rem;
    padding: 0.5rem 0.9375rem 0rem 0.9375rem;
  }

  #opDiagnos .services-options--top {
    gap: 4.875rem;
    -webkit-box-orient: initial;
    -webkit-box-direction: initial;
        -ms-flex-direction: initial;
            flex-direction: initial;
    -webkit-box-pack: initial;
        -ms-flex-pack: initial;
            justify-content: initial;
  }

  #opDiagnos .services-options__image {
    max-height: none;
    margin: 0 auto;
  }

  #opDiagnos .description {
    max-width: none;
  }

  #opEl .services-options__wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    gap: 1.25rem;
    padding: 0.5rem 0.9375rem 1.625rem 0.9375rem;
  }

  #opEl .services-options__col:nth-child(2) {
    width: auto;
    color: inherit;
    margin: 0rem 0rem 0rem 0rem;
    padding: 0rem 0rem 0rem 0rem;
    background: var(--primary);
  }

  #opEl .services-options--top {
    gap: 5.4375rem;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
    padding-left: 0rem;
  }

  #opEl .services-options__image {
    max-width: 47.375rem;
    max-height: none;
    margin: 0 auto;
  }

  #opEl .title {
    padding-left: 0rem;
  }

  #opEl .description {
    padding-left: 0rem;
  }

  #opCorr .services-options--top {
    width: 100%;
    gap: 4.875rem;
  }

  #opCorr .services-options__image {
    position: absolute;
    width: 100%;
    height: 100%;
    max-height: 25.0625rem;
    left: 50%;
    -webkit-transform: translate(-50%, 0);
        -ms-transform: translate(-50%, 0);
            transform: translate(-50%, 0);
    margin-top: 0rem;
  }

  #opCorr .title {
    font-size: 2.6875rem;
    word-break: normal;
  }

  #opCorr .description {
    max-width: none;
    margin-left: 0rem;
  }

  #opEgr .services-options__wrapper {
    gap: 1.25rem;
    padding: 25.0625rem 0.9375rem 0rem 0.9375rem;
  }

  #opEgr .services-options__col:nth-child(2) {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    gap: 1.25rem;
  }

  #opEgr .services-options--top {
    gap: 4.875rem;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
  }

  #opEgr .services-options__image {
    max-height: none;
    margin: 0 auto;
  }

  #opEgr .title {
    margin-right: 0rem;
  }

  #opEgr .description {
    width: 100%;
    margin-top: 0rem;
  }

  #opTo .services-options__wrapper {
    gap: 0rem;
    padding: 0rem 0.9375rem 0rem 0.9375rem;
  }

  #opTo .services-options__col:first-child {
    margin: 0rem 0.75rem 0rem 0.75rem;
    padding: 0rem 1.4375rem 0rem 1.4375rem;
  }

  #opTo .services-options__col:nth-child(2) {
    margin-top: -5.5rem;
  }

  #opTo .services-options--top {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    margin: 1.3125rem 0rem 0.5rem 0rem;
  }

  #opTo .services-options__image {
    max-width: 80%;
    margin: 0 auto;
  }

  #opTo .description {
    max-width: 100%;
    margin-bottom: 6.375rem;
  }

  #opRecov .services-options__wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    gap: 1.25rem;
  }

  #opRecov .services-options__image {
    max-height: none;
    margin: 0 auto;
  }

  #opRecov .title {
    margin-right: 0rem;
  }

  #opRecov .description {
    max-width: 100%;
  }

  .services-options__container {
    padding: 0rem 0rem 0rem 0rem;
  }

  .services-options__wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }

  .services-options .title {
    font-size: 2.6875rem;
  }

  .delivery-top__wrapper .title {
    font-size: 1.75rem;
    line-height: 36px;
    padding: 0rem 3.75rem 0rem 3.75rem;
  }

  .delivery-top__wrapper .country span {
    font-size: 5.1875rem;
    line-height: 52px;
  }

  .delivery-top__wrapper .country .slash {
    width: 2.1875rem;
    height: 2.9375rem;
    -webkit-transform: skewX(-35deg) translate(-80%, -50%);
        -ms-transform: skewX(-35deg) translate(-80%, -50%);
            transform: skewX(-35deg) translate(-80%, -50%);
  }

  .delivery-top__wrapper .country {
    gap: 13.125rem;
  }

  .delivery-top__img {
    margin-top: -1.4375rem;
  }

  .steps .subtitle {
    display: none;
  }

  .steps .step__block {
    position: relative;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 0rem;
  }

  .steps .step__col--left {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
    gap: 1.6875rem;
    width: 100%;
    min-width: -webkit-fit-content;
    min-width: -moz-fit-content;
    min-width: fit-content;
  }

  .steps .step__text--title {
    position: absolute;
    font-size: 20px;
    line-height: 33px;
    margin-bottom: 0rem;
    top: 31px;
    left: 70px;
  }

  .steps .number span {
    font-size: 0.8125rem;
    line-height: 16px;
  }

  .steps .number {
    font-size: 2.5rem;
    line-height: 49px;
  }

  .st1::before {
    display: none;
  }

  .st3 .step__row--top {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding-top: 0;
  }

  .st3 .step__row--top span {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }

  .st3 img {
    display: none;
  }

  .st4 .number span:first-child {
    font-size: 1.875rem;
  }

  .st4 .number span:last-child {
    font-size: 2.5rem;
    line-height: 49px;
    margin-bottom: 0.1875rem;
    padding: 0rem 0.4375rem 0rem 0.4375rem;
  }

  .st4 img {
    max-height: none;
    margin-top: -4.5rem;
  }

  .st4 .step__row--bottom {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 0.625rem;
    margin-top: 0rem;
  }

  .st4 .step__text--title {
    font-size: 1.0625rem;
    line-height: 21px;
    top: 3px;
    left: 85px;
  }

  .st4 .description {
    margin-bottom: 2.375rem;
  }

  .st4 {
    margin: 0rem 0rem 0rem 0rem;
  }

  .calculate__wrapper {
    margin-bottom: 0rem;
  }

  .qa .qa-block__phone {
    gap: 1.25rem;
  }

  .qa .phone {
    width: 100%;
  }

  .qa .block-pic img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
    -o-object-position: 100%;
       object-position: 100%;
  }

  .delivery-page__block {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 1.25rem;
    margin: 0rem 0rem 3.625rem 0rem;
  }

  .faq__wrapper {
    gap: 3.3125rem;
  }

  .faq__menu {
    min-width: 21.25rem;
  }

  .contacts-block .block-phone {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 0.8125rem;
  }

  .contacts-block .phone {
    text-align: center;
  }

  .contacts-block {
    gap: 1.5625rem;
    width: 100%;
    margin: 0 auto 9.0625rem;
    padding: 1.375rem 2.625rem 3.1875rem;
  }

  .bamper-ad {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    width: 90%;
    margin: 0 auto;
  }

  .contacts__container .title {
    color: rgba(255, 255, 255, 0.8);
    font-size: 3.625rem;
    line-height: 71px;
    top: 0;
    -webkit-transform: rotate(180deg);
        -ms-transform: rotate(180deg);
            transform: rotate(180deg);
    right: 0;
  }

  .contacts__container .subtitle {
    display: block;
    font-size: 3.625rem;
    line-height: 71px;
    margin-bottom: 0rem;
    right: 0;
    bottom: 0;
    -webkit-transform: rotate(180deg);
        -ms-transform: rotate(180deg);
            transform: rotate(180deg);
  }

  .contacts__container .contacts-map {
    width: 100%;
    min-height: 27.9375rem;
    margin-bottom: 6rem;
  }

  .contacts__wrapper::after {
    width: 7.125rem;
    height: 3.0625rem;
    background-size: cover;
    top: 50%;
    left: calc(100% - 100px);
  }

  .contacts__wrapper {
    margin: 0rem 0rem 0rem 0rem;
    padding: 0rem 0rem 0rem 0rem;
  }

  .contacts__block {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    margin-right: 0rem;
    margin-bottom: 1.5625rem;
  }

  .contacts-services__wrapper {
    -ms-flex-item-align: start;
        align-self: flex-start;
    gap: 3.125rem;
    width: calc(100% - 71px);
  }

  .contacts-services__list {
    -ms-flex-item-align: start;
        align-self: flex-start;
  }

  .contacts-address {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    font-size: 1.5rem;
    line-height: 23px;
    text-align: right;
  }

  .inspecting__step .step:nth-child(2) {
    border: none;
  }

  .inspecting__step .step {
    -webkit-box-flex: 0;
        -ms-flex: 0 1 100%;
            flex: 0 1 100%;
    gap: 2.25rem;
  }

  .inspecting__step::after {
    display: block;
  }

  .inspecting__step {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 5rem;
    height: auto;
    margin-bottom: 2.1875rem;
    padding: 0rem 0rem 4.8125rem 0rem;
  }

  .howworks__block::after {
    display: none;
  }

  .howworks__block {
    margin: 0rem 0rem 2.8125rem 0rem;
  }

  .howworks-title {
    padding-top: 0rem;
    font-size: 1.5rem;
    line-height: 29px;
    text-align: center;
  }

  .howworks-steps .step p {
    color: #BFBFBF;
    font-size: 0.75rem;
    line-height: 15px;
  }

  .howworks-steps .step {
    -webkit-box-flex: 0;
        -ms-flex: 0 1 48%;
            flex: 0 1 48%;
    max-width: 200px;
    padding: 1.6875rem 0.875rem 1.8125rem 0.875rem;
  }

  .howworks-steps {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    padding-top: 1.625rem;
  }

  .advantages-block {
    margin: 0rem 0rem 4.5625rem 0rem;
  }

  .advantages-row:not(:last-child) {
    gap: 2.5rem;
  }

  .advantages-row:last-child {
    gap: 2.5rem;
  }

  .contacts-wrapper::after {
    display: none;
  }

  .contacts-info__text {
    gap: 1.6875rem;
    margin: 0 auto;
    padding: 1.625rem 2.0625rem;
  }
}

@media (max-width: 61.99875em) and (any-hover: none) {
  .icon-menu {
    cursor: default;
  }
}

@media (max-width: 47.99875em) {
  .calc-btn {
    display: none;
  }

  .menu__list {
    width: 100%;
  }

  .faq.spollers {
    display: -ms-grid;
    display: grid;
  }

  .spollers-car {
    gap: 4.375rem;
  }

  .subtitle {
    font-size: 1.625rem;
    margin-bottom: 2.5rem;
  }

  .breadcrumb {
    margin-bottom: 2.25rem;
    padding: 0rem 0.75rem;
    background-color: transparent;
  }

  .footer-content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding: 2.75rem 0 4.3125rem;
  }

  .footer-list:first-child {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -ms-flex-pack: distribute;
        justify-content: space-around;
    margin-bottom: 0rem;
  }

  .footer-list:first-child {
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }

  .footer-list:nth-of-type(2) {
    display: none;
  }

  .footer-list:last-child {
    -ms-flex-pack: distribute;
        justify-content: space-around;
    gap: 0rem;
  }

  .footer-list:last-child {
    -webkit-box-pack: unset;
        -ms-flex-pack: unset;
            justify-content: unset;
  }

  .social-block {
    margin-bottom: 0rem;
  }

  .address {
    display: none;
  }

  .footer-menu {
    display: none;
  }

  .logos {
    margin: 0;
  }

  .footer-logo {
    width: 11.25rem;
    margin: 0;
  }

  .footer-logo img {
    width: 100%;
  }

  .contacts-title {
    margin-bottom: 1.1875rem;
  }

  .contacts-list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 35px;
    font-size: 1rem;
  }

  .services-list {
    gap: 11px;
    font-size: 1rem;
  }

  .cars-models--preview {
    margin-bottom: 1.5rem;
  }

  .cars-models__list {
    max-width: 26.75rem;
    position: initial;
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 1fr;
    grid-template-columns: 1fr 1fr;
    grid-column-gap: 32px;
    grid-row-gap: 15px;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    height: auto;
    margin: 0 auto;
    border: none;
    -webkit-transform: none;
        -ms-transform: none;
            transform: none;
  }

  .cars-models__item:not(:last-child) {
    margin-bottom: 0rem;
  }

  .cars-models__link {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    height: 3rem;
    margin-left: 0;
    border: 1px solid #333333;
  }

  .cars-models__link.active {
    border: 1px solid var(--secondary);
  }

  .main-slider__container::after {
    display: none;
  }

  .main-slider__container {
    padding: 0;
  }

  .main-slider {
    margin-bottom: 1rem;
  }

  .top-car__slider {
    padding-bottom: 0rem;
  }

  .top-car__slide {
    height: auto;
  }

  .pagination__slider {
    width: inherit;
	margin-right: 120px;
	padding-right: 0;
  }

  .pagination__wrapper {
/*     padding: 0 0.9375rem; */
  }

  .about__container {
    padding: 0;
  }

  .about-wrapper {
    margin-bottom: 2.6875rem;
    padding-bottom: 0rem;
  }

  .about-title {
    font-size: 1rem;
    margin-bottom: 1.25rem;
  }

  .about-description {
    font-size: 0.8125rem;
    margin: 0;
    padding: 0 0.625rem 0 2.5625rem;
  }

  .about-video__controls {
    gap: 0.3125rem;
	bottom: 120px;  
  }

  .why::after {
    display: block;
  }

  .why-content {
    max-width: 100%;
    margin-bottom: 2.9375rem;
    padding-bottom: 3.375rem;
  }

  .why-list {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: auto auto;
    grid-template-columns: auto auto;
    -ms-grid-rows: auto auto;
    grid-template-rows: auto auto;
    row-gap: normal;
    min-height: 21.875rem;
  }

  .why-item:nth-child(1) {
    -ms-grid-column: 1;
    grid-column: 1;
    -ms-grid-row: 1;
    grid-row: 1;
  }

  .why-item:nth-child(2) {
    -ms-grid-column: 2;
    grid-column: 2;
    -ms-grid-row: 1;
    grid-row: 1;
  }

  .why-item:nth-child(3) {
    -ms-grid-column: 1;
    grid-column: 1;
    -ms-grid-row: 3;
    grid-row: 3;
  }

  .why-item:nth-child(4) {
    -ms-grid-column: 2;
    grid-column: 2;
    -ms-grid-row: 3;
    grid-row: 3;
  }

  .why-item:nth-child(5) {
    -ms-grid-column: 1;
    -ms-grid-column-span: 2;
    grid-column: 1/span 2;
    -ms-grid-row: 2;
    grid-row: 2;
    -ms-grid-column-align: center;
        justify-self: center;
    -ms-grid-row-align: center;
        align-self: center;
  }

  .why-item {
    max-width: 9.375rem;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    width: 100%;
    height: 100%;
    gap: 0.4375rem;
  }

  .why-icon {
    width: 3.625rem;
    height: 3.625rem;
  }

  .why-icon img {
    width: 100%;
  }

  .why-description {
    font-size: 0.75rem;
  }

  .reviews-title {
    margin-bottom: 1.25rem;
  }

  .reviews-widget .reviews-card {
    height: 34.6875rem;
  }

  .reviews-widget {
    margin-bottom: 8.5rem;
  }

  .p-models__container {
    padding: 0;
  }

  .options__wrapper {
    margin-bottom: 0.8125rem;
    padding: 0.375rem 1rem 0rem 1rem;
  }

  .options__item {
    position: relative;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding: 0;
  }

  .options__icon {
    width: 2.9375rem;
    height: 2.9375rem;
    margin-right: 1.25rem;
    margin-bottom: 0.6875rem;
  }

  .options__text {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    margin-bottom: 0.625rem;
  }

  .options__title {
    position: absolute;
    font-size: 0.8125rem;
    top: 22px;
    left: 66px;
    -webkit-transform: translate(0, -50%);
        -ms-transform: translate(0, -50%);
            transform: translate(0, -50%);
  }

  .options__description {
    color: var(--secondary);
    font-size: 0.875rem;
    line-height: 17px;
    padding-left: 1.5rem;
  }

  .options__additional .options__title {
    color: var(--secondary);
    font-size: 1.75rem;
    font-weight: 600;
    top: 22px;
    left: 84px;
    margin-bottom: 0rem;
  }

  .options__additional .options__text {
    width: 100%;
  }

  .options__additional {
    max-width: 100%;
    padding: 0.375rem 1rem 0rem 1rem;
    border-right: none;
  }

  .gallery__container {
    padding: 0rem;
  }

  .gallery__title {
    font-size: 2.5rem;
    margin-bottom: 1.5625rem;
    padding-left: 2.5rem;
  }

  .gallery-block {
    width: 100%;
    padding: 0rem 0rem 8.125rem;
  }

  .gallery__slider {
    width: auto;
  }

  .gallery__slide.swiper-slide-prev,
  .gallery .swiper-slide-next {
    -webkit-transform: scale(0.8);
        -ms-transform: scale(0.8);
            transform: scale(0.8);
  }

  .gal-prev,
  .gal-next {
    display: none;
  }

  #opKey .services-options--top {
    gap: 0.5rem;
  }

  #opRus .services-options--top {
    gap: 0.5rem;
    -webkit-box-orient: initial;
    -webkit-box-direction: initial;
        -ms-flex-direction: initial;
            flex-direction: initial;
    -webkit-box-pack: initial;
        -ms-flex-pack: initial;
            justify-content: initial;
  }

  #opRus .services-options__image {
    border-left: none;
    border-right: 12px solid var(--accent);
  }

  #opRus .title {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }

  #opRus {
    margin-top: 0rem;
  }

  #opCrash .services-options--top {
    gap: 0.5rem;
    margin-top: 0rem;
  }

  #opCrash .description {
    max-width: initial;
    margin-left: 0;
  }

  #opChip .services-options__col:nth-child(2) {
    width: auto;
    margin: 0rem 0rem 0rem 0rem;
    background: initial;
  }

  #opChip .services-options--top {
    gap: 0.5rem;
    -webkit-box-orient: initial;
    -webkit-box-direction: initial;
        -ms-flex-direction: initial;
            flex-direction: initial;
    -webkit-box-pack: initial;
        -ms-flex-pack: initial;
            justify-content: initial;
  }

  #opChip .services-options--bottom {
    padding: 0rem 0rem 0rem 0rem;
  }

  #opChip .services-options__image {
    width: 100%;
    height: 100%;
    border-left: none;
    border-right: 12px solid var(--accent);
  }

  #opChip .title {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }

  #opChip .description {
    max-width: initial;
  }

  #opDiagnos .services-options--top {
    gap: 0.5rem;
  }

  #opDiagnos .description {
    max-width: initial;
    margin-left: 0;
  }

  #opEl .services-options__col:nth-child(2) {
    color: inherit;
    margin: 0rem 0rem 0rem 0rem;
    padding: 0rem 0rem 0rem 0rem;
    background: var(--primary);
  }

  #opEl .services-options--top {
    gap: 0.5rem;
    -webkit-box-orient: initial;
    -webkit-box-direction: initial;
        -ms-flex-direction: initial;
            flex-direction: initial;
    -webkit-box-pack: initial;
        -ms-flex-pack: initial;
            justify-content: initial;
  }

  #opEl .services-options__image {
    width: 100%;
    height: 100%;
    margin-top: 0rem;
    border-left: none;
    border-right: 12px solid var(--accent);
  }

  #opEl .title {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }

  #opEl .description {
    max-width: initial;
    padding-left: 0rem;
  }

  #opCorr .services-options__wrapper {
    position: relative;
    gap: 1.25rem;
    padding: 0.5rem 0.9375rem 1.625rem 0.9375rem;
  }

  #opCorr .services-options--top {
    gap: 0.5rem;
  }

  #opCorr .services-options__image {
    position: absolute;
    width: 100%;
    height: 100%;
    max-width: 28.75rem;
    max-height: none;
    left: 50%;
    -webkit-transform: translate(-50%, 0);
        -ms-transform: translate(-50%, 0);
            transform: translate(-50%, 0);
    margin-top: 0rem;
  }

  #opCorr .title {
    font-size: 1.25rem;
    line-height: 24px;
  }

  #opCorr .description {
    max-width: 100%;
    margin-left: 0;
  }

  #opEgr .services-options__wrapper {
    padding: 15rem 0.9375rem 1.9375rem 0.9375rem;
  }

  #opEgr .services-options--top {
    gap: 0.5rem;
    -webkit-box-orient: initial;
    -webkit-box-direction: initial;
        -ms-flex-direction: initial;
            flex-direction: initial;
    -webkit-box-pack: initial;
        -ms-flex-pack: initial;
            justify-content: initial;
    padding: 0rem 0rem 0rem 0rem;
  }

  #opEgr .services-options__image {
    width: 100%;
    height: 100%;
    max-width: none;
    max-height: none;
    border-left: none;
    border-right: 12px solid var(--accent);
  }

  #opEgr .title {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
    font-size: 1.25rem;
    line-height: 24px;
    margin-right: 0rem;
  }

  #opTo .services-options__wrapper {
    padding: 0.5rem 0rem 2.5rem 0rem;
  }

  #opTo .services-options__col:first-child {
    width: auto;
    margin: 0rem 0.75rem 0rem 0.75rem;
    padding: 1.3125rem 1.4375rem 6.375rem 1.4375rem;
  }

  #opTo .services-options--top {
    margin: 0rem 0rem 1.125rem 0rem;
  }

  #opTo .services-options__image {
    border-left: none;
    border-right: 12px solid var(--accent);
  }

  #opTo .description {
    max-width: 100%;
    margin-bottom: 0.875rem;
  }

  #opRecov .services-options__wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    gap: 1.25rem;
    margin-bottom: 0rem;
    padding: 0.5rem 0.9375rem 6.6875rem 0.9375rem;
  }

  #opRecov .services-options__image {
    max-width: initial;
    max-height: initial;
    border-left: 12px solid var(--accent);
  }

  #opRecov .title {
    font-size: 1.25rem;
    line-height: 24px;
    margin-right: 0rem;
  }

  .services-options__image {
    border-right: 12px solid var(--accent);
  }

  .services-options .icon {
    width: 4.25rem;
    min-width: initial;
    height: 4.5625rem;
    padding: 0rem;
  }

  .services-options .icon img {
    width: 3rem;
    height: 3rem;
  }

  .services-options .title {
    font-size: 1.25rem;
    line-height: 24px;
  }

  .wblock .services-options__image {
    border-left: 12px solid var(--accent);
  }

  .delivery-top__wrapper .title {
    font-size: 1rem;
    line-height: 20px;
  }

  .delivery-top__wrapper .country span {
    color: var(--secondary);
    font-size: 2.6875rem;
    line-height: 52px;
  }

  .delivery-top__wrapper .country .slash {
    width: 1.5625rem;
    height: 2.3125rem;
  }

  .delivery-top__wrapper .country {
    gap: 6.875rem;
  }

  .delivery-top__img {
    min-width: 528px;
    padding-left: 2.8125rem;
    margin-top: -1.4375rem;
  }

  .steps .step__text--title {
    position: absolute;
    font-size: 1.25rem;
    line-height: 33px;
    margin-bottom: 0rem;
    top: 31px;
    left: 70px;
  }

  .steps .description {
    font-size: 0.9375rem;
    line-height: 18px;
    margin-bottom: 0.9375rem;
  }

  .steps {
    margin-top: 0rem;
  }

  .st1 {
    margin-bottom: 1.25rem;
  }

  .st3 .step__text {
    width: 100%;
  }

  .st3::before {
    display: none;
  }

  .st4 .number span:first-child {
    font-size: 1rem;
    line-height: 20px;
  }

  .calculate .calculate-title {
    font-size: 1.0625rem;
    line-height: 21px;
    margin-bottom: 2.6875rem;
  }

  .calculate .uCalc_316200 {
    margin-bottom: 9.375rem;
    padding: 0.3125rem 0rem 0.3125rem 0rem;
    border-top: 3px solid var(--secondary);
    border-bottom: 3px solid var(--secondary);
  }

  .qa__wrapper {
    margin: 0 auto 5rem;
  }

  .qa__block--orange {
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    width: 23.5rem;
    margin: 0 auto 1.875rem;
  }

  .qa .block-text h3 {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.8125rem;
    font-weight: 600;
    line-height: 16px;
    margin-bottom: 0.1875rem;
  }

  .qa .block-text h2 {
    font-size: 0.9375rem;
    line-height: 18px;
  }

  .qa .block-text {
    width: auto;
    padding: 0.625rem 1.3125rem 1.25rem 1.0625rem;
  }

  .qa .qa-block__phone {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 0.5625rem;
    margin-top: 0.9375rem;
  }

  .qa .phone {
    font-size: 0.9375rem;
    font-weight: 600;
    line-height: 18px;
    padding: 0.4375rem 2.5rem;
  }

  .qa .block-pic {
    width: 7.9375rem;
  }

  .qa .qa-title {
    font-size: 0.875rem;
    font-weight: 600;
    line-height: 17px;
    margin-bottom: 1.6875rem;
  }

  .qa .faq-link i::before,
  .qa .faq-link i::after {
    width: 0.6875rem;
  }

  .qa .faq-link i::before {
    bottom: 15px;
    border-radius: 10px;
  }

  .qa .faq-link i::after {
    top: 15px;
    border-radius: 10px;
  }

  .qa .faq-link i {
    width: 2.375rem;
  }

  .qa .faq-link {
    width: 14.75rem;
    font-size: 1.125rem;
    line-height: 22px;
    padding: 0.5rem;
  }

  .delivery-history .delivery__block {
    margin-bottom: 3.25rem;
  }

  .delivery-history .delivery__block--title {
    font-size: 1.5rem;
    font-weight: 800;
    line-height: 29px;
    margin-bottom: 0.5625rem;
  }

  .delivery-history .delivery__block--text {
    font-size: 0.8125rem;
    line-height: 16px;
    margin-bottom: 0.9375rem;
  }

  .delivery-history .delivery__block--link {
    font-size: 1rem;
    line-height: 20px;
  }

  .delivery__wrapper {
    margin-bottom: 7.5rem;
  }

  .delivery__wrapper.swiper-wrapper {
    margin-bottom: 0rem;
  }

  .delivery__slide {
    width: 16.1875rem !important;
  }

  .delivery__slide.swiper-slide-next .car-price,
  .delivery__slide.swiper-slide-prev .car-price {
    color: #D9D9D9;
  }

  .delivery__slide.swiper-slide-next .delivery__slide-pic,
  .delivery__slide.swiper-slide-prev .delivery__slide-pic {
    -webkit-filter: grayscale(100%) brightness(50%);
            filter: grayscale(100%) brightness(50%);
    -webkit-transition: 0.3s -webkit-filter linear;
    transition: 0.3s -webkit-filter linear;
    transition: 0.3s filter linear;
    transition: 0.3s filter linear, 0.3s -webkit-filter linear;
  }

  .delivery__slide-pic {
    width: 100%;
  }

  .delivery__slide--buttons {
    display: none;
  }

  .delivery-page .delivery__wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }

  .delivery-page .delivery__slide {
    width: 22.4375rem !important;
  }

  .faq__wrapper {
    padding: 0rem 0.75rem;
    margin: 0rem 0rem 8.6875rem 0rem;
  }

  .faq__menu {
    display: none;
  }

  .faq-answer__wrapper {
    display: none;
  }

  .calculator__wrapper {
    padding-top: 0;
    margin: 0 auto 3.5rem;
  }

  .contacts-block .title {
    font-size: 1.25rem;
    line-height: 24px;
  }

  .contacts-block .phone {
    font-size: 1.25rem;
    line-height: 24px;
    padding: 0.75rem 2.5rem;
    text-align: center;
  }

  .spares__container {
    padding: 0rem;
  }

  .spares__wrapper .title {
    font-size: 1.5rem;
    line-height: 29px;
  }

  .spares__wrapper {
    gap: 1.375rem;
    margin-top: 2.375rem;
    padding: 1rem 0rem 3rem 0rem;
    background-position: left;
  }

  .bamper-ad .title {
    font-size: 2rem;
    line-height: 39px;
  }

  .bamper-ad .description {
    font-size: 0.8125rem;
    line-height: 16px;
  }

  .bamper-ad {
    gap: 0.625rem;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    width: 18.9375rem;
    padding: 0.875rem 1rem 1.1875rem;
  }

  .spares-link__wrapper {
    padding: 1.875rem 0rem 8.8125rem 0rem;
  }

  .spares-link__slide {
    gap: 1.25rem;
  }

  .spares-link__item {
    width: 22.125rem;
    height: 14.625rem;
  }

  .spares-link__nav #numberSlides {
    font-size: 0.9375rem;
  }

  .spares-link__nav .nav-btn .spares-prev::before,
  .spares-link__nav .nav-btn .spares-prev::after,
  .spares-link__nav .nav-btn .spares-next::before,
  .spares-link__nav .nav-btn .spares-next::after {
    width: 1.0625rem;
  }

  .spares-link__nav .nav-btn .spares-prev::before,
  .spares-link__nav .nav-btn .spares-next::before {
    bottom: 11px;
  }

  .spares-link__nav .nav-btn .spares-prev::after,
  .spares-link__nav .nav-btn .spares-next::after {
    top: 11px;
  }

  .spares-link__nav .nav-btn .spares-prev,
  .spares-link__nav .nav-btn .spares-next {
    width: 2.5625rem;
    height: 2.1875rem;
  }

  .spares-link__nav {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
  }

  .contacts-services__list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 1.5625rem;
    width: 100%;
  }

  .valuation__wrapper {
    max-width: 100%;
  }

  .valuation-title::after {
    width: 14.5rem;
    left: 135px;
  }

  .valuation-title {
    font-size: 1.25rem;
    line-height: 26px;
    margin-bottom: 1.75rem;
  }

  .damage__block::before {
    display: none;
  }

  .damage__block::after {
    display: none;
  }

  .damage__list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 0.6875rem;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    padding-top: 0rem;
  }

  .damage__item {
    border: 1px solid #333333;
  }

  .inspecting__block {
    margin-left: 0;
    padding: 2.4375rem 1.75rem 3.875rem 1.75rem;
    border-right: 1px solid #454545;
    border-bottom: 1px solid #454545;
    border-left: 1px solid #454545;
    background-position: left 200px;
    background-repeat: no-repeat;
  }

  .inspection-title {
    font-size: 1rem;
    line-height: 20px;
    margin-bottom: 2.8125rem;
  }

  .inspecting__step .step span {
    font-size: 0.875rem;
    line-height: 17px;
    text-align: center;
  }

  .inspection-subtitle {
    font-size: 1rem;
    line-height: 20px;
  }

  .advantages-block {
    margin-bottom: 3.4375rem;
    padding: 1.375rem 1.375rem 6.3125rem 1.375rem;
    background: radial-gradient(259.54% 230.49% at -36% 3%, rgb(255, 109, 0), rgb(0, 0, 0) 50%, rgb(0, 0, 0) 100%);
  }

  .advantages-title {
    font-size: 1.25rem;
    line-height: 24px;
    margin-bottom: 1.25rem;
  }

  .advantages-row:not(:last-child)::after {
    display: none;
  }

  .advantages-row:not(:last-child) {
    border-bottom: none;
    padding-bottom: 2.5rem;
  }

  .advantages-row:last-child .advantage-item:nth-child(2) {
    border: none;
  }

  .advantages-row:last-child {
    padding-top: 0rem;
  }

  .advantages-row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }

  .advantage-item p {
    padding: 0rem 0rem 0rem 0rem;
  }

  .advantage-item {
    -webkit-box-flex: 1;
        -ms-flex: auto;
            flex: auto;
    gap: 0.9375rem;
    height: auto;
  }

  .contacts-wrapper {
    padding-top: 0rem;
    padding-bottom: 12.75rem;
  }

  .contacts-info img {
    position: static;
    max-height: 10.125rem;
  }

  .contacts-info {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    max-width: 361px;
    margin: 0 auto;
  }

  .contacts-info__text p {
    font-size: 0.9375rem;
    line-height: 18px;
  }

  .contacts-info__text a {
    padding: 0.6875rem 1.75rem;
    font-size: 1rem;
    line-height: 20px;
  }
}

@media (max-width: 29.99875em) {
  .cars-models__list {
    max-width: none;
    margin: auto;
    padding: 0 2.5625rem;
  }
	
  .about-video__controls {
	gap: 0.3125rem;
    bottom: 190px;
  }
	

  .options__wrapper {
    padding: 0.375rem 0rem 0rem 0rem;
  }

  .options__additional .options__title {
    font-size: 1.125rem;
    left: 66px;
  }

  .options__additional {
    padding: 0.375rem 0rem 0rem 0rem;
  }

  .howworks-steps .step {
    -webkit-box-flex: 0;
        -ms-flex: 0 1 47%;
            flex: 0 1 47%;
  }
}