@font-face {
  font-family: "FuturaPT";
  src: url("../fonts/FuturaPT-Book.woff") format("woff");
  font-weight: 400;
  font-display: swap;
  font-style: normal;
}

@font-face {
  font-family: "FuturaPT";
  src: url("../fonts/FuturaPT-Demi.woff") format("woff");
  font-weight: 600;
  font-display: swap;
  font-style: normal;
}

@font-face {
  font-family: "FuturaPT";
  src: url("../fonts/FuturaPT-Bold.woff") format("woff");
  font-weight: 700;
  font-display: swap;
  font-style: normal;
}

@font-face {
  font-family: "Grot";
  src: url("../fonts/akzidenzgroteskpro-ext.ttf") format("truetype");
  font-weight: 400;
  font-display: swap;
  font-style: normal;
}

@font-face {
  font-family: "Grot";
  src: url("../fonts/akzidenzgroteskpro-mdex.ttf") format("truetype");
  font-weight: 500;
  font-display: swap;
  font-style: normal;
}

@font-face {
  font-family: "Grot";
  src: url("../fonts/akzidenzgroteskpro-boldex.ttf") format("truetype");
  font-weight: 700;
  font-display: swap;
  font-style: normal;
}

/* Slider */
.slick-slider {
  position: relative;
  display: block;
  box-sizing: border-box;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent;
}

.slick-list {
  position: relative;
  overflow: hidden;
  display: block;
  margin: 0;
  padding: 0;
}

.slick-list:focus {
  outline: none;
}

.slick-list.dragging {
  cursor: pointer;
  cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list {
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

.slick-track {
  position: relative;
  left: 0;
  top: 0;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.slick-track:before,
.slick-track:after {
  content: "";
  display: table;
}

.slick-track:after {
  clear: both;
}

.slick-loading .slick-track {
  visibility: hidden;
}

.slick-slide {
  float: left;
  height: 100%;
  min-height: 1px;
  display: none;
}

[dir="rtl"] .slick-slide {
  float: right;
}

.slick-slide img {
  display: block;
}

.slick-slide.slick-loading img {
  display: none;
}

.slick-slide.dragging img {
  pointer-events: none;
}

.slick-initialized .slick-slide {
  display: block;
}

.slick-loading .slick-slide {
  visibility: hidden;
}

.slick-vertical .slick-slide {
  display: block;
  height: auto;
  border: 1px solid transparent;
}

.slick-arrow.slick-hidden {
  display: none;
}

/* Slider */
/* Arrows */
.slick-prev,
.slick-next {
  position: absolute;
  display: block;
  height: 20px;
  width: 20px;
  line-height: 0px;
  font-size: 0px;
  cursor: pointer;
  background: transparent;
  color: transparent;
  top: 50%;
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
  padding: 0;
  border: none;
  outline: none;
}

.slick-prev:hover,
.slick-prev:focus,
.slick-next:hover,
.slick-next:focus {
  outline: none;
  background: transparent;
  color: transparent;
}

.slick-prev:hover:before,
.slick-prev:focus:before,
.slick-next:hover:before,
.slick-next:focus:before {
  opacity: 1;
}

.slick-prev.slick-disabled:before,
.slick-next.slick-disabled:before {
  opacity: 0.25;
}

.slick-prev:before,
.slick-next:before {
  font-family: "slick";
  font-size: 20px;
  line-height: 1;
  color: white;
  opacity: 0.75;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.slick-prev {
  left: -25px;
}

[dir="rtl"] .slick-prev {
  left: auto;
  right: -25px;
}

.slick-prev:before {
  content: "←";
}

[dir="rtl"] .slick-prev:before {
  content: "→";
}

.slick-next {
  right: -25px;
}

[dir="rtl"] .slick-next {
  left: -25px;
  right: auto;
}

.slick-next:before {
  content: "→";
}

[dir="rtl"] .slick-next:before {
  content: "←";
}

/* Dots */
.slick-dotted.slick-slider {
  margin-bottom: 30px;
}

.slick-dots {
  position: absolute;
  bottom: -25px;
  list-style: none;
  display: block;
  text-align: center;
  padding: 0;
  margin: 0;
  width: 100%;
}

.slick-dots li {
  position: relative;
  display: inline-block;
  height: 20px;
  width: 20px;
  margin: 0 5px;
  padding: 0;
  cursor: pointer;
}

.slick-dots li button {
  border: 0;
  background: transparent;
  display: block;
  height: 20px;
  width: 20px;
  outline: none;
  line-height: 0px;
  font-size: 0px;
  color: transparent;
  padding: 5px;
  cursor: pointer;
}

.slick-dots li button:hover,
.slick-dots li button:focus {
  outline: none;
}

.slick-dots li button:hover:before,
.slick-dots li button:focus:before {
  opacity: 1;
}

.slick-dots li button:before {
  position: absolute;
  top: 0;
  left: 0;
  content: "•";
  width: 20px;
  height: 20px;
  font-family: "slick";
  font-size: 6px;
  line-height: 20px;
  text-align: center;
  color: black;
  opacity: 0.25;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.slick-dots li.slick-active button:before {
  color: black;
  opacity: 0.75;
}

/*! normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css */
/* Document
   ========================================================================== */
/**
 * 1. Correct the line height in all browsers.
 * 2. Prevent adjustments of font size after orientation changes in iOS.
 */
html {
  line-height: 1.15;
  /* 1 */
  -webkit-text-size-adjust: 100%;
  /* 2 */
}

/* Sections
   ========================================================================== */
/**
 * Remove the margin in all browsers.
 */
body {
  margin: 0;
}

/**
 * Render the `main` element consistently in IE.
 */
main {
  display: block;
}

/**
 * Correct the font size and margin on `h1` elements within `section` and
 * `article` contexts in Chrome, Firefox, and Safari.
 */
h1 {
  font-size: 2em;
  margin: 0.67em 0;
}

/* Grouping content
   ========================================================================== */
/**
 * 1. Add the correct box sizing in Firefox.
 * 2. Show the overflow in Edge and IE.
 */
hr {
  box-sizing: content-box;
  /* 1 */
  height: 0;
  /* 1 */
  overflow: visible;
  /* 2 */
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
pre {
  font-family: monospace, monospace;
  /* 1 */
  font-size: 1em;
  /* 2 */
}

/* Text-level semantics
   ========================================================================== */
/**
 * Remove the gray background on active links in IE 10.
 */
a {
  background-color: transparent;
}

/**
 * 1. Remove the bottom border in Chrome 57-
 * 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari.
 */
abbr[title] {
  border-bottom: none;
  /* 1 */
  text-decoration: underline;
  /* 2 */
  -webkit-text-decoration: underline dotted;
  text-decoration: underline dotted;
  /* 2 */
}

/**
 * Add the correct font weight in Chrome, Edge, and Safari.
 */
b,
strong {
  font-weight: bolder;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
code,
kbd,
samp {
  font-family: monospace, monospace;
  /* 1 */
  font-size: 1em;
  /* 2 */
}

/**
 * Add the correct font size in all browsers.
 */
small {
  font-size: 80%;
}

/**
 * Prevent `sub` and `sup` elements from affecting the line height in
 * all browsers.
 */
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

/* Embedded content
   ========================================================================== */
/**
 * Remove the border on images inside links in IE 10.
 */
img {
  border-style: none;
}

/* Forms
   ========================================================================== */
/**
 * 1. Change the font styles in all browsers.
 * 2. Remove the margin in Firefox and Safari.
 */
button,
input,
optgroup,
select,
textarea {
  font-family: inherit;
  /* 1 */
  font-size: 100%;
  /* 1 */
  line-height: 1.15;
  /* 1 */
  margin: 0;
  /* 2 */
}

/**
 * Show the overflow in IE.
 * 1. Show the overflow in Edge.
 */
button,
input {
  /* 1 */
  overflow: visible;
}

/**
 * Remove the inheritance of text transform in Edge, Firefox, and IE.
 * 1. Remove the inheritance of text transform in Firefox.
 */
button,
select {
  /* 1 */
  text-transform: none;
}

/**
 * Correct the inability to style clickable types in iOS and Safari.
 */
button,
[type="button"],
[type="reset"],
[type="submit"] {
  -webkit-appearance: button;
}

/**
 * Remove the inner border and padding in Firefox.
 */
button::-moz-focus-inner,
[type="button"]::-moz-focus-inner,
[type="reset"]::-moz-focus-inner,
[type="submit"]::-moz-focus-inner {
  border-style: none;
  padding: 0;
}

/**
 * Restore the focus styles unset by the previous rule.
 */
button:-moz-focusring,
[type="button"]:-moz-focusring,
[type="reset"]:-moz-focusring,
[type="submit"]:-moz-focusring {
  outline: 1px dotted ButtonText;
}

/**
 * Correct the padding in Firefox.
 */
fieldset {
  padding: 0.35em 0.75em 0.625em;
}

/**
 * 1. Correct the text wrapping in Edge and IE.
 * 2. Correct the color inheritance from `fieldset` elements in IE.
 * 3. Remove the padding so developers are not caught out when they zero out
 *    `fieldset` elements in all browsers.
 */
legend {
  box-sizing: border-box;
  /* 1 */
  color: inherit;
  /* 2 */
  display: table;
  /* 1 */
  max-width: 100%;
  /* 1 */
  padding: 0;
  /* 3 */
  white-space: normal;
  /* 1 */
}

/**
 * Add the correct vertical alignment in Chrome, Firefox, and Opera.
 */
progress {
  vertical-align: baseline;
}

/**
 * Remove the default vertical scrollbar in IE 10+.
 */
textarea {
  overflow: auto;
}

/**
 * 1. Add the correct box sizing in IE 10.
 * 2. Remove the padding in IE 10.
 */
[type="checkbox"],
[type="radio"] {
  box-sizing: border-box;
  /* 1 */
  padding: 0;
  /* 2 */
}

/**
 * Correct the cursor style of increment and decrement buttons in Chrome.
 */
[type="number"]::-webkit-inner-spin-button,
[type="number"]::-webkit-outer-spin-button {
  height: auto;
}

/**
 * 1. Correct the odd appearance in Chrome and Safari.
 * 2. Correct the outline style in Safari.
 */
[type="search"] {
  -webkit-appearance: textfield;
  /* 1 */
  outline-offset: -2px;
  /* 2 */
}

/**
 * Remove the inner padding in Chrome and Safari on macOS.
 */
[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
}

/**
 * 1. Correct the inability to style clickable types in iOS and Safari.
 * 2. Change font properties to `inherit` in Safari.
 */
::-webkit-file-upload-button {
  -webkit-appearance: button;
  /* 1 */
  font: inherit;
  /* 2 */
}

/* Interactive
   ========================================================================== */
/*
 * Add the correct display in Edge, IE 10+, and Firefox.
 */
details {
  display: block;
}

/*
 * Add the correct display in all browsers.
 */
summary {
  display: list-item;
}

/* Misc
   ========================================================================== */
/**
 * Add the correct display in IE 10+.
 */
template {
  display: none;
}

/**
 * Add the correct display in IE 10.
 */
[hidden] {
  display: none;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  -webkit-tap-highlight-color: transparent;
}

html,
body {
  max-width: 100%;
  position: relative;
  overflow-x: hidden;
}

html {
  margin-right: calc(-1 * (100vw - 100%));
  font-size: 7px;
  height: 100%;
  max-width: 1920px;
  margin: 0 auto;
}

body {
  background: #FFF;
  font-size: 1.6rem;
  line-height: 1.4;
  font-family: 'FuturaPT';
  font-weight: 400;
  color: #fff;
  min-height: 100%;
  display: -webkit-box;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  flex-direction: column;
  -webkit-box-align: stretch;
  align-items: stretch;
  -webkit-box-pack: start;
  justify-content: flex-start;
}

.my-body-noscroll-class {
  overflow: hidden;
}

.my-body-noscroll-class body {
  overflow: hidden;
}

img {
  max-width: 100%;
}

b {
  font-weight: 600;
}

a,
button,
.img-svg,
.modal__open {
  outline: none;
  border: 0;
  cursor: pointer;
  background: none;
  -webkit-transition: 220ms;
  transition: 220ms;
  text-decoration: none;
}

a {
  color: #fff;
}

.img-svg {
  height: 20px;
}

/* Bootstrap 4 */
.container {
  padding-left: 15px;
  padding-right: 15px;
  margin: 0 auto;
  width: 100%;
  max-width: 320px;
}

@media (min-width: 360px) {
  html {
    font-size: 7.5px;
  }
}

@media (min-width: 576px) {
  html {
    font-size: 8.5px;
  }

  .container {
    max-width: 540px;
  }
}

@media (min-width: 768px) {
  html {
    font-size: 7.5px;
  }

  .container {
    max-width: 720px;
  }
}

@media (min-width: 992px) {
  .container {
    max-width: 960px;
  }
}

@media (min-width: 1300px) {
  .container {
    max-width: 120rem;
  }
}

@media (min-width: 1500px) {
  html {
    font-size: 10px;
  }
}

@media screen and (max-width: 767px) {
  .hidden-xs {
    display: none;
  }
}

@media screen and (min-width: 767px) {
  .hidden-lg {
    display: none;
  }
}

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

.d-flex {
  display: -webkit-box;
  display: flex;
}

.blick-btn {
  -webkit-transition: 0.3s;
  transition: 0.3s;
  background-size: 1px 100%;
  position: relative;
  z-index: 3;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
  overflow: hidden;
  cursor: pointer;
}

.blick-btn:after {
  content: "";
  top: -50%;
  right: -50%;
  bottom: -50%;
  left: -50%;
  height: 4rem;
  background: #fff;
  -webkit-transform: rotateZ(60deg) translate(-5em, 19em);
  transform: rotateZ(60deg) translate(-5em, 19em);
  opacity: 0;
  position: absolute;
  z-index: 3;
  -webkit-animation: sheens 1.5s infinite;
  animation: sheens 1.5s infinite;
  -webkit-filter: blur(20px);
  filter: blur(20px);
}

@-webkit-keyframes sheens {
  0% {
    opacity: 0;
    -webkit-transform: rotateZ(60deg) translate(-5em, 19em);
    transform: rotateZ(60deg) translate(-5em, 19em);
  }

  10% {
    opacity: 0;
  }

  30% {
    opacity: 0.7;
  }

  70% {
    opacity: 0;
  }

  100% {
    -webkit-transform: rotateZ(60deg) translate(1em, -16em);
    transform: rotateZ(60deg) translate(1em, -16em);
  }
}

@keyframes sheens {
  0% {
    opacity: 0;
    -webkit-transform: rotateZ(60deg) translate(-5em, 19em);
    transform: rotateZ(60deg) translate(-5em, 19em);
  }

  10% {
    opacity: 0;
  }

  30% {
    opacity: 0.7;
  }

  70% {
    opacity: 0;
  }

  100% {
    -webkit-transform: rotateZ(60deg) translate(1em, -16em);
    transform: rotateZ(60deg) translate(1em, -16em);
  }
}

.slick-slide {
  outline: none !important;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
}

form {
  overflow: hidden;
  position: relative;
}

form input[name="bot"] {
  position: absolute;
  left: -999px;
  top: -999px;
  opacity: 0;
  visibility: hidden;
}

.t-btn {
  width: 43rem;
  width: 40rem;
  position: relative;
  cursor: pointer;
  -webkit-transition: 320ms;
  transition: 320ms;
}

.t-btn:hover {
  -webkit-transform: scale(1.02);
  transform: scale(1.02);
}

.t-btn .button__shadow {
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  bottom: -2rem;
  width: 36rem;
}

@media screen and (max-width: 575px) {
  .t-btn .button__shadow {
    width: 100%;
    bottom: -3rem;
  }
}

.t-btn .button__inner {
  position: relative;
  height: 9.3rem;
  z-index: 5;
}

.t-btn .button__bg {
  -webkit-transition: 320ms;
  transition: 320ms;
  height: 100%;
}

.t-btn .button__text {
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
  align-items: center;
  -webkit-box-pack: center;
  justify-content: center;
  position: absolute;
  left: 50%;
  top: 45%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  font-style: normal;
  font-weight: 600;
  font-size: 1.4rem;
  line-height: 2.2rem;
  display: flex;
  align-items: center;
  text-align: center;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: #2B2B2B;
  white-space: nowrap;
}

@media screen and (max-width: 575px) {
  .t-btn .button__text {
    font-size: 12px;
  }
}

.t-btn .button__text img {
  width: 3.5rem;
  margin-left: 6px;
}

@media screen and (max-width: 575px) {
  .t-btn .button__text img {
    display: none;
  }
}

.message {
  position: relative;
  display: inline-block;
}

@media screen and (max-width: 767px) {
  .message .lg {
    display: none;
  }
}

.message .xs {
  display: none;
  width: 100%;
}

@media screen and (max-width: 767px) {
  .message .xs {
    display: block;
  }
}

.message span {
  position: absolute;
  width: 100%;
  left: 52%;
  top: 44%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  color: #191919;
  font-weight: normal;
  font-size: 2.4rem;
  line-height: 2.8rem;
  z-index: 4;
  text-align: center;
}

@media screen and (max-width: 767px) {
  .message span {
    font-size: 15px;
    line-height: 1.3;
    width: 80%;
  }
}

.t-title {
  font-family: 'Grot';
  font-weight: bold;
  font-size: 4rem;
  line-height: 150%;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: #FFFFFF;
}

@media screen and (max-width: 767px) {
  .t-title {
    font-size: 3rem;
  }
}

@media screen and (max-width: 575px) {
  .t-title {
    font-size: 17px;
  }
}

@media screen and (max-width: 360px) {
  .t-title {
    font-size: 16px;
  }
}

.t-subtitle {
  font-family: 'FuturaPT';
  font-weight: 400;
  font-size: 3.4rem;
  line-height: 150%;
  letter-spacing: 0.03em;
  color: #FFFFFF;
}

@media screen and (max-width: 575px) {
  .t-subtitle {
    font-size: 18px;
    line-height: 1.4;
  }
}

@media screen and (max-width: 360px) {
  .t-subtitle {
    font-size: 15px;
  }
}

.blue {
  color: #44DCD3;
}

.bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-position: top center;
  background-size: cover;
}

.bg-xs {
  display: none;
}

.fw500 {
  font-weight: 500;
}

section {
  position: relative;
  z-index: 4;
}

.w100 {
  width: 100%;
}

.form__box {
  padding: 0 6px;
}

.input__label {
  width: 100%;
  margin-bottom: 2rem;
  padding-left: 4rem;
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
  align-items: center;
  -webkit-box-pack: start;
  justify-content: flex-start;
  position: relative;
}

.input__label .bg {
  position: absolute;
  top: 0;
  width: 40rem;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  z-index: 2;
}

.input__label input {
  -webkit-box-flex: 1;
  flex-grow: 1;
  border: 0;
  background: transparent;
  outline: none;
  font-size: 16px;
  color: #000;
}

.input__label input::-webkit-input-placeholder {
  color: #C4C4C4;
}

.input__label input::-moz-placeholder {
  color: #C4C4C4;
}

.input__label input:-ms-input-placeholder {
  color: #C4C4C4;
}

.input__label input::-ms-input-placeholder {
  color: #C4C4C4;
}

.input__label input::placeholder {
  color: #C4C4C4;
}

.input__label .img-svg {
  margin-right: 10px;
  position: relative;
  z-index: 3;
}

.input__label input {
  height: 9rem;
  position: relative;
  z-index: 3;
}

.form__number {
  margin: 3.5rem 0 0;
  text-align: center;
}

.form__number .title {
  font-size: 1.6rem;
  line-height: 2.4rem;
}

@media screen and (max-width: 575px) {
  .form__number .title {
    font-size: 15.5px;
    line-height: 1.3;
    margin-bottom: 6px;
  }
}

.form__number .phone {
  display: block;
  margin-top: 3px;
  font-weight: 600;
  font-size: 2.4rem;
  line-height: 1;
  -webkit-transition: 320ms;
  transition: 320ms;
}

@media screen and (max-width: 575px) {
  .form__number .phone {
    font-size: 23px;
  }
}

.form__number .phone:hover {
  color: #44DCD3;
}

.number {
  position: absolute;
  z-index: 4;
  top: 5rem;
  right: 5rem;
  font-weight: 700;
  font-size: 2rem;
  color: #44DCD3;
  text-shadow: 0px 0px 25px rgba(68, 220, 211, 0.25);
}

@media screen and (max-width: 575px) {
  .number {
    font-size: 20px;
    right: 30px;
    top: 25px;
  }
}

.slider-container {
  position: relative;
}

.slider-arrow {
  width: 7rem;
  height: 7rem;
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
  align-items: center;
  -webkit-box-pack: center;
  justify-content: center;
  background: #FFFFFF;
  border: 1px solid #C4C4C4;
  border-radius: 50%;
  cursor: pointer;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  -webkit-transition: 320ms;
  transition: 320ms;
  z-index: 10;
}

@media screen and (max-width: 767px) {
  .slider-arrow {
    display: none !important;
  }
}

.slider-arrow:hover {
  border: 1px solid #44DCD3;
}

.video-slider-container .left-arrow {
  left: 23%;
}

@media (max-width: 1300px) {
  .video-slider-container .left-arrow {
    left: 20%;
  }
}

@media (max-width: 1200px) {
  .video-slider-container .left-arrow {
    left: 16%;
  }
}

@media (max-width: 1100px) {
  .video-slider-container .left-arrow {
    left: 13%;
  }
}

.video-slider-container .left-arrow img {
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}

.video-slider-container .right-arrow {
  right: 23%;
}

@media (max-width: 1300px) {
  .video-slider-container .right-arrow {
    right: 20%;
  }
}

@media (max-width: 1200px) {
  .video-slider-container .right-arrow {
    right: 16%;
  }
}

@media (max-width: 1100px) {
  .video-slider-container .right-arrow {
    right: 13%;
  }
}

/* Dots */
.slick-dots {
  bottom: -7rem;
}

@media screen and (max-width: 575px) {
  .slick-dots {
    display: none !important;
  }
}

.slick-dots li button {
  width: 10px;
  height: 10px;
  padding: 0;
  background: #DBDBDB !important;
  border-radius: 50%;
  margin: 0 1rem !important;
}

.slick-dots li button::before {
  display: none;
}

.slick-dots li.slick-active button {
  background: #44DCD3 !important;
}

.ellipse {
  max-width: none;
  position: absolute;
  left: 50%;
  top: 50%;
  opacity: 0;
}

.ellipse1 {
  -webkit-animation: ellipse 3s linear infinite;
  animation: ellipse 3s linear infinite;
  display: none;
}

@media screen and (max-width: 991px) {
  .ellipse1 {
    display: none;
  }
}

.ellipse2 {
  -webkit-animation: ellipse 3s linear infinite;
  animation: ellipse 3s linear infinite;
  -webkit-animation-delay: 2s;
  animation-delay: 2s;
}

.ellipse3 {
  -webkit-animation: ellipse 3s linear infinite;
  animation: ellipse 3s linear infinite;
  -webkit-animation-delay: 4s;
  animation-delay: 4s;
}

@-webkit-keyframes ellipse {
  0% {
    -webkit-transform: translate(-50%, -50%) scale(0.3);
    transform: translate(-50%, -50%) scale(0.3);
    opacity: 0;
  }

  50% {
    opacity: 1;
  }

  100% {
    -webkit-transform: translate(-50%, -50%) scale(1.1);
    transform: translate(-50%, -50%) scale(1.1);
    opacity: 0;
  }
}

@keyframes ellipse {
  0% {
    -webkit-transform: translate(-50%, -50%) scale(0.3);
    transform: translate(-50%, -50%) scale(0.3);
    opacity: 0;
  }

  50% {
    opacity: 1;
  }

  100% {
    -webkit-transform: translate(-50%, -50%) scale(1.1);
    transform: translate(-50%, -50%) scale(1.1);
    opacity: 0;
  }
}

#header {
  position: fixed;
  top: 0;
  left: 0;
  padding: 4.5rem 0 2rem;
  width: 100%;
  z-index: 6;
  -webkit-transition: 320ms;
  transition: 320ms;
}

@media screen and (max-width: 767px) {
  #header {
    padding-top: 24px;
    z-index: 102;
  }
}

#header.fixed,
#header.black {
  background: rgba(25, 25, 25, 0.7);
  padding: 2rem 0 2rem;
  background: #181818;
}

#header .menu {
  margin-bottom: -4px;
}

#header .container {
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  justify-content: space-between;
}

@media screen and (max-width: 575px) {
  #header .container {
    max-width: 100%;
    padding: 0 20px;
  }
}

@media screen and (max-width: 767px) {
  #header .header__messengers {
    display: none;
  }
}

@media screen and (max-width: 575px) {
  #header .header__phone {
    text-align: right;
  }
}

#header .header__logo-description {
  color: #D8D8D8;
}

#header .header__logo-description::before {
  background: #D8D8D8;
}

#header .header__messengers .link {
  border: 1px solid #D8D8D8;
}

#header .header__messengers .link .img-svg path {
  fill: #D8D8D8;
}

#header .header__messengers .link:hover {
  border-color: #44DCD3;
}

#header .header__messengers .link:hover .img-svg path {
  fill: #44DCD3;
}

.header__logo {
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
  align-items: center;
  -webkit-box-pack: start;
  justify-content: flex-start;
}

@media screen and (max-width: 767px) {
  .header__logo {
    margin-right: auto;
    margin-left: 5px;
  }
}

.header__logo img {
  width: 11rem;
}

@media screen and (max-width: 575px) {
  .header__logo img {
    width: 80px;
  }
}

.header__logo-description {
  margin-left: 2rem;
  padding-left: 2rem;
  position: relative;
  font-size: 2rem;
  line-height: 1.8rem;
  color: #919191;
}

@media screen and (max-width: 767px) {
  .header__logo-description {
    display: none;
  }
}

.header__logo-description::before {
  content: '';
  position: absolute;
  width: 1px;
  height: 30px;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  left: 0;
  top: 50%;
  background: #4A4A4A;
}

.header__right {
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
  align-items: center;
}

@media screen and (max-width: 575px) {
  .header__right {
    padding-right: 10px;
  }
}

.header__messengers {
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
  align-items: center;
  -webkit-box-pack: center;
  justify-content: center;
  margin-right: 3rem;
}

.header__messengers .link {
  margin-left: 1rem;
  display: block;
  width: 4rem;
  height: 4rem;
  border-radius: 50%;
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
  align-items: center;
  -webkit-box-pack: center;
  justify-content: center;
  border: 1px solid #747474;
  -webkit-transition: 320ms;
  transition: 320ms;
}

@media screen and (max-width: 575px) {
  .header__messengers .link {
    width: 40px;
    height: 40px;
  }
}

.header__messengers .link .img-svg {
  max-width: 60%;
}

@media screen and (max-width: 575px) {
  .header__messengers .link .img-svg {
    max-width: 100%;
  }
}

.header__messengers .link:hover {
  border-color: #44DCD3;
}

.header__messengers .link:hover .img-svg path {
  fill: #44DCD3;
}

.header__messengers .viber .img-svg {
  max-width: 50%;
}

@media screen and (max-width: 767px) {
  .header__messengers .viber .img-svg {
    max-width: 50%;
  }

  .header__messengers .viber .img-svg path {
    fill: #9a9a9a;
  }
}

.header__phone .phone {
  display: block;
  font-weight: 600;
  font-size: 2.4rem;
  line-height: 1;
  text-transform: uppercase;
  color: #FFFFFF;
  margin-bottom: 3px;
}

@media screen and (max-width: 575px) {
  .header__phone .phone {
    font-size: 16px;
  }
}

.header__phone .phone:hover {
  color: #44DCD3;
}

.header__phone .phone__button {
  display: inline-block;
  font-weight: normal;
  font-size: 1.6rem;
  line-height: 1;
  color: #44DCD3;
  border-bottom: 1px solid #44DCD3;
  padding-bottom: 1px;
  margin-top: 3px;
}

@media screen and (max-width: 575px) {
  .header__phone .phone__button {
    font-size: 14px;
    margin-top: 4px;
  }
}

.header__phone .phone__button:hover {
  border-color: transparent;
}

#footer {
  background: #191919;
  padding: 4.6rem 0;
  position: relative;
  z-index: 5;
}

@media screen and (max-width: 991px) {
  #footer {
    padding: 30px 0 40px;
  }
}

#footer .footer-bg {
  position: absolute;
  bottom: 99%;
  left: 0;
  width: 100%;
}

#footer .container {
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  justify-content: space-between;
}

@media screen and (max-width: 991px) {
  #footer .container {
    display: block;
  }
}

@media screen and (max-width: 991px) {
  #footer .header__logo {
    -webkit-box-pack: center;
    justify-content: center;
  }
}

@media screen and (max-width: 991px) {
  #footer .header__logo img {
    width: 115px;
  }
}

@media screen and (max-width: 991px) {
  #footer .header__logo-description {
    display: block;
    font-size: 15px;
    line-height: 1.35;
  }
}

#footer .footer__item {
  text-align: center;
  margin: 20px 0;
}

#footer .footer__item .title {
  color: #4B4B4B;
  font-size: 1.4rem;
}

@media screen and (max-width: 991px) {
  #footer .footer__item .title {
    font-size: 16px;
  }
}

#footer .footer__item .white {
  font-size: 1.6rem;
  line-height: 2rem;
  color: #DDDDDD;
}

@media screen and (max-width: 991px) {
  #footer .footer__item .white {
    font-size: 17px;
    line-height: 1.4;
    margin-top: 4px;
  }
}

#footer .footer__item a:hover {
  color: #44DCD3;
}

.footer__right {
  text-align: right;
}

@media screen and (max-width: 991px) {
  .footer__right {
    text-align: left;
    margin-top: 20px;
    text-align: center;
  }
}

.footer__right .link {
  display: block;
  font-size: 1.6rem;
  color: #7F7F7F;
  text-decoration: underline;
}

@media screen and (max-width: 991px) {
  .footer__right .link {
    font-size: 14px;
    margin-bottom: 10px;
  }

  .footer__right .link:last-child {
    margin-bottom: 0;
  }
}

.footer__right .privacy:hover {
  color: #fff;
}

.footer__right .author {
  text-decoration: none;
}

.footer__right .author:hover {
  text-decoration: underline;
}

.footer__right .author span {
  color: #44DCD3;
}

.intro-section {
  position: relative;
  z-index: 4;
  padding: 20rem 0 10rem;
  text-align: center;
}

@media (min-width: 992px) {
  .intro-section .container {
    max-width: 1010px;
  }
}

@media (min-width: 1300px) {
  .intro-section .container {
    max-width: 129rem;
  }
}

@media screen and (max-width: 575px) {
  .intro-section .container {
    max-width: 100%;
  }
}

@media screen and (max-width: 575px) {
  .intro-section {
    padding-bottom: 7rem;
  }
}

.intro-section::before {
  content: '';
  position: absolute;
  background-color: #000;
  top: 0;
  bottom: 40px;
  left: 0;
  width: 100%;
  z-index: -1;
}

.intro-section .bg-lg {
  background-position: bottom center;
  background-size: cover;
}

@media screen and (max-width: 575px) {
  .intro-section .bg-lg {
    display: none;
  }
}

.intro-section .bg-xs {
  z-index: 4;
  display: none;
}

@media screen and (max-width: 575px) {
  .intro-section .bg-xs {
    display: block;
    height: 550px;
    background-position: center;
  }
}

@media screen and (max-width: 575px) {
  .intro-section .partners__section {
    margin-bottom: 0;
  }
}

.intro-section .xs-bottom {
  position: absolute;
  top: 415px;
  left: 0;
  width: 100%;
  bottom: 0;
  background-size: cover;
  background-position: bottom center;
  display: none;
}

@media screen and (max-width: 575px) {
  .intro-section .xs-bottom {
    display: block;
  }
}

.intro-section .container {
  position: relative;
  z-index: 4;
}

@media screen and (max-width: 575px) {
  .intro-section .container {
    display: -webkit-box;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    flex-direction: column;
    -webkit-box-align: stretch;
    align-items: stretch;
    -webkit-box-pack: start;
    justify-content: flex-start;
  }
}

.intro-section .t-btn {
  margin: 0 auto;
}

@media screen and (max-width: 575px) {
  .intro-section .t-btn {
    -webkit-box-ordinal-group: 4;
    order: 3;
  }
}

.intro__title {
  font-family: 'Grot';
  font-weight: 500;
  font-size: 4rem;
  line-height: 140%;
  text-align: center;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: #000;
}

@media screen and (max-width: 575px) {
  .intro__title {
    font-size: 22px;
    line-height: 150%;
    -webkit-box-ordinal-group: 1;
    order: 0;
  }

  .intro__title br {
    display: none;
  }
}

@media screen and (max-width: 360px) {
  .intro__title {
    font-size: 19px;
  }
}

.intro__badge {
  font-family: 'Grot';
  font-weight: 400;
  font-size: 2.4rem;
  line-height: 150%;
  text-align: left;
  text-transform: uppercase;
  color: #000;
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1000px;
  padding: 12px 30px;
  margin: 15px auto 5rem;

  border-radius: 8px;
  background-color: #44DCD3;
}

.intro__badge img {
  width: 5rem;
  height: 5rem;
  flex-shrink: 0;
  margin-left: 15px;
}

.intro__notice {
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
  align-items: center;
  -webkit-box-pack: center;
  justify-content: center;
  margin: 2rem 0;
  font-size: 1.6rem;
  line-height: 2rem;
  color: #C4C4C4;
  font-weight: 400;
}

@media screen and (max-width: 575px) {
  .intro__notice {
    font-size: 14px;
  }
}

.intro__notice b {
  font-weight: 600;
}

.intro__notice img {
  margin-right: 2rem;
}

.advantages-border {
  pointer-events: none;
  position: absolute;
  bottom: 5px;
  left: 4px;
  width: calc(100% - 8px);
  height: calc(100% - 10px);
}

@media screen and (max-width: 767px) {
  .advantages-border {
    display: none;
  }
}

.intro__advantages {
  background: rgba(25, 25, 25, 0.7);
  -webkit-backdrop-filter: blur(30px);
  backdrop-filter: blur(30px);
  border-radius: 10px;
  position: relative;
  overflow: hidden;
  height: 17rem;
  padding-left: 5rem;
  padding-right: 5rem;
  text-align: left;
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  align-items: center;
}

@media screen and (max-width: 991px) {
  .intro__advantages {
    flex-wrap: wrap;
    height: auto;
    padding: 10px 30px;
  }
}

@media screen and (max-width: 575px) {
  .intro__advantages {
    -webkit-box-ordinal-group: 5;
    order: 4;
    background: none;
    -webkit-backdrop-filter: 0;
    backdrop-filter: 0;
    height: auto;
    padding: 0;
    width: 90%;
    margin: 20px auto 0;
  }
}

.intro__advantages .list {
  display: flex;
  align-items: center;
}

.intro__advantages .item {
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
  align-items: center;
  -webkit-box-pack: center;
  justify-content: center;
  position: relative;
  margin-right: 20px;
}

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

@media screen and (max-width: 991px) {
  .intro__advantages .item {
    width: 50%;
    margin: 30px 0;
  }
}

@media screen and (max-width: 575px) {
  .intro__advantages .list {
    flex-direction: column;
    width: 100%;
  }
  .intro__advantages .item {
    width: 100%;
    margin: 0 0 15px;
    height: 96px;
    -webkit-box-pack: start;
    justify-content: flex-start;
    padding-left: 25px;
  }
  .intro__badge {
    padding: 12px 10px;
    font-size: 12px;
    text-align: center;
    line-height: 140%;
    max-width: 300px;
  }
  .intro__badge img {
    order: -1;
    margin-left: 0;
    margin-right: 15px;
  }
}

@media screen and (max-width: 1000px) {
  .intro__advantages .list {
    flex-wrap: wrap;
  }
  .intro__advantages .list .item {
    margin-right: 2%;
    width: 48%;
    justify-content: flex-start;
  }
}

@media screen and (max-width: 768px) {
  .intro__advantages .list .item {
    margin-right: 0;
    width: 100%;
  }
}

.intro__advantages .item .item-bg {
  display: none;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

@media screen and (max-width: 575px) {
  .intro__advantages .item .item-bg {
    display: block;
  }
}

.intro__advantages .item3 .img {
  margin-bottom: -1rem;
}

.intro__advantages .img {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  margin-right: 10px;
  position: relative;
}

.intro__advantages .img img {
  pointer-events: none;
  height: 100%;
  width: 100%;
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  max-width: 15.8rem;
}

@media screen and (max-width: 575px) {
  .intro__advantages .img img {
    max-width: 80px;
  }
}

.intro__advantages .text {
  font-size: 1.6rem;
  line-height: 2.4rem;
  color: #fff;
}

.intro__advantages .text .fw-700 {
  color: #FFF;
}

@media screen and (max-width: 575px) {
  .intro__advantages .text {
    color: #959595;
    font-size: 14px;
    line-height: 18px;
    max-width: 235px;
  }
}

@media screen and (max-width: 575px) {
  .intro__advantages .text b {
    font-weight: 600;
  }
}

.intro__text {
  font-family: 'Grot';
  font-weight: 400;
  font-size: 2.4rem;
  line-height: 1.5;
  margin-bottom: 3rem;
}

.partners__title {
  text-align: left;
  font-weight: 400;
  font-size: 2.4rem;
}

@media screen and (max-width: 575px) {
  .partners__title {
    text-align: center;
    font-size: 20px;
    line-height: 100%;
  }
  .intro__text {
    font-size: 2rem;
  }
}

.partners__section {
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
  align-items: center;
  -webkit-box-pack: center;
  justify-content: center;
  margin: 4rem 0 3.5rem;
}

@media screen and (max-width: 575px) {
  .partners__section {
    display: block;
    padding: 0;
    margin: 25px 0 40px;
    -webkit-box-ordinal-group: 6;
    order: 5;
    position: relative;
    z-index: 4;
  }
}

@media screen and (max-width: 575px) {
  .partners__slider {
    overflow-x: scroll;
  }
}

.partners__box {
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
  align-items: center;
  margin-left: 1rem;
}

@media screen and (max-width: 575px) {
  .partners__box {
    margin: 18px 0 0;
    padding-bottom: 10px;
  }
}

@media screen and (max-width: 575px) {
  .partners__box {
    margin-top: 25px;
  }
}

.partners__box .item {
  height: 7rem;
  width: 21rem;
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
  align-items: center;
  -webkit-box-pack: center;
  justify-content: center;
}

@media screen and (max-width: 767px) {
  .partners__box .item {
    border-right: 1px solid #333333;
  }
}

@media screen and (max-width: 575px) {
  .partners__box .item {
    width: auto;
    padding: 0 25px;
    height: 43px;
    width: auto;
    width: 190px;
  }
}

.partners__box .item img {
  width: 14.5rem;
}

@media screen and (max-width: 575px) {
  .partners__box .item img {
    width: 80%;
  }
}

.partners__box .item1 {
  border-right: 1px solid #333333;
}

@media screen and (max-width: 575px) {
  .partners__box .item1 {
    padding-left: 0;
  }
}

.partners__box .item2 {
  border-right: 1px solid #333333;
}

.partners__box .item3 {
  border-right: 1px solid #333333;
}

@media screen and (max-width: 575px) {
  .partners__box .item3 {
    width: 150px;
  }
}

.partners__box .item3 img {
  width: 7.5rem;
}

.partners__box .item4 {
  padding-left: 2.5rem;
}

.trigger-effetti-container {
  position: relative;
  margin-top: -4rem;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: top center;
}

@media screen and (max-width: 575px) {
  .trigger-effetti-container .bg {
    display: none;
  }
}

@media screen and (max-width: 575px) {
  .trigger-effetti-container .bg-xs {
    display: block;
    bottom: 0;
    left: 0;
    width: 100%;
    top: auto;
    height: auto;
  }
}

.trigger-section {
  padding: 15.5rem 0 6rem;
  position: relative;
  z-index: 3;
}

.trigger-section .container {
  padding: 110px 77px 110px 107px;
  background-color: #1A1A1A;
  border-radius: 10px;
}

@media screen and (max-width: 575px) {
  .trigger-section {
    padding-bottom: 2rem;
  }
}

@media screen and (max-width: 575px) {
  .trigger-section .container {
    max-width: 100%;
    border-radius: 0;
    padding: 5rem 2rem;
  }
}

.trigger-section .message {
  width: 26rem;
}

@media screen and (max-width: 767px) {
  .trigger-section .message {
    width: 24rem;
  }
}

.trigger__title {
  font-family: 'Grot';
  font-weight: 500;
  font-size: 4rem;
  line-height: 150%;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: #FFF;
  margin: 4.5rem 0 0;
}

@media screen and (max-width: 575px) {
  .trigger__title {
    text-align: center;
    font-size: 17px;
  }

  .trigger__title br {
    display: none;
  }
}

.trigger__subtitle {
  font-family: 'Grot';
  font-style: normal;
  font-weight: 400;
  font-size: 2rem;
  line-height: 150%;
  letter-spacing: 0.03em;
  color: #44DCD3;
  margin-bottom: 5.5rem;
}

@media screen and (max-width: 575px) {
  .trigger__subtitle {
    margin-top: 10px;
    text-align: center;
    font-size: 18px;
    line-height: 1.1;
  }
}

.trigger__box {
  display: -webkit-box;
  display: flex;
  -webkit-box-align: stretch;
  align-items: stretch;
  -webkit-box-pack: justify;
  justify-content: space-between;
  column-gap: 50px;
}

@media screen and (max-width: 991px) {
  .trigger__box {
    flex-wrap: wrap;
  }
}

@media screen and (max-width: 575px) {
  .trigger__box {
    -webkit-box-align: center;
    align-items: center;
  }
}

.trigger__box .item {
  width: 23.3%;
  height: 51rem;
  background-size: 100% 100%;
  padding-left: 4rem;
  padding-right: 10px;
  position: relative;
}

@media screen and (max-width: 991px) {
  .trigger__box .item {
    width: 46%;
    height: 55rem;
    margin-bottom: 8%;
  }
}

@media screen and (max-width: 575px) {
  .trigger__box .item {
    width: 330px;
    height: 440px;
    margin: -15px auto 0;
    text-align: center;
    padding: 10px 30px 0;
  }
}

@media screen and (max-width: 360px) {
  .trigger__box .item {
    width: 300px;
    height: 450px;
  }
}

.trigger__box .item .bg {
  z-index: -1;
  background-size: 100% 100%;
}

@media screen and (max-width: 575px) {
  .trigger__box .item .bg-lg {
    display: none;
  }
}

.trigger__box .item .bg-xs {
  display: none;
}

@media screen and (max-width: 575px) {
  .trigger__box .item .bg-xs {
    display: block;
    height: 100%;
  }
}

.fw-700 {
  font-weight: 700;
}

.trigger__box ol {
  padding-left: 1.7rem;
  margin: 0 0 2rem;
}

.trigger__box .paragraph,
.trigger__box ol li {
  font-weight: 300;
  font-size: 1.7rem;
  line-height: 2.4rem;
  color: #FFF;
  text-shadow: 0px 0px 25px rgba(68, 220, 211, 0.25);
}

.trigger__box .paragraph {
  margin: 0 0 2rem;
}

@media screen and (max-width: 991px) {
  .trigger__box .paragraph,
  .trigger__box ol li {
    font-size: 2.5rem;
    line-height: 1.4;
  }
}

@media screen and (max-width: 575px) {
  .trigger__box .paragraph,
  .trigger__box ol li {
    font-size: 15px;
    line-height: 1.3;
  }
}

.trigger__box .list-title {
  margin-bottom: 0;
  font-weight: 700;
}

.trigger__box .col1 img {
  margin-top: 5rem;
}

.trigger__box .col2 img {
  margin-bottom: 5rem;
}

.trigger__box .subtitle {
  font-weight: normal;
  font-size: 1.6rem;
  line-height: 2.4rem;
  color: #FFFFFF;
}

@media screen and (max-width: 991px) {
  .trigger__box .subtitle {
    font-size: 2rem;
    line-height: 1.4;
  }
}

@media screen and (max-width: 1000px) {
  .trigger__box .subtitle {
    font-size: 16px;
  }
  .trigger__title {
    text-align: left;
  }
  .trigger__subtitle {
    text-align: left;
  }
  .trigger__box {
    flex-direction: column;
  }
  .trigger__box .col1 {
    order: 1;
    display: flex;
    flex-direction: column;
  }
  .trigger__box .col1 > img {
    order: -1;
    margin-top: 0;
    margin-bottom: 2rem;
  }
  .trigger__box .col2 img {
    margin-bottom: 2rem;
  }
}

.effetti-section {
  padding: 1rem 0 18rem;
  background-position: top center;
  background-size: cover;
  position: relative;
}

@media screen and (max-width: 575px) {
  .effetti-section {
    padding-bottom: 23rem;
  }
}

@media screen and (max-width: 575px) {
  .effetti-section .container {
    max-width: 95%;
  }
}

.effetti-section .bottom {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
}

.effeti__box {
  position: relative;
  text-align: center;
  margin: 11rem 0 2rem;
}

@media screen and (max-width: 991px) {
  .effeti__box {
    margin-bottom: 10rem;
  }
}

@media screen and (max-width: 767px) {
  .effeti__box {
    margin-top: 8rem;
    margin-bottom: 2rem;
  }
}

.effeti__box > .title {
  font-family: 'Grot';
  font-weight: 500;
  font-size: 4rem;
  line-height: 150%;
  letter-spacing: 0.03em;
  color: #191919;
  text-transform: uppercase;
  margin: 0 0 5rem;
  text-align: left;
}

.effeti__box .grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: 1fr 1fr;
  gap: 30px;
  height: 670px;
}

.effeti__box .grid .item .title {
  font-size: 2.4rem;
  font-weight: 700;
  /* color: #44DCD3; */
  text-align: left;
  line-height: 1.3;
  text-transform: uppercase;
}

.effeti__box .grid .item {
  border-radius: 10px;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  padding: 40px;
  display: flex;
  flex-direction: column;
  max-width: 370px;
}

.effeti__box .grid .item1 {
  grid-row: span 2;
  background-image: url('../img/section-2/1.png');
}
.effeti__box .grid .item2 {
  grid-row: span 2;
  background-image: url('../img/section-2/2.png');
}
.effeti__box .grid .item3 {
  background-image: url('../img/section-2/3.png');
}
.effeti__box .grid .item4 {
  background-image: url('../img/section-2/4.png');
}

.effeti__box .grid .button .border {
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

@media screen and (max-width: 575px) {
  .effeti__box .grid .button .border {
    height: 40px;
    width: 100%;
  }
}

.effeti__box .grid .button {
  margin: 0;
  width: 100%;
  height: 6rem;
  position: relative;
  font-size: 1.4rem;
  font-weight: 600;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: #C4C4C4;
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
  align-items: center;
  -webkit-box-pack: center;
  justify-content: center;
  cursor: pointer;
  margin-top: auto;
  color: #44DCD3;
  font-weight: 400;
}

@media screen and (max-width: 575px) {
  .effeti__box .grid .button {
    width: 32%;
    margin: 0;
    height: 35px;
  }
}

.effeti__box .center-img {
  width: 75rem;
  position: relative;
  z-index: 4;
  top: -4.5rem;
}

@media screen and (max-width: 991px) {
  .effeti__box .center-img {
    width: 56rem;
  }
}

@media screen and (max-width: 767px) {
  .effeti__box .center-img {
    width: 54rem;
    max-width: 120%;
    left: -7%;
  }
}

.effeti__box .ellipse {
  width: 73rem;
}

@media screen and (max-width: 767px) {
  .effeti__box .ellipse {
    width: 360px;
  }
}

.effeti__box .points {
  width: 79.8rem;
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  margin-top: -2.7rem;
}

@media screen and (max-width: 991px) {
  .effeti__box .points {
    display: none;
  }
}

.effeti__box .list {
  margin: 60px auto 0;
  padding: 0 130px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px 50px;
}

.effeti__box .list .item {
  color: #191919;
  text-align: left;
  display: flex;
  align-items: center;
}

.effeti__box .list .item span {
  display: inline;
}

.effeti__box .list .item br {
  display: inline;
}

@media screen and (max-width: 767px) {
  .effeti__box .list .item br {
    display: block;
  }
}

@media screen and (max-width: 767px) {
  .effeti__box .list .item br {
    display: none;
  }
}

.effeti__box .list .item img {
  width: 4rem;
  height: 4rem;
  margin-right: 2rem;
}



/* effetti popup */
.howItWork {
  border-radius: 10px;
  background: #191919;
  height: 620px;
  padding: 10px;
}

.howItWork__box {
  padding: 50px;
  height: 100%;
  display: flex;
}

.howItWork .content {
  display: flex;
  flex-direction: column;
  margin-right: 40px;
}

.howItWork .content .title {
  font-size: 2.4rem;
  font-weight: 700;
  color: #44DCD3;
  text-transform: uppercase;
  margin-bottom: 1.6rem;
}

.howItWork .content p {
  margin: 0;
}

.howItWork .content ul {
  padding-left: 1rem;
}

.howItWork .content .t-btn {
  width: 270px;
  margin-top: auto;
}

.howItWork__box .image {
  width: 470px;
  flex-shrink: 0;
  border-radius: 10px;
}
.howItWork__box .image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: inherit;
}
.howItWork__box .image.image-narrow {
  width: 380px;
}

@media screen and (max-width: 1000px) {
  .howItWork {
    overflow-y: scroll;
    overflow-x: hidden;
  }
  .howItWork__box {
    padding: 10px;
    flex-direction: column;
  }

  .howItWork__box .content {
    order: 1;
  }

  .howItWork__box .image {
    width: 100%;
    margin-bottom: 20px;
  }
}

/* INCOME */
.income-section-container {
  position: relative;
  z-index: 4;
  background: #070707;
}

.income-section-container .top {
  position: absolute;
  bottom: 100%;
  left: 0;
  width: 100%;
  display: none;
}

@media screen and (max-width: 575px) {
  .income-section-container .top {
    display: block;
  }
}

.income-section-container .bg-lg {
  background-position: top center;
  background-size: cover;
  background-repeat: no-repeat;
  top: -40px;
  height: auto;
  bottom: -40px;
}

@media screen and (max-width: 575px) {
  .income-section-container .bg-lg {
    display: none;
    top: 0;
  }
}

.income-section-container .bg-xs {
  display: none;
}

@media screen and (max-width: 575px) {
  .income-section-container .bg-xs {
    display: block;
    top: auto;
    height: 1040px;
    bottom: 0;
  }
}

.income-section {
  padding: 9rem 0 8rem;
  overflow: hidden;
}

@media screen and (max-width: 575px) {
  .income-section {
    padding: 8rem 0 0;
    overflow: visible;
  }
}

.income-section .top-title {
  font-size: 3.2rem;
  line-height: 200%;
  letter-spacing: 0.03em;
}

@media screen and (max-width: 767px) {
  .income-section .top-title {
    line-height: 1.3;
  }
}

@media screen and (max-width: 575px) {
  .income-section .top-title {
    font-size: 20px;
  }
}

.income-section .t-title {
  text-align: left;
  margin-bottom: 8px;
}

.income-section .red-title {
  font-size: 3.2rem;
  line-height: 130%;
  letter-spacing: 0.03em;
  color: #FF2929;
}

@media screen and (max-width: 575px) {
  .income-section .red-title {
    font-size: 22px;
    line-height: 1.15;
  }

  .income-section .red-title br {
    display: none;
  }
}

.income-section .container {
  position: relative;
  z-index: 4;
}

.income__box {
  position: relative;
  margin: 5rem 0 5.5rem;
}

@media screen and (max-width: 575px) {
  .income__box {
    margin: 30px 0 20px;
  }
}

.income__box .container {
  display: -webkit-box;
  display: flex;
  -webkit-box-align: end;
  align-items: flex-end;
  -webkit-box-pack: justify;
  justify-content: space-between;
}

@media screen and (max-width: 991px) {
  .income__box .container {
    display: block;
  }
}

.income__box .man {
  pointer-events: none;
  position: absolute;
  width: 192rem;
  max-width: none;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  top: -27rem;
}

@media screen and (max-width: 991px) {
  .income__box .man {
    top: -10rem;
  }
}

@media screen and (max-width: 575px) {
  .income__box .man {
    display: none;
  }
}

@media screen and (max-width: 991px) {
  .income__left {
    margin-bottom: 40px;
  }
}

.income__left .item {
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
  align-items: center;
  -webkit-box-pack: start;
  justify-content: flex-start;
  margin-bottom: 0.8rem;
  font-size: 1.6rem;
  line-height: 2.4rem;
}

.income__left .item .img {
  flex-shrink: 0;
  width: 12rem;
}

@media screen and (max-width: 575px) {
  .income__left .item .img {
    width: 100px;
  }
}

@media screen and (max-width: 575px) {
  .income__left .item {
    font-size: 16px;
    line-height: 1.4;
    display: block;
    text-align: center;
    margin: 0 0 20px;
    font-size: 16px;
  }

  .income__left .item .img {
    margin: 0 auto 0;
  }
}

.income__right {
  display: -webkit-box;
  display: flex;
  -webkit-box-align: end;
  align-items: flex-end;
  -webkit-box-pack: start;
  justify-content: flex-start;
  padding-bottom: 2.5rem;
}

@media screen and (max-width: 575px) {
  .income__right {
    margin-top: 170px;
    margin-bottom: 40px;
    padding-bottom: 0;
  }
}

.income__right .resume {
  width: 17rem;
  height: 20rem;
  margin-right: 3rem;
  position: relative;
  overflow: hidden;
  border-radius: 10px;
}

.income__right .resume::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 4;
  background: -webkit-gradient(linear, left bottom, left top, color-stop(-32%, #000000), color-stop(160.5%, rgba(196, 196, 196, 0)));
  background: linear-gradient(360deg, #000000 -32%, rgba(196, 196, 196, 0) 160.5%);
  mix-blend-mode: normal;
  border-radius: 0px;
}

.income__right .resume .img {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  -webkit-transition: 320ms;
  transition: 320ms;
  max-width: none;
  -o-object-fit: cover;
  object-fit: cover;
  border-radius: 10px;
  overflow: hidden;
  -o-object-position: left top;
  object-position: left top;
}

.income__right .resume:hover .img {
  width: 105%;
  height: 105%;
}

.income__right .resume .loop {
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  width: 4rem;
  z-index: 10;
}

.income__right .resume:last-child {
  margin-right: 0;
}

.second__box {
  text-align: center;
}

@media screen and (max-width: 575px) {
  .second__box .top-title {
    font-size: 19px;
    text-align: left;
    line-height: 1.35;
    margin-top: 40px;
  }
}

.second__box .t-title {
  font-weight: 500;
  text-align: center;
}

@media screen and (max-width: 575px) {
  .second__box .t-title {
    font-size: 13px;
    line-height: 1.7;
    color: #FF2929;
    font-weight: 700;
    text-align: left;
    margin: 20px 0 0;
  }
}

.man-xs {
  display: none;
}

@media screen and (max-width: 575px) {
  .man-xs {
    display: block;
    position: absolute;
    bottom: 0;
    left: 0;
    width: 370px;
  }
}

.warning__box {
  margin: 7rem auto 0;
  width: 60rem;
  height: 19rem;
  background-size: 100% 100%;
  background-repeat: no-repeat;
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
  align-items: center;
  -webkit-box-pack: start;
  justify-content: flex-start;
}

@media screen and (max-width: 575px) {
  .warning__box {
    margin-top: 0;
    position: relative;
    bottom: -90px;
    width: 100%;
    height: 210px;
    background-image: url("../img/income/xs/warning__bg.png") !important;
    box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.1);
  }
}

.warning__box .text {
  margin-left: 15.5rem;
  font-weight: normal;
  font-size: 2.4rem;
  line-height: 3rem;
  color: #EEEEEE;
}

@media screen and (max-width: 575px) {
  .warning__box .text {
    text-align: center;
    margin: 0;
    padding: 125px 25px 35px;
    font-size: 14px;
    line-height: 1.45;
  }
}

.how-section {
  padding: 1rem 0 8.4rem;
  background-size: 100% auto;
  background-position: top center;
  background-repeat: no-repeat;
}

@media screen and (max-width: 575px) {
  .how-section {
    padding-top: 22rem;
  }
}

@media screen and (max-width: 575px) {
  .how-section .container {
    max-width: 95%;
  }
}

.how-section .message1 {
  display: block;
  width: 78rem;
  margin: 0 auto 6rem;
}

@media screen and (max-width: 767px) {
  .how-section .message1 {
    width: 255px;
    margin-left: 0;
    margin-bottom: 2.5rem;
  }

  .how-section .message1 span {
    text-align: left;
    top: 50.5%;
  }
}

.how-section .message2 {
  display: block;
  width: 78rem;
  margin: 4rem auto 0;
}

@media screen and (max-width: 767px) {
  .how-section .message2 {
    width: 250px;
    margin-left: -13px;
    margin-top: 10px;
  }

  .how-section .message2 span {
    text-align: left;
    top: 51%;
  }
}

.how__box {
  display: -webkit-box;
  display: flex;
  -webkit-box-align: stretch;
  align-items: stretch;
  -webkit-box-pack: justify;
  justify-content: space-between;
  flex-wrap: wrap;
}

@media screen and (max-width: 991px) {
  .how__box {
    -webkit-box-align: center;
    align-items: center;
  }
}

.how__box .item {
  width: 49%;
  position: relative;
  margin-bottom: 2%;
}

@media screen and (max-width: 575px) {
  .how__box .item {
    width: 100%;
    margin: 0 auto 10px;
  }
}

.how__box .item .img-lg {
  width: 100%;
}

@media screen and (max-width: 991px) {
  .how__box .item .img-lg {
    display: none;
  }
}

.how__box .item .img-xs {
  width: 100%;
  display: none;
}

@media screen and (max-width: 991px) {
  .how__box .item .img-xs {
    display: block;
  }
}

.how__box .text {
  position: absolute;
  left: 6rem;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  font-weight: normal;
  font-size: 1.6rem;
  line-height: 2.4rem;
  max-width: 50%;
}

@media screen and (max-width: 991px) {
  .how__box .text {
    font-size: 16px;
    line-height: 1.4;
    top: 35px;
    left: 50%;
    width: 90%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    text-align: center;
  }

  .how__box .text br {
    display: none;
  }
}

@media screen and (max-width: 575px) {
  .how__box .text {
    top: 45px;
  }
}

.how-buttons {
  margin: 6rem 0 0;
}

@media screen and (max-width: 991px) {
  .how-buttons {
    margin-top: 30px;
  }
}

.how-buttons .t-btn {
  margin: 0 auto;
}

.second-box-container {
  position: relative;
}

.second-box-container .bg-lg {
  background-position: bottom center;
  background-size: cover;
  background-repeat: no-repeat;
}

@media screen and (max-width: 575px) {
  .second-box-container .bg-lg {
    display: none;
  }
}

@media screen and (max-width: 575px) {
  .second-box-container .bg-xs {
    display: block;
  }
}

.price-section {
  color: #191919;
  text-align: center;
  padding-bottom: 12rem;
}

@media screen and (max-width: 575px) {
  .price-section {
    background-image: url("../img/table/bg-xs.png");
    background-size: cover;
  }
}

.price-section .t-title,
.price-section .t-subtitle {
  color: #000000;
}

.price-section .t-title {
  font-weight: 500;
}

.price-section .t-subtitle {
  margin: 7px 0 3.4rem;
}

.table {
  width: 100%;
  position: relative;
  background: rgba(255, 255, 255, 0.4);
  -webkit-backdrop-filter: blur(25px);
  backdrop-filter: blur(25px);
  border-radius: 10px;
}

.table.table-first {
  margin-bottom: 25px;
}

@media screen and (max-width: 575px) {
  .table {
    background: rgba(255, 255, 255, 0.49);
    -webkit-backdrop-filter: blur(5px);
    backdrop-filter: blur(5px);
  }
}

.table .center-vertical {
  position: absolute;
  left: 50%;
  top: 0;
  height: 100%;
  width: 2px;
  z-index: 4;
  pointer-events: none;
}

.table .horizontal-line {
  pointer-events: none;
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
}

.table .column {
  width: 50%;
  text-align: center;
  font-size: 2.4rem;
  line-height: 3rem;
  padding: 2rem 0;
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
  align-items: center;
  -webkit-box-pack: center;
  justify-content: center;
}

@media screen and (max-width: 767px) {
  .table .column {
    width: 100%;
    font-size: 22px;
  }
}

.table .column img {
  margin-right: 5px;
}

.table .column.red {
  color: #FF2929;
}

.table .column.green {
  color: #44DCD3;
}

.table .head {
  display: -webkit-box;
  display: flex;
  -webkit-box-align: stretch;
  align-items: stretch;
  border-radius: 8px 8px 0px 0px;
  position: relative;
}

.table .row {
  display: -webkit-box;
  display: flex;
  -webkit-box-align: stretch;
  align-items: stretch;
  position: relative;
}

.table .row .column {
  padding: 2.2rem 0;
}

.table .bottom {
  display: -webkit-box;
  display: flex;
  -webkit-box-align: stretch;
  align-items: stretch;
  border-radius: 0px 0px 8px 8px;
}

.table .bottom .column {
  font-weight: 700;
  color: #44DCD3;
  padding: 3.8rem 0 3.2rem;
}

.plans__box {
  margin-bottom: 30rem;
}

.plans__box > .title {
  margin-bottom: 4rem;
  color: #191919;
  font-weight: 500;
}

.plans {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  column-gap: 30px;
  margin-bottom: 30px;
}

.plan {
  position: relative;
  padding: 50px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  border-radius: 10px;
  background-color: #191919;
  min-height: 545px;
}

.plan > .title {
  font-size: 3rem;
  font-weight: 300;
  line-height: 1;
  text-align: left;
  margin-bottom: 5rem;
}

.plan > img {
  margin-bottom: 3rem;
  position: absolute;
  bottom: 100px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  width: 90%;
}

.plan:nth-child(1) > img {
  width: 80%;
}
.plan:nth-child(3) > img {
  width: 50%;
}

.plan .price {
  font-size: 3rem;
  font-weight: 700;
  line-height: 1;
  color: #44DCD3;
}

/* ------------ */
.plans-bottom {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.plans-bottom .item {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 170px;
}

.plans-bottom .text {
  font-size: 1.8rem;
  line-height: 130%;
  color: #FFF;

  max-width: 70%;
  position: relative;
  z-index: 5;
}

.plans-bottom .item .img-lg {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

@media screen and (max-width: 768px) {
  .plans {
    display: flex;
    flex-direction: column;
    row-gap: 10px;
    margin-bottom: 30px;
  }
  .plan {
    padding: 32px;
    min-height: 400px;
  }
  .plan > img {
    bottom: 60px;
  }
  .plans-bottom {
    display: flex;
    flex-direction: column;
    row-gap: 10px;
  }
  .plans-bottom .item {
    border-radius: 10px;
    background-color: #191919;
    padding: 32px;
  }
  .plans-bottom .item .text {
    border-radius: 10px;
    background-color: #191919;
    font-size: 16px;
    max-width: 100%;
  }
  .plans-bottom .item .img-lg {
    display: none;
  }
}
/* ------------ */

.dillers-section {
  color: #191919;
  overflow: hidden;
  padding-bottom: 9rem;
}

@media screen and (max-width: 575px) {
  .dillers-section {
    text-align: left;
    background-image: url("../img/dillers/xs/bg.png");
    background-position: bottom;
    background-size: cover;
  }
}

.dillers-section .t-title {
  color: #191919;
  text-align: center;
}

@media screen and (max-width: 575px) {
  .dillers-section .t-title {
    text-align: left;
    font-size: 16px;
    padding-top: 20px;
  }
}

.dillers-section .t-subtitle {
  margin: 8px 0 5.8rem;
  color: #191919;
  text-align: center;
}

@media screen and (max-width: 575px) {
  .dillers-section .t-subtitle {
    text-align: left;
    margin-bottom: 0rem;
  }
}

.dillers__box {
  display: -webkit-box;
  display: flex;
  -webkit-box-align: start;
  align-items: flex-start;
  -webkit-box-pack: justify;
  justify-content: space-between;
}

@media screen and (max-width: 991px) {
  .dillers__box {
    display: block;
  }
}

.dillers__left .title {
  margin-bottom: 3.5rem;
  font-size: 3.6rem;
  line-height: 100%;
}

@media screen and (max-width: 991px) {
  .dillers__left .title {
    text-align: center;
    font-size: 18px;
  }

  .dillers__left .title br {
    display: none;
  }
}

.mobile-documents {
  margin: 30px 0 0;
}

.mobile-documents .dillers__slider {
  overflow-x: scroll;
}

.mobile-documents .dillers__documents {
  max-width: none;
  width: 1300px;
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
  align-items: center;
  -webkit-box-pack: start;
  justify-content: flex-start;
  flex-wrap: nowrap;
  padding-left: 10vw;
}

.mobile-documents .dillers__documents a {
  width: 250px;
  display: block;
  margin: 0 !important;
  margin-right: 15px !important;
  -webkit-filter: drop-shadow(0px 0px 10px rgba(0, 0, 0, 0.05));
  filter: drop-shadow(0px 0px 10px rgba(0, 0, 0, 0.05));
  border-radius: 0;
}

.mobile-documents .dillers__documents a img {
  width: 100%;
}

.dillers__documents {
  display: -webkit-box;
  display: flex;
  max-width: 32rem;
  flex-wrap: wrap;
}

@media screen and (max-width: 991px) {
  .dillers__documents {
    -webkit-box-pack: center;
    justify-content: center;
    margin: 0 auto;
  }
}

.dillers__documents .item {
  display: -webkit-box;
  display: flex;
  flex-wrap: wrap;
}

.dillers__documents a {
  border-radius: 10px;
  margin-right: 2rem;
  margin-bottom: 2rem;
}

.dillers__documents a:nth-child(2n) {
  margin-right: 0;
}

.dillers__documents img {
  width: 14.3rem;
  -webkit-transition: -webkit-transform 420ms cubic-bezier(0, 0, 0, 1);
  transition: -webkit-transform 420ms cubic-bezier(0, 0, 0, 1);
  transition: transform 420ms cubic-bezier(0, 0, 0, 1);
  transition: transform 420ms cubic-bezier(0, 0, 0, 1), -webkit-transform 420ms cubic-bezier(0, 0, 0, 1);
}

.dillers__documents a:hover img {
  -webkit-transform: scale(0.95);
  transform: scale(0.95);
}

.dillers__right {
  -webkit-box-flex: 1;
  flex-grow: 1;
  position: relative;
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: start;
  justify-content: flex-start;
  padding-left: 7rem;
}

@media screen and (max-width: 991px) {
  .dillers__right {
    margin-top: 40px;
  }
}

@media screen and (max-width: 767px) {
  .dillers__right {
    padding: 0;
    margin-top: 25px;
    display: block;
  }
}

.list__container {
  max-width: 100%;
  position: relative;
}

.list__container .arrow {
  display: none;
  position: absolute;
  top: 50%;
  width: 10px;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

@media screen and (max-width: 767px) {
  .list__container .arrow {
    display: block;
  }
}

.list__container .arrow-left {
  left: 0;
}

.list__container .arrow-right {
  right: 0;
}

@media screen and (max-width: 767px) {
  .list__container {
    padding: 0 20px;
  }
}

@media screen and (max-width: 767px) {
  .dillers__list {
    width: 100%;
    max-width: 100%;
  }
}

.dillers__list .item {
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
  align-items: center;
  -webkit-box-pack: end;
  justify-content: flex-end;
  text-align: right;
  margin-bottom: 3rem;
}

@media (max-width: 1500px) {
  .dillers__list .item {
    margin-bottom: 2rem;
  }
}

@media screen and (max-width: 767px) {
  .dillers__list .item {
    margin: 0 !important;
    -webkit-box-pack: center;
    justify-content: center;
    padding-right: 10px;
  }

  .dillers__list .item img {
    width: 80px;
    -webkit-box-ordinal-group: 1;
    order: 0;
  }

  .dillers__list .item .text {
    -webkit-box-ordinal-group: 2;
    order: 1;
  }
}

.dillers__list .item2 {
  margin-right: 7rem;
}

.dillers__list .item3 {
  margin-right: 8.3rem;
}

.dillers__list .item4 {
  margin-right: 7rem;
}

.dillers__list .text {
  font-size: 1.6rem;
  line-height: 2.1rem;
  margin-right: 1.3rem;
}

@media screen and (max-width: 767px) {
  .dillers__list .text {
    text-align: left;
    font-size: 16px;
    line-height: 1.4;
    margin: 0;
    margin-left: 10px;
  }
}

.dillers__photo {
  position: absolute;
  left: 50%;
  top: 2%;
  width: 55.5rem;
}

@media (max-width: 1500px) {
  .dillers__photo {
    left: 51.5%;
    top: 10%;
  }
}

@media (max-width: 1300px) {
  .dillers__photo {
    width: 50rem;
    left: 45.5%;
    top: 13%;
  }
}

@media screen and (max-width: 991px) {
  .dillers__photo {
    position: relative;
    top: auto;
    width: 100%;
    left: 35%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    margin: 40px 0 75px;
  }
}

@media screen and (max-width: 767px) {
  .dillers__photo {
    left: 50%;
  }
}

.dillers__photo .main {
  position: relative;
  z-index: 3;
}

.dillers__photo .ellipse {
  max-width: none;
  position: absolute;
  left: 49%;
  top: 53%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  width: 133%;
}

.gallery-section {
  margin-top: -40px;
  padding: 14rem 0 0;
  position: relative;
}

.gallery-section .container {
  position: relative;
  z-index: 5;
}

.gallery-section .t-title {
  text-align: center;
  margin: 0;
}

.gallery-section .t-subtitle {
  text-align: center;
  margin: 5px 0 2.9rem;
}

.gallery__warning {
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
  align-items: center;
  -webkit-box-pack: center;
  justify-content: center;
  position: relative;
}

.gallery__warning .icon {
  width: 20.5rem;
  position: relative;
  z-index: 5;
}

@media screen and (max-width: 575px) {
  .gallery__warning .icon {
    width: 80px;
  }
}

.gallery__warning .bg-text {
  position: absolute;
  left: 52%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  width: 98rem;
}

@media screen and (max-width: 575px) {
  .gallery__warning .bg-text {
    display: none;
  }
}

.gallery__warning .text {
  z-index: 5;
  margin-left: 2rem;
  font-size: 2.4rem;
  line-height: 3rem;
  color: #EEEEEE;
}

@media screen and (max-width: 575px) {
  .gallery__warning .text {
    font-size: 14px;
    line-height: 1.4;
  }
}

.gallery__box {
  margin: 4rem 0 9rem;
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: justify;
  justify-content: space-between;
  flex-wrap: wrap;
}

.gallery__box .item {
  border-radius: 10px;
  height: 25rem;
  width: 37rem;
  margin-bottom: 3rem;
}

@media screen and (max-width: 991px) {
  .gallery__box .item {
    width: 32%;
    height: 20rem;
    margin-bottom: 2%;
  }
}

@media screen and (max-width: 575px) {
  .gallery__box .item {
    width: 48%;
    margin-bottom: 4%;
    border-radius: 5px;
    height: 100px;
  }
}

.gallery__box .item .img {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  -webkit-transition: 320ms;
  transition: 320ms;
}

.gallery__box .item:hover .img {
  -webkit-transform: scale(1.04);
  transform: scale(1.04);
}

.material-section {
  padding: 14.5rem 0 10.5rem;
  position: relative;
}

@media screen and (max-width: 575px) {
  .material-section {
    text-align: center;
  }
}

.material-section .container {
  position: relative;
  z-index: 4;
}

@media screen and (max-width: 575px) {
  .material-section .container {
    padding: 0;
  }
}

.material-section .material-img {
  position: absolute;
  right: 0;
  top: 7rem;
  width: 135rem;
}

@media screen and (max-width: 575px) {
  .material-section .material-img {
    display: none;
  }
}

.material-section .t-title {
  color: #191919;
}

@media screen and (max-width: 575px) {
  .material-section .t-title {
    text-align: center;
  }
}

.material-section .t-subtitle {
  color: #191919;
  margin-top: .6rem;
}

.material__form {
  margin: 5.5rem 0 3rem;
  width: 50rem;
  padding: 5rem 5rem 4.7rem;
  position: relative;
  background-color: #191919;
  background-size: 100% 100%;
  background-repeat: no-repeat;
  border-radius: 10px;
}

@media screen and (max-width: 767px) {
  .material__form {
    width: 70%;
    margin-left: auto;
    margin-right: auto;
  }
}

@media screen and (max-width: 575px) {
  .material__form {
    width: 100%;
    padding: 25px 20px 35px;
    margin-bottom: 10px;
    margin-top: 25px;
    text-align: left;
  }
}

.material__form .form__title {
  margin-bottom: 4rem;
  font-size: 3.6rem;
  font-weight: 400;
  line-height: 100%;
  padding-left: 2rem;
}

@media screen and (max-width: 575px) {
  .material__form .form__title {
    text-align: left;
    padding-left: 8px;
    font-size: 2.8rem;
  }

  .material__form .form__title br {
    display: none;
  }
}

@media screen and (max-width: 575px) {
  .material__form .intro__notice {
    padding-left: 10px;
    -webkit-box-pack: start;
    justify-content: flex-start;
    font-size: 13px;
  }
}

@media screen and (max-width: 767px) {
  .material__form .t-btn {
    width: 100%;
  }

  .material__form .t-btn .button__shadow {
    display: none;
  }
}

.material__box {
  display: -webkit-box;
  display: flex;
  flex-wrap: wrap;
  -webkit-box-align: stretch;
  align-items: stretch;
  -webkit-box-pack: justify;
  justify-content: space-between;
  row-gap: 30px;
  margin-top: 4rem;
}

@media screen and (max-width: 991px) {
  .material__box {
    flex-wrap: wrap;
  }
}

@media screen and (max-width: 767px) {
  .material__box {
    width: 70%;
    margin: 0 auto;
  }
}

@media screen and (max-width: 575px) {
  .material__box {
    width: 100%;
  }
}

.material__box .item {
  border-radius: 10px;
  padding: 5rem 5rem;
  position: relative;
  overflow: hidden;
  height: 54rem;
  width: 31.8%;
  background-size: contain;
  background-position: bottom center;
  background-repeat: no-repeat;
  background-color: #191919;
  border-radius: 10px;
}

.material__box .item1 {
  background-image: url('../img/material/1.png');
}
.material__box .item2 {
  background-image: url('../img/material/2.png');
}
.material__box .item3 {
  background-image: url('../img/material/3.png');
}
.material__box .item4 {
  background-image: url('../img/material/4.png');
}
.material__box .item5 {
  background-image: url('../img/material/5.png');
}
.material__box .item6 {
  background-image: url('../img/material/6.png');
}

@media screen and (max-width: 991px) {
  .material__box .item {
    width: 48%;
    margin-bottom: 3rem;
  }
}

@media screen and (max-width: 767px) {
  .material__box .item {
    width: 100%;
    margin-bottom: 10px;
    height: 370px;
    text-align: left;
    padding: 30px 35px;
    padding-right: 15px;
  }
}

.material__box .item .item-bg {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-size: 100% 100%;
  background-repeat: no-repeat;
  z-index: 1;
}

@media screen and (max-width: 767px) {
  .material__box .item .item-bg {
    display: none;
  }
}

.material__box .item .item-bg-xs {
  display: none;
}

@media screen and (max-width: 767px) {
  .material__box .item .item-bg-xs {
    display: block;
  }
}

.material__box .item .title {
  font-size: 3.6rem;
  line-height: 100%;
  color: #fff;
  margin-bottom: 2rem;
  position: relative;
  z-index: 4;
}

@media screen and (max-width: 767px) {
  .material__box .item .title {
    font-size: 22px;
    line-height: 1.1;
    width: 70%;
  }

  .material__box .item .title br {
    display: none;
  }
}

.material__box .item .text {
  font-size: 1.6rem;
  line-height: 2.4rem;
  position: relative;
  z-index: 4;
}

@media screen and (max-width: 991px) {
  .material__box .item .text {
    font-size: 2rem;
    line-height: 2.8rem;
    width: 70%;
  }

  .material__box .item .text br {
    display: none;
  }
}

@media screen and (max-width: 767px) {
  .material__box .item3 {
    height: 425px;
  }
}

@media screen and (max-width: 767px) {
  .material__box .item3 .text {
    width: 100%;
  }
}

@media screen and (max-width: 991px) {
  .material__box {
    row-gap: 10px;
  }
  .material__box .item {
    padding-left: 20px;
  }
  .material__box .item.item5 {
    min-height: 460px;
  }
  .material__box .item .text {
    width: 90%;
  }
}

@-webkit-keyframes rotate2 {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  100% {
    -webkit-transform: rotate(-360deg);
    transform: rotate(-360deg);
  }
}

@keyframes rotate2 {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  100% {
    -webkit-transform: rotate(-360deg);
    transform: rotate(-360deg);
  }
}

.reviews-section {
  text-align: center;
  padding-bottom: 11rem;
  position: relative;
}

@media screen and (max-width: 575px) {
  .reviews-section {
    background-image: url("../img/reviews/xs/bg.png");
    background-size: cover;
  }
}

.reviews-section .bsb-ellipse {
  width: 170px;
  margin: 0 auto 30px;
  position: relative;
  margin-bottom: 0;
}

@media screen and (max-width: 575px) {
  .reviews-section .bsb-ellipse {
    display: block;
    margin-bottom: 30px;
  }
}

.reviews-section .bsb-ellipse .main {
  width: 100%;
  -webkit-animation: rotate2 7s infinite linear;
  animation: rotate2 7s infinite linear;
}

.reviews-section .center {
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

@media screen and (max-width: 575px) {
  .reviews-section .media-section {
    margin-top: 4rem;
  }
}

.reviews-section .partners__title {
  font-size: 22px;
}

.reviews-section .t-title {
  color: #191919;
}

@media screen and (max-width: 575px) {
  .reviews-section .t-title {
    font-size: 18px;
  }
}

.reviews-section .t-subtitle {
  color: #191919;
  margin-top: .5rem;
}

@media screen and (max-width: 575px) {
  .reviews-section .t-subtitle {
    width: 80%;
    margin: 10px auto 0;
    font-size: 18px;
    line-height: 1.35;
  }
}

.reviews-section .container {
  position: relative;
  z-index: 4;
}

.reviews__tabs {
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
  align-items: center;
  -webkit-box-pack: center;
  justify-content: center;
  margin-bottom: 4rem;
  margin-top: 5rem;
}

@media screen and (max-width: 575px) {
  .reviews__tabs {
    -webkit-box-pack: justify;
    justify-content: space-between;
    padding: 0 10px;
  }
}

.reviews__tabs .border {
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

@media screen and (max-width: 575px) {
  .reviews__tabs .border {
    height: 40px;
    width: 100%;
  }
}

.reviews__tabs .border.active {
  opacity: 0;
}

.reviews__tabs .tab {
  margin: 0 1.5rem;
  width: 30rem;
  height: 6rem;
  position: relative;
  font-size: 1.4rem;
  font-weight: 600;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: #C4C4C4;
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
  align-items: center;
  -webkit-box-pack: center;
  justify-content: center;
  cursor: pointer;
}

@media screen and (max-width: 575px) {
  .reviews__tabs .tab {
    width: 32%;
    margin: 0;
    height: 35px;
  }
}

.reviews__tabs .tab:hover,
.reviews__tabs .tab.active {
  color: #44DCD3;
}

.reviews__tabs .tab:hover .border.gray,
.reviews__tabs .tab.active .border.gray {
  opacity: 0;
}

.reviews__tabs .tab:hover .border.active,
.reviews__tabs .tab.active .border.active {
  opacity: 1;
}

.slick-track {
  display: -webkit-box;
  display: flex;
  -webkit-box-align: stretch;
  align-items: stretch;
}

.space {
  outline: none;
  height: inherit;
}

@media (min-width: 767px) {
  .space {
    -webkit-transform: scale(0.68);
    transform: scale(0.68);
    -webkit-transition: 520ms;
    transition: 520ms;
    -webkit-filter: grayscale(100%);
    filter: grayscale(100%);
    opacity: 0.5;
  }

  .space.slick-current {
    -webkit-transform: scale(1.05);
    transform: scale(1.05);
    -webkit-filter: none;
    filter: none;
    opacity: 1;
  }
}

.video-slider .item {
  text-align: center;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
  align-items: center;
  -webkit-box-pack: center;
  justify-content: center;
}

@media screen and (max-width: 767px) {
  .video-slider .item {
    padding-right: 10px;
  }

  .video-slider .item:first-child {
    padding-left: 10px;
  }
}

.video-slider .item .main {
  display: block;
  margin: 0 auto;
  width: 75rem;
  height: 45rem;
  border-radius: 15px !important;
  -o-object-fit: cover;
  object-fit: cover;
}

.video-slider .item .main.gray {
  -webkit-filter: grayscale(100%) !important;
  filter: grayscale(100%) !important;
}

@media screen and (max-width: 991px) {
  .video-slider .item .main {
    height: 40rem;
  }
}

@media screen and (max-width: 767px) {
  .video-slider .item .main {
    border-radius: 5px !important;
    height: 40rem;
  }
}

@media screen and (max-width: 575px) {
  .video-slider .item .main {
    height: 30rem;
  }
}

.video-slider .item .play {
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  width: 9.5rem;
  -webkit-transition: 220ms;
  transition: 220ms;
}

@media screen and (max-width: 767px) {
  .video-slider .item .play {
    width: 45px;
  }
}

.video-slider .item .play:hover {
  -webkit-transform: translate(-50%, -50%) scale(1.05);
  transform: translate(-50%, -50%) scale(1.05);
}

.media-section {
  padding: 0;
  max-width: 100%;
  margin-top: 0;
}

@media screen and (max-width: 767px) {
  .media-section {
    display: block;
  }
}

.media-section .slick-slider {
  max-width: 100%;
  width: 100%;
}

.media-section .partners__title {
  color: #191919;
}

@media screen and (max-width: 767px) {
  .media-section .partners__title {
    text-align: center;
    margin-bottom: 15px;
  }
}

.media-section .item {
  border-right-color: #C4C4C4;
}

@media screen and (max-width: 767px) {
  .media-section .item {
    border-right: 1px solid #C4C4C4 !important;
  }
}

.media-section .item1 img {
  width: 5.6rem;
}

@media screen and (max-width: 767px) {
  .media-section .item1 img {
    width: 52px;
  }
}

.media-section .item2 img {
  width: 9.6rem;
}

@media screen and (max-width: 767px) {
  .media-section .item2 img {
    width: 90px;
  }
}

.media-section .item3 img {
  width: 14rem;
}

@media screen and (max-width: 767px) {
  .media-section .item3 img {
    width: 120px;
  }
}

.media-section .item4 img {
  width: 8.2rem;
}

@media screen and (max-width: 767px) {
  .media-section .item4 img {
    width: 78px;
  }
}

.faq-section {
  padding-bottom: 9rem;
}

@media screen and (max-width: 767px) {
  .faq-section {
    background-image: url("../img/faq/xs/bg.png");
    background-size: cover;
  }
}

@media screen and (max-width: 767px) {
  .faq-section .container {
    max-width: 95%;
  }
}

.faq-section .t-title {
  color: #191919;
  text-align: center;
  margin-bottom: 5.4rem;
}

@media screen and (max-width: 767px) {
  .faq-section .t-title {
    margin-bottom: 4rem;
  }
}

.faq-section .item {
  width: 96.5%;
  margin-bottom: 3rem;
}

@media screen and (max-width: 767px) {
  .faq-section .item {
    background: #191919;
    border-radius: 10px;
    padding: 20px;
    margin-bottom: 10px;
    width: 100%;
  }
}

.faq-section .item-head {
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  justify-content: space-between;
  background: #191919;
  -webkit-backdrop-filter: blur(4px);
  backdrop-filter: blur(4px);
  padding: 3.5rem 5rem;
  padding-right: 0;
  position: relative;
  border-radius: 10px 0 0 10px;
  cursor: pointer;
  -webkit-transition: 320ms;
  transition: 320ms;
}

@media screen and (max-width: 767px) {
  .faq-section .item-head {
    border-radius: 10px;
    background: none;
    padding: 0;
    -webkit-box-align: start;
    align-items: flex-start;
  }
}

.faq-section .item-head:hover {
  color: #44DCD3;
}

.faq-section .item-head .bg-right {
  position: absolute;
  left: 100%;
  top: 0;
  height: 100%;
}

@media screen and (max-width: 767px) {
  .faq-section .item-head .bg-right {
    display: none;
  }
}

.faq-section .title {
  font-size: 2.4rem;
  line-height: 3rem;
  padding-right: 29rem;
}

@media screen and (max-width: 767px) {
  .faq-section .title {
    padding-right: 0;
    font-size: 16px;
    line-height: 1.3;
    padding: 0;
    width: 85%;
  }
}

.faq-section .arrow {
  width: 5rem;
  -webkit-transition: 220ms;
  transition: 220ms;
}

@media screen and (max-width: 767px) {
  .faq-section .arrow {
    width: 30px;
    flex-shrink: 0;
  }
}

.faq-section .item-content {
  display: none;
}

.faq-section .text {
  padding: 3rem 8.5rem 5rem;
  padding-right: 13rem;
  font-size: 2.4rem;
  line-height: 3rem;
  color: #191919;
}

@media screen and (max-width: 767px) {
  .faq-section .text {
    padding: 20px 0 0;
    color: #fff;
    font-size: 16px;
    line-height: 1.4;
  }
}

.faq-section .item.active .title {
  color: #44DCD3;
}

.faq-section .item.active .arrow {
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}

.third-box-container {
  position: relative;
  margin-top: -40px;
}

.third-box-container .bg-lg {
  background-size: contain;
}

@media (max-width: 1300px) {
  .third-box-container .bg-lg {
    background-size: cover;
  }
}

@media screen and (max-width: 575px) {
  .third-box-container .bg-lg {
    display: none;
  }
}

#map {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}

@media screen and (max-width: 991px) {
  #map {
    position: static;
    height: 340px;
  }
}

ymaps {
  filter: grayscale(1);
  -ms-filter: grayscale(1);
  -webkit-filter: grayscale(1);
  -moz-filter: grayscale(1);
  -o-filter: grayscale(1);
}

.map-section {
  padding: 29rem 0 21rem;
  padding-left: 37rem;
  background: #212121;
}

@media screen and (max-width: 991px) {
  .map-section {
    padding: 0;
  }
}

.map-item {
  width: 45rem;
  background-repeat: no-repeat;
  background-size: 100% 100%;
  background-position: bottom center;
  border-radius: 10px;
  text-align: center;
  padding: 8.4rem 10rem 10rem;
  position: relative;
  z-index: 8;
}

@media screen and (max-width: 991px) {
  .map-item {
    width: 100%;
    background: #1A1A1A !important;
    padding: 40px 25px;
  }
}

@media screen and (max-width: 991px) {
  .map-item .t-title {
    font-size: 18px;
  }
}

.map-item .t-subtitle {
  line-height: 1;
}

.map-item .text {
  font-size: 2.4rem;
  line-height: 3rem;
  color: #7F7F7F;
}

@media screen and (max-width: 991px) {
  .map-item .text {
    font-size: 17px;
    line-height: 1.3;
  }
}

.map-item .text1 {
  margin: 5rem 0 2rem;
}

@media screen and (max-width: 991px) {
  .map-item .text1 {
    margin: 20px 0;
  }
}

.map-item .text2 {
  margin: 3.8rem 0 2rem;
}

@media screen and (max-width: 991px) {
  .map-item .text2 {
    margin: 40px 0 15px;
  }
}

.map-item .header__phone a {
  margin-bottom: .8rem;
}

.map-item .header__messengers {
  padding: 0;
  margin: 0 auto;
}

.map-item .header__messengers a:last-child {
  margin-right: 0;
}

@media screen and (max-width: 991px) {
  .map-item .header__phone .phone {
    font-size: 22px;
  }

  .map-item .header__phone .phone__button {
    margin: 0;
    font-size: 17px;
  }
}

.thanks-section {
  padding: 10.5rem 0 0;
  height: 118rem;
  text-align: center;
  position: relative;
}

.thanks-section .top,
.thanks-section .bottom {
  position: absolute;
  display: none;
}

@media screen and (max-width: 767px) {

  .thanks-section .top,
  .thanks-section .bottom {
    display: block;
  }
}

.thanks-section .top {
  top: 0;
  left: 0;
  width: 100%;
}

.thanks-section .bottom {
  bottom: 0;
  left: 0;
  width: 100%;
}

@media screen and (max-width: 767px) {
  .thanks-section {
    height: auto;
  }
}

@media screen and (max-width: 767px) {
  .thanks-section .bg-lg {
    display: none;
  }
}

.thanks-section .t-title {
  color: #191919;
}

.thanks-section .t-subtitle {
  color: #191919;
  margin-top: 4px;
}

@media screen and (max-width: 767px) {
  .thanks-section .t-subtitle {
    font-size: 15px;
  }
}

.thanks-section .container {
  position: relative;
  z-index: 4;
}

.thanks__box {
  margin: 6rem 0 0;
  text-align: left;
  display: -webkit-box;
  display: flex;
  -webkit-box-align: start;
  align-items: flex-start;
  -webkit-box-pack: justify;
  justify-content: space-between;
}

@media screen and (max-width: 767px) {
  .thanks__box {
    display: block;
  }
}

.thanks__box .item {
  display: -webkit-box;
  display: flex;
  -webkit-box-align: start;
  align-items: flex-start;
  -webkit-box-pack: start;
  justify-content: flex-start;
}

@media screen and (max-width: 767px) {
  .thanks__box .item {
    text-align: center;
    -webkit-box-pack: center;
    justify-content: center;
  }
}

@media screen and (max-width: 575px) {
  .thanks__box .item {
    -webkit-box-pack: start;
    justify-content: flex-start;
    text-align: left;
  }
}

.thanks__box .item span {
  margin-left: 20px;
  font-size: 2.4rem;
  line-height: 3rem;
  color: #191919;
  margin-top: -4px;
}

@media screen and (max-width: 767px) {
  .thanks__box .item span {
    font-size: 16px;
    margin-left: 10px;
    line-height: 1.35;
  }
}

@media screen and (max-width: 767px) {
  .thanks__left {
    margin-bottom: 100vw;
  }
}

.thanks__left .gray-btn {
  width: 28rem;
  margin-top: 2.3rem;
  position: relative;
}

@media screen and (max-width: 767px) {
  .thanks__left .gray-btn {
    width: 100%;
    margin-top: 15px;
  }
}

@media screen and (max-width: 767px) {
  .thanks__left .gray-btn .lg {
    display: none;
  }
}

.thanks__left .gray-btn .xs {
  display: none;
}

@media screen and (max-width: 767px) {
  .thanks__left .gray-btn .xs {
    display: block;
  }
}

.thanks__left .gray-btn img {
  width: 100%;
}

.thanks__left .gray-btn span {
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  font-size: 1.4rem;
  color: #2B2B2B;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  font-weight: 600;
  width: 100%;
  text-align: center;
  padding: 0;
}

.thanks__center {
  font-size: 3.6rem;
  line-height: 100%;
  color: #191919;
  margin-top: 2rem;
  padding-right: 3.5rem;
}

@media screen and (max-width: 767px) {
  .thanks__center {
    font-size: 36px;
    text-align: center;
    padding: 0 0 15px;
  }
}

@media screen and (max-width: 767px) {
  .thanks__right {
    padding-bottom: 100vw;
  }
}

.thanks__right .intro__notice span {
  color: #7F7F7F;
}

.thanks__right .item {
  margin-bottom: 2.3rem;
}

.thanks__right .t-btn {
  width: 28rem;
  margin-left: auto;
}

@media screen and (max-width: 767px) {
  .thanks__right .t-btn {
    width: 100%;
  }
}

.thanks__right .t-btn .button__text {
  margin-top: 3px;
}

@media screen and (max-width: 767px) {
  .thanks__right .t-btn .lg {
    display: none;
  }
}

.thanks__right .t-btn .xs {
  display: none;
}

@media screen and (max-width: 767px) {
  .thanks__right .t-btn .xs {
    display: block;
    margin-right: auto;
    margin-left: auto;
    display: block;
  }
}

.first-tab {
  margin-bottom: 33px;
}

.second-tab {
  margin-bottom: 11rem;
}

.third-tab {
  margin-bottom: 5rem;
}

.third-tab .reviews__documents {
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
  align-items: center;
  -webkit-box-pack: center;
  justify-content: center;
}

.third-tab .reviews__documents a {
  display: block;
  width: 26rem;
  margin: 0 1.5rem;
  border-radius: 10px;
  overflow: hidden;
  -webkit-filter: drop-shadow(0px 0px 5px rgba(0, 0, 0, 0.05));
  filter: drop-shadow(0px 0px 5px rgba(0, 0, 0, 0.05));
}

.third-tab img {
  -webkit-transition: -webkit-transform 420ms cubic-bezier(0, 0, 0, 1);
  transition: -webkit-transform 420ms cubic-bezier(0, 0, 0, 1);
  transition: transform 420ms cubic-bezier(0, 0, 0, 1);
  transition: transform 420ms cubic-bezier(0, 0, 0, 1), -webkit-transform 420ms cubic-bezier(0, 0, 0, 1);
}

.third-tab a:hover img {
  -webkit-transform: scale(1.05);
  transform: scale(1.05);
}

@media screen and (max-width: 575px) {
  .third-tab .container {
    padding: 0;
    max-width: 100%;
  }
}

@media screen and (max-width: 575px) {
  .third-tab .reviews__documents {
    max-width: none;
    width: 700px;
    display: -webkit-box;
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    -webkit-box-pack: start;
    justify-content: flex-start;
    flex-wrap: nowrap;
    padding-left: 10px;
  }

  .third-tab .reviews__documents a {
    width: 160px;
    display: block;
    margin: 0 !important;
    margin-right: 15px !important;
    -webkit-filter: drop-shadow(0px 0px 10px rgba(0, 0, 0, 0.05));
    filter: drop-shadow(0px 0px 10px rgba(0, 0, 0, 0.05));
    border-radius: 0;
  }

  .third-tab .reviews__documents a img {
    width: 100%;
  }
}

.tab-item {
  display: none;
}

.tab-item.active {
  display: block;
}

.whatsapp-slider-container {
  text-align: center;
  width: 30rem;
  margin: 0 auto;
  position: relative;
}

@media screen and (max-width: 575px) {
  .whatsapp-slider-container .slider-arrow {
    display: -webkit-box !important;
    display: flex !important;
  }
}

.whatsapp-slider-container .right-arrow {
  left: 101%;
  top: 50%;
}

.whatsapp-slider-container .left-arrow {
  top: 50%;
  right: 101%;
}

.whatsapp-slider-container .item {
  width: 100%;
}

.animate {
  pointer-events: none;
  position: absolute;
}

@media screen and (max-width: 991px) {
  .animate {
    display: none;
  }
}

@media screen and (max-width: 575px) {
  .animate {
    display: block;
  }
}

.key {
  width: 54rem;
  right: -21rem;
  top: 4rem;
  -webkit-animation: animate_one 5s infinite;
  animation: animate_one 5s infinite;
}

@media screen and (max-width: 575px) {
  .key {
    width: 28rem;
    right: -11rem;
    top: 8rem;
  }
}

.lock {
  width: 32rem;
  left: -9rem;
  bottom: 10rem;
  z-index: 3;
  -webkit-animation: animate_one 3s infinite;
  animation: animate_one 3s infinite;
}

@media screen and (max-width: 575px) {
  .lock {
    bottom: auto;
    left: -6rem;
    top: -12rem;
    width: 17rem;
  }
}

.pult {
  width: 18rem;
  right: 40rem;
  top: -17rem;
  z-index: 3;
  -webkit-animation: animate_one 4s infinite;
  animation: animate_one 4s infinite;
}

@media (max-width: 1200px) {
  .pult {
    right: 14vw;
  }
}

@media screen and (max-width: 575px) {
  .pult {
    display: none;
  }
}

.sensor {
  left: -11rem;
  bottom: 14rem;
  width: 32rem;
  -webkit-animation: animate_two 4s infinite;
  animation: animate_two 4s infinite;
}

@media screen and (max-width: 575px) {
  .sensor {
    left: -8rem;
    bottom: 16rem;
    width: 21rem;
  }
}

.pult2 {
  width: 16rem;
  left: 37rem;
  top: -9rem;
  -webkit-animation: animate_one 4s infinite;
  animation: animate_one 4s infinite;
}

@media screen and (max-width: 575px) {
  .pult2 {
    right: -5rem;
    left: auto;
    top: 4rem;
  }
}

.animate.button {
  width: 31rem;
  top: 75rem;
  left: -9.5rem;
  -webkit-animation: animate_two 4s infinite;
  animation: animate_two 4s infinite;
}

@media screen and (max-width: 575px) {
  .animate.button {
    display: none;
  }
}

.lock2 {
  width: 33rem;
  right: -10rem;
  top: 25rem;
  -webkit-animation: animate_one 4s infinite;
  animation: animate_one 4s infinite;
}

@media (max-width: 1200px) {
  .lock2 {
    right: -13rem;
    top: 15rem;
  }
}

@media screen and (max-width: 575px) {
  .lock2 {
    top: 13rem;
    width: 20rem;
    right: -8rem;
  }
}

@-webkit-keyframes animate_one {
  0% {
    -webkit-transform: translateY(0) skewY(2deg);
    transform: translateY(0) skewY(2deg);
  }

  50% {
    -webkit-transform: translateY(-50px) skewY(-2deg);
    transform: translateY(-50px) skewY(-2deg);
  }

  100% {
    -webkit-transform: translateY(0) skewY(2deg);
    transform: translateY(0) skewY(2deg);
  }
}

@keyframes animate_one {
  0% {
    -webkit-transform: translateY(0) skewY(2deg);
    transform: translateY(0) skewY(2deg);
  }

  50% {
    -webkit-transform: translateY(-50px) skewY(-2deg);
    transform: translateY(-50px) skewY(-2deg);
  }

  100% {
    -webkit-transform: translateY(0) skewY(2deg);
    transform: translateY(0) skewY(2deg);
  }
}

@-webkit-keyframes animate_two {
  0% {
    -webkit-transform: translateY(0) skewY(2deg);
    transform: translateY(0) skewY(2deg);
  }

  50% {
    -webkit-transform: translateY(50px) skewY(-2deg);
    transform: translateY(50px) skewY(-2deg);
  }

  100% {
    -webkit-transform: translateY(0) skewY(2deg);
    transform: translateY(0) skewY(2deg);
  }
}

@keyframes animate_two {
  0% {
    -webkit-transform: translateY(0) skewY(2deg);
    transform: translateY(0) skewY(2deg);
  }

  50% {
    -webkit-transform: translateY(50px) skewY(-2deg);
    transform: translateY(50px) skewY(-2deg);
  }

  100% {
    -webkit-transform: translateY(0) skewY(2deg);
    transform: translateY(0) skewY(2deg);
  }
}

.text-section {
  -webkit-box-flex: 1;
  flex-grow: 1;
  padding: 17rem 0 6rem;
  text-align: left;
}

.overlay {
  display: none;
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 99;
  background: rgba(25, 25, 25, 0.7);
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
}

.overlay .overlay__inner {
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: flex;
  -webkit-box-align: start;
  align-items: flex-start;
  padding-top: 5rem;
  -webkit-box-pack: center;
  justify-content: center;
  overflow-y: auto;
}

@media screen and (max-width: 767px) {
  .overlay .overlay__inner {
    padding: 0;
  }
}

.overlay.active {
  display: block;
}

.modal {
  position: relative;
  display: none;
  position: fixed;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  z-index: 100;
}

.modal.active {
  display: block;
}

.modal[data-modal="video"] .video-content {
  width: 800px;
  height: 450px;
  background: #0c0b12;
}

@media screen and (max-width: 992px) {
  .modal[data-modal="video"] .video-content {
    width: 70vw;
    height: 40vw;
  }
}

@media screen and (max-width: 767px) {
  .modal[data-modal="video"] .video-content {
    width: 56vw;
    height: 36vw;
  }
}

@media screen and (max-width: 570px) {
  .modal[data-modal="video"] .video-content {
    width: 95vw;
    height: 57vw;
  }
}

.modal[data-modal="video"] iframe {
  width: 100%;
  height: 100%;
  border: 0;
  outline: none;
}

.modal[data-modal="video"] .modal__close {
  position: absolute;
  right: 0;
  top: -45px;
  width: 45px;
  height: 45px;
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
  align-items: center;
  -webkit-box-pack: center;
  justify-content: center;
  background: #0c0b12;
  cursor: pointer;
}

.modal[data-modal="video"] .modal__close .img-svg {
  width: 20px;
  height: 20px;
}

.modal[data-modal="video"] .modal__close .img-svg path {
  fill: #777777;
}

.modal[data-modal="video"] .modal__close:hover .img-svg path {
  fill: #fff;
}

@media screen and (max-width: 575px) {
  .callback {
    width: 100%;
  }
}

.callback .material__form {
  padding: 6rem 5rem 6rem;
}

@media screen and (max-width: 575px) {
  .callback .material__form {
    border-radius: 0;
  }
}

.callback .material__form .intro__notice {
  margin-bottom: 0;
}

@media screen and (max-width: 575px) {
  .callback .material__form .t-btn {
    width: 100%;
    margin: auto;
  }
}

.callback .gift {
  width: 15.6rem;
  position: absolute;
  top: 2.5rem;
  right: 5rem;
}

.callback .modal__close {
  position: absolute;
  right: 3rem;
  top: 3rem;
  cursor: pointer;
}

.callback .modal__close:hover path {
  fill: #44DCD3;
}

.callback .form__title {
  margin: 0;
  padding-left: 1rem;
}

.callback .form__subtitle {
  font-size: 1.8rem;
  padding: 14px 0 3.2rem;
  padding-left: 1rem;
}

#mobile__menu {
  z-index: 101;
  position: fixed;
  top: 0;
  right: 0;
  height: 100%;
  width: 0;
  overflow: hidden;
  -webkit-transition: 220ms;
  transition: 220ms;
}

@media screen and (max-width: 991px) {
  #mobile__menu.active {
    width: 360px;
  }
}

@media screen and (max-width: 575px) {
  #mobile__menu.active {
    width: 100%;
  }
}

#mobile__menu .content {
  padding: 116px 0 0;
  width: 100%;
}

@media screen and (max-width: 575px) {
  #mobile__menu .content {
    width: 100vw;
  }
}

#mobile__menu .menu-link {
  display: -webkit-box;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  flex-direction: column;
  -webkit-box-align: center;
  align-items: center;
  -webkit-box-pack: center;
  justify-content: center;
  font-size: 16px;
  line-height: 24px;
  text-align: center;
  color: #FFFFFF;
}

#mobile__menu .menu-link span {
  padding: 14px 0 12px;
}

#mobile__menu .header__messengers {
  margin: 30px auto 35px;
}

#mobile__menu .header__messengers .link {
  margin: 0 .5rem;
}

#mobile__menu .footer__item {
  text-align: center;
  margin: 20px 0;
}

#mobile__menu .footer__item .title {
  color: #fff;
  font-size: 1.4rem;
  margin-bottom: 5px;
}

@media screen and (max-width: 575px) {
  #mobile__menu .footer__item .title {
    font-size: 16px;
  }
}

#mobile__menu .footer__item .white {
  font-size: 1.6rem;
  line-height: 2rem;
  color: #DDDDDD;
}

@media screen and (max-width: 575px) {
  #mobile__menu .footer__item .white {
    font-size: 17px;
    line-height: 1.4;
    margin-top: 4px;
  }
}

#mobile__menu .footer__item a:hover {
  color: #44DCD3;
}

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

@media screen and (max-width: 575px) {
  .thanks-modal {
    width: 95%;
  }
}

@media screen and (max-width: 575px) {
  .thanks-modal .material__form {
    display: -webkit-box;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    flex-direction: column;
    -webkit-box-align: center;
    align-items: center;
    -webkit-box-pack: center;
    justify-content: center;
    padding-top: 3rem;
    padding-bottom: 3rem;
    height: 70vw;
    border-radius: 10px;
  }
}

.thanks-modal .form__title {
  text-align: center;
  margin-bottom: 1rem;
  font-size: 32px;
}

@media (max-width: 1500px) {
  .thanks-modal .form__title {
    font-size: 28px;
  }
}

@media screen and (max-width: 575px) {
  .thanks-modal .form__title {
    font-size: 3.2rem;
  }
}

.thanks-modal .form__subtitle {
  font-size: 20px;
  text-align: center;
}

@media screen and (max-width: 575px) {
  .thanks-modal .form__subtitle {
    font-size: 19px;
  }
}


@media screen and (min-width: 992px) and (max-width: 1600px) {
  .intro__advantages {
    height: 24rem;
  }
  .intro__advantages .list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px 10px;
  }
  .intro__advantages .list .item {
    justify-content: flex-start;
  }
  .material__box .item.item5, .material__box .item.item6 {
    min-height: auto;
  }
  .effeti__box .grid {
    gap: 10px;
    height: 600px;
  }
  .effeti__box .grid .item {
    padding: 15px;
  }
  .effeti__box .grid .button {
    margin-left: auto;
    margin-right: auto;
  }
  .intro__badge {
    max-width: 780px;
  }
}

@media screen and (max-width: 992px) {
  .effeti__box .grid {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: 10px;
    height: auto;
  }
  .effeti__box .list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px 20px;
  }
  .plans {
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 40px;
  }
  .plan {
    padding: 35px;
    min-height: 500px;
  }
  .plans-bottom {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }
  .plans-bottom .item .img-lg {
    display: none;
  }
  .plans-bottom .item {
    background-color: #1A1A1A;
    border-radius: 10px;
    min-height: 120px;
  }
  .material__box .item.item5,
  .material__box .item.item6 {
    min-height: 520px;
  }
  .howItWork__box .image {
    max-height: 320px;
  }
  .howItWork__box .content  {
    font-size: 16px;
  }
}

@media screen and (max-width: 768px) {
  .plan {
    min-height: 500px;
  }
  .plan:nth-child(3) > img {
    width: 40%;
  }
  .material__box .item.item5 {
    min-height: 500px;
  }
  .howItWork {
    transform: translate(-50%, calc(-50% + 20px));
  }
  .effeti__box .grid {
    grid-template-columns: 100%;
    grid-template-rows: repeat(4, 1fr);
    row-gap: 20px;
    height: auto;
  }
}

@media screen and (max-width: 1000px) {
  .material-section .t-subtitle {
    margin-bottom: 2rem;
  }
  .trigger-section .container {
    padding: 30px;
  }
  .effeti__box .grid .item {
    min-height: 440px;
    padding-bottom: 40px;
  }
  .effeti__box .grid .button {
    margin-left: auto;
    margin-right: auto;
  }
  .effeti__box .grid .button .border{
    height: 70px;
  }
  .dillers-section .t-title {
    padding-top: 2rem;
  }
  .plan > img {
    max-width: 320px;
  }
}

@media screen and (max-width: 1000px) {
  .effeti__box > .title {
    text-align: center;
    font-size: 2.4rem;
  }
 
  .effeti__box .grid .item {
    height: 295px;
    padding: 30px;
	  max-width: 100%;
  }
  .effeti__box .grid .item1 {
    grid-row: auto;
  }
  .effeti__box .grid .item2 {
    grid-row: auto;
  }
  .effeti__box .grid .button {
    margin-top: auto;
    width: 100%;
    text-align: center;
  }
  .effeti__box .list {
    padding: 0;
    display: flex;
    flex-direction: column;
    column-gap: 10px;
  }
  .effeti__box .list .item img {
    width: 40px;
    height: 40px;
  }
  .effeti__box .list .item {
    font-size: 15px;
  }
  .plans__box {
    margin-bottom: 2rem;
  }
  .plans__box > .title {
    text-align: center;
    padding-top: 4rem;
  }
}

/* Слайдер с баннером во втором экране */
.banner-slider-section {
  -webkit-box-flex: 1;
  flex-grow: 1;
  position: relative;
  padding: 17rem 0 6rem;
}

.banner-slider-container {
  text-align: center;
  width: 100%;
  max-width: 1080px;
  max-height: 607px;
  margin: 0 auto;
  position: relative;
}

.banner-slider-container .right-arrow {
  left: 101%;
  top: 50%;
}
.banner-slider-container .left-arrow {
  top: 50%;
  right: 101%;
}
.banner-slider .item-space {
  height: 607px;
}
.banner-slider-container .item {
  width: 100%;
}

@media screen and (max-width: 767px) {
  .banner-slider-container {
    height: 160px;
  }
  .banner-slider-container .banner-slider {
    margin-bottom: 0;
  }
  .banner-slider-container .slider-arrow {
    display: none;
  }
  .banner-slider-container .slick-dots {
    display: block !important;
  }
  .banner-slider .item-space,
  .banner-slider .item-space .item,
  .banner-slider .item-space .item img {
    height: 160px;
  }
  .banner-slider .item-space .item img {
    object-fit: cover;
  }
}

/* QR-code block */
.qr {
  padding-top: 3rem;
  padding-bottom: 10rem;
}

.qr .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px 40px;
}

.qr-code-button p {
  font-size: 2.2rem;
  text-align: center;
  color: #191919;
  margin-right: 2rem;
}

.qr-code-button .t-btn .button__inner {
  height: 8rem;
}

.qr-code-image {
  max-width: 300px;
}

#jGrowl {display:none}
.logo_wtext {
    display: flex;
    flex-direction: column;
    align-items: center;
    font-size: 24px;
    line-height: 1;
}

.button.modal__open > span {
  color: white !important;
}