@charset "UTF-8";
@import "../fonts/stylesheet.css";
* {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 0;
  margin: 0;
}

:root {
  --app-height: 100%;
  --white: #ffffff;
  --black: #000;
  --blue: #275fcc;
  --blue_hover: #457eee;
  --dark_blue: #070c37;
  --yellow_bg: #fffae5;
  --yellow: #f6cf2a;
  --yellow_brand: #f9c023;
  --yellow_hover: #ffdd50;
  --grey_EE: #eef2fc;
  --grey_F6: #f6f9ff;
  --grey_E5: #e5f0ff;
  --grey_F3: #f3f4f6;
}

.scroll_to > * {
  pointer-events: none;
}

body,
html {
  scrollbar-color: var(--blue) var(--light_bg);
  scrollbar-width: thick;
  overflow-x: hidden;
}

.swiper-container {
  overflow: hidden;
}

.xyz_start {
  opacity: 0;
}

.xyz_start.xyz-in {
  opacity: 1;
}

body {
  font-family: "Gilroy", sans-serif;
  color: var(--black);
  margin: 0;
  padding: 0;
  position: relative;
  min-height: 100vh;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

section {
  position: relative;
}

.swiper-container {
  overflow: hidden;
}

/* ::-webkit-scrollbar {
  height: 5px;
} */
::-webkit-scrollbar {
  width: 10px;
}

/* Track */
::-webkit-scrollbar-track {
  background: var(--light_bg);
}

/* Handle */
::-webkit-scrollbar-thumb {
  background: var(--blue);
}

h1,
h2,
h3,
h4 {
  margin: 0;
  padding: 0;
}

a:hover,
a:active,
a:visited,
a {
  text-decoration: none;
  -webkit-transition: 0.4s ease;
  transition: 0.4s ease;
}

ol,
ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

li {
  display: block;
}

p {
  margin-bottom: 0;
}

input:hover,
select:hover,
textarea:hover,
textarea:active,
input:active,
select:active,
input:focus,
select:focus,
textarea:focus,
input,
textarea select {
  display: block;
  outline: none;
  font-family: "Gilroy", sans-serif;
}

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

svg,
path {
  -webkit-transition: 0.4s ease;
  transition: 0.4s ease;
}

.container {
  position: relative;
}

a.btn,
button.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;
  text-align: center;
  height: 44px;
  width: 206px;
  font-size: 18px;
  line-height: 1.1em;
  font-weight: 400;
  font-family: "Gilroy", sans-serif;
  color: var(--white);
  border-radius: 40px;
  border: 1px solid var(--blue);
  background-color: var(--blue);
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
  cursor: pointer;
}
a.btn:hover,
button.btn:hover {
  color: var(--white);
  border: 3px solid var(--blue_hover);
  background-color: var(--blue_hover);
}
a.btn.btn_tr,
button.btn.btn_tr {
  border: 1px solid var(--black);
  background-color: transparent;
  color: var(--black);
}
a.btn.btn_tr:hover,
button.btn.btn_tr:hover {
  color: var(--white);
  border: 1px solid var(--blue_hover);
  background-color: var(--blue_hover);
}

.waverly {
  font-family: "Waverly CF";
}

.header {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  z-index: 999;
  padding: 11px 0 12px;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
  padding-top: 20px;
}
.header.header_fixed {
  padding-top: 10px;
}
.header.header_fixed .header__wrap {
  padding: 15px 0;
}
.header .btn {
  width: 153px;
  height: 37px;
}
.header .header__wrap {
  padding: 24px 0;
  position: relative;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
.header .header__wrap::before {
  content: "";
  display: block;
  position: absolute;
  width: calc(100% + 64px);
  height: 100%;
  left: -32px;
  top: 0;
  background-color: rgba(17, 17, 17, 0.8);
  backdrop-filter: blur(20px);
  border-radius: 60px;
}

.custom-logo-link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 105px;
}
.custom-logo-link img {
  width: 100%;
  height: auto;
}

.nav__menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.nav__menu .nav__item {
  position: relative;
  margin: 0 21px;
}
.nav__menu .nav__item a {
  font-size: 16px;
  font-family: "Gilroy", sans-serif;
  font-weight: 500;
  line-height: 1.6em;
  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;
  color: var(--white);
  position: relative;
  text-transform: uppercase;
}
.nav__menu .nav__item a:hover {
  color: var(--blue_hover);
}
.nav__menu .nav__item a:hover::after {
  color: var(--blue_hover);
}
.nav__menu .nav__item.current-menu-item > a {
  color: var(--blue_hover);
}
.nav__menu .nav__item.current-menu-item > a::after {
  color: var(--blue_hover);
}
.nav__menu .nav__item.menu-item-has-children > a {
  padding-right: 25px;
}
.nav__menu .nav__item.menu-item-has-children > a::after {
  content: "›";
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
  font-size: 23px;
  width: 20px;
  color: var(--white);
  height: 20px;
  position: absolute;
  right: 0;
  top: 3px;
  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.4s ease;
  transition: all 0.4s ease;
}
.nav__menu .nav__item.menu-item-has-children > a:hover::after {
  color: var(--blue_hover);
}
.nav__menu .nav__item.menu-item-has-children.current-menu-item > a::after {
  color: var(--blue_hover);
}
@media screen and (min-width: 1200px) {
  .nav__menu .nav__item:hover .sub-menu {
    opacity: 1;
    pointer-events: all;
  }
}
.nav__menu .sub-menu {
  position: absolute;
  left: 0;
  top: 100%;
  padding: 12px 15px;
  border-radius: 8px;
  background: rgba(53, 53, 53, 0.7);
  backdrop-filter: blur(4px);
  width: 250px;
  opacity: 0;
  pointer-events: none;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
.nav__menu .sub-menu li a {
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}

.menu__burger {
  display: none;
  width: 30px;
}

.social a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 28px;
  height: 28px;
  margin-right: 12px;
}
.social a:last-child {
  margin-right: 0;
}

@media screen and (max-width: 1439px) {
  .nav__menu .nav__item {
    margin: 0 11px;
  }
  .nav__menu .nav__item a {
    font-weight: 400;
  }
}
@media screen and (max-width: 1199px) {
  .header {
    padding: 12px 0;
  }
  .nav {
    position: fixed;
    width: 100%;
    height: 100vh;
    padding: 12px;
    z-index: 999999;
    left: 100%;
    top: 0;
    opacity: 0;
    pointer-events: none;
    background: #353535;
    -webkit-transition: all 0.4s ease;
    transition: all 0.4s ease;
    padding-bottom: 100px;
    overflow-y: auto;
    padding-top: 0;
    margin: 0;
  }
  .nav.open_menu {
    left: 0;
    top: 0px;
    opacity: 1;
    pointer-events: all;
  }
  .nav .nav__row {
    width: 100%;
    margin-bottom: 30px;
    padding: 12px 0;
    position: relative;
  }
  .nav .menu__close {
    width: 36px;
    height: 36px;
    background: url(../img/close_menu.svg) no-repeat center;
    outline: none;
    /* margin-left: auto; */
    position: relative;
    background-color: none;
    border: none;
    cursor: pointer;
    border-radius: 8px;
    -webkit-transition: all 0.4s ease;
    transition: all 0.4s ease;
  }
  .nav .menu__close > * {
    pointer-events: none;
  }
  .nav .nav__menu {
    width: 100%;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin-bottom: 85px;
  }
  .nav .nav__menu .sub-menu {
    height: 0;
    overflow: hidden;
    position: relative;
    left: auto;
    top: auto;
    padding: 0 15px;
    border-radius: 0px;
    background: transparent;
    backdrop-filter: none;
    width: 250px;
    opacity: 0;
    pointer-events: all;
  }
  .nav .nav__menu .sub-menu li a {
    font-size: 18px;
  }
  .nav .nav__menu .sub-menu li a:hover {
    color: var(--blue_hover);
  }
  .nav .nav__menu .sub-menu li.current-menu-item a {
    color: var(--blue_hover);
  }
  .nav .nav__item.menu-item-has-children > a {
    padding-right: 32px;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .nav .nav__item.menu-item-has-children > a::after {
    display: none;
  }
  .nav .nav__item.menu-item-has-children > a .open_child_menu {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    width: 32px;
    height: 32px;
    position: absolute;
    top: 0;
    right: 0;
    border: 1px solid var(--blue);
  }
  .nav .nav__item.menu-item-has-children > a .open_child_menu svg {
    width: 20px;
    height: 20px;
  }
  .nav .nav__item.menu-item-has-children > a .open_child_menu:hover path {
    stroke: var(--blue_hover);
  }
  .menu__burger {
    display: block;
    cursor: pointer;
    background-color: transparent;
    border: none;
    width: 36px;
  }
  .menu__burger span {
    border-radius: 2px;
    -ms-flex-negative: 0;
        flex-shrink: 0;
    width: 100%;
    display: block;
    height: 2px;
    margin-bottom: 5px;
    background-color: var(--white);
    -webkit-transition: all 0.4s ease;
    transition: all 0.4s ease;
  }
  .menu__burger span.burger__line_third {
    margin-bottom: 0;
  }
  .nav .nav__item {
    margin-bottom: 20px;
    width: 100%;
    text-align: left;
    margin-right: 0;
  }
  .nav .nav__item a {
    text-align: left;
    font-size: 20px;
    font-weight: 500;
    position: relative;
    color: var(--white);
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
  .nav .nav__item a:hover {
    color: var(--blue_hover);
  }
  .nav .nav__item.current-menu-ancestor > a {
    color: var(--blue_hover);
  }
  .mobile__lang li {
    margin-right: 10px;
  }
  .mobile__lang li.current-lang a {
    color: var(--blue_hover);
  }
  .mobile__lang a {
    text-align: left;
    font-size: 18px;
    font-weight: 500;
    position: relative;
    color: var(--white);
    display: inline;
  }
  @-webkit-keyframes fromBottom {
    0% {
      opacity: 0;
      -webkit-transform: translateY(45px);
              transform: translateY(45px);
    }
    100% {
      opacity: 1;
      -webkit-transform: translateY(0);
              transform: translateY(0);
    }
  }
  @keyframes fromBottom {
    0% {
      opacity: 0;
      -webkit-transform: translateY(45px);
              transform: translateY(45px);
    }
    100% {
      opacity: 1;
      -webkit-transform: translateY(0);
              transform: translateY(0);
    }
  }
  .header__contact p {
    color: var(--white);
    font-size: 18px;
  }
  .header__contact a {
    color: var(--white);
    font-size: 16px;
  }
  .header__contact a:hover {
    color: var(--blue_hover);
  }
  .social a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    width: 30px;
    height: 30px;
    margin-right: 15px;
  }
  .social a svg {
    width: 100%;
    height: 100%;
  }
}
.header__contact.header__contact_desc a {
  color: var(--white);
  font-size: 16px;
}
.header__contact.header__contact_desc a:hover {
  color: var(--yellow);
}

.form__wrap {
  width: 100%;
}
.form__wrap .input__group {
  margin-bottom: 20px;
}
.form__wrap .input__group .order__input {
  display: block;
  width: 100%;
  height: 60px;
  border-radius: 30px;
  padding-left: 28px;
  font-family: "Gilroy";
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  color: var(--black);
  background-color: transparent;
  border: 1px solid var(--black);
}
.form__wrap .input__group .order__input.wpcf7-not-valid {
  border-color: red;
}
.form__wrap .input__group .order__input::-webkit-input-placeholder {
  font-family: "Gilroy";
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 130%;
  color: #9d9d9d;
}
.form__wrap .input__group .order__input::-moz-placeholder {
  font-family: "Gilroy";
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 130%;
  color: #9d9d9d;
}
.form__wrap .input__group .order__input:-ms-input-placeholder {
  font-family: "Gilroy";
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 130%;
  color: #9d9d9d;
}
.form__wrap .input__group .order__input::-ms-input-placeholder {
  font-family: "Gilroy";
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 130%;
  color: #9d9d9d;
}
.form__wrap .input__group .order__input::placeholder {
  font-family: "Gilroy";
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 130%;
  color: #9d9d9d;
}
.form__wrap .input__group .order__input.order__input_message {
  height: 100px;
  padding-top: 10px;
  padding-left: 28px;
  border-radius: 30px;
}
.form__wrap .btn {
  cursor: pointer;
}

.section__title {
  font-weight: 500;
  font-size: 24px;
  color: var(--black);
  text-align: center;
  margin-bottom: 30px;
  position: relative;
  padding-bottom: 7px;
  text-transform: uppercase;
  padding: 0 20px;
}
.section__title:after {
  content: "";
  display: block;
  width: 138px;
  height: 1px;
  background-color: var(--black);
  position: absolute;
  left: calc(50% - 69px);
  bottom: 0;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
.section__title.section__title_secondary {
  text-transform: uppercase;
  font-weight: 700;
  font-size: 32px;
  margin-bottom: 0;
  text-align: left;
  padding: 0;
  line-height: 1.1em;
}
.section__title.section__title_secondary::after {
  display: none;
}

.section__subtitle {
  line-height: 1em;
}

.button_text {
  font-size: 18px;
  line-height: 1.3em;
  font-weight: 500;
}

.text__content li,
.text__content p {
  font-size: 18px;
  line-height: 1.3em;
  margin-bottom: 1.3em;
}
.text__content li {
  margin-bottom: 0.5em;
  padding-left: 15px;
  position: relative;
}
.text__content li::before {
  content: "";
  display: block;
  width: 5px;
  height: 5px;
  position: absolute;
  left: 0;
  top: 9px;
  border-radius: 50%;
  background-color: #2d63cd;
}

.single-cars .text__content ul {
  margin-bottom: 15px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.single-cars .text__content ul li {
  width: 50%;
}

@media screen and (max-width: 576px) {
  .single-cars .text__content ul li {
    width: 100%;
  }
  .section__subtitle {
    font-size: 20px;
  }
}
.text_1 {
  font-size: 48px;
  line-height: 1.2em;
  margin-bottom: 1.2em;
  font-weight: 500;
  color: #000;
}

.text_2 {
  color: #2d63cd;
  text-align: center;
  font-family: "Gilroy", sans-serif;
  font-size: 24px;
  font-weight: 600;
}

.text_3 {
  color: #000;
  /* подзаголовок */
  font-family: "Gilroy", sans-serif;
  font-size: 28px;
  font-weight: 500;
}

.text_4 {
  color: #000;
  text-align: center;
  /* текст дополнительный жирный */
  font-family: "Gilroy", sans-serif;
  font-size: 16px;
  font-weight: 600;
}

.text_5 {
  color: #000;
  text-align: center;
  /* текст дополнительный жирный */
  font-family: "Gilroy", sans-serif;
  font-size: 18px;
  font-weight: 400;
}
.text_5 b,
.text_5 strong {
  font-weight: 600;
}

@media screen and (max-width: 767px) {
  .text_1 {
    font-size: 30px;
  }
  .text_2 {
    color: #2d63cd;
    font-size: 22px;
  }
  .text_3 {
    font-size: 24px;
  }
  .text__content li,
  .text__content p {
    font-size: 16px;
    line-height: 1.3em;
    margin-bottom: 1.3em;
  }
  .form__wrap .input__group {
    margin-bottom: 13px;
  }
  .form__wrap .input__group .order__input {
    height: 45px;
    padding-left: 15px;
    font-family: "Gilroy";
    font-size: 12px;
  }
  .form__wrap .input__group .order__input::-webkit-input-placeholder {
    font-size: 12px;
  }
  .form__wrap .input__group .order__input::-moz-placeholder {
    font-size: 12px;
  }
  .form__wrap .input__group .order__input:-ms-input-placeholder {
    font-size: 12px;
  }
  .form__wrap .input__group .order__input::-ms-input-placeholder {
    font-size: 12px;
  }
  .form__wrap .input__group .order__input::placeholder {
    font-size: 12px;
  }
  .form__wrap .input__group .order__input.order__input_message {
    height: 80px;
    padding-left: 15px;
  }
}
.lang_select {
  width: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  /* justify-content: right; */
  color: #39363b;
  font-weight: 500;
  letter-spacing: 0.1em;
  cursor: pointer;
  position: relative;
  height: -webkit-max-content;
  height: -moz-max-content;
  height: max-content;
  min-width: -webkit-max-content;
  min-width: -moz-max-content;
  min-width: max-content;
  /* margin-left: auto; */
  margin-right: 15px;
}
.lang_select .lang__block {
  position: absolute;
  width: 100%;
  top: 50%;
  z-index: -2;
  opacity: 0;
  pointer-events: none;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  left: -4px;
  background: #353535;
  -webkit-box-shadow: 0px 4px 40px rgba(231, 231, 231, 0.2);
          box-shadow: 0px 4px 40px rgba(231, 231, 231, 0.2);
  backdrop-filter: blur(6.5px);
  padding: 5px;
}
.lang_select .lang__block.open {
  z-index: 5;
  opacity: 1;
  pointer-events: all;
  top: 100%;
}
.lang_select .lang__block .current-lang a {
  color: var(--blue_hover);
}
.lang_select .lang__block a,
.lang_select .current__lang {
  padding-right: 20px;
  color: #fff;
  font-weight: 400;
  letter-spacing: 0.1em;
  font-family: "Gilroy", sans-serif;
  font-size: 16px;
  text-transform: uppercase;
}
.lang_select .current__lang {
  color: #fff;
}
.lang_select .current__lang:before {
  content: "";
  width: 12px;
  height: 5px;
  font-size: 30px;
  display: block;
  position: absolute;
  right: 0px;
  top: 0px;
  height: 23px;
  color: #a68c63;
  pointer-events: none;
  background: url(../img/icon_arrow_down.svg) no-repeat center/13px;
}
.lang_select .lang__block a {
  color: #fff;
  font-weight: 400;
  letter-spacing: 0.1em;
}

.head__section {
  padding-top: 125px;
  padding-bottom: 190px;
}
.head__section .offer h1 {
  color: var(--white);
  font-size: 48px;
  font-weight: 500;
  margin-bottom: 40px;
  text-align: center;
}
.head__section .offer .sub_title {
  font-size: 24px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 20px;
  text-align: center;
}
.head__section .offer .offer__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 50px;
}
.head__section .offer .offer__list a {
  font-size: 18px;
  font-weight: 500;
  line-height: 1.2em;
  color: var(--white);
  margin-bottom: 25px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-align: center;
  padding: 5px 15px;
  width: 28%;
  border-radius: 50px;
  height: 50px;
}
.head__section .offer .offer__list a:hover {
  background-color: #babfc1;
  color: var(--blue_hover);
}
.head__section.head__section_succes {
  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;
  min-height: 100vh;
}
.head__section.head__section_succes:before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  background-color: var(--black);
  opacity: 0.6;
}

.service .service__item {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.service .service__item .service__icon {
  width: 80px;
  height: 80px;
}
.service .service__item .service__icon img {
  max-width: 100%;
  max-height: 100%;
}
.service .service__item .btn {
  margin-top: auto;
}

.callback:before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  background-color: rgba(0, 0, 0, 0.55);
}
.callback .callback__wrap {
  padding: 12px 15px;
  border-radius: 8px;
}
.callback .callback__wrap .text_1,
.callback .callback__wrap .text_2 {
  color: var(--white);
}

@media screen and (max-width: 991px) {
  .head__section {
    padding-top: 90px;
  }
  .head__section .offer h1 {
    font-size: 26px;
    margin-bottom: 25px;
  }
  .head__section .offer .sub_title {
    font-size: 18px;
    margin-bottom: 10px;
  }
  .head__section .offer .offer__list a {
    width: 45%;
  }
}
@media screen and (max-width: 576px) {
  .head__section .offer .offer__list a {
    width: 100%;
    margin-bottom: 5px;
  }
}
.about .about__img {
  position: relative;
  width: 100%;
}
.about .about__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.about .about__play {
  position: absolute;
  width: 50px;
  height: 50px;
  left: calc(50% - 25px);
  top: calc(50% - 25px);
}

@media screen and (max-width: 767px) {
  .about .about__img {
    width: calc(100% + 24px);
    -webkit-transform: translateX(-12px);
            transform: translateX(-12px);
    height: 250px;
    margin-bottom: 16px;
  }
}
.video .section__title a {
  color: var(--blue);
}
.video .section__title a:hover {
  color: var(--blue_hover);
}
.video .section__title::after {
  background-color: var(--blue);
}
.video .section__title:hover::after {
  background-color: var(--blue_hover);
}
.video .video__img {
  height: 228px;
  margin-bottom: 16px;
  position: relative;
}
.video .video__img .play {
  display: block;
  width: 70px;
  height: 70px;
  background: url(../img/play.svg) no-repeat center/70px;
  z-index: 3;
  position: relative;
}
.video .video__img::after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  background-color: #000;
  opacity: 0;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
.video .video__img:hover::after {
  opacity: 0.3;
}
.video .video__btn {
  background: transparent;
  border: none;
  pointer-events: all;
  cursor: pointer;
}
.video.video_page .video_swiper_page {
  height: 344px;
}
.video.video_page .video__img {
  height: 140px;
  width: 155px;
  margin: 0 auto 16px;
}
.video.video_page .section__title {
  color: var(--black);
}
.video.video_page .section__title:after {
  display: none;
}
.video.video_page .video__name {
  display: -webkit-box;
  display: block;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow-y: hidden;
  height: 24px;
}
.video.video_page .swiper-slide {
  height: calc((100% - 20px) / 2) !important;
  text-align: center;
}
.video.video_page .swiper-slide:hover, .video.video_page .swiper-slide:avtive {
  outline: none;
}

@media screen and (max-width: 576px) {
  .video.video_page .video__img {
    max-width: 100%;
  }
  .video.video_page .video__img .play {
    width: 50px;
    height: 50px;
    background-size: 100%;
  }
}
.news .section__title a {
  color: var(--blue);
}
.news .section__title a:hover {
  color: var(--blue_hover);
}
.news .section__title::after {
  background-color: var(--blue);
}
.news .section__title:hover::after {
  background-color: var(--blue_hover);
}
.news .video__img {
  height: 200px;
}
.news .swiper-slide {
  text-align: center;
}
.news .news__name {
  text-align: center;
  color: var(--black);
  margin-bottom: 10px;
}
.news .news__describe {
  max-width: 240px;
  width: 100%;
  margin: 0 auto 10px;
}
.news .news__describe p {
  font-size: 14px;
  color: var(--black);
  display: block;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.news .news_date {
  color: var(--black);
  font-weight: 500;
}
.news .news__arrows {
  position: absolute;
  width: 100%;
  left: 0;
  top: calc(50% - 14px);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  z-index: 5;
  pointer-events: none;
}
.news .news__arrows .news__arrow {
  background: transparent;
  border: none;
  pointer-events: all;
  cursor: pointer;
}

.auto .section__title a {
  color: var(--blue);
}
.auto .section__title a:hover {
  color: var(--blue_hover);
}
.auto .section__title::after {
  background-color: var(--blue);
}
.auto .section__title:hover::after {
  background-color: var(--blue_hover);
}
.auto .section__title.main_title {
  text-transform: initial;
  padding-bottom: 0;
}
.auto .section__title.main_title::after {
  display: none;
}
.auto .video__btn {
  background: transparent;
  border: none;
  pointer-events: all;
  cursor: pointer;
}
.auto .video__img {
  width: 155px;
  height: 140px;
  margin: 0 auto 5px;
}

@media screen and (max-width: 576px) {
  .auto .video__img {
    max-width: 100%;
  }
  .auto .fz_16 {
    font-size: 12px;
  }
}
.footer {
  padding: 55px 0 40px;
  background-color: #111111;
}
.footer .custom-logo-link {
  width: 200px;
}
.footer .section__title {
  color: var(--white);
}
.footer .section__title::after {
  background-color: var(--white);
}
.footer .footer_social {
  max-width: 195px;
}
.footer .footer__social {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: var(--white);
  font-size: 16px;
  margin: 0 auto 14px;
}
.footer .footer__social .icon {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 32px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.footer .footer__social > * {
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.footer .footer__social svg {
  margin-right: 19px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.footer .footer__subtitle {
  color: var(--white);
  max-width: 195px;
}
.footer .footer__menu {
  max-width: 230px;
}
.footer .footer__menu li {
  margin-bottom: 24px;
}
.footer .footer__menu li a {
  font-size: 16px;
  color: var(--white);
  font-weight: 400;
  text-transform: uppercase;
}
.footer .footer__menu li a:hover {
  color: var(--yellow);
}
.footer .footer__contact {
  max-width: 210px;
}
.footer .footer__contact .icon {
  margin-right: 7px;
}
.footer .footer__contact .icon svg {
  width: 24px;
}
.footer .footer__contact .contact__content p {
  color: var(--white);
  font-size: 16px;
  font-weight: 400;
}
.footer .footer__contact .contact__content a {
  font-weight: 400;
  font-size: 16px;
  color: var(--white);
}
.footer .footer__contact .contact__content a:hover {
  color: var(--yellow);
}
.footer .copyright {
  color: var(--white);
  font-size: 16px;
  font-weight: 400;
}

.top__links a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: var(--black);
  font-size: 16px;
}
.top__links a svg {
  width: 8px;
  height: 21px;
}
.top__links a:hover {
  color: var(--blue_hover);
}
.top__links a:hover path {
  stroke: var(--blue_hover);
}

.news_single .news_single__thumbnal {
  height: 500px;
  margin-bottom: 16px;
  overflow: hidden;
}
.news_single .news_single__thumbnal img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.news_single .news_single__thumbnal .swiper-container {
  height: 100%;
}
.news_single .news_single__thumbnal .swiper-container img {
  max-width: 100%;
  max-height: 100%;
  -o-object-fit: initial;
     object-fit: initial;
  width: auto;
  height: auto;
}
.news_single .text__content {
  text-align: left;
}
.news_single .text__content img {
  width: 700px;
  height: auto;
  max-width: 100%;
  display: block;
  margin-bottom: 25px;
}
.news_single .section__title a {
  color: var(--blue);
}
.news_single .section__title a:hover {
  color: var(--blue_hover);
}
.news_single .section__title::after {
  background-color: var(--blue);
}
.news_single .section__title:hover::after {
  background-color: var(--blue_hover);
}
.news_single .news__item {
  width: 100%;
  padding-bottom: 17px;
  margin-bottom: 17px;
  position: relative;
  border-bottom: 1px solid var(--black);
}
.news_single .news__item.news__item_long {
  border-bottom: none;
  margin-bottom: 50px;
}
.news_single .news__item p {
  color: var(--black);
}
.news_single .news__item .video__img {
  height: 250px;
}
.news_single .news__item svg {
  width: 38px;
  height: 24px;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
.news_single .news__item:hover svg {
  -webkit-transform: translateY(-5px);
          transform: translateY(-5px);
}
.news_single .cars_title {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 15px;
}
.news_single .info__item {
  width: 100%;
  border-bottom: 1px solid var(--black);
  margin-bottom: 15px;
}
.news_single .info__item .info__name {
  font-size: 16px;
}
.news_single .info__item .info__value {
  font-size: 16px;
  overflow: hidden;
}
.news_single .news__arrow {
  background: transparent;
  border: none;
  pointer-events: all;
  cursor: pointer;
}

@media screen and (max-width: 1439px) {
  .news_single .news_single__thumbnal {
    height: 400px;
  }
}
@media screen and (max-width: 1199px) {
  .footer .footer__menu li {
    margin-bottom: 10px;
  }
}
@media screen and (max-width: 991px) {
  .news_single .news_single__thumbnal {
    height: 300px;
  }
}
@media screen and (max-width: 767px) {
  .news_single .news_single__thumbnal {
    height: 255px;
  }
  .news_single .news_single__thumbnal.news_single__thumbnal_car {
    height: 255px;
  }
  .news_single .cars_title {
    font-size: 16px;
    margin-bottom: 10px;
  }
  .news_single .info__item {
    width: 100%;
  }
  .news_single .info__item .info__name {
    font-size: 14px;
  }
  .news_single .info__item .info__value {
    font-size: 14px;
  }
}
@media screen and (max-width: 576px) {
  .news_single .news_single__thumbnal {
    height: 188px;
  }
  .footer .footer__subtitle,
  .footer .footer__menu li a {
    font-size: 14px;
  }
  .footer .footer__contact .icon {
    width: 20px;
  }
  .footer .footer__contact .icon svg {
    width: 20px;
    height: auto;
  }
}
.callback__form .callback__title {
  font-size: 36px;
  font-weight: 500;
  margin-bottom: 20px;
}
.callback__form .callback__subtitle {
  font-size: 24px;
}

@media screen and (max-width: 991px) {
  .callback__form .callback__title {
    font-size: 24px;
    margin-bottom: 15px;
    text-align: center;
  }
  .callback__form .callback__subtitle {
    font-size: 16px;
    margin-bottom: 20px;
    text-align: center;
  }
}
.pagination .page-numbers {
  color: #9d9d9d;
  font-family: "Gilroy";
  font-size: 12px;
  font-weight: 500;
  padding: 3px 7px;
}
.pagination .page-numbers:hover, .pagination .page-numbers.current {
  color: var(--black);
}
.pagination .page-numbers:hover path, .pagination .page-numbers.current path {
  stroke: var(--black);
}
.pagination span {
  cursor: inherit;
  pointer-events: none;
}
.pagination a.prev,
.pagination a.next {
  cursor: pointer;
}

.service__head {
  position: relative;
  padding-bottom: 100px;
}
.service__head h1 {
  font-size: 48px;
  margin-bottom: 20px;
  font-weight: 500;
}
.service__head .service_bg {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
}
.service__head .service_bg::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  background: rgba(255, 255, 255, 0.48);
  backdrop-filter: blur(13px);
}
.service__head .service_more {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border: none;
  background-color: transparent;
  cursor: pointer;
  margin: 24px 0;
}
.service__head .service_more svg {
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
  width: 9px;
  height: 24px;
}
.service__head .service_more .hide {
  display: none;
}
.service__head .text__content {
  height: 183px;
}
.service__head .video_wrap {
  display: block;
  position: relative;
  width: 100%;
}
.service__head .video_wrap img {
  width: 100%;
  height: auto;
}
.service__head a.video_wrap::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  background-color: var(--black);
  opacity: 0.2;
}
.service__head a.video_wrap:after {
  content: "";
  display: block;
  width: 50px;
  height: 50px;
  position: absolute;
  left: calc(50% - 25px);
  top: calc(50% - 25px);
  background: url(../img/play.svg) no-repeat center/50px;
}
.service__head .service__content.open .service_more svg {
  -webkit-transform: rotate(-90deg);
          transform: rotate(-90deg);
}
.service__head .service__content.open .service_more .hide {
  display: block;
}
.service__head .service__content.open .service_more .show {
  display: none;
}

.head__service {
  padding-top: 100px;
}
.head__service::before {
  content: "";
  display: block;
  width: calc(50% - 100px);
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  background-color: rgba(17, 17, 17, 0.6);
  backdrop-filter: blur(30px);
}
.head__service .container {
  padding-top: 90px;
  padding-bottom: 90px;
}
.head__service .offer .form__wrap {
  padding-top: 50px;
  width: 100%;
  max-width: 310px;
}
.head__service .offer .form__wrap .input__group {
  margin-bottom: 20px;
}
.head__service .offer .form__wrap .input__group .order__input {
  background-color: var(--white);
}
.head__service .offer .form__wrap .input__group .order__input::-webkit-input-placeholder {
  font-size: 16px;
  color: var(--blue);
}
.head__service .offer .form__wrap .input__group .order__input::-moz-placeholder {
  font-size: 16px;
  color: var(--blue);
}
.head__service .offer .form__wrap .input__group .order__input:-ms-input-placeholder {
  font-size: 16px;
  color: var(--blue);
}
.head__service .offer .form__wrap .input__group .order__input::-ms-input-placeholder {
  font-size: 16px;
  color: var(--blue);
}
.head__service .offer .form__wrap .input__group .order__input::placeholder {
  font-size: 16px;
  color: var(--blue);
}
.head__service .offer .form__wrap .btn {
  width: 100%;
  height: 60px;
  font-size: 22px;
  font-weight: 600;
  text-transform: uppercase;
}
.head__service .form__block {
  background-color: #fff;
  border-radius: 10px;
  padding: 40px 60px;
  width: 100%;
  max-width: 430px;
}
.head__service .form__block .form__wrap .input__group {
  margin-bottom: 20px;
}
.head__service .form__block .form__wrap .input__group .order__input {
  height: 40px;
  border: none;
  border-radius: 0;
  border-bottom: 2px solid var(--black);
  padding-left: 20px;
  font-size: 16px;
  color: var(--black);
}
.head__service .form__block .form__wrap .input__group .order__input::-webkit-input-placeholder {
  font-size: 16px;
  color: var(--black);
}
.head__service .form__block .form__wrap .input__group .order__input::-moz-placeholder {
  font-size: 16px;
  color: var(--black);
}
.head__service .form__block .form__wrap .input__group .order__input:-ms-input-placeholder {
  font-size: 16px;
  color: var(--black);
}
.head__service .form__block .form__wrap .input__group .order__input::-ms-input-placeholder {
  font-size: 16px;
  color: var(--black);
}
.head__service .form__block .form__wrap .input__group .order__input::placeholder {
  font-size: 16px;
  color: var(--black);
}
.head__service .form__block .form__wrap .input__group_file {
  width: 100%;
  position: relative;
  margin-bottom: 25px;
}
.head__service .form__block .form__wrap .input__group_file label {
  width: 100%;
  height: 45px;
  cursor: pointer;
  border-radius: 50px;
  border: 1px solid var(--black);
  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;
}
.head__service .form__block .form__wrap .input__group_file label .photo_placeholder {
  position: absolute;
  left: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
  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;
  font-size: 18px;
  font-weight: 600;
  color: var(--black);
}
.head__service .form__block .form__wrap .input__group_file label input {
  cursor: pointer;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  opacity: 0;
  height: 100%;
  width: 100%;
  display: block;
}
.head__service .form__block .form__wrap .input__group_file .file__wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.head__service .form__block .form__wrap .input__group_file .file__wrap .image-container {
  position: relative;
  height: 80px;
  padding: 5px;
  width: 33.3%;
}
.head__service .form__block .form__wrap .input__group_file .file__wrap .image-container:last-child {
  margin-bottom: 0;
}
.head__service .form__block .form__wrap .input__group_file .file__wrap .image-container img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.head__service .form__block .form__wrap .input__group_file .file__wrap .remove-btn {
  position: absolute;
  display: block;
  width: 20px;
  height: 20px;
  top: 5px;
  right: 5px;
  border: 1px solid var(--black);
  cursor: pointer;
  opacity: 0.7;
  background: url(../img/close_menu_dark.svg) no-repeat center/16px;
  background-color: var(--white);
  z-index: 2;
}
.head__service .form__block .form__wrap .btn {
  width: 100%;
  height: 60px;
  font-size: 22px;
  font-weight: 600;
  text-transform: uppercase;
}
.head__service .offer__beforetitle,
.head__service .offer__subtitle {
  color: #fff;
}
.head__service .offer__title {
  font-size: 54px;
  font-weight: 600;
  color: #fff;
  line-height: 1.1em;
}

@media screen and (max-width: 1439px) {
  .head__service .offer__title {
    font-size: 48px;
  }
  .head__service .offer__beforetitle {
    margin-bottom: 25px;
  }
  .head__service .offer__subtitle {
    padding-top: 25px;
  }
  .head__service {
    padding-top: 80px;
  }
  .head__service .container {
    padding-top: 70px;
    padding-bottom: 70px;
  }
}
@media screen and (max-width: 1199px) {
  .head__service::before {
    width: 50%;
  }
  .head__service .offer__title {
    font-size: 36px;
  }
}
@media screen and (max-width: 991px) {
  .service__head {
    padding-bottom: 50px;
  }
  .service__head .service_bg {
    min-height: 690px;
  }
  .service__head .service__offer {
    padding-bottom: 60px;
  }
  .service__head h1 {
    font-size: 36px;
    margin-bottom: 16px;
  }
  .service__head .video_wrap {
    width: 100%;
  }
  .service__head .btn_to_video {
    margin-top: 40px;
  }
  .head__service::before {
    width: 100%;
    background-color: rgba(17, 17, 17, 0.3);
  }
  .head__service .offer__title,
  .head__service .offer__beforetitle,
  .head__service .offer__subtitle {
    text-align: center;
  }
  .head__service .offer .form__wrap {
    margin: 0 auto;
    padding-top: 30px;
  }
  .head__service .offer .form__wrap .input__group .order__input {
    height: 60px;
  }
}
@media screen and (max-width: 576px) {
  .head__service .offer__title {
    font-size: 8vw;
  }
  .head__service {
    padding-top: 30px;
  }
  .service__head {
    padding-bottom: 0;
  }
  .service__head h1 {
    font-size: 30px;
  }
}
.buyback .buyback__card {
  width: 100%;
  height: 320px;
  border-radius: 10px;
  overflow: hidden;
  position: relative;
  padding-bottom: 45px;
}
.buyback .buyback__card:before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  background-color: var(--black);
  opacity: 0.6;
  position: absolute;
  left: 0;
  top: 0;
}
.buyback .buyback__card .buyback__name {
  color: var(--white);
}
.buyback .buyback__card .btn.btn_tr {
  color: var(--white);
  border-color: var(--white);
}

@media screen and (max-width: 767px) {
  .section__title.section__title_secondary {
    font-size: 28px;
  }
  .buyback .buyback__card {
    height: 250px;
    padding-bottom: 30px;
  }
}
@media screen and (max-width: 576px) {
  .section__title.section__title_secondary {
    font-size: 24px;
  }
}
.selection {
  background-color: var(--blue);
}
.selection .selection__bg {
  position: absolute;
  right: 12px;
  top: 0;
  width: 130%;
  max-width: 820px;
  height: 100%;
  background-color: var(--blue);
  background-blend-mode: multiply;
}
.selection .selection__offer {
  padding-top: 120px;
  padding-bottom: 120px;
}
.selection .form__wrap {
  max-width: 310px;
  margin: 0 auto;
}
.selection .form__wrap .input__group {
  margin-bottom: 20px;
}
.selection .form__wrap .input__group .order__input {
  height: 40px;
  border: none;
  border-radius: 0;
  border-bottom: 2px solid var(--white);
  padding-left: 20px;
  font-size: 16px;
  color: var(--white);
}
.selection .form__wrap .input__group .order__input::-webkit-input-placeholder {
  font-size: 16px;
  color: var(--white);
}
.selection .form__wrap .input__group .order__input::-moz-placeholder {
  font-size: 16px;
  color: var(--white);
}
.selection .form__wrap .input__group .order__input:-ms-input-placeholder {
  font-size: 16px;
  color: var(--white);
}
.selection .form__wrap .input__group .order__input::-ms-input-placeholder {
  font-size: 16px;
  color: var(--white);
}
.selection .form__wrap .input__group .order__input::placeholder {
  font-size: 16px;
  color: var(--white);
}
.selection .form__wrap .btn {
  width: 100%;
  height: 60px;
  font-size: 22px;
  font-weight: 600;
  text-transform: uppercase;
  background-color: var(--yellow_brand);
  color: var(--blue);
  border: 2px solid var(--yellow_brand);
}
.selection .form__wrap .btn:hover {
  border: 2px solid var(--yellow_brand);
  background-color: var(--white);
}
.selection .selection__logo {
  width: 200px;
  height: auto;
}
.selection .selection__title {
  font-size: 48px;
  font-weight: 600;
  color: var(--white);
  line-height: 1.1em;
}

@media screen and (max-width: 1439px) {
  .selection .selection__title {
    font-size: 40px;
  }
}
@media screen and (max-width: 991px) {
  .selection .selection__bg {
    width: 100%;
    max-width: 100%;
    right: 0;
  }
  .selection .selection__logo {
    margin: 0 auto 25px;
  }
  .selection .selection__offer {
    padding-top: 70px;
    padding-bottom: 70px;
    text-align: center;
  }
  .selection .selection__title {
    font-size: 36px;
  }
}
@media screen and (max-width: 576px) {
  .selection .selection__title {
    font-size: 8vw;
  }
}
.review .review__arrows {
  position: absolute;
  width: 100%;
  left: 0;
  top: calc(50% - 24px);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  z-index: 5;
  pointer-events: none;
}
.review .review__arrows .review__arrow {
  width: 20px;
  height: 48px;
  background-color: var(--yellow_brand);
  border: none;
  pointer-events: all;
  cursor: pointer;
  border-radius: 5px;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
.review .review__arrows .review__arrow:hover {
  background-color: var(--yellow_hover);
}
.review .review__arrows .review__arrow path {
  stroke: var(--blue);
}
.review .swiper-slide {
  -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.18);
          box-shadow: 0 0 10px rgba(0, 0, 0, 0.18);
  background-color: var(--grey_F3);
  height: auto;
}
.review .swiper-slide .review__thumb {
  height: 230px;
  width: 100%;
  display: block;
  position: relative;
}
.review .swiper-slide .review__thumb:after {
  content: "";
  display: block;
  position: absolute;
  left: calc(50% - 30px);
  top: calc(50% - 30px);
  width: 60px;
  height: 60px;
  background: url(../img/icon_play_ytb.svg) no-repeat center;
}
.review .swiper-slide .review__thumb:hover, .review .swiper-slide .review__thumb:active {
  outline: none;
}
.review .swiper-slide .review__thumb img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.review .swiper-slide .review__content {
  padding: 20px 28px;
}
.review .swiper-slide .review__content .review__name {
  color: var(--black);
  line-height: 1.1em;
}
.review .swiper-slide .review__content .review__describe {
  line-height: 1.1em;
}
.review .swiper-slide .review__content .review__price span:last-child {
  color: var(--blue);
}
.review .btn.btn__review {
  width: 90%;
  max-width: 420px;
  margin-top: 20px;
  background-color: var(--grey_F3);
  font-weight: 500;
}

.catalog .catalog__arrows {
  position: absolute;
  width: 100%;
  left: 0;
  top: 202px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  z-index: 5;
  pointer-events: none;
}
.catalog .catalog__arrows .catalog__arrow {
  width: 20px;
  height: 48px;
  background-color: var(--yellow_brand);
  border: none;
  pointer-events: all;
  cursor: pointer;
  border-radius: 5px;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
.catalog .catalog__arrows .catalog__arrow:hover {
  background-color: var(--yellow_hover);
}
.catalog .catalog__arrows .catalog__arrow path {
  stroke: var(--blue);
}
.catalog .swiper-slide {
  -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.18);
          box-shadow: 0 0 10px rgba(0, 0, 0, 0.18);
  background-color: var(--grey_F3);
  height: auto;
}
.catalog .swiper-slide .catalog__thumb {
  height: 230px;
  width: 100%;
  display: block;
  position: relative;
}
.catalog .swiper-slide .catalog__thumb img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.catalog .swiper-slide .catalog__content {
  padding: 20px 18px;
}
.catalog .swiper-slide .catalog__content .catalog__name {
  color: var(--black);
  line-height: 1.1em;
}
.catalog .swiper-slide .catalog__content .catalog__price span:last-child {
  color: var(--blue);
}
.catalog .swiper-slide .catalog__content .catalog__btn {
  margin-top: 30px;
  width: 100%;
}
.catalog .swiper-slide .catalog__content .catalog__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.catalog .swiper-slide .catalog__content .catalog__list .catalog__item {
  width: 53%;
}
.catalog .swiper-slide .catalog__content .catalog__list .catalog__item p {
  padding-top: 3px;
}
.catalog .swiper-slide .catalog__content .catalog__list .catalog__item .catalog__icon {
  width: 20px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.catalog .swiper-slide .catalog__content .catalog__list .catalog__item:nth-child(odd) {
  padding-right: 10px;
  width: 47%;
}
.catalog .btn.btn__review {
  width: 90%;
  max-width: 420px;
  margin-top: 20px;
  background-color: var(--grey_F3);
  font-weight: 500;
}
.catalog .not__list {
  width: 100%;
  max-width: 700px;
  height: auto;
}

@media screen and (max-width: 1439px) {
  .review .swiper-slide .review__content,
  .catalog .swiper-slide .catalog__content {
    padding: 20px 15px;
  }
  .catalog .swiper-slide .catalog__content .catalog__list .catalog__item p {
    font-size: 14px;
  }
}
@media screen and (max-width: 576px) {
  .catalog .swiper-slide .catalog__thumb {
    height: 56vw;
  }
}
.advant .advant__card {
  padding: 50px 30px;
  background-color: var(--grey_F3);
  border-radius: 20px;
}
.advant .advant__card .advant__icon {
  width: 64px;
  height: 64px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-right: 15px;
}
.advant .advant__card .advant__icon img {
  width: 100%;
  height: auto;
}
.advant .advant__card .advant__name {
  line-height: 1.1em;
  color: var(--blue);
}
.advant .advant__card .advant__text {
  line-height: 1.1em;
}

@media screen and (max-width: 1440px) {
  .advant .advant__card {
    padding: 35px 20px;
  }
}
@media screen and (max-width: 1199px) {
  .advant .advant__card .advant__icon {
    width: 50px;
    height: 50px;
  }
  .advant .advant__card .advant__name {
    font-size: 18px;
  }
  .advant .advant__card .advant__text {
    font-size: 18px;
  }
}
@media screen and (max-width: 576px) {
  .advant .advant__card {
    padding: 20px;
  }
  .advant .advant__card .advant__top {
    margin-bottom: 20px;
  }
  .advant .advant__card .advant__icon {
    width: 40px;
    height: 40px;
    margin-bottom: 15px;
    margin-right: 0;
  }
  .advant .advant__card .advant__text {
    font-size: 16px;
  }
}
.faq .faq__item {
  padding: 23px 30px;
  border-radius: 10px;
  background-color: var(--grey_F3);
  -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.18);
          box-shadow: 0 0 10px rgba(0, 0, 0, 0.18);
}
.faq .faq__item:not(:last-child) {
  margin-bottom: 18px;
}
.faq .faq__item.open .icon {
  -webkit-transform: rotateX(180deg);
          transform: rotateX(180deg);
}
.faq .faq__item.open .icon path {
  stroke: var(--blue);
}
.faq .faq__item .faq__question {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  cursor: pointer;
}
.faq .faq__item .faq__question span {
  pointer-events: none;
}
.faq .faq__item .faq__question .icon {
  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;
  pointer-events: none;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
  margin-top: 3px;
  margin-left: 25px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.faq .faq__item .text__content p {
  line-height: 1.1em;
}
.faq .faq__item .text__content p:last-child {
  margin-bottom: 0;
}
.faq .faq__cta {
  padding-top: 100px;
  padding-bottom: 100px;
  position: relative;
}
.faq .faq__cta:before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background-color: var(--black);
  opacity: 0.67;
  position: absolute;
  left: 0;
  top: 0;
}
.faq .faq__cta .faq__cta_title {
  color: var(--white);
  max-width: 310px;
  margin-left: auto;
  margin-right: auto;
}
.faq .faq__cta .form__wrap {
  max-width: 310px;
  margin: 0 auto;
}
.faq .faq__cta .form__wrap .input__group {
  margin-bottom: 20px;
}
.faq .faq__cta .form__wrap .input__group .order__input {
  height: 40px;
  border: none;
  border-radius: 0;
  border-bottom: 2px solid var(--white);
  padding-left: 20px;
  font-size: 16px;
  color: var(--white);
}
.faq .faq__cta .form__wrap .input__group .order__input::-webkit-input-placeholder {
  font-size: 16px;
  color: var(--white);
}
.faq .faq__cta .form__wrap .input__group .order__input::-moz-placeholder {
  font-size: 16px;
  color: var(--white);
}
.faq .faq__cta .form__wrap .input__group .order__input:-ms-input-placeholder {
  font-size: 16px;
  color: var(--white);
}
.faq .faq__cta .form__wrap .input__group .order__input::-ms-input-placeholder {
  font-size: 16px;
  color: var(--white);
}
.faq .faq__cta .form__wrap .input__group .order__input::placeholder {
  font-size: 16px;
  color: var(--white);
}
.faq .faq__cta .form__wrap .btn {
  width: 100%;
  height: 60px;
  font-size: 22px;
  font-weight: 600;
  text-transform: uppercase;
  background-color: var(--yellow_brand);
  color: var(--blue);
  border: 2px solid var(--yellow_brand);
}
.faq .faq__cta .form__wrap .btn:hover {
  border: 2px solid var(--yellow_brand);
  background-color: var(--white);
}

.cta {
  padding-top: 74px;
  padding-bottom: 74px;
}
.cta .cta__title {
  color: var(--yellow_brand);
  line-height: 1.1em;
}
.cta:before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background-color: var(--black);
  opacity: 0.25;
  position: absolute;
  left: 0;
  top: 0;
}
.cta .form__wrap {
  width: 100%;
  max-width: 420px;
  margin: 0 auto;
}
.cta .form__wrap .input__group .order__input {
  height: 65px;
  background-color: var(--white);
  border: none;
}
.cta .form__wrap .input__group .order__input::-webkit-input-placeholder {
  color: var(--blue);
}
.cta .form__wrap .input__group .order__input::-moz-placeholder {
  color: var(--blue);
}
.cta .form__wrap .input__group .order__input:-ms-input-placeholder {
  color: var(--blue);
}
.cta .form__wrap .input__group .order__input::-ms-input-placeholder {
  color: var(--blue);
}
.cta .form__wrap .input__group .order__input::placeholder {
  color: var(--blue);
}
.cta .form__wrap .btn {
  width: 100%;
  height: 65px;
  text-transform: uppercase;
  color: var(--white);
  background-color: var(--blue);
  font-size: 22px;
  font-weight: 600;
}
.cta .form__wrap .btn:hover {
  background-color: var(--blue_hover);
}

@media screen and (max-width: 1439px) {
  .cta .cta__title {
    font-size: 44px;
  }
}
@media screen and (max-width: 1199px) {
  .cta .cta__title {
    font-size: 36px;
  }
  .cta .form__wrap .btn,
  .cta .form__wrap .input__group .order__input {
    height: 50px;
  }
  .cta .form__wrap .btn {
    font-size: 20px;
  }
}
@media screen and (max-width: 991px) {
  .cta .cta__title {
    text-align: center;
  }
}
.history {
  padding-top: 70px;
  padding-bottom: 70px;
}
.history .history__bg {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  opacity: 0.28;
}
.history .history__logo {
  width: 90%;
  max-width: 430px;
  display: block;
  height: auto;
  margin: 0 auto;
}
.history .history__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 40px;
  position: relative;
}
.history .history__item.history__item_more::after {
  content: "";
  display: block;
  width: 2px;
  height: calc(100% + 40px);
  background: url(../img/history_dashed.svg) repeat-y;
  position: absolute;
  left: 90px;
  top: 10px;
}
.history .history__item .history__year {
  width: 65px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.history .history__item:last-child {
  margin-bottom: 0;
}
.history .history__item:last-child .history__year {
  color: var(--blue);
}
.history .history__item:last-child::after {
  display: none;
}
.history .history__item .history__bulet {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 12px;
  height: 12px;
  background-color: var(--blue);
  border-radius: 50%;
  margin: 11px 26px 0 20px;
}
.history .history__item .text__content {
  padding-top: 12px;
}
.history .history__item .text__content p {
  font-weight: 500;
  line-height: 1.1em;
  margin-bottom: 1.1em;
}
.history .history__item .text__content p:last-child {
  margin-bottom: 0;
}

@media screen and (max-width: 576px) {
  .history .history__item {
    margin-bottom: 20px;
  }
  .history .history__item .history__year {
    font-size: 16px;
    width: 40px;
  }
  .history .history__item .history__bulet {
    margin-left: 10px;
    margin-right: 16px;
    margin-top: 7px;
  }
  .history .history__item .text__content {
    padding-top: 7px;
  }
  .history .history__item.history__item_more::after {
    left: 56px;
    height: calc(100% + 20px);
  }
}
.step .step__card {
  padding: 70px 50px 45px;
  background-color: var(--grey_F3);
  border-radius: 10px;
  position: relative;
}
.step .step__card .step__number {
  background-color: var(--blue);
  border-radius: 50%;
  width: 64px;
  height: 64px;
  position: absolute;
  left: calc(50% - 32px);
  top: -32px;
  color: var(--white);
  font-size: 32px;
  font-weight: 500;
}
.step .step__card .step__icon {
  height: 130px;
  margin-bottom: 25px;
}
.step .step__card .step__icon img {
  width: auto;
  height: 100%;
}

@media screen and (max-width: 1439px) {
  .step .step__card {
    padding: 50px 35px 35px;
  }
  .step .step__card .step__icon {
    height: 110px;
  }
}
@media screen and (max-width: 1199px) {
  .step .step__card {
    padding: 50px 15px 25px;
  }
}
@media screen and (max-width: 576px) {
  .step .step__card .step__icon {
    height: 80px;
  }
}
.benefit .benefit__img {
  height: 100%;
  min-height: 345px;
  position: relative;
}
.benefit .benefit__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.benefit .benefit__img .benefit__name {
  position: absolute;
  bottom: 18px;
  left: 50%;
  -webkit-transform: translate(-50%);
          transform: translate(-50%);
  padding: 6px 20px;
  color: var(--white);
  font-size: 20px;
  font-weight: 500;
  text-align: center;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  background-color: var(--blue);
  line-height: 1.1em;
}
.benefit .benefit__arrows {
  position: absolute;
  width: 100%;
  left: 0;
  top: calc(50% - 24px);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  z-index: 5;
  pointer-events: none;
}
.benefit .benefit__arrows .catalog__arrow {
  width: 20px;
  height: 48px;
  background-color: var(--yellow_brand);
  border: none;
  pointer-events: all;
  cursor: pointer;
  border-radius: 5px;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
.benefit .benefit__arrows .catalog__arrow:hover {
  background-color: var(--yellow_hover);
}
.benefit .benefit__arrows .catalog__arrow path {
  stroke: var(--blue);
}
.benefit .benefit__card {
  width: 100%;
  border-radius: 10px;
  padding: 28px 0 28px 40px;
}
.benefit .benefit__card.benefit__card_usa {
  border: 2px solid var(--blue);
  background-color: var(--grey_F3);
}
.benefit .benefit__card.benefit__card_usa .benefit__item_price b {
  color: var(--blue);
}
.benefit .benefit__card .benefit__top {
  line-height: 1em;
}
.benefit .benefit__card .benefit__icon {
  display: block;
  margin-right: 14px;
}
.benefit .benefit__card .benefit__icon img {
  width: 30px;
}
.benefit .benefit__card .benefit__item {
  font-weight: 300;
  font-size: 18px;
  line-height: 1.1em;
}
.benefit .benefit__card .benefit__item:not(:last-child) {
  margin-bottom: 20px;
}
.benefit .benefit__card .benefit__item b {
  font-weight: 500;
  font-size: 20px;
}

@media screen and (max-width: 1439px) {
  .benefit .benefit__card {
    padding-left: 12px;
  }
  .benefit .benefit__card .benefit__top {
    margin-bottom: 15px;
  }
}
@media screen and (max-width: 1199px) {
  .benefit .benefit__card .benefit__top {
    font-size: 18px;
  }
  .benefit .benefit__card .benefit__item {
    font-size: 16px;
  }
  .benefit .benefit__card .benefit__item b {
    font-size: 18px;
  }
}
@media screen and (max-width: 576px) {
  .benefit .benefit__img {
    min-height: 250px;
  }
  .benefit .benefit__card {
    padding: 15px 10px;
  }
  .benefit .benefit__card {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .benefit .benefit__card .benefit__top {
    width: 100%;
  }
  .benefit .benefit__card .benefit__item {
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
    margin-bottom: 0;
    padding-right: 10px;
  }
}
@media screen and (max-width: 400px) {
  .benefit .benefit__card .benefit__item {
    font-size: 14px;
  }
  .benefit .benefit__card .benefit__item b {
    font-size: 16px;
  }
}
.call_us {
  position: fixed;
  right: 16px;
  bottom: 40px;
  width: 85px;
  height: 85px;
  border-radius: 50%;
  background-color: var(--blue_hover);
  z-index: 999999999;
  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-animation: pulsShadow 3s ease-out infinite;
          animation: pulsShadow 3s ease-out infinite;
}

@-webkit-keyframes pulsShadow {
  0% {
    -webkit-box-shadow: 0 0 0 rgba(69, 125, 238, 0.8);
            box-shadow: 0 0 0 rgba(69, 125, 238, 0.8);
  }
  100% {
    -webkit-box-shadow: 0 0 0 15px rgba(69, 125, 238, 0);
            box-shadow: 0 0 0 15px rgba(69, 125, 238, 0);
  }
}

@keyframes pulsShadow {
  0% {
    -webkit-box-shadow: 0 0 0 rgba(69, 125, 238, 0.8);
            box-shadow: 0 0 0 rgba(69, 125, 238, 0.8);
  }
  100% {
    -webkit-box-shadow: 0 0 0 15px rgba(69, 125, 238, 0);
            box-shadow: 0 0 0 15px rgba(69, 125, 238, 0);
  }
}
.popup {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  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;
  background-color: rgba(0, 0, 0, 0.5);
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
  pointer-events: none;
  opacity: 0;
  z-index: 999999;
}
.popup.open {
  opacity: 1;
  pointer-events: all;
}
.popup .popup__content {
  background: #fff;
  border-radius: 20px;
  padding: 26px;
  width: 96%;
  max-width: 500px;
  max-height: 98%;
  position: relative;
  overflow-y: auto;
}
.popup .popup__content .close_popup {
  position: absolute;
  right: 10px;
  top: 10px;
  width: 20px;
  height: 20px;
  background: url(../img/close.svg) no-repeat center;
  border: none;
  cursor: pointer;
}
.popup .popup__content h4 {
  font-size: 24px;
  margin-bottom: 15px;
  font-weight: 500;
  text-align: center;
}
.popup .popup__content > p {
  font-size: 16px;
  margin-bottom: 10px;
  text-align: center;
}
.popup.buyback_popup .form__wrap .input__group {
  margin-bottom: 20px;
}
.popup.buyback_popup .form__wrap .input__group .order__input {
  height: 40px;
  border: none;
  border-radius: 0;
  border-bottom: 2px solid var(--black);
  padding-left: 20px;
  font-size: 16px;
  color: var(--black);
}
.popup.buyback_popup .form__wrap .input__group .order__input::-webkit-input-placeholder {
  font-size: 16px;
  color: var(--black);
}
.popup.buyback_popup .form__wrap .input__group .order__input::-moz-placeholder {
  font-size: 16px;
  color: var(--black);
}
.popup.buyback_popup .form__wrap .input__group .order__input:-ms-input-placeholder {
  font-size: 16px;
  color: var(--black);
}
.popup.buyback_popup .form__wrap .input__group .order__input::-ms-input-placeholder {
  font-size: 16px;
  color: var(--black);
}
.popup.buyback_popup .form__wrap .input__group .order__input::placeholder {
  font-size: 16px;
  color: var(--black);
}
.popup.buyback_popup .form__wrap .input__group_file {
  width: 100%;
  position: relative;
  margin-bottom: 25px;
}
.popup.buyback_popup .form__wrap .input__group_file label {
  width: 100%;
  height: 45px;
  cursor: pointer;
  border-radius: 50px;
  border: 1px solid var(--black);
  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;
}
.popup.buyback_popup .form__wrap .input__group_file label .photo_placeholder {
  position: absolute;
  left: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
  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;
  font-size: 18px;
  font-weight: 600;
  color: var(--black);
}
.popup.buyback_popup .form__wrap .input__group_file label input {
  cursor: pointer;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  opacity: 0;
  height: 100%;
  width: 100%;
  display: block;
}
.popup.buyback_popup .form__wrap .input__group_file .file__wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.popup.buyback_popup .form__wrap .input__group_file .file__wrap .image-container {
  position: relative;
  height: 80px;
  padding: 5px;
  width: 33.3%;
}
.popup.buyback_popup .form__wrap .input__group_file .file__wrap .image-container:last-child {
  margin-bottom: 0;
}
.popup.buyback_popup .form__wrap .input__group_file .file__wrap .image-container img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.popup.buyback_popup .form__wrap .input__group_file .file__wrap .remove-btn {
  position: absolute;
  display: block;
  width: 20px;
  height: 20px;
  top: 5px;
  right: 5px;
  border: 1px solid var(--black);
  cursor: pointer;
  opacity: 0.7;
  background: url(../img/close_menu_dark.svg) no-repeat center/16px;
  background-color: var(--white);
  z-index: 2;
}
.popup.buyback_popup .form__wrap .btn {
  width: 100%;
  height: 60px;
  font-size: 22px;
  font-weight: 600;
  text-transform: uppercase;
}/*# sourceMappingURL=main.css.map */