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

:root {
  --app-height: 100%;
  --white: #ffffff;
  --dark: #1c2a3c;
  --green: #3df3bb;
  --light_grey: #f4f4f4;
  --line_grey: #c0c0c0;
  --text_grey: #6e7379;
  --shadow: 0 8px 16px rgba(23, 23, 23, 0.12);
  --linear: linear-gradient(
    45deg,
    rgba(255, 255, 255, 0.7),
    rgba(255, 255, 255, 0.9)
  );
}

.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_green {
  color: var(--green);
}

.c_light_grey {
  color: var(--light_grey);
}

.c_line_grey {
  color: var(--line_grey);
}

.c_text_grey {
  color: var(--text_grey);
}

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

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

.bg_green {
  background-color: var(--green);
}

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

.bg_light_grey {
  background-color: var(--light_grey);
}

.bg_line_grey {
  background-color: var(--line_grey);
}

.bg_text_grey {
  background-color: var(--text_grey);
}

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

.count-particles {
  position: absolute;
  opacity: 0;
  z-index: -5;
}

.particles-js,
.block__bg {
  position: fixed;
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
}

.particles-js-canvas-el {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
}

.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: "SF Pro Text", sans-serif;
  color: var(--text_grey);
  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;
  letter-spacing: 0.02em;
  background-color: var(--light_grey);
}
body.category {
  background-color: var(--white);
}
body.category #particles-js {
  display: none;
}

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(--light_grey);
}

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

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

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

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

li {
  display: block;
}

p {
  margin-bottom: 0;
}

input:hover,
select:hover,
textarea:hover,
input:active,
select:active,
textarea:active,
input:focus,
select:focus,
textarea:focus,
input,
select,
textarea {
  display: block;
  outline: none;
  font-family: "SF Pro Text", 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: "SF Pro Text", 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: 16px;
  font-weight: 400;
  line-height: 1.2em;
  letter-spacing: 0.02em;
  cursor: pointer;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  max-width: 100%;
  min-height: 44px;
  padding: 0 16px;
  background-color: var(--green);
  color: var(--dark);
  border-radius: 4px;
}
p.btn:hover,
span.btn:hover,
a.btn:hover,
button.btn:hover {
  background-color: #0acd95;
}
p.btn:active,
span.btn:active,
a.btn:active,
button.btn:active {
  background-color: #0acd95;
}
p.btn.btn_dark,
span.btn.btn_dark,
a.btn.btn_dark,
button.btn.btn_dark {
  background-color: var(--dark);
  color: var(--light_grey);
}
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_dark:active,
span.btn.btn_dark:active,
a.btn.btn_dark:active,
button.btn.btn_dark:active {
  background-color: #0d0d12;
}
p.btn.btn_wh,
span.btn.btn_wh,
a.btn.btn_wh,
button.btn.btn_wh {
  background-color: var(--light_grey);
  border: 1px solid var(--light_grey);
  color: var(--dark);
}
p.btn.btn_wh:hover,
span.btn.btn_wh:hover,
a.btn.btn_wh:hover,
button.btn.btn_wh:hover {
  background-color: transparent;
  color: var(--light_grey);
}
p.btn.btn_wh:active,
span.btn.btn_wh:active,
a.btn.btn_wh:active,
button.btn.btn_wh:active {
  background-color: transparent;
  color: var(--light_grey);
}

.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__contact a {
  margin-right: 24px;
}
.header .header__contact a:hover {
  color: var(--green);
}
.header .header__contact a:hover path {
  stroke: var(--green);
}
.header .header__contact svg {
  width: 24px;
  height: 24px;
  margin-right: 8px;
}

.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(--green);
}

.custom-logo-link {
  display: block;
  width: 250px;
  max-width: 100%;
}
.custom-logo-link img {
  width: 100%;
  height: auto;
}
.custom-logo-link span {
  display: block;
  padding-top: 5px;
  text-transform: uppercase;
  color: var(--green);
  font-size: 16px;
}

.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;
  margin-right: 32px;
}
.nav__menu .nav__item a {
  font-size: 16px;
  font-family: "SF Pro Text", sans-serif;
  font-weight: 400;
  color: var(--white);
  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;
}
.nav__menu .nav__item a:hover {
  color: var(--green);
}
.nav__menu .nav__item a::after {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  position: absolute;
  left: 0;
  bottom: -3px;
  background-color: var(--green);
  -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);
}
.nav__menu .nav__item.menu-item-has-children > a {
  padding-left: 32px;
}
.nav__menu .nav__item.menu-item-has-children > a::before {
  content: "";
  display: block;
  width: 24px;
  height: 24px;
  position: absolute;
  left: 0;
  top: calc(50% - 12px);
  background: url(../img/icon_catalog.svg) no-repeat center;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
.nav__menu .nav__item.menu-item-has-children:hover > a::before {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}
.nav__menu .nav__item.menu-item-has-children .sub-menu {
  position: absolute;
  left: 50%;
  top: 100%;
  opacity: 0;
  -webkit-transform: translate(-50%, -10px);
          transform: translate(-50%, -10px);
  pointer-events: none;
  width: 250px;
  padding: 10px 24px;
  background-color: var(--light_grey);
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
.nav__menu .nav__item.menu-item-has-children .sub-menu li {
  padding: 5px 0;
}
.nav__menu .nav__item.menu-item-has-children .sub-menu li a {
  color: var(--dark);
  font-size: 14px;
}
.nav__menu .nav__item.menu-item-has-children .sub-menu li a:hover {
  color: var(--green);
}
.nav__menu .nav__item.menu-item-has-children .sub-menu li.current-menu-item a {
  color: var(--green);
}
.nav__menu .nav__item.current-menu-ancestor > a, .nav__menu .nav__item.current-menu-item > a {
  color: var(--green);
}

.menu__burger {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  cursor: pointer;
}
.menu__burger span {
  display: block;
  height: 2px;
  width: 27px;
  border-radius: 5px;
  background-color: var(--green);
  margin-bottom: 8px;
  pointer-events: none;
}
.menu__burger span:last-child {
  margin-bottom: 0;
}

.scroll_wrap a * {
  pointer-events: none;
}

@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;
    -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);
  }
  .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-right: 8px;
    -webkit-transition: all 0.4s ease;
    transition: all 0.4s ease;
    background: url(../img/icon_catalog.svg) no-repeat center/15px;
  }
  .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;
  }
}
.section__title {
  font-size: 40px;
  line-height: 1.2em;
  font-family: "SF Pro Text", sans-serif;
  font-weight: 500;
  letter-spacing: 0.02em;
  padding-bottom: 5px;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  border-bottom: 2px solid var(--green);
  color: var(--dark);
}

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

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

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

.title_4 {
  font-size: 20px;
  line-height: 1.2em;
  font-family: "SF Pro Text", 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: 40px;
  line-height: 1.2em;
  font-family: "SF Pro Text", sans-serif;
  font-weight: 500;
  letter-spacing: 0.02em;
  margin-bottom: 1em;
}
.text__content h2 {
  font-size: 24px;
  line-height: 1.2em;
  font-family: "SF Pro Text", sans-serif;
  font-weight: 500;
  letter-spacing: 0.02em;
  margin-bottom: 1em;
}
.text__content h3 {
  font-size: 24px;
  line-height: 1.2em;
  font-family: "SF Pro Text", sans-serif;
  font-weight: 400;
  letter-spacing: 0.02em;
  margin-bottom: 1em;
}
.text__content h3 b,
.text__content h3 strong {
  font-weight: 500;
}
.text__content h4 {
  font-size: 20px;
  line-height: 1.2em;
  font-family: "SF Pro Text", sans-serif;
  font-weight: 500;
  letter-spacing: 0.02em;
  margin-bottom: 1em;
}
.text__content p,
.text__content li {
  font-size: 16px;
  line-height: 1.2em;
  margin-bottom: 1.2em;
  letter-spacing: 0.02em;
  font-weight: 400;
}
.text__content p b,
.text__content p strong,
.text__content li b,
.text__content li strong {
  font-weight: 500;
}
.text__content li {
  position: relative;
  padding-left: 28px;
}
.text__content li:before {
  content: "";
  display: block;
  width: 16px;
  height: 16px;
  background: url(../img/check_icon.svg) no-repeat center;
  position: absolute;
  left: 0;
  top: 0.2em;
}

@media screen and (max-width: 1439px) {
  .section__title {
    font-size: 36px;
  }
  .title_1 {
    font-size: 36px;
  }
}
@media screen and (max-width: 1199px) {
  .section__title {
    font-size: 32px;
  }
  .header .header__contact a {
    font-size: 12px;
  }
  .header .nav .header__contact a {
    font-size: 14px;
  }
  .header .header__contact svg {
    width: 20px;
    height: 20px;
  }
}
@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;
  }
  .custom-logo-link {
    width: 250px;
  }
  .title_1 {
    font-size: 32px;
  }
  .section__title {
    font-size: 24px;
  }
}
@media screen and (max-width: 767px) {
  .header .header__contact a {
    font-size: 12px;
  }
  .custom-logo-link {
    width: 150px;
  }
}
@media screen and (max-width: 576px) {
  .title_1 {
    font-size: 24px;
  }
  .custom-logo-link span {
    font-size: 13px;
  }
}
.form__wrap {
  width: 100%;
}
.form__wrap .input__label span {
  color: #d20000;
}
.form__wrap .input__group {
  margin-bottom: 24px;
}
.form__wrap .input__group .order__input {
  display: block;
  width: 100%;
  height: 40px;
  padding-left: 12px;
  font-family: "SF Pro Text";
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  color: var(--text_grey);
  border: 1px solid var(--line_grey);
  background-color: var(--white);
  border-radius: 5px;
}
.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: "SF Pro Text";
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 120%;
  color: var(--line_grey);
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
.form__wrap .input__group .order__input::-moz-placeholder {
  font-family: "SF Pro Text";
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 120%;
  color: var(--line_grey);
  -moz-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
.form__wrap .input__group .order__input:-ms-input-placeholder {
  font-family: "SF Pro Text";
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 120%;
  color: var(--line_grey);
  -ms-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
.form__wrap .input__group .order__input::-ms-input-placeholder {
  font-family: "SF Pro Text";
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 120%;
  color: var(--line_grey);
  -ms-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
.form__wrap .input__group .order__input::placeholder {
  font-family: "SF Pro Text";
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 120%;
  color: var(--line_grey);
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
.form__wrap .input__group .order__input:focus::-webkit-input-placeholder {
  color: var(--dark);
}
.form__wrap .input__group .order__input:focus::-moz-placeholder {
  color: var(--dark);
}
.form__wrap .input__group .order__input:focus:-ms-input-placeholder {
  color: var(--dark);
}
.form__wrap .input__group .order__input:focus::-ms-input-placeholder {
  color: var(--dark);
}
.form__wrap .input__group .order__input:focus::placeholder {
  color: var(--dark);
}
.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(--line_grey);
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  margin-right: 12px;
  cursor: pointer;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  border-radius: 2px;
}
.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(--text_grey);
  position: relative;
}
.breadcrumbs .breadcrumb_last {
  font-weight: 400;
  font-size: 14px;
  line-height: 150%;
  color: var(--dark);
  border-bottom: 1px solid var(--green);
}

.head__section {
  padding-top: 250px;
  padding-bottom: 124px;
  min-height: 520px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.head__section .head__img {
  width: 710px;
  position: absolute;
  bottom: 42px;
  left: 55%;
  padding-bottom: 15px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 15px 25px;
}
.head__section .head__img img {
  width: 100%;
  max-width: 540px;
  height: auto;
  position: relative;
  z-index: 2;
}
.head__section .head__img:after {
  content: "";
  display: block;
  width: 100%;
  height: 328px;
  position: absolute;
  left: 0;
  bottom: 0;
  -webkit-box-shadow: inset 0 0px 70px rgba(8, 66, 120, 0.5), inset 0 0px 80px rgba(112, 225, 242, 0.25), inset 0 3px 18px rgba(112, 225, 242, 0.3);
          box-shadow: inset 0 0px 70px rgba(8, 66, 120, 0.5), inset 0 0px 80px rgba(112, 225, 242, 0.25), inset 0 3px 18px rgba(112, 225, 242, 0.3);
  -webkit-backdrop-filter: blur(3px);
          backdrop-filter: blur(3px);
  background-color: rgba(13, 41, 80, 0.058);
  border-radius: 20px;
}
.head__section::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  background: -webkit-gradient(linear, left top, right top, from(rgba(0, 0, 0, 0.74)), to(rgba(0, 0, 0, 0)));
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.74) 0%, rgba(0, 0, 0, 0) 100%);
}
.head__section .offer {
  position: relative;
  z-index: 2;
}
.head__section .offer h1 {
  font-size: 28px;
  line-height: 1.1em;
}
.head__section .offer p {
  font-size: 18px;
}
.head__section.other_head {
  padding-bottom: 80px;
  padding-top: 300px;
}
.head__section.other_head_404 {
  min-height: 600px;
  height: 100vh;
}
.head__section .offer__list .btn {
  width: 100%;
}

@media screen and (max-width: 1199px) {
  .head__section .head__img {
    width: 600px;
    left: 53%;
  }
}
@media screen and (max-width: 991px) {
  .head__section {
    padding-top: 180px;
    padding-bottom: 50px;
    min-height: 530px;
    height: auto;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .pt_60 {
    padding-top: 30px;
  }
  .pb_60 {
    padding-bottom: 30px;
  }
  .pt_100 {
    padding-top: 80px;
  }
  .pb_100 {
    padding-bottom: 80px;
  }
  .head__section {
    padding-bottom: 60px;
  }
  .head__section .offer .title_1 {
    margin-bottom: 32px;
  }
  .head__section .offer .title_3 {
    font-size: 16px;
  }
  .head__section .offer {
    margin-bottom: 25px;
    text-align: center;
  }
  .head__section .offer .btn {
    margin: 0 auto;
  }
  .head__section.other_head .offer {
    text-align: left;
  }
  .head__section.other_head .offer .btn {
    margin: 0;
  }
  .head__section .head__img:after {
    height: 75%;
  }
  .head__section .head__img {
    width: calc(100% - 32px);
    position: relative;
    bottom: auto;
    left: auto;
    margin: 0 auto;
  }
}
@media screen and (max-width: 576px) {
  .head__section {
    padding-top: 100px;
  }
  .head__section .offer .title_1 {
    font-size: 6.5vw;
  }
}
.category_main .category__item {
  height: 213px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  padding: 24px;
  border-radius: 20px;
  overflow: hidden;
  margin-bottom: 24px;
  position: relative;
  -webkit-box-shadow: var(--shadow);
          box-shadow: var(--shadow);
}
.category_main .category__item .category__bg {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  -webkit-transition: all 0.8s ease;
  transition: all 0.8s ease;
}
.category_main .category__item:hover .category__bg {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
.category_main .category__item .title_2 {
  z-index: 2;
}
.category_main .category__item::after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  background: -webkit-gradient(linear, left bottom, left top, from(rgba(0, 0, 0, 0.53)), to(rgba(0, 0, 0, 0)));
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.53), rgba(0, 0, 0, 0));
  z-index: 1;
}

.popular .popular__swiper {
  padding-bottom: 20px;
}
.popular .popular__card {
  padding-top: 24px;
  padding-bottom: 32px;
  border-radius: 20px;
  width: 100%;
  -webkit-box-shadow: var(--shadow);
          box-shadow: var(--shadow);
}
.popular .popular__card .popular__price {
  padding: 16px;
  border-radius: 10px 0 0 10px;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
}
.popular .popular__card .popular__name {
  width: 100%;
  padding: 0 16px;
}
.popular .popular__card .popular__thumnail {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 0 16px;
  width: 100%;
  height: 270px;
  margin-bottom: 12px;
  overflow: hidden;
}
.popular .popular__card .popular__thumnail img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.popular .popular__card .popular__describe {
  padding: 0 16px;
  margin-bottom: 32px;
  width: 100%;
}
.popular .popular__card .popular__describe .info__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding-bottom: 8px;
  border-bottom: 1px dashed var(--line_grey);
}
.popular .popular__card .popular__describe .info__item span {
  width: 50%;
}
.popular .popular__card .popular__describe .info__item span:last-child {
  text-align: right;
}
.popular .popular__card .popular__describe .info__item:last-child {
  margin-bottom: 0;
}
.popular .popular__card .popular__btn {
  width: calc(100% - 32px);
  margin: auto auto 0;
}
.popular .popular__cat_wrap {
  margin-bottom: 86px;
}
.popular .popular__cat_wrap .popular__cat {
  display: block;
  border-radius: 20px;
  -webkit-box-shadow: var(--shadow);
          box-shadow: var(--shadow);
  height: 166px;
  background-color: var(--white);
  position: relative;
  padding: 24px;
}
.popular .popular__cat_wrap .popular__cat .cat__logo {
  width: 226px;
  height: 95px;
}
.popular .popular__cat_wrap .popular__cat .cat__logo img {
  max-width: 100%;
  max-height: 100%;
}
.popular .popular__cat_wrap .popular__cat .cat__arrow {
  position: absolute;
  right: 24px;
  bottom: 24px;
  width: 32px;
  height: 32px;
}
.popular .popular__cat_wrap .popular__cat:hover .cat__arrow path {
  fill: var(--green);
}
.popular .cat__item {
  margin-top: 60px;
  position: relative;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
  background-color: var(--white);
}
.popular .cat__item:first-child {
  padding-top: 0;
}
.popular .cat__item .cat__qwestion {
  height: 72px;
  position: relative;
  border-radius: 0 10px 10px 10px;
  background-color: var(--light_grey);
  cursor: pointer;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
.popular .cat__item .cat__qwestion .cat__arrow {
  position: absolute;
  right: 24px;
  top: 24px;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
  pointer-events: none;
}
.popular .cat__item .cat__qwestion .title_label {
  pointer-events: none;
}
.popular .cat__item .cat__answer {
  display: none;
  opacity: 0;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
  background-color: var(--light_grey);
  padding-bottom: 40px;
  border-radius: 0 0 10px 10px;
}
.popular .cat__item.active {
  background-color: var(--light_grey);
  margin-bottom: 0;
}
.popular .cat__item.active .cat__qwestion {
  border-radius: 0 10px 0px 0px;
}
.popular .cat__item.active .cat__arrow {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}
.popular .true_loadmore {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  cursor: pointer;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  font-size: 16px;
  font-weight: 500;
}
.popular .true_loadmore span {
  pointer-events: none;
}
.popular .true_loadmore svg {
  margin-left: 24px;
  pointer-events: none;
}
.popular .true_loadmore.hover {
  color: var(--green);
}
.popular .true_loadmore.hover path {
  fill: var(--green);
}

@media screen and (max-width: 1439px) {
  .popular .popular__card .popular__thumnail {
    height: 230px;
  }
  .popular .popular__card .popular__price {
    padding: 12px;
    margin-bottom: 20px;
  }
}
@media screen and (max-width: 991px) {
  .popular .popular__cat_wrap {
    margin-bottom: 70px;
  }
}
@media screen and (max-width: 576px) {
  .popular .popular__card .popular__thumnail {
    width: 200px;
    height: 200px;
    margin: 0 auto 15px;
  }
  .popular .popular__card .popular__describe .info__item {
    font-size: 14px;
  }
}
.advant .section__title {
  margin-bottom: 100px;
  z-index: 2;
}
.advant .advant__item {
  border-radius: 4px;
  -webkit-box-shadow: var(--shadow);
          box-shadow: var(--shadow);
  padding: 0 24px 24px;
  min-height: 250px;
  width: 100%;
}
.advant .advant__item .advant__icon {
  width: 120px;
  height: 120px;
  margin-top: -60px;
  border: 5px solid var(--white);
  -webkit-box-shadow: var(--shadow);
          box-shadow: var(--shadow);
  border-radius: 50%;
}
.advant.advant_red .advant__bg {
  position: absolute;
  right: 0;
  top: 0;
  height: 100%;
  width: auto;
  max-width: 100%;
}
.advant.advant_red .advant__bg img {
  height: 100%;
}
.advant.advant_red .advant__bg::after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  background: -webkit-gradient(linear, left top, right top, from(#fff), to(rgba(255, 255, 255, 0)));
  background: linear-gradient(90deg, #fff, rgba(255, 255, 255, 0));
}
.advant.advant_red .advant__wrap {
  margin-bottom: 80px;
}
.advant.advant_red .advant__wrap:last-child, .advant.advant_red .advant__wrap:nth-child(3) {
  margin-bottom: 0;
}
.advant.advant_red .advant__item .advant__icon {
  background-color: var(--green);
}

@media screen and (max-width: 1439px) {
  .advant .advant__item .advant__icon {
    width: 100px;
    height: 100px;
    margin-top: -50px;
  }
  .advant .advant__item .advant__icon img {
    max-width: 55px;
    height: auto;
  }
}
@media screen and (max-width: 1199px) {
  .advant .advant__item {
    padding: 0 24px 32px;
  }
}
@media screen and (max-width: 991px) {
  .advant {
    padding-bottom: 0;
  }
  .advant .advant__wrap {
    margin-bottom: 60px;
  }
  .advant.advant_red {
    padding-top: 60px;
  }
  .advant.advant_red .advant__wrap:last-child,
  .advant.advant_red .advant__wrap:nth-child(3) {
    margin-bottom: 60px;
  }
}
@media screen and (max-width: 767px) {
  .advant .advant__item .advant__icon {
    width: 80px;
    height: 80px;
    margin-top: -40px;
  }
  .advant .advant__item .advant__icon img {
    width: 42px;
  }
  .advant.advant_red .advant__bg {
    height: 640px;
    width: 100%;
  }
  .advant.advant_red .advant__bg img {
    position: absolute;
    left: 0;
    height: 100%;
    width: auto;
  }
}
@media screen and (max-width: 576px) {
  .advant .advant__item {
    height: auto;
    min-height: initial;
  }
  .advant.advant_red .advant__bg img {
    left: auto;
    right: 0;
  }
}
.service {
  position: relative;
}
.service .section__title {
  z-index: 2;
}
.service::after {
  display: block;
  width: 100%;
  height: 75%;
  background-color: var(--white);
  position: absolute;
  left: 0;
  top: -1px;
}
.service .service__wrap {
  padding: 32px 0;
  position: relative;
}
.service .service__thumb {
  width: 460px;
  max-width: 100%;
  height: 597px;
  position: relative;
  z-index: 2;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.service .service__thumb .service__number {
  color: var(--dark);
  opacity: 0.1;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
  font-weight: 700;
  font-size: 100px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  margin-right: 10px;
  line-height: 1.2em;
}
.service .service__thumb .service__content {
  padding: 24px 0;
}
.service .service__thumb .service__item {
  padding-left: 5px;
  padding-right: 24px;
  height: 183px;
  border-radius: 4px;
  -webkit-box-shadow: var(--shadow);
          box-shadow: var(--shadow);
  cursor: pointer;
}
.service .service__thumb .service__item .service__content h3 {
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
.service .service__thumb .service__item.active, .service .service__thumb .service__item:hover {
  background-color: var(--dark);
}
.service .service__thumb .service__item.active .service__number, .service .service__thumb .service__item:hover .service__number {
  opacity: 1;
  color: var(--green);
}
.service .service__thumb .service__item.active .service__content p,
.service .service__thumb .service__item.active .service__content h3, .service .service__thumb .service__item:hover .service__content p,
.service .service__thumb .service__item:hover .service__content h3 {
  color: var(--white);
}
.service .service__images {
  height: 100%;
  width: 985px;
  position: absolute;
  right: 0;
  top: 0;
}
.service .service__images .service__image {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
  border-radius: 4px;
  overflow: hidden;
}
.service .service__images .service__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.service .service__images .service__image.active {
  opacity: 1;
  z-index: 1;
}

.partners .partners__swiper {
  overflow: visible;
}
.partners .swiper-wrapper {
  -webkit-transition: all 3.5s linear;
  transition: all 3.5s linear;
  padding-bottom: 20px;
}
.partners .swiper-wrapper .swiper-slide {
  width: 200px;
  height: 116px;
  padding: 24px 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;
  border-radius: 10px;
  -webkit-box-shadow: var(--shadow);
          box-shadow: var(--shadow);
}
.partners .swiper-wrapper .swiper-slide img {
  max-width: 100%;
  max-height: 100%;
}

@media screen and (max-width: 1439px) {
  .service .service__images {
    width: 840px;
  }
}
@media screen and (max-width: 1199px) {
  .service .service__images {
    width: 680px;
    height: 70%;
    top: 15%;
  }
}
@media screen and (max-width: 991px) {
  .service .service__thumb .service__item {
    min-height: 184px;
    height: auto;
    position: relative;
    padding: 0 24px;
    z-index: 2;
  }
  .service .service__wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding: 0;
    z-index: 5;
  }
  .service .service__wrap .btn {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
  .service .service__thumb {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
    max-width: 100%;
    margin: -35px auto 0;
  }
  .service .service__images {
    width: 680px;
    margin: 0 auto;
    height: 456px;
    position: relative;
    top: auto;
    right: auto;
    left: auto;
  }
  .service .service__thumb .service__number {
    position: absolute;
    right: 16px;
    font-size: 60px;
    top: 0;
    margin-right: 0;
    line-height: 1em;
  }
  .service .service__thumb .service__item .service__content h3 {
    padding-right: 74px;
  }
}
@media screen and (max-width: 767px) {
  .service .service__images {
    width: 516px;
    height: 346px;
  }
}
@media screen and (max-width: 576px) {
  .service {
    overflow: hidden;
  }
  .service .service__images {
    height: 214px;
    width: calc(100% + 24px);
    left: 50%;
    -webkit-transform: translate(-50%);
            transform: translate(-50%);
  }
}
.swiper__arrows {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  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: 40px;
  height: 40px;
  background-color: var(--white);
  border-radius: 10px;
  border: 1px solid var(--dark);
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
.swiper__arrows .swiper__arrow:hover {
  background-color: var(--dark);
}
.swiper__arrows .swiper__arrow:hover path {
  fill: var(--green);
}
.swiper__arrows .swiper__arrow.swiper__arrow_left {
  margin-right: 24px;
}

.reviews .reviews__swiper {
  padding: 44px 0 26px;
}
.reviews .reviews__swiper .swiper-slide {
  border-radius: 20px;
  border: 1px solid var(--line_grey);
  padding: 52px 32px 40px;
  background-color: var(--white);
  position: relative;
}
.reviews .reviews__swiper .swiper-slide::after {
  content: "";
  display: block;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  position: absolute;
  left: 88px;
  top: -27px;
  border: 3px solid var(--white);
  background: var(--dark) url(../img/revew_icon.svg) no-repeat center;
}
.reviews .reviews__swiper .swiper-slide .reviews__img {
  width: 80px;
  height: 80px;
  position: absolute;
  top: -44px;
  left: 32px;
  border-radius: 50%;
}
.reviews .reviews__swiper .swiper-slide .reviews__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}

.faq__form {
  -webkit-box-shadow: var(--shadow);
          box-shadow: var(--shadow);
  border-radius: 20px;
  background-color: var(--white);
  padding: 40px;
  width: 45%;
}
.faq__form .form__wrap .btn {
  width: 100%;
}

@media screen and (max-width: 991px) {
  .faq .faq__list {
    width: 100%;
  }
  .faq__form {
    width: 100%;
  }
}
.footer {
  z-index: 2;
  position: relative;
}
.footer .footer__top {
  padding: 40px 0;
}
.footer .custom-logo-link {
  width: 250px;
  max-width: 100%;
  display: block;
  margin-bottom: 16px;
}
.footer .custom-logo-link img {
  width: 100%;
  height: auto;
}
.footer .footer__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;
}
.footer .footer__menu li {
  margin-right: 32px;
}
.footer .footer__menu li:last-child {
  margin-right: 0;
}
.footer .footer__menu li a {
  color: var(--white);
  font-size: 14px;
  letter-spacing: 0.02em;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.footer .footer__menu li a img {
  margin-right: 12px;
}
.footer .footer__menu li a:hover {
  color: var(--green);
}
.footer .footer__menu li.scroll_wrap > a {
  position: relative;
  padding-left: 32px;
}
.footer .footer__menu li.scroll_wrap > a::before {
  content: "";
  display: block;
  width: 24px;
  height: 24px;
  position: absolute;
  left: 0;
  top: calc(50% - 12px);
  background: url(../img/icon_catalog.svg) no-repeat center;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
.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;
}
.footer .footer__social a:hover path {
  fill: var(--green);
}
.footer .footer_line {
  height: 1px;
  background-color: var(--white);
  margin: 16px 0;
}
.footer .footer__contact a {
  margin-right: 24px;
}
.footer .footer__contact a:hover {
  color: var(--green);
}
.footer .footer__contact a:hover path {
  stroke: var(--green);
}
.footer .footer__contact svg {
  width: 24px;
  height: 24px;
  margin-right: 8px;
}
.footer .footer__bottom {
  padding: 12px 0;
}
.footer .footer__bottom a:hover {
  color: var(--green);
}

@media screen and (max-width: 1439px) {
  .footer .footer__contact a {
    width: 50%;
    margin: 5px 0;
    margin-right: 0;
  }
}
@media screen and (max-width: 991px) {
  .footer .footer__menu {
    display: block;
  }
  .footer .footer__menu li {
    margin-bottom: 15px;
  }
  .footer__bottom p {
    margin-bottom: 10px;
    width: 50%;
  }
}
@media screen and (max-width: 576px) {
  .footer .footer__contact a {
    width: 100%;
  }
  .footer__bottom p {
    width: 100%;
  }
}
.contact {
  position: relative;
  background-color: var(--white);
  z-index: 2;
}
.contact .contact__wrap {
  position: relative;
}
.contact .contact__wrap::after {
  content: "";
  display: block;
  width: 1px;
  height: 100%;
  background-color: #c0c0c0;
  position: absolute;
  left: 50%;
  top: 0;
}
.contact .contact__block {
  width: 586px;
}
.contact .contact__list {
  padding: 32px;
  border-radius: 4px;
  margin-bottom: 24px;
  width: 100%;
  -webkit-box-shadow: var(--shadow);
          box-shadow: var(--shadow);
  background-color: var(--light_grey);
}
.contact .contact__list .contact__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 16px;
}
.contact .contact__list .contact__item:last-child {
  margin-bottom: 0;
}
.contact .contact__list .contact__item p {
  margin-bottom: 4px;
}
.contact .contact__list .contact__item a {
  font-size: 16px;
  font-weight: 400;
  color: var(--dark);
}
.contact .contact__list .contact__item a:hover {
  color: var(--green);
}
.contact .contact__list .contact__icon {
  width: 24px;
  height: 24px;
  margin-right: 8px;
}
.contact .contact__list .contact__icon path {
  stroke: var(--dark);
}
.contact .faq__form {
  width: 586px;
}
.contact .contact__map {
  height: 439px;
  border-radius: 4px;
  overflow: hidden;
}
.contact .contact__map iframe {
  width: 100%;
  height: 100%;
}

@media screen and (max-width: 1439px) {
  .contact .faq__form,
  .contact .contact__block {
    width: 47%;
  }
}
@media screen and (max-width: 991px) {
  .contact {
    padding-top: 60px;
  }
  .contact .faq__form,
  .contact .contact__block {
    width: 100%;
  }
  .contact .contact__block {
    margin-bottom: 24px;
  }
  .contact .contact__wrap::after {
    display: none;
  }
}
@media screen and (max-width: 767px) {
  .faq__form {
    padding: 40px 12px;
  }
  .contact .contact__list {
    padding: 24px 15px;
  }
}
.about {
  padding-top: 70px;
  padding-bottom: 60px;
  min-height: 588px;
  z-index: 2;
}
.about .about__content {
  padding: 32px 50px 32px 0;
  position: relative;
}
.about .about__content .section__title {
  color: var(--white);
}
.about .about__content::before {
  content: "";
  display: block;
  width: 720px;
  height: 100%;
  position: absolute;
  right: 0;
  bottom: 0;
  -webkit-box-shadow: inset 0 0px 70px rgba(8, 66, 120, 0.5), inset 0 0px 80px rgba(112, 225, 242, 0.25), inset 0 3px 18px rgba(112, 225, 242, 0.3);
  box-shadow: inset 0 0px 80px rgba(112, 225, 242, 0.25), inset 0 0px 70px rgba(8, 66, 120, 0.5);
  -webkit-backdrop-filter: blur(4px);
  backdrop-filter: blur(4px);
  background-color: rgba(13, 41, 80, 0.058);
  border-radius: 20px;
}
.about .about__content .section__title {
  position: relative;
}
.about .about__content .text__content {
  position: relative;
}
.about .about__content .text__content p,
.about .about__content .text__content li {
  color: var(--white);
}
.about .about__content .text__content p b,
.about .about__content .text__content p strong,
.about .about__content .text__content li b,
.about .about__content .text__content li strong {
  font-size: 18px;
  color: var(--green);
}
.about .faq__form {
  position: absolute;
  right: 12px;
  top: 0;
  width: 586px;
  max-width: 90%;
}
.about + .advant {
  padding-top: 200px;
}

@media screen and (max-width: 991px) {
  .about .about__content {
    padding: 25px 20px;
    margin-bottom: 30px;
  }
  .about .about__content:before {
    width: 100%;
  }
  .about .faq__form {
    position: relative;
    right: auto;
    top: auto;
    margin: 0 auto;
    max-width: 100%;
  }
  .about + .advant {
    padding-top: 80px;
  }
}
.instagram__wrap .swiper-container {
  position: relative;
}
.instagram__wrap .swiper-button-prev,
.instagram__wrap .swiper-button-next {
  position: absolute;
  z-index: 2;
  top: calc(50% - 32px);
  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: 35px;
  height: 64px;
  background-color: rgba(37, 41, 49, 0.9);
  margin: 0;
}
.instagram__wrap .swiper-button-prev {
  border-radius: 0 35px 35px 0;
  padding-right: 8px;
  left: 0;
}
.instagram__wrap .swiper-button-next {
  border-radius: 35px 0 0 35px;
  padding-left: 8px;
  right: 0;
}
.instagram__wrap .swiper-button-prev:after,
.instagram__wrap .swiper-rtl .swiper-button-next:after,
.instagram__wrap .swiper-button-next:after,
.instagram__wrap .swiper-rtl .swiper-button-prev:after {
  font-size: 22px;
  color: var(--white);
}
.instagram__wrap .instagram-gallery__actions {
  display: block;
}
.instagram__wrap #instagram-gallery-feed-0 .instagram-gallery__actions .instagram-gallery__button--follow {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-family: "SF Pro Text", 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: 14px;
  font-weight: 400;
  line-height: 1.2em;
  letter-spacing: 0.02em;
  cursor: pointer;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  max-width: 100%;
  height: 44px;
  padding: 0 16px;
  background-color: var(--dark);
  color: var(--grey1);
  border-radius: 4px;
}

.title_label {
  position: absolute;
  top: -25px;
  width: 285px;
  left: 0;
}
.title_label p {
  color: var(--white);
  font-size: 16px;
  font-weight: 500;
  padding: 2px 40px 2px 15px;
  border-radius: 20px 20px 0 0;
  -webkit-clip-path: polygon(0 0, 100% 0, calc(100% - 60px) 100%, 0% 100%);
          clip-path: polygon(0 0, 100% 0, calc(100% - 60px) 100%, 0% 100%);
  background-color: var(--dark);
  min-height: 49px;
  z-index: 2;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.title_label.title_label_rotate {
  top: auto;
  bottom: -25px;
}
.title_label.title_label_rotate p {
  border-radius: 0 0 20px 20px;
  -webkit-clip-path: polygon(0 0, calc(100% - 60px) 0, 100% 100%, 0% 100%);
          clip-path: polygon(0 0, calc(100% - 60px) 0, 100% 100%, 0% 100%);
}
.title_label.title_label_rotate::after {
  border-radius: 0 0 20px 0;
  top: auto;
  bottom: 0;
}
.title_label::after {
  content: "";
  display: block;
  width: 45px;
  height: 24px;
  border-radius: 0 20px 0 0;
  background-color: #071123;
  position: absolute;
  right: 0;
  top: 0;
}

.product .product__titles {
  padding: 32px;
  border-radius: 4px;
  background: var(--dark) url(../img/product_titles_bg.png) no-repeat 100% top;
  border-radius: 20px;
  padding: 32px 24px 24px;
  width: 464px;
}
.product .swipers {
  width: calc(100% - 490px);
  padding: 0 56px;
}
.product .product__price p {
  font-size: 24px;
  font-weight: 700;
  color: var(--green);
}
.product .product__thums {
  width: 139px;
  height: 318px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.product .product__thums .swiper-slide {
  height: 98px;
  padding: 6px 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;
  background-color: var(--white);
  border: 1px solid var(--line_grey);
  border-radius: 20px;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
  cursor: pointer;
}
.product .product__thums .swiper-slide.swiper-slide-thumb-active {
  border-color: var(--green);
}
.product .product__thums .swiper-slide img {
  max-width: 100%;
  max-height: 100%;
  position: relative;
  z-index: 25;
}
.product .product__swiper .swiper-slide {
  height: 318px;
  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;
}
.product .product__swiper .swiper-slide img {
  max-width: 100%;
  max-height: 100%;
  position: relative;
  z-index: 25;
}
.product .product__info {
  width: calc(100% - 490px);
}
.product .contact {
  width: 490px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.product .contact .contact__alert {
  border-radius: 4px;
  padding: 32px 24px;
}
.product .contact .contact__alert img {
  display: block;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  margin-right: 12px;
}
.product .contact .contact__alert p {
  margin-bottom: 12px;
  font-weight: 500;
}
.product .contact .contact__alert p:last-child {
  margin-bottom: 0;
}
.product .contact .faq__form {
  width: 100%;
  max-width: 585px;
  padding: 32px;
  margin-bottom: 60px;
}
.product .info__block {
  margin-bottom: 50px;
  position: relative;
}
.product .info__block .info__wrap {
  padding: 40px 24px 24px;
  -webkit-box-shadow: var(--shadow);
          box-shadow: var(--shadow);
  border-radius: 0 20px 20px 20px;
}
.product .info__block .info__wrap .info__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding-bottom: 8px;
  border-bottom: 1px dashed var(--line_grey);
}
.product .info__block .info__wrap .info__item span:last-child {
  text-align: right;
}
.product .info__block .info__wrap .info__item:last-child {
  margin-bottom: 0;
}
.product .info__block .info__wrap.info__wrap_describe .text__content_main {
  position: relative;
  max-height: 250px;
  overflow: hidden;
}
.product .info__block .info__wrap.info__wrap_describe .text__content_main.text__content_main_overlay::after {
  content: "";
  display: block;
  width: 100%;
  height: 77px;
  position: absolute;
  left: 0;
  bottom: 0;
  background: -webkit-gradient(linear, left bottom, left top, from(#fff), to(rgba(255, 255, 255, 0.53)));
  background: linear-gradient(0deg, #fff, rgba(255, 255, 255, 0.53));
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
  pointer-events: none;
}
.product .info__block .info__wrap.info__wrap_describe .text__content_main.active::after {
  opacity: 0;
}
.product .info__block .info__wrap.info__wrap_describe .text__content_more {
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
  display: none;
}
.product .info__block .info__wrap.info__wrap_describe .more__text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  cursor: pointer;
}
.product .info__block .info__wrap.info__wrap_describe .more__text img {
  margin-left: 24px;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
.product .info__block .info__wrap.info__wrap_describe .more__text.active img {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}
.product .info__block .info__wrap.info__wrap_describe ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.product .info__block .info__wrap.info__wrap_describe ul li {
  width: 30%;
  margin-bottom: 12px;
}
.product .info__block .info__wrap.info__wrap_describe ul li:nth-child(even) {
  width: 60%;
}

@media screen and (max-width: 1439px) {
  .product .container {
    padding-top: 30px;
  }
  .product .swipers {
    padding: 0 15px;
  }
}
@media screen and (max-width: 1199px) {
  .product .product__thums {
    height: 100px;
    width: 100%;
  }
}
@media screen and (max-width: 991px) {
  .product .product__short {
    margin-bottom: 12px;
  }
  .product .product__titles {
    margin-bottom: 24px;
  }
  .product .product__titles {
    margin: 0 auto 24px;
    max-width: 100%;
  }
  .product .swipers {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
    width: 100%;
  }
  .product .product__thums .swiper-slide img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .product .product__swiper {
    height: 300px;
  }
  .product .product__swiper .swiper-slide {
    height: auto;
  }
  .swipers,
  .product .product__info {
    width: 100%;
  }
  .product .contact {
    width: 100%;
  }
  .product .contact .faq__form {
    margin: 0 auto 24px;
  }
  .product .product__price p .title_1 {
    font-size: 36px;
  }
}
@media screen and (max-width: 767px) {
  .product .info__block .info__wrap {
    padding: 40px 16px 24px;
  }
  .product .info__block .info__wrap .info__item {
    font-size: 14px;
  }
  .product .info__block .info__wrap .info__item span:first-child {
    width: 30%;
    -ms-flex-negative: 0;
        flex-shrink: 0;
  }
  .product .info__block .info__wrap .info__item span:last-child {
    padding-left: 5px;
    text-align: right;
  }
}
@media screen and (max-width: 576px) {
  product {
    padding-top: 80px;
  }
  .product .contact .faq__form {
    padding: 40px 12px;
  }
  .product .product__titles {
    padding: 24px 15px;
  }
  .product .product__titles .product__alert {
    font-size: 14px;
  }
}
.pagination {
  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;
}
.pagination .page-numbers {
  font-size: 16px;
  font-weight: 400;
  color: var(--grey3);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 32px;
  height: 32px;
  align-items: center;
  margin: 0 0px;
  position: relative;
  border-radius: 50%;
  background-color: transparent;
}
.pagination .page-numbers svg {
  width: 24px;
  height: 24px;
}
.pagination .page-numbers.current {
  color: var(--white);
  background-color: var(--green);
}
.pagination .page-numbers.prev {
  margin-right: 16px;
  padding-right: 3px;
}
.pagination .page-numbers.next {
  margin-left: 16px;
  padding-left: 3px;
}
.pagination a.page-numbers:hover {
  color: var(--white);
  background-color: var(--green);
}
.pagination a.page-numbers:hover path {
  fill: var(--white);
}
.pagination span.page-numbers {
  pointer-events: none;
}

.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_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;
  }
}
.eapps-instagram-feed-title {
  display: none !important;
}

.eapps-instagram-feed-header.es-header {
  display: none;
}

.instagram .eapps-instagram-feed > a {
  display: none !important;
}/*# sourceMappingURL=main.css.map */