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

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

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

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

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

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

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

@font-face {
  font-family: Muller;
  font-style: normal;
  font-weight: 900;
  src: url(../fonts/MullerBlack.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: Muller, 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: #707070;
  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: 148.1rem;
}

.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: Muller, 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: #ffbf33;
  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 glowFadeIn {
  0% {
    -webkit-box-shadow: 0 0 0 rgba(255, 175, 0, 0);
    box-shadow: 0 0 0 rgba(255, 175, 0, 0);
    opacity: 0;
    -webkit-transform: translateY(30px);
    transform: translateY(30px);
  }

  50% {
    -webkit-box-shadow: 0 0 20px rgba(255, 175, 0, 0.5);
    box-shadow: 0 0 20px rgba(255, 175, 0, 0.5);
    opacity: 0.8;
  }

  to {
    -webkit-box-shadow: 0 0 10px rgba(255, 175, 0, 0.2);
    box-shadow: 0 0 10px rgba(255, 175, 0, 0.2);
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

@keyframes glowFadeIn {
  0% {
    -webkit-box-shadow: 0 0 0 rgba(255, 175, 0, 0);
    box-shadow: 0 0 0 rgba(255, 175, 0, 0);
    opacity: 0;
    -webkit-transform: translateY(30px);
    transform: translateY(30px);
  }

  50% {
    -webkit-box-shadow: 0 0 20px rgba(255, 175, 0, 0.5);
    box-shadow: 0 0 20px rgba(255, 175, 0, 0.5);
    opacity: 0.8;
  }

  to {
    -webkit-box-shadow: 0 0 10px rgba(255, 175, 0, 0.2);
    box-shadow: 0 0 10px rgba(255, 175, 0, 0.2);
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

@-webkit-keyframes gentleRotate {
  0% {
    opacity: 0;
    -webkit-transform: rotate(0deg) scale(0.8);
    transform: rotate(0deg) scale(0.8);
  }

  50% {
    opacity: 0.7;
    -webkit-transform: rotate(180deg) scale(1.1);
    transform: rotate(180deg) scale(1.1);
  }

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

@keyframes gentleRotate {
  0% {
    opacity: 0;
    -webkit-transform: rotate(0deg) scale(0.8);
    transform: rotate(0deg) scale(0.8);
  }

  50% {
    opacity: 0.7;
    -webkit-transform: rotate(180deg) scale(1.1);
    transform: rotate(180deg) scale(1.1);
  }

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

@-webkit-keyframes waveEffect {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-50px) scale(0.9);
    transform: translateX(-50px) scale(0.9);
  }

  25% {
    opacity: 0.7;
    -webkit-transform: translateX(10px) scale(1.05);
    transform: translateX(10px) scale(1.05);
  }

  50% {
    opacity: 0.9;
    -webkit-transform: translateX(-5px) scale(1.02);
    transform: translateX(-5px) scale(1.02);
  }

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

@keyframes waveEffect {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-50px) scale(0.9);
    transform: translateX(-50px) scale(0.9);
  }

  25% {
    opacity: 0.7;
    -webkit-transform: translateX(10px) scale(1.05);
    transform: translateX(10px) scale(1.05);
  }

  50% {
    opacity: 0.9;
    -webkit-transform: translateX(-5px) scale(1.02);
    transform: translateX(-5px) scale(1.02);
  }

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

@-webkit-keyframes elasticAppear {
  0% {
    opacity: 0;
    -webkit-transform: scale(0) rotate(-180deg);
    transform: scale(0) rotate(-180deg);
  }

  50% {
    opacity: 0.8;
    -webkit-transform: scale(1.2) rotate(-90deg);
    transform: scale(1.2) rotate(-90deg);
  }

  75% {
    opacity: 0.9;
    -webkit-transform: scale(0.9) rotate(-30deg);
    transform: scale(0.9) rotate(-30deg);
  }

  to {
    opacity: 1;
    -webkit-transform: scale(1) rotate(0deg);
    transform: scale(1) rotate(0deg);
  }
}

@keyframes elasticAppear {
  0% {
    opacity: 0;
    -webkit-transform: scale(0) rotate(-180deg);
    transform: scale(0) rotate(-180deg);
  }

  50% {
    opacity: 0.8;
    -webkit-transform: scale(1.2) rotate(-90deg);
    transform: scale(1.2) rotate(-90deg);
  }

  75% {
    opacity: 0.9;
    -webkit-transform: scale(0.9) rotate(-30deg);
    transform: scale(0.9) rotate(-30deg);
  }

  to {
    opacity: 1;
    -webkit-transform: scale(1) rotate(0deg);
    transform: scale(1) rotate(0deg);
  }
}

@-webkit-keyframes floatingEffect {
  0%,
  to {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }

  50% {
    -webkit-transform: translateY(-10px);
    transform: translateY(-10px);
  }
}

@keyframes floatingEffect {
  0%,
  to {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }

  50% {
    -webkit-transform: translateY(-10px);
    transform: translateY(-10px);
  }
}

@-webkit-keyframes colorPulse {
  0% {
    background-color: #ffaf00;
    -webkit-transform: scale(1);
    transform: scale(1);
  }

  50% {
    background-color: gold;
    -webkit-transform: scale(1.05);
    transform: scale(1.05);
  }

  to {
    background-color: #ffaf00;
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}

@keyframes colorPulse {
  0% {
    background-color: #ffaf00;
    -webkit-transform: scale(1);
    transform: scale(1);
  }

  50% {
    background-color: gold;
    -webkit-transform: scale(1.05);
    transform: scale(1.05);
  }

  to {
    background-color: #ffaf00;
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}

.custom-glow {
  -webkit-animation: glowFadeIn 1.5s ease-out;
  animation: glowFadeIn 1.5s ease-out;
}

.custom-rotate {
  -webkit-animation: gentleRotate 1.2s ease-in-out;
  animation: gentleRotate 1.2s ease-in-out;
}

.custom-wave {
  -webkit-animation: waveEffect 1s ease-out;
  animation: waveEffect 1s ease-out;
}

.custom-elastic {
  -webkit-animation: elasticAppear 1.3s ease-out;
  animation: elasticAppear 1.3s ease-out;
}

.floating {
  -webkit-animation: floatingEffect 3s ease-in-out infinite;
  animation: floatingEffect 3s ease-in-out infinite;
}

.color-pulse {
  -webkit-animation: colorPulse 2s ease-in-out infinite;
  animation: colorPulse 2s ease-in-out infinite;
}

.main__title-wrapper {
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 5.8rem;
  justify-content: center;
  margin-bottom: 5.1rem;
  padding-top: 4.6rem;
}

.main__title h1 {
  font-size: 6.5rem;
  font-weight: 900;
  line-height: 1;
}

.main__title h1,
.main__title h2 {
  color: #1f2229;
  margin-bottom: 0;
}

.main__title h2 {
  font-size: 3.5rem;
  font-weight: 300;
}

.main__bg {
  margin-bottom: 8rem;
}

.main__bg img {
  border-radius: 2.5rem;
  -o-object-fit: cover;
  object-fit: cover;
  width: 100%;
}

.whatis__wrapper {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1.21rem;
  margin-bottom: 8.1rem;
}

.whatis__info {
  width: 100%;
}

.whatis__info h3 {
  color: #1f2229;
  font-size: 6.2rem;
  font-weight: 900;
  margin-bottom: 7rem;
}

.whatis__info p {
  color: #1f2229;
  font-size: 2.8rem;
  font-weight: 300;
  line-height: 1.25;
  margin-bottom: 7.6rem;
}

.whatis__info a {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-backdrop-filter: blur(0.53rem);
  backdrop-filter: blur(0.53rem);
  background: #ffaf00;
  border-radius: 0.8rem;
  color: #1f2229;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 2rem;
  font-weight: 400;
  height: 7.4rem;
  justify-content: center;
  width: 33.7rem;
}

.whatis__image {
  width: 100%;
}

.whatis__image img {
  border-radius: 2.5rem;
}

.whatyou__wrapper {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 6rem;
  margin-bottom: 7.9rem;
}

.whatyou__image {
  width: 100%;
}

.whatyou__image img {
  border-radius: 2.5rem;
}

.whatyou__info {
  width: 100%;
}

.whatyou__info h3 {
  color: #1f2229;
  font-size: 6.2rem;
  font-weight: 900;
  margin-bottom: 7.4rem;
}

.whatyou__info ul {
  list-style: none;
  padding-left: 3.4rem;
}

.whatyou__info ul li {
  color: #1f2229;
  font-size: 2.8rem;
  font-weight: 300;
  line-height: 1.25;
  margin-bottom: 1rem;
  position: relative;
}

.whatyou__info ul li:before {
  background: #ffaf00;
  border-radius: 100%;
  content: "";
  height: 1.3rem;
  left: -2.6rem;
  position: absolute;
  top: 0.8rem;
  width: 1.3rem;
}

.whatyou__info ul ul {
  max-width: 45.7rem;
}

.whatyou__info ul ul li:before {
  background: #1f2229;
  border-radius: 100%;
  content: "";
  height: 0.4rem;
  left: -2.6rem;
  position: absolute;
  top: 1.6rem;
  width: 0.4rem;
}

.try__section {
  background-image: url(../img/bonus-image.jpg);
  background-position: 100%;
  background-repeat: no-repeat;
  background-size: cover;
  height: 44.1rem;
  margin-bottom: 8rem;
  padding: 4rem;
}

.try__section,
.try__section .try__wrapper {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  border-radius: 2.5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  justify-content: center;
}

.try__section .try__wrapper {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-backdrop-filter: blur(0.88rem);
  backdrop-filter: blur(0.88rem);
  background: hsla(0, 0%, 85%, 0.2);
  border: 0.3rem solid hsla(0, 0%, 100%, 0.1);
  -ms-flex-direction: column;
  flex-direction: column;
  height: 30.5rem;
  padding: 2.8rem 2rem 2.3rem;
  width: 118.5rem;
}

.try__section .try__wrapper h3 {
  color: #fff;
  font-size: 6.2rem;
  font-weight: 900;
  margin-bottom: 3.5rem;
  max-width: 75.6rem;
  text-align: center;
}

.try__section .try__wrapper a {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-backdrop-filter: blur(5.3000001907px);
  backdrop-filter: blur(5.3000001907px);
  background: #ffaf00;
  border-radius: 0.8rem;
  color: #1f2229;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 2rem;
  font-weight: 400;
  height: 7.4rem;
  justify-content: center;
  width: 33.7rem;
}

.try__section .try__wrapper a:hover {
  background: #ffbf33;
  color: #fff;
}

.footer__wrapper {
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  align-items: center;
  background: #132831;
  border-top-left-radius: 1.5rem;
  border-top-right-radius: 1.5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  justify-content: space-between;
  padding: 5.1rem 6.4rem 7.4rem 4rem;
}

.footer__left {
  display: grid;
  gap: 1rem 1.4rem;
  grid-template-columns: 2fr 1fr;
  max-width: 41.5rem;
}

.footer__left .footer-item {
  white-space: nowrap;
  width: 100%;
}

.footer__left a {
  color: #fff;
  font-size: 1.8rem;
  font-weight: 300;
  text-decoration: underline;
}

.footer__midle {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 7.1rem;
  margin-left: 3rem;
  margin-right: 2rem;
}

.footer__midle a:first-of-type img {
  height: 7.3rem;
  -o-object-fit: contain;
  object-fit: contain;
  width: 9rem;
}

.footer__midle a:nth-of-type(2) img {
  height: 4.7917rem;
  height: 6.4rem;
  -o-object-fit: contain;
  object-fit: contain;
  width: 15.4rem;
  width: 21.2rem;
}

.footer__right {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 1.4rem;
  text-align: right;
}

.footer__right a {
  color: #fff;
  font-size: 1.8rem;
  font-weight: 300;
  text-decoration: underline;
}

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

.autopolza {
  height: 12rem;
  width: 14.8rem;
}

.sklogo {
  height: 6.3rem;
  width: 27.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: 1300px) {
  .footer__left a {
    font-size: 1.6rem;
  }

  .footer__left {
    max-width: 35.5rem;
  }

  .footer__right a {
    font-size: 1.6rem;
  }

  .footer__midle {
    margin-left: 5rem;
  }

  .main__title h1 {
    font-size: 4.7rem;
  }

  .main__title-wrapper {
    margin-bottom: 3.1rem;
    padding-top: 1.6rem;
  }

  .main__bg {
    margin-bottom: 3rem;
  }

  .whatis__info h3 {
    font-size: 4.2rem;
    margin-bottom: 1rem;
  }

  .whatis__info p {
    font-size: 2.2rem;
    margin-bottom: 2rem;
  }

  .whatis__info a {
    font-size: 1.6rem;
    height: 5.4rem;
    width: 30rem;
  }

  .whatis__wrapper {
    margin-bottom: 3rem;
  }

  .whatyou__info h3 {
    font-size: 4.2rem;
    margin-bottom: 1rem;
  }

  .whatyou__info p {
    margin-bottom: 2rem;
  }

  .whatyou__info a {
    font-size: 1.6rem;
    height: 5.4rem;
    width: 30rem;
  }

  .whatyou__info ul {
    padding-left: 2rem;
  }

  .whatyou__info ul li {
    font-size: 1.6rem;
  }

  .whatyou__info ul li:before {
    height: 0.8rem;
    left: -1.8rem;
    top: 0.5rem;
    width: 0.8rem;
  }

  .whatyou__info ul ul li:before {
    left: -2rem;
    top: 0.9rem;
  }

  .whatyou__wrapper {
    margin-bottom: 3rem;
  }

  .try__section .try__wrapper h3 {
    font-size: 4.2rem;
    margin-bottom: 2rem;
  }

  .try__section .try__wrapper a {
    font-size: 1.6rem;
    height: 5.4rem;
    width: 30rem;
  }

  .try__section {
    margin-bottom: 3rem;
  }
}

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

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

@media (max-width: 768px) {
  .custom-elastic,
  .custom-glow,
  .custom-rotate,
  .custom-wave {
    -webkit-animation-duration: 0.3s;
    animation-duration: 0.3s;
  }

  .floating {
    -webkit-animation-duration: 2s;
    animation-duration: 2s;
    -webkit-animation-iteration-count: 3;
    animation-iteration-count: 3;
  }
}

@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;
  }

  .main__title-wrapper {
    gap: 3.8rem;
  }

  .main__title h1 {
    font-size: 3.7rem;
  }

  .main__title h2 {
    font-size: 2.6rem;
  }

  .whatis__info h3 {
    font-size: 3.2rem;
  }

  .whatis__info p {
    font-size: 1.6rem;
  }

  .whatis__info a {
    width: 100%;
  }

  .whatyou__info h3 {
    font-size: 3.2rem;
  }

  .whatyou__info p {
    font-size: 1.6rem;
  }

  .whatyou__info a {
    width: 100%;
  }

  .whatyou__wrapper {
    gap: 2rem;
  }

  .try__section {
    padding: 2rem;
  }

  .try__section .try__wrapper h3 {
    font-size: 3.2rem;
  }

  .footer__wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 3rem;
    padding: 2rem;
  }

  .footer__right {
    text-align: center;
  }

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

  .whatyou__wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }

  .main__bg img {
    border-radius: 1.5rem;
  }

  .whatis__image img,
  .whatyou__image img {
    width: 100%;
  }

  .main__title-logos {
    -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: 2rem;
  }

  .main__title-wrapper img {
    height: auto;
  }

  .main__title-wrapper {
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
  }
}

@media (max-width: 550px) {
  .main__title h1 {
    font-size: 2.7rem;
  }

  .main__title h2 {
    font-size: 1.6rem;
  }

  .main__title-wrapper {
    gap: 2.8rem;
  }

  .main__title-wrapper img {
    height: 6rem;
    height: auto;
  }

  .main__title-wrapper .autopolza {
    height: 6rem;
  }

  .footer__midle {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 2rem;
  }
}

@media (max-width: 420px) {
  .try__section .try__wrapper h3 {
    font-size: 2.2rem;
  }

  .try__section .try__wrapper a {
    width: 100%;
  }

  .footer__left a,
  .footer__right a {
    font-size: 1.3rem;
  }

  .footer__wrapper {
    gap: 2rem;
  }
}

@media (max-width: 350px) {
  .main__title h1 {
    font-size: 2.3rem;
  }

  .main__title h2 {
    font-size: 1.4rem;
  }
}

/* Модальное окно формы */
.modal-auto {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  overflow-y: auto;
}

.modal-auto.active {
  opacity: 1;
  visibility: visible;
}

.modal-auto__wrapper {
  position: relative;
  background: #fff;
  border-radius: 2rem;
  max-width: 80.9rem;
  width: 100%;
  margin: 2rem;
   /* max-height: 90vh;
  overflow-y: auto; */
  transform: scale(0.8); 
  transition: transform 0.3s ease;
  position: absolute;
    top: 10rem;
}

.modal-auto.active .modal-auto__wrapper {
  transform: scale(1);
}

.modal-auto__close {
  position: absolute;
  top: 2rem;
  right: 2rem;
  width: 4rem;
  height: 4rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: all 0.3s ease;
  z-index: 10;
}

.modal-auto__close:hover {
  background: rgba(0, 0, 0, 0.2);
  transform: rotate(90deg);
}

.modal-auto__close svg {
  width: 2rem;
  height: 2rem;
  color: #1f2229;
}

.modal-auto__content {
  padding: 4rem 3rem 3rem;
  padding-left: 8.2rem;
  padding-right: 8.3rem;
  padding-top: 8.5rem;
  padding-bottom: 7.4rem;
}

.modal-auto__content h3 {
  font-size: 4rem;
  font-weight: 500;
  color: #1F2229;
  margin-bottom: 3.1rem;
  text-align: center;
}

.modal-auto__content p {
  font-size: 1.6rem;
  color: #666;
  text-align: center;
  margin-bottom: 3rem;
  line-height: 1.4;
}

.modal-form {
  display: flex;
  flex-direction: column;
  gap: 2.2rem;
}

.form-group {
  position: relative;
  display: flex;
  justify-content: center;
}
.modal-form input{
  height: 8.6rem;
  display: flex;
  justify-content: center;
  align-items: center;
}


.modal-form input,
.modal-form textarea {
  width: 100%;
  /* padding: 1.5rem 2rem; */
  border: 1px solid rgba(31, 34, 41, 0.20);
  border-radius: 2.5rem;
  font-size: 2rem;
  font-weight: 400;
  color: #8F9194;
  transition: all 0.3s ease;
  background: #fff;
  text-align: center;
  font-family: Muller, sans-serif;
}

.modal-form .input:focus,
.modal-form .textarea:focus {
  border-color: #5ab16f;
  box-shadow: 0 0 0 0.3rem rgba(90, 177, 111, 0.1);
  outline: none;
}

.modal-form .textarea {
  resize: vertical;
  min-height: 12rem;
  resize: none;
}

.form-submit {
  border-radius: 2.5rem;
  margin-top: 1rem;
  transition: all 0.3s ease;
  background: #FFAF00;
  border: none;
  color: #1F2229;
  font-size: 2rem;
  font-weight: 400;
  height: 7.4rem;
  display: flex;
  justify-content: center;
  align-items: center;
}


.form-submit:hover {
  box-shadow: 0 0.5rem 1.5rem rgba(255, 149, 0, 0.3);
  background: #e6860d;
}

.form-submit:active {
  transform: translateY(0);
}

/* Стили для чекбокса в форме */
.modal-form .control {
  padding-left: 0;
  padding-top: 0;
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 1.4rem;
  line-height: 1.4;
  margin-bottom: 0;
}

.modal-form .control input {
  position: relative;
  opacity: 1;
  left: 0;
  top: 0;
  z-index: 1;
  width: 2rem;
  height: 2rem;
  margin: 0;
  flex-shrink: 0;
}

.modal-form .control_indicator {
  display: none;
}

.modal-form .control a {
  color: #707070;
  text-decoration: underline;
}

.modal-form .control a:hover {
  color: #0056b3;
  text-decoration: none;
}

/* Успешная отправка */
.form-success {
  text-align: center;
  padding: 2rem;
}

.form-success h4 {
  color: #5ab16f;
  font-size: 3.5rem;
  margin-bottom: 1rem;
}

.form-success p {
  color: #666;
  font-size: 1.6rem;
}

/* Адаптивность модальной формы */
@media (max-width: 768px) {
  .modal-auto__wrapper {
    border-radius: 1.5rem;
    margin: 1rem;
    max-width: 94%;
  }

  .modal-auto__content {
    padding: 3rem 2rem 2rem;
  }

  .modal-auto__content h3 {
    font-size: 2.4rem;
  }

  .modal-auto__content p {
    font-size: 1.4rem;
    margin-bottom: 2rem;
  }

  .modal-form {
    gap: 1rem;
  }

  .modal-form .input,
  .modal-form .textarea {
    font-size: 1.2rem;
  }
  .modal-form input{
    border-radius: 1.5rem;
    height: 4.6rem;
  }
  .modal-auto__content h3{
    margin-bottom: 2.1rem;
  }
  .form-submit{
    height: 4.6rem;
    border-radius: 1.5rem;
    font-size: 1.4rem;
  }
  .modal-form .control{
    flex-wrap: wrap;
    justify-content: center;
    font-size: 1rem;
  }
  .modal-form .control input {
    height: 1.4rem;
    width: 1.4rem;
  }
  .modal-form .control a{
    font-size: 1rem;
  }
  

  .modal-auto__close {
    top: 0.5rem;
    right: 0.5rem;
    width: 3.5rem;
    height: 3.5rem;
  }

  .modal-auto__close svg {
    width: 1.8rem;
    height: 1.8rem;
  }
}

@media (max-width: 480px) {
  .modal-auto__content h3 {
    font-size: 1.6rem;
  }

  .modal-auto__content {
    padding: 2.5rem 1.5rem 1.5rem;
    padding-top: 4rem;
  }
}
