@import url(https://fonts.googleapis.com/css2?family=Nunito+Sans:opsz,wght@6..12,400;6..12,500&family=Ubuntu:wght@500&display=swap);

@font-face {
  font-family: 'Gilroy';
  font-weight: 300; /* Light */
  src: local('Gilroy-Light'),
    url('/wp-content/themes/amurMotors/assets/fonts/Gilroy-Light.woff2')
      format('woff2'),
    url('/wp-content/themes/amurMotors/assets/fonts/Gilroy-Light.woff')
      format('woff');
}

@font-face {
  font-family: 'Gilroy';
  font-weight: 400; /* Regular */
  src: local('Gilroy-Regular'),
    url('/wp-content/themes/amurMotors/assets/fonts/Gilroy-Regular.woff2')
      format('woff2'),
    url('/wp-content/themes/amurMotors/assets/fonts/Gilroy-Regular.woff')
      format('woff');
}

@font-face {
  font-family: 'Gilroy';
  font-weight: 500; /* Medium */
  src: local('Gilroy-Medium'),
    url('/wp-content/themes/amurMotors/assets/fonts/Gilroy-Medium.woff2')
      format('woff2'),
    url('/wp-content/themes/amurMotors/assets/fonts/Gilroy-Medium.woff')
      format('woff');
}

@font-face {
  font-family: 'Gilroy';
  font-weight: 600; /* Semibold */
  src: local('Gilroy-Semibold'),
    url('/wp-content/themes/amurMotors/assets/fonts/Gilroy-Semibold.woff2')
      format('woff2'),
    url('/wp-content/themes/amurMotors/assets/fonts/Gilroy-Semibold.woff')
      format('woff');
}

@font-face {
  font-family: 'Gilroy';
  font-weight: 700; /* Bold */
  src: local('Gilroy-Bold'),
    url('/wp-content/themes/amurMotors/assets/fonts/Gilroy-Bold.woff2')
      format('woff2'),
    url('/wp-content/themes/amurMotors/assets/fonts/Gilroy-Bold.woff')
      format('woff');
}

@font-face {
  font-family: 'Gilroy';
  font-weight: 800; /* Heavy */
  src: local('Gilroy-Heavy'),
    url('/wp-content/themes/amurMotors/assets/fonts/Gilroy-Heavy.woff2')
      format('woff2'),
    url('/wp-content/themes/amurMotors/assets/fonts/Gilroy-Heavy.woff')
      format('woff');
}

@font-face {
  font-family: 'Gilroy';
  font-weight: 900; /* Black */
  src: local('Gilroy-Black'),
    url('/wp-content/themes/amurMotors/assets/fonts/Gilroy-Black.woff2')
      format('woff2'),
    url('/wp-content/themes/amurMotors/assets/fonts/Gilroy-Black.woff')
      format('woff');
}

@font-face {
  font-family: 'Gilroy';
  font-weight: 800; /* Extrabold */
  src: local('Gilroy-Extrabold'),
    url('/wp-content/themes/amurMotors/assets/fonts/Gilroy-Extrabold.woff2')
      format('woff2'),
    url('/wp-content/themes/amurMotors/assets/fonts/Gilroy-Extrabold.woff')
      format('woff');
}
:root {
  --content-width: 1300px;
  --container-offset: 15px;
  --container-width: calc(var(--content-width) + (var(--container-offset) * 2));
  --light-color: #fff;
  --black-color: #000;
  --accent-color: #ff0000;
  --yellow-color: #ffea2e;
  --grey-color: #e7e7e7;
  --grey-dark-color: rgb(127, 127, 127);
  --gradient: linear-gradient(
    336deg,
    rgba(229, 13, 35, 0.63) -2.37%,
    #e50d23 89.69%
  );
  --font-sizeSmall: 14px;
  --font-family: 'Gilroy', sans-serif;
  --font-family-second: 'Nunito Sans', sans-serif;
}

.custom-checkbox__field:checked + .custom-checkbox__content::after {
  opacity: 1;
}

.custom-checkbox__field:focus + .custom-checkbox__content::before {
  outline: red solid 2px;
  outline-offset: 2px;
}

.custom-checkbox__field:disabled + .custom-checkbox__content {
  opacity: 0.4;
  pointer-events: none;
}

html {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

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

.page {
  height: 100%;
  font-family: var(--font-family, sans-serif);
  -webkit-text-size-adjust: 100%;
}

.page__body {
  font-family: var(--font-family-second);
  margin: 0;
  min-width: 320px;
  min-height: 100%;
  font-size: 14px;
  background-color: #ffff;
}

img {
  height: auto;
  max-width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

a {
  text-decoration: none;
}

.site-container {
  overflow: hidden;
}

.is-hidden {
  display: none !important;
}

.btn-reset {
  border: none;
  padding: 0;
  background-color: transparent;
  cursor: pointer;
}

.list-reset {
  list-style: none;
  margin: 0;
  padding: 0;
}

.input-reset {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border: none;
  border-radius: 0;
  background-color: #fff;
}

.input-reset::-webkit-search-cancel-button,
.input-reset::-webkit-search-decoration,
.input-reset::-webkit-search-results-button,
.input-reset::-webkit-search-results-decoration {
  display: none;
}

.visually-hidden {
  position: absolute;
  overflow: hidden;
  margin: -1px;
  border: 0;
  padding: 0;
  width: 1px;
  height: 1px;
  clip: rect(0 0 0 0);
}

.container {
  margin: 0 auto;
  padding: 0 var(--container-offset);
  max-width: var(--container-width);
}

.js-focus-visible :focus:not(.focus-visible) {
  outline: 0;
}

.centered {
  text-align: center;
}

.dis-scroll {
  position: relative;
  left: 0;
  top: 0;
  overflow: hidden;
  width: 100%;
  height: 100vh;
  overscroll-behavior: none;
  -ms-scroll-chaining: none;
}

.page--ios .dis-scroll {
  position: relative;
}

.tabs__control {
  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;
  margin-bottom: 45px;
}

.tabs__nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 20px;
  border-bottom: 1px solid #c2c2c2;
  padding-bottom: 10px;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

@media (max-width: 768px) {
  .tabs__nav {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 1fr;
    grid-template-columns: 1fr 1fr;
    text-align: center;
  }
}

.tabs__item-btn {
  background-color: transparent;
  border: none;
  font-family: var(--font-family-second);
  font-size: 18px;
  font-weight: 500;
  color: #c2c2c2;
  cursor: pointer;
  -webkit-transition: color 0.3s;
  transition: color 0.3s;
}

@media (any-hover: hover) {
  .tabs__item-btn:hover {
    color: var(--black-color);
  }

  .header__phone-link:hover {
    color: var(--accent-color);
  }
}

.tabs__item-btn:active {
  color: var(--accent-color);
}

.tabs__item-btn:focus {
  outline: 0;
  color: var(--accent-color);
}

.tabs__item-btn--active {
  color: var(--accent-color);
}

.tabs__block {
  opacity: 0;
  visibility: hidden;
  -webkit-transition: opacity 0.3s, visibility 0.3s;
  transition: opacity 0.3s, visibility 0.3s;
  position: absolute;
  display: -ms-grid;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  gap: 15px;
}

.tabs__block.tab-active {
  opacity: 1;
  visibility: visible;
  position: static;
}

.header {
  padding-top: 30px;
  background-color: #f0f0f0;
  z-index: 999;
}

.header__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.header__col {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.header__logo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 20px;
  margin-right: 30px;
}

.header__logo::after {
  content: '';
  width: 1px;
  height: 27px;
  background-color: var(--grey-color);
}

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

@media (max-width: 992px) {
  .header__phone {
    display: none;
  }
}

.header__phone-placeholder {
  color: rgba(0, 0, 0, 0.4509803922);
  font-size: 12px;
  line-height: 14px;
  font-family: var(--font-family-second);
  letter-spacing: 0.03em;
}

.header__phone-link {
  color: var(--black-color);
  font-family: var(--font-family-second);
  font-weight: 600;
  font-size: 20px;
  line-height: 22px;
  -webkit-transition: color 0.3s;
  transition: color 0.3s;
}

.header__social {
  margin-right: 30px;
}

@media (max-width: 1024px) {
  .header__social {
    display: none;
  }
}

.header__social-text {
  color: rgba(0, 0, 0, 0.4509803922);
  font-size: 12px;
  line-height: 14px;
  font-family: var(--font-family-second);
  letter-spacing: 0.03em;
  margin-bottom: 5px;
  display: inline-block;
}

.header__social-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 5px;
}

.header__social-link-icon {
  width: 20px;
  height: 20px;
  -webkit-transition: fill 0.3s;
  transition: fill 0.3s;
}

.header__social-link-icon--youtube {
  width: 23px;
  height: 23px;
}

.header__time {
  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: 5px;
}

@media (max-width: 1200px) {
  .header__time {
    display: none;
  }
}

.header__time-text {
  color: rgba(0, 0, 0, 0.4509803922);
  font-size: 12px;
  line-height: 14px;
  font-family: var(--font-family-second);
  letter-spacing: 0.03em;
}

.header__time-value {
  color: var(--black-color);
  font-size: 14px;
  line-height: 16px;
  font-weight: 600;
  font-family: var(--font-family-second);
}

.header__actions {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 20px;
}
.header__actions-reviews {
  font-size: 16px;
  line-height: 19px;
  font-weight: bold;
  color: var(--black-color);
  background-color: var(--yellow-color);
  padding: 13px 44px;
  border-radius: 6px;
  cursor: pointer;
  position: relative;
  border: 1px solid transparent;
  -webkit-transition: border 0.3s;
  transition: border 0.3s;
}

@media (max-width: 768px) {
  .header__actions-reviews {
    display: none;
  }
}

.header__actions-review {
  position: absolute;
  z-index: 2;
  left: 0;
  width: 100%;
  background-color: var(--light-color);
  padding: 20px;
  border-radius: 0 0 20px 20px;
  display: flex;
  gap: 30px;
  flex-direction: column;
  max-height: 300px;
  opacity: 0;
  visibility: hidden;
  top: -150px;
  transition: 0.2s ease;
}
.header__actions-review--active {
  top: 50px;
  opacity: 1;
  visibility: visible;
}
.header__actions-review-link {
  display: flex;
  gap: 10px;
  flex-direction: column;
  font-size: 14px;
  color: var(--black-color);
  text-decoration: underline;
}
.header__actions-btn {
  font-size: 16px;
  line-height: 19px;
  font-weight: bold;
  color: var(--light-color);
  background-color: var(--accent-color);
  padding: 13px 44px;
  border-radius: 6px;
  overflow: hidden;
  cursor: pointer;
  position: relative;
  border: 1px solid transparent;
  -webkit-transition: border 0.3s;
  transition: border 0.3s;
}

.header__actions-btn--reviews {
  background-color: #ffea2e;
  color: var(--black-color);
}

.header__actions-btn:before {
  content: '';
  bottom: 0;
  left: 0;
  position: absolute;
  width: 0;
  height: 100%;
  border-radius: 0 5% 5% 0;
  background-color: #eee;
  -webkit-transition: width 0.3s;
  transition: width 0.3s;
}

.header__actions-btn span {
  position: relative;
  -webkit-transition: color 0.3s;
  transition: color 0.3s;
}

@media (max-width: 475px) {
  .header__logo img {
    max-width: 150px;
  }

  .header__actions-btn {
    font-size: 12px;
    padding: 13px 20px;
  }
}

@media (max-width: 390px) {
  .header__actions-btn {
    padding: 8px 15px;
  }
}

.header__menu {
  background-color: #242424;
  padding: 17px 0;
  margin-top: 22px;
  position: relative;
}

@media (max-width: 768px) {
  .header__actions-btn--reviews {
    display: none;
  }

  .header__nav {
    position: absolute;
    background-color: #242424;
    width: 100%;
    height: 0;
    opacity: 0;
    visibility: hidden;
    left: 0;
    top: 64px;
    z-index: 9999;
    padding: 10px;
    -webkit-transition: 0.3s;
    transition: 0.3s;
  }

  .header__nav.menu--active {
    visibility: visible;
    opacity: 1;
    height: 100vh;
  }
}

.nav__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 25px;
}

.nav__item-link {
  color: var(--light-color);
  font-size: 16px;
  line-height: 19px;
  font-family: var(--font-family-second);
  letter-spacing: 0.03em;
  -webkit-transition: color 0.3s;
  transition: color 0.3s;
}

.nav__item-link--auctions {
  background-color: var(--accent-color);
  padding: 3px;
  border-radius: 2px;
  font-weight: bold;
}

@media (any-hover: hover) {
  .header__social-link-icon:hover {
    fill: var(--accent-color);
  }

  @media (max-width: 768px) {
    .nav__item-link {
      font-size: 22px;
    }
  }

  .header__actions-btn:hover {
    border: 1px solid #000;
  }

  .header__actions-btn:hover:before {
    width: 100%;
  }

  .header__actions-btn:hover span {
    color: var(--black-color);
  }

  .nav__item-link:hover {
    color: var(--accent-color);
  }
}

@media (any-hover: hover) {
  .nav__item-link--auctions:hover {
    color: #fff;
  }
}

.nav__callback {
  display: none;
  font-size: 16px;
  line-height: 19px;
  font-weight: bold;
  color: var(--light-color);
  background-color: var(--accent-color);
  padding: 13px 44px;
  border-radius: 6px;
  overflow: hidden;
  cursor: pointer;
  position: relative;
  border: 1px solid transparent;
  margin-top: 30px;
}

@media (max-width: 768px) {
  .nav__callback {
    display: block;
  }
}

.burger {
  display: none;
  --burger-width: 50px;
  --burger-height: 30px;
  --burger-line-height: 2px;
  position: relative;
  border: none;
  padding: 0;
  width: var(--burger-width);
  height: var(--burger-height);
  color: #fff;
  background-color: transparent;
  cursor: pointer;
}

.burger::after,
.burger::before {
  content: '';
  position: absolute;
  left: 0;
  width: 100%;
  height: var(--burger-line-height);
  background-color: currentColor;
  -webkit-transition: top 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out, top 0.3s ease-in-out,
    -webkit-transform 0.3s ease-in-out;
}

.burger::before {
  top: 0;
}

.burger::after {
  top: calc(100% - var(--burger-line-height));
}

.burger__line {
  position: absolute;
  left: 0;
  top: 50%;
  width: 100%;
  height: var(--burger-line-height);
  background-color: currentColor;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  -webkit-transition: -webkit-transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
}

.burger--active::before {
  top: 50%;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
  -webkit-transition: top 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out, top 0.3s ease-in-out,
    -webkit-transform 0.3s ease-in-out;
}

.burger--active::after {
  top: 50%;
  -webkit-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  transform: rotate(-45deg);
  -webkit-transition: top 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out, top 0.3s ease-in-out,
    -webkit-transform 0.3s ease-in-out;
}

.burger--active .burger__line {
  -webkit-transform: scale(0);
  -ms-transform: scale(0);
  transform: scale(0);
  -webkit-transition: -webkit-transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
}

@media (max-width: 768px) {
  .nav__list {
    -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;
    height: 100%;
    overflow-y: auto;
    padding-bottom: 200px;
  }

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

.fixed-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 9999;
  margin: 0;
}

.hero {
  background: url(../img/bg-hero.webp) center center/cover no-repeat;
  padding: 150px 0;
  position: relative;
}

@media (max-width: 992px) {
  .hero {
    padding: 100px 0;
  }
}

.hero__korea {
  background: url(../img/korea/korea-bg.jpg) center center no-repeat;
}

.hero__china {
  background: url(../img/china/china-bg.jpg) center center no-repeat;
}

.hero:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.55);
}

.hero__container {
  height: 100%;
}

.hero__wrapper {
  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;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  height: 100%;
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  padding-top: 50px;
}

@media (max-width: 768px) {
  .hero__wrapper {
    padding-top: 0;
  }
}

.hero__title {
  margin: 0 0 10px;
  color: var(--light-color);
  font-size: 48px;
  font-weight: 600;
  font-family: var(--font-family);
  text-align: center;
  line-height: 1.24;
  text-wrap: balance;
}

@media (max-width: 992px) {
  .hero__title {
    font-size: 32px;
  }
}

@media (max-width: 475px) {
  .hero__title {
    font-size: 24px;
  }
}

.hero__subtitle {
  font-size: 20px;
  font-family: var(--font-family);
  line-height: 120%;
  font-weight: bold;
  color: #fff;
  text-align: center;
  margin: 0;
  margin-bottom: 20px;
}
@media (max-width: 475px) {
  .hero__subtitle {
    font-size: 16;
  }
}

.hero__btn {
  background-color: var(--accent-color);
  color: var(--light-color);
  border: none;
  padding: 15px 34px;
  border-radius: 7px;
  font-family: var(--font-family-second);
  font-size: 18px;
  letter-spacing: 0.03em;
  cursor: pointer;
  -webkit-transition: background-color 0.3s;
  transition: background-color 0.3s;
}

@media (any-hover: hover) {
  .hero__btn:hover {
    background-color: var(--black-color);
  }
}

.popular {
  padding-top: 120px;
  padding-bottom: 50px;
}

@media (max-width: 1100px) {
  .popular {
    padding-top: 165px;
  }
}

@media (max-width: 992px) {
  .popular {
    padding-top: 90px;
  }
}

.popular__title {
  font-size: 42px;
  font-weight: 600;
  line-height: 48px;
  margin: 0 0 25px;
  text-align: center;
  font-family: var(--font-family);
}

@media (max-width: 768px) {
  .popular__title {
    font-size: 32px;
    line-height: 40px;
  }
}

.popular__cart {
  background-color: rgba(204, 204, 204, 0.8);
  padding: 40px 20px 10px;
  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;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  border-radius: 10px;
}

.popular__cart-img {
  min-height: 200px;
}

.popular__cart-info {
  -webkit-box-flex: 1;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  text-align: center;
  margin-bottom: 50px;
}

.popular__cart-title {
  font-size: 24px;
  line-height: 30px;
  font-family: var(--font-family);
  font-weight: 600;
  color: var(--black-color);
  margin: 0 0 10px;
}

.popular__cart-desc {
  color: #696969;
  font-size: 14px;
  font-weight: 500;
  line-height: 22px;
  margin: 0;
}

.popular__cart-bottom {
  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;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.popular__cart-future {
  font-size: 14px;
  color: #6bc581;
  font-weight: 500;
  line-height: auto;
  margin: 0 0 20px;
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 10px;
}

.popular__cart-future:before {
  content: '';
  width: 14px;
  height: 14px;
  background: url(../img/icons/checkout.svg) center center/cover no-repeat;
}

.popular__cart-btn {
  border-radius: 5px;
  background-color: var(--accent-color);
  border: none;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 2.94px;
  text-transform: uppercase;
  color: var(--light-color);
  padding: 22px 44px;
  cursor: pointer;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

@media (any-hover: hover) {
  .popular__cart-btn:hover {
    background-color: var(--black-color);
  }
}

.popular__cart-messanger {
  margin-top: 20px;
}

.popular__cart-messanger-text {
  font-size: 12px;
  font-weight: 500;
  line-height: 16px;
  letter-spacing: 1.98px;
  text-transform: uppercase;
  margin-bottom: 15px;
  text-align: center;
}

.popular__cart-messanger-icons {
  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;
  gap: 10px;
}

@media (any-hover: hover) {
  .callback__buttons-link:hover {
    -webkit-transform: translateY(-5px);
    -ms-transform: translateY(-5px);
    transform: translateY(-5px);
  }
}

.callback {
  padding-bottom: 50px;
}

.callback__container {
  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;
  gap: 80px;
}

@media (max-width: 800px) {
  .callback__image {
    display: none;
  }
}

.callback__information {
  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;
  max-width: 680px;
  width: 100%;
}

.callback__title {
  font-size: 32px;
  font-weight: 600;
  line-height: 48px;
  margin: 0 0 50px;
  font-family: var(--font-family);
  position: relative;
}

@media (max-width: 768px) {
  .callback__title {
    font-size: 32px;
    line-height: 40px;
  }
}

.callback__title::after {
  content: '';
  position: absolute;
  right: 100px;
  bottom: -70px;
  background: url(../img/icons/arrow.svg) center center no-repeat;
  width: 102px;
  height: 102px;
}

.callback__text {
  font-size: 16px;
  line-height: 22px;
  color: var(--black-color);
  margin: 0 0 30px;
}

.callback__buttons {
  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: 40px;
  margin-bottom: 60px;
}

.callback__buttons-link {
  border-radius: 5px;
  border: none;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 2.94px;
  text-transform: uppercase;
  color: var(--light-color);
  padding: 22px 44px;
  cursor: pointer;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 10px;
}

.callback__buttons-link--telegram {
  -webkit-box-shadow: 0 10px 26px -9px #1e91f6;
  box-shadow: 0 10px 26px -9px #1e91f6;
  background: linear-gradient(332deg, #67b8ff 10.25%, #1e91f6 100%);
}

.callback__buttons-link--telegram:before {
  content: '';
  background: url(../img/icons/tg-callback.svg) center center/contain no-repeat;
  width: 28px;
  height: 24px;
}

.callback__buttons-link--whatsapp {
  background: linear-gradient(
    334deg,
    #6bc581 4.36%,
    #6bc581 55.12%,
    #128b30 100%
  );
  -webkit-box-shadow: 0 12px 28px -10px #128b30;
  box-shadow: 0 12px 28px -10px #128b30;
}

.callback__buttons-link--whatsapp:before {
  content: '';
  background: url(../img/icons/wh-callback.svg) center center/contain no-repeat;
  width: 28px;
  height: 24px;
}

@media (max-width: 575px) {
  .callback__buttons-link {
    min-width: 100%;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
}

.callback__phone {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 13px;
  margin-bottom: 40px;
}

.callback__phone-caption {
  font-size: 16px;
  line-height: 22px;
  font-weight: 500;
  color: var(--black-color);
}

.callback__phone-link {
  font-size: 24px;
  font-weight: 600;
  color: var(--black-color);
  line-height: auto;
  -webkit-transition: color 0.3s;
  transition: color 0.3s;
}

@media (any-hover: hover) {
  .callback__phone-link:hover {
    color: var(--accent-color);
  }

  .callback__social-icon:hover {
    fill: var(--accent-color);
  }
}

.callback__phone-link:active {
  color: var(--black-color);
}

.callback__social {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 10px;
}

.callback__social-icon {
  width: 32px;
  height: 32px;
  -webkit-transition: fill 0.3s;
  transition: fill 0.3s;
}

.callback__social-icon--youtube {
  width: 36px;
  height: 36px;
}

.advantage {
  background: url(../img/advantage/advantage.webp) left top/cover no-repeat;
  padding-top: 200px;
  padding-bottom: 200px;
}

.advantage__title {
  margin: 0 0 12px;
  text-align: center;
  font-size: 42px;
  font-weight: 600;
  line-height: 48px;
  font-family: var(--font-family);
}

@media (max-width: 768px) {
  .advantage {
    padding-bottom: 100px;
  }

  .advantage__title {
    font-size: 32px;
    line-height: 40px;
  }
}

.advantage__caption {
  font-size: 18px;
  text-align: center;
  color: var(--black-color);
  margin: 0 0 50px;
}

.advantage__items {
  display: -ms-grid;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  -webkit-column-gap: 36px;
  -moz-column-gap: 36px;
  column-gap: 36px;
  row-gap: 60px;
}

@media (max-width: 768px) {
  .advantage__items {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  }
}

.advantage__item {
  background: var(--accent-color);
  border-radius: 10px;
  padding: 33px 25px;
  position: relative;
}

@media (max-width: 768px) {
  .advantage__item {
    padding: 25px;
  }
}

.advantage__item-icon {
  position: absolute;
  top: -30px;
}

.advantage__item-text {
  font-size: 18px;
  line-height: 24px;
  color: var(--light-color);
  font-weight: bold;
}

.review {
  padding-top: 100px;
  padding-bottom: 100px;
}

.review__title {
  margin: 0 0 50px;
  font-size: 42px;
  font-weight: 600;
  line-height: 48px;
  font-family: var(--font-family);
}

@media (max-width: 768px) {
  .review__title {
    font-size: 32px;
    line-height: 40px;
  }
}

.review__items {
  display: -ms-grid;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
  margin-bottom: 40px;
}

.review__item {
  background-color: #e2e2e2;
}

.review__item-content {
  padding: 23px 10px 54px 12px;
}

.review__item-header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin-bottom: 18px;
}
.review__item-img {
  position: relative;
  padding: 30%;
}
.review__item-img img {
  position: absolute;
  top: 0;
  left: 0;
  object-fit: cover;
  width: 100%;
  height: 100%;
  border-radius: 5px;
}

.review__item-name {
  font-family: var(--font-family);
  font-size: 20px;
  line-height: 24px;
  color: var(--black-color);
  margin-bottom: 6px;
  font-weight: 500;
}
.stars {
  fill: var(--accent-color);
}
.review__item-city {
  font-size: 14px;
  color: rgba(0, 0, 0, 0.3960784314);
}

.review__item-desc {
  margin: 0;
  font-size: 14px;
  color: rgba(0, 0, 0, 0.5019607843);
  line-height: 22px;
}

.review__more {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin-bottom: 70px;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  row-gap: 30px;
}

@media (max-width: 992px) {
  .review__more {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
}

@media (max-width: 768px) {
  .review__more {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}

.review__more-btn {
  border-radius: 5px;
  background-color: var(--accent-color);
  border: none;
  font-size: 14px;
  font-weight: bold;
  letter-spacing: 2.94px;
  text-transform: uppercase;
  color: var(--light-color);
  padding: 22px 44px;
  cursor: pointer;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.review__other {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 70px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

@media (max-width: 768px) {
  .review__other {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}

.review__social {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 20px;
}

@media (max-width: 768px) {
  .review__social {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 10px;
  }
}

.review__social-img {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 5px;
}

.review__social-rating {
  color: #ff5200;
  font-weight: 600;
  font-family: var(--font-family-second);
  font-size: 34px;
}

.review__callback {
  padding: 60px 52px 72px;
  border-radius: 15px;
  background: url(../img/review/callback-bg.svg) no-repeat
    rgba(226, 226, 226, 0.8862745098);
  background-position: 90% 50%;
}

@media (max-width: 1024px) {
  .review__callback {
    background: #e2e2e2;
  }
}

.review__callback-content {
  max-width: 620px;
}

.review__callback-title {
  font-size: clamp(24px, 5vw, 32px);
  line-height: auto;
  font-family: var(--font-family);
  margin: 0 0 32px;
}

.review__callback-caption {
  margin: 0 0 45px;
  font-size: clamp(14px, 4vw, 20px);
  line-height: clamp(24px, 4vw, 27px);
}

.review__callback-btns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 10px;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

@media (max-width: 768px) {
  .review__callback {
    padding: 30px 22px 42px 32px;
  }

  .review__callback-btns {
    gap: 20px;
  }
}

.review__callback-btn {
  border-radius: 5px;
  background-color: var(--accent-color);
  border: none;
  font-size: 14px;
  font-weight: bold;
  letter-spacing: 2.94px;
  text-transform: uppercase;
  color: var(--light-color);
  padding: 22px 44px;
  cursor: pointer;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  min-width: 150px;
}

@media (max-width: 768px) {
  .review__callback-btn {
    min-width: 100%;
    text-align: center;
    font-size: 12px;
    padding: 22px 22px;
  }
}

.credit {
  padding-bottom: 100px;
}

.credit__header {
  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;
  margin-bottom: 40px;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  row-gap: 40px;
}

.credit__info {
  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;
  max-width: 300px;
}

.credit__title {
  font-family: var(--font-family);
  font-size: 24px;
  color: var(--black-color);
  margin: 0 0 15px;
  line-height: 32px;
  font-weight: 600;
}

.credit__desc {
  color: rgba(0, 0, 0, 0.5);
  font-size: 16px;
  line-height: 24px;
  margin: 0;
  font-family: var(--font-family-second);
  font-weight: 500;
}

.credit__offers {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 70px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.credit__offer {
  border-radius: 13px;
  background: var(--accent-color);
  padding: 10px 23px;
  min-width: 216px;
  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;
}

@media (max-width: 992px) {
  .credit__info {
    max-width: 100%;
  }

  .credit__offers {
    gap: 40px;
  }

  .credit__offer {
    min-width: 100%;
  }
}

.credit__offer-text {
  margin: 0 0 5px;
  color: var(--light-color);
  font-family: var(--font-family-second);
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 20px;
}

.credit__offer-title {
  margin: 0;
  color: var(--light-color);
  font-family: var(--font-family-second);
  font-size: 32px;
  font-style: normal;
  font-weight: 600;
}

.credit-callback {
  border-radius: 0 15px 15px;
  background: #f9f9f9;
  -webkit-box-shadow: 0 15px 10px 0 rgba(0, 0, 0, 0.1);
  box-shadow: 0 15px 10px 0 rgba(0, 0, 0, 0.1);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

@media (max-width: 920px) {
  .credit-callback {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}

.credit-callback__content {
  padding: 40px 10px 70px 47px;
  max-width: 395px;
}

@media (max-width: 475px) {
  .credit-callback__content {
    padding-left: 15px;
    padding-right: 10px;
  }
}

.credit-callback__title {
  color: #000;
  font-family: var(--font-family);
  font-size: 24px;
  font-style: normal;
  line-height: 32px;
  font-weight: 600;
  margin: 0 0 33px;
}

.credit-callback__actions {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 11px;
}

.credit-callback__link {
  padding: 17px 70px;
  background-color: var(--accent-color);
  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;
  text-align: center;
  color: var(--light-color);
  border-radius: 6px;
  font-size: 18px;
  letter-spacing: 0.05em;
  -webkit-transition: background-color 0.3s;
  transition: background-color 0.3s;
}

.credit-callback__link--whatsapp {
  background-color: #038700;
}

@media (any-hover: hover) {
  .credit-callback__link:hover,
  .review__callback-btn:hover,
  .review__more-btn:hover {
    background-color: var(--black-color);
  }
}

.credit-callback__image {
  position: relative;
  padding-right: 25%;
}

@media (max-width: 1100px) {
  .credit-callback__image {
    padding-right: 15%;
  }
}

.credit-callback__img {
  border-radius: 0 15px 15px 0;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

@media (max-width: 920px) {
  .credit-callback__img {
    border-radius: 0 0 15px 15px;
  }
}

.credit-callback__info {
  position: relative;
  z-index: 1;
  color: var(--light-color);
  padding-left: 50px;
  padding-top: 40px;
  max-width: 350px;
}

@media (max-width: 992px) {
  .credit-callback__info {
    padding-bottom: 40px;
  }
}

@media (max-width: 475px) {
  .credit-callback__info {
    padding-left: 25px;
    padding-top: 25px;
  }
}

.credit-callback__info-title {
  color: #fff;
  font-family: var(--font-family);
  font-size: 24px;
  font-weight: 600;
  margin: 0 0 15px;
}

.credit-callback__info-desc {
  color: #fff;
  font-family: var(--font-family-second);
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 24px;
}

.delivered {
  padding-bottom: 40px;
}

.delivered__title {
  font-size: 42px;
  font-weight: 600;
  line-height: 48px;
  margin: 0 0 50px;
  text-align: center;
  font-family: var(--font-family);
}

@media (max-width: 768px) {
  .delivered__title {
    font-size: 32px;
    line-height: 40px;
  }
}

.delivered__slide {
  border-radius: 15px;
  border: 2px solid rgba(0, 0, 0, 0.2);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  padding: 10px;
  height: 100%;
}

.delivered__slide-img {
  position: relative;
  padding-bottom: 70%;
}

.delivered__slide-img img {
  position: absolute;
  -o-object-fit: cover;
  object-fit: cover;
  width: 100%;
  height: 100%;
  border-radius: 15px 15px 0 0;
}

.delivered__slide-head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin-bottom: 15px;
}

.delivered__slide-name {
  margin: 0;
  font-size: 18px;
  font-family: var(--font-family);
  font-weight: 600;
  color: var(--black-color);
}

.delivered__slide-year {
  color: rgba(0, 0, 0, 0.5);
  font-family: var(--font-family-second);
  font-size: var(--font-sizeSmall);
  font-style: normal;
  font-weight: 500;
}

.delivered__slide-desc {
  color: var(--black-color);
  font-family: var(--font-family-second);
  font-size: var(--font-sizeSmall);
  line-height: 18px;
  margin: 0;
}

.delivered__slide-price {
  color: var(--black-color);
  font-family: var(--font-family-second);
  font-size: 18px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 4px;
}

.delivered__slide-price:before {
  content: '';
  background: url(../img/icons/money.svg) center center/cover no-repeat;
  width: 14px;
  height: 14px;
}

.delivered__slide-content {
  -webkit-box-flex: 1;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  margin-top: 22px;
}

.delivered__slide-btn {
  border-radius: 5px;
  background-color: var(--accent-color);
  border: none;
  font-size: var(--font-sizeSmall);
  font-weight: 500;
  letter-spacing: 2.94px;
  text-transform: uppercase;
  color: var(--light-color);
  padding: 22px 44px;
  cursor: pointer;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  font-weight: bold;
  text-align: center;
}

@media (max-width: 992px) {
  .delivered__slide-btn {
    padding: 16px 32px;
  }
}

.swiper {
  padding-bottom: 80px;
}

.swiper-slide {
  height: auto;
}

.footer {
  padding-top: 60px;
  border-top: 1px solid rgba(0, 0, 0, 0.2);
  background-color: #f0f0f0;
  padding-bottom: 25px;
}

.footer__wrapper {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 1fr;
  grid-template-columns: 1fr 1fr;
}

.footer__right {
  border-right: 1px solid rgba(0, 0, 0, 0.2);
}

@media (max-width: 992px) {
  .footer__wrapper {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    row-gap: 30px;
  }

  .footer__right {
    border-right: none;
    border-bottom: 1px solid rgba(0, 0, 0, 0.2);
    padding-bottom: 25px;
  }
}

.footer__left {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 1fr;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  padding-left: 32px;
}

@media (max-width: 992px) {
  .footer__left {
    padding-left: 5px;
  }
}

.footer__logo {
  margin-bottom: 50px;
  display: block;
}

.footer__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-column-gap: 65px;
  -moz-column-gap: 65px;
  column-gap: 65px;
  row-gap: 25px;
}

.footer__item {
  min-width: 180px;
}

.footer__link {
  text-transform: uppercase;
  font-size: 16px;
  line-height: 1.2;
  color: var(--black-color);
  font-family: var(--font-family-second);
  padding: 5px;
  font-weight: 600;
}

.footer__phones {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 30px;
}

.footer__phone {
  font-family: var(--font-family-second);
  font-weight: 600;
  font-size: 18px;
  color: var(--black-color);
  -webkit-transition: color 0.3s;
  transition: color 0.3s;
}

@media (any-hover: hover) {
  .delivered__slide-btn:hover {
    background-color: var(--black-color);
  }

  .footer__link:hover {
    background-color: var(--grey-color);
    border-radius: 2px;
  }

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

  .footer__whatsapp:hover:hover {
    -webkit-transform: translateY(-5px);
    -ms-transform: translateY(-5px);
    transform: translateY(-5px);
  }
}

.footer__whatsapp {
  background-color: #038700;
  border-radius: 2px;
  padding: 10px;
  max-width: 180px;
  font-size: 12px;
  color: var(--light-color);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 15px;
  -webkit-transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
}

.footer__whatsapp:after {
  content: '';
  background: url(../img/icons/wh-callback.svg) center center/contain no-repeat;
  width: 17px;
  height: 17px;
}

.footer__actions {
  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;
  gap: 30px;
}

@media (max-width: 575px) {
  .footer__left {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }

  .footer__actions {
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: start;
  }
}

.footer__action {
  color: var(--black-color);
  font-size: 16px;
  font-weight: 600;
}

.footer__bottom {
  border-top: 1px solid rgba(0, 0, 0, 0.2);
  margin-top: 20px;
  padding-top: 20px;
}

.modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 99999;
  -webkit-backdrop-filter: blur(5px);
  backdrop-filter: blur(5px);
  scale: 0.8;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.modal__container {
  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: 100%;
  padding: 0 10px;
}

.modal__wrapper {
  background-color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  border-radius: 15px;
  padding: 20px 25px;
  max-width: 720px;
  width: 100%;
  position: relative;
}

.modal__title {
  font-size: 18px;
  line-height: 24px;
  font-family: var(--font-family-second);
  font-weight: 500;
  /*margin: 0 0 20px;*/
  color: var(--black-color);
}

.modal--active {
  scale: 1;
  opacity: 1;
  visibility: visible;
}

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

.form-modal__label {
  width: 100%;
  margin-bottom: 15px;
}

.form-modal__input {
  width: 100%;
  padding: 15px 10px;
  border-radius: 4px;
  border: 1px solid #e2e2e2;
  background-color: rgba(205, 223, 254, 0.1254901961);
  color: var(--black-color);
  outline: 0;
  font-family: var(--font-family-second);
  font-size: 14px;
  font-weight: 500;
}

.form-modal__input::-webkit-input-placeholder {
  color: rgba(0, 0, 0, 0.3843137255);
  font-family: var(--font-family-second);
  font-weight: 500;
  font-size: 14px;
}

.form-modal__input::-moz-placeholder {
  color: rgba(0, 0, 0, 0.3843137255);
  font-family: var(--font-family-second);
  font-weight: 500;
  font-size: 14px;
}

.form-modal__input:-ms-input-placeholder {
  color: rgba(0, 0, 0, 0.3843137255);
  font-family: var(--font-family-second);
  font-weight: 500;
  font-size: 14px;
}

.form-modal__input::-ms-input-placeholder {
  color: rgba(0, 0, 0, 0.3843137255);
  font-family: var(--font-family-second);
  font-weight: 500;
  font-size: 14px;
}

.form-modal__input::placeholder {
  color: rgba(0, 0, 0, 0.3843137255);
  font-family: var(--font-family-second);
  font-weight: 500;
  font-size: 14px;
}

.form-modal__from {
  font-size: 14px;
  font-weight: 500;
  font-family: var(--font-family-second);
  line-height: 20px;
  margin: 0 0 5px;
}

.form-modal__country {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 10px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.form-modal__country-block {
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  position: relative;
}

.form-modal__country label {
  cursor: pointer;
  display: block;
  background-color: #edf2f9;
  text-align: center;
  padding: 10px 60px;
  border-radius: 4px;
  text-transform: uppercase;
  font-size: 16px;
  font-family: var(--font-family-second);
  font-weight: 500;
  letter-spacing: 0.03em;
}

.form-modal__country-input {
  /*opacity: 0;*/
  /*visibility: hidden;*/
  /*position: absolute;*/
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  width: 100%;
  /*left: 0*/
}

.form-modal__country-input:checked + label {
  background-color: #ecfff2;
}

.form-modal__btn {
  text-align: center;
  background-color: var(--accent-color);
  font-size: 16px;
  text-transform: uppercase;
  font-family: var(--font-family-second);
  border: none;
  color: var(--light-color);
  padding: 15px 0;
  border-radius: 4px;
  letter-spacing: 0.06em;
  -webkit-transition: background-color 0.3s;
  transition: background-color 0.3s;
  cursor: pointer;
  display: flex;
  width: 100%;
  justify-content: center;
  align-items: center;
}

@media (any-hover: hover) {
  .form-modal__btn:hover {
    background-color: var(--black-color);
  }
}

.main-about,
.main-contacts {
  padding-top: 80px;
  margin-bottom: 80px;
}

.breadcrumbs {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 30px;
}

.breadcrumbs-from {
  font-size: 14px;
  color: var(--grey-dark-color);
}

.breadcrumbs-title {
  margin: 0;
  font-size: 24px;
  font-weight: 600;
  line-height: 1.2;
}

.about {
  padding-bottom: 60px;
}

.about__info {
  margin-top: 40px;
}

.about__title {
  margin: 0 0 30px;
  font-size: 28px;
  line-height: 1.2;
  font-family: var(--font-family);
}

.about__text {
  margin: 0 0 30px;
  font-size: 18px;
  line-height: 1.5;
  font-family: var(--font-family-second);
  color: var(--grey-dark-color);
}

.team {
  background-color: var(--grey-color);
  padding-top: 50px;
  padding-bottom: 50px;
  margin-bottom: 80px;
}

.team__title {
  margin: 0 0 30px;
  font-size: 24px;
  line-height: 1.24;
  font-family: var(--font-family);
}

.team__items {
  display: -ms-grid;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
}

.team__item {
  background-color: var(--light-color);
  border-radius: 13px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  padding: 5px;
  -webkit-transition: -webkit-transform 0.3s ease-in-out,
    -webkit-box-shadow 0.3s;
  transition: transform 0.3s ease-in-out, box-shadow 0.3s,
    -webkit-transform 0.3s ease-in-out, -webkit-box-shadow 0.3s;
}

.team__item-images {
  position: relative;
  border-radius: 13px 13px 0 0;
  padding: 50%;
  overflow-x: hidden;
}

.team__item-picture {
  border-radius: 13px 13px 0 0;
  position: absolute;
  top: 0;
  left: 0;
  -o-object-fit: cover;
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.team__item-second {
  display: none;
}

.team__item:hover {
  -webkit-transform: translateY(-5px);
  -ms-transform: translateY(-5px);
  transform: translateY(-5px);
  -webkit-box-shadow: 0 10px 20px rgba(0, 0, 0, 0.19),
    0 6px 6px rgba(0, 0, 0, 0.23);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.19), 0 6px 6px rgba(0, 0, 0, 0.23);
}

.team__item:hover .team__item-second {
  display: block;
}

.team__item-footer {
  background: #9b2e3c;
  border-radius: 0 0 13px 13px;
  padding: 10px 20px;
}

.team__item-info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  color: var(--light-color);
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 20px;
  flex-direction: column;
  align-items: flex-start;
}

.team__item-name {
  font-size: 20px;
  line-height: 24px;
  font-weight: 600;
}

.team__item-phone {
  color: var(--light-color);
  font-size: 20px;
  font-weight: 600;
}

/* fixed callback */

.fixed-contacts {
  position: fixed;
  bottom: 40px;
  right: -100px;
  z-index: 9999;
  transition: right 0.3s ease;
  cursor: pointer;
  display: none;
}
.fixed-contacts.fixed-contacts-active {
  right: 40px;
}

@media (max-width: 768px) {
  .fixed-contacts {
    right: 20px;
    bottom: 20px;
  }
  .fixed-contacts.fixed-contacts-active {
    right: 20px;
  }
}

.fixed-contacts__img {
  background-color: var(--accent-color);
  width: 60px;
  height: 60px;
  border-radius: 50%;
  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;
  pointer-events: none;
  position: relative;
}

.fixed-contacts__icon {
  background: url('../img/icon-callback.svg') center center no-repeat;
  width: 30px;
  height: 30px;
}
.other-social {
  position: absolute;
  bottom: 0px;
  right: 2px;
  transition: right 0.3s ease;

  display: flex;
  flex-direction: column;
  gap: 10px;
}
.other-social__icon {
  width: 60px;
  height: 60px;
  display: block;
  transition: 0.3s ease;
  z-index: -1;
}

.other-social__icon--phone {
  background: url('../img/phone-green.svg');
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  bottom: -70px;
}

.other-social__icon--whatsapp {
  background: url('../img/whatsapp-green.svg');
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  bottom: 0px;
}

.other-social-active {
  z-index: 99999;
}
.other-social-active .other-social__icon--phone {
  bottom: 50px;
}
.other-social-active .other-social__icon--whatsapp {
  bottom: 60px;
}

.buying {
  margin-bottom: 80px;
}

.buying__title {
  margin: 0;
  margin-bottom: 40px;
  font-size: 24px;
  line-height: 1.24;
  font-family: var(--font-family);
}

.buying__items {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
}
.buying__item {
  background-color: #f8f8f888;
  border-radius: 5px;
  padding: 23px 66px 66px 19px;
}
.buying__icon {
  margin-bottom: 20px;
}
.buying__item-title {
  font-size: 18px;
  margin: 0;
  margin-bottom: 10px;
  font-family: var(--font-family);
  background-color: transparent;
  border: none;
  padding: 0;
  font-weight: bold;
}
.buying__item-title--accent {
  color: var(--accent-color);
  cursor: pointer;
}
.buying__item-text {
  font-size: 14px;
  line-height: 20px;
  margin: 0;
  opacity: 0.5;
}

.professional {
  background-color: #dadada;
  margin-bottom: -80px;
}

.proffesional__wrapper {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 40px;
}
@media (max-width: 992px) {
  .proffesional__wrapper {
    grid-template-columns: 1fr;
  }
}
.proffesional__content {
  padding: 40px 20px 40px 0;
}
.proffesional__callback {
  background-color: #363636;
  padding: 40px 10px 40px 30px;
}
.professional__title {
  margin: 0;
  margin-bottom: 20px;
  font-size: 24px;
  line-height: 1.24;
  font-family: var(--font-family);
}
.professional__text {
  font-size: 14px;
  line-height: 20px;
  margin: 0;
  opacity: var(--grey-color);
  text-wrap: balance;
  margin-bottom: 40px;
}

.proffesional__futures {
  display: grid;
  grid-template-columns: 1fr;
}
.proffesional__futures-text {
  font-size: 14px;
  font-weight: bold;
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-family-second);
}
.proffesional__futures-text:before {
  content: '';
  width: 17px;
  height: 17px;
  background: url('../img/icons/checked.svg') center center/cover no-repeat;
}

.proffesional__callback-title {
  color: var(--light-color);
  font-size: 24px;
  line-height: 1.2;
  font-weight: bold;
  text-wrap: balance;
  margin-bottom: 20px;
}

.proffesional__callback-phone {
  color: var(--light-color);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  margin-bottom: 40px;
  font-family: var(--font-family-second);
}
.proffesional__callback-tel {
  color: var(--light-color);
  font-size: 22px;
  font-weight: bold;
  line-height: 1.1;
  font-family: var(--font-family-second);
}

.proffesional__callback-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background-color: var(--accent-color);
  color: var(--light-color);
  border: none;
  padding: 15px 34px;
  border-radius: 7px;
  font-family: var(--font-family-second);
  font-size: 18px;
  letter-spacing: 0.03em;
  cursor: pointer;
  -webkit-transition: background-color 0.3s;
  transition: background-color 0.3s;
}

@media (any-hover: hover) {
  .proffesional__callback-btn:hover {
    background-color: var(--black-color);
    color: var(--light-color);
  }
}

.contacts {
}

.contacts__items {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
  margin-bottom: 50px;
}

.contacts__item {
  display: flex;
  flex-direction: column;
  gap: 20px;
  background-color: var(--grey-color);
  padding: 20px;
  border-radius: 13px;
}

.contacts__item-link {
  font-family: var(--font-family-second);
  font-weight: bold;
  color: var(--black-color);
  font-size: 18px;
  margin: 0;
  line-height: 1.2;
}

.wpcf7-list-item {
  margin: 0;
}

.wpcf7-list-item label {
  cursor: pointer;
  display: block;
  background-color: #edf2f9;
  text-align: center;
  padding: 10px 60px;
  border-radius: 4px;
  text-transform: uppercase;
  font-size: 16px;
  font-family: var(--font-family-second);
  font-weight: 400;
  letter-spacing: 0.03em;
}

.wpcf7-list-item label input {
  accent-color: var(--accent-color);
}

.modal__success {
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-color: #fff;
  border-radius: 15px;
  opacity: 0;
  visibility: hidden;
  height: 0;
  transition: 0.3s ease;
}

.modal__success-title {
  font-size: 28px;
  line-height: 34px;
  color: var(--black-color);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  text-wrap: balance;
}

.modal__success-title::before {
  content: '';
  background: url('../img/success-icon.svg') center center no-repeat;
  background-size: cover;
  width: 44px;
  height: 44px;
  display: block;
}

.modal__success-active {
  opacity: 1;
  visibility: visible;
  height: 100%;
}

@media (max-width: 768px) {
  .wpcf7-form-control {
    display: flex;
    flex-direction: column;
    gap: 10px;
  }
}

.popular__auctions {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 50px;
}

.auctions__btn {
  border-radius: 5px;
  background-color: var(--accent-color);
  border: none;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 2.94px;
  text-transform: uppercase;
  color: var(--light-color);
  padding: 22px 44px;
  display: inline-block;
  transition: background-color 0.3s ease;
}
.auctions__btn:hover {
  background-color: #000;
}

.footer__link--auc {
  color: #000 !important;
  text-transform: uppercase;
  font-size: 18px !important;
  line-height: 1.2;
  font-family: var(--font-family-second) !important;
  padding: 5px;
  font-weight: 600;
  text-decoration: none !important;
}

.footer__phone--auc {
  color: #000 !important;
  text-transform: uppercase;
  font-size: 18px !important;
  line-height: 1.2;
  font-family: var(--font-family-second) !important;
  padding: 5px;
  font-weight: 600;
  text-decoration: none !important;
}

.footer__whatsapp--auc {
  color: #fff !important;
}
.footer__action--auc {
  color: #000 !important;
}

.btn-not-allow {
  opacity: 0.5;
  pointer-events: none;
}

.youtube {
  background-color: var(--grey-color);
  padding: 70px 0;
}

.youtube__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
}

@media (max-width: 992px) {
  .youtube__inner {
    grid-template-columns: 1fr;
    align-items: flex-start;
    gap: 50px;
  }
}

.youtube__title {
  font-size: 32px;
  line-height: 38px;
  font-family: var(--font-family);
  margin: 0;
  margin-bottom: 20px;
}

.youtube__desc {
  font-size: 18px;
  line-height: 24px;
  font-family: var(--font-family-second);
  font-weight: bold;
  margin: 0;
  margin-bottom: 50px;
}

.youtube__link {
  border-radius: 5px;
  background-color: var(--accent-color);
  border: none;
  font-size: var(--font-sizeSmall);
  font-weight: 400;
  letter-spacing: 2.94px;
  text-transform: uppercase;
  color: var(--light-color);
  padding: 22px 44px;
  cursor: pointer;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.youtube__video iframe {
  border-radius: 10px;
}

.news {
  padding-top: 70px;
  padding-bottom: 70px;
}

.news__title {
  font-size: 32px;
  line-height: 38px;
  font-family: var(--font-family);
  margin: 0;
  margin-bottom: 20px;
}
.news__inner {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
}

.news-head {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
}

.news__link {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  line-height: 20px;
  font-family: var(--font-family-second);
  text-decoration: none;
  color: var(--black-color);
  transition: 0.3s;
  text-transform: uppercase;
  margin-top: 40px;
  color: #fff;
  background-color: var(--accent-color);
  padding: 20px 20px;
  border-radius: 5px;
  max-width: 300px;
  margin: 0 auto;
  margin-top: 40px;
  font-weight: bold;
  letter-spacing: 0.05em;
}

@media (any-hover: hover) {
  .news__link:hover {
    background-color: var(--black-color);
  }
}

/* breadcrumbs */

.breadcrumbs {
  margin-top: 40px;
  margin-bottom: 0;
}

.breadcrumbs__container {
  display: flex;
  justify-content: flex-start;
  width: 100%;
  text-align: left;
  font-size: 12px;
  color: var(--accent-color);
  flex-wrap: wrap;
}

.container-single-car {
  display: grid;
  grid-template-columns: 600px 1fr;
  gap: clamp(40px, 2vw, 80px);
  margin-top: 40px;
}

.container-single-car-lot {
  font-family: var(--font-family);
  font-weight: 600;
  font-size: 24px;
  color: #000;
  margin-bottom: 20px;
}

.single-cart-img {
  border-radius: 16px;
  overflow: hidden;
  position: relative;
}

.single-cart-img-nav {
  position: absolute;
  top: 40%;
  left: 0;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 3;
}

.single-cart-img-nav .btn {
  cursor: pointer;
  transition: 0.3s ease;
}

.single-cart-img-nav .btn:hover {
  opacity: 0.6;
}

.single-cart-img-slide > img {
  border-radius: 20px;
}

.single-car-head {
  display: flex;
  flex-direction: column;
  gap: 5px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.2);
  padding-bottom: 15px;
  margin-bottom: 30px;
}

.single-car-title {
  font-family: var(--font-family);
  font-weight: 600;
  font-size: 24px;
  color: #000;
}

.single-car-date {
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 16px;
  color: #727272;
}

.single-car-options {
  max-width: 680px;
  display: flex;
  flex-wrap: wrap;
  gap: clamp(20px, 3vw, 60px);
  row-gap: 20px;
  margin-bottom: 30px;
}

.single-car-option {
  display: flex;
  flex-direction: column;
  gap: 5px;
  flex-basis: 150px;
}

.single-car-option-name {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 14px;
  color: #717171;
}

.single-car-option-text {
  font-family: var(--font-family);
  font-weight: 600;
  font-size: 16px;
  color: #000;
}

.single-car-pricing {
  display: flex;
  flex-direction: column;
  gap: 10px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.2);
  padding-bottom: 20px;
}

.single-car-price-start {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  flex-wrap: wrap;
}

.single-car-price-start .light {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 14px;
  color: #717171;
}

.single-car-price-start .bold {
  font-family: var(--font-family);
  font-weight: 600;
  font-size: 16px;
  color: #000;
}

.single-car-actions {
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.single-car-text {
  font-size: 14px;
  font-weight: 400;
  color: rgba(0, 0, 0, 0.5);
}

.single-car-btn {
  width: 100%;
  font-weight: bold;
}

.hero__choice {
  background: url('http://japan-amur-motors.ru/wp-content/uploads/2024/11/powerful-headlights-particle-view-modern-luxury-cars-parked-indoors-daytime-scaled.webp')
    center / cover no-repeat;
}

.auctions-choice {
  margin-top: 80px;
  margin-bottom: 80px;
}
.choice__items {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 20px;
}

.choice__item {
  position: relative;
  cursor: pointer;
  border-radius: 15px;
  overflow: hidden;
  transition: 0.3s ease;
}

.choice__item:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  border-radius: 15px;
  z-index: 2;
}

.choice__img {
  position: relative;
  width: 100%;
  height: 100%;
  padding: 33%;
}

.choice__img img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 15px;
  transition: all 0.3s ease;
}
.choice__title {
  position: absolute;
  bottom: 20px;
  left: 20px;
  font-size: clamp(24px, 3vw, 32px);
  font-family: var(--font-family-second);
  color: #fff;
  z-index: 3;
  font-weight: bold;
}

.choice__item > a {
  position: absolute;
  inset: 0;
  z-index: 4;
}
.single-car-left {
  min-width: 0;
}

@media (any-hover: hover) {
  .choice__item:hover .choice__img img {
    transform: scale(1.2);
  }
}

.directory_car {
  margin-top: 60px;
  margin-bottom: 60px;
}

.directory_car_title {
  font-size: clamp(32px, 3vw, 42px);
  font-weight: 600;
  line-height: 48px;
  margin: 0 0 40px 0;
  font-family: var(--font-family);
}

.directory_car_list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.directory_car_list > li {
  font-size: 14px;
  line-height: 120%;
}

@media (max-width: 1280px) {
  .choice__items {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 992px) {
  .choice__items {
    grid-template-columns: 1fr;
  }
  .container-single-car {
    grid-template-columns: 1fr;
  }
  .single-car .swiper {
    padding-bottom: 0;
  }
  .single-cart-img {
    max-width: 300px;
    height: 230px;
  }
  .single-cart-img-slide > img {
    height: 230px;
  }
}

.grecaptcha-badge {
  display: none !important;
}

.f-am-callback-form p {
  margin: 0;
}

.wpcf7-captchar {
	border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    background-color: #fff;
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 16px;
    color: #0c0c0c;
    padding: 14px 32px;
    width: 100%;
}


.form-drom p {
	margin: 0;
}

.form-drop input {
	width: 100%;
}