﻿@charset "UTF-8";

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

input:not(.btn) {
  font-family: "Montserrat" !important;
}

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

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

a:visited {
  text-decoration: none;
}

a:hover {
  text-decoration: none;
}

ul li {
  list-style: none;
}

.tw-button {
  width: max-content;
  height: 52px;
  background-color: #b49d60;
  color: #fff;
  border: 0 !important;
  padding-left: 2.25rem;
  /* px-9 */
  padding-right: 2.25rem;
  padding-top: 1rem;
  /* py-4 */
  padding-bottom: 1rem;
  border-radius: 0.5rem;
  /* rounded-lg */
  font-weight: 800;
  /* font-extrabold */
  margin-left: auto;
  margin-right: auto;
  transition-property: background-color;
  transition-duration: 150ms;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);

  @media (min-width: 768px) {
    width: 100%;
  }

  &:hover {
    background-color: #b01d23;
  }
}

.tw-acceptance label {
  gap: 2rem !important;
  display: flex !important;
  align-items: center !important;
}

.tw-input > span > input[type="tel"],
.tw-input > span > input[type="text"] {
  flex: 1 !important;
  background-color: #fff !important;
  outline: none !important;
  border: 0 !important;
  color: #000 !important;
  border-bottom: 1px solid #000 !important;
  border-bottom-width: 1px !important;
  padding-left: 1rem !important;
  padding-right: 1rem !important;
  padding-top: 0.5rem !important;
  padding-bottom: 0.5rem !important;
}

.tw-input.theme-dark > span > input[type="tel"],
.tw-input.theme-dark > span > input[type="text"] {
  background-color: transparent !important;
  color: #fff !important;
  border-bottom: 1px solid #fff !important;
}

.single__text ul li {
  list-style: disc;
  margin-left: 22px;
}

.story ul,
.story ol {
  counter-reset: myCounter;
}

.story li {
  margin: 5px 0px;
  padding-left: 15px;
  position: relative;
}

.story li::before {
  position: absolute;
  left: 0px;
  top: 0px;
  display: block;
  color: inherit;
  line-height: 1.1;
}

.story ul:not(.object-info) li::before {
  content: "";
  flex-shrink: 0;
  display: block;
  width: 6px;
  height: 6px;
  background: url("data:image/svg+xml,%3Csvg width='9' height='9' viewBox='0 0 9 9' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='4.5' cy='4.5' r='4.5' fill='%23000000'/%3E%3C/svg%3E%0A")
    center center no-repeat;
  background-size: 6px 6px;
  padding-top: 20px;
}

img {
  vertical-align: top;
}

.responsiv-img {
  max-width: 100%;
}

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

:root {
  --color-accent: #2b4125;
  --color-accent-hover: #2b4125;
  --color-black: #000;
  --color-menu: #b0b0b0;
  --color-greey: #b0b0b0;
  --placeholder: #838383;
  --transition: 0.3s ease;
  --background-color: #141414;
  --header-background: #141414;
  --header-border: #373737;
  --rent_price_background: #373737;
  --color-social: #141414;
  --color-border: #373737;
  --color-border-block: #fff;
  --color-cart-price: #b0b0b0;
  --footer-background: #141414;
  --footer-border-color: #373737;
  --border-radius_block: 0.625rem;
  --border-radius_form: 0.625rem;
  --index: calc(1vw + 1vh);
  --h1: 3.375rem;
  --h2: 3.35rem;
}

::placeholder {
  color: var(--placeholder);
}

::-moz-placeholder {
  color: var(--placeholder);
}

::-webkit-input-placeholder {
  color: var(--placeholder);
}

:-ms-input-placeholder {
  color: var(--placeholder);
}

::-ms-input-placeholder {
  color: var(--placeholder);
}

.form_auto input:not(.btn)::placeholder {
  color: #ffffff;
}

.form_auto input:not(.btn)::-moz-placeholder {
  color: #ffffff;
}

.form_auto input:not(.btn)::-webkit-input-placeholder {
  color: #ffffff;
}

.form_auto input:not(.btn):-ms-input-placeholder {
  color: #ffffff;
}

.form_auto input:not(.btn)::-ms-input-placeholder {
  color: #ffffff;
}

.car-in-rent-notification {
  padding: 20px;
  border: 1px solid var(--color-border-block);
  border-radius: 8px;
}

div.car-in-rent-notification p {
  margin: 0px 0px 24px;
  font-size: 20px;
}

::-moz-selection {
  background-color: var(--color-black);
  color: var(--color-accent);
}

::selection {
  background-color: var(--color-black);
  color: var(--color-accent);
}

input,
textarea {
  outline: none;
}

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

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

.flex-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
}

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

.flex-center {
  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;
}

.flex-top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
}

.flex-bottom {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
}

/* @font-face {
  font-family: Inter;
  font-display: swap;
  src: url("../fonts/Inter-Black.woff2") format("woff2"), url("../fonts/Inter-Black.woff") format("woff");
  font-weight: 900;
  font-style: normal;
}

@font-face {
  font-family: Inter;
  font-display: swap;
  src: url("../fonts/Inter-ExtraBold.woff2") format("woff2"), url("../fonts/Inter-ExtraBold.woff") format("woff");
  font-weight: 800;
  font-style: normal;
}

@font-face {
  font-family: Inter;
  font-display: swap;
  src: url("../fonts/Inter-Bold.woff2") format("woff2"), url("../fonts/Inter-Bold.woff") format("woff");
  font-weight: 700;
  font-style: normal;
}

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

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



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

@font-face {
  font-family: Inter;
  font-display: swap;
  src: url("../fonts/Inter-Regular.woff2") format("woff2"), url("../fonts/Inter-Regular.woff") format("woff");
  font-weight: 400;
  font-style: normal;
}

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



@font-face {
  font-family: Inter;
  font-display: swap;
  src: url("../fonts/Inter-Thin.woff2") format("woff2"), url("../fonts/Inter-Thin.woff") format("woff");
  font-weight: 100;
  font-style: normal;
} */

.hidden {
  position: absolute;
  width: 0.01px;
  height: 0.01px;
  padding: 0;
  margin: 0;
  z-index: -100;
  opacity: 0;
  visibility: hidden;
}

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

[class*="-bgi"] {
  position: relative;
}

[class*="-bgi"] iframe,
[class*="-bgi"] img {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  -o-object-fit: cover;
  object-fit: cover;
}

[class*="-bgi_contain"] img {
  -o-object-fit: contain;
  object-fit: contain;
}

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

button {
  cursor: pointer;
  font-family: "Montserrat";
}

.btn {
  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;
  padding: 0.75rem 1.25rem;
  border-radius: 10px;
  border: 0.0625rem solid transparent;
  cursor: pointer;
}

.btn-black {
  background-color: var(--color-black);
  color: #fff;
  border: 0.0625rem solid #fff;
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

.btn-black:hover {
  background-color: var(--color-accent);
  border: 0.0625rem solid var(--color-accent);
}

.btn-red {
  width: 100%;
  justify-content: center;
  background-color: var(--color-accent);
  color: #fff;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  padding: 18px 16px;
  height: 54px;
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  font-weight: 600;
  font-size: 1rem;
  line-height: 100%;
}

.btn-red:hover {
  background-color: var(--color-accent-hover);
}

.btn-red svg {
  margin-left: 0.625rem;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
}

.btn-red svg path {
  fill: #fff;
}

.btn-white {
  background-color: #fff;
  border: 0.0625rem solid var(--color-black);
  border-radius: 1.875rem;
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

.btn.btn-white:hover {
  background-color: var(--color-accent-hover);
  border: 0.0625rem solid var(--color-accent-hover);
  color: #fff;
}

.phone__link {
  font-weight: 600;
  color: #fff;
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  white-space: nowrap;
}

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

._padding_sections {
  padding: 3.75rem 0;
}

@media (max-width: 36rem) {
  ._padding_sections {
    padding: 2.375rem 0 0 0;
  }
}

.padding_block {
  padding: 2.5rem 0 0 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

@media (max-width: 36rem) {
  .padding_block {
    padding: 0;
  }
}

.title {
  text-transform: uppercase;
  padding: 1.875rem 0;
  border-bottom: 0.0625rem solid var(--color-border);
  margin-bottom: 1.875rem;
}

.hero__title {
  border-bottom: 0;
}

h1,
.h1 {
  font-weight: 900;
  font-size: var(--h1);
  line-height: 1.4em;
}

h1 strong,
.h1 strong {
  background-color: var(--color-accent);
  padding: 0 0.3125rem;
  font-weight: 900;
  white-space: nowrap;
}

.page__container article h1 {
  font-size: 3.375rem;
}

@media (max-width: 62rem) {
  h1,
  .h1 {
    font-size: 3rem;
  }
}

@media (max-width: 36rem) {
  h1,
  .h1 {
    font-size: 2.0625rem;
  }

  .page__container article h1 {
    font-size: 1.875rem;
  }
}

h2,
.h2 {
  font-size: var(--h2);
  font-weight: 800;
  text-transform: uppercase;
  line-height: 116.666667%;
}

h2 strong,
.h2 strong {
  display: inline-block;
  background-color: var(--color-accent);
  padding-left: 0.3125rem;
  padding-right: 0.3125rem;
  font-weight: 800;
}

@media (max-width: 62rem) {
  h2,
  .h2 {
    font-size: 2.375rem;
  }
}

@media (max-width: 36rem) {
  h2,
  .h2 {
    font-size: 1.75rem;
  }
}

h3,
.h3 {
  font-weight: 600;
  font-size: 2.5rem;
  line-height: 100%;
  margin-bottom: 0.5625rem;
}

h3 strong,
.h3 strong {
  display: inline-block;
  background-color: var(--color-accent);
  padding-left: 0.3125rem;
  padding-right: 0.3125rem;
  font-weight: 600;
}

@media (max-width: 62rem) {
  h3,
  .h3 {
    font-size: 1.875rem;
  }
}

@media (max-width: 36rem) {
  h3,
  .h3 {
    font-size: 1.75rem;
  }
}

p:not(:last-child) {
  margin-bottom: 1rem;
}

input:not(.btn) {
  border-bottom: 0.125rem solid #000;
  padding: 10px 16px;
  margin-bottom: 1.25rem;
  font-size: 18px;
  width: 100%;
}

.form_auto {
  margin-top: 20px;
}

.form_auto .wpcf7-form-control-wrap {
  width: 100%;
}

@media (max-width: 62rem) {
  .form_auto .form-control_data {
    display: flex;
    flex-direction: column;
  }
}

@media (max-width: 36rem) {
  .form_auto {
    margin-top: 35px;
  }
}

@media only screen and (max-width: 1024px) {
  .form_auto {
    width: 100%;
  }
}

.form_auto input:not(.btn) {
  width: 100%;
  -webkit-appearance: none;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  text-align: left;
  color: #ffffff;
  background-color: #505050;
}

input::-webkit-date-and-time-value {
  text-align: left;
}

@media (max-width: 36rem) {
  input:not(.btn) {
    padding: 0.5625rem 1rem;
  }
}

.form--poli {
  padding: 1.25rem 0;
  font-weight: 400;
  font-size: 0.875rem;
  line-height: 150%;
  color: #b0b0b0;
  margin-top: -1.25rem;
}

address {
  font-style: normal;
  padding: 2.5rem 0;
}

.page__single {
  padding-top: 3.75rem;
}

@media (max-width: 48rem) {
  .page__single {
    padding-top: 2.5rem;
  }
}

/*
(i) Стили будут применяться ко
всем классам содержащим *__container
Например header__container, main__container и т.д.
Снипет (HTML): cnt
*/

[class*="__container"]:not(.fancybox__container) {
  max-width: 95.625rem;
  margin: 0 auto;
  padding: 0 0.9375rem;
}

html,
body {
  height: 100%;
  min-width: 20rem;
}

body {
  color: #fff;
  line-height: 1.4;
  font-family: "Montserrat";
  font-size: 1rem;
  font-weight: 300;
  -ms-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  background-color: var(--background-color);
}

.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;
}

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

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

/*================================================= form =================================================*/
.form {
  background-color: #fff;
  padding: 5.625rem;
  border-radius: var(--border-radius_form);
  color: var(--color-black);
}

@media (max-width: 75rem) {
  .form {
    padding: 2.5rem;
  }
}

@media (max-width: 48rem) {
  .form {
    padding: 1.25rem;
  }
}

.form__inner {
  gap: 1.25rem;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

@media (max-width: 48rem) {
  .form__inner {
    display: block;
  }
}

.form__header {
  -webkit-box-flex: 0;
  -ms-flex: 0 1 30rem;
  flex: 0 1 30rem;
}

.fansy_popap .form__header {
  margin-bottom: 1.875rem;
}

@media (max-width: 48rem) {
  .form__header {
    margin-bottom: 1.875rem;
  }
}

@media (max-width: 36rem) {
  .form__header {
    margin-bottom: 1.25rem;
    text-align: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    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;
  }
}

.form__header--title {
  font-weight: 600;
  font-size: 2.5rem;
  line-height: 100%;
  margin-bottom: 1.25rem;
}

.fansy_popap .form__header--desc,
.fansy_popap .form__header--title {
  text-align: center;
}

.fansy_popap .form__header__contacts {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

@media (max-width: 36rem) {
  .form__header--title {
    text-align: center;
    margin-bottom: 0.5625rem;
  }
}

.form__header--desc {
  font-weight: 300;
  font-size: 1.125rem;
  line-height: 150%;
  margin-bottom: 1.25rem;
}

@media (max-width: 36rem) {
  .form__header--desc {
    font-size: 0.875rem;
    margin-bottom: 0.75rem;
  }
}

.form__header__contacts {
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

@media (max-width: 36rem) {
  .form__header__contacts {
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }
}

.form__header--phone {
  font-weight: 600;
  font-size: 1.375rem;
  line-height: 100%;
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  margin-right: 2.5rem;
  padding: 0.625rem 0;
}

@media (max-width: 48rem) {
  .form__header--phone {
    font-size: 1rem;
    margin-right: 0.3125rem;
  }
}

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

.form__social-icon {
  margin: 0 0.3125rem;
  width: 2.5rem;
  height: 2.5rem;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 2.5rem;
  flex: 0 0 2.5rem;

  border-radius: 50%;
  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-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

@media (max-width: 36rem) {
  .form__social-icon {
    width: 2rem;
    height: 2rem;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 2rem;
    flex: 0 0 2rem;
  }
}

.form__social-icon [class*="fa-"]::before {
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  color: #fff;
  font-size: 1.25rem;
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  transition: all 0.3s ease 0s;
}

@media (max-width: 36rem) {
  .form__social-icon [class*="fa-"]::before {
    font-size: 1rem;
  }
}

.form__social-icon:hover {
  filter: brightness(0.9);
}

/*================================================= header =================================================*/
.header-banner-container {
  background-color: var(--color-accent-hover);
}

.header-banner-container p {
  padding: 4px 0px;
  text-align: center;
  font-weight: 500;
  font-size: 14px;
}

.header {
  background-color: #030303;
  /* background-color: var(--header-background); */
  /* border-bottom: 0.0625rem solid var(--header-border); */
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
}

.header__top {
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: 0.9375rem 0;
}

.header__logo {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 9.375rem;
  flex: 0 0 9.375rem;
}

.header__logo img {
  min-width: 100%;
  width: 140px;
  height: auto;
}

@media (max-width: 980px) {
  .header__logo img {
    width: 120px;
  }
}

.header__r {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-flex: 1;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.header__logo.mob__logo {
  -webkit-box-flex: initial;
  -ms-flex: initial;
  flex: initial;
  margin-bottom: 2.5rem;
}

.header__menu .menu-item {
  margin: 0.3125rem 1.25rem;
}

.header__menu .menu-item a {
  color: var(--color-menu);
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

.header__menu .menu-item a:hover {
  color: #fff;
}

.header__menu .menu-item:first-child {
  margin-left: 0;
}

.header__menu .menu-item:last-child {
  margin-right: 0;
}

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

.header__phone {
  margin-left: 2.5rem;
}

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

.header__btn {
  margin-left: 3.125rem;
}

.header__btn .btn {
  padding-left: 2.25rem;
  padding-right: 2.25rem;
}

@media (max-width: 75rem) {
  .icon-menu {
    background-color: transparent;
    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;
    position: relative;
    width: 2.5rem;
    height: 2.5rem;
    z-index: 5;
    background-color: var(--color-accent);
    padding: 0.5rem;
    border-radius: 50%;
  }

  .icon-menu span {
    position: relative;
    background-color: #fff;
    width: 100%;
    display: block;
    height: 0.0625rem;
    -webkit-transition: all 0.3s ease 0s;
    -o-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
  }

  .icon-menu span::before,
  .icon-menu span::after {
    content: "";
    display: block;
    position: absolute;
    left: 0;
    width: 100%;
    height: 0.0625rem;
    background-color: #fff;
    -webkit-transition: all 0.3s ease 0s;
    -o-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
  }

  .icon-menu span::before {
    top: -0.375rem;
  }

  .icon-menu span::after {
    bottom: -0.375rem;
  }

  ._open .icon-menu span {
    height: 0;
  }

  ._open .icon-menu span::before {
    -webkit-transform: rotate(45deg) translate(0.25rem, 0.25rem);
    -ms-transform: rotate(45deg) translate(0.25rem, 0.25rem);
    transform: rotate(45deg) translate(0.25rem, 0.25rem);
  }

  ._open .icon-menu span::after {
    -webkit-transform: rotate(-45deg) translate(0.25rem, -0.25rem);
    -ms-transform: rotate(-45deg) translate(0.25rem, -0.25rem);
    transform: rotate(-45deg) translate(0.25rem, -0.25rem);
  }
}

@media only screen and (max-width: 405px) {
  .header__social .social-item {
    flex: 0 0 28px;
    height: 28px;
    margin-right: 4px;
  }

  .header__social.header__social--mobile.social {
    margin-right: 0px;
  }

  .header__logo img {
    width: 80px;
    height: 80px;
    object-fit: contain;
  }

  .header__top .mob__header__btn {
    margin-left: 4px;
    margin-right: 4px;
  }

  .icon-menu {
    width: 28px;
    height: 28px;
  }
}

.header__social {
  padding: 1.25rem 0;
}

.social-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 2rem;
  flex: 0 0 2rem;
  height: 2rem;
  background-color: #fff;
  border-radius: 50%;
  overflow: hidden;
  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-right: 0.3125rem;
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

.form__social-icon,
.social-item {
  background-color: var(--color-accent) !important;
}

/* все цвета иконок */
.social-icon-android {
  background-color: #a4c639;
}

.social-icon-apple {
  background-color: #999;
}

.social-icon-behance {
  background-color: #1769ff;
}

.social-icon-bitbucket {
  background-color: #205081;
}

.social-icon-codepen {
  background-color: #000;
}

.social-icon-delicious {
  background-color: #39f;
}

.social-icon-deviantart {
  background-color: #05cc47;
}

.social-icon-digg {
  background-color: #005be2;
}

.social-icon-dribbble {
  background-color: #ea4c89;
}

.social-icon-elementor {
  background-color: #d30c5c;
}

.social-icon-envelope {
  background-color: #ea4335;
}

.social-icon-facebook,
.social-icon-facebook-f {
  background-color: #3b5998;
}

.social-icon-flickr {
  background-color: #0063dc;
}

.social-icon-foursquare {
  background-color: #2d5be3;
}

.social-icon-free-code-camp,
.social-icon-freecodecamp {
  background-color: #006400;
}

.social-icon-github {
  background-color: #333;
}

.social-icon-gitlab {
  background-color: #e24329;
}

.social-icon-globe {
  background-color: #818a91;
}

.social-icon-google-plus,
.social-icon-google-plus-g {
  background-color: #dd4b39;
}

.social-icon-houzz {
  background-color: #7ac142;
}

.social-icon-instagram {
  background-color: #262626;
}

.social-icon-jsfiddle {
  background-color: #487aa2;
}

.social-icon-link {
  background-color: #818a91;
}

.social-icon-linkedin,
.social-icon-linkedin-in {
  background-color: #0077b5;
}

.social-icon-medium {
  background-color: #00ab6b;
}

.social-icon-meetup {
  background-color: #ec1c40;
}

.social-icon-mixcloud {
  background-color: #273a4b;
}

.social-icon-odnoklassniki {
  background-color: #f4731c;
}

.social-icon-pinterest {
  background-color: #bd081c;
}

.social-icon-product-hunt {
  background-color: #da552f;
}

.social-icon-reddit {
  background-color: #ff4500;
}

.social-icon-rss {
  background-color: #f26522;
}

.social-icon-shopping-cart {
  background-color: #4caf50;
}

.social-icon-skype {
  background-color: #00aff0;
}

.social-icon-slideshare {
  background-color: #0077b5;
}

.social-icon-snapchat {
  background-color: #fffc00;
}

.social-icon-soundcloud {
  background-color: #f80;
}

.social-icon-spotify {
  background-color: #2ebd59;
}

.social-icon-stack-overflow {
  background-color: #fe7a15;
}

.social-icon-steam {
  background-color: #00adee;
}

.social-icon-stumbleupon {
  background-color: #eb4924;
}

.social-icon-telegram {
  background-color: #2ca5e0;
}

.social-icon-thumb-tack {
  background-color: #1aa1d8;
}

.social-icon-tripadvisor {
  background-color: #589442;
}

.social-icon-tumblr {
  background-color: #35465c;
}

.social-icon-twitch {
  background-color: #6441a5;
}

.social-icon-twitter {
  background-color: #1da1f2;
}

.social-icon-viber {
  background-color: #665cac;
}

.social-icon-vimeo {
  background-color: #1ab7ea;
}

.social-icon-vk {
  background-color: #45668e;
}

.social-icon-weibo {
  background-color: #dd2430;
}

.social-icon-weixin {
  background-color: #31a918;
}

.social-icon-whatsapp {
  background-color: #25d366;
}

.social-icon-wordpress {
  background-color: #21759b;
}

.social-icon-xing {
  background-color: #026466;
}

.social-icon-yelp {
  background-color: #af0606;
}

.social-icon-youtube {
  background-color: #cd201f;
}

.social-item:last-child {
  margin-right: 0;
}

.social-item:hover {
  opacity: 0.9;
}

.social-icon [class*="fa-"]::before {
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  color: #fff;
}

.social-text {
  font-size: 0.0006rem;
  padding: 0;
  margin: 0;
  opacity: 0;
  position: absolute;
}

.header__social,
.mob__header__btn,
.mob__logo {
  display: none;
}

.header__social.header__social--mobile {
  display: none;
}

.header__social.header__social--1 {
  display: flex;
  padding: 0;
  width: 64px;
  margin-left: 0.9375rem;
}

@media (max-width: 75rem) {
  .header__social.header__social--mobile {
    display: flex;
    width: 64px;
    padding: 0;
    margin-right: 0.9375rem;
  }

  .header__social.header__social--1 {
    display: none;
  }

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

  .header__menu {
    width: 100%;
    margin-bottom: 1.875rem;
  }

  .header__menu .menu {
    width: 100%;
    padding: 0 0.9375rem;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }

  .header__menu .menu__inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }

  .header__menu .menu-item {
    margin: 0 0 0.625rem 0;
    width: 100%;
    text-align: left;
  }

  .header__r {
    -webkit-transform: translateX(-150%);
    -ms-transform: translateX(-150%);
    transform: translateX(-150%);
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    height: 100vh;
    background-color: var(--background-color);
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    padding-top: 1.1875rem;
    padding-left: 0.9375rem;
    padding-right: 0.9375rem;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    overflow-y: auto;
    padding-bottom: 1.875rem;
    -webkit-transition: all 0.3s ease 0s;
    -o-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
  }

  .header__r .header__btn,
  .header__r .header__phone {
    margin-left: 0;
  }

  .header__r .header__phone {
    margin-bottom: 1.25rem;
  }

  .mob__header__btn {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-left: auto;
    margin-right: 0.9375rem;
  }

  .mob__header__btn .btn {
    padding: 0.375rem 0.45rem;
  }

  .mob__logo {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-bottom: 1.25rem;
  }

  ._open .header__r {
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }

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

/*================================================= header megamenu =================================================*/

.header-avtopark-link-container {
  display: flex;
  align-items: center;
}

.avtopark-link {
  display: flex;
  align-items: center;
  padding: 0 !important;
}

@media (max-width: 768px) {
  .modal_booking {
    font-size: 12px;
  }

  .avtopark-link,
  .header__menu .menu-item > a {
    text-transform: uppercase !important;
    font-weight: 600 !important;
    color: #fff !important;
  }

  .header__menu .menu-item > .sub-menu {
    padding-left: 0 !important;
  }

  .megamenu-title-mobile,
  .header__menu .menu-item > .sub-menu li > a {
    text-transform: initial !important;
    font-weight: 400 !important;
    color: #b0b0b0 !important;
  }

  .megamenu-item-mobile.open .megamenu-title-mobile {
    color: #fff !important;
  }
}

.avtopark-link {
  margin: 0.3125rem 0.5rem;
  margin-left: 0;
  padding: 0px 0px 15px;
  color: var(--color-menu);
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

a.avtopark-link svg {
  margin-left: 8px;
  transform: rotate(180deg);
  transition: var(--transition);
}

a.avtopark-link:hover svg,
.avtopark-link-container:hover svg {
  transform: rotate(0deg);
}

.avtopark-link:hover,
.avtopark-link-container:hover svg {
  color: var(--color-border-block);
}

.megamenu-model-item:hover .megamenu-model-link {
  color: var(--color-accent-hover);
}

.avtopark-link-container:hover .megamenu-content {
  opacity: 1;
  visibility: visible;
}

.megamenu .megamenu-trigger-item {
  display: none;
}

.megamenu {
  position: relative;
}

.megamenu #primary-menu li {
  padding: 10px 0px;
}

.megamenu-content {
  position: absolute;
  top: 65px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  width: 1156px;
  display: block !important;
  opacity: 0;
  visibility: hidden;
  transition:
    opacity 0.3s ease,
    visibility 0.3s ease;
}

/* 
.megamenu .megamenu-content.active {
  opacity: 1;
  visibility: visible;
} */

ul.megamenu-categories {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  background-color: #292929;
}

.megamenu-category {
  border: 1px solid #3b3b3b;
  color: var(--color-border-block);
  font-size: 26px;
  font-weight: 900;
  line-height: 54px;
  text-align: center;
  text-transform: uppercase;
  transition: var(--transition);
  cursor: pointer;
}

.megamenu-category:hover,
.megamenu-category.active {
  border-color: var(--color-accent);
  background-color: var(--color-accent);
}

.car-tab-info {
  padding: 0px 34px 20px;
  display: grid;
  /* Показываем активный таб */
  gap: 40px;
  justify-content: space-between;
  grid-template-columns: repeat(8, min-content);
  background-color: #3b3b3b;
}

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

.car-class-list,
.car-brand-list {
  padding: 20px 34px;
}

.car-tab-info.car-model-list {
  display: block;
}

a.car-class-item,
a.car-brand-item {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  font-size: 14px;
  transition: var(--transition);
  text-align: center;
}

a.car-class-item:hover,
a.car-brand-item:hover {
  color: var(--color-accent-hover);
}

.car-class-item img {
  max-width: 75px;
}

.megamenu-models-container {
  column-count: 4;
  gap: 30px;
}

ul.megamenu-models-section {
  padding: 15px 0px 0px;
  break-inside: avoid;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

ul.megamenu-models-section + ul.megamenu-models-section {
  padding: 15px 0px 0px;
}

.megamenu-models-section-title {
  width: 100%;
  padding: 0px 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  background-color: #292929;
  color: var(--color-border-block);
  font-size: 16px;
  font-weight: 900;
  line-height: 36px;
}

.megamenu-model-item {
  width: 100%;
  border-bottom: 1px solid #292929;
  transition: var(--transition);
}

.megamenu-model-item:hover {
  border-color: var(--color-accent-hover);
}

.megamenu-model-link {
  width: 100%;
  padding: 8px 0px;
  display: block;
  color: var(--color-border-block);
  font-size: 14px;
  font-weight: 400;
  line-height: 22.4px;
  transition: var(--transition);
}

.megamenu-mobile {
  display: none;
}

@media (max-width: 75rem) {
  a.avtopark-link svg {
    display: none;
  }

  .megamenu-content {
    display: none !important;
  }

  .header-avtopark-link-container {
    flex-direction: column;
    align-items: flex-start;
  }

  .avtopark-link-container {
    padding: 0 0.9375rem;
    margin: 0 0 0.625rem 0;
    width: 100%;
    text-align: left;
  }

  .avtopark-link-container:hover .megamenu-content {
    opacity: 0;
    visibility: hidden;
  }

  .megamenu-mobile {
    margin: 18px 0px 0px;
    display: block;
  }

  .megamenu-item-mobile {
    margin-bottom: 0px;
    border-bottom: 1px solid #3b3b3b;
    overflow: hidden;
  }

  .megamenu-title-mobile {
    width: 100%;
    text-align: left;
    padding: 16px 14px;
    font-size: 16px;
    background-color: transparent;
    border: none;
    outline: none;
    cursor: pointer;
    font-size: 20px;
    font-weight: 900;
    line-height: 24.38px;
    color: var(--color-border-block);
    text-transform: uppercase;
  }

  .megamenu-title-mobile.active {
    background-color: var(--color-accent);
    border-color: var(--color-accent);
  }

  .megamenu-item-content {
    display: none;
    padding: 40px 8px;
  }

  .car-class-list,
  .car-brand-list,
  .car-model-list {
    padding: 0px;
    background-color: transparent;
  }

  .car-tab-info {
    grid-template-columns: repeat(5, 1fr);
  }

  .megamenu-models-container {
    column-count: 3;
  }
}

@media only screen and (max-width: 767px) {
  .megamenu-models-container {
    column-count: 2;
    column-gap: 16px;
  }

  .megamenu-item-content {
    padding: 20px 0px;
  }

  .car-tab-info {
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
  }
}

@media only screen and (max-width: 480px) {
  .megamenu-models-section-title {
    padding: 8px 6px;
  }

  .megamenu-models-section-title span {
    font-size: 12px;
    line-height: 16.8px;
  }

  .megamenu-title-mobile {
    font-size: 18px;
  }

  .avtopark-link-container,
  .header__menu .menu {
    padding: 0px;
  }

  .car-tab-info {
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
  }

  .car-class-item img {
    max-width: 55px;
  }

  a.car-class-item,
  a.car-brand-item {
    font-size: 12px;
  }
}

/* Содержимое моб‑блока скрыто по умолчанию */
#mobile-megamenu .megamenu-item-content {
  display: none;
}

/* Активный пункт */
#mobile-megamenu .megamenu-item-mobile.open .megamenu-item-content {
  display: block;
}

/* (по желанию) подсветка активной кнопки */
#mobile-megamenu .megamenu-item-mobile.open .megamenu-title-mobile {
  background: #ff0001;
  /* твой акцент */
  color: #fff;
}

/*================================================= hero =================================================*/
.hero {
  width: 100%;
  position: relative;
  min-height: 39.5rem;
  max-height: 50rem;
  height: 100vh;
}

.hero h1,
.hero .h1 {
  font-size: 5rem;
}

/* 768 */
@media (max-width: 48rem) {
  .hero h1,
  .hero .h1 {
    font-size: 4rem;
  }
}

/* 576 */
@media (max-width: 36rem) {
  .hero h1,
  .hero .h1 {
    font-size: 2.125rem;
  }
}

@media (max-width: 36rem) {
  .hero {
    height: 38rem;
    min-height: initial;
    max-height: initial;
  }
}

@media (max-width: 26rem) {
  .hero {
    height: 40rem;
  }
}

.hero__inner {
  position: relative;
  z-index: 2;
  padding-top: 3.75rem;
  padding-bottom: 1.875rem;
}

@media (max-width: 36rem) {
  .hero__inner {
    padding-top: 1.875rem;
  }
}

.video__item {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  z-index: -1;
}

.symbols {
  text-align: center;
}

.symbols span:nth-child(1) {
  display: block;
  text-align: center;
}

@media (max-width: 36rem) {
  .symbols span:nth-child(1) {
    text-align: center;
  }
}

.symbols span:nth-child(2) {
  display: inline-block;
  padding: 0 0.3125rem;
  background-color: var(--color-accent);
}

.symbols span:nth-child(3) {
  display: block;
  text-align: right;
}

@media (max-width: 36rem) {
  .symbols span:nth-child(3) {
    text-align: center;
  }
}

.hero__inner {
  position: relative;
  margin: 0 auto;
  max-width: 75rem;
  height: 100%;
}

.hero__container {
  height: 100%;
}

.hero__title {
  margin: 0 auto 0;
}

.hero__cat_nav {
  display: flex;
  justify-content: center;
  margin-bottom: 20px;
  /*   position: absolute;
  top: 7.25rem;
  right: 0;
  left: 0;
  padding-left: 24.375rem; */
}

.hero__cat_nav.hero__city {
  /* 	top: auto;
	 right: auto;
	    left: 11rem;

	bottom: 13%;
	padding-left: 0; */
}

.hero__cat_nav.hero__city ul li a {
  font-size: 1.25rem;
  border: 0.0625rem solid #fff;
  background: transparent;
  color: #fff;
}

.hero__cat_nav.hero__city ul li a:hover {
  opacity: 1;
  border: 0.0625rem solid var(--color-accent-hover);
  color: var(--color-accent-hover);
}

@media (max-width: 62rem) {
  .hero__cat_nav {
    /*     top: 4.9375rem;
    padding-left: 15.375rem; */
  }

  .hero__cat_nav.hero__city {
    /*     bottom: 11%; */
  }
}

@media (max-width: 48rem) {
  .hero__cat_nav {
    /*     position: initial;
    padding-left: 0;
    margin-bottom: 1.25rem; */
  }

  .hero__cat_nav.hero__city {
    /*     margin-top: 1.25rem; */
  }
}

.hero__cat_nav ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  justify-content: center;
  /* overflow-x: auto; */
}

.hero__cat_nav ul li {
  margin-right: 0.625rem;
}

.hero__cat_nav ul li:last-child {
  margin-right: 0;
}

.hero__cat_nav ul li a {
  display: inline-block;
  margin-bottom: 0.3125rem;
  padding: 0.25rem 1rem;
  border-radius: 1.875rem;
  background-color: var(--color-accent-hover);
  border: 0.0625rem solid var(--color-accent);
  color: #fff;
  font-size: 0.875rem;
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  white-space: nowrap;
}

.hero__cat_nav ul li a:hover {
  opacity: 0.9;
}

.hero__link {
  /*   width: 9.375rem;
  height: 9.375rem; */
  width: fit-content;
  min-width: max-content;
  height: 2rem;
  border: 1px solid var(--color-accent);
  background-color: var(--color-accent);
  color: #fff;
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  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;
  border-radius: 999px;
  overflow: hidden;
  font-weight: 400;
  font-size: 1rem;
  /*   line-height: 150%; */
  text-transform: uppercase;
  color: #ffffff;
  padding: 0 1.0625rem;
  text-align: center;
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  transition: all 0.3s ease 0s;
}

.hero__link:hover {
  background-color: transparent;
}

@media (max-width: 36rem) {
  .hero__link {
    /*     width: 7.1875rem;
    height: 7.1875rem; */
    font-size: 0.875rem;
    margin-left: auto;
    margin-right: auto;
    position: relative;

    transform: translateX(0);
    bottom: 0;
    left: 0;
  }
}

/*================================================= cat_list =================================================*/
.list__cart {
  display: grid;
  gap: 1.875rem;
  grid-template-columns: repeat(auto-fill, minmax(31rem, 1fr));
  margin-bottom: 1.875rem;
}

@media (max-width: 36rem) {
  .list__cart {
    gap: 0.625rem;
    grid-template-columns: repeat(auto-fill, minmax(17.5rem, 1fr));
  }
}

.cart__item {
  /*border-bottom: 0.0625rem solid var(--color-cart-price);*/
  /*padding-bottom: 1.25rem;*/
  /*padding-top: 1.875rem;*/
}

@media (max-width: 36rem) {
  .cart__item {
    padding-top: 1rem;
  }
}

.cart__img {
  padding-bottom: 60.606061%;
  margin-bottom: 1.25rem;
}

.cart__body {
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

@media (max-width: 36rem) {
  .cart__body {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    width: 100%;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
  }
}

@media (max-width: 36rem) {
  .cart__header {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 1.25rem;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    margin-bottom: 1.25rem;
  }
}

@media (max-width: 30rem) {
  .cart__header {
    display: block;
  }
}

.cart__title {
  display: block;
  font-weight: 500;
  font-size: 1.25rem;
  line-height: 100%;
  color: #fff;
  margin-bottom: 0.375rem;
}

.cart__price {
  font-weight: 600;
  font-size: 1.125rem;
  line-height: 100%;
  color: var(--color-cart-price);
}

.cart__price.cart__price-old {
  text-decoration: line-through;
  font-size: 1rem;
  font-weight: 400;
  margin-bottom: 5px;
  color: #838383;
}

@media (max-width: 36rem) {
  .cart__btn {
    width: 100%;
  }
}

.cart__btn .btn {
  width: 100%;
}

.cart__all-link__inner {
  padding-top: 1.875rem;
}

@media (max-width: 36rem) {
  .cart__all-link__inner {
    padding-top: 1.25rem;
  }
}

.cart__all-link {
  border: 0.0625rem solid var(--color-border);
  padding: 1.875rem;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  width: 100%;
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

@media (max-width: 36rem) {
  .cart__all-link {
    padding: 1.25rem;
  }
}

.cart__all-link span {
  font-weight: 500;
  font-size: 1.25rem;
  line-height: 100%;
  color: #ffffff;
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

@media (max-width: 36rem) {
  .cart__all-link span {
    font-size: 1.125rem;
  }
}

.cart__all-link svg path,
.cart__all-link svg path:nth-child(2) {
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

@media (max-width: 36rem) {
  .cart__all-link svg {
    width: 2.5rem;
  }
}

.cart__all-link:hover {
  border: 0.0625rem solid var(--color-accent-hover);
}

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

.cart__all-link:hover svg path {
  stroke: var(--color-accent-hover);
}

.cart__all-link:hover svg path:nth-child(2) {
  fill: var(--color-accent-hover);
}

/*================================================= list__steps =================================================*/
.rent_dev .list__steps__list {
  grid-template-columns: repeat(2, minmax(22.5rem, 1fr));
}

.list__steps__list {
  counter-reset: nomer;
  display: grid;
  gap: 2.5rem;
  grid-template-columns: repeat(auto-fill, minmax(22.5rem, 1fr));
  margin-bottom: 2.5rem;
}

@media (max-width: 36rem) {
  .list__steps__list {
    gap: 1.25rem;
    grid-template-columns: repeat(auto-fill, minmax(17.5rem, 1fr));
    margin-bottom: 1.25rem;
  }
}

@media only screen and (max-width: 767px) {
  .rent_dev .list__steps__list {
    grid-template-columns: 1fr;
  }
}

.list__steps__item {
  padding: 2.5rem;
  border: 1px solid var(--color-border-block);
  border-radius: var(--border-radius_block);
  gap: 0.625rem;
  position: relative;
  font-size: 1.125rem;
  color: var(--color-greey);
}

.list__steps__item::before {
  counter-increment: nomer;
  content: "0" counter(nomer);
  font-weight: 100;
  font-size: 1.875rem;
  line-height: 100%;
  color: #ffffff;
  margin-bottom: 0.625rem;
}

.rent_casco_list .list__steps__item::before {
  counter-increment: nomer;
  content: "0" counter(nomer) " шаг";
  font-size: 30px;
  font-weight: 100;
}

@media (max-width: 36rem) {
  .list__steps__item {
    padding: 1.25rem;
  }
}

.list__steps__item--title {
  display: block;
  font-weight: 600;
  font-size: 1.625rem;
  color: #fff;
}

/*================================================= list__servis =================================================*/
.list__servis {
  color: #fff;
}

.list__servis__inner {
  display: grid;
  gap: 2.5rem;
  grid-template-columns: repeat(auto-fill, minmax(30rem, 1fr));
  margin-bottom: 0.625rem;
}

@media (max-width: 36rem) {
  .list__servis__inner {
    gap: 1.25rem;
    grid-template-columns: repeat(auto-fill, minmax(17.5rem, 1fr));
  }
}

.list__servis__item {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  padding: 28% 1.875rem 1.875rem 1.875rem;
  position: relative;
  z-index: 1;
  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;
}

@media (max-width: 36rem) {
  .list__servis__item {
    padding: 26% 1.25rem 1.25rem 1.25rem;
  }
}

.list__servis__item:before {
  content: "";
  display: block;
  position: absolute;
  z-index: 0;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  opacity: 0.5;
  background-color: var(--color-black);
  z-index: -1;
}

.list__servis__item--title {
  font-weight: 500;
  font-size: 1.25rem;
  line-height: 100%;
  margin-bottom: 0.625rem;
}

.list__servis__item--text {
  font-weight: 300;
  font-size: 1rem;
  line-height: 150%;
}

/*================================================= offer =================================================*/
.offer {
  color: var(--color-black);
}

.offer__container {
  display: grid;
  gap: 2.5rem;
  grid-template-columns: repeat(auto-fit, minmax(31.25rem, 1fr));
  margin-bottom: 0.625rem;
}

@media (max-width: 81.25rem) {
  .offer__container {
    grid-template-columns: repeat(auto-fit, minmax(28.75rem, 1fr));
  }
}

@media (max-width: 62rem) {
  .offer__container {
    grid-template-columns: repeat(auto-fit, minmax(23.75rem, 1fr));
  }
}

@media (max-width: 36rem) {
  .offer__container {
    grid-template-columns: repeat(auto-fit, minmax(17.5rem, 1fr));
  }
}

.offer__item {
  background: #f2f2f2;
  border-radius: var(--border-radius_block);
  padding: 5.625rem 2.5rem 2.5rem 5.625rem;
  position: relative;
  overflow: hidden;
}

.offer__item-container {
  display: flex;
  gap: 50px;
  justify-content: space-between;
}

@media (max-width: 40rem) {
  .offer__item-container {
    gap: 25px;
    flex-direction: column;
  }
}

@media (max-width: 62rem) {
  .offer__item {
    padding: 3.625rem 2.5rem 2.5rem 3.625rem;
  }
}

@media (max-width: 48rem) {
  .offer__item {
    padding: 1.875rem;
  }
}

@media (max-width: 36rem) {
  .offer__item {
    padding: 1.25rem;
  }
}

.offer--text {
  font-weight: 300;
  font-size: 1.125rem;
  line-height: 150%;
  color: var(--color-black);
  margin-bottom: 0.8125rem;
}

@media (max-width: 78.5rem) {
  .offer--text {
    margin-bottom: 1.875rem;
  }
}

.offer--btn {
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

@media (max-width: 62rem) {
  .offer--btn {
    margin-bottom: 1.875rem;
  }
}

@media (max-width: 2.5rem) {
  .offer--btn {
    margin-bottom: 0;
  }
}

.offer--btn .btn {
  font-weight: 400;
  font-size: 0.875rem;
  line-height: 1;
  color: var(--color-black);
}

.offer--img {
  width: 20rem;
  height: 13rem;
}

@media (max-width: 62rem) {
  .offer--img {
    width: 26rem;
    height: auto;
  }
}

@media (max-width: 30rem) {
  .offer--img {
    width: auto;
    height: auto;
  }
}

.offer--img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: contain;
}

/*================================================= youtube =================================================*/
.youtube__list {
  display: grid;
  gap: 2.5rem;
  grid-template-columns: repeat(auto-fill, minmax(23.75rem, 1fr));
  margin-bottom: 2.5rem;
}

@media (max-width: 48rem) {
  .youtube__list {
    grid-template-columns: repeat(auto-fill, minmax(19.625rem, 1fr));
    gap: 1.25rem;
  }
}

.youtube__item {
  padding-bottom: 56.603774%;
}

/*================================================= spolers =================================================*/
.accordion__item:not(.accordion__item_show) .accordion__body {
  display: none;
}

.accordion__item {
  padding: 1.875rem 0;
  border-bottom: 1px solid var(--color-border);
}

@media (max-width: 36rem) {
  .accordion__item {
    padding: 1.25rem 0;
  }
}

.accordion__item.accordion__item_show .accordion__header svg,
.accordion__item.accordion__item_slidedown .accordion__header svg {
  -webkit-transform: rotate(-90deg);
  -ms-transform: rotate(-90deg);
  transform: rotate(-90deg);
}

.accordion__item.accordion__item_slidedown .accordion__header,
.accordion__item.accordion__item_show .accordion__header {
  color: var(--color-accent-hover);
}

.accordion__item.accordion__item_slidedown svg circle,
.accordion__item.accordion__item_show svg circle {
  stroke: var(--color-accent-hover);
}

.accordion__item.accordion__item_slidedown svg path:nth-child(2),
.accordion__item.accordion__item_show svg path:nth-child(2) {
  fill: var(--color-accent-hover);
}

.accordion__header {
  pointer-events: none;
  position: relative;
  font-size: 1.5rem;
  line-height: 150%;
  font-weight: 500;
  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;
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  cursor: pointer;
}

@media (max-width: 36rem) {
  .accordion__header {
    font-size: 1.125rem;
  }
}

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

.accordion__header:hover svg circle {
  stroke: var(--color-accent-hover);
}

.accordion__header:hover svg path:nth-child(2) {
  fill: var(--color-accent-hover);
}

.accordion__header svg {
  margin-left: 0.625rem;
  height: 3.125rem;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 3.125rem;
  flex: 0 0 3.125rem;
}

@media (max-width: 36rem) {
  .accordion__header svg {
    width: 2.5rem;
    height: 2.5rem;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 2.5rem;
    flex: 0 0 2.5rem;
  }
}

.accordion__content {
  padding-top: 0.75rem;
}

/*================================================= contacts =================================================*/
.contacts .list__steps__list {
  counter-reset: none;
}

.contacts .list__steps__item a {
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

.contacts .list__steps__item a:hover {
  color: var(--color-accent-hover);
}

.contacts .list__steps__item::before {
  display: none;
}

/*================================================= footer =================================================*/
#footer {
  margin-top: 3.75rem;
  background: var(--footer-background);
  border-top: 1px solid var(--footer-border-color);
  padding: 2.5rem 0;
  font-weight: 400;
  font-size: 1rem;
  line-height: 100%;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  color: var(--color-greey);
}

.sosials-list-title {
  margin-bottom: 10px;
}

.sosials-list {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 10px;
  gap: 10px;
}

.sosials-list .sosials-item a {
  display: flex;
  align-items: center;
  gap: 4px;
  transition: all 0.3s ease 0s;
  position: relative;
}

.sosials-list .sosials-item img {
  width: 26px;
  height: 26px;
}

.sosials-list .sosials-item a.sep:before {
  content: "*";
  font-size: 12px;
  position: absolute;
  left: 23px;
  top: 0px;
  display: block;
}

.socials-list__wrap {
  display: flex;
  flex-direction: column;
}

.socials-list-meta {
  font-size: 14px;
  margin-bottom: 20px;
  color: var(--placeholder);
}

@media (max-width: 36rem) {
  #footer {
    padding-top: 1.875rem;
    padding-bottom: 3.125rem;
  }
}

#footer a:hover {
  color: var(--color-accent-hover);
}

.footer__container {
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

@media (max-width: 36rem) {
  .footer__container {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
}

@media (max-width: 30rem) {
  .footer__container {
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
  }
}

.footer__container > a {
  padding: 0.625rem 0;
}

@media (max-width: 30rem) {
  .footer__logo {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }

  .footer__logo a {
    margin-right: auto;
  }

  .footer__logo img {
    margin-bottom: 1rem;
  }
}

.footer__logo svg,
.footer__logo img {
  width: 6.25rem;
  margin-right: 1.25rem;
}

.copy {
  white-space: nowrap;
}

@media (max-width: 30rem) {
  .copy {
    margin-bottom: 1rem;
  }
}

.fansy_popa {
  border-radius: 0.625rem;
  overflow: hidden;
}

.fansy_popap .form__inner {
  display: block;
}

.list__steps__form {
}

.fansy_popap .form {
  padding: 0;
}

.fansy_popa .form__header {
  text-align: center;
  margin-bottom: 1.625rem;
}

.fansy_popa .form__header__contacts {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

#popap_sale {
  z-index: 1;
  position: fixed;
  bottom: 30px;
  left: 20px;
  padding: 1.25rem;
  font-size: 1.25rem;
}

@media (max-width: 30rem) {
  #popap_sale {
    padding: 1rem;
    font-size: 1rem;
  }
}

/*================================================= breadcrumbs =================================================*/
.breadcrumbs {
  padding: 1.25rem 0;
  margin-top: -1.875rem;
  flex-wrap: wrap;
}

.cars-fill__container .breadcrumbs {
  margin-top: 1rem;
}

.breadcrumbs li {
  padding: 0 0.625rem;
  position: relative;
}

.breadcrumbs li a:after {
  content: "";
  position: absolute;
  top: 0;
  right: -0.75rem;
  bottom: 0;
  width: 1px;
  background-color: #373737;
}

.breadcrumbs li a {
  position: relative;
  font-size: 0.75rem;
  font-weight: 300;
  color: #b0b0b0;
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

.breadcrumbs li a:hover {
  color: var(--color-accent-hover);
}

.breadcrumbs li:last-child {
  color: #373737;
  font-size: 0.75rem;
  font-weight: 300;
  padding-top: 0.25rem;
}

/*================================================= single post =================================================*/
/* Slider */
.slick-slider {
  position: relative;
  display: block;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -ms-touch-action: pan-y;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent;
}

.slick-list {
  position: relative;
  display: block;
  margin: 0;
  padding: 0;
}

.slick-list:focus {
  outline: none;
}

.slick-list.dragging {
  cursor: pointer;
  cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list {
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

.slick-track {
  position: relative;
  top: 0;
  left: 0;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.slick-track:before,
.slick-track:after {
  display: table;
  content: "";
}

.slick-track:after {
  clear: both;
}

.slick-loading .slick-track {
  visibility: hidden;
}

.slick-slide {
  display: none;
  float: left;
  height: 100%;
  min-height: 1px;
}

[dir="rtl"] .slick-slide {
  float: right;
}

.slick-slide img {
  display: block;
}

.slick-slide.slick-loading img {
  display: none;
}

.slick-slide.dragging img {
  pointer-events: none;
}

.slick-initialized .slick-slide {
  display: block;
}

.slick-loading .slick-slide {
  visibility: hidden;
}

.slick-vertical .slick-slide {
  display: block;
  height: auto;
  border: 1px solid transparent;
}

.slick-arrow.slick-hidden {
  display: none;
}

.sound-avas_controllButton {
  position: absolute;
  left: 50%;
  bottom: 20px;
  width: 56px;
  transform: translateX(-23px);
  height: 56px;
  background: #fff;
  border-radius: 50%;
  overflow: hidden;
}

.sound-avas_playButton {
  background: url("data:image/svg+xml,%3C%3Fxml version='1.0' encoding='utf-8'%3F%3E%3C!-- Uploaded to: SVG Repo, www.svgrepo.com, Generator: SVG Repo Mixer Tools --%3E%3Csvg width='24px' height='24px' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cg clip-path='url(%23clip0_15_174)'%3E%3Crect width='24' height='24' fill='white'/%3E%3Cpath d='M3 16V8H6L11 4V20L6 16H3Z' stroke='%23000000' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M13 9C13 9 15 9.5 15 12C15 14.5 13 15 13 15' stroke='%23000000' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M15 7C15 7 18 7.83333 18 12C18 16.1667 15 17 15 17' stroke='%23000000' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M17 5C17 5 21 6.16667 21 12C21 17.8333 17 19 17 19' stroke='%23000000' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/g%3E%3Cdefs%3E%3CclipPath id='clip0_15_174'%3E%3Crect width='24' height='24' fill='white'/%3E%3C/clipPath%3E%3C/defs%3E%3C/svg%3E")
    center center no-repeat;
  width: 100%;
  height: 100%;
}

.sound-avas_pauseButton {
  display: none;
  background: #fff
    url("data:image/svg+xml,%3Csvg width='56' height='56' viewBox='0 0 56 56' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='28' cy='28' r='28' fill='white'/%3E%3Crect x='21' y='18' width='5' height='20' fill='black'/%3E%3Crect x='30' y='18' width='5' height='20' fill='black'/%3E%3C/svg%3E%0A")
    center center no-repeat;
  width: 100%;
  height: 100%;
  margin: -56px 0 0;
}

.js_soundAvas.play .sound-avas_pauseButton {
  display: block;
}

.single__slider {
  position: relative;
  padding-top: 1.875rem;
  width: 100%;
  max-width: 70%;
}

.single__slider > div {
  position: relative;
}

.single__slider .label-auto {
  position: absolute;
  top: 40px;
  z-index: 1;
}

.sl-count {
  position: absolute;
  bottom: 20px;
  left: 10px;
  font-size: 1.625rem;
}

@media (max-width: 48rem) {
  .sl-count {
    bottom: 35px;
    font-size: 1.25rem;
  }
}

.single__slider .slick-list {
  overflow: hidden;
}

.slick-arrow {
  font-size: 0.01px;
  padding: 0;
  margin: 0;
  line-height: 0;
  width: 2.5rem;
  height: 2.5rem;
  background-color: var(--color-accent);
  border-radius: 50%;
  overflow: hidden;
  position: absolute;
  bottom: 20px;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' width='11' height='18' viewBox='0 0 11 18' fill='none'%3e%3cpath d='M10.7083 9.69949L2.64143 17.7102C2.25235 18.0966 1.62159 18.0966 1.2326 17.7102L0.291727 16.7759C-0.0965889 16.3903 -0.0973554 15.7652 0.290111 15.3785L6.68314 9.00001L0.290111 2.6215C-0.0973554 2.23487 -0.0965889 1.60976 0.291727 1.22405L1.2326 0.289721C1.62168 -0.0965737 2.25244 -0.0965737 2.64143 0.289721L10.7082 8.30053C11.0973 8.68682 11.0973 9.3132 10.7083 9.69949Z' fill='white'%3e%3c/path%3e%3c/svg%3e");
  background-position: 1rem 0.75rem;
  background-repeat: no-repeat;
  background-size: 0.625rem;
  z-index: 10;
}

.slick-prev {
  right: 60px;
  -webkit-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  transform: rotate(180deg);
}

.slick-next {
  right: 10px;
  -webkit-transform: translateY(0) translateX(0);
  -ms-transform: translateY(0) translateX(0);
  transform: translateY(0) translateX(0);
}

.slick-dots {
  display: flex;
  justify-content: center;
  gap: 5px;
}

.slick-dots li button {
  font-size: 0;
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

@media (max-width: 48rem) {
  .slick-dots li button {
    width: 6px;
    height: 6px;
  }
}

.slick-dots li.slick-active button {
  background-color: var(--color-accent);
}

.catr-price_top {
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.catr-price {
  text-transform: none;
  font-weight: 600;
  font-size: 1.875rem;
  line-height: 140%;
}

.catr-price strong {
  font-weight: 600;
  padding: 0 0.625rem;
  display: inline-block;
  background-color: var(--color-accent);
}

/* 768 */
@media (max-width: 48rem) {
  .catr-price_top {
    display: block;
  }

  .catr-price {
    margin-bottom: 1.25rem;
  }

  .catr-price strong {
    display: inline-block;
  }
}

.single__slider__item {
  padding-bottom: 43.375rem;
}

@media (max-width: 36rem) {
  .single__slider__item {
    padding-bottom: 66%;
  }
}

.single__slider__item img {
  opacity: 0.4;
}

.slick-active .single__slider__item img {
  opacity: 1;
}

.single_post__title h2,
.single_post__title .h2 {
  font-size: 3.125rem;
}

@media (max-width: 62rem) {
  .single_post__title h2,
  .single_post__title .h2 {
    font-size: 2.1875rem;
  }
}

@media (max-width: 48rem) {
  .single_post__title h2,
  .single_post__title .h2 {
    font-size: 1.875rem;
  }
}

@media (max-width: 36rem) {
  .single_post__title h2,
  .single_post__title .h2 {
    font-size: 1.75rem;
  }
}

.single__text {
  font-size: 1.25rem;
  padding: 1.25rem 0;
  margin-bottom: 1.25rem;
}

@media (max-width: 30rem) {
  .single__text {
    font-size: 1rem;
  }
}

.auto_container {
  display: flex;

  gap: 30px;
}

.single-auto-sidebar {
  width: 100%;
  padding-top: 1.875rem;
}

@media (max-width: 64rem) {
  .auto_container {
    flex-direction: column;
    gap: 0;
  }

  .single__slider {
    max-width: 100%;
  }

  .single-auto-sidebar {
    padding-top: 0;
  }
}

.list__characteristics {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: repeat(3, 1fr);
  padding: 1.25rem 0 1.65rem 0;
  margin-bottom: 2.5rem;
}

.single__inner .list__characteristics {
  padding: 1.25rem 0 1.5rem 0;
}

.list__characteristics__item {
  position: relative;
  font-size: 1.625rem;
  font-weight: 600;
  color: #fff;
  line-height: 100%;
}

/*.single__inner .list__characteristics__item:not(:last-child) {*/
/*  border-right: 2px solid #ffffff;*/
/*}*/

@media (max-width: 64rem) {
  .single__inner .list__characteristics {
    grid-template-columns: repeat(2, 1fr);
    margin-bottom: 0;
  }

  .single__inner .list__characteristics__item {
    display: flex;
    flex-direction: column-reverse;
  }

  .single__inner .list__characteristics__item span {
    margin-bottom: 0 !important;
    margin-top: 1.25rem;
  }

  .single__inner .list__characteristics__item:nth-child(1) {
    order: 3;
  }

  .single__inner .list__characteristics__item:nth-child(2) {
    order: 4;
  }

  .single__inner .list__characteristics__item:nth-child(3) {
    order: 1;
  }

  .single__inner .list__characteristics__item:nth-child(4) {
    order: 2;
  }

  /*.single__inner .list__characteristics__item, .single__inner .list__characteristics__item:not(:last-child) {*/
  /*  border-right: 0;*/
  /*}*/

  .single__inner .list__characteristics__item:nth-child(2n) {
    text-align: left;
  }
}

.list__characteristics__item span {
  font-size: 1rem;
  font-weight: 100;
  line-height: 100%;
  display: inline-block;
  width: 100%;
  margin-bottom: 1.25rem;
}

.rent_price__item {
  padding: 4px 8px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  flex-direction: row;
  gap: 10px;
  justify-content: space-between;
  border: 2px solid var(--background-color);
  border-radius: 8px;
  transition: var(--transition);
  cursor: pointer;
}

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

.active.rent_price__item {
  background-color: var(--color-accent-hover);
}

.active.rent_price__item .rent_price__bottom--prices_time {
  color: var(--f-button-hover-bg);
}

.rent_price__list {
  display: flex;
  gap: 1.25rem;
  flex-direction: column;
  width: 100%;
}

.rent_price__top {
  font-weight: 600;
  font-size: 1.25rem;
  line-height: 130.769231%;
  min-width: 120px;
}

.rent_price__top {
  width: 130px;
}

.rent_price__bottom {
  width: auto;
}

.rent_price__bottom {
  text-align: right;
  align-items: flex-end;
}

@media (max-width: 64rem) {
  .rent_price__top {
    width: auto;
  }
}

.delivery-popup-link {
  cursor: pointer;
  border-bottom: 1px dashed #ffffff;
}

.rent_price__top--title {
}

.rent_price__top--time {
}

.rent_price__bottom--prices_old {
  font-weight: 400;
  font-size: 1.25rem;
  line-height: 100%;
  color: var(--color-greey);
  margin-bottom: 0.3125rem;
  text-decoration: line-through;
}

.rent_price__center {
  margin-bottom: 1.75rem;
  -webkit-box-flex: 1;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
}

.rent_price__center__item {
  border-top: 1px solid var(--color-greey);
  padding: 0.625rem 0;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin: 0 -0.3125rem;
}

.rent_price__center__item > span {
  margin: 0 0.3125rem;
}

.rent_price__center__item:last-child {
  border-bottom: 1px solid var(--color-greey);
}

.rent_price__bottom__prices {
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.rent_price__bottom--prices_curent {
  font-weight: 600;
  font-size: 1.25rem;
  line-height: 100%;
  color: #ffffff;
  margin-bottom: 0.3125rem;
}

.rent_price__bottom--prices_time {
  font-weight: 500;
  font-size: 1rem;
  line-height: 100%;
  color: var(--color-greey);
}

.rent_price__btn .btn {
  width: 2.5rem;
  height: 2.5rem;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 2.5rem;
  flex: 0 0 2.5rem;
  font-size: 0.01px;
  padding: 0;
  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;
}

.rent_price__btn .btn-red svg {
  margin: 0 auto;
}

/* =================================================================================================== */
.conditions__inner {
  padding-top: 2.5rem;
}

.conditions__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 2.5rem;
  margin-bottom: 2.5rem;
}

.conditions__list .list__characteristics__item {
  width: 32%;
  padding: 2.5rem;
  border: 0.0625rem solid var(--color-border-block);
  border-radius: var(--border-radius_block);
}

.conditions__list .list__characteristics__item small {
  padding-right: 2px;
}

.conditions__bottom {
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin-bottom: 3.75rem;
}

.conditions__bottom {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 2.5rem;
}

.conditions__bottom_l {
  width: 32%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  color: #fff;
  padding: 2.5rem;
  border: 0.0625rem solid var(--color-border-block);
  border-radius: var(--border-radius_block);
}

.conditions__bottom_l__top {
  font-size: 1.625rem;
  font-weight: 100;
  margin-bottom: 2.5rem;
}

.conditions__bottom_l__center {
  -webkit-box-flex: 1;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  font-size: 2.5rem;
  font-weight: 600;
  line-height: 1.3em;
}

.conditions__bottom_l__right {
  text-align: right;
}

.conditions__bottom_l svg {
  width: 5rem;
  height: 6.875rem;
}

.conditions__bottom_r {
  width: 67%;
}

/* 992 */
@media (max-width: 62rem) {
  .conditions__list,
  .conditions__bottom {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }

  .conditions__list .list__characteristics__item {
    width: 100%;
  }

  .conditions__bottom_r,
  .conditions__bottom_l {
    width: 100%;
  }
}

/* 576 */
@media (max-width: 36rem) {
  .list__characteristics {
    margin-bottom: 0;
  }

  .conditions__bottom_l,
  .conditions__list .list__characteristics__item {
    padding: 1.25rem;
  }

  .conditions__bottom_l__right {
    display: none;
  }

  .conditions__bottom_l__top {
    font-size: 1.25rem;
    margin-bottom: 1.25rem;
  }

  .conditions__list {
    gap: 1.25rem;
    margin-bottom: 1.25rem;
  }

  .conditions__bottom_l__center {
    font-size: 1.5rem;
  }

  .conditions__inner {
    padding-top: 1.25rem;
  }

  .conditions__bottom {
    margin-bottom: 0;
  }

  .contacts .list__steps__item a {
    font-size: 1.375rem;
  }

  .list__steps__item--title {
    font-size: 1.375rem;
  }
}

.single_video {
  padding-bottom: 50.2%;
  margin-bottom: 3.75rem;
}

.cars-fill__title {
  padding-top: 3.75rem;
}

/* 768 */
@media (max-width: 48rem) {
  .cars-fill__title {
    padding-top: 3.125rem;
  }
}

/* 576 */
@media (max-width: 36rem) {
  .cars-fill__title {
    padding-top: 1.75rem;
  }
}

.cars-fill__title strong {
  background-color: var(--color-accent);
}

/*.cars-fill__title h1,*/
/*.cars-fill__title .h1 {*/
/*  font-size: 3.375rem;*/
/*}*/

/* ================================================================================================== */
.offer.offer__usloviya .offer__container {
  margin-right: -0.9375rem;
  margin-left: -0.9375rem;
}

.offer.offer__usloviya .offer__item {
  padding: 2.5rem;
}

.offer.offer__usloviya h3 {
  font-size: 1.875rem;
}

.offer.offer__usloviya .btn-white {
  background-color: transparent;
}

.offer.offer__usloviya .btn-white:hover {
  background-color: var(--color-accent-hover);
}

.usloviya__inner {
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 2.5rem;
}

.usloviya__item {
  position: relative;
}

.usloviya__item .usloviya__title,
.usloviya__item .usloviya__text {
  position: relative;
  z-index: 2;
  color: #fff;
}

.usloviya__item-1,
.usloviya__item-2,
.usloviya__item-3 {
  -webkit-box-flex: 1;
  -ms-flex: 1 1 1px;
  flex: 1 1 1px;
}

.usloviya__item-1 .usloviya__img,
.usloviya__item-2 .usloviya__img,
.usloviya__item-3 .usloviya__img {
  padding-bottom: 51.162791%;
  margin-bottom: 0.9375rem;
}

.usloviya__item .usloviya__title {
  font-size: 1.25rem;
  font-weight: 500;
  margin-bottom: 0.9375rem;
}

.usloviya__item .usloviya__text {
  font-size: 0.875rem;
  font-weight: 300;
  line-height: 1.5em;
}

.usloviya__item .usloviya__text p:first-child {
  font-size: 1rem;
}

.usloviya__item .usloviya__text p:first-child strong {
  color: var(--color-accent);
  font-size: 1.375rem;
  font-weight: 400;
}

.usloviya__item-4 {
  width: 100%;
  height: 18.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-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  padding: 1.875rem;
  z-index: 2;
}

.usloviya__item-4 .usloviya__img {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
}

/* ==============================  Страница услуги  ===================================================================== */
.page__services_single {
  padding: 4rem 0;
}

@media (max-width: 48rem) {
  .page__services_single {
    padding: 2rem 0;
  }
}

@media (max-width: 36rem) {
  .page__services_single {
    padding: 1.7rem 0;
  }
}

.page__services_single--img {
  margin-bottom: 3.125rem;
}

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

#primary-menu li {
  position: relative;
}

#primary-menu .sub-menu {
  width: max-content;
  position: absolute;
  top: 0;
  opacity: 0;
  visibility: hidden;
  background-color: #000;
  padding: 1.875rem 0.9375rem 1.5625rem;
  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;
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  pointer-events: none;
}

@media (max-width: 75em) {
  #primary-menu .sub-menu {
    width: auto;
    position: relative;
    top: 0;
    opacity: 1;
    visibility: visible;
    background-color: transparent;
    padding-top: 0.5rem;
    -webkit-transition: none;
    -o-transition: none;
    transition: none;
  }
}

#primary-menu .sub-menu .menu-item {
  margin: 0.3125rem 0 0.625rem;
  /*white-space: nowrap;*/
}

#primary-menu .menu-item-has-children:hover .sub-menu {
  top: 100%;
  opacity: 1;
  visibility: visible;
  pointer-events: visible;
}

/* ==============================  event_car_list  ===================================================================== */
.event_car_list {
  display: grid;
  gap: 1.875rem;
  grid-template-columns: repeat(auto-fill, minmax(30.125rem, 1fr));
  margin-bottom: 1.875rem;
}

@media (max-width: 75rem) {
  .event_car_list {
    grid-template-columns: repeat(auto-fill, minmax(28.5rem, 1fr));
  }
}

@media (max-width: 36rem) {
  .event_car_list {
    grid-template-columns: repeat(auto-fill, minmax(18.75rem, 1fr));
  }
}

@media (max-width: 30rem) {
  .event_car_list {
    grid-template-columns: repeat(auto-fill, minmax(17.5rem, 1fr));
  }
}

.event_car__item {
  position: relative;
}

.event_car__item__link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  background-color: var(--color-black);
  color: #fff;
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

.event_car__item__title {
  position: absolute;
  padding: 1.875rem;
  left: 0;
  bottom: 0;
  max-width: 25rem;
}

@media (max-width: 48rem) {
  .event_car__item__title {
    padding: 0.9375rem;
  }
}

.event_car__item__img {
  max-width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  opacity: 0.5;
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

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

.event_car__item__link:hover .event_car__item__img {
  opacity: 0.3;
}

/* ==================================  Выкуп автомобиля ================================================================= */
.redemption__title {
  margin-bottom: 3.125rem;
  padding-bottom: 3.125rem;
}

.redemption__title h1,
.redemption__title .h1 {
  margin-bottom: 1.25rem;
}

.subtitle {
  font-size: 1rem;
  font-weight: 400;
  color: #fff;
  text-transform: none;
  color: var(--color-greey);
}

.redemption__list {
  display: grid;
  gap: 2.5rem;
  grid-template-columns: repeat(auto-fill, minmax(31rem, 1fr));
  margin-bottom: 1.875rem;
}

@media (max-width: 36rem) {
  .redemption__list {
    gap: 1.25rem;
    grid-template-columns: repeat(auto-fill, minmax(18rem, 1fr));
  }
}

.redemption__item {
  border-bottom: 0.0625rem solid var(--color-cart-price);
  padding-bottom: 1.25rem;
}

.redemption__item--img img {
  max-width: 100%;
}

.redemption__item--img.cart__img {
  padding-bottom: 37.606061%;
}

.redemption__item--title {
  font-size: 1.25rem;
  font-weight: 600;
  margin: 1.25rem 0;
  text-transform: uppercase;
}

.redemption__item--title a:hover {
  color: var(--color-accent);
}

.redemption__item__data {
  margin-bottom: 1.25rem;
}

.redemption__item__data__item {
  font-size: 1rem;
  font-weight: 400;
  color: var(--color-greey);
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin-bottom: 0.625rem;
}

.redemption__item__link {
  margin-bottom: 1.875rem;
}

@media (max-width: 30rem) {
  .redemption__item__data__item.flex {
    display: block;
    margin-bottom: 0.9375rem;
    border-bottom: 1px solid var(--color-greey);
    padding-bottom: 0.9375rem;
  }
}

.redemption__item__data__item--r {
  color: #fff;
}

.redemption__item__link {
  margin-bottom: 1.875rem;
}

.redemption__item__link a {
  font-size: 1.125rem;
  font-weight: 600;
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

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

/* =================================================================================================== */
.club__title {
}

.club_cart__inner {
  display: grid;
  gap: 1.875rem;
  grid-template-columns: repeat(auto-fill, minmax(31rem, 1fr));
  margin-bottom: 1.875rem;
}

@media (max-width: 71.25rem) {
  .club_cart__inner {
    grid-template-columns: repeat(auto-fill, minmax(22rem, 1fr));
  }
}

@media (max-width: 30rem) {
  .club_cart__inner {
    grid-template-columns: repeat(auto-fill, minmax(18rem, 1fr));
  }
}

.club_cart__item {
  background-color: var(--rent_price_background);
  border-radius: var(--border-radius_block);
  padding: 1.25rem;
  color: #fff;
}

.club_cart__item--title {
  font-size: 1.625rem;
  font-weight: 600;
  line-height: 1.3em;
  margin-bottom: 0.625rem;
}

.club_cart__item--subtitle {
  font-size: 1rem;
  font-weight: 400;
  color: var(--color-greey);
  margin-bottom: 1.875rem;
}

.club_cart__item--data {
  margin-bottom: 2.5rem;
}

.club_cart__item--item {
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  border-top: 1px solid var(--color-greey);
  padding: 0.625rem;
  font-size: 1rem;
  font-weight: 400;
}

.club_cart__item--item:last-child {
  border-bottom: 1px solid var(--color-greey);
}

.club_cart__item--item--title {
}

.club_cart__item--item--subtitle {
}

.club_cart__item--bottom {
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.club_cart__item--img {
  width: 10rem;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 10rem;
  flex: 0 0 10rem;
}

.club_cart__item--img img {
  max-width: 100%;
}

.club_cart__item--btn {
  position: relative;
}

.club_cart__item--btn .btn {
  width: 2.5rem;
  height: 2.5rem;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 2.5rem;
  flex: 0 0 2.5rem;
  padding: 0;
  margin: 0;
  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;
}

.club_cart__item--btn .btn svg {
  margin-left: 0;
}

.club_cart__item--btn .btn span {
  font-size: 0.01px;
  position: absolute;
  padding: 0;
  z-index: -100;
}

.club_cart_shortkod {
  background-color: #fff;
  border-radius: var(--border-radius_form);
}

/* =================================================================================================== */
.row_top {
  display: grid;
  gap: 2.5rem;
  grid-template-columns: repeat(auto-fill, minmax(17.5rem, 1fr));
  margin-bottom: 2.5rem;
}

@media (max-width: 62rem) {
  .row_top {
    gap: 1.25rem;
  }
}

.row_bottom .row__item,
.row_top .row__item {
  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;

  font-weight: 600;
  font-size: 1.375rem;
  color: #fff;
  padding: 1.25rem;
  border: 1px solid var(--color-border-block);
  border-radius: var(--border-radius_block);
  gap: 0.625rem;
  position: relative;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}

.row__item--title {
  font-weight: 300;
  font-size: 1rem;
  color: var(--color-greey);
}

.row__item .social-icon i {
  position: relative;
  top: -2px;
}

.row__item .social-icon i::before {
  font-size: 1rem;
}

.contacts_map {
  width: 100%;
}

.contacts_street {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 28.125rem;
  flex: 0 0 28.125rem;
  margin-right: 2.5rem;
}

@media (max-width: 62rem) {
  .contacts_street {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 22.125rem;
    flex: 0 0 22.125rem;
    margin-right: 1.25rem;
  }
}

.contacts_street .row__item--title {
  font-size: 1.375rem;
}

@media (max-width: 48rem) {
  .row_bottom.flex {
    display: block;
  }

  .row_bottom .row__item {
    margin-right: 0;
    margin-bottom: 1.25rem;
  }
}

/* =================================================================================================== */
.blog__inner {
  display: grid;
  gap: 2.5rem;
  grid-template-columns: repeat(auto-fill, minmax(380px, 1fr));
  margin-bottom: 2.5rem;
}

.blog__item {
  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;
  height: 100%;
  border-radius: 0.25rem;
  overflow: hidden;
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

.blog__item:hover {
  -webkit-box-shadow: 0 0 1px 1px var(--color-accent);
  box-shadow: 0 0 1px 1px var(--color-accent);
}

.blog__img {
  padding-bottom: 56%;
  margin-bottom: 1.25rem;
  border-radius: 0.25rem 0.25rem 0 0;
  overflow: hidden;
}

.blog__body {
  padding: 0 0.9375rem 1.875rem;
  color: #000;
  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: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  height: 100%;
}

.blog__header {
  margin-bottom: 1.875rem;
  font-size: 1.3125rem;
  font-weight: 800;
}

.blog__header > * {
  color: var(--color-accent-hover);
  display: block;
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

.blog__header > *:hover {
  color: #000;
}

.blog__link {
  margin-top: 1.875rem;
}

.blog__link a {
  text-transform: uppercase;
  color: var(--color-accent-hover);
  font-size: 1rem;
  font-weight: 600;
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

.blog__link a:hover {
  color: #000;
}

/* =================================  CКОЛЬКО ВЫ ЗАРАБОТАЕТЕ  ================================================================== */

.rent_block__list {
  display: grid;
  gap: 40px;
  grid-template-columns: repeat(auto-fill, minmax(23.75rem, 1fr));
  margin-bottom: 2.5rem;
  padding-top: 20px;
}

@media (max-width: 480px) {
  .rent_block__list {
    grid-template-columns: repeat(auto-fill, minmax(17.625rem, 1fr));
  }
}

.rent_block__item {
  background-color: #000000;
  border-radius: var(--border-radius_block);
  border: 1px solid var(--color-border-block);
  padding: 1.25rem;
  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: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.rent_block__item-new {
  gap: 20px;
}

.rent_block__item_top {
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.rent_block__item-new .rent_block__item_top {
  gap: 32px;
}

@media (max-width: 30rem) {
  .rent_block__item_bottom,
  .rent_block__item_top {
    display: block;
    text-align: center;
  }

  .rent_block__item_bottom .rent_block__item_bottom--r,
  .rent_block__item_bottom .rent_block__item_bottom--l,
  .rent_block__item_top .rent_block__item_top--title {
    text-align: center;
    margin-bottom: 1.25rem;
  }
}

.rent_block__item_top--img {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 13.75rem;
  flex: 0 0 13.75rem;
  margin-bottom: 1.5625rem;
}

.rent_block__item_top--img img {
  max-width: 100%;
  height: 5.125rem;
}

.rent_block__item_top--img.rent-block-img-new {
  flex: initial;
  margin: -20px -20px 0px 0px;
}

.rent_block__item_top--img.rent-block-img-new img {
  object-fit: cover;
  border-radius: 10px;
}

.rent_block__item_top--title {
  font-size: 1.25rem;
  font-weight: 600;
  line-height: 1.3em;
  text-align: right;
}

.rent_block__item-new .rent_block__item_top--title {
  text-align: left;
}

.rent-block__item-mileage {
  color: #b0b0b0;
  font-size: 16px;
  font-weight: 500;
  line-height: 22.4px;
}

.rent_block__item_bottom {
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  font-size: 1.625rem;
  font-weight: 600;
}

.rent_block__item_bottom--l,
.rent_block__item_bottom--r {
  display: flex;
  flex-direction: column;
  gap: 16px;
  text-align: left;
}

.rent_block__item-price {
  color: var(--color-border-block);
  font-size: 32px;
  font-weight: 600;
  line-height: 34.4px;
}

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

@media (max-width: 23.75rem) {
  .rent__title h1,
  .rent__title .h1 {
    font-size: 1.75rem;
  }
}

.blog_block .blog__header a {
  color: var(--color-black);
}

.blog_block .blog__header a:hover {
  color: var(--color-accent);
}

.form_date {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  margin: 0;
}

.form-control_data {
  padding: 0px;
  max-width: 100%;
  width: 100%;
}

.form-control_data .form-control_data_title {
  padding-left: 0.9375rem;
}

@media (max-width: 87.5rem) {
  .form_date {
    flex-direction: column;
  }

  .form-control_data .form-control_data_title {
    padding-left: 0;
  }
}

@media only screen and (max-width: 1400px) {
  .rent_block__item-price {
    font-size: 28px;
  }
}

@media only screen and (max-width: 1300px) {
  .rent_block__item-price {
    font-size: 26px;
  }

  .rent_block__item_bottom--l,
  .rent_block__item_bottom--r {
    gap: 12px;
  }
}

@media only screen and (max-width: 1024px) {
  .rent_block__item-price {
    font-size: 24px;
  }

  .rent_block__item_bottom--l,
  .rent_block__item_bottom--r {
    gap: 8px;
  }
}

@media only screen and (max-width: 480px) {
  .rent_block__item-new .rent_block__item_top {
    display: flex;
    flex-direction: column;
  }

  .rent_block__item-new .rent_block__item_top--title {
    max-width: 100%;
    margin: 0px;
  }

  .rent_block__item-new .rent_block__item_top,
  .rent_block__item.rent_block__item-new {
    gap: 20px;
  }

  .rent_block__item-new .rent_block__item_top--img.rent-block-img-new {
    margin: 0px;
  }

  .rent_block__item-new .rent_block__item_top--img.rent-block-img-new img {
    height: auto;
  }

  .rent_block__item-new .rent_block__item_bottom {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
  }

  .rent_block__item-new .rent_block__item_bottom--l,
  .rent_block__item-new .rent_block__item_bottom--r {
    margin: 0px;
    gap: 8px;
    text-align: left;
  }

  .rent_block__item-new .rent_block__item_bottom--r {
    text-align: right;
  }

  .rent_block__item-new .rent_block__item-price {
    font-size: 20px;
    line-height: 20px;
  }

  .rent_block__item-new .rent-block__item-mileage {
    font-size: 14px;
  }

  .rent_block__item.rent_block__item-new {
    padding: 14px;
  }
}

/* =================================================================================================== */

.label-auto {
  position: absolute;
  right: 20px;
  top: 20px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.labels-icon {
  width: fit-content;
  padding: 5px 10px;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
}

/* видео шортс */
@media screen and (min-width: 1300px) {
  .video-slider-block {
    overflow-x: hidden;
  }
}

.video-slider__title {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.video-slider-nav {
  position: relative;
  flex-wrap: wrap;
  display: flex;
  gap: 15px;
}

.video-slider-nav .slick-arrow {
  position: static;
  cursor: pointer;
}

.video-slides {
  margin: 0 -10px;
}

.video-slider-block {
  overflow-y: hidden;
}

.video-slides .slick-track {
  margin: 0 !important;
  height: 550px;
}

.video-slides .slick-slide {
  padding: 0 10px;
}

.video-slides .slick-slide > div {
  height: 100%;
}

.video-slide {
  height: 100%;
}

.video-slide a {
  background-color: var(--background-color);
}

.video__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  max-width: 428px;
  max-height: 550px;
  opacity: 0.8;
  transition: all 0.3s ease 0s;
}

.video-slide:hover .video__img {
  opacity: 1;
}

.block-video-content {
  border: 1px solid var(--color-accent);
  padding: 20px;
  display: flex !important;
  flex-direction: column;
  justify-content: space-between;
  height: auto !important;
  min-height: 100%;
}

@media screen and (max-width: 1280px) {
  .video-slides .slick-track {
    height: 450px;
  }
}

@media screen and (max-width: 768px) {
  .video-slides .slick-track {
    height: 350px;
  }
}

.cta-call-mobile {
  display: none;
}

@media screen and (max-width: 480px) {
  .video-slides .slick-track {
    height: 300px;
  }

  .cta-call-mobile {
    padding: 1.25rem 0 1.5rem 0;
    display: block;
  }
}

/* =================================================================================================== */

.wpc-filters-section li[id^="wpc-term-taxonomy-category"] label:before {
  background-size: contain !important;
}

@media only screen and (max-width: 1024px) {
  .wpc-filter-content.active {
    max-height: 330px;
    overflow-y: auto;
  }
}

@media (max-width: 48rem) {
  .wpc-filter-content {
    background: #000 !important;
  }
}

/* Mclaren */
.wpc-filters-section li#wpc-term-taxonomy-category-45 label:before {
  background-image: url("../../../../uploads/2024/10/mclaren.webp");
}

/* Voyah */
.wpc-filters-section li#wpc-term-taxonomy-category-59 label:before {
  height: 80px;
  background-image: url("../../../../uploads/2024/10/78f9b2ad55d335af198c92b99e13ab75-1-2.webp");
}

/* Lada */
.wpc-filters-section li#wpc-term-taxonomy-category-61 label:before {
  height: 80px;
  background-image: url("../../../../uploads/2024/11/pngimg.com-lada_png124-1.webp");
}

/* Бизнес */
.wpc-filters-section li#wpc-term-taxonomy-car_class-56 label:before {
  background-image: url("../../../../uploads/2024/10/business.webp");
}

/* Комфорт */
.wpc-filters-section li#wpc-term-taxonomy-car_class-57 label:before {
  background-image: url("../../../../uploads/2024/10/comfort.webp");
}

/* Минивэн */
.wpc-filters-section li#wpc-term-taxonomy-car_class-58 label:before {
  background-image: url("../../../../uploads/2024/10/minivan.webp");
}

/* ============================================= POPUP ====================================================== */

/* Затемнение */
.popup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1000;
}

/* Контент окна */
.popup-content {
  background: white;
  padding: 25px 60px;
  border-radius: 16px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  position: relative;
  max-width: 600px;
  width: 100%;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Крестик */
.popup-close {
  position: absolute;
  right: 15px;
  top: -34px;
  cursor: pointer;
}

.popup-close path {
  transition: var(--transition);
}

.popup-close:hover path {
  stroke: var(--color-accent-hover);
}

/* Скрытое окно */
.hidden {
  display: none;
}

.sale-popup-content {
  display: flex;
  flex-direction: column;
}

.sale-popup-content p {
  margin: 0;
}

.sale-popup-content span {
  background-color: var(--color-accent);
  color: var(--color-border-block);
  padding: 4px;
}

.sale-popup-title {
  color: #e43536;
  font-size: 42px;
  font-weight: 900;
  text-align: center;
  line-height: 1;
}

p.sale-popup-subtitle {
  margin: 19px 0px 0px;
  color: var(--color-black);
  font-size: 24px;
  font-weight: 300;
  text-align: center;
  line-height: 1;
}

p.sale-popup-desc {
  margin: 23px 0px 0px;
  color: var(--color-black);
  font-size: 24px;
  font-weight: 700;
  line-height: 33px;
  text-align: center;
}

.sale-popup-btn {
  margin: 38px 0px 0px;
  padding: 12px 30px;
  width: max-content;
  border-radius: 10px;
  color: var(--color-border-block);
  background-color: var(--color-accent);
  font-weight: 600;
  transition: var(--transition);
}

.sale-popup-btn:hover {
  background-color: var(--color-accent-hover);
}

@media only screen and (max-width: 600px) {
  .popup-content {
    padding: 30px;
    margin: 0px 20px;
  }

  .sale-popup-title {
    font-size: 28px;
  }

  p.sale-popup-subtitle,
  p.sale-popup-desc {
    margin: 14px 0px 0px;
    font-size: 22px;
  }

  .sale-popup-btn {
    margin: 26px 0px 0px;
    width: 100%;
  }
}

/* Advantages rent page */

.advantages-item {
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 20px;
  border: 1px solid var(--color-border-block);
  border-radius: 10px;
}

.advantages-item-title {
  margin: 0 !important;
  color: var(--color-border-block);
  font-size: 26px;
  font-weight: 600;
  line-height: 36.4px;
}

@media only screen and (max-width: 480px) {
  .advantages-list-section.rent_block__list {
    gap: 20px;
  }

  .advantages-item {
    padding: 20px;
    gap: 12px;
  }

  .advantages-item-title {
    font-size: 24px;
  }
}

/* Наши преимущества */

.pluses-section-list {
  display: grid;
  gap: 40px;
  grid-template-columns: repeat(2, 1fr);
  margin-bottom: 2.5rem;
  padding-top: 20px;
}

@media only screen and (max-width: 767px) {
  .pluses-section-list {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

/* Лизинг */

.lizing-info-list {
  margin: 0px 0px 50px;
  display: flex;
  gap: 126px;
}

.lizing-info-item {
  margin: 0px !important;
  max-width: 387px;
  width: 100%;
  font-size: 18px;
  line-height: 21.94px;
  color: var(--color-cart-price);
}

@media only screen and (max-width: 767px) {
  .lizing-info-list {
    flex-direction: column;
    gap: 10px;
  }

  .lizing-info-item {
    max-width: 100%;
  }
}
