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

:root {
  --app-height: 100%;
  --white: #ffffff;
  --dark: #171717;
  --blue: #2c3cd1;
  --dark_blue: #2634af;
  --light_bg: #f6f6f6;
  --dark_grey: #0c0c0c;
  --grey: #c2c2c2;
  --light_grey: #f0f3fb;
  --light_grey: #f0f3fb;
}

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

.swiper-container {
  overflow: hidden;
}

body {
  font-family: "Manrope", sans-serif;
  color: var(--dark);
  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,
input:active,
select:active,
input:focus,
select:focus,
input,
select {
  display: block;
  outline: none;
  font-family: "Manrope", 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 {
  width: 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-family: "Manrope", sans-serif;
  background-color: var(--blue);
  border: 1px solid var(--blue);
  border-radius: 10px;
  font-size: 24px;
  font-weight: 500;
  height: 81px;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
  cursor: pointer;
  color: #fff;
}
a.btn:hover,
button.btn:hover {
  background-color: var(--dark_blue);
  color: var(--white);
}
a.btn.btn_tr,
button.btn.btn_tr {
  background-color: transparent;
  border: 1px solid var(--dark);
  color: var(--dark);
}
a.btn.btn_tr:hover,
button.btn.btn_tr:hover {
  background-color: var(--dark_blue);
  color: var(--white);
}

.header {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  z-index: 999;
  padding: 14px 0 10px;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
  border-bottom: 1px solid #c2c2c2;
  background-color: #fff;
}
.header.header_fixed {
  padding: 8px 0;
}
.header .btn {
  width: 214px;
  height: 57px;
  font-size: 18px;
}

.head_lang li {
  margin: 0 10px;
}
.head_lang li a {
  font-size: 18px;
  font-weight: 500;
  color: var(--dark);
}
.head_lang li a:hover {
  color: var(--blue);
}
.head_lang li.current-lang a {
  color: var(--blue);
}

.custom-logo-link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.custom-logo-link span {
  font-size: 24px;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--dark);
}
.custom-logo-link:hover {
  color: var(--dark);
}
.custom-logo-link img {
  width: 72px;
  height: auto;
  margin-right: 16px;
}

.nav .sub-menu {
  width: 285px;
  padding: 28px 16px;
  background: var(--white);
  opacity: 0;
  display: block;
  position: absolute;
  top: calc(100% - 1px);
  left: 0%;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
  pointer-events: none;
  border-radius: 20px;
  -webkit-box-shadow: 0px 4px 23px 0px rgba(23, 59, 130, 0.13);
          box-shadow: 0px 4px 23px 0px rgba(23, 59, 130, 0.13);
}
.nav .sub-menu li {
  margin: 0;
}
.nav .sub-menu li a {
  padding: 5px 5px 5px 24px;
  text-align: left;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  color: var(--dark);
  border-radius: 5px;
  height: auto;
}
.nav .sub-menu li a:hover {
  background-color: var(--light_grey);
  color: var(--blue);
}
@media screen and (min-width: 992px) {
  .nav .menu-item-has-children:hover .sub-menu {
    opacity: 1;
    z-index: 15;
    pointer-events: all;
  }
}

.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-right: 40px;
}
.nav__menu .nav__item a {
  font-size: 18px;
  font-family: "Manrope", sans-serif;
  font-weight: 400;
  line-height: 1.6em;
  color: var(--dark);
  height: 60px;
  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;
}
.nav__menu .nav__item a:hover {
  color: var(--blue);
}
.nav__menu .nav__item.menu-item-has-children > a {
  padding-right: 30px;
}
.nav__menu .nav__item.menu-item-has-children > a::after {
  content: "";
  display: block;
  width: 15px;
  height: 15px;
  position: absolute;
  right: 0px;
  top: calc(50% - 7px);
  background: url(../img/arrow_menu_down_dark.svg) no-repeat center;
}
.nav__menu .nav__item.current-menu-item > a {
  color: var(--blue);
}
.nav__menu .nav__item.current-menu-item > a::after {
  background: url(../img/arrow_menu_down_blue.svg) no-repeat center;
}

.menu__burger {
  display: none;
}

@media screen and (max-width: 1199px) {
  .header {
    padding: 12px 0;
  }
  .nav {
    position: fixed;
    width: 100%;
    height: 100vh;
    padding: 12px;
    z-index: 999999;
    left: 0;
    top: -100px;
    opacity: 0;
    pointer-events: none;
    background: var(--white);
    -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 {
    top: 0px;
    opacity: 1;
    pointer-events: all;
  }
  .nav .nav__row {
    width: 100%;
    margin-bottom: 30px;
    padding: 12px 0;
    position: relative;
  }
  .nav .nav__row:after {
    content: "";
    display: block;
    width: calc(100% + 24px);
    height: 1px;
    background-color: var(--blue);
    position: absolute;
    left: -12px;
    bottom: 0;
  }
  .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;
    background-color: var(--light_bg);
    border: 1px solid var(--grey);
  }
  .nav .menu__close:hover {
    background-color: var(--light_bg);
    border: 1px solid var(--grey);
  }
  .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;
  }
  .nav .nav__menu .nav__item.menu-item-has-children > a {
    border-bottom: 1px solid transparent;
    padding-left: 40px;
  }
  .nav .nav__menu .nav__item.menu-item-has-children > a::after {
    display: none;
  }
  .nav .nav__menu .nav__item.menu-item-has-children.active > a {
    border-radius: 12px 12px 0 0;
    border-bottom: 1px solid #393b4d;
    opacity: 0.5;
  }
  .nav .nav__menu .nav__item.menu-item-has-children.active > a .open_child_menu {
    -webkit-transform: rotate(180deg);
            transform: rotate(180deg);
  }
  .nav .sub-menu {
    width: 100%;
    max-width: 100%;
    padding: 0;
    background: transparent;
    border-radius: 0;
    border: none !important;
    /* border-radius: 0 0 2px 2px; */
    border-bottom: none;
    opacity: 1;
    pointer-events: all;
    display: block;
    z-index: 15;
    position: relative;
    top: initial;
    left: 0;
    background-color: none;
    text-align: center;
    -webkit-transition: all 0.4s ease;
    transition: all 0.4s ease;
  }
  .nav .sub-menu li {
    margin: 0;
  }
  .nav .sub-menu li:last-child a {
    border-radius: 0 0 12px 12px;
  }
  .nav .sub-menu li a {
    text-align: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .nav .open_child_menu {
    position: absolute;
    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: 40px;
    height: 40px;
    right: 0px;
    top: 0px;
    -webkit-transition: all 0.4s ease;
    transition: all 0.4s ease;
    background: url(../img/arrow_menu_down_dark.svg) no-repeat center;
    background-color: var(--light_grey);
  }
  .nav .open_child_menu:hover {
    background: url(../img/arrow_menu_down_blue.svg) no-repeat center;
    background-color: var(--light_grey);
  }
  .menu__burger {
    display: block;
    cursor: pointer;
    width: 56px;
    height: 36px;
    padding: 10px 16px;
    border-radius: 12px;
    margin-left: 15px;
    border-radius: 12px;
    background: var(--light_bg);
    border: 1px solid var(--grey);
    -webkit-transition: all 0.4s ease;
    transition: all 0.4s ease;
    -ms-flex-negative: 0;
        flex-shrink: 0;
  }
  .menu__burger:hover {
    border: 1px solid var(--grey);
    background: var(--light_bg);
  }
  .menu__burger:hover span {
    background-color: #2c3cd1;
  }
  .menu__burger span {
    width: 100%;
    display: block;
    height: 2px;
    margin-bottom: 4px;
    background: #393b4d;
    border-radius: 3px;
    -webkit-transition: all 0.4s ease;
    transition: all 0.4s ease;
  }
  .menu__burger span.burger__line_third {
    margin-bottom: 0;
  }
  .nav .nav__item {
    padding: 0;
    margin-bottom: 4px;
    margin-right: 0;
    max-width: 375px;
    width: 100%;
  }
  .nav .nav__item > a {
    font-size: 24px;
    margin: 0 auto;
    font-weight: 400;
    position: relative;
    opacity: 0;
    -webkit-transform: translateY(100%);
            transform: translateY(100%);
    min-height: 40px;
    border-radius: 3px;
    background-color: var(--light_bg);
    height: auto;
    text-align: center;
    border: none;
  }
  .nav .nav__item > a:hover {
    background-color: var(--grey);
  }
  .nav.open_menu .nav__item > a {
    -webkit-animation: fromBottom 0.4s ease-out forwards;
            animation: fromBottom 0.4s ease-out forwards;
  }
  .nav .nav__item:nth-child(1) a {
    -webkit-animation-delay: 0.5s;
            animation-delay: 0.5s;
  }
  .nav .nav__item:nth-child(2) a {
    -webkit-animation-delay: 0.7s;
            animation-delay: 0.7s;
  }
  .nav .nav__item:nth-child(3) a {
    -webkit-animation-delay: 0.9s;
            animation-delay: 0.9s;
  }
  .nav .nav__item:nth-child(4) a {
    -webkit-animation-delay: 1.1s;
            animation-delay: 1.1s;
  }
  .nav .nav__item:nth-child(5) a {
    -webkit-animation-delay: 1.3s;
            animation-delay: 1.3s;
  }
  .nav .nav__item:nth-child(6) a {
    -webkit-animation-delay: 1.5s;
            animation-delay: 1.5s;
  }
  .nav .nav__item:nth-child(7) a {
    -webkit-animation-delay: 1.7s;
            animation-delay: 1.7s;
  }
  .nav .nav__item:nth-child(8) a {
    -webkit-animation-delay: 1.9s;
            animation-delay: 1.9s;
  }
  @-webkit-keyframes fromBottom {
    0% {
      opacity: 0;
      -webkit-transform: translateY(15px);
              transform: translateY(15px);
    }
    100% {
      opacity: 1;
      -webkit-transform: translateY(0);
              transform: translateY(0);
    }
  }
  @keyframes fromBottom {
    0% {
      opacity: 0;
      -webkit-transform: translateY(15px);
              transform: translateY(15px);
    }
    100% {
      opacity: 1;
      -webkit-transform: translateY(0);
              transform: translateY(0);
    }
  }
}
.form__wrap {
  width: 100%;
}
.form__wrap .input__group {
  margin-bottom: 24px;
}
.form__wrap .input__group .order__input {
  display: block;
  width: 100%;
  height: 75px;
  border-radius: 10px;
  padding-left: 32px;
  font-size: 24px;
  font-weight: 500;
  color: var(--dark);
  background-color: transparent;
  border: 1px solid var(--dark);
}
.form__wrap .input__group .order__input::-webkit-input-placeholder {
  font-size: 24px;
  font-weight: 500;
  color: var(--grey);
}
.form__wrap .input__group .order__input::-moz-placeholder {
  font-size: 24px;
  font-weight: 500;
  color: var(--grey);
}
.form__wrap .input__group .order__input:-ms-input-placeholder {
  font-size: 24px;
  font-weight: 500;
  color: var(--grey);
}
.form__wrap .input__group .order__input::-ms-input-placeholder {
  font-size: 24px;
  font-weight: 500;
  color: var(--grey);
}
.form__wrap .input__group .order__input::placeholder {
  font-size: 24px;
  font-weight: 500;
  color: var(--grey);
}
.form__wrap .btn {
  width: 100%;
}

.section__title {
  font-size: 36px;
  text-transform: uppercase;
  font-weight: 500;
}

.title_1 {
  font-size: 96px;
  line-height: 1.14em;
  font-weight: 400;
}

.title_3 {
  font-size: 30px;
  font-weight: 500;
}

.title_4 {
  font-size: 28px;
  font-weight: 600;
  line-height: 1.3em;
}

.text_1 {
  font-size: 20px;
  line-height: 1.4em;
  margin-bottom: 1.4em;
}

.text_2 {
  font-size: 18px;
  line-height: 1.3em;
  margin-bottom: 1.3em;
}

.text__content h1 {
  font-size: 96px;
  line-height: 1.14em;
  font-weight: 400;
  margin-bottom: 1.4em;
}
.text__content h2 {
  font-size: 36px;
  font-weight: 500;
  margin-bottom: 1.2em;
}
.text__content h3 {
  font-size: 30px;
  font-weight: 500;
  margin-bottom: 1.2em;
}
.text__content h4 {
  font-size: 28px;
  font-weight: 600;
  line-height: 1.3em;
  margin-bottom: 1.3em;
}
.text__content h5 {
  font-size: 20px;
  font-weight: 400;
}
.text__content.text_1 li,
.text__content.text_1 p {
  font-size: 20px;
  line-height: 1.4em;
  margin-bottom: 1.4em;
}
.text__content.text_2 li,
.text__content.text_2 p {
  font-size: 18px;
  line-height: 1.3em;
  margin-bottom: 1.3em;
}

@media screen and (max-width: 1399px) {
  a.btn,
  button.btn {
    height: 65px;
  }
  .text_1 {
    font-size: 18px;
  }
  .text_2 {
    font-size: 16px;
  }
  .section__title {
    font-size: 32px;
  }
  .title_1 {
    font-size: 80px;
  }
  .title_3 {
    font-size: 28px;
  }
  .title_4 {
    font-size: 26px;
  }
  .text__content h1 {
    font-size: 80px;
  }
  .text__content h2 {
    font-size: 32px;
  }
  .text__content h3 {
    font-size: 26px;
  }
  .text__content h4 {
    font-size: 22px;
  }
  .text__content.text_1 li,
  .text__content.text_1 p {
    font-size: 18px;
  }
  .text__content.text_1 li {
    position: relative;
  }
  .text__content.text_1 li:before {
    content: "";
    display: block;
  }
  .text__content.text_2 li,
  .text__content.text_2 p {
    font-size: 16px;
  }
  .text__content.text_2 li {
    position: relative;
  }
  .text__content.text_2 li:before {
    content: "";
    display: block;
  }
}
@media screen and (max-width: 1199px) {
  a.btn,
  button.btn {
    height: 55px;
    font-size: 20px;
  }
  .title_1 {
    font-size: 66px;
  }
  .text__content h1 {
    font-size: 66px;
  }
}
@media screen and (max-width: 991px) {
  .title_1 {
    font-size: 48px;
  }
  .text__content h1 {
    font-size: 48px;
  }
}
@media screen and (max-width: 767px) {
  .title_1 {
    font-size: 48px;
  }
  .title_2 {
    font-size: 28px;
  }
  .text__content h1 {
    font-size: 40px;
  }
  .text__content.text_1 li,
  .text__content.text_1 p {
    font-size: 17px;
  }
  .text__content.text_2 li,
  .text__content.text_2 p {
    font-size: 15px;
  }
  .text_1 {
    font-size: 17px;
  }
  .text_2 {
    font-size: 15px;
  }
  .section__title {
    font-size: 28px;
  }
}
.head__section .container {
  padding-top: 148px;
  padding-bottom: 440px;
}
.head__section .offer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.head__section .offer h1 {
  font-size: 70px;
  font-weight: 700;
  line-height: 159.4%;
  text-transform: uppercase;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
}
.head__section .offer h1 span {
  color: var(--blue);
}
.head__section .offer h1 i {
  font-size: 36px;
  font-style: normal;
  font-weight: 400;
}
.head__section .offer p {
  width: 100%;
  max-width: 463px;
}
.head__section .btn {
  width: 100%;
  max-width: 414px;
}
.head__section .head__img {
  position: absolute;
  bottom: 0;
  left: 25%;
}

@media screen and (max-width: 1399px) {
  .head__section .offer h1 {
    font-size: 44px;
  }
  .head__section .offer h1 i {
    font-size: 32px;
  }
  .custom-logo-link img {
    width: 50px;
  }
  .custom-logo-link span {
    font-size: 20px;
  }
  .nav__menu .nav__item {
    margin-right: 20px;
  }
}
@media screen and (max-width: 1199px) {
  .head__section .offer p {
    max-width: 265px;
    padding-top: 25px;
  }
  section.pt_60 {
    padding-top: 40px;
  }
  section.pb_60 {
    padding-bottom: 40px;
  }
}
@media screen and (max-width: 991px) {
  .head__section .container {
    padding-top: 95px;
  }
  .head__section .offer {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .head__section .offer h1 {
    text-align: center;
  }
  .head__section .offer h1 i {
    display: block;
    text-align: center;
  }
  .head__section .offer p {
    max-width: 355px;
    padding-top: 25px;
    margin: 0 auto;
    text-align: center;
  }
  .head__section .btn {
    margin: 0 auto;
  }
  .custom-logo-link img {
    margin-right: 0;
    width: 50px;
  }
  .custom-logo-link span {
    font-size: 0;
  }
  .head__section .container {
    padding-bottom: 50px;
  }
  .head__section .head__img {
    width: 100%;
    position: static;
    display: block;
    margin-top: 30px;
  }
}
@media screen and (max-width: 576px) {
  .head__section .offer h1 {
    font-size: 7vw;
  }
  .head__section .offer h1 i {
    font-size: 5.5vw;
  }
}
.partners__swiper .swiper-wrapper {
  -webkit-transition-timing-function: linear;
          transition-timing-function: linear;
}
.partners__swiper .swiper-wrapper .swiper-slide {
  width: auto;
  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;
}
.partners__swiper .swiper-wrapper .swiper-slide img {
  max-height: 90px;
}

.advant .advant__card {
  width: 100%;
  padding: 57px 52px 60px;
  border-radius: 20px;
  background-color: var(--light_bg);
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
.advant .advant__card .advant__icon {
  background-color: var(--white);
  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;
  width: 93px;
  height: 93px;
  margin-bottom: 50px;
}
.advant .advant__card .advant__icon img {
  max-width: 40px;
  height: auto;
}
.advant .advant__card h4 {
  color: var(--blue);
  margin-bottom: 14px;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
.advant .advant__card p {
  margin-bottom: 0;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
.advant .advant__card:hover {
  background-color: var(--blue);
}
.advant .advant__card:hover h4,
.advant .advant__card:hover p {
  color: var(--white);
}

@media screen and (max-width: 1399px) {
  .advant .advant__card {
    padding: 40px;
  }
  .advant .advant__card .advant__icon {
    margin-bottom: 20px;
  }
}
@media screen and (max-width: 1199px) {
  .advant .advant__card {
    padding: 30px 15px;
    margin-bottom: 30px;
  }
  .advant .advant__card .advant__icon {
    width: 60px;
    height: 60px;
  }
}
@media screen and (max-width: 767px) {
  .partners__swiper .swiper-wrapper .swiper-slide img {
    max-height: 70px;
  }
}
@media screen and (max-width: 576px) {
  .partners__swiper .swiper-wrapper .swiper-slide img {
    max-height: 19vw;
  }
}
.sale {
  margin: 60px 0;
}
.sale .sale__wrap {
  padding: 40px 0 25px;
  background-color: var(--dark);
  color: #fff;
  border-radius: 50px;
}
.sale .sale__wrap .title_1 {
  text-transform: uppercase;
  margin-bottom: 10px;
}
.sale .sale__wrap .section__title {
  margin-bottom: 22px;
}
.sale .sale__wrap .text_1 {
  margin-bottom: 40px;
}
.sale .sale__wrap .btn {
  max-width: 378px;
}
.sale .sale__img {
  text-align: left;
  max-width: 100%;
}

@media screen and (max-width: 1199px) {
  .sale .sale__wrap {
    border-radius: 30px;
  }
}
@media screen and (max-width: 991px) {
  .sale .sale__wrap {
    text-align: center;
  }
  .sale .sale__wrap .btn {
    margin: 0 auto 30px;
  }
  .sale .sale__img {
    max-width: 350px;
    width: 100%;
  }
}
.category .category__card {
  color: var(--dark);
  border-radius: 20px;
  background-color: var(--light_bg);
  height: 220px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-top: 10px;
  position: relative;
  padding-left: 46px;
  margin-bottom: 30px;
}
.category .category__card span {
  position: relative;
  z-index: 2;
  display: block;
  max-width: 185px;
}
.category .category__card .category__img {
  position: absolute;
  right: 0;
  bottom: 0;
}
.category .category__card:hover {
  color: var(--white);
  background-color: var(--blue);
}

@media screen and (max-width: 1399px) {
  .category .category__card {
    padding-left: 30px;
  }
}
@media screen and (max-width: 991px) {
  .category .category__card {
    padding-left: 15px;
    height: 180px;
    padding-top: 0;
  }
  .category .category__card .category__img {
    max-width: 200px;
  }
}
.about .about__item {
  background-color: var(--light_bg);
  border-radius: 10px;
  margin-bottom: 30px;
  text-align: center;
}
.about .about__item .section__title {
  color: var(--blue);
}
.about .btn {
  max-width: 334px;
}
.about .about__img img {
  max-width: 100%;
  height: auto;
  border-radius: 20px;
}

@media screen and (max-width: 991px) {
  .about .about__img {
    padding-top: 30px;
    text-align: center;
  }
  .about .about__img img {
    max-width: 350px;
    width: 100%;
  }
}
.service .service__item {
  background-color: var(--light_bg);
  min-height: 440px;
  border-radius: 20px;
  padding: 47px 24px 54px 44px;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
.service .service__item .service__icon {
  width: 93px;
  height: 93px;
  background-color: var(--white);
  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;
  margin-bottom: 25px;
}
.service .service__item .service__icon img {
  max-width: 40px;
  height: auto;
}
.service .service__item h4 {
  color: var(--blue);
  margin-bottom: 12px;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
.service .service__item p {
  margin-bottom: 0;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
  color: var(--dark);
}
.service .service__item:hover {
  background-color: var(--dark);
}
.service .service__item:hover h4,
.service .service__item:hover p {
  color: var(--white);
}

.callback {
  margin: 60px 0;
}
.callback .callback__wrap {
  padding: 136px 0 117px;
  border-radius: 50px;
  overflow: hidden;
  position: relative;
  color: var(--white);
}
.callback .callback__wrap::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  opacity: 0.8;
  background-color: var(--dark);
  position: absolute;
  left: 0;
  top: 0;
}
.callback .callback__wrap::after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  opacity: 0.8;
  background-color: var(--dark);
  position: absolute;
  left: 0;
  top: 0;
  z-index: -1;
}
.callback .callback__wrap .text_1 {
  margin-bottom: 77px;
}
.callback .callback__social p {
  margin-right: 10px;
}
.callback .callback__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-left: 20px;
}
.callback .callback__social a:hover path {
  fill: var(--blue);
}
.callback .callback__social a:hover path.path_blue {
  fill: var(--white);
}
.callback .callback__social a:hover circle,
.callback .callback__social a:hover ellipse {
  fill: var(--blue);
}
.callback .form__wrap {
  max-width: 410px;
}
.callback .form__wrap .input__group .order__input {
  border-color: var(--grey);
  color: var(--white);
}

@media screen and (max-width: 1199px) {
  .service .service__item {
    padding: 30px 20px 30px 20px;
    min-height: 340px;
  }
  .service .service__item .service__icon {
    width: 60px;
    height: 60px;
  }
  .callback .callback__wrap {
    border-radius: 30px;
    padding-top: 100px;
    padding-bottom: 80px;
  }
}
@media screen and (max-width: 991px) {
  .service .service__item {
    min-height: 300px;
  }
  .callback .callback__wrap .text_1 {
    margin-bottom: 40px;
  }
  .callback .callback__wrap {
    padding-top: 50px;
    padding-bottom: 50px;
    text-align: center;
  }
  .callback .callback__wrap .callback__social {
    margin-top: 40px;
  }
}
@media screen and (max-width: 767px) {
  .service .service__item {
    min-height: 250px;
  }
}
@media screen and (max-width: 576px) {
  .callback .callback__wrap .callback__social {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    text-align: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .callback .callback__wrap .callback__social p {
    width: 100%;
    margin-right: 0;
    margin-bottom: 20px !important;
    font-size: 18px;
  }
  .callback .callback__wrap .callback__social a {
    margin: 0 10px;
  }
}
.footer {
  margin-top: 60px;
  background-color: var(--dark_grey);
  margin-top: 60px;
  padding: 62px 0 32px;
}
.footer .footer__menu {
  max-width: 300px;
}
.footer .footer__menu > li {
  margin-bottom: 10px;
}
.footer .footer__menu > li > a {
  font-size: 24px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 18px;
  display: block;
  text-transform: uppercase;
}
.footer .footer__menu > li > a:hover {
  color: var(--blue);
}
.footer .footer__menu > li .sub-menu li {
  margin-bottom: 10px;
}
.footer .footer__menu > li .sub-menu li a {
  font-size: 18px;
  font-weight: 400;
  color: var(--white);
}
.footer .footer__menu > li .sub-menu li a:hover {
  color: var(--blue);
}
.footer .contact__item {
  margin-bottom: 17px;
}
.footer .contact__item a,
.footer .contact__item p {
  color: var(--white);
}
.footer .contact__item p {
  padding-left: 35px;
}
.footer .contact__item a {
  margin-bottom: 5px;
}
.footer .contact__item a:hover {
  color: var(--blue);
}
.footer .contact__item a:hover path {
  fill: var(--blue);
}
.footer .social {
  margin-top: auto;
}
.footer .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-left: 20px;
}
.footer .social a:hover path {
  fill: var(--blue);
}
.footer .social a:hover path.path_blue {
  fill: var(--white);
}
.footer .social a:hover circle,
.footer .social a:hover ellipse {
  fill: var(--blue);
}

@media screen and (max-width: 1199px) {
  .footer .footer__menu > li > a {
    font-size: 20px;
  }
  .footer .social a {
    margin: 0 10px 0 0;
  }
}
@media screen and (max-width: 991px) {
  .footer {
    padding-top: 20px;
  }
  .footer__logo {
    -webkit-transform: rotate(90deg);
            transform: rotate(90deg);
    margin: 0 auto;
    max-height: 200px;
  }
  .footer__logo img {
    width: 100%;
    height: 100%;
  }
}
.about_head .container {
  padding-top: 160px;
}
.about_head .offer h1 {
  font-size: 68px;
  font-weight: 700;
  line-height: 1.6em;
  margin-bottom: 8px;
  text-transform: uppercase;
}
.about_head .offer .offer__subtitle {
  font-size: 24px;
  font-weight: 500;
  max-width: 430px;
  margin-bottom: 50px;
}
.about_head .offer ul {
  max-width: 450px;
}
.about_head .offer ul li {
  width: 50%;
  margin-bottom: 48px;
  padding-right: 15px;
}
.about_head .offer ul li .icon {
  width: 60px;
  height: 60px;
  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: 50%;
  margin-bottom: 12px;
  background-color: var(--blue);
}
.about_head .offer ul li .icon img {
  max-width: 30px;
}
.about_head .about_img {
  position: absolute;
  left: 33%;
  bottom: 48px;
}

@media screen and (max-width: 1399px) {
  .about_head .offer h1 {
    font-size: 44px;
  }
  .about_head .about_img {
    left: 40%;
  }
}
@media screen and (max-width: 1199px) {
  .about_head .offer h1 {
    font-size: 44px;
  }
  .about_head .about_img {
    left: 48%;
  }
}
@media screen and (max-width: 991px) {
  .about_head .about_img {
    position: static;
    display: block;
    width: 100%;
  }
}
@media screen and (max-width: 576px) {
  .about_head .offer h1 {
    font-size: 8vw;
  }
  .about_head .offer .offer__subtitle {
    font-size: 5vw;
  }
}
.sertificate .swiper-slide img {
  width: 100%;
}

.review .swiper-slide {
  padding: 46px 56px 40px;
  border-radius: 20px;
  background-color: var(--light_bg);
}
.review .swiper-slide .review__name {
  font-size: 24px;
  font-weight: 500;
  margin-bottom: 0;
}
.review .swiper-slide .review__date {
  font-size: 24px;
  font-weight: 500;
  margin-bottom: 0;
  color: var(--grey);
}

.swiper__btn {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background-color: var(--light_bg);
  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: none;
  cursor: pointer;
}
.swiper__btn:hover {
  background-color: var(--blue);
}
.swiper__btn:hover path {
  stroke: var(--white);
}
.swiper__btn.swiper__btn_left {
  margin-right: 50px;
}

@media screen and (max-width: 1399px) {
  .review .swiper-slide {
    padding: 40px 30px;
  }
}
@media screen and (max-width: 1199px) {
  .review .swiper-slide {
    padding: 30px 20px;
  }
  .review .swiper-slide .text__content {
    margin-bottom: 20px;
  }
}
@media screen and (max-width: 991px) {
  .swiper__btn {
    width: 40px;
    height: 40px;
  }
  .swiper__btn svg {
    width: 100%;
    height: 100%;
  }
}
.contact {
  padding-bottom: 90px;
  padding-top: 160px;
}
.contact .container {
  z-index: 2;
}
.contact iframe {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
}
.contact .contact__wrap {
  max-width: 486px;
  background-color: var(--white);
  border-radius: 20px;
  padding: 40px 65px 40px 80px;
}
.contact .contact__item {
  margin-bottom: 22px;
}
.contact .contact__item p {
  padding-left: 44px;
}
.contact .contact__item a {
  color: var(--dark);
}
.contact .contact__item a svg,
.contact .contact__item p svg {
  margin-right: 20px;
  width: 24px;
  height: 24px;
}
.contact .contact__item.contact__item_time p {
  font-weight: 400;
  padding-left: 0;
}
.contact .contact__item:last-child {
  margin-bottom: 0;
}

@media screen and (max-width: 991px) {
  .contact {
    padding-bottom: 0;
  }
  .contact iframe {
    height: 450px;
    margin-top: 20px;
    position: static;
  }
  .contact .contact__wrap {
    padding: 0 20px 40px;
  }
}
.archive_main {
  padding-top: 160px;
}
.archive_main .product__card {
  border-radius: 20px;
  background: #fff;
  -webkit-box-shadow: 0px 4px 23px 0px rgba(23, 59, 130, 0.13);
          box-shadow: 0px 4px 23px 0px rgba(23, 59, 130, 0.13);
  margin-bottom: 40px;
  padding: 24px 40px;
  min-height: 387px;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
.archive_main .product__card:hover {
  -webkit-box-shadow: 0px 4px 23px 0px rgba(23, 59, 130, 0.24);
          box-shadow: 0px 4px 23px 0px rgba(23, 59, 130, 0.24);
}
.archive_main .product__card .product_thumbnail {
  display: block;
  width: 340px;
  height: 340px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  margin-right: 60px;
}
.archive_main .product__card .product_thumbnail img {
  width: 100%;
}
.archive_main .product__card .content {
  max-width: 440px;
}
.archive_main .product__card .content .title_4 {
  margin-bottom: 12px;
}
.archive_main .product__card .content .text_2 {
  margin-bottom: 40px;
}
.archive_main .product__card .content .btn {
  width: 220px;
}

.archive_title {
  font-size: 70px;
  font-weight: 700;
  line-height: 1.6em;
}

.form__search {
  width: 100%;
  height: 70px;
  margin-bottom: 70px;
}
.form__search .form__wrap {
  position: relative;
}
.form__search .form__wrap .input__group {
  width: 100%;
}
.form__search .form__wrap .input__group .order__input {
  border-color: var(--grey);
  color: var(--dark);
}
.form__search .form__wrap .input__group .order__input:focus {
  border-color: var(--dark);
}
.form__search .form__wrap .input__group .order__input::-webkit-input-placeholder {
  color: var(--grey);
}
.form__search .form__wrap .input__group .order__input::-moz-placeholder {
  color: var(--grey);
}
.form__search .form__wrap .input__group .order__input:-ms-input-placeholder {
  color: var(--grey);
}
.form__search .form__wrap .input__group .order__input::-ms-input-placeholder {
  color: var(--grey);
}
.form__search .form__wrap .input__group .order__input::placeholder {
  color: var(--grey);
}
.form__search .form__wrap .btn.search_btn {
  position: absolute;
  right: 0;
  top: 0;
  height: 100%;
  width: 220px;
}

.catalog__menu_title {
  text-transform: uppercase;
  color: var(--grey);
}

.catalog__menu li {
  margin-bottom: 16px;
}
.catalog__menu li a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-left: 16px;
  min-height: 38px;
  font-size: 20px;
  font-weight: 400;
  color: var(--dark);
  line-height: 1.4em;
  border-radius: 5px;
}
.catalog__menu li a svg {
  margin-right: 14px;
}
.catalog__menu li a:hover {
  background-color: var(--light_grey);
}
.catalog__menu li a.current {
  background-color: var(--light_grey);
  color: var(--blue);
}
.catalog__menu li a.current path {
  fill: var(--blue);
}
.catalog__menu li a.current .path_stroke path {
  stroke: var(--blue);
  fill: transparent;
}
.catalog__menu li a.current .path_fill path {
  fill: var(--blue);
  stroke: transparent;
}

.pagination {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.pagination span.page-numbers {
  pointer-events: none;
}
.pagination .page-numbers {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  height: 30px;
  width: 30px;
  border-radius: 50%;
  font-size: 16px;
  font-weight: 600;
  background-color: var(--light_bg);
  text-align: center;
  font-size: 16px;
  margin: 5px;
  color: var(--dark);
}
.pagination .page-numbers svg {
  width: 20px;
  height: 20px;
}
.pagination .page-numbers.current {
  background-color: var(--blue);
  color: var(--white);
}
.pagination .page-numbers.current svg .path {
  fill: var(--white);
}
.pagination .page-numbers.current svg .stroke {
  stroke: var(--white);
}
.pagination .page-numbers:hover {
  background-color: var(--blue);
  color: var(--white);
}

.product_single {
  padding-top: 160px;
  padding-bottom: 60px;
}
.product_single .line {
  background-color: var(--grey);
  height: 1px;
  width: 100%;
}
.product_single .product__thumbnail {
  width: 410px;
  height: 410px;
  border-radius: 10px;
  border: 1px solid var(--blue);
  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;
  overflow: hidden;
  padding: 35px;
}
.product_single .product__thumbnail img {
  max-width: 100%;
  max-height: 100%;
}
.product_single .product_main {
  width: calc(100% - 445px);
}
.product_single .product_main .btn {
  width: 220px;
}
.product_single .product_title i {
  color: var(--blue);
  font-style: normal;
}
.product_single .text__content {
  overflow-x: auto;
}
.product_single .text__content table {
  border-collapse: collapse;
  max-width: 100%;
  min-width: 600px;
  overflow-x: auto;
}
.product_single .text__content table td {
  text-align: center;
  font-size: 16px;
  padding: 5px;
  border: 1px solid var(--grey);
}
.product_single .text__content table thead td {
  font-weight: 500;
}
.product_single .characteristic__title {
  font-size: 24px;
  font-weight: 500;
  min-height: 55px;
  width: 100%;
  max-width: 405px;
  padding: 5px 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-align: center;
  color: var(--white);
  background-color: var(--dark);
  border-radius: 10px 10px 0 0;
}
.product_single .characteristic___wrap {
  padding: 40px 80px;
  border-radius: 0 10px 10px 10px;
  border: 1px solid var(--grey);
  background-color: var(--white);
}

@media screen and (max-width: 1399px) {
  .form__wrap .input__group .order__input {
    height: 60px;
  }
  .archive_title {
    font-size: 60px;
  }
  .archive_main .product__card .product_thumbnail {
    width: 300px;
    height: 300px;
    margin-right: 30px;
  }
}
@media screen and (max-width: 1199px) {
  .archive_main .product__card .product_thumbnail {
    width: 200px;
    height: 200px;
  }
  .archive_main .product__card {
    padding: 20px;
    min-height: initial;
  }
  .archive_main .product__card .content {
    max-width: 400px;
  }
  .archive_main .product__card .content .btn {
    height: 50px;
  }
  .archive_title {
    font-size: 48px;
  }
  .product_single .product__thumbnail {
    width: 340px;
    height: 340px;
    padding: 25px;
  }
  .product_single .product_main {
    width: calc(100% - 370px);
  }
  .product_single .characteristic___wrap {
    padding: 40px;
  }
}
@media screen and (max-width: 991px) {
  .archive_title {
    font-size: 42px;
  }
  .catalog__menu_title {
    padding-bottom: 5px;
    max-width: 100%;
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
    margin-bottom: 30px;
    cursor: pointer;
    border-bottom: 1px solid var(--grey);
  }
  .catalog__menu_title:hover {
    border-bottom: 1px solid var(--blue);
  }
  .close__catalog {
    content: "";
    display: block;
    height: 100%;
    position: fixed;
    width: 0;
    z-index: 9999999;
    height: 100vh;
    left: 0;
    top: 0;
    opacity: 0;
    -webkit-transition: all 0.4s ease;
    transition: all 0.4s ease;
    pointer-events: none;
    background-color: var(--dark);
  }
  .close__catalog.active {
    width: 100vw;
    opacity: 0.5;
    pointer-events: all;
  }
  .catalog__menu {
    position: fixed;
    z-index: 99999999;
    width: 280px;
    left: -280px;
    height: 100vh;
    top: 0;
    -webkit-transition: all 0.4s ease;
    transition: all 0.4s ease;
    background-color: var(--white);
    padding: 40px 15px;
  }
  .catalog__menu.active {
    left: 0;
  }
  .archive_main .product__card .content {
    width: 100%;
    max-width: 100%;
  }
  .product_single .product_main {
    width: 100%;
  }
  .product_single .characteristic_content {
    padding-top: 80px;
  }
}
@media screen and (max-width: 767px) {
  .form__search .form__wrap .btn.search_btn {
    width: 60px;
  }
  .archive_title {
    font-size: 8vw;
    line-height: 1.2em;
    margin-bottom: 25px;
  }
}
@media screen and (max-width: 1399px) {
  .form__wrap .input__group .order__input {
    height: 60px;
  }
  .archive_main .product__card .product_thumbnail {
    width: 300px;
    height: 300px;
    margin-right: 30px;
  }
}
.service__head {
  padding-top: 145px;
  padding-bottom: 110px;
  margin-bottom: 60px;
}
.service__head .offer {
  position: relative;
  z-index: 2;
}
.service__head .offer h1 {
  font-size: 68px;
  line-height: 1.6em;
  margin-bottom: 8px;
  text-transform: uppercase;
}
.service__head .offer h1 span {
  color: var(--blue);
}
.service__head .offer p {
  font-size: 24px;
  margin-bottom: 30px;
  font-weight: 500;
  width: 100%;
  max-width: 520px;
}
.service__head .offer .btn {
  max-width: 414px;
  width: 100%;
}
.service__head .head_img {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  left: calc(50% - 90px);
}

.service_about .text__content {
  margin-bottom: 30px;
}
.service_about .btn {
  width: 100%;
  max-width: 414px;
}
.service_about .service_about__img {
  width: 100%;
}

.propose .propose__card {
  border-radius: 5px;
  background-color: var(--light_bg);
  min-height: 170px;
  padding: 37px 20px 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  margin-bottom: 30px;
}
.propose .propose__card .card__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.propose .propose__card .icon {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 30px;
  height: 30px;
  margin-right: 16px;
}
.propose .propose__card .icon img {
  width: 100%;
}
.propose .propose__card_long .propose__card {
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  padding: 37px 40px 50px;
}
.propose .propose__card_long .propose__card .card__content {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.propose .propose__card_long .propose__card .icon {
  width: 50px;
  height: 50px;
  margin-bottom: 12px;
  margin-right: 0;
}

.autopark .section__title {
  color: var(--white);
  text-align: center;
}
.autopark .autopark__card {
  background-color: var(--blue);
  height: 410px;
  width: 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;
  margin-bottom: 30px;
  border-radius: 10px;
  padding: 20px;
  overflow: hidden;
}
.autopark .autopark__card.autopark__card_galary {
  padding: 0;
}
.autopark .autopark__card.autopark__card_galary img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  -webkit-transition: all 0.6s ease;
  transition: all 0.6s ease;
}
.autopark .autopark__card.autopark__card_galary:hover img {
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}

.faq .faq__item {
  border-bottom: 1px solid var(--grey);
  margin-bottom: 12px;
}
.faq .faq__item.open .faq__qwestion .icon {
  -webkit-transform: rotate(-90deg);
          transform: rotate(-90deg);
}
.faq .faq__qwestion {
  min-height: 60px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 5px 30px 5px 0;
  position: relative;
  font-size: 24px;
  font-weight: 500;
  cursor: pointer;
}
.faq .faq__qwestion .icon {
  background-color: var(--light_bg);
  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;
  position: absolute;
  right: 0;
  top: 15px;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
.faq .faq__answer {
  height: 0;
  opacity: 0;
}
.faq .text_content a {
  color: var(--blue);
}
.faq .text_content a:hover {
  color: var(--dark_blue);
}

.step .step_wrap .step_card {
  min-height: 407px;
  position: relative;
  padding-top: 85px;
}
.step .step_wrap .step_card .section__title {
  color: var(--blue);
  margin-bottom: 40px;
}
.step .step_wrap .step_card .step_line {
  position: absolute;
  left: 0;
  top: 0;
  pointer-events: none;
}
.step .step_wrap .step_card .step_line.step_line_rotate {
  -webkit-transform: rotateY(180deg) rotateX(180deg);
          transform: rotateY(180deg) rotateX(180deg);
}
.step .step_wrap .step_card .text_2 {
  max-width: 344px;
  margin: 0 auto;
}

.text_img .text_img {
  border-radius: 10px;
  width: 100%;
  display: block;
}

.card_min .icon {
  width: 92px;
  height: 92px;
  border-radius: 50%;
  background-color: var(--light_bg);
  margin-bottom: 15px;
  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;
}
.card_min .icon img {
  max-width: 50px;
}
.card_min .card_min__text {
  font-size: 24px;
  font-weight: 500;
  margin-bottom: 0;
}

@media screen and (max-width: 1399px) {
  .service__head .offer h1 {
    font-size: 52px;
  }
  .card_min .card_min__text {
    font-size: 22px;
  }
  .autopark .autopark__card {
    height: 354px;
  }
}
@media screen and (max-width: 1199px) {
  .service__head {
    padding-bottom: 40px;
  }
  .card_min .card_min__text {
    font-size: 20px;
  }
  .autopark .autopark__card {
    height: 295px;
  }
  .service__head .offer p {
    font-size: 20px;
  }
}
@media screen and (max-width: 991px) {
  .service__head {
    padding-bottom: 0;
  }
  .service__head .offer h1 {
    text-align: center;
  }
  .service__head .offer p {
    max-width: 355px;
    padding-top: 25px;
    margin: 0 auto 30px;
    text-align: center;
    font-size: 15px;
  }
  .service__head .btn {
    margin: 0 auto;
  }
  .service__head .head_img {
    width: 100%;
    position: static;
    display: block;
    margin-top: 30px;
    -webkit-transform: none;
            transform: none;
  }
  .text_img .text_img {
    max-width: 530px;
    margin: 0 auto;
  }
  .card_min .card_min__text {
    font-size: 18px;
  }
  .autopark .autopark__card {
    height: 250px;
  }
  .autopark .autopark__card.autopark__card_main {
    height: 150px;
  }
}
@media screen and (max-width: 767px) {
  .service__head .offer p {
    font-size: 15px;
  }
}
@media screen and (max-width: 576px) {
  .service__head .offer h1 {
    font-size: 8vw;
  }
  .faq .faq__qwestion {
    font-size: 20px;
  }
}
.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: var(--light_bg);
  padding: 84px 55px;
  width: 96%;
  max-width: 630px;
  max-height: 98%;
  position: relative;
  overflow-y: auto;
  border-radius: 20px;
}
.popup .popup__content .close_popup {
  position: absolute;
  right: 25px;
  top: 25px;
  width: 20px;
  height: 20px;
  background: url(../img/close.svg) no-repeat center;
  border: none;
  cursor: pointer;
}
.popup .popup__content .popup__title {
  margin-bottom: 12px;
}
.popup .popup__content .popup__subtitle {
  margin-bottom: 30px;
}
.popup .form__wrap .callback__btn {
  width: 100%;
}
.popup .checked_group span {
  display: block;
  width: 27px;
  height: 27px;
  margin: 0;
}
.popup .checked_group input {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  display: block;
  width: 27px;
  height: 27px;
  cursor: pointer;
  background: url(../img/check_default.svg) no-repeat center;
}
.popup .checked_group input:checked {
  background: url(../img/check_checked.svg) no-repeat center;
}

@media screen and (max-width: 767px) {
  .popup .popup__content {
    padding: 40px 20px;
  }
  .popup .popup__content .popup__title {
    font-size: 24px;
  }
  .popup.timer_form .popup__content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .popup.timer_form .popup__content .timer__right,
  .popup.timer_form .popup__content .timer__left {
    width: 100%;
  }
  .popup.timer_form .popup__content .close_popup {
    z-index: 5;
    background-color: rgba(189, 164, 135, 0.6);
    top: 10px;
    right: 10px;
  }
}
@media screen and (max-width: 576px) {
  .popup.timer_form .popup__content .popup__title {
    font-size: 32px;
  }
}
.filter__wrap {
  position: fixed;
  width: 300px;
  z-index: 9999999;
  left: -300px;
  top: 0;
  background-color: var(--global-palette9);
  height: 100vh;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
  padding: 80px 12px 50px;
  overflow-y: auto;
}

.filter__close {
  position: absolute;
  right: 20px;
  top: 20px;
  width: 20px;
  height: 20px;
  cursor: pointer;
}

.filter__wrap .wpfMainWrapper {
  width: 100%;
}

.filter__wrap.show {
  left: 0;
}

.filter_attr {
  margin-bottom: -52px;
}

.filter_attr .container {
  max-width: var(--global-content-width);
  margin: 0 auto;
  padding: 0 var(--global-content-edge-padding);
}

.filter_attr .wpfFilterButton.wpfButton,
.filter_attr .wpfClearButton.wpfButton {
  border-radius: 3px;
  background: var(--global-palette-btn-bg);
  color: var(--global-palette-btn);
  padding: 0.4em 1em;
  border: 0;
  line-height: 1.6;
  display: inline-block;
  font-family: inherit;
  cursor: pointer;
  text-decoration: none;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
  -webkit-box-shadow: 0px 0px 0px -7px rgba(0, 0, 0, 0);
          box-shadow: 0px 0px 0px -7px rgba(0, 0, 0, 0);
  background: #f99130 !important;
  border-radius: 0px;
  box-shadow: 0px 0px 0px -7px rgba(0, 0, 0, 0);
}/*# sourceMappingURL=main.css.map */