@font-face {
  font-family: 'Helvetica';
  font-style: normal;
  font-weight: 300;
  src: local(""), url("../fonts/HelveticaNeueCyr-Light.woff2") format("woff2"), url("../fonts/HelveticaNeueCyr-Light.woff") format("woff");
}

@font-face {
  font-family: 'Helvetica';
  font-style: normal;
  font-weight: 400;
  src: local(""), url("../fonts/HelveticaNeueCyr-Roman.woff2") format("woff2"), url("../fonts/HelveticaNeueCyr-Roman.woff") format("woff");
}

@font-face {
  font-family: 'Helvetica';
  font-style: normal;
  font-weight: 500;
  src: local(""), url("../fonts/HelveticaNeueCyr-Medium.woff2") format("woff2"), url("../fonts/HelveticaNeueCyr-Medium.woff") format("woff");
}

@font-face {
  font-family: 'Helvetica';
  font-style: normal;
  font-weight: 700;
  src: local(""), url("../fonts/HelveticaNeueCyr-Bold.woff2") format("woff2"), url("../fonts/HelveticaNeueCyr-Bold.woff") format("woff");
}

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

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

*:focus,
*:active {
  outline: none;
}

a:focus,
a:active {
  outline: none;
}

aside,
nav,
footer,
header,
section {
  display: block;
}

input::-ms-clear {
  display: none;
}

button {
  cursor: pointer;
}

button::-moz-focus-inner {
  padding: 0;
  border: 0;
}

a,
a:visited {
  text-decoration: none;
}

a:hover {
  text-decoration: none;
}

ul li {
  list-style: none;
}

img {
  vertical-align: top;
}

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

body {
  position: relative;
  font-family: "Helvetica", sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.4;
  color: #070707;
}

a {
  color: #070707;
}

.container {
  width: 100%;
  max-width: 1300px;
  padding: 0 35px;
  margin: 0 auto;
}

@media (max-width: 767px) {
  .container {
    padding: 0 25px;
  }
}

.section-wrapper {
  padding: 80px 0;
}

@media (max-width: 767px) {
  .section-wrapper {
    padding: 50px 0;
  }
}

@keyframes hoverFlare {
  0% {
    left: -90px;
  }
  100% {
    left: 150%;
  }
}

.btn {
  position: relative;
  cursor: pointer;
  display: inline-block;
  text-align: center;
  border-radius: 3px;
  font-size: 14px;
  line-height: 55px;
  font-weight: 500;
  padding: 0px 20px;
  transition: all 0.3s ease;
  background: transparent;
  outline: none;
}

.btn:hover {
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn:focus {
  outline: none;
}

.btn_hover {
  position: relative;
  overflow: hidden;
  vertical-align: top;
  z-index: 2;
}

.btn_hover:before {
  content: '';
  transition: 3s ease-in-out;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.5));
  height: 100%;
  width: 20%;
  position: absolute;
  top: 0;
  transform: skewX(-45deg);
  left: -900px;
}

.btn_hover:hover:before {
  animation: hoverFlare 1.5s infinite;
}

.gold-btn {
  background: #e5c584;
  color: #121212;
}

.gray-btn {
  background-color: #202020;
  color: #ffffff;
}

.dark-btn {
  border: 1px solid #070707;
  background-color: #070707;
  color: #ffffff;
}

.dark-btn.btn-icon {
  fill: #fff;
}

.btn-dark-border {
  color: #262626;
  background: transparent;
  border: 1px solid #797979;
}

.btn-dark-border:hover {
  border: 1px solid #000;
}

.btn-light-border {
  color: #fff;
  background: transparent;
  border: 1px solid #fff;
}

.btn-light-border:hover {
  color: #eeeeee;
  border: 1px solid #eeeeee;
}

.big-title {
  font-weight: 700;
  font-size: 56px;
  line-height: 60px;
}

.big-title-light {
  color: #ffffff;
}

.primary-title {
  font-weight: bold;
  font-size: 60px;
  line-height: 70px;
  margin-bottom: 80px;
}

.primary-title-light {
  font-weight: 700;
  font-size: 38px;
  line-height: 40px;
  color: #ffffff;
}

@media (max-width: 767px) {
  .primary-title {
    margin-bottom: 35px;
    font-size: 28px;
    line-height: 32px;
  }
}

.primary-sub__title {
  font-size: 16px;
  line-height: 22px;
  color: #797979;
  margin-top: 25px;
  margin-bottom: 50px;
}

.slider-btn {
  position: absolute;
  top: 50%;
  width: 42px;
  height: 42px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  padding: 0 0 3px 3px;
  cursor: pointer;
  z-index: 10;
  transition: all 0.3s ease;
  outline: none;
  background: transparent;
}

.slider-btn span {
  width: 15px;
  height: 15px;
  border-bottom: 2px solid #000;
  border-left: 2px solid #000;
}

.slider-btn:hover {
  transition: all 0.3s ease;
  outline: none;
}

.slider-btn.slick-disabled {
  cursor: default;
  opacity: 0.5;
  pointer-events: none;
}

.slider-btn.slick-disabled:hover {
  opacity: 0.5;
  background: none;
}

.slider-btn__prev {
  transform: translateY(-50%) rotate(45deg);
  left: -50px;
  z-index: 10;
}

.slider-btn__next {
  transform: translateY(-50%) rotate(225deg);
  right: -50px;
}

.slick-dots {
  display: flex;
  align-items: center;
  padding-top: 40px;
}

.slick-dots li button {
  font-size: 0;
  width: 6px;
  height: 6px;
  background: #d4d4d4;
  border-radius: 50%;
  margin-right: 8px;
  cursor: pointer;
  outline: none;
}

.slick-dots li.slick-active button {
  background: #000;
}

.levitation {
  animation: float 6s ease-in-out infinite;
}

.levitation-fast {
  animation: float 3s ease-in-out infinite;
}

@keyframes float {
  0% {
    transform: translatey(0px);
  }
  50% {
    transform: translatey(-15px);
  }
  to {
    transform: translatey(0px);
  }
}

.overflow-h {
  touch-action: none;
  overflow: hidden !important;
  position: relative;
}

.mw-1400 {
  max-width: 1400px;
  margin: 0 auto;
}

.hidden {
  display: none;
}

.text-center {
  text-align: center;
}

.text-left {
  text-align: left;
}

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

.d-flex {
  display: flex;
}

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

.align-items-center {
  align-items: center;
}

.justify-content-center {
  justify-content: center;
}

.justify-content-sb {
  justify-content: space-between;
}

.flex-direction-column {
  flex-direction: column;
}

.no-padding {
  padding: 0 !important;
}

.normal-padding {
  padding-top: 80px !important;
  padding-bottom: 80px !important;
}

@media (max-width: 767px) {
  .normal-padding {
    padding-top: 50px !important;
    padding-bottom: 50px !important;
  }
}

.only-top-padding {
  padding: 80px 0 0 0 !important;
}

@media (max-width: 767px) {
  .only-top-padding {
    padding: 50px 0 0 0 !important;
  }
}

.only-bottom-padding {
  padding-bottom: 0 0 80px 0 !important;
}

@media (max-width: 767px) {
  .only-bottom-padding {
    padding-bottom: 0 0 50px 0 !important;
  }
}

.p-0 {
  padding: 0;
}

.py-0 {
  padding-top: 0;
  padding-bottom: 0;
}

.py-50 {
  padding-top: 50px;
  padding-bottom: 50px;
}

.pb-0 {
  padding-bottom: 0;
}

.pt-0 {
  padding-top: 0;
}

.pr-0 {
  padding-right: 0;
}

.pl-0 {
  padding-left: 0;
}

.p-10 {
  padding: 10px;
}

.pb-10 {
  padding-bottom: 10px;
}

.pt-10 {
  padding-top: 10px;
}

.pr-10 {
  padding-right: 10px;
}

.pl-10 {
  padding-left: 10px;
}

.p-20 {
  padding: 20px;
}

.pb-20 {
  padding-bottom: 20px;
}

.pt-20 {
  padding-top: 20px;
}

.pr-20 {
  padding-right: 20px;
}

.pl-20 {
  padding-left: 20px;
}

.p-30 {
  padding: 30px;
}

.pb-30 {
  padding-bottom: 30px;
}

.pt-30 {
  padding-top: 30px;
}

.pr-30 {
  padding-right: 30px;
}

.pl-30 {
  padding-left: 30px;
}

.p-50 {
  padding: 50px;
}

.pb-50 {
  padding-bottom: 50px;
}

.pt-50 {
  padding-top: 50px;
}

.pr-50 {
  padding-right: 50px;
}

.pl-50 {
  padding-left: 50px;
}

.ml-5 {
  margin-left: 5px;
}

.m-0 {
  margin: 0px;
}

.mb-0 {
  margin-bottom: 0px;
}

.mt-0 {
  margin-top: 0px;
}

.mr-0 {
  margin-right: 0px;
}

.ml-0 {
  margin-left: 0px;
}

.m-10 {
  margin: 10px;
}

.mb-10 {
  margin-bottom: 10px;
}

.mt-10 {
  margin-top: 10px;
}

.mr-10 {
  margin-right: 10px;
}

.ml-10 {
  margin-left: 10px;
}

.m-20 {
  margin: 20px;
}

.mb-20 {
  margin-bottom: 20px;
}

.mt-20 {
  margin-top: 20px;
}

.mr-20 {
  margin-right: 20px;
}

.ml-20 {
  margin-left: 20px;
}

.m-30 {
  margin: 30px;
}

.mb-30 {
  margin-bottom: 30px;
}

.mt-30 {
  margin-top: 30px;
}

.mr-30 {
  margin-right: 30px;
}

.ml-30 {
  margin-left: 30px;
}

.m-40 {
  margin: 40px;
}

.mb-40 {
  margin-bottom: 40px;
}

.mt-40 {
  margin-top: 40px;
}

.mr-40 {
  margin-right: 40px;
}

.ml-40 {
  margin-left: 40px;
}

.m-50 {
  margin: 50px;
}

.mb-50 {
  margin-bottom: 50px;
}

.mt-50 {
  margin-top: 50px;
}

.mr-50 {
  margin-right: 50px;
}

.ml-50 {
  margin-left: 50px;
}

.form-input__loader {
  position: absolute;
  right: -3px;
  bottom: 5px;
  transform: translateX(100%);
  opacity: 0;
}

.form-input__loader.active {
  opacity: 1;
}

.form-group {
  position: relative;
}

.form-group__two-item .form-input__wrapp:first-child {
  margin-right: 14px;
}

.form-input__label {
  display: block;
  font-weight: 500;
  font-size: 14px;
  line-height: 18px;
  margin-bottom: 20px;
}

.form-input__wrapp {
  position: relative;
  transition: all 0.3s ease;
  margin-bottom: 20px;
}

.form-input__wrapp.--error .form-input__line {
  transition: all 0.3s ease;
  width: 100%;
  background: #f29a17;
}

.form-input__wrapp.--error .form-input__error {
  transform: translateY(100%);
  opacity: 1;
  transition: all 0.3s ease;
}

.form-input__wrapp.--error .form-input:focus {
  transition: all 0.3s ease;
}

.form-input__wrapp.--error .form-input:focus + .form-input__line {
  width: 100%;
  background: #f29a17;
  transition: all 0.6s ease;
}

.form-input__wrapp.--short .form-input__line {
  transition: all 0.3s ease;
  width: 100%;
  background: #f29a17;
}

.form-input__wrapp.--short .form-input__short {
  transform: translateY(100%);
  opacity: 1;
  transition: all 0.3s ease;
}

.form-input__wrapp.--short .form-input:focus {
  transition: all 0.3s ease;
}

.form-input__wrapp.--short .form-input:focus + .form-input__line {
  width: 100%;
  background: #f29a17;
  transition: all 0.6s ease;
}

.form-input__wrapp.--done .form-input__line {
  transition: all 0.3s ease;
  width: 100%;
  background: #19d166;
}

.form-input__wrapp.--done .form-input__done {
  transform: translateY(100%);
  opacity: 1;
  transition: all 0.3s ease;
}

.form-input__wrapp.--done .form-input:focus {
  transition: all 0.3s ease;
}

.form-input__wrapp.--done .form-input:focus + .form-input__line {
  width: 100%;
  background: #19d166;
  transition: all 0.6s ease;
}

.form-input__error, .form-input__short {
  position: absolute;
  bottom: 0px;
  left: 0;
  margin-top: 10px;
  transform: translateY(0%);
  color: #f29a17;
  transition: all 0.3s ease;
  font-size: 14px;
  line-height: 18px;
  white-space: nowrap;
  opacity: 0;
}

.form-input__error._check::before, .form-input__short._check::before {
  content: '';
  display: inline-block;
  margin-right: 7px;
  width: 12px;
  height: 10px;
  background: url(../img/icons/check-icon.svg) center center no-repeat;
  background-size: contain;
}

.form-input__done {
  position: absolute;
  bottom: -5px;
  left: 0;
  margin-top: 10px;
  transform: translateY(0%);
  color: #19d166;
  transition: all 0.3s ease;
  font-size: 14px;
  line-height: 18px;
  opacity: 0;
}

.form-input__done._check::before {
  content: '';
  display: inline-block;
  margin-right: 7px;
  width: 12px;
  height: 10px;
  background: url(../img/icons/check-icon.svg) center center no-repeat;
  background-size: contain;
}

.form-input {
  font-family: "Helvetica", sans-serif;
  display: block;
  width: 100%;
  font-weight: 700;
  font-size: 28px;
  line-height: 30px;
  color: #121212;
  background: transparent;
  padding: 28px 0px 10px 50px;
  outline: none;
  border: none;
  border-bottom: 2px solid #e7e7e7;
  cursor: pointer;
  transition: all 0.3s ease;
}

.form-input::placeholder {
  font-weight: 700;
  font-size: 28px;
  line-height: 30px;
  color: #d4d4d4;
  opacity: 1;
  background: transparent;
  font-family: "Helvetica", sans-serif;
}

.form-input::-moz-placeholder, .form-input::-webkit-input-placeholder {
  font-weight: 700;
  font-size: 28px;
  line-height: 30px;
  color: #d4d4d4;
  opacity: 1;
  background: transparent;
  font-family: "Helvetica", sans-serif;
}

.form-input:focus {
  color: #121212;
  background: transparent;
  transition: all 0.6s ease;
}

.form-input:focus + .form-input__line {
  width: 100%;
  background: #e5c584;
  transition: all 0.6s ease;
}

.form-input:hover {
  color: #121212;
  transition: all 0.6s ease;
  border-bottom: 2px solid #e5c584;
}

.form-input__textarea {
  font-weight: 400;
  font-size: 16px;
  line-height: 22px;
  resize: inherit;
  min-height: 65px;
  height: auto;
  overflow: hidden;
}

.form-input__textarea::placeholder {
  font-weight: 400;
  font-size: 16px;
  line-height: 22px;
}

.form-input__textarea::-moz-placeholder, .form-input__textarea::-webkit-input-placeholder {
  font-weight: 400;
  font-size: 16px;
  line-height: 22px;
}

.form-input__line {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0%;
  height: 2px;
  background: transparent;
  transition: all 0.6s ease;
}

.form-input__icon {
  position: absolute;
  left: 0;
  top: 60%;
  transform: translateY(-50%);
  width: 30px;
  height: 30px;
  background: url(../img/icons/tell.svg) center center no-repeat;
  background-size: contain;
}

.form-button {
  display: block;
  width: 100%;
  margin-bottom: 20px;
}

.form__policy {
  display: block;
}

.form__policy a {
  white-space: nowrap;
  color: #797979;
}

.form__policy a:hover {
  text-decoration: underline;
}

.form-thank {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  min-height: 233px;
}

.form-thank img {
  display: block;
  margin-bottom: 45px;
}

.form-thank__text {
  font-weight: bold;
  font-size: 28px;
  line-height: 32px;
  text-align: center;
  display: block;
}

.form-thank__text span {
  font-size: 16px;
  line-height: 22px;
  margin-top: 15px;
  display: block;
  text-align: center;
}

.form-working-hours .form-input__label {
  font-weight: 400 !important;
  position: relative !important;
  margin-bottom: 5px !important;
  top: 0 !important;
  padding-left: 0 !important;
}

.form-working-hours .form-input {
  padding-top: 15px !important;
  padding-left: 100px !important;
}

.form-working-hours .form-input__wrapp:first-child {
  margin-right: 14px;
}

.form-working-hours .form-input__label-text {
  position: absolute;
  left: 15px;
  bottom: 10px;
  color: #797979;
}

.h-fixed {
  position: fixed !important;
  z-index: 1000;
  left: 0;
  top: 0;
  right: 0;
  transition: all 0.5s ease;
  opacity: 1;
  background: #070707;
  box-shadow: 0 0px 8px rgba(0, 0, 0, 0.15);
}

.header {
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  z-index: 999;
  width: 100%;
  transition: all 0.5s ease;
  background: #fff;
}

.header.active {
  z-index: 15;
  top: -100%;
  transition: all 0.3s;
}

.header-container {
  position: relative;
  width: 100%;
  max-width: 2440px;
  padding: 15px 35px;
  margin: 0 auto;
}

.header-body {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header-logo {
  display: flex;
  align-items: center;
  margin-right: 160px;
}

.header-logo svg {
  height: 17px;
  width: 125px;
  transition: all 0.3s ease;
  fill: black;
}

.header-logo:hover svg {
  fill: rgba(0, 0, 0, 0.7);
  transition: all 0.3s ease;
}

.header-menu {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header-menu__wrapp {
  padding: 0 20px;
}

.header-menu li a {
  text-align: center;
  display: block;
  color: #121212;
  padding: 0 25px;
  font-size: 14px;
  line-height: 18px;
  transition: all 0.3s ease;
}

.header-menu li a:hover {
  color: rgba(0, 0, 0, 0.7);
  transition: all 0.3s ease;
}

.header-menu__head {
  display: none;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 50px;
}

.header-menu__title {
  font-weight: bold;
  font-size: 38px;
  line-height: 40px;
  color: #ffffff;
}

.header-menu__close {
  width: 18px;
  height: 18px;
  position: relative;
  transform: rotate(0deg);
  transition: 0.5s ease-in-out;
  cursor: pointer;
  z-index: 1000;
}

.header-menu__close span {
  display: block;
  position: absolute;
  height: 2px;
  width: 100%;
  background: #ffffff;
  opacity: 1;
  left: 0;
  transition: 0.25s ease-in-out;
}

.header-menu__close span:nth-child(1) {
  top: 0;
  transform: translateY(8px) rotate(135deg);
}

.header-menu__close span:nth-child(2) {
  bottom: 0;
  transform: translateY(-8px) rotate(-135deg);
}

.header-options {
  display: flex;
  align-items: center;
}

.header-btn {
  border: 1px solid #d4d4d4;
  margin-left: 30px;
  line-height: 40px;
  color: #121212;
}

.header-btn:hover {
  border: 1px solid #121212;
  transition: all 0.3s ease;
}

.header-btn:active {
  border: 1px solid #121212;
}

.header__mob-conten {
  display: none;
}

.contact-tell {
  white-space: nowrap;
  font-weight: 700;
  font-size: 18px;
  line-height: 22px;
  color: #262626;
  display: flex;
  align-items: center;
  transition: all 0.3s ease;
}

.contact-tell img {
  display: none;
  height: 25px;
  margin-right: 10px;
}

.contact-tell:hover {
  color: rgba(38, 38, 38, 0.7);
  transition: all 0.3s ease;
}

.header-burger {
  width: 18px;
  height: 9px;
  position: relative;
  transform: rotate(0deg);
  transition: 0.5s ease-in-out;
  cursor: pointer;
  z-index: 1000;
}

.header-burger span {
  display: block;
  position: absolute;
  height: 2px;
  width: 100%;
  background-color: #121212;
  opacity: 1;
  left: 0;
  transition: 0.25s ease-in-out;
}

.header-burger span:nth-child(1) {
  top: 0;
}

.header-burger span:nth-child(2) {
  bottom: 0;
  max-width: 50%;
}

.header-burger__wrapper {
  display: none;
  align-items: center;
}

.header-burger__wrapper.active span:nth-child(1) {
  top: 0;
  transform: translateY(3px) rotate(135deg);
}

.header-burger__wrapper.active span:nth-child(2) {
  max-width: 100%;
  bottom: 0;
  transform: translateY(-4px) rotate(-135deg);
}

.select-lang {
  position: relative;
  margin-right: 10px;
  padding: 5px 10px 5px 0px;
  border-right: 1px solid #e5e5e5;
}

.select-lang__current {
  position: relative;
  color: #000000;
  cursor: pointer;
  display: flex;
  align-items: center;
  font-size: 14px;
  line-height: 16px;
  transition: all 0.3s ease;
}

.select-lang__current::after {
  content: '';
  margin: auto;
  margin-top: 6px;
  margin-left: 10px;
  border: solid #333;
  border-width: 0 2px 2px 0;
  display: inline-block;
  width: 8px;
  height: 8px;
  transform: translate(-50%, -50%) rotate(45deg);
}

.select-lang__body {
  position: absolute;
  left: -20px;
  display: inline-block;
  min-width: 75px;
  margin-top: 10px;
  background: #ffffff;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.05);
  border-radius: 5px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  overflow: hidden;
  z-index: -1;
}

.select-lang__body .lang-item {
  font-size: 14px;
  line-height: 16px;
  padding: 5px 20px;
  display: flex;
  align-items: center;
  text-transform: uppercase;
  color: #000000;
  cursor: pointer;
  transition: all 0.3s ease;
}

.select-lang__body .lang-item:first-child {
  padding-top: 10px;
}

.select-lang__body .lang-item:last-child {
  padding-bottom: 10px;
}

.select-lang__body .lang-item a {
  display: flex;
  align-items: center;
}

.select-lang__body .lang-item img {
  margin-bottom: 1px;
}

.select-lang.active .select-lang__current::after {
  transform: translate(-50%, -50%) rotate(-135deg);
  margin-top: 9px;
}

.select-lang.active .select-lang__body {
  top: 100%;
  left: -20px;
  opacity: 1;
  visibility: visible;
  transition: all 0.3s ease;
  z-index: 100;
}

.lang-switcher_mob {
  display: none;
}

@media (max-width: 1260px) {
  .header-logo {
    margin-right: 30px;
  }
  .contact-tell {
    font-size: 0;
  }
  .contact-tell img {
    display: block;
    margin-right: 0;
    height: 24px;
  }
}

@media (max-width: 990px) {
  .select-lang {
    display: none;
  }
  .lang-switcher_mob {
    padding-top: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .lang-switcher_mob .lang-item {
    margin: 12px;
  }
  .header-container {
    padding: 15px;
  }
  .header .contact-tell img {
    display: block;
  }
  .header-btn, .header-btn__gray {
    display: none;
    width: 100%;
    max-width: 420px;
    text-align: center;
    margin-left: 0;
    margin-bottom: 20px;
  }
  .header-btn:last-child {
    margin-bottom: 100px;
  }
  .header-burger__wrapper {
    display: block;
  }
  .header__mob-conten {
    display: block;
    background: transparent;
    border-color: #ffffff;
    border-radius: 8px;
  }
  .header-logo {
    margin-right: 0;
    z-index: 999;
  }
  .header-menu__wrapp {
    position: relative;
    position: fixed;
    background: #070707;
    left: -1000px;
    right: 0;
    top: 0px !important;
    bottom: 0;
    padding: 40px 25px 60px 25px;
    height: 100vh;
    width: 100%;
    max-width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: all 0.4s ease-in-out;
    overflow: auto;
    opacity: 0;
    visibility: hidden;
  }
  .header-menu__wrapp.active {
    transition: all 0.4s ease;
    opacity: 1;
    left: 0;
    visibility: visible;
    z-index: 1000;
  }
  .header-menu__wrapp.active .header-menu li a {
    text-align: left;
    font-size: 16px;
    line-height: 22px;
    color: #ffffff;
    padding: 10px 0;
  }
  .header-menu__wrapp.active .header-menu li a:hover {
    color: rgba(255, 255, 255, 0.5);
  }
  .header-menu__wrapp.active .header-btn {
    border: 1px solid white;
    color: #ffffff;
  }
  .header-menu__wrapp.active .header-btn:hover {
    background: rgba(255, 255, 255, 0.1);
  }
  .header-menu__wrapp.active .header-btn:active {
    background: white;
    color: #121212;
  }
  .header-menu__wrapp.active .header-burger span {
    background-color: #ffffff;
  }
  .header-menu {
    margin-bottom: auto;
    flex-direction: column;
    align-items: flex-start;
    padding-bottom: 30px;
  }
  .header-menu li {
    width: 100%;
  }
  .header-menu li:first-child a {
    padding-top: 0;
  }
  .header-menu li a {
    padding: 12px 0px;
  }
  .header-menu__head {
    align-items: flex-start;
    display: flex;
  }
  .header-btn {
    padding: 0px 30px;
    line-height: 45px;
    align-self: flex-start;
    margin-left: 0;
  }
  .contact-block__tell {
    font-size: 36px;
    line-height: 38px;
  }
  .contact-block__body {
    padding-bottom: 30px;
  }
}

.page-wrapper {
  overflow: hidden;
}

.main {
  padding: 80px 0 0 0;
}

.main-body {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.main-title {
  text-align: center;
  width: 100%;
  max-width: 810px;
  font-weight: 700;
  font-size: 74px;
  line-height: 80px;
  text-align: center;
  margin-bottom: 30px;
  margin-top: 7%;
}

.main-sub-title {
  font-size: 24px;
  line-height: 30px;
}

.main-sub-title span {
  color: #e5c584;
}

.main-form__content {
  width: 100%;
  max-width: 600px;
  margin: 50px auto 0 auto;
}

.main-form__content .form-main {
  display: flex;
}

.main-form__content .form-button {
  margin-left: 20px;
  min-width: 230px;
  border-radius: 8px;
  line-height: 70px;
  margin-bottom: 0;
}

.hero-bg {
  width: 100%;
  max-width: 1400px;
  margin: 50px auto 0 auto;
  padding: 10%;
  position: relative;
}

.hero-bg .simpleParallax {
  overflow: visible !important;
}

.hero-bg__main {
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-bg__main img {
  width: 100%;
  height: auto;
}

.hero-bg__item {
  position: absolute;
}

.hero-bg__item-1 {
  left: 30%;
  top: 0%;
}

.hero-bg__item-2 {
  top: 25%;
  right: 10%;
}

.hero-bg__item-3 {
  top: 48%;
  right: -9%;
}

.hero-bg__item-4 {
  bottom: 20%;
  right: 3%;
}

.hero-bg__item-5 {
  right: 25%;
  bottom: 8%;
}

.hero-bg__item-6 {
  bottom: 10%;
  left: 30%;
}

.hero-bg__item-7 {
  left: 10%;
  bottom: 20%;
}

.hero-bg__item-8 {
  left: 0;
  top: 50%;
}

.hero-bg__item-9 {
  left: 5%;
  top: 24%;
}

.hero-bg__item-text-3 {
  padding: 50px 0;
  font-weight: bold;
  font-size: 64px;
  line-height: 60px;
  filter: blur(5px);
}

.hero-bg__item-text-5 {
  padding: 50px 0;
  font-weight: bold;
  font-size: 38px;
  line-height: 40px;
}

.hero-bg__item-text-6 {
  padding: 50px 0;
  font-weight: bold;
  font-size: 28px;
  line-height: 32px;
  filter: blur(2px);
}

.hero-bg__item-text-8 {
  padding: 50px 0;
  font-weight: bold;
  font-size: 28px;
  line-height: 32px;
}

.hero-bg__item-text-9 {
  padding: 50px 0;
  font-weight: bold;
  font-size: 38px;
  line-height: 40px;
  filter: blur(3px);
}

.advantages-slider__wrapp {
  position: relative;
}

.advantages-slider {
  position: relative;
}

.advantages-slider__item {
  padding: 0 7px;
}

.advantages-card {
  height: 420px;
  background: #f5f5f5;
  border-radius: 20px;
  padding: 50px 50px 0 50px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
}

.advantages-card__head {
  position: relative;
  z-index: 10;
}

.advantages-card__title {
  font-weight: bold;
  font-size: 28px;
  line-height: 32px;
  margin-bottom: 25px;
}

.advantages-card__desc {
  font-size: 16px;
  line-height: 22px;
  color: #797979;
}

.advantages-card__product {
  margin-left: auto;
  margin-top: -100px;
}

.advantages-slider__label-mob {
  display: none;
  position: absolute;
  bottom: -70px;
  right: 0;
  width: 28px;
  height: 40px;
  transform: translateY(-60px);
  background: url(../img/icons/slider-heand.svg) center center no-repeat;
  background-size: contain;
}

.benefit-list {
  display: flex;
  flex-wrap: wrap;
  width: calc(100% + 20px);
  margin: 0 -10px 0px -10px;
}

.benefit-item {
  width: calc(50% - 20px);
  margin: 0 10px 80px 10px;
  display: flex;
}

.benefit-num {
  margin-right: 40px;
}

.benefit-text {
  width: 100%;
  max-width: 270px;
  font-weight: bold;
  font-size: 24px;
  line-height: 30px;
}

.electronic-menu {
  position: relative;
  z-index: 4;
  border-radius: 20px;
  margin: 0 20px;
  overflow: hidden;
}

.electronic-menu__bg {
  position: absolute;
  display: block;
  object-fit: cover;
}

.electronic-menu__body {
  position: relative;
  z-index: 5;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 100px 0;
}

.electronic-menu__content {
  display: flex;
  flex-direction: column;
  padding-right: 50px;
  width: 100%;
  max-width: 600px;
}

.electronic-menu__title {
  font-weight: bold;
  font-size: 60px;
  line-height: 70px;
  color: #fff;
  margin-bottom: 40px;
}

.electronic-menu__text {
  font-size: 24px;
  line-height: 24px;
  color: #ffffff;
  margin-bottom: 80px;
}

.electronic-menu__btn {
  max-width: 200px;
}

.electronic-menu__img img {
  width: 100%;
  height: auto;
}

.menu-work {
  padding-top: 160px;
}

.menu-work__list {
  display: flex;
  flex-wrap: wrap;
  width: calc(100% + 14);
  margin: 0 -7px 0px -7px;
}

.menu-work__item {
  width: calc(33.33% - 14px);
  margin: 0 7px 0px 7px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border: 1px solid #e7e7e7;
  border-radius: 20px;
  padding: 50px;
}

.menu-work__icon {
  margin-bottom: 70px;
}

.menu-work__text {
  font-weight: 700;
  font-size: 24px;
  line-height: 30px;
  position: relative;
  z-index: 5;
}

.menu-work__text span {
  display: block;
  margin-top: 10px;
  font-size: 16px;
  line-height: 22px;
  color: #797979;
}

.menu-work__num {
  margin-top: -100px;
  display: flex;
  justify-content: flex-end;
  opacity: 0.5;
}

.menu-work__num img {
  width: 100%;
  max-width: 215px;
  max-height: 130px;
  height: auto;
  margin-left: auto;
}

.products {
  background: #f5f5f5;
  overflow: hidden;
  border-radius: 20px;
  margin: 0 15px;
}

.products-title {
  margin-bottom: 30px;
}

.products-sub__title {
  margin-bottom: 80px;
}

.products-slider {
  margin: 0 -7px;
  position: relative;
}

.products-slider .slider-btn__next {
  right: -35px;
}

.products-slider .slider-btn__prev {
  left: -35px;
}

.products-slider__wrapp {
  position: relative;
}

.products-slider__item {
  padding: 0 7px;
  outline: none;
}

.products-slider__label-mob {
  display: none;
  position: absolute;
  bottom: -70px;
  right: 0;
  width: 28px;
  height: 40px;
  transform: translateY(-60px);
  background: url(../img/icons/slider-heand.svg) center center no-repeat;
  background-size: contain;
}

.products-card {
  height: 500px;
  background: #ffffff;
  border-radius: 10px;
  padding: 35px 40px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.products-card__head-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 15px;
}

.products-card__title {
  font-weight: bold;
  font-size: 24px;
  line-height: 24px;
}

.products-card__title._important span {
  color: #e5c584;
}

.products-card__icons {
  display: flex;
  align-items: center;
}

.products-card__icon {
  margin-right: 10px;
}

.products-card__icon:last-child {
  margin-right: 0;
}

.products-card__desc {
  font-size: 14px;
  line-height: 18px;
  color: #797979;
}

.products-card__product {
  padding: 15px 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.products-card__product img {
  width: 100%;
  max-width: 320px;
}

.products-card__price {
  font-weight: bold;
  font-size: 28px;
  line-height: 28px;
  color: #e5c584;
}

.footer-form {
  padding: 160px 0;
}

.footer-form .form-input, .footer-form .form-input::placeholder {
  font-size: 38px;
  line-height: 40px;
}

.footer-form .form-input__icon {
  top: 62%;
  width: 35px;
  height: 35px;
}

.footer-form .form-input__label {
  margin-bottom: 0;
}

.footer-form__row {
  display: flex;
  justify-content: space-between;
  width: 100%;
}

.footer-form__title {
  width: 100%;
  max-width: 600px;
  font-weight: 700;
  font-size: 60px;
  line-height: 70px;
}

.footer-form__title strong {
  font-weight: 700;
  color: #e5c584;
}

.footer-form__title span {
  font-weight: 400;
  display: block;
  margin-top: 25px;
  font-size: 24px;
  line-height: 24px;
}

.footer-form__title b {
  font-weight: 400;
  font-size: 16px;
  line-height: 22px;
  margin-top: 30px;
  display: block;
  color: #797979;
}

.footer-form__body {
  border: 1px solid #e7e7e7;
  border-radius: 20px;
  padding: 50px;
  width: 100%;
  max-width: 600px;
}

.footer-form__input-title {
  width: 100%;
  max-width: 230px;
  margin-bottom: 50px;
  font-weight: 700;
  font-size: 28px;
  line-height: 32px;
}

.footer-form__contact-text {
  width: 100%;
  max-width: 400px;
  font-weight: bold;
  font-size: 28px;
  line-height: 32px;
}

.footer-form__contact-link {
  position: relative;
  font-weight: bold;
  font-size: 64px;
  line-height: 64px;
  padding-left: 70px;
}

.footer-form__contact-link::after {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  background: url(../img/icons/tell.svg) center center no-repeat;
  background-size: contain;
}

.main-v2 {
  background-color: #000;
  margin: 0 15px;
  overflow: hidden;
  border-radius: 20px;
  margin-bottom: 100px;
}

.main-v2__body {
  padding-top: 20px;
  background: url(../img/main-bg-2.jpg) center right no-repeat;
  background-size: contain;
}

.main-v2__title {
  color: #ffffff;
  margin-bottom: 30px;
}

.main-v2__sub-title {
  color: #fff;
  margin-bottom: 50px;
  font-size: 24px;
  line-height: 22px;
}

.main-v2__btn {
  border: 1px solid #797979;
  border-radius: 8px;
  color: #fff;
  padding-right: 60px;
  position: relative;
  transition: all 0.3s;
}

.main-v2__btn::after {
  position: absolute;
  content: '';
  display: block;
  right: 30px;
  top: 50%;
  transform: translateY(-50%);
  width: 16px;
  height: 16px;
  background: url(../img/icons/link-arrow.svg) center no-repeat;
  background-size: contain;
}

.main-v2__btn:hover {
  border: 1px solid #fff;
  transition: all 0.3s;
}

.main-v2__skills-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  width: calc(100% + 40px);
  margin: 100px -20px -40px -20px;
}

.main-v2__skills-item {
  width: calc(25% - 40px);
  max-width: 250px;
  margin: 0 20px 40px 20px;
}

.main-v2__skills-icon {
  background: #e5c584;
  border-radius: 10px;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 25px;
}

.main-v2__skills-title {
  font-weight: bold;
  font-size: 18px;
  line-height: 24px;
  color: #fff;
  margin-bottom: 10px;
}

.main-v2__skills-text {
  font-size: 14px;
  line-height: 18px;
  color: #d4d4d4;
}

.privacy-policy {
  padding-top: 180px;
  padding-bottom: 120px;
  background: #fff;
}

.privacy-policy__title {
  font-weight: bold;
  font-size: 56px;
  line-height: 60px;
  margin-bottom: 50px;
}

.privacy-policy__body {
  display: flex;
  position: relative;
}

.privacy-policy__menu-wrapp {
  position: sticky;
  top: 80px;
  left: 0;
}

.privacy-policy__contents {
  background: #f5f5f5;
  border-radius: 10px;
  padding: 40px;
  margin-bottom: 100px;
}

.privacy-policy__contents-title {
  font-weight: bold;
  font-size: 28px;
  line-height: 32px;
  width: 100%;
  margin-bottom: 30px;
}

.privacy-policy__contents-list {
  display: flex;
  flex-wrap: wrap;
  width: calc(100% + 80px);
  margin: 0 -40px -30px -40px;
}

.privacy-policy__contents-item {
  width: calc(25% - 80px);
  margin: 0 40px 30px 40px;
  font-size: 14px;
  line-height: 18px;
}

.privacy-policy__contents-item span {
  font-weight: bold;
  font-size: 18px;
  line-height: 24px;
  color: #e5c584;
  display: block;
  margin-bottom: 10px;
}

.privacy-policy__menu-body {
  width: 100%;
  max-width: 310px;
  margin-right: 100px;
}

.privacy-policy__menu-title {
  font-weight: bold;
  font-size: 28px;
  line-height: 32px;
  margin-bottom: 50px;
}

.privacy-policy__menu-item {
  margin-bottom: 25px;
}

.privacy-policy__menu-link {
  display: block;
  font-weight: 550;
  font-size: 16px;
  line-height: 20px;
  color: #797979;
  transition: all 0.3s ease;
}

.privacy-policy__menu-link:hover {
  transition: all 0.3s ease;
  color: #070707;
}

.privacy-policy__content {
  width: 100%;
  max-width: 770px;
  margin-left: 0;
  margin-right: auto;
}

.privacy-policy__paragraph {
  padding-top: 80px;
}

.privacy-policy__paragraph:first-child {
  padding-top: 0;
}

.privacy-policy__paragraph h2 {
  font-weight: bold;
  font-size: 38px;
  line-height: 40px;
  margin-bottom: 50px;
}

.privacy-policy__paragraph p {
  font-size: 16px;
  line-height: 22px;
  margin-bottom: 25px;
}

.privacy-policy__paragraph strong {
  font-weight: 500;
  font-size: 16px;
  line-height: 20px;
}

.privacy-policy__paragraph b {
  font-size: 16px;
  line-height: 22px;
}

.privacy-policy__paragraph a {
  font-size: 16px;
  line-height: 22px;
  display: inline-block;
  color: #e5c584;
}

.privacy-policy__paragraph a:hover {
  text-decoration: underline;
}

.privacy-policy__paragraph ul li {
  padding-left: 35px;
  position: relative;
  font-weight: 500;
  font-size: 16px;
  line-height: 20px;
  margin-bottom: 25px;
}

.privacy-policy__paragraph ul li::after {
  content: '';
  position: absolute;
  display: block;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 15px;
  height: 10px;
  background: url(../img/icons/check-icon.svg) center center no-repeat;
  background-size: contain;
}

.page-404 {
  padding-top: 180px;
  padding-bottom: 120px;
  min-height: calc(100vh - 331px);
}

.page-404__body {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.page-404__content {
  margin-bottom: 80px;
}

.page-404__title {
  font-weight: bold;
  font-size: 56px;
  line-height: 60px;
  margin-bottom: 25px;
}

.page-404__text {
  font-size: 16px;
  line-height: 22px;
  color: #797979;
  margin-bottom: 50px;
}

.page-404__btn {
  background: rgba(7, 7, 7, 0.1);
}

.page-404__img {
  width: 100%;
  max-width: 750px;
  margin-left: auto;
}

.page-404__img img {
  width: 100%;
  height: auto;
}

.page-contant h2 {
  font-weight: bold;
  font-size: 38px;
  line-height: 40px;
  margin-bottom: 50px;
}

.page-contant p {
  font-size: 16px;
  line-height: 22px;
  margin-bottom: 25px;
}

.page-contant strong {
  font-weight: 500;
  font-size: 16px;
  line-height: 20px;
}

.page-contant b {
  font-size: 16px;
  line-height: 22px;
}

.page-contant a {
  font-size: 16px;
  line-height: 22px;
  display: inline-block;
  color: #e5c584;
}

.page-contant a:hover {
  text-decoration: underline;
}

.page-contant ul li {
  padding-left: 35px;
  position: relative;
  font-weight: 500;
  font-size: 16px;
  line-height: 20px;
  margin-bottom: 25px;
}

.page-contant ul li::after {
  content: '';
  position: absolute;
  display: block;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 15px;
  height: 10px;
  background: url(../img/icons/check-icon.svg) center center no-repeat;
  background-size: contain;
}

@media (min-width: 1400px) {
  .hero-bg {
    padding: 15% 20%;
  }
  .main-title {
    font-size: 84px;
    line-height: 90px;
  }
  .page-404 {
    padding-top: 120px;
    padding-bottom: 120px;
  }
  .page-404__content {
    margin-bottom: 30px;
  }
  .page-404__title {
    font-size: 40px;
    line-height: 40px;
  }
  .page-404__img {
    max-width: 650px;
  }
}

@media (max-width: 1300px) {
  .hero-bg {
    padding: 30%;
  }
}

@media (max-width: 1100px) {
  .hero-bg {
    padding: 17%;
  }
  .hero-bg__item-1 {
    width: 180px;
  }
  .footer-form .form-input, .footer-form .form-input::placeholder {
    font-size: 28px;
    line-height: 32px;
  }
  .footer-form__title {
    max-width: 100%;
    margin-bottom: 50px;
    font-size: 38px;
    line-height: 40px;
  }
  .footer-form__body {
    padding: 40px;
    max-width: 375px;
  }
  .footer-form__contact-text {
    font-size: 22px;
    line-height: 22px;
  }
  .footer-form__contact-link {
    font-size: 34px;
    line-height: 38px;
    padding-left: 50px;
  }
  .footer-form__contact-link::after {
    width: 35px;
    height: 35px;
  }
  .privacy-policy__contents-list {
    width: calc(100% + 40px);
    margin: 0 -20px -30px -20px;
  }
  .privacy-policy__contents-item {
    width: calc(33.333% - 40px);
    margin: 0 20px 30px 20px;
  }
}

@media (max-width: 990px) {
  .main {
    padding: 50px 0;
  }
  .main-title {
    font-size: 60px;
    line-height: 68px;
    max-width: 640px;
    margin-top: 15%;
  }
  .main-form__content {
    margin-top: 30px;
    max-width: 400px;
  }
  .main-form__content .form-main {
    display: flex;
    flex-direction: column;
  }
  .main .form-button {
    margin: 30px 0 0 0;
  }
  .hero-bg {
    padding: 25%;
  }
  .main {
    padding: 50px 0;
  }
  .main-title {
    font-size: 34px;
    line-height: 40px;
    max-width: 340px;
    margin-bottom: 20px;
  }
  .main-sub-title {
    font-size: 18px;
    line-height: 20px;
  }
}

@media (max-width: 767px) {
  .hero-bg {
    padding: 15%;
  }
  .hero-bg__item-1, .hero-bg__item-text-3, .hero-bg__item-text-5, .hero-bg__item-text-6, .hero-bg__item-text-8, .hero-bg__item-text-9 {
    display: none;
  }
  .hero-bg__item-2 {
    top: 15%;
    right: 0%;
    width: 70px;
  }
  .hero-bg__item-4 {
    bottom: 0;
    right: auto;
    width: 80px;
    left: 15px;
  }
  .hero-bg__item-7 {
    left: 10px;
    bottom: auto;
    top: -20px;
    width: 80px;
  }
  .advantages-card {
    padding: 30px 30px 0 30px;
    align-items: center;
  }
  .advantages-card__title {
    font-size: 24px;
    line-height: 30px;
  }
  .advantages-card__product {
    margin-left: inherit;
  }
  .advantages-slider__label-mob {
    display: block;
  }
  .benefit-item {
    width: calc(100% - 20px);
    margin: 0 10px 50px 10px;
    flex-direction: column;
  }
  .benefit-num {
    margin-right: 0px;
    margin-bottom: 20px;
  }
  .benefit-text {
    max-width: 100%;
    font-size: 18px;
    line-height: 24px;
  }
  .electronic-menu {
    margin: 0 15px;
    overflow: hidden;
  }
  .electronic-menu__body {
    padding: 50px 0;
    flex-direction: column;
    min-height: 550px;
  }
  .electronic-menu__content {
    padding-right: 0px;
    max-width: 100%;
  }
  .electronic-menu__title {
    font-size: 28px;
    line-height: 32px;
    margin-bottom: 30px;
  }
  .electronic-menu__text {
    font-size: 18px;
    line-height: 24px;
    margin-bottom: 50px;
  }
  .electronic-menu__btns {
    flex-direction: column;
    margin-bottom: 50px;
  }
  .electronic-menu__btn {
    max-width: 100%;
    margin-bottom: 10px;
    margin-right: 0;
  }
  .electronic-menu__img {
    margin-bottom: -200px;
  }
  .menu-work {
    padding-top: 50px;
  }
  .menu-work__item {
    width: calc(100% - 14px);
    margin: 0 7px 15px 7px;
    padding: 30px;
  }
  .menu-work__num {
    margin-top: -100px;
    display: flex;
    justify-content: flex-end;
  }
  .menu-work__num img {
    width: 100%;
    max-width: 215px;
    max-height: 130px;
    height: auto;
    margin-left: auto;
  }
  .products-title {
    margin-bottom: 20px;
  }
  .products-sub__title {
    margin-bottom: 50px;
  }
  .products-card {
    height: 450px;
    padding: 30px 25px;
  }
  .products-card__title {
    font-size: 18px;
    line-height: 24px;
  }
  .products-features__item {
    width: calc(100% - 36px);
  }
  .products-slider__wrapp {
    margin-top: 50px;
  }
  .products-slider__label-mob {
    display: block;
  }
  .footer-form {
    padding: 80px 0 0 0;
  }
  .footer-form .container {
    padding: 0;
  }
  .footer-form__input-title {
    display: none;
  }
  .footer-form__title {
    padding: 0 35px;
    margin-bottom: 0;
    font-size: 28px;
    line-height: 32px;
    padding: 0 25px;
  }
  .footer-form__row {
    flex-direction: column;
    align-items: center;
  }
  .footer-form__body {
    border: none;
    border-radius: 0;
    max-width: 100%;
    width: 100%;
    padding: 35px 25px;
  }
  .main-v2__body {
    padding-top: 0px;
  }
  .main-v2__title {
    margin-bottom: 20px;
  }
  .main-v2__sub-title {
    font-size: 18px;
    line-height: 24px;
    margin-bottom: 200px;
  }
  .main-v2__skills-list {
    display: none;
  }
  .privacy-policy {
    padding-top: 140px;
    padding-bottom: 60px;
  }
  .privacy-policy__title {
    font-size: 28px;
    line-height: 32px;
  }
  .privacy-policy__contents {
    padding: 35px;
    flex-direction: column;
    margin: 0 -35px;
    margin-bottom: 50px;
  }
  .privacy-policy__contents-title {
    font-size: 24px;
    line-height: 24px;
    margin-right: 0px;
    margin-bottom: 25px;
    max-width: 120px;
  }
  .privacy-policy__contents-item {
    width: calc(100% - 40px);
  }
  .privacy-policy__menu-body {
    display: none;
  }
  .privacy-policy__content {
    max-width: 100%;
    margin-right: 0;
  }
  .privacy-policy__paragraph {
    padding-top: 50px;
  }
  .privacy-policy__paragraph:first-child {
    padding-top: 0;
  }
  .privacy-policy__paragraph h2 {
    font-size: 24px;
    line-height: 24px;
    margin-bottom: 25px;
  }
  .privacy-policy__paragraph p {
    font-size: 14px;
    line-height: 18px;
    margin-bottom: 20px;
  }
  .privacy-policy__paragraph strong {
    font-size: 14px;
    line-height: 18px;
  }
  .privacy-policy__paragraph b {
    font-size: 14px;
    line-height: 18px;
  }
  .privacy-policy__paragraph a {
    font-size: 14px;
    line-height: 19px;
  }
  .privacy-policy__paragraph ul li {
    padding-left: 35px;
    font-size: 14px;
    line-height: 18px;
    margin-bottom: 20px;
  }
  .page-404 {
    min-height: auto;
  }
  .page-404__content {
    margin-bottom: 80px;
  }
  .page-404__title {
    font-size: 28px;
    line-height: 32px;
  }
  .page-404__img {
    max-width: 300px;
    margin: 0 auto;
  }
}

@media (max-width: 350px) {
  .btn {
    padding: 0 10px;
  }
}

.contact-block__body {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 40px;
}

.contact-block__title {
  font-weight: 700;
  font-size: 18px;
  line-height: 24px;
  margin-bottom: 30px;
}

.contact-block__tell {
  font-weight: 700;
  font-size: 54px;
  line-height: 54px;
}

.contact-block__soc {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.contact-block__soc-item {
  margin-right: 6px;
  border-radius: 50%;
  display: block;
  overflow: hidden;
}

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

.contact-block__soc-link {
  width: 65px;
  height: 65px;
  overflow: hidden;
  display: block;
  background: #f5f5f5;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.contact-block__soc-link:hover {
  transition: all 0.3s ease;
}

.contact-block__soc-link:hover svg {
  transition: all 0.3s ease;
  fill: #e5c584;
}

.contact-block__soc-link svg {
  transition: all 0.3s ease;
  fill: #121212;
}

.contact-block__soc-link.social__vk svg {
  width: 24px;
  height: 14px;
}

.contact-block__soc-link.social__inst svg {
  width: 24px;
  height: 24px;
}

.contact-block__soc-link.social__whatsapp svg {
  width: 24px;
  height: 24px;
}

.contact-block__soc-link.social__telegram svg {
  width: 26px;
  height: 24px;
}

.footer {
  padding-bottom: 10px;
  background-color: #fff;
}

.footer._dark {
  background-color: #070707;
}

.footer._dark .footer-tel {
  color: #ffffff;
}

.footer._dark .footer-tel:hover {
  color: rgba(255, 255, 255, 0.5);
}

.footer._dark .footer-social__link {
  background: #121212;
}

.footer._dark .footer-social__link:hover {
  transition: all 0.3s ease;
}

.footer._dark .footer-social__link:hover svg {
  transition: all 0.3s ease;
  fill: #e5c584;
}

.footer._dark .footer-social__link svg {
  fill: #fff;
}

.footer-tel {
  font-weight: bold;
  font-size: 24px;
  line-height: 24px;
  max-width: 20%;
  width: 100%;
}

.footer-tel:hover {
  color: rgba(0, 0, 0, 0.5);
  transition: all 0.3s ease;
}

.footer-tel__mob {
  display: none;
  font-weight: bold;
  font-size: 24px;
  line-height: 24px;
  width: 100%;
  margin-bottom: 25px;
}

.footer-tel__mob:hover {
  color: rgba(0, 0, 0, 0.5);
  transition: all 0.3s ease;
}

.footer-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 30px 0;
  border-top: 1px solid #e7e7e7;
}

.footer-text {
  display: flex;
  color: #797979;
}

.footer-text a {
  margin-right: 20px;
  display: block;
}

.footer-text a:hover {
  color: #e5c584;
}

.footer-text li:last-child a {
  margin-right: 0;
}

.footer-copyright {
  font-weight: 500;
  font-size: 12px;
  line-height: 12px;
  color: #262626;
}

@media (max-width: 900px) {
  .contact-block__tell {
    font-size: 36px;
    line-height: 38px;
  }
  .contact-block__body {
    padding-bottom: 30px;
  }
  .footer-top {
    padding: 30px;
    flex-direction: column-reverse;
    align-items: center;
  }
  .footer-text {
    margin-bottom: 30px;
  }
}

@media (max-width: 767px) {
  .contact-block__title {
    font-size: 14px;
    line-height: 18px;
    margin-bottom: 15px;
  }
  .contact-block__tell {
    font-size: 33px;
    line-height: 36px;
  }
  .contact-block__item {
    margin-bottom: 30px;
  }
  .contact-block__item:last-child {
    margin-bottom: 0;
  }
  .contact-block__body {
    flex-direction: column;
    align-items: flex-start;
  }
  .footer-copyright {
    text-align: center;
  }
  .footer-text {
    text-align: center;
    flex-direction: column;
  }
  .footer-text li a {
    margin: 0 0 12px 0;
  }
}

@media (max-width: 420px) {
  .contact-block__item {
    width: 100%;
  }
  .contact-block__soc {
    justify-content: space-between;
  }
}
/*# sourceMappingURL=main.css.map */