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

:root {
  --app-height: 100%;
  --white: #ffffff;
  --dark: #000000;
  --red: #c71717;
  --red2: #a60a0a;
  --grey1: #f6f6f6;
  --grey2: #575757;
  --grey3: #6b6b6b;
  --shadow: 0 14px 42px rgba(87, 87, 87, 0.1);
}

.bg_grad {
  background: linear-gradient(45deg, rgba(255, 255, 255, 0.7) 0%, rgba(255, 255, 255, 0.9) 100%);
}

.c_wh {
  color: var(--white);
}

.c_dark {
  color: var(--dark);
}

.c_red {
  color: var(--red);
}

.c_red2 {
  color: var(--red2);
}

.c_grey1 {
  color: var(--grey1);
}

.c_grey2 {
  color: var(--grey2);
}

.c_grey3 {
  color: var(--grey3);
}

.transition {
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

.bg_wh {
  background-color: var(--white);
}

.bg_red {
  background-color: var(--red);
}

.bg_red2 {
  background-color: var(--red2);
}

.bg_dark {
  background-color: var(--dark);
}

.bg_grey1 {
  background-color: var(--grey1);
}

.bg_grey2 {
  background-color: var(--grey2);
}

.bg_grey3 {
  background-color: var(--grey3);
}

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

.swiper-container {
  overflow: hidden;
}

.elem__anim h1,
.elem__anim h2,
.elem__anim h3,
.elem__anim h4,
.elem__anim a,
.elem__anim button,
.elem__anim p,
.elem__anim ul,
.elem__anim ol {
  opacity: 0;
}

.xyz_start {
  opacity: 0;
}

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

body {
  font-family: "Raleway", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  color: var(--grey3);
  margin: 0;
  padding: 0;
  position: relative;
  min-height: 100vh;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  font-size: 16px;
  line-height: 1.2em;
}

section {
  position: relative;
}

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

.swiper-slide,
.swiper-slide:active,
.swiper-slide:hover {
  outline: none;
}

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

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

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;
  line-height: 1.2em;
}

p {
  margin-bottom: 0;
  line-height: 1.2em;
}

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

button {
  background-color: transparent;
  border: none;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

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

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

.container {
  position: relative;
}

p.btn,
span.btn,
a.btn,
button.btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-family: "Raleway", sans-serif;
  -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;
  font-size: 24px;
  font-weight: 500;
  line-height: 1.2em;
  cursor: pointer;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  max-width: 100%;
  height: 70px;
  padding: 0 16px;
  background-color: var(--red);
  color: var(--white);
  border-radius: 0;
}
p.btn:hover,
span.btn:hover,
a.btn:hover,
button.btn:hover {
  background-color: #a60a0a;
  color: var(--white);
}
p.btn.btn_dark,
span.btn.btn_dark,
a.btn.btn_dark,
button.btn.btn_dark {
  background-color: var(--dark);
}
p.btn.btn_dark:hover,
span.btn.btn_dark:hover,
a.btn.btn_dark:hover,
button.btn.btn_dark:hover {
  background-color: #0d0d12;
}
p.btn.btn_wh,
span.btn.btn_wh,
a.btn.btn_wh,
button.btn.btn_wh {
  background-color: transparent;
  border: 1px solid var(--white);
  color: var(--white);
  border: 2px solid var(--white);
}
p.btn.btn_wh:hover,
span.btn.btn_wh:hover,
a.btn.btn_wh:hover,
button.btn.btn_wh:hover {
  background-color: white;
  color: var(--red);
}

.header {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  z-index: 999;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
  background-color: transparent;
}
.header.header_fixed {
  background-color: var(--grey3);
}
.header.header_fixed .header__bottom .line {
  background-color: transparent;
}
.header .header__contact a {
  font-family: "Manrope", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  margin-right: 24px;
}
.header .header__contact a:hover {
  color: var(--red);
}
.header .header__contact svg {
  width: 24px;
  height: 24px;
  margin-right: 8px;
  padding: 0;
}
.header .btn.header__btn {
  width: 220px;
  height: 80px;
  font-size: 16px;
  color: var(--white);
  padding: 0;
}
.header .header__bottom .lang li a {
  color: var(--white);
}
.header .header__bottom .lang li a:hover {
  color: var(--red);
}
.header .header__bottom .lang li.current-lang a {
  color: var(--red);
  font-weight: 700;
}
.header .header__bottom .line {
  height: 1px;
  border-bottom: 1px solid var(--white);
}

.head__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;
}
.head__social a:hover path {
  fill: var(--red);
}

.custom-logo-link {
  display: block;
  width: 163px;
  max-width: 100%;
}
.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;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 100%;
}
.nav__menu .nav__item {
  position: relative;
}
.nav__menu .nav__item a {
  font-size: 16px;
  font-family: "Raleway", sans-serif;
  font-weight: 400;
  color: var(--white);
  position: relative;
}
.nav__menu .nav__item a:hover {
  color: var(--red);
}
.nav__menu .nav__item a::after {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  position: absolute;
  left: 0;
  bottom: -3px;
  background-color: var(--red);
  -webkit-transform: scaleX(0);
          transform: scaleX(0);
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
.nav__menu .nav__item a:hover::after {
  -webkit-transform: scaleX(1);
          transform: scaleX(1);
}

.lang {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.lang li:not(:last-child) {
  margin-right: 14px;
  position: relative;
}
.lang li:not(:last-child)::after {
  content: "";
  display: block;
  width: 1px;
  height: 80%;
  position: absolute;
  right: -7px;
  top: 10%;
  background-color: var(--grey3);
}
.lang li a {
  color: var(--grey3);
  font-size: 16px;
}
.lang li a:hover {
  color: #111;
}
.lang li.current-lang a {
  color: #111;
  font-weight: 700;
}

.menu__burger {
  width: 30px;
  height: 30px;
  cursor: pointer;
  background: url(../img/icon_menu.svg) no-repeat center;
}

@media screen and (min-width: 1199px) {
  .nav__menu .nav__item.menu-item-has-children:hover .sub-menu {
    opacity: 1;
    -webkit-transform: translate(-50%, 0px);
            transform: translate(-50%, 0px);
    pointer-events: all;
  }
}
@media screen and (max-width: 1199px) {
  .nav {
    position: fixed;
    width: 100%;
    max-width: 450px;
    height: 100vh;
    padding: 12px;
    z-index: 999999;
    right: -450px;
    top: 0;
    opacity: 0;
    pointer-events: none;
    background: var(--dark);
    -webkit-transition: all 0.4s ease;
    transition: all 0.4s ease;
    padding-bottom: 100px;
    overflow-y: auto;
    padding-top: 0;
    margin: 0;
    background-color: var(--dark);
  }
  .nav.open_menu {
    right: 0;
    top: 0px;
    opacity: 1;
    pointer-events: all;
  }
  .nav .nav__row {
    width: 100%;
    margin-bottom: 13px;
    padding: 17px 0;
    position: relative;
  }
  .nav .nav__row .custom-logo-link {
    width: 153px;
    margin-bottom: 0;
  }
  .nav .nav__row .custom-logo-link img {
    width: 100%;
    height: auto;
  }
  .nav .menu__close {
    width: 30px;
    height: 30px;
    background: url(../img/close_red.svg) no-repeat center/24px;
    outline: none;
    position: relative;
    cursor: pointer;
  }
  .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 .social {
    margin-bottom: 50px;
  }
  .nav .nav__item {
    margin-bottom: 40px;
    width: 100%;
    margin-right: 0;
    text-align: center;
  }
  .nav .nav__item a {
    font-size: 24px;
    font-weight: 400;
    position: relative;
    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;
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
    margin: 0 auto;
    color: var(--white);
  }
  .nav__menu .nav__item.menu-item-has-children > a::after,
  .nav__menu .nav__item.menu-item-has-children > a::before {
    display: none;
  }
  .nav__menu .nav__item.menu-item-has-children {
    margin-bottom: 16px;
  }
  .nav__menu .nav__item.menu-item-has-children > a {
    padding-right: 0;
    padding: 0 0 24px;
  }
  .nav__menu .nav__item.menu-item-has-children > a.open .open_child_menu, .nav__menu .nav__item.menu-item-has-children > a:hover .open_child_menu {
    -webkit-transform: rotate(180deg);
            transform: rotate(180deg);
  }
  .nav__menu .nav__item.menu-item-has-children > a.open .open_child_menu::after, .nav__menu .nav__item.menu-item-has-children > a:hover .open_child_menu::after {
    opacity: 1;
  }
  .nav__menu .nav__item.menu-item-has-children > a.open .open_child_menu::before, .nav__menu .nav__item.menu-item-has-children > a:hover .open_child_menu::before {
    opacity: 0;
  }
  .open_child_menu {
    position: relative;
    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: 10px;
    -webkit-transition: all 0.4s ease;
    transition: all 0.4s ease;
    background: url(../img/arrow_bottom_wh.svg) no-repeat center/15px;
  }
  .open_child_menu::after {
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    background: url(../img/arrow_bottom_red.svg) no-repeat center/15px;
    -webkit-transition: all 0.4s ease;
    transition: all 0.4s ease;
    opacity: 0;
  }
  .nav__menu .nav__item.menu-item-has-children .sub-menu {
    position: relative;
    left: auto;
    top: auto;
    height: 0;
    padding: 0 10px;
    -webkit-transition: all 0.4s ease;
    transition: all 0.4s ease;
    pointer-events: all;
    -webkit-transform: none;
            transform: none;
    width: 100%;
    border-radius: 5px;
  }
  .nav__menu .nav__item.menu-item-has-children .sub-menu li {
    padding: 9px;
    margin-bottom: 0;
    text-align: left;
  }
  .nav__menu .nav__item.menu-item-has-children .sub-menu li:first-child {
    padding-top: 30px;
  }
  .nav__menu .nav__item.menu-item-has-children .sub-menu li:last-child {
    padding-bottom: 30px;
  }
  .nav__menu .nav__item.menu-item-has-children .sub-menu li a {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
  .nav__menu .nav__item.menu-item-has-children .sub-menu li a i {
    font-size: 30px;
    margin-right: 14px;
    width: 30px;
    line-height: 30px;
  }
}
.section__title {
  font-size: 36px;
  line-height: 1.2em;
  font-family: "Raleway", sans-serif;
  font-weight: 400;
  color: var(--grey2);
  text-transform: uppercase;
}

.title_1 {
  font-size: 40px;
  line-height: 1.2em;
  font-family: "Raleway", sans-serif;
  font-weight: 500;
  letter-spacing: 0.02em;
}

.title_2 {
  font-size: 24px;
  line-height: 1.2em;
  font-family: "Raleway", sans-serif;
  font-weight: 500;
  letter-spacing: 0.02em;
}

.title_3 {
  font-size: 24px;
  line-height: 1.2em;
  font-family: "Raleway", sans-serif;
  font-weight: 400;
  letter-spacing: 0.02em;
}

.title_4 {
  font-size: 20px;
  line-height: 1.2em;
  font-family: "Raleway", sans-serif;
  font-weight: 500;
  letter-spacing: 0.02em;
}

.text_1 {
  font-size: 16px;
  font-weight: 500;
  line-height: 1.2em;
  letter-spacing: 0.02em;
}

.text_2 {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.2em;
  letter-spacing: 0.02em;
}

.text_3 {
  font-size: 14px;
  font-weight: 400;
  line-height: 1.2em;
  letter-spacing: 0.02em;
}

.text__content h1 {
  font-size: 48px;
  line-height: 1.2em;
  font-family: "Raleway", sans-serif;
  font-weight: 500;
  letter-spacing: 0.02em;
}
.text__content h2 {
  font-size: 36px;
  line-height: 1.2em;
  font-family: "Raleway", sans-serif;
  font-weight: 400;
  color: var(--grey2);
  text-transform: uppercase;
}
.text__content h3 {
  font-size: 24px;
  line-height: 1.2em;
  font-family: "Raleway", sans-serif;
  font-weight: 400;
}
.text__content h3 b,
.text__content h3 strong {
  font-weight: 500;
}
.text__content h4 {
  font-size: 20px;
  line-height: 1.2em;
  font-family: "Raleway", sans-serif;
  font-weight: 500;
  letter-spacing: 0.02em;
}
.text__content p,
.text__content li {
  font-size: 18px;
  line-height: 1.2em;
  margin-bottom: 1.2em;
  font-weight: 300;
}
.text__content p b,
.text__content p strong,
.text__content li b,
.text__content li strong {
  font-weight: 500;
}
.text__content li {
  font-weight: 400;
  position: relative;
  padding-left: 28px;
}
.text__content li:before {
  content: "";
  display: block;
  width: 4px;
  height: 4px;
  background: var(--grey2);
  position: absolute;
  left: 10px;
  top: calc(50% - 2px);
  -webkit-box-shadow: var(--shadow);
          box-shadow: var(--shadow);
  border-radius: 50%;
}

@media screen and (max-width: 1439px) {
  .title_1 {
    font-size: 36px;
  }
}
@media screen and (max-width: 1199px) {
  .section__title {
    font-size: 32px;
  }
}
@media screen and (max-width: 991px) {
  .header__top {
    padding-top: 12px;
  }
  .header .header__contact svg {
    width: 16px;
    height: 16px;
  }
  .header .header__contact a {
    margin-right: 5px;
    font-size: 14px;
    margin-bottom: 10px;
  }
  .title_1 {
    font-size: 32px;
  }
  .section__title {
    font-size: 30px;
  }
}
@media screen and (max-width: 767px) {
  .header .header__contact a {
    font-size: 18px;
  }
  .custom-logo-link {
    width: 120px;
  }
  .header .btn.header__btn {
    width: 170px;
    font-size: 14px;
    height: 60px;
  }
}
@media screen and (max-width: 576px) {
  .title_1 {
    font-size: 24px;
  }
  .header .header__bottom {
    padding: 12px 0;
  }
  .section__title {
    font-size: 28px;
  }
}
.form__wrap {
  width: 100%;
}
.form__wrap .input__group {
  margin-bottom: 24px;
}
.form__wrap .input__group .order__input {
  display: block;
  width: 100%;
  height: 70px;
  padding-left: 36px;
  font-family: "Raleway";
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  color: var(--white);
  border: 1px solid var(--white);
  background-color: transparent;
  border-radius: 0;
}
.form__wrap .input__group .order__input.wpcf7-not-valid {
  background-color: #ffeaea;
  color: #9f0000;
}
.form__wrap .input__group .order__input::-webkit-input-placeholder {
  font-family: "Raleway";
  font-size: 20px;
  font-style: normal;
  font-weight: 300;
  line-height: 120%;
  color: var(--white);
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
.form__wrap .input__group .order__input::-moz-placeholder {
  font-family: "Raleway";
  font-size: 20px;
  font-style: normal;
  font-weight: 300;
  line-height: 120%;
  color: var(--white);
  -moz-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
.form__wrap .input__group .order__input:-ms-input-placeholder {
  font-family: "Raleway";
  font-size: 20px;
  font-style: normal;
  font-weight: 300;
  line-height: 120%;
  color: var(--white);
  -ms-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
.form__wrap .input__group .order__input::-ms-input-placeholder {
  font-family: "Raleway";
  font-size: 20px;
  font-style: normal;
  font-weight: 300;
  line-height: 120%;
  color: var(--white);
  -ms-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
.form__wrap .input__group .order__input::placeholder {
  font-family: "Raleway";
  font-size: 20px;
  font-style: normal;
  font-weight: 300;
  line-height: 120%;
  color: var(--white);
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
.form__wrap .input__group .order__input:focus::-webkit-input-placeholder {
  color: var(--white);
}
.form__wrap .input__group .order__input:focus::-moz-placeholder {
  color: var(--white);
}
.form__wrap .input__group .order__input:focus:-ms-input-placeholder {
  color: var(--white);
}
.form__wrap .input__group .order__input:focus::-ms-input-placeholder {
  color: var(--white);
}
.form__wrap .input__group .order__input:focus::placeholder {
  color: var(--white);
}
.form__wrap .input__group .order__input.order__input_message {
  height: 128px;
  padding-top: 10px;
}
.form__wrap .theme__item span {
  display: block;
  margin: 0 !important;
}
.form__wrap .acceptance span {
  display: block;
  margin: 0 !important;
}
.form__wrap input[type=checkbox] {
  display: block;
  width: 24px;
  height: 24px;
  border-radius: 0px;
  border: 1px solid var(--grey2);
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  margin-right: 12px;
  cursor: pointer;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.form__wrap input[type=checkbox]:checked {
  background: url(../img/check_icon.svg) no-repeat center;
}
.form__wrap .wpcf7-not-valid-tip {
  font-size: 13px;
  color: #9f0000;
  position: absolute;
  top: 95%;
  left: 0;
}

.breadcrumbs {
  padding: 0;
  margin-bottom: 50px;
  position: relative;
  z-index: 5;
}
.breadcrumbs a {
  font-weight: 400;
  font-size: 14px;
  color: var(--grey3);
  position: relative;
}
.breadcrumbs .breadcrumb_last {
  font-weight: 400;
  font-size: 14px;
  line-height: 150%;
  color: var(--dark);
  text-decoration: underline;
}

.head__section {
  padding-bottom: 170px;
  padding-top: 210px;
}
.head__section::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  background-color: #1c1c1c;
  opacity: 0.5;
}
.head__section .offer {
  color: var(--white);
}
.head__section .offer h3 {
  font-size: 36px;
  margin-bottom: 30px;
  font-weight: 500;
  line-height: 1.1em;
}
.head__section .offer h1 {
  font-size: 64px;
  font-weight: 700;
  margin-bottom: 30px;
  line-height: 1.1em;
}
.head__section .offer p {
  font-size: 24px;
  font-weight: 500;
  margin-bottom: 0;
  max-width: 660px;
  line-height: 1.2em;
}
.head__section .head__advant {
  width: 100%;
  max-width: 307px;
  margin: 0 auto;
}
.head__section .head__advant li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 40px;
}
.head__section .head__advant li img {
  width: 40px;
  height: auto;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  margin-right: 17px;
}
.head__section .btn {
  min-width: 300px;
}
.head__section.head__section_other {
  padding-top: 250px;
  padding-bottom: 80px;
}

@media screen and (max-width: 1439px) {
  .head__section {
    padding-top: 190px;
    padding-bottom: 100px;
  }
  .head__section .offer h3 {
    font-size: 32px;
  }
  .head__section .offer h1 {
    font-size: 52px;
  }
  .head__section .offer p {
    font-size: 20px;
  }
  .head__advant_wrap {
    padding-top: 40px;
  }
}
@media screen and (max-width: 1199px) {
  .head__advant_wrap {
    padding-top: 30px;
  }
  .head__advant_wrap .head__advant li p {
    font-size: 20px;
  }
  .head__section .offer h3 {
    font-size: 28px;
  }
  .head__section .offer h1 {
    font-size: 44px;
  }
  p.btn,
  span.btn,
  a.btn,
  button.btn {
    height: 60px;
    font-size: 18px;
  }
}
@media screen and (max-width: 991px) {
  .head__section {
    padding-top: 130px;
    padding-bottom: 70px;
  }
  .head__section .head__advant {
    margin: 30px 0 0;
  }
}
@media screen and (max-width: 576px) {
  .head__section .offer h1 {
    font-size: 11vw;
  }
}
.swiper__arrows {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  pointer-events: none;
  z-index: 2;
}
.swiper__arrows .swiper__arrow {
  cursor: pointer;
  pointer-events: all;
  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: 60px;
  height: 60px;
  background-color: #f0f0f0;
}
.swiper__arrows .swiper__arrow > * {
  pointer-events: none;
}
.swiper__arrows .swiper__arrow:hover {
  background-color: var(--red);
}
.swiper__arrows .swiper__arrow:hover path {
  fill: var(--white);
}
.swiper__arrows .swiper__arrow.swiper__arrow_left {
  margin-right: 12px;
}
.permalink {
  font-size: 18px;
  font-weight: 700;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: var(--red);
  text-transform: uppercase;
}
.permalink svg {
  margin-left: 12px;
}
.permalink:hover {
  color: var(--red);
}
.permalink:hover svg {
  -webkit-transform: translate(10px);
          transform: translate(10px);
}

.numbers .numbers__card {
  width: 100%;
  height: 409px;
  padding: 70px 10px 0;
}
.numbers .numbers__card.numbers__card_title {
  padding: 0 50px 0 70px;
}
.numbers .numbers__card .numbers__number {
  line-height: 1.1em;
  font-size: 120px;
}
.numbers .numbers__card .numbers__number span {
  font-size: 42px;
  line-height: 1.1em;
}
.numbers .numbers__card .numbers__text {
  max-width: 230px;
}

@media screen and (max-width: 1439px) {
  .numbers .numbers__card .numbers__number {
    font-size: 100px;
  }
  .numbers .numbers__card {
    height: 350px;
  }
  .numbers .numbers__card.numbers__card_title {
    padding-left: 25px;
    padding-right: 25px;
  }
  .numbers .numbers__card.numbers__card_title p {
    font-size: 36px;
  }
  .numbers .numbers__card .numbers__number span {
    font-size: 32px;
  }
}
@media screen and (max-width: 1199px) {
  .numbers .numbers__card {
    height: 300px;
  }
  .numbers .numbers__card.numbers__card_title {
    padding-left: 25px;
    padding-right: 25px;
  }
  .numbers .numbers__card.numbers__card_title p {
    font-size: 32px;
  }
  .numbers .numbers__card .numbers__number {
    font-size: 76px;
  }
  .numbers .numbers__card .numbers__number span {
    font-size: 30px;
  }
}
@media screen and (max-width: 991px) {
  .numbers .numbers__card {
    height: 280px;
  }
}
.carier .carier__swiper {
  padding-bottom: 30px;
  margin-bottom: 10px;
}
.carier .carier__card {
  padding: 35px 15px 54px 46px;
  -webkit-box-shadow: var(--shadow);
          box-shadow: var(--shadow);
}
.carier .carier__card .carier__thumbnail {
  width: 200px;
  height: 200px;
}
.carier .carier__card .carier__thumbnail img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.carier .carier__card .carier__name {
  padding-right: 25px;
}

.product .product__img {
  padding-top: 55px;
}
.product .product__img img {
  width: 95%;
  height: auto;
  display: block;
  margin: 0 auto;
}
.product .product__wrap {
  padding: 57px 50px 70px;
  -webkit-box-shadow: var(--shadow);
          box-shadow: var(--shadow);
}
.product .product__wrap h1 {
  text-transform: uppercase;
  font-size: 36px;
  font-weight: 500;
  margin-bottom: 30px;
  line-height: 1.2em;
}
.product .product__wrap .available .sizes__label {
  margin-bottom: 12px;
  width: 100%;
}
.product .product__wrap .available .sizes__label .sizes__text {
  width: 100%;
  height: 50px;
  font-weight: 400;
}
.product .product__wrap .sizes__label {
  cursor: pointer;
  margin-right: 10px;
  margin-bottom: 10px;
}
.product .product__wrap .sizes__label:hover .sizes__text {
  color: var(--red);
  border-color: var(--red);
}
.product .product__wrap .sizes__label input {
  width: 0;
  height: 0;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}
.product .product__wrap .sizes__label input:checked ~ .sizes__text {
  color: var(--red);
  border-color: var(--red);
}
.product .product__wrap .sizes__label .sizes__text {
  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: 300;
  width: 110px;
  height: 33px;
  color: var(--grey2);
  border: 1px solid var(--grey3);
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
.product .product__wrap .additional ul {
  max-width: 600px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.product .product__wrap .additional ul li {
  margin-bottom: 30px;
}
.product .product__wrap .additional ul li:nth-child(odd) {
  width: 40%;
}
.product .product__wrap .additional ul li:nth-child(even) {
  width: 60%;
}
.product .product__wrap .btn {
  width: 300px;
}
.product .product__text p {
  line-height: 1.4em;
}
.product .product__tables table {
  border-collapse: collapse;
  width: 100%;
  margin-bottom: 30px;
}
.product .product__tables table tr:first-child td {
  text-align: center;
  color: var(--white);
  background-color: var(--red);
  font-size: 24px;
  font-weight: 500;
  padding: 11px;
  text-align: center;
  width: 100%;
}
.product .product__tables table tr:first-child td:last-child {
  text-align: center;
}
.product .product__tables table tr:nth-child(2) td {
  padding-top: 15px;
}
.product .product__tables table tr td {
  border: none;
  border-bottom: 1px solid #ececec;
  font-size: 18px;
  font-weight: 400;
  padding: 10px 0;
}
.product .product__tables table tr td:first-child {
  text-align: left;
}
.product .product__tables table tr td:last-child {
  text-align: right;
}
.product .product__tables p b,
.product .product__tables p strong {
  font-weight: 700;
}

.products .products__card {
  -webkit-box-shadow: var(--shadow);
          box-shadow: var(--shadow);
  padding: 17px 15px 37px;
}
.products .products__card .products__thumbnail {
  height: 240px;
  margin-bottom: 15px;
}
.products .products__card .products__thumbnail img {
  width: 100%;
  height: 100%;
  -o-object-position: center;
     object-position: center;
  -o-object-fit: contain;
     object-fit: contain;
}
.products .products__card a:hover {
  color: var(--red);
}

.used .text__content h3 {
  margin-bottom: 20px;
}
.used .text__content ul li {
  margin-bottom: 12px;
  padding-left: 28px;
}
.used .text__content ul li::before {
  width: 24px;
  height: 24px;
  left: 0;
  top: 0;
  background: url(../img/icon_list.svg) no-repeat center/24px;
}
.used .used__img img {
  width: auto;
  height: auto;
}

.types .types__card {
  max-width: 350px;
  margin: 0 auto 20px;
}
.types .types__img img {
  width: 100%;
  height: auto;
}

@media screen and (max-width: 1439px) {
  .carier .carier__card {
    padding-left: 25px;
    padding-right: 25px;
  }
  .carier .carier__card .carier__thumbnail {
    width: 100%;
    height: auto;
    margin: 0 auto 25px;
  }
}
@media screen and (max-width: 1199px) {
  .product .product__wrap {
    padding: 50px 30px;
  }
}
@media screen and (max-width: 991px) {
  .product .product__img {
    max-width: 350px;
    padding-top: 0;
    margin-bottom: 30px;
  }
  .product .container {
    padding-top: 0;
  }
}
@media screen and (max-width: 576px) {
  .carier__list .carier__card {
    max-width: 350px;
    margin: 0 auto;
  }
  .product .product__wrap h1 {
    font-size: 32px;
  }
  .product .product__wrap {
    padding: 40px 20px;
  }
  .product .product__wrap .available .sizes__label .sizes__text {
    height: 42px;
  }
}
.advant .advant__img img {
  width: 100%;
  height: auto;
}
.advant .advant__content li {
  font-size: 24px;
  font-weight: 600;
  padding-left: 40px;
  margin-bottom: 18px;
  position: relative;
}
.advant .advant__content li::before {
  content: "";
  display: block;
  width: 30px;
  height: 30px;
  position: absolute;
  left: 0;
  top: 0;
  background: url(../img/icon_list.svg) no-repeat center;
}
.advant.advant_cards .advant__card {
  -webkit-box-shadow: var(--shadow);
          box-shadow: var(--shadow);
  min-height: 336px;
  padding: 60px 35px 30px 80px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.advant.advant_cards .advant__card .advant__icon {
  width: 150px;
  height: 150px;
  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;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  margin-right: 40px;
}
.advant.advant_cards .advant__card .advant__icon img {
  max-width: 100%;
}
.advant.advant_cards .advant__card .advant__describe h4 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 14px;
  text-transform: uppercase;
}
.advant.advant_cards .advant__card .advant__describe p {
  font-size: 18px;
  font-weight: 400;
  margin-bottom: 0.3em;
}

@media screen and (max-width: 1439px) {
  .advant.advant_cards .advant__card {
    padding: 40px 30px 40px;
  }
}
@media screen and (max-width: 1199px) {
  .advant .advant__content li {
    font-size: 20px;
  }
  .advant.advant_cards .advant__card {
    display: block;
  }
  .advant.advant_cards .advant__card .advant__icon {
    width: 100px;
    height: 100px;
    margin-right: 0;
    margin-bottom: 20px;
  }
}
@media screen and (max-width: 991px) {
  .advant .advant__content {
    margin-bottom: 25px;
  }
  .advant .advant__img img {
    max-width: 550px;
    height: auto;
  }
  .advant.advant_cards .advant__card {
    margin-bottom: 20px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .advant.advant_cards .advant__card .advant__icon {
    margin-right: 20px;
    margin-bottom: 0;
  }
}
@media screen and (max-width: 576px) {
  .advant.advant_cards .advant__card {
    margin-bottom: 20px;
    display: block;
  }
  .advant.advant_cards .advant__card .advant__icon {
    margin-right: 0;
    margin-bottom: 20px;
  }
}
.callback .section__title {
  color: var(--white);
}
.callback::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  background-color: #1c1c1c;
  opacity: 0.7;
}
.callback .callback__subtitle {
  max-width: 400px;
}
.callback .form__wrap .input__group .order__input {
  border-width: 2px;
}
.callback .form__wrap .btn {
  width: 100%;
}
.callback .form__wrap .btn__wrap p {
  width: 100%;
}
.callback.callback_grey {
  background-color: #f0f0f0;
}
.callback.callback_grey::before {
  display: none;
}
.callback.callback_grey .callback__subtitle,
.callback.callback_grey .section__title {
  color: var(--grey2);
}
.callback.callback_grey .form__wrap .input__group .order__input {
  border-color: var(--grey3);
  color: var(--grey2);
}
.callback.callback_grey .form__wrap .input__group .order__input::-webkit-input-placeholder {
  color: var(--grey3);
}
.callback.callback_grey .form__wrap .input__group .order__input::-moz-placeholder {
  color: var(--grey3);
}
.callback.callback_grey .form__wrap .input__group .order__input:-ms-input-placeholder {
  color: var(--grey3);
}
.callback.callback_grey .form__wrap .input__group .order__input::-ms-input-placeholder {
  color: var(--grey3);
}
.callback.callback_grey .form__wrap .input__group .order__input::placeholder {
  color: var(--grey3);
}

@media screen and (max-width: 1199px) {
  .form__wrap .input__group .order__input {
    height: 60px;
  }
}
.about {
  overflow: visible;
}
.about .section__title {
  font-size: 36px;
  font-weight: 700;
  text-shadow: 0 2px 5px rgba(87, 87, 87, 0.616);
}
.about .about__content p {
  line-height: 1.3em;
  margin-bottom: 1.3em;
}
.about .about__content p:last-child {
  margin-bottom: 0;
}
.about .about__content li {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 0.4em;
}
.about .about__content li:last-child {
  margin-bottom: 0;
}
.about .btn {
  width: 300px;
}
.about .about__swiper {
  margin-bottom: 15px;
}
.about .about__swiper .about__video {
  display: block;
  -webkit-box-shadow: var(--shadow);
          box-shadow: var(--shadow);
  height: 420px;
  margin-bottom: 20px;
  text-align: center;
  background-color: #f0f0f0;
}
.about .about__swiper .about__video:active, .about .about__swiper .about__video:focus-visible, .about .about__swiper .about__video:focus {
  outline: none !important;
  outline-offset: 0px;
}
.about .about__swiper .about__video img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center;
     object-position: center;
}
.about .about__swiper .about__video:after {
  content: "";
  display: block;
  position: absolute;
  left: calc(50% - 30px);
  top: calc(50% - 30px);
  width: 60px;
  height: 60px;
  background: url(../img/play_btn.svg) no-repeat center;
}
.about .about__img {
  position: absolute;
  left: 12px;
  top: -60px;
}
.about button.btn {
  width: 328px;
}

@media screen and (max-width: 1199px) {
  .about .about__img {
    top: 0px;
    width: 51%;
  }
}
@media screen and (max-width: 991px) {
  .about .about__img {
    position: static;
    width: 100%;
    max-width: 350px;
    margin: 0 auto 30px;
    height: auto;
  }
}
.gallery .gallery__img {
  height: 620px;
}
.gallery .gallery__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.gallery .gallery__item {
  width: calc(50% - 8px);
  height: calc(50% - 8px);
  display: block;
}
.gallery .gallery__item img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

@media screen and (max-width: 1439px) {
  .gallery .gallery__img {
    height: 550px;
  }
}
@media screen and (max-width: 1199px) {
  .gallery .gallery__img {
    height: 450px;
  }
}
@media screen and (max-width: 991px) {
  .gallery .gallery__img {
    height: 250px;
    margin-bottom: 12px;
  }
  .gallery .gallery__item {
    height: 220px;
    margin-bottom: 12px;
  }
}
.production .text__content {
  padding-right: 50px;
}
.production .text__content h2 {
  margin-bottom: 12px;
}
.production .production__img img {
  width: 100%;
  height: auto;
}

.video .video__link img {
  width: 100%;
  height: a;
}

@media screen and (max-width: 991px) {
  .production .text__content {
    padding-right: 0;
  }
  .production .production__img {
    max-width: 500px;
  }
}
.processing .processing__card {
  -webkit-box-shadow: var(--shadow);
          box-shadow: var(--shadow);
  padding: 60px 40px 40px;
  min-height: 340px;
}
.processing .processing__card h3 {
  text-align: center;
  color: var(--red);
  margin-bottom: 20px;
  text-transform: uppercase;
}
.processing .processing__card p {
  line-height: 1.4em;
}

@media screen and (max-width: 576px) {
  .processing .processing__card {
    padding: 30px;
  }
}
.product__sizes .product__sizes_img img {
  width: 100%;
  height: auto;
}
.product__sizes .line {
  margin: 40px 0;
  height: 1px;
  background-color: var(--grey3);
}
.product__sizes .text__content p {
  font-weight: 400;
}
.product__sizes .text__content ul {
  margin-bottom: 1.2em;
}
.product__sizes .text__content li {
  margin-bottom: 10px;
  font-weight: 400;
}

.primers .primers__swiper {
  height: 330px;
  margin-bottom: 30px;
}
.primers .primers__swiper img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.footer {
  background-color: #1e1e1e;
  padding-top: 36px;
  padding-bottom: 80px;
}
.footer .custom-logo-link {
  width: 163px;
}
.footer .footer__menu li {
  margin-bottom: 12px;
}
.footer .footer__menu li a {
  color: var(--white);
  font-size: 18px;
}
.footer .footer__menu li a:hover {
  color: var(--red);
}
.footer .footer__menu.footer__menu_carier {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  width: 100%;
}
.footer .footer__menu.footer__menu_carier li {
  width: 50%;
}
.footer .footer__menu.footer__menu_doc li a {
  text-decoration: underline;
}
.footer .footer_contact {
  margin-bottom: 20px;
}
.footer .footer_contact a {
  font-family: "Manrope", sans-serif;
  font-size: 18px;
  font-weight: 400;
  color: var(--white);
}
.footer .footer_contact a:hover {
  color: var(--red);
}
.footer .footer_contact.footer_contact_mail a {
  font-family: "Raleway", sans-serif;
}
.footer .footer__btn {
  font-size: 14px;
  color: var(--white);
  text-decoration: underline;
  margin-bottom: 20px;
  cursor: pointer;
}
.footer .footer__btn:hover {
  color: var(--red);
}
.footer .footer__social {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.footer .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: 24px;
  height: 24px;
  margin-right: 20px;
}
.footer .footer__social a:hover path {
  fill: var(--red);
}

@media screen and (max-width: 991px) {
  section.pt_100 {
    padding-top: 70px;
  }
  section.pb_100 {
    padding-bottom: 70px;
  }
  section.pt_50 {
    padding-top: 30px;
  }
  section.pb_50 {
    padding-bottom: 30px;
  }
}
.simple__content h1 {
  font-size: 48px;
  font-family: "Kharkiv", sans-serif;
  font-weight: 400;
}

.simple__content .text__content h2 {
  font-family: "Kharkiv";
  margin-bottom: 24px;
  font-size: 32px;
  font-weight: 700;
  margin-top: 30px;
}

.simple__content .text__content h3 {
  font-family: "Kharkiv";
  font-size: 20px;
  line-height: 1.3em;
  font-weight: 400;
}

.simple__content .text__content p,
.simple__content .text__content li {
  font-size: 20px;
  line-height: 1.4em;
}

.simple__content .text__content p a,
.simple__content .text__content li a {
  color: var(--dark);
}

.simple__content .text__content p a:hover,
.simple__content .text__content li a:hover {
  color: var(--blue);
}

@media screen and (max-width: 1439px) {
  .simple__content h1 {
    font-size: 42px;
  }
}
@media screen and (max-width: 1199px) {
  .simple__content h1 {
    font-size: 42px;
  }
}
@media screen and (max-width: 991px) {
  .simple__content_page {
    padding-top: 100px;
  }
  .simple__content {
    padding-top: 20px;
  }
  .simple__content h1 {
    font-size: 36px;
    margin-bottom: 30px;
  }
  .simple__content h2 {
    font-size: 24px;
  }
}
@media screen and (max-width: 767px) {
  .simple__content h1 {
    font-size: 24px;
  }
  .simple__content .text__content p,
  .simple__content .text__content li {
    font-size: 16px;
  }
  .simple__content .text__content h3 {
    font-size: 16px;
    color: var(--dark);
  }
}
.page_404 {
  height: calc(100vh - 43px);
  min-height: 560px;
  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;
}

.page_404 .page_404__title {
  font-size: 200px;
  font-style: normal;
  font-weight: 600;
  font-family: "font-family";
  text-transform: uppercase;
  margin-bottom: 30px;
  line-height: 0.75em;
}

.page_404 .page_404_subtitle {
  font-size: 40px;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--dark);
  line-height: 1em;
}

.page_404 .page_404__text {
  font-size: 18px;
  max-width: 284px;
  margin: 0 auto 30px;
  font-weight: 400;
}

.elem__anim > * {
  opacity: 0;
}

.elem__anim > .xyz-in {
  opacity: 1;
}

@media screen and (max-width: 991px) {
  .page_404 .page_404__title {
    font-size: 150px;
  }
}
.popup {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: -1;
  pointer-events: none;
  opacity: 0;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
  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;
}
.popup.open {
  z-index: 9999999;
  pointer-events: all;
  opacity: 1;
}
.popup .popup__content {
  width: 95%;
  max-width: 580px;
  max-height: 95%;
  overflow-y: auto;
  background-color: var(--white);
  padding: 40px 40px;
  border-radius: 4px;
  position: relative;
}
.popup .popup__content .popup__close {
  cursor: pointer;
  position: absolute;
  width: 24px;
  height: 24px;
  right: 24px;
  top: 24px;
  display: block;
  border: none;
  background: url(../img/close_popup.svg) no-repeat center;
}
.popup .popup__content form {
  position: relative;
}
.popup .popup__content .form__wrap .btn__wrap p {
  width: 100%;
}
.popup .popup__content .form__wrap .btn__wrap .btn {
  width: 100%;
}
.popup .popup__content .form__wrap .input__group .order__input {
  color: var(--grey3);
  border-color: var(--grey3);
  border-width: 2px;
}
.popup .popup__content .form__wrap .input__group .order__input::-webkit-input-placeholder {
  color: var(--grey3);
}
.popup .popup__content .form__wrap .input__group .order__input::-moz-placeholder {
  color: var(--grey3);
}
.popup .popup__content .form__wrap .input__group .order__input:-ms-input-placeholder {
  color: var(--grey3);
}
.popup .popup__content .form__wrap .input__group .order__input::-ms-input-placeholder {
  color: var(--grey3);
}
.popup .popup__content .form__wrap .input__group .order__input::placeholder {
  color: var(--grey3);
}
.popup.popup_success .popup__content {
  background: #fff url(../img/popup_success_bg.svg) no-repeat 80% bottom;
}
.popup.popup_success h2,
.popup.popup_success p {
  max-width: 350px;
}

.wpcf7-response-output {
  font-size: 14px;
  margin: 0 !important;
  position: absolute;
  top: 100%;
}

@media screen and (max-width: 1600px) {
  .popup .popup__content {
    padding: 40px;
  }
}
@media screen and (max-width: 991px) {
  .popup .popup__content {
    padding: 40px 20px 40px;
  }
  .popup .popup__content .popup__close {
    top: 10px;
    right: 10px;
  }
  .popup .popup__content .form__wrap .input__group .order__input {
    height: 40px;
  }
  .popup .popup__content .form__wrap .input__group .order__input.order__input_message {
    height: 80px;
  }
}
.img_check {
  width: 25px;
  height: 25px;
}/*# sourceMappingURL=main.css.map */