@font-face {
  font-family: Halvar;
  font-style: normal;
  font-weight: 300;
  src: url(../fonts/HalvarBreit-Lt.ttf) format("truetype");
}

@font-face {
  font-family: Halvar;
  font-style: normal;
  font-weight: 400;
  src: url(../fonts/HalvarBreit-Rg.ttf) format("truetype");
}

@font-face {
  font-family: Halvar;
  font-style: normal;
  font-weight: 500;
  src: url(../fonts/HalvarBreit-Md.ttf) format("truetype");
}

@font-face {
  font-family: Halvar;
  font-style: normal;
  font-weight: 600;
  src: url(../fonts/HalvarBreit-Bd.ttf) format("truetype");
}

@font-face {
  font-family: Halvar;
  font-style: normal;
  font-weight: 700;
  src: url(../fonts/HalvarBreit-Bd.ttf) format("truetype");
}

@font-face {
  font-family: Halvar;
  font-style: normal;
  font-weight: 800;
  src: url(../fonts/HalvarBreit-XBd.ttf) format("truetype");
}

@font-face {
  font-family: Halvar;
  font-style: normal;
  font-weight: 900;
  src: url(../fonts/HalvarBreit-Blk.ttf) format("truetype");
}

@font-face {
  font-family: TRIAL Rooftop;
  font-style: normal;
  font-weight: 200;
  src: url(../fonts/TRIAL_Rooftop-Thin.ttf) format("truetype");
}

@font-face {
  font-family: TRIAL Rooftop;
  font-style: normal;
  font-weight: 300;
  src: url(../fonts/TRIAL_Rooftop-Light.ttf) format("truetype");
}

@font-face {
  font-family: TRIAL Rooftop;
  font-style: normal;
  font-weight: 400;
  src: url(../fonts/TRIAL_Rooftop-Regular.ttf) format("truetype");
}

@font-face {
  font-family: TRIAL Rooftop;
  font-style: normal;
  font-weight: 500;
  src: url(../fonts/TRIAL_Rooftop-Bold.ttf) format("truetype");
}

@font-face {
  font-family: TRIAL Rooftop;
  font-style: normal;
  font-weight: 600;
  src: url(../fonts/TRIAL_Rooftop-Bold.ttf) format("truetype");
}

@font-face {
  font-family: TRIAL Rooftop;
  font-style: normal;
  font-weight: 800;
  src: url(../fonts/TRIAL_Rooftop-Extrabold.ttf) format("truetype");
}

:root {
  --indexSize: 1vh + 1vw;
}

html {
  font-size: 10px;
  scroll-behavior: auto;
}

body,
html {
  height: 100%;
  min-width: 320px;
}

body {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  color: #1f2229;
  font-size: 1.8rem;
  line-height: 1.2;
}

body,
button,
input,
textarea {
  font-family: Halvar, sans-serif;
}

button,
input,
textarea {
  font-size: inherit;
  line-height: inherit;
}

body.lock {
  overflow: hidden;
  padding-right: 17px;
}

.touch body.lock {
  padding-right: 0;
}

.wrapper {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  min-height: 100%;
  overflow: hidden;
  -webkit-transition: all 0.45s cubic-bezier(0.39, 0.575, 0.565, 1);
  transition: all 0.45s cubic-bezier(0.39, 0.575, 0.565, 1);
  -webkit-transition-duration: 1s;
  transition-duration: 1s;
}

@supports (overflow: clip) {
  .wrapper {
    overflow: clip;
  }
}

.wrapper > main,
main {
  -webkit-box-flex: 1;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}

::-moz-selection {
  background-color: #5ab16f;
  color: #fff;
}

::selection {
  background-color: #5ab16f;
  color: #fff;
}

input:focus:required:invalid,
textarea:focus:required:invalid {
  border-color: #d31543;
}

input:required:valid,
textarea:required:valid {
  border-color: #bc9e7b;
}

input,
textarea {
  -webkit-box-shadow: none;
  box-shadow: none;
}

button:focus,
input,
textarea {
  outline: none;
}

[data-fullscreen] {
  min-height: 100vh;
}

.touch [data-fullscreen] {
  min-height: calc(var(--vh, 1vh) * 100);
}

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

  to {
    -webkit-transform: rotate(1turn);
    transform: rotate(1turn);
  }
}

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

  to {
    -webkit-transform: rotate(1turn);
    transform: rotate(1turn);
  }
}

@-webkit-keyframes fadeIn {
  0% {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@-webkit-keyframes fadeOut {
  0% {
    opacity: 1;
  }

  to {
    opacity: 0;
  }
}

@keyframes fadeOut {
  0% {
    opacity: 1;
  }

  to {
    opacity: 0;
  }
}

input[type="search"]::-ms-clear,
input[type="search"]::-ms-reveal {
  display: none;
  height: 0;
  width: 0;
}

input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-decoration,
input[type="search"]::-webkit-search-results-button,
input[type="search"]::-webkit-search-results-decoration {
  display: none;
}

.input,
.textarea {
  background: transparent;
  border: 0.06rem solid #1f2229;
  border-radius: 0.4rem;
  color: #1f2229;
  font-family:
    Nunito Sans,
    sans-serif;
  font-size: 1.8rem;
  font-weight: 400;
  padding: 0 2.3rem;
  text-align: left;
  -webkit-transition: all 0.45s cubic-bezier(0.39, 0.575, 0.565, 1);
  transition: all 0.45s cubic-bezier(0.39, 0.575, 0.565, 1);
  width: 100%;
}

.input::-webkit-input-placeholder,
.textarea::-webkit-input-placeholder {
  color: #616161;
  opacity: 1;
  -webkit-transition: all 0.45s cubic-bezier(0.39, 0.575, 0.565, 1);
  transition: all 0.45s cubic-bezier(0.39, 0.575, 0.565, 1);
}

.input::-moz-placeholder,
.textarea::-moz-placeholder {
  color: #616161;
  opacity: 1;
  -moz-transition: all 0.45s cubic-bezier(0.39, 0.575, 0.565, 1);
  transition: all 0.45s cubic-bezier(0.39, 0.575, 0.565, 1);
}

.input:-ms-input-placeholder,
.textarea:-ms-input-placeholder {
  color: #616161;
  opacity: 1;
  -ms-transition: all 0.45s cubic-bezier(0.39, 0.575, 0.565, 1);
  transition: all 0.45s cubic-bezier(0.39, 0.575, 0.565, 1);
}

.input::-ms-input-placeholder,
.textarea::-ms-input-placeholder {
  color: #616161;
  opacity: 1;
  -ms-transition: all 0.45s cubic-bezier(0.39, 0.575, 0.565, 1);
  transition: all 0.45s cubic-bezier(0.39, 0.575, 0.565, 1);
}

.input::placeholder,
.textarea::placeholder {
  color: #616161;
  opacity: 1;
  -webkit-transition: all 0.45s cubic-bezier(0.39, 0.575, 0.565, 1);
  transition: all 0.45s cubic-bezier(0.39, 0.575, 0.565, 1);
}

.input:focus::-webkit-input-placeholder,
.textarea:focus::-webkit-input-placeholder {
  opacity: 0;
}

.input:focus::-moz-placeholder,
.textarea:focus::-moz-placeholder {
  opacity: 0;
}

.input:focus:-ms-input-placeholder,
.textarea:focus:-ms-input-placeholder {
  opacity: 0;
}

.input:focus::-ms-input-placeholder,
.textarea:focus::-ms-input-placeholder {
  opacity: 0;
}

.input:focus::placeholder,
.textarea:focus::placeholder {
  opacity: 0;
}

.textarea {
  padding: 1.6rem 2.3rem;
  resize: none;
}

.select-box {
  display: block;
  font-size: 1.8rem;
  max-width: 100%;
  position: relative;
  width: 100%;
}

.select-box__current {
  background: transparent;
  border: 1px solid #bababa;
  border-radius: 0.6rem;
  color: #fff;
  color: #1f2229;
  cursor: pointer;
  font-family:
    Nunito Sans,
    sans-serif;
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 1;
  padding: 0;
  text-align: left;
  -webkit-transition: all 0.45s cubic-bezier(0.39, 0.575, 0.565, 1);
  transition: all 0.45s cubic-bezier(0.39, 0.575, 0.565, 1);
  width: 100%;
}

.select-box__current:focus + .select-box__list {
  -webkit-animation-name: none;
  animation-name: none;
  opacity: 1;
}

.select-box__current:focus + .select-box__list .select-box__option {
  cursor: pointer;
}

.select-box__current:focus .select-box__icon {
  -webkit-transform: translateY(-60%) rotate(180deg);
  -ms-transform: translateY(-60%) rotate(180deg);
  transform: translateY(-60%) rotate(180deg);
}

.select-box__icon {
  position: absolute;
  right: 1.4rem;
  top: 52%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  -webkit-transition: 0.2s ease;
  transition: 0.2s ease;
  width: 0.9rem;
}

.select-box__value {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.select-box__value:first-of-type .select-box__input-text {
  color: #1f2229;
}

.select-box__input {
  display: none;
}

.select-box__input:checked + .select-box__input-text {
  display: block;
}

.select-box__input-text {
  display: none;
  margin: 0;
  padding: 0;
  width: 100%;
}

.select-box__list {
  -webkit-animation-delay: 0.4s;
  animation-delay: 0.4s;
  -webkit-animation-duration: 0.4s;
  animation-duration: 0.4s;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
  -webkit-animation-name: HideList;
  animation-name: HideList;
  -webkit-animation-timing-function: step-start;
  animation-timing-function: step-start;
  background-color: #fff;
  border: none;
  -webkit-box-shadow: 0 15px 30px -10px rgba(0, 0, 0, 0.1);
  box-shadow: 0 15px 30px -10px rgba(0, 0, 0, 0.1);
  font-size: 1.4rem;
  list-style: none;
  opacity: 0;
  padding: 0.8rem 0;
  position: absolute;
  width: 100%;
  z-index: 2;
}

.select-box__option {
  background: #fff;
  color: #1f2229;
  display: block;
  margin-bottom: 0;
  padding: 0.5rem 1.4rem;
  -webkit-transition: all 0.45s cubic-bezier(0.39, 0.575, 0.565, 1);
  transition: all 0.45s cubic-bezier(0.39, 0.575, 0.565, 1);
}

.select-box__option:focus,
.select-box__option:hover {
  background-color: #fbfbfb;
}

@-webkit-keyframes HideList {
  0% {
    -webkit-transform: scaleY(1);
    transform: scaleY(1);
    z-index: 1;
  }

  to {
    -webkit-transform: scaleY(0);
    transform: scaleY(0);
    z-index: -1;
  }
}

@keyframes HideList {
  0% {
    -webkit-transform: scaleY(1);
    transform: scaleY(1);
    z-index: 1;
  }

  to {
    -webkit-transform: scaleY(0);
    transform: scaleY(0);
    z-index: -1;
  }
}

.control {
  color: #1f2229;
  cursor: pointer;
  font-size: 1.4rem;
  font-weight: 400;
  margin-bottom: 0;
  padding-left: 2.9rem;
  padding-top: 0.9rem;
  position: relative;
}

.control,
.control a {
  display: inline-block;
  line-height: 1;
}

.control a {
  color: #cd1e40;
  text-decoration: none;
}

.control a:after {
  background-color: #cd1e40;
  content: "";
  display: block;
  height: 1px;
  -webkit-transition: width 0.5s ease-out;
  transition: width 0.5s ease-out;
  width: 100%;
}

.control a:hover {
  color: #cd1e40;
}

.control a:hover:after {
  width: 0;
}

.control input {
  left: 0.6rem;
  opacity: 0;
  position: absolute;
  top: 0.2rem;
  z-index: -1;
}

.control_indicator {
  background: #fff;
  border: 0.07rem solid #1f2229;
  border-radius: 0.4rem;
  height: 2.1rem;
  left: 0;
  position: absolute;
  top: 0.4rem;
  width: 2.1rem;
}

.control_indicator:after {
  -webkit-box-sizing: unset;
  box-sizing: unset;
  content: "";
  display: none;
  position: absolute;
}

.control-checkbox .control_indicator:after {
  background: url(../img/checkbox.svg) 50% / contain no-repeat;
  height: 0.8rem;
  left: 51%;
  top: 52%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  width: 1rem;
}

.control input:checked ~ .control_indicator:after {
  display: block;
}

.link {
  position: relative;
}

.link:hover {
  color: #5ab16f;
}

.link:after {
  background: #212529;
  bottom: 0;
  content: "";
  height: 0.1rem;
  left: 0;
  position: absolute;
  -webkit-transition: all 0.45s cubic-bezier(0.39, 0.575, 0.565, 1);
  transition: all 0.45s cubic-bezier(0.39, 0.575, 0.565, 1);
  width: 100%;
}

.link:hover:after {
  width: 0;
}

.h1 {
  font-size: 3.8rem;
  font-weight: 800;
  line-height: 1.2105263158;
}

.h2 {
  font-size: 6rem;
  font-weight: 200;
  text-transform: uppercase;
}

.h3 {
  font-size: 2rem;
  font-weight: 600;
}

img {
  height: auto;
  max-width: 100%;
}

a {
  -webkit-transition: all 0.45s cubic-bezier(0.39, 0.575, 0.565, 1);
  transition: all 0.45s cubic-bezier(0.39, 0.575, 0.565, 1);
}

a,
a:hover {
  color: #1f2229;
  text-decoration: none;
}

.container-1440 {
  max-width: 152rem;
  max-width: 174.4rem;
}

.container,
.container-1440 {
  margin: 0 auto;
  padding-left: 4rem;
  padding-right: 4rem;
}

.container {
  max-width: 150rem;
  max-width: 132.8rem;
}

.btn {
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  align-items: center;
  background: #5ab16f;
  border: none;
  border-radius: 0.6rem;
  -webkit-box-shadow: none;
  box-shadow: none;
  color: #fff;
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-family:
    Nunito Sans,
    sans-serif;
  font-size: 1.8rem;
  font-weight: 400;
  justify-content: center;
  letter-spacing: 0;
  line-height: 1.2;
  padding: 0;
  position: relative;
  text-shadow: none;
  text-transform: none;
  -webkit-transition: all 0.45s cubic-bezier(0.39, 0.575, 0.565, 1);
  transition: all 0.45s cubic-bezier(0.39, 0.575, 0.565, 1);
}

.btn:hover {
  background: #7dc18d;
  color: #fff;
}

svg {
  -webkit-transition: all 0.45s cubic-bezier(0.39, 0.575, 0.565, 1);
  transition: all 0.45s cubic-bezier(0.39, 0.575, 0.565, 1);
}

.svg-hidden {
  display: none;
}

.fancybox-custom .fancybox-button {
  background: #1e1e20;
  color: #fff;
  height: 5.6rem;
  width: 5.6rem;
}

.fancybox-custom .fancybox-navigation .fancybox-button--arrow_left,
.fancybox-custom .fancybox-navigation .fancybox-button--arrow_right {
  background: #1e1e20;
  color: #fff;
  height: 5.6rem;
  padding: 0.5rem;
  width: 5.6rem;
}

.fancybox-custom.fancybox-is-open .fancybox-bg {
  background: #fff;
  opacity: 0.98;
}

.swiper-wrapper {
  -webkit-transition: all 0.45s cubic-bezier(0.39, 0.575, 0.565, 1);
  transition: all 0.45s cubic-bezier(0.39, 0.575, 0.565, 1);
}

@-webkit-keyframes hvr-buzz-out {
  10% {
    -webkit-transform: translateX(3px) rotate(2deg);
    transform: translateX(3px) rotate(2deg);
  }

  20% {
    -webkit-transform: translateX(-3px) rotate(-2deg);
    transform: translateX(-3px) rotate(-2deg);
  }

  30% {
    -webkit-transform: translateX(3px) rotate(2deg);
    transform: translateX(3px) rotate(2deg);
  }

  40% {
    -webkit-transform: translateX(-3px) rotate(-2deg);
    transform: translateX(-3px) rotate(-2deg);
  }

  50% {
    -webkit-transform: translateX(2px) rotate(1deg);
    transform: translateX(2px) rotate(1deg);
  }

  60% {
    -webkit-transform: translateX(-2px) rotate(-1deg);
    transform: translateX(-2px) rotate(-1deg);
  }

  70% {
    -webkit-transform: translateX(2px) rotate(1deg);
    transform: translateX(2px) rotate(1deg);
  }

  80% {
    -webkit-transform: translateX(-2px) rotate(-1deg);
    transform: translateX(-2px) rotate(-1deg);
  }

  90% {
    -webkit-transform: translateX(1px) rotate(0);
    transform: translateX(1px) rotate(0);
  }

  to {
    -webkit-transform: translateX(-1px) rotate(0);
    transform: translateX(-1px) rotate(0);
  }
}

@keyframes hvr-buzz-out {
  10% {
    -webkit-transform: translateX(3px) rotate(2deg);
    transform: translateX(3px) rotate(2deg);
  }

  20% {
    -webkit-transform: translateX(-3px) rotate(-2deg);
    transform: translateX(-3px) rotate(-2deg);
  }

  30% {
    -webkit-transform: translateX(3px) rotate(2deg);
    transform: translateX(3px) rotate(2deg);
  }

  40% {
    -webkit-transform: translateX(-3px) rotate(-2deg);
    transform: translateX(-3px) rotate(-2deg);
  }

  50% {
    -webkit-transform: translateX(2px) rotate(1deg);
    transform: translateX(2px) rotate(1deg);
  }

  60% {
    -webkit-transform: translateX(-2px) rotate(-1deg);
    transform: translateX(-2px) rotate(-1deg);
  }

  70% {
    -webkit-transform: translateX(2px) rotate(1deg);
    transform: translateX(2px) rotate(1deg);
  }

  80% {
    -webkit-transform: translateX(-2px) rotate(-1deg);
    transform: translateX(-2px) rotate(-1deg);
  }

  90% {
    -webkit-transform: translateX(1px) rotate(0);
    transform: translateX(1px) rotate(0);
  }

  to {
    -webkit-transform: translateX(-1px) rotate(0);
    transform: translateX(-1px) rotate(0);
  }
}

.hvr-buzz-out {
  -webkit-box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  display: inline-block;
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  vertical-align: middle;
}

.hvr-buzz-out:active,
.hvr-buzz-out:focus,
.hvr-buzz-out:hover {
  -webkit-animation-duration: 0.75s;
  animation-duration: 0.75s;
  -webkit-animation-iteration-count: 1;
  animation-iteration-count: 1;
  -webkit-animation-name: hvr-buzz-out;
  animation-name: hvr-buzz-out;
  -webkit-animation-timing-function: linear;
  animation-timing-function: linear;
}

@-webkit-keyframes fadeInDownMini {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -32%, 0);
    transform: translate3d(0, -32%, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}

@keyframes fadeInDownMini {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -32%, 0);
    transform: translate3d(0, -32%, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}

.fadeInDownMini {
  -webkit-animation-name: fadeInDownMini;
  animation-name: fadeInDownMini;
}

[class*="-ibg"] {
  position: relative;
}

[class*="-ibg"] img {
  height: 100%;
  left: 0;
  -o-object-fit: cover;
  object-fit: cover;
  position: absolute;
  top: 0;
  width: 100%;
}

[class*="-ibg_contain"] img {
  -o-object-fit: contain;
  object-fit: contain;
}

@-webkit-keyframes fadeInUp30 {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, 30%, 0);
    transform: translate3d(0, 30%, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}

@keyframes fadeInUp30 {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, 30%, 0);
    transform: translate3d(0, 30%, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}

.fadeInUp30 {
  -webkit-animation-name: fadeInUp30;
  animation-name: fadeInUp30;
}

.header__slider-section {
  background: #141416;
  padding-bottom: 2.8rem;
}

.header-logos {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 3.4rem;
}

.slide__left-title h2 {
  color: #fff;
  font-size: 4.5rem;
  font-weight: 900;
  line-height: 40px;
  margin-bottom: 1.8rem;
  max-width: 41.4rem;
  width: 100%;
  text-transform: uppercase;
}

.header {
  background-color: #000;
}

.header-container {
  padding-bottom: 1.7rem;
  padding-top: 1.7rem;
}

.live__item-title h2 {
  -webkit-font-feature-settings:
    "liga" off,
    "clig" off;
  font-feature-settings:
    "liga" off,
    "clig" off;
  font-size: 2.8rem;
  font-weight: 900;
  line-height: 110%;
  margin-bottom: 1rem;
  text-transform: uppercase;
}

.black .live__item-title h2 {
  color: #fff;
}

.blue .live__item-title h2,
.green .live__item-title h2 {
  color: #1f2229;
}

.live__item-text p {
  -webkit-font-feature-settings:
    "liga" off,
    "clig" off;
  font-feature-settings:
    "liga" off,
    "clig" off;
  font-family: TRIAL Rooftop;
  font-size: 1.5rem;
  font-weight: 400;
  line-height: 140%;
  margin-bottom: 3.2rem;
}

.black .live__item-text p {
  color: #fff;
}

.blue .live__item-text p,
.green .live__item-text p {
  color: #1f2229;
}

.black .live__item-title p {
  color: #fff;
}

.blue .live__item-title p,
.green .live__item-title p {
  color: #1f2229;
}

.live__item-howto h3 {
  -webkit-font-feature-settings:
    "liga" off,
    "clig" off;
  font-feature-settings:
    "liga" off,
    "clig" off;
  color: #fff;
  font-size: 2rem;
  font-weight: 700;
  line-height: 125.9%;
  margin-bottom: 1.6rem;
}

.blue .live__item-howto h3 {
  color: #000;
  margin-bottom: 0.8rem;
}

.green .live__item-howto h3 {
  color: #000;
}

.live__item-phone a {
  gap: 0.9rem;
}

.live__item-lk a,
.live__item-phone a {
  -webkit-font-feature-settings:
    "liga" off,
    "clig" off;
  font-feature-settings:
    "liga" off,
    "clig" off;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-family: TRIAL Rooftop;
  font-size: 1.5rem;
  font-weight: 400;
}

.live__item-lk a {
  gap: 0.7rem;
}

.live__item-bottom {
  gap: 1.9rem;
}

.for__live-item,
.live__item-bottom {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.for__live-item {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  border-radius: 2.4rem;
  -webkit-box-shadow:
    0 -10px 22px 0 rgba(0, 0, 0, 0.03),
    0 2px 16px 0 rgba(0, 0, 0, 0.06);
  box-shadow:
    0 -10px 22px 0 rgba(0, 0, 0, 0.03),
    0 2px 16px 0 rgba(0, 0, 0, 0.06);
  -ms-flex-direction: column;
  flex-direction: column;
  justify-content: space-between;
  padding: 2.9rem 1.5rem 3.6rem 2.7rem;
  width: 100%;
}

.for__live-item.black {
  background: #000;
}

.for__live-item.green {
  background: #a7fc00;
}

.for__live-item.blue {
  background: #00bfff;
  padding-bottom: 1.3rem;
}

.for-live-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1.6rem;
  margin-bottom: 5.2rem;
  margin-top: 4rem;
}

.live__item-description p {
  -webkit-font-feature-settings:
    "liga" off,
    "clig" off;
  font-feature-settings:
    "liga" off,
    "clig" off;
  color: #0f7194;
  font-size: 1rem;
  font-style: normal;
  margin-top: 0.9rem;
  max-width: 31.9rem;
}

.live__item-description p,
.slide__left-description p {
  font-family: TRIAL Rooftop;
  font-weight: 400;
  margin-bottom: 0;
}

.slide__left-description p {
  color: #fff;
  font-size: 1.5rem;
  max-width: 48rem;
  width: 100%;
}
.btn-trigger{
  cursor: pointer;
}
.slide__left-btn {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  background: #a7fc00;
  border-radius: 1.2rem;
  color: #000;
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 1.6rem;
  font-weight: 800;
  height: 5.2rem;
  justify-content: center;
  line-height: 20px;
  max-width: 53.5rem;
  text-align: center;
  text-transform: uppercase;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
  width: 100%;
}

.slide__left-btn:hover {
  background-color: #74c800;
  color: #000;
}

.swiper__slide-left {
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  background-color: #141416;
  border-radius: 2.4rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  height: 100%;
  height: auto;
  justify-content: space-between;
  left: 2.3rem;
  max-width: 60.6rem;
  padding: 2.7rem 3.7rem 1.3rem 2.3em;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 100%;
}

.slide__left-price {
  height: 8.4rem;
}

.slide__left-price span {
  color: #1f2229;
  /* font-family: TRIAL Rooftop; */
  font-family: Halvar, sans-serif;
  font-size: 7rem;
  font-weight: 700;
}
.slide__left-price p span:nth-child(2){
  font-size: 2.2rem;
  font-family: TRIAL Rooftop;
  color: #1F2229;
  font-style: normal;
  font-weight: 400;
  line-height: 25px;
}
.slide__left-price p {
  -webkit-font-feature-settings:
    "liga" off,
    "clig" off;
  font-feature-settings:
    "liga" off,
    "clig" off;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  color: #1f2229;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-family: TRIAL Rooftop;
  font-size: 1.5rem;
  font-weight: 400;
  gap: 0.4rem;
  line-height: normal;
}

.header-slider {
  margin-top: 3rem;
  overflow: hidden;
  position: relative;
}

.header-slider .swiper-slide {
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 2.4rem;
}

.ourbests-item {
  background: #f2f3f5;
  border-radius: 3.2rem;
  gap: 4.7rem;
}

.ourbests-item:nth-child(2) {
  background: #ff3495;
}

.ourbests-item:nth-child(3) {
  background: #a7fc00;
}

.ourbests-info {
  display: grid;
  gap: 1.6rem 1.5rem;
  grid-template-columns: repeat(2, 1fr);
  margin-bottom: 4rem;
  margin-top: 4rem;
}

.ourbests-item {
  height: 12.5rem;
  align-items: flex-start;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 3.2rem;
  padding: 2rem 15rem 2rem 3.4rem;
}

.ourbests-item p {
  color: #141416;
  font-family: TRIAL Rooftop;
  font-size: 1.5rem;
  font-weight: 400;
  margin: 0;
  max-width: 27.7rem;
}

.ourbests-item.purple {
  background: #ff3495;
}

.ourbests-item.purple p {
  color: #fff;
}

.ourbests-item.green {
  background: #a7fc00;
}

.ourbests__item-img {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  justify-content: center;
  width: 13.8rem;
}

.calltous-wrapper {
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 2.4rem;
  height: 21.4rem;
  margin-bottom: 4rem;
  padding-left: 5.4rem;
  padding-top: 3.3rem;
}

.calltous-title {
  color: #141416;
  font-size: 2.8rem;
  font-weight: 800;
  line-height: 22px;
  max-width: 70rem;
  text-transform: uppercase;
}

.calltous-title p {
  color: #000;
  line-height: 22px;
  margin-bottom: 0;
  margin-top: 1.2rem;
  text-transform: lowercase;
}

.calltous-title p,
.form__left-rules p {
  -webkit-font-feature-settings:
    "liga" off,
    "clig" off;
  font-feature-settings:
    "liga" off,
    "clig" off;
  font-family: TRIAL Rooftop;
  font-size: 1.5rem;
  font-weight: 400;
}

.form__left-rules p {
  color: #fff;
  margin-bottom: 0.9rem;
}

.form__left-rules a {
  -webkit-font-feature-settings:
    "liga" off,
    "clig" off;
  font-feature-settings:
    "liga" off,
    "clig" off;
  color: #fff;
  font-family: TRIAL Rooftop;
  font-size: 1.5rem;
  font-weight: 400;
  text-decoration: underline;
}

.purple-form button {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  background: #141416;
  border: none;
  border-radius: 1.2rem;
  color: #fff;
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 1.6rem;
  font-weight: 800;
  height: 5.2rem;
  justify-content: center;
  line-height: 20px;
  margin-bottom: 4.5rem;
  margin-top: 2.6rem;
  text-transform: uppercase;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
  width: 100%;
}

.purple-form button:hover {
  background-color: #333;
  color: #f2f2f2;
}

.purple-form input {
  -webkit-font-feature-settings:
    "liga" off,
    "clig" off;
  font-feature-settings:
    "liga" off,
    "clig" off;
  background-color: #fff;
  border: 1px solid #fff;
  border-radius: 1.2rem;
  color: #8f9399;
  font-family: TRIAL Rooftop;
  font-size: 1.8rem;
  font-weight: 400;
  height: 6rem;
  padding-left: 2.3rem;
  width: 100%;
}

.form__left-description p {
  -webkit-font-feature-settings:
    "liga" off,
    "clig" off;
  font-feature-settings:
    "liga" off,
    "clig" off;
  color: #fff;
  font-family: TRIAL Rooftop;
  font-size: 1.5rem;
  font-weight: 400;
  line-height: 22px;
  margin-bottom: 0.4rem;
  max-width: 22.7rem;
  width: 100%;
}

.form__left-description p:first-of-type {
  margin-top: 2.5rem;
}

.form__left-description p:last-of-type {
  margin-bottom: 2.9rem;
}

.form__left-title h2 {
  color: #fff;
  font-size: 2.8rem;
  font-weight: 800;
  line-height: 22px;
  text-transform: uppercase;
}

.form-left {
  background: #ff3495;
}

.form-left,
.form-right {
  border-radius: 3.2rem;
  padding: 5.1rem 4.9rem 5.1rem 4.7rem;
  width: 100%;
}

.form-right {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  background: #f2f3f5;
  -ms-flex-direction: column;
  flex-direction: column;
  justify-content: space-between;
}

.form-right,
.purple-form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.purple-form {
  gap: 1.5rem;
  margin-bottom: 4rem;
}

.form__right-title h3 {
  color: #141416;
  font-size: 2.8rem;
  font-weight: 800;
  line-height: 22px;
  margin-bottom: 2.5rem;
  text-transform: uppercase;
}

.form__right-description {
  margin-bottom: 3.6rem;
}

.form__right-description p {
  -webkit-font-feature-settings:
    "liga" off,
    "clig" off;
  font-feature-settings:
    "liga" off,
    "clig" off;
  color: #000;
  font-family: TRIAL Rooftop;
  font-size: 15px;
  font-style: normal;
  font-weight: 400;
  line-height: 22px;
}

.form__right-cost p {
  line-height: 2;
}

.form__right-cost li,
.form__right-cost p {
  -webkit-font-feature-settings:
    "liga" off,
    "clig" off;
  font-feature-settings:
    "liga" off,
    "clig" off;
  color: #000;
  font-family: TRIAL Rooftop;
  font-size: 1.5rem;
  font-weight: 500;
  margin-bottom: 1rem;
}

.form__right-cost li {
  line-height: 1;
}

.form__right-cost li:last-of-type {
  margin-bottom: 0;
}

.form__right-cost {
  margin-bottom: 3.4rem;
}

.form__right-cost ul {
  padding-left: 1.4rem;
}

.form__right-bottom p {
  -webkit-font-feature-settings:
    "liga" off,
    "clig" off;
  font-feature-settings:
    "liga" off,
    "clig" off;
  color: #000;
  font-family: TRIAL Rooftop;
  font-size: 1.5rem;
  font-weight: 400;
  line-height: 22px;
  margin-bottom: 2rem;
}

.form__right-bottom p:last-of-type {
  margin-bottom: 0;
}

.helper-title h2 {
  -webkit-font-feature-settings:
    "liga" off,
    "clig" off;
  font-feature-settings:
    "liga" off,
    "clig" off;
  font-size: 2.8rem;
  font-weight: 800;
  line-height: 1;
  margin-bottom: 3.4rem;
  max-width: 62.1rem;
}

.helper-subtitle p,
.helper-title h2 {
  color: #000;
  text-transform: uppercase;
}

.helper-subtitle p {
  -webkit-font-feature-settings:
    "liga" off,
    "clig" off;
  font-feature-settings:
    "liga" off,
    "clig" off;
  font-size: 1.6rem;
  font-weight: 800;
  line-height: 22px;
  margin-bottom: 1.7rem;
}

.helper-text ul {
  margin-top: 2rem;
  padding: 0 0 0 1.4rem;
}
.helper-text p{
  color: #000;
  font-family: TRIAL Rooftop;
  font-size: 1.5rem;
  font-weight: 400;
  line-height: 22px;
}

.helper-text ul li {
  -webkit-font-feature-settings:
    "liga" off,
    "clig" off;
  font-feature-settings:
    "liga" off,
    "clig" off;
  color: #000;
  font-family: TRIAL Rooftop;
  font-size: 1.5rem;
  font-weight: 400;
  line-height: 22px;
  margin-bottom: 1rem;
}

.helper-text ol {
  padding-left: 2rem;
}

.helper-text ol li {
  -webkit-font-feature-settings:
    "liga" off,
    "clig" off;
  font-feature-settings:
    "liga" off,
    "clig" off;
  color: #000;
  font-family: TRIAL Rooftop;
  font-size: 1.5rem;
  font-weight: 400;
  line-height: 22px;
  margin-bottom: 1rem;
}

.helper-text ol li span {
  -webkit-font-feature-settings:
    "liga" off,
    "clig" off;
  font-feature-settings:
    "liga" off,
    "clig" off;
  color: #000;
  font-family: TRIAL Rooftop;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 22px;
}

.social-helper {
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1.4rem;
  justify-content: space-between;
  margin-bottom: 4rem;
}

.helper-right {
  max-width: 46.5rem;
}

.helper-right,
.helper-right img {
  border-radius: 3.2rem;
  width: 100%;
}

.helper-right img {
  height: 100%;
}

.helper-left {
  background: #f2f3f5;
  border-radius: 3.2rem;
  padding: 4.2rem 3rem 4.3rem 4.7rem;
  width: 100%;
}

.advantages-container {
  background: #a7fc00;
  border-radius: 3.2rem;
  margin-bottom: 4rem;
  padding: 5rem 4rem 5.8rem 4.2rem;
}

.advantages-wrapper {
  display: grid;
  gap: 1.5rem 0.9rem;
  grid-template-columns: repeat(2, 1fr);
}

.advantages-title h2 {
  -webkit-font-feature-settings:
    "liga" off,
    "clig" off;
  font-feature-settings:
    "liga" off,
    "clig" off;
  color: #141416;
  font-size: 2.8rem;
  font-weight: 800;
  line-height: 40px;
  margin-bottom: 4rem;
  text-transform: uppercase;
}

.advantages-item {
  background-color: #fff;
  border-radius: 3.2rem;
  gap: 2.8rem;
  padding: 2.4rem 7rem 2.4rem 3.1rem;
}

.advantages-item,
.advantages-num {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.advantages-num {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  background: #edfecc;
  border-radius: 2.4rem;
  color: #1f2229;
  font-size: 5rem;
  font-weight: 700;
  height: 9.1rem;
  justify-content: center;
  min-width: 8.4rem;
  width: 8.4rem;
}

.advantages-text p {
  -webkit-font-feature-settings:
    "liga" off,
    "clig" off;
  font-feature-settings:
    "liga" off,
    "clig" off;
  color: #000;
  font-family: TRIAL Rooftop;
  font-size: 1.5rem;
  font-weight: 400;
  line-height: 22px;
  margin-bottom: 0;
}

.offer-container {
  background-color: #f2f3f5;
  border-radius: 2.4rem;
  padding: 4.5rem 29.7rem 4.4rem 4.9rem;
}

.offer-container p {
  -webkit-font-feature-settings:
    "liga" off,
    "clig" off;
  font-feature-settings:
    "liga" off,
    "clig" off;
  color: #1f2229;
  font-family: TRIAL Rooftop;
  font-size: 1.5rem;
  font-weight: 400;
  line-height: 22px;
  margin-bottom: 0;
}

.offer-container a {
  text-decoration-line: underline;
}

.offer-container b {
  -webkit-font-feature-settings:
    "liga" off,
    "clig" off;
  font-feature-settings:
    "liga" off,
    "clig" off;
  color: #1f2229;
  font-family: TRIAL Rooftop;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 22px;
  margin-bottom: 1.6rem;
}

.offer-container ul {
  margin-top: 2rem;
  padding-left: 1rem;
}

.offer-container li {
  -webkit-font-feature-settings:
    "liga" off,
    "clig" off;
  font-feature-settings:
    "liga" off,
    "clig" off;
  color: #1f2229;
  font-family: TRIAL Rooftop;
  font-size: 1.5rem;
  font-weight: 400;
  line-height: 22px;
  margin-bottom: 0.5rem;
}

.offer-container li:last-of-type {
  margin-bottom: 0;
}

.footer {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  background: #000;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  margin-top: 6.5rem;
  padding-bottom: 2.8rem;
  padding-top: 2.2rem;
}

.footer p {
  margin-bottom: 0.5rem;
}

.footer a,
.footer p {
  -webkit-font-feature-settings:
    "liga" off,
    "clig" off;
  font-feature-settings:
    "liga" off,
    "clig" off;
  color: #808693;
  font-family: TRIAL Rooftop;
  font-size: 1.6rem;
  font-weight: 400;
  line-height: normal;
}

.footer a {
  margin-bottom: 0;
}

.hero-slider__prev {
  background: url(../img/prev-arrow.svg) 50% / contain no-repeat;
  right: 6.2rem;
}

.hero-slider__next,
.hero-slider__prev {
  bottom: 1.5rem;
  cursor: pointer;
  height: 3.2rem;
  position: absolute;
  -webkit-transition: all 0.35s ease-out;
  transition: all 0.35s ease-out;
  width: 3.2rem;
  z-index: 2;
}

.hero-slider__next {
  background: url(../img/next-arrow.svg) 50% / contain no-repeat;
  right: 2rem;
}

.hero-slider__pagination {
  -webkit-box-pack: right;
  -ms-flex-pack: right;
  bottom: unset !important;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0.5rem;
  justify-content: right;
  left: unset !important;
  position: absolute;
  right: 2.4rem;
  top: 2.3rem !important;
}

.hero-slider__pagination .swiper-pagination-bullet {
  background: #85839f;
  border-radius: 1rem;
  border-radius: 8px;
  height: 4px;
  margin: 0 !important;
  opacity: 1;
  -webkit-transition: all 0.35s ease-out;
  transition: all 0.35s ease-out;
  width: 4px;
  z-index: 10;
}

.hero-slider__pagination .swiper-pagination-bullet-active {
  background: #000;
  width: 24px;
}

.swiper_slide-bg img {
  border-radius: 3.2rem;
  width: 100%;
}

.swiper__slide-left.white {
  background: #fff;
}

.swiper__slide-left.white h2,
.swiper__slide-left.white p,
.swiper__slide-left.white span {
  color: #1f2229;
}

.swiper__slide-left.white .slide__left-btn {
  background: #000;
  border-color: #000;
  color: #fff;
}

.swiper__slide-left.white .slide__left-btn:hover {
  background-color: #333;
  color: #f2f2f2;
}

.swiper__slide-left.white .slide__left-btn:active {
  background-color: #1e1e1e;
  color: #d9d9d9;
}

.help-big {
  gap: 1.1rem;
  margin-bottom: 1rem;
}

.help-big,
.help-medium {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.help-medium {
  gap: 0.8rem;
  margin-bottom: 4rem;
}

.help__medium-item {
  gap: 4.9rem;
}
.help__big-item{
  height: 12.1rem;
}
.help__medium-item{
  height: 12.1rem;
}
.help__big-item,
.help__medium-item {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  border-radius: 2.4rem;
  -webkit-box-shadow:
    0 -10px 22px 0 rgba(0, 0, 0, 0.03),
    0 2px 16px 0 rgba(0, 0, 0, 0.06);
  box-shadow:
    0 -10px 22px 0 rgba(0, 0, 0, 0.03),
    0 2px 16px 0 rgba(0, 0, 0, 0.06);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  padding: 2.5rem 4.9rem 2rem;
  width: 100%;
}

.help__big-item {
  gap: 3.2rem;
}

.help__medium-item.blue {
  background: #00bfff;
}

.help__medium-item.green {
  background: #a7fc00;
}

.help__big-item.blue {
  background: #00bfff;
}

.help__big-description p {
  -webkit-font-feature-settings:
    "liga" off,
    "clig" off;
  font-feature-settings:
    "liga" off,
    "clig" off;
  color: #141416;
  font-family: TRIAL Rooftop;
  font-size: 1.5rem;
  font-weight: 400;
  margin-bottom: 0;
}

.help-on-way {
  margin-top: 4rem;
}

.help-title h2 {
  -webkit-font-feature-settings:
    "liga" off,
    "clig" off;
  font-feature-settings:
    "liga" off,
    "clig" off;
  color: #141416;
  font-size: 2.8rem;
  font-weight: 800;
  margin-bottom: 1.7rem;
  max-width: 41.2rem;
  text-transform: uppercase;
}

.connect-title {
  margin-bottom: 2.6rem;
}

.connect-title h2 {
  -webkit-font-feature-settings:
    "liga" off,
    "clig" off;
  font-feature-settings:
    "liga" off,
    "clig" off;
  color: #1f2229;
  font-size: 2.8rem;
  font-weight: 800;
  line-height: 114.9%;
  text-transform: uppercase;
}

.connect-inputs input {
  -webkit-font-feature-settings:
    "liga" off,
    "clig" off;
  font-feature-settings:
    "liga" off,
    "clig" off;
  background: #fff;
  border: none;
  border-radius: 1.2rem;
  color: #8f9399;
  font-family: TRIAL Rooftop;
  font-size: 1.8rem;
  font-weight: 400;
  height: 6rem;
  max-width: 69.7rem;
  padding-left: 2.3rem;
  width: 100%;
}

.connect-bottom {
  gap: 2.8rem;
  margin-bottom: 2.3rem;
  margin-top: 2.2rem;
}

.connect-bottom,
.connect-bottom button {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.connect-bottom button {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  background: #a7fc00;
  border: none;
  border-radius: 1rem;
  color: #000;
  cursor: pointer;
  font-size: 1.6rem;
  font-weight: 800;
  height: 5.2rem;
  justify-content: center;
  line-height: 20px;
  max-width: 39.8rem;
  text-transform: uppercase;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
  width: 100%;
}

.connect-bottom button:hover {
  background-color: #74c800;
  color: #000;
}

.connect-bottom p {
  -webkit-font-feature-settings:
    "liga" off,
    "clig" off;
  font-feature-settings:
    "liga" off,
    "clig" off;
  color: #1f2229;
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 0;
}

.connect-description a,
.connect-description p {
  -webkit-font-feature-settings:
    "liga" off,
    "clig" off;
  font-feature-settings:
    "liga" off,
    "clig" off;
  color: #8c9296;
  font-family: TRIAL Rooftop;
  font-size: 1.2rem;
  font-weight: 400;
  margin-bottom: 0;
}

.connect-description a {
  text-decoration-line: underline;
}

.connect-form {
  background: #f2f3f5;
  border-radius: 2.4rem;
  margin-bottom: 4rem;
  padding: 4.7rem 4.9rem;
}

.connect-wrapper {
  max-width: 69.7rem;
  width: 100%;
}

.steps-container {
  background: #f2f3f5;
  border-radius: 2.4rem;
  margin-bottom: 4rem;
  padding: 4.1rem 4.5rem 4rem 4.8rem;
}

.steps-title h2 {
  color: #141416;
  font-size: 2.8rem;
  font-weight: 800;
  line-height: 22px;
  margin-bottom: 6.9rem;
  text-transform: uppercase;
}

.steps-wrapper {
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 4.8rem;
  justify-content: space-between;
  margin-bottom: 6.8rem;
}

.steps-item {
  gap: 1.3rem;
}

.steps-img,
.steps-item {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
}

.steps-img {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  background: #fff;
  border-radius: 1.2rem;
  height: 7.5rem;
  justify-content: center;
  max-width: 7.5rem;
  min-width: 7.5rem;
}

.steps-text p {
  -webkit-font-feature-settings:
    "liga" off,
    "clig" off;
  font-feature-settings:
    "liga" off,
    "clig" off;
  color: #000;
  font-family: TRIAL Rooftop;
  font-size: 1.5rem;
  font-weight: 400;
  line-height: 22px;
  margin-bottom: 0;
}

.steps-btn,
.steps-btn a {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  justify-content: center;
}
.ourbests__item-img{
  display: none;
}
.steps-btn a {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  background: #a7fc00;
  border-radius: 1.2rem;
  color: #141416;
  cursor: pointer;
  font-size: 1.6rem;
  font-weight: 800;
  height: 5.2rem;
  line-height: 20px;
  max-width: 53.5rem;
  max-width: 100%;
  text-transform: uppercase;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
  width: 100%;
}

.steps-btn a:hover {
  background-color: #74c800;
  color: #000;
}

.questions-container {
  margin-bottom: 5.3rem;
}

.questions-title h2 {
  -webkit-font-feature-settings:
    "liga" off,
    "clig" off;
  font-feature-settings:
    "liga" off,
    "clig" off;
  color: #1f2229;
  font-size: 2.4rem;
  font-weight: 800;
  margin-bottom: 3rem;
  text-transform: uppercase;
}

.questions-item {
  cursor: pointer;
  display: inline-block;
  width: 100%;
}

.questions__item-text p {
  padding-left: 2rem;
}

.questions__item-flex {
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  justify-content: space-between;
}

.questions__item-header {
  background: #f2f3f5;
  border-radius: 3.2rem;
  cursor: pointer;
  padding: 2.4rem;
}

.questions-item.active .questions__item-header {
  margin-bottom: 2rem;
}

.questions__item-title {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.questions__item-title h3 {
  -webkit-font-feature-settings:
    "liga" off,
    "clig" off;
  font-feature-settings:
    "liga" off,
    "clig" off;
  color: #1f2229;
  font-family: TRIAL Rooftop;
  font-size: 1.5rem;
  font-weight: 500;
  margin-bottom: 0;
}

.questions__item-text p {
  -webkit-font-feature-settings:
    "liga" off,
    "clig" off;
  font-feature-settings:
    "liga" off,
    "clig" off;
  color: #1f2229;
  font-family: TRIAL Rooftop;
  font-size: 1.4rem;
  font-weight: 400;
}

.questions__item-text p:last-of-type {
  margin-bottom: 0;
}

.blue .live__item-phone a,
.green .live__item-phone a {
  color: #000;
}

.questions__item-body {
  /* height: 0; */
  opacity: 0;
  overflow: hidden;
  -webkit-transition:
    height 0.3s ease,
    opacity 0.3s ease;
  transition:
    height 0.3s ease,
    opacity 0.3s ease;
}

.questions-wrapper {
  /* display: grid;
  grid-template-columns: repeat(2, 1fr); */
  gap: 1.4rem 1.9rem;
  column-count: 2;
}

.modal-title h2 {
  -webkit-font-feature-settings:
    "liga" off,
    "clig" off;
  font-feature-settings:
    "liga" off,
    "clig" off;
  color: #1f2229;
  font-size: 2.8rem;
  font-weight: 800;
  line-height: 114.9%;
  margin-bottom: 3.4rem;
  text-transform: uppercase;
}

.modal-inputs {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1.6rem;
  margin-bottom: 2rem;
}

.modal-inputs input {
  -webkit-font-feature-settings:
    "liga" off,
    "clig" off;
  font-feature-settings:
    "liga" off,
    "clig" off;
  background: #fff;
  border: 1px solid #dbdbdb;
  border-radius: 1.2rem;
  color: #8f9399;
  font-family: TRIAL Rooftop;
  font-size: 1.8rem;
  font-weight: 400;
  line-height: 22px;
  max-width: 39.7rem;
  min-width: 39.7rem;
  padding-left: 2.3rem;
}

.modal-inputs button,
.modal-inputs input {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 6rem;
  width: 100%;
}

.modal-inputs button {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  background: #a7fc00;
  border: 1px solid #a7fc00;
  border-radius: 1rem;
  color: #000;
  cursor: pointer;
  font-size: 1.6rem;
  font-weight: 800;
  justify-content: center;
  line-height: 20px;
  /* max-width: 25rem;
  min-width: 25rem; */
  width: 100%;
  text-transform: uppercase;
}

.modal-description p {
  -webkit-font-feature-settings:
    "liga" off,
    "clig" off;
  font-feature-settings:
    "liga" off,
    "clig" off;
  color: #8c9296;
  font-family: TRIAL Rooftop;
  font-size: 1.4rem;
  font-weight: 400;
  margin-bottom: 1.8rem;
  max-width: 79.1rem;
  width: 100%;
}

.modal-description a,
.modal-offer a {
  -webkit-font-feature-settings:
    "liga" off,
    "clig" off;
  font-feature-settings:
    "liga" off,
    "clig" off;
  color: #8c9296;
  font-family: TRIAL Rooftop;
  font-size: 1.4rem;
  font-weight: 400;
  text-decoration-line: underline;
}

.tele-modal {
  display: none;
  height: 100vh;
  left: 0;
  position: fixed;
  top: 0;
  -webkit-transform: translateY(-20px);
  -ms-transform: translateY(-20px);
  transform: translateY(-20px);
  -webkit-transition:
    opacity 0.3s ease,
    -webkit-transform 0.5s ease;
  transition:
    opacity 0.3s ease,
    -webkit-transform 0.5s ease;
  transition:
    opacity 0.3s ease,
    transform 0.5s ease;
  transition:
    opacity 0.3s ease,
    transform 0.5s ease,
    -webkit-transform 0.5s ease;
  width: 100%;
  z-index: 100;
}

.tele-modal.active {
  display: block;
}

.tele__modal-bg {
  background-color: #000;
  height: 100vh;
  left: 0;
  opacity: 0.3;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: 101;
}

.tele__modal-content {
  background: #fff;
  border-radius: 2.4rem;
  -webkit-box-shadow: 0 0 61.2px 0 rgba(0, 0, 0, 0.2);
  box-shadow: 0 0 61.2px 0 rgba(0, 0, 0, 0.2);
  left: 50%;
  padding: 9.9rem 11.4rem 9.3rem 7.5rem;
  position: absolute;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  z-index: 102;
}

.tele__modal-close {
  cursor: pointer;
  position: absolute;
  right: 2.3rem;
  top: 2.6rem;
}

@media (min-width: 1930px) {
  html {
    font-size: 12px;
  }
}

@media (max-width: 1700px) {
  html {
    font-size: 9px;
  }
}

@media (max-width: 1500px) {
  .control {
    font-size: 1.5rem;
  }
}

@media (max-width: 1430px) {
  html {
    font-size: 8.6px;
  }
}

@media (max-width: 1400px) {
  .h1 {
    font-size: 3.3rem;
  }
}

@media (max-width: 1320px) {
  html {
    font-size: 8.4px;
  }
}

@media (max-width: 1100px) {
  body.lock {
    padding-right: 0;
  }
}

@media (max-width: 950px) {
  .for-live-container {
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    justify-content: space-between;
  }

  .live__item-text p {
    display: none;
  }

  .for__live-item {
    max-width: 100%;
    width: 100%;
  }

  .for__live-item:last-of-type {
    max-width: 100%;
  }
}

@media (max-width: 910px) {
  .ourbests-item {
    padding: 2rem 5rem;
  }
}

@media (max-width: 776px) {
  .control {
    font-size: 14px;
  }
}

@media (max-width: 767px) {
  html {
    font-size: 10px;
  }

  .touch [data-fullscreen] {
    -webkit-transition: height 0.2s;
    transition: height 0.2s;
  }

  .input,
  .textarea {
    font-size: 15px;
    padding: 0 13px;
    text-align: left;
  }

  .textarea {
    padding: 13px;
  }

  .select-box {
    font-size: 14px;
    width: 100%;
  }

  .select-box__current {
    font-size: 14px;
    height: 54px;
    padding-left: 12px;
    padding-right: 35px;
  }

  .select-box__icon {
    right: 16px;
    width: 10px;
  }

  .select-box__list {
    font-size: 14px;
    width: 100%;
  }

  .select-box__option {
    padding: 6px 20px;
  }

  .h1 {
    font-size: 23px;
  }

  .h2 {
    font-size: 27px;
    letter-spacing: 0;
  }

  .h3 {
    font-size: 15px;
  }

  .container,
  .container-1440 {
    padding-left: 12px;
    padding-right: 12px;
  }

  .btn {
    font-size: 16px;
    height: 50px;
    line-height: 1;
    padding: 0;
  }

  .fancybox-custom .fancybox-button {
    height: 4rem;
    width: 4rem;
  }

  .fancybox-custom .fancybox-navigation .fancybox-button {
    top: calc(50% - 20px);
  }

  .fancybox-custom .fancybox-navigation .fancybox-button--arrow_left,
  .fancybox-custom .fancybox-navigation .fancybox-button--arrow_right {
    height: 4rem;
    width: 4rem;
  }

  .for-live-container {
    margin-bottom: 11px;
    margin-top: 15px;
  }

  .swiper__slide-left {
    border-radius: 20px;
  }

  .for__live-item.green {
    padding-left: 10px;
  }

  .swiper__slide-left.white {
    background-color: #000;
  }

  .white .slide__left-description p,
  .white .slide__left-price p,
  .white .slide__left-price span,
  .white .slide__left-title h2 {
    color: #fff;
  }

  .questions-container {
    margin-bottom: 33px;
  }

  .questions-wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column;
  }

  .for-live-container {
    gap: 5px;
  }

  .live__item-title h2 {
    font-size: 1.3rem;
  }

  .black .live__item-text p {
    font-size: 15px;
  }

  .live__item-howto h3 {
    font-size: 10.012px;
  }

  .live__item-lk {
    display: none;
  }

  .live__item-title h2 {
    margin-bottom: 62px;
  }

  .live__item-bottom {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    -ms-flex-direction: column;
    flex-direction: column;
  }

  .live__item-lk a,
  .live__item-phone a {
    font-size: 12.515px;
  }

  .live__item-description p {
    font-size: 9px;
    max-width: 100%;
  }

  .hero-slider__next,
  .hero-slider__pagination,
  .hero-slider__prev {
    display: none !important;
  }

  .slide__left-title h2 {
    font-size: 22px;
    line-height: 22px;
    margin-bottom: 5px;
  }

  .slide__left-price {
    height: auto;
  }

  .slide__left-price p {
    font-size: 12px;
  }

  .slide__left-price span {
    font-size: 20px;
  }

  .slide__left-description p {
    font-size: 12px;
  }

  .slide__left-btn {
    display: none;
  }

  .swiper__slide-content {
    -webkit-box-align: end;
    -ms-flex-align: end;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    align-items: flex-end;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    justify-content: center;
  }

  .swiper__slide-left {
    bottom: 6px;
    height: auto;
    left: 50%;
    max-width: 94%;
    padding: 14px 20px 11px;
    top: unset;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
  }

  .ourbests-item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column;
  }

  .main {
    border-radius: 20px;
  }

  .ourbests__item-img {
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    height: 115px;
    justify-content: flex-start;
  }

  .ourbests-item p {
    font-size: 12px;
  }

  .ourbests-item {
    padding: 15px 15px 15px 15px;
    border-radius: 12px;
    display: flex;
    align-items: center;
  }
  .for__live-item{
    padding: 18px 17px 16px 17px;
    border-radius:12px;
  }
  .ourbests-info {
    gap: 5px;
    margin-bottom: 12px;
  }

  .social-helper {
    -webkit-box-direction: reverse;
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }

  .helper-right {
    max-width: 100%;
  }

  .offer-container {
    border-radius: 12px;
    padding: 33px 28px 44px 27px;
  }

  .offer-container p {
    font-size: 15px;
  }

  .footer {
    margin-top: 25px;
  }

  .calltous-wrapper,
  .social-helper {
    margin-bottom: 11px;
  }

  .ourbests-info {
    margin-top: 11px;
  }

  .calltous-container .calltous-wrapper {
    background-image: url(/img/calltous-mob.jpg) !important;
    height: 338px;
  }

  .purple-form {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    margin-bottom: 11px;
  }

  .calltous-wrapper {
    border-radius: 12px;
    padding-left: 27px;
    padding-right: 27px;
    padding-top: 25px;
  }

  .calltous-title {
    font-size: 16px;
  }

  .calltous-title p {
    font-size: 12px;
    margin-top: 7px;
  }

  .form-left,
  .form-right {
    border-radius: 12px;
    padding: 38px 27px 33px;
  }

  .form__left-title h2,
  .form__right-title h3 {
    font-size: 16px;
  }

  .form__left-description p:first-of-type {
    margin-top: 5px;
  }

  .form__left-description p:last-of-type {
    margin-bottom: 15px;
  }

  .purple-form form input {
    border-radius: 12px;
    font-size: 12px;
    height: 60px;
    margin-bottom: 0;
    max-width: 100%;
    width: 100%;
  }

  .purple-form form button {
    margin-bottom: 22px;
    margin-top: 22px;
  }

  .form__left-rules a,
  .form__left-rules p {
    font-size: 12px;
  }

  .form__right-bottom p {
    margin-bottom: 16px;
  }

  .form__right-cost {
    margin-bottom: 34px;
  }

  .form__right-description {
    margin-bottom: 29px;
  }

  .helper-left,
  .helper-right,
  .helper-right img {
    border-radius: 12px;
  }

  .helper-title h2 {
    font-size: 16px;
    line-height: 1.5;
    margin-bottom: 16px;
  }

  .helper-subtitle p,
  .helper-text ol li {
    font-size: 12px;
  }

  .helper-left {
    padding: 35px 28px 22px 27px;
  }

  .advantages-wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column;
  }

  .advantages-text p {
    font-size: 12px;
  }

  .advantages-item {
    border-radius: 12px;
    gap: 20px;
  }

  .advantages-num {
    border-radius: 10px;
    font-size: 30px;
    height: 55px;
    max-width: 50px;
    min-width: 50px;
    width: 100%;
  }

  .advantages-title h2 {
    font-size: 16px;
    margin-bottom: 16px;
  }

  .advantages-container {
    margin-bottom: 11px;
    padding: 29px 28px 25px 27px;
  }

  .social-helper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }

  .help-medium {
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 7px;
    justify-content: space-between;
    margin-bottom: 15px;
  }

  .help-big {
    gap: 7px;
  }

  .help__medium-item {
    max-width: 49%;
    width: 100%;
  }

  .help__medium-item:last-of-type {
    max-width: 100%;
    width: 100%;
    height: 100px;
  }

  .help__big-description p {
    font-size: 15px;
  }

  .help__medium-item {
    border-radius: 12px;
    gap: 33px;
    padding-bottom: 32px;
    padding-left: 49px;
    padding-top: 45px;
  }

  .help-title h2 {
    font-size: 16px;
  }

  .help-on-way {
    margin-top: 15px;
  }

  .steps-wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 17px;
    margin-bottom: 29px;
  }

  .steps-title h2 {
    font-size: 16px;
    margin-bottom: 28px;
  }

  .steps-container {
    border-radius: 12px;
    margin-bottom: 11px;
    padding: 18px 37px 22px 18px;
  }

  .steps-btn a {
    font-size: 16px;
  }

  .steps-text p {
    font-size: 12px;
  }

  .steps-item {
    gap: 18px;
  }

  .connect-form {
    border-radius: 12px;
    margin-bottom: 11px;
    padding: 25px 14px 29px 16px;
  }

  .connect-title h2 {
    font-size: 16px;
  }

  .connect-title {
    margin-bottom: 19px;
  }

  .connect-inputs input {
    font-size: 12px;
  }

  .connect-bottom {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 13px;
    margin-bottom: 16px;
    margin-top: 18px;
  }

  .connect-bottom button {
    max-width: 100%;
  }

  .connect-description a,
  .connect-description p {
    font-size: 12px;
  }

  .offer-container b,
  .offer-container li {
    font-size: 15px;
  }

  .help__big-item,
  .help__medium-item {
    border-radius: 12px;
    padding: 20px 18px 13px;
    height: auto;
    padding: 14px;
  }

  .help__big-img {
    max-width: 36%;
  }

  .modal-inputs button,
  .modal-inputs input {
    max-width: 100%;
    min-width: unset;
  }

  .modal-inputs {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }

  .tele__modal-content {
    padding: 5.4rem 3.8rem 3.6rem 2.7rem;
  }

  .modal-title h2 {
    font-size: 16px;
  }

  .modal-inputs input {
    font-size: 12px;
  }

  .modal-inputs button {
    font-size: 16px;
    height: 52px;
    text-align: center;
  }

  .modal-description a,
  .modal-description p,
  .modal-offer a {
    font-size: 11px;
  }

  .tele__modal-content {
    max-width: 100%;
    width: 94%;
  }
}




.questions-item {
  flex: 1 1 calc(50% - 20px); /* два вопроса в строке */
  box-sizing: border-box;
  position: relative;
}

.questions__item-body {
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, opacity 0.3s ease;
  position: relative;
}

.questions-item.active .questions__item-body {
  opacity: 1;
  margin-bottom: 2rem;
}
.help__big-img{
  display: none;
}