@font-face {
  font-family: Gilroy;
  font-style: normal;
  font-weight: 300;
  src: url(../fonts/Gilroy-Light.woff2) format("woff2");
}

@font-face {
  font-family: Gilroy;
  font-style: normal;
  font-weight: 400;
  src: url(../fonts/Gilroy-Regular.woff2) format("woff2");
}

@font-face {
  font-family: Gilroy;
  font-style: normal;
  font-weight: 500;
  src: url(../fonts/Gilroy-Medium.woff2) format("woff2");
}

@font-face {
  font-family: Gilroy;
  font-style: normal;
  font-weight: 600;
  src: url(../fonts/Gilroy-Semibold.woff2) format("woff2");
}

@font-face {
  font-family: Gilroy;
  font-style: normal;
  font-weight: 700;
  src: url(../fonts/Gilroy-Bold.woff2) format("woff2");
}

@font-face {
  font-family: Gilroy;
  font-style: normal;
  font-weight: 800;
  src: url(../fonts/Gilroy-Extrabold.woff2) format("woff2");
}

@font-face {
  font-family: Gilroy;
  font-style: normal;
  font-weight: 900;
  src: url(../fonts/Gilroy-Black.woff2) format("woff2");
}

@font-face {
  font-family: Gilroy;
  font-style: normal;
  font-weight: 1000;
  src: url(../fonts/Gilroy-Heavy.woff2) format("woff2");
}

:root {
  --indexSize: 1vh + 1vw;
  --black: #1f2229;
  --green: #5ab16f;
  --purple: #270089;
}

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

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

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

body,
button,
input,
textarea {
  font-family: Montserrat, 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 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  min-height: 100%;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  opacity: 0;
  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;
}

main {
  padding-top: 3.9rem;
}

::-moz-selection {
  background-color: #270089;
  color: #fff;
}

::selection {
  background-color: #270089;
  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 fadeOut {
  0% {
    opacity: 1;
  }

  to {
    opacity: 0;
  }
}

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

  to {
    opacity: 0;
  }
}

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

  to {
    opacity: 1;
  }
}

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

  to {
    opacity: 1;
  }
}

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: Montserrat, 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: Gilroy, 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__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: #270089;
}

.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: 4rem;
  font-weight: 400;
  line-height: 1.125;
}

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 {
  margin: 0 auto;
  max-width: 148rem;
  padding-left: 4rem;
  padding-right: 4rem;
}

.btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-family: Montserrat, sans-serif;
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 1.2;
  padding: 0;
  text-shadow: none;
  text-transform: none;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  background: #270089;
  border: none;
  border-radius: 0.8rem;
  -webkit-box-shadow: none;
  box-shadow: none;
  color: #fff;
  cursor: pointer;
  justify-content: center;
  letter-spacing: 0;
  position: relative;
  -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: #3300b2;
  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;
}

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

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

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

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

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

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

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

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

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

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

@-webkit-keyframes clip {
  0% {
    clip-path: polygon(10% 10%, 90% 10%, 90% 90%, 10% 90%);
    opacity: 0.4;
    will-change: clip-path;
  }

  to {
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
    opacity: 1;
    will-change: clip-path;
  }
}

@keyframes clip {
  0% {
    clip-path: polygon(10% 10%, 90% 10%, 90% 90%, 10% 90%);
    opacity: 0.4;
    will-change: clip-path;
  }

  to {
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
    opacity: 1;
    will-change: clip-path;
  }
}

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

@-webkit-keyframes clipInLeft {
  0% {
    clip-path: polygon(0 0, 0 0, 0 100%, 0 100%);
    opacity: 0.4;
    will-change: clip-path;
  }

  to {
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
    opacity: 1;
    will-change: clip-path;
  }
}

@keyframes clipInLeft {
  0% {
    clip-path: polygon(0 0, 0 0, 0 100%, 0 100%);
    opacity: 0.4;
    will-change: clip-path;
  }

  to {
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
    opacity: 1;
    will-change: clip-path;
  }
}

@-webkit-keyframes clipInRight {
  0% {
    clip-path: polygon(100% 0, 100% 0, 100% 100%, 100% 100%);
    opacity: 0.4;
    will-change: clip-path;
  }

  to {
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
    opacity: 1;
    will-change: clip-path;
  }
}

@keyframes clipInRight {
  0% {
    clip-path: polygon(100% 0, 100% 0, 100% 100%, 100% 100%);
    opacity: 0.4;
    will-change: clip-path;
  }

  to {
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
    opacity: 1;
    will-change: clip-path;
  }
}

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

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

@-webkit-keyframes clipInUp {
  0% {
    clip-path: polygon(0 100%, 100% 100%, 100% 100%, 0 100%);
    opacity: 0.4;
    will-change: clip-path;
  }

  to {
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
    opacity: 1;
    will-change: clip-path;
  }
}

@keyframes clipInUp {
  0% {
    clip-path: polygon(0 100%, 100% 100%, 100% 100%, 0 100%);
    opacity: 0.4;
    will-change: clip-path;
  }

  to {
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
    opacity: 1;
    will-change: clip-path;
  }
}

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

@-webkit-keyframes scaleIn {
  0% {
    opacity: 0;
    -webkit-transform: scale(0.85);
    transform: scale(0.85);
  }

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

@keyframes scaleIn {
  0% {
    opacity: 0;
    -webkit-transform: scale(0.85);
    transform: scale(0.85);
  }

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

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

@-webkit-keyframes slideInLeft {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(-2.5rem, 0, 0);
    transform: translate3d(-2.5rem, 0, 0);
  }

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

@keyframes slideInLeft {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(-2.5rem, 0, 0);
    transform: translate3d(-2.5rem, 0, 0);
  }

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

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

@-webkit-keyframes slideInRight {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(2.5rem, 0, 0);
    transform: translate3d(2.5rem, 0, 0);
  }

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

@keyframes slideInRight {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(2.5rem, 0, 0);
    transform: translate3d(2.5rem, 0, 0);
  }

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

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

@-webkit-keyframes blurIn {
  0% {
    -webkit-filter: blur(0.5rem);
    filter: blur(0.5rem);
    opacity: 0;
    -webkit-transform: scale(1.02);
    transform: scale(1.02);
  }

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

@keyframes blurIn {
  0% {
    -webkit-filter: blur(0.5rem);
    filter: blur(0.5rem);
    opacity: 0;
    -webkit-transform: scale(1.02);
    transform: scale(1.02);
  }

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

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

@-webkit-keyframes rotateInSoft {
  0% {
    opacity: 0;
    -webkit-transform: rotate(-4deg) scale(0.9);
    transform: rotate(-4deg) scale(0.9);
  }

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

@keyframes rotateInSoft {
  0% {
    opacity: 0;
    -webkit-transform: rotate(-4deg) scale(0.9);
    transform: rotate(-4deg) scale(0.9);
  }

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

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

@-webkit-keyframes clipInDown {
  0% {
    clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
    opacity: 0.4;
    will-change: clip-path;
  }

  to {
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
    opacity: 1;
    will-change: clip-path;
  }
}

@keyframes clipInDown {
  0% {
    clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
    opacity: 0.4;
    will-change: clip-path;
  }

  to {
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
    opacity: 1;
    will-change: clip-path;
  }
}

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

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

.scroll-area {
  scrollbar-color: #d6d6d7 transparent;
  scrollbar-width: thin;
}

.scroll-area::-webkit-scrollbar {
  width: 7px;
}

.scroll-area::-webkit-scrollbar-track {
  background: transparent;
  -webkit-box-shadow: none;
  box-shadow: none;
}

.scroll-area::-webkit-scrollbar-thumb {
  background-color: #d6d6d7;
  outline: none;
}

.quantity-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  background: #fff;
  border: 1px solid rgba(31, 34, 41, 0.3);
  border-radius: 5rem;
  height: 7.8rem;
  justify-content: space-between;
  margin-bottom: 2.9rem;
  max-width: 33.9rem;
  padding: 0 5.7rem;
  width: 100%;
}

.bt-minus {
  background: url(../img/icons/minus-icon.svg) 50%/3.6rem no-repeat;
  cursor: pointer;
  height: 4rem;
  margin: 0;
  width: 4rem;
}

.bt-minus,
.quantity {
  border: none;
  padding: 0;
}

.quantity {
  background: none;
  border-radius: 0;
  color: #1f2229;
  font-size: 4rem;
  font-weight: 400;
  height: 5rem;
  margin: 0 1rem;
  max-width: 12rem;
  text-align: center;
  width: 100%;
}

.bt-plus {
  background: url(../img/icons/plus-icon.svg) 50%/3.6rem no-repeat;
  border: none;
  cursor: pointer;
  height: 4rem;
  margin: 0;
  outline: none;
  padding: 0;
  width: 4rem;
}

.header {
  left: 0;
  padding: 0;
  position: absolute;
  top: 3.9rem;
  -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: 1.2s;
  transition-duration: 1.2s;
  width: 100%;
  z-index: 20;
}

.header__area {
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  gap: 4rem;
  justify-content: space-between;
  min-height: 7.2rem;
}

.header__area,
.header__logos {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.header__logos {
  gap: 3rem;
}

.header__logo {
  display: block;
  max-width: 18.2rem;
}

.header__logo--partner {
  max-width: 19rem;
}

.header__lk {
  border-radius: 0.8rem;
  font-size: 1.2rem;
  font-weight: 600;
  gap: 0.8rem;
  height: 4.4rem;
  max-width: 17.3rem;
  width: 100%;
}

.header__lk-icon {
  height: 1.7rem;
  width: 2.6rem;
}

.footer {
  padding: 5.8rem 0 4.6rem;
}

.footer__area {
  background: #270089;
  border-radius: 1.5rem;
  padding: 3.8rem 3rem;
}

.footer__top {
  margin-bottom: 3.6rem;
}

.footer__menu ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 3.3rem;
}

.footer__menu a {
  color: #fff;
  font-size: 2.2rem;
  font-weight: 400;
  text-decoration: underline;
  -webkit-text-decoration-skip-ink: none;
  text-decoration-skip-ink: none;
}

.footer__menu a:hover {
  text-decoration: none;
}

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

.footer__copy {
  margin-right: 7rem;
  max-width: 22.3rem;
  width: 100%;
}

.footer__copy p {
  color: #fff;
  font-size: 1.8rem;
  margin-bottom: 0;
  opacity: 0.65;
}

.footer__geo {
  max-width: 53.1rem;
  width: 100%;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
}

.footer__geo p {
  color: #fff;
  font-size: 1.8rem;
  margin-bottom: 0;
  opacity: 0.65;
}

.footer__pay {
  -webkit-box-flex: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  width: 100%;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  gap: 2.9rem;
  justify-content: flex-end;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.hero {
  background: #fff;
  padding: 17rem 0 6.4rem;
}

.hero__header {
  margin-bottom: 10.3rem;
}

.hero__subtitle {
  color: #270089;
  font-size: 3.5rem;
  font-weight: 600;
  line-height: 1;
  margin-bottom: 4.1rem;
  opacity: 0.85;
}

.hero__header .h1,
.hero__title {
  color: #1f2229;
  font-size: 6.5rem;
  font-weight: 900;
  line-height: 6.4rem;
  margin-bottom: 0;
  max-width: 122.7rem;
  opacity: 0.85;
}

.hero__cards {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 2rem;
}

.hero__card {
  height: 40.5rem;
  max-width: 69rem;
  position: relative;
  width: 100%;
}

.hero__card:hover .hero__card-image img {
  -webkit-transform: scale(1.06);
  -ms-transform: scale(1.06);
  transform: scale(1.06);
}

.hero__card-image {
  -webkit-box-shadow: 0 0.4rem 5rem 0 rgba(31, 34, 41, 0.07);
  box-shadow: 0 0.4rem 5rem 0 rgba(31, 34, 41, 0.07);
  left: 0;
  overflow: hidden;
  position: absolute;
  top: 0;
}

.hero__card-image,
.hero__card-image img {
  border-radius: 2.5rem;
  height: 100%;
  width: 100%;
}

.hero__card-image img {
  -o-object-fit: cover;
  object-fit: cover;
  pointer-events: none;
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(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);
}

.hero__card:nth-child(2) .hero__card-image {
  -webkit-box-shadow: 0 0.5rem 5rem 0 rgba(31, 34, 41, 0.07);
  box-shadow: 0 0.5rem 5rem 0 rgba(31, 34, 41, 0.07);
}

.hero__card-text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 100%;
  position: absolute;
  width: 100%;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
  padding: 2.3rem 4.3rem 3.6rem;
}

.hero__card-text span {
  color: #fff;
  font-size: 2.2rem;
  font-weight: 500;
  line-height: 2.5rem;
  max-width: 45.8rem;
}

.plant {
  padding: 4.3rem 0 6.6rem;
}

.plant .h2,
.plant .plant__title {
  font-size: 3.5rem;
  font-weight: 600;
  line-height: 1.29;
  margin-bottom: 3.2rem;
  max-width: 77.2rem;
}

.plant__area {
  grid-template-columns: 75.9rem minmax(0, 1fr);
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  background: #fff;
  border-radius: 2.5rem;
  -webkit-box-shadow: 0 1rem 5rem 0 rgba(31, 34, 41, 0.07);
  box-shadow: 0 1rem 5rem 0 rgba(31, 34, 41, 0.07);
  overflow: hidden;
}

.plant__area,
.plant__info {
  display: grid;
  min-height: 56.7rem;
  width: 100%;
}

.plant__info {
  background: transparent;
  border-radius: 0;
  -webkit-box-shadow: none;
  box-shadow: none;
  grid-template-rows: auto auto auto 1fr;
  max-width: none;
  padding: 4.3rem 0 3.9rem 4.7rem;
  position: relative;
  -ms-flex-line-pack: start;
  align-content: start;
  overflow: visible;
}

.plant__info-header {
  font-size: 2.8rem;
  line-height: 2.7rem;
  margin: 0 0 4.4rem;
  max-width: 30.8rem;
}

.plant__info-btn,
.plant__info-header {
  font-weight: 600;
  position: relative;
  z-index: 2;
}

.plant__info-btn {
  border-radius: 2.5rem;
  font-size: 1.8rem;
  height: 7.4rem;
  margin: 3.6rem 0 0;
  max-width: 35.8rem;
  width: 100%;
}

.plant__info-about-tree {
  backdrop-filter: blur(19.2px);
  background: hsla(0, 0%, 100%, 0.81);
  border: 1.5px solid hsla(0, 0%, 96%, 0.71);
  border-radius: 2.5rem;
  -webkit-box-shadow: 0 0.6rem 3.5rem 0 rgba(31, 34, 41, 0.07);
  box-shadow: 0 0.6rem 3.5rem 0 rgba(31, 34, 41, 0.07);
  margin-bottom: 0;
  max-width: 39.8rem;
  padding: 3.1rem 2rem 2.5rem;
  position: relative;
  width: 100%;
  z-index: 2;
}

.plant__info-about-tree p {
  font-family: Gilroy, sans-serif;
  font-size: 2.2rem;
  line-height: 2.3rem;
  margin-bottom: 2.9rem;
  text-align: left;
}

.plant__info-about-tree p:last-of-type {
  margin-bottom: 0;
}

.plant__info-about-tree p span {
  color: #8d8d8d;
  display: block;
  font-size: 1.8rem;
  line-height: 1.8rem;
}

.plant__info-about-tree b {
  color: #270089;
  font-size: 2.2rem;
  font-weight: 600;
  line-height: 2.3rem;
}

.plant__info-footer {
  font-size: 2.2rem;
  font-weight: 500;
  line-height: 2.3rem;
  margin-top: 0;
  max-width: 53.6rem;
  padding-top: 4.2rem;
  position: relative;
  z-index: 2;
}

.plant__info-image {
  left: 28.2rem;
  max-width: calc(100% - 28.2rem);
  pointer-events: none;
  position: absolute;
  top: 0;
  width: 44.4rem;
  z-index: 1;
}

.plant__info-image img {
  display: block;
  height: auto;
  width: 100%;
  will-change: transform;
}

.plant__calculation {
  background: #fff;
  border-radius: 0;
  -webkit-box-shadow: none;
  box-shadow: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  max-width: none;
  padding: 6.9rem 4.6rem 4.1rem 0.2rem;
  position: relative;
  width: 100%;
  z-index: 3;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  min-height: 56.7rem;
}

.plant__calculation .quantity-inner {
  display: grid;
  grid-template-columns: 11.2rem minmax(4rem, 1fr) 11.2rem;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  background: transparent;
  border: none;
  border-radius: 0;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  gap: 1.8rem;
  height: auto;
  margin: 0 0 4.1rem 8rem;
  max-width: 34.2rem;
  padding: 0;
  width: calc(100% - 8rem);
}

.plant__calculation .plant__quantity-btn {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-color: #fff;
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: 3.5rem;
  border: 1px solid rgba(31, 34, 41, 0.3);
  border-radius: 2rem;
  cursor: pointer;
  height: 7.8rem;
  padding: 0;
  width: 11.2rem;
}

.plant__calculation .plant__quantity-btn.bt-minus {
  background-image: url(../img/icons/minus-icon.svg);
}

.plant__calculation .plant__quantity-btn.bt-plus {
  background-image: url(../img/icons/plus-icon.svg);
}

.plant__calculation .plant__quantity {
  background: none;
  border: none;
  color: #1f2229;
  font-size: 4rem;
  height: auto;
  line-height: 1;
  margin: 0;
  max-width: 100%;
  min-width: 0;
  padding: 0;
  text-align: center;
  width: 100%;
}

.plant__calculation-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  gap: 1.8rem;
  margin-bottom: 4.1rem;
}

.plant__calculation-row img {
  -ms-flex-negative: 0;
  flex-shrink: 0;
  height: 6.1rem;
  width: 6.2rem;
}

.plant__calculation-row--co2 {
  gap: 1.4rem;
  margin-bottom: 0;
}

.plant__calculation-row--co2 img {
  height: 6.8rem;
  width: 6.8rem;
}

.plant__calculation-header {
  font-size: 2.2rem;
  font-weight: 500;
  line-height: 1.26;
  margin: 0;
  max-width: 52.9rem;
}

.plant__calculation-subheader {
  display: none;
}

.plant__calculation-co2 {
  font-family: Gilroy, sans-serif;
  font-size: 2.2rem;
  font-weight: 400;
  line-height: 1.27;
  margin: 0;
  max-width: 49.1rem;
}

.plant__calculation-co2-result-span {
  color: #270089;
  display: block;
  font-weight: 500;
}

.plant__calculation-btn {
  border-radius: 2.5rem;
  gap: 0.4rem;
  height: 7.4rem;
  margin-top: 5.2rem;
  max-width: 59.6rem;
  width: 100%;
}

.plant__calculation-btn span {
  font-size: 1.8rem;
  font-weight: 500;
}

.plant__calculation-btn .plant__calculation-price-result {
  font-family: Gilroy, sans-serif;
  font-size: 4rem;
  font-weight: 400;
  line-height: 1;
}

.place {
  padding-bottom: 8.6rem;
}

.place__header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 4rem;
  margin-bottom: 5.7rem;
}

.place__header .h2 {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  font-size: 3.5rem;
  font-weight: 600;
  line-height: 1.28;
  max-width: 65.3rem;
  min-width: 0;
}

.place__nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-negative: 0;
  background: #f4f5f6;
  border-radius: 2rem;
  -webkit-box-shadow: 0 13px 27px 0 rgba(31, 34, 41, 0.17);
  box-shadow: 0 13px 27px 0 rgba(31, 34, 41, 0.17);
  flex-shrink: 0;
  max-width: 33.8rem;
  min-height: 6.2rem;
  padding: 0.9rem 1.5rem;
  width: 100%;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.place__nav--hidden {
  display: none;
}

.place__nav-prev {
  background: url(../img/icons/nav-prev.svg) 50% / contain no-repeat;
  cursor: pointer;
  height: 4.3rem;
  width: 4.3rem;
}

.place__nav-title {
  font-size: 1.6rem;
}

.place__nav-next {
  background: url(../img/icons/nav-next.svg) 50% / contain no-repeat;
  cursor: pointer;
  height: 4.3rem;
  width: 4.3rem;
}

.place__gallery,
.place__slider {
  overflow: hidden;
}

.place__grid {
  display: grid;
  gap: 1.6rem;
  grid-template-columns: 40.5rem 30.2rem 30.2rem 34.3rem;
  grid-template-rows: repeat(2, 18.3rem);
}

.place__image-item img {
  border-radius: 1.5rem;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  width: 100%;
}

.place__image-item:first-of-type {
  grid-area: 1/1/3/2;
}

.place__image-item:first-of-type img {
  border-radius: 2.5rem;
}

.place__image-item:nth-of-type(2) {
  grid-area: 1/2/2/3;
}

.place__image-item:nth-of-type(3) {
  grid-area: 2/2/3/3;
}

.place__image-item:nth-of-type(4) {
  grid-area: 1/3/2/4;
}

.place__image-item:nth-of-type(5) {
  grid-area: 2/3/3/4;
}

.place__image-item:nth-of-type(6) {
  grid-area: 1/4/3/5;
}

.place__footer {
  display: grid;
  gap: 2.2rem;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-bottom: 2rem;
}

.place__footer-item {
  background: #fff;
  border-radius: 1.2rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  min-height: 11.8rem;
  position: relative;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 0.3rem 1.8rem;
}

.place__footer-item:first-of-type {
  gap: 2.7rem;
}

.place__footer-item:first-of-type .place__footer-item-icon img {
  height: 4.6rem;
  width: 4.5rem;
}

.place__footer-item:nth-of-type(2) {
  gap: 1.4rem;
}

.place__footer-item:nth-of-type(2) .place__footer-item-icon img {
  height: 4.8rem;
  width: 5.5rem;
}

.place__footer-item:nth-of-type(3) {
  gap: 1.8rem;
}

.place__footer-item:nth-of-type(3) .place__footer-item-icon img {
  height: 4.2rem;
  width: 6.1rem;
}

.place__footer-item:nth-of-type(4) {
  gap: 2.2rem;
}

.place__footer-item:nth-of-type(4) .place__footer-item-icon img {
  height: 4.3rem;
  width: 4.3rem;
}

.place__footer-item:nth-of-type(4) .place__footer-item-text {
  cursor: pointer;
  padding-right: 2.4rem;
  position: relative;
}

.place__footer-item:nth-of-type(4) .place__footer-item-text:after {
  background: url(../img/icons/copy-icon.svg) 50% / contain no-repeat;
  content: "";
  height: 1.65rem;
  position: absolute;
  right: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 1.65rem;
}

.place__footer-item:after {
  background: #1f2229;
  border-radius: 1.2rem;
  bottom: -2rem;
  content: "";
  -webkit-filter: blur(21.75px);
  filter: blur(21.75px);
  height: 11rem;
  opacity: 0.06;
  pointer-events: none;
  position: absolute;
  right: -0.9rem;
  width: calc(100% - 2.2rem);
  z-index: -1;
}

.place__footer-item-icon {
  -ms-flex-negative: 0;
  flex-shrink: 0;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.place__footer-item-icon,
.place__footer-item-text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.place__footer-item-text {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  min-width: 0;
}

.place__footer-item-text span:first-of-type {
  font-size: 2rem;
  line-height: 1.2;
  margin-bottom: 1.2rem;
  opacity: 0.5;
}

.place__footer-item-text span:nth-of-type(2) {
  font-size: 2rem;
  line-height: 1.2;
}

.fragile-nature {
  padding-bottom: 6.3rem;
}

.fragile-nature__area {
  border-radius: 2.5rem;
  min-height: 67.7rem;
  overflow: hidden;
  padding: 19.5rem 14.8rem 19.4rem;
  position: relative;
}

.fragile-nature__media {
  inset: 0;
  position: absolute;
  z-index: 0;
}

.fragile-nature__media:after {
  background: rgba(31, 34, 41, 0.35);
  content: "";
  inset: 0;
  position: absolute;
}

.fragile-nature__bg {
  -webkit-filter: blur(1.1px);
  filter: blur(1.1px);
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: 50% 36%;
  object-position: 50% 36%;
  -webkit-transform: scale(1.03);
  -ms-transform: scale(1.03);
  transform: scale(1.03);
  width: 100%;
}

.fragile-nature__decor {
  max-width: none;
  pointer-events: none;
  position: absolute;
  z-index: 1;
}

.fragile-nature__decor--1 {
  left: -1rem;
  opacity: 0.2;
  top: -1.1rem;
  width: 99.2rem;
}

.fragile-nature__decor--2 {
  bottom: -1.6rem;
  opacity: 0.15;
  right: -0.5rem;
  width: 60.6rem;
}

.fragile-nature__text {
  max-width: 93.2rem;
  position: relative;
  z-index: 2;
}

.fragile-nature__text .h2 {
  color: #fff;
  font-size: 9rem;
  font-weight: 600;
  line-height: 1.0556;
  margin-bottom: 4.2rem;
}

.fragile-nature__text p {
  color: #fff;
  font-size: 2.8rem;
  line-height: 1.35;
  margin: 0;
  max-width: 73.1rem;
}

.vantages__header {
  margin-left: 1.5rem;
  max-width: 84.8rem;
}

.vantages__header p {
  font-size: 2rem;
  font-weight: 500;
}

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

.vantages__header p a {
  color: #270089;
  text-decoration: underline;
  -webkit-text-decoration-skip-ink: none;
  text-decoration-skip-ink: none;
}

.vantages__header p a:hover {
  text-decoration: none;
}

.vantages__grid {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 6.7rem;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  gap: 4rem;
  justify-content: space-between;
  margin-right: -5rem;
  padding-left: 4.7rem;
}

.vantages__item {
  border-radius: 1.2rem;
  max-width: 32rem;
  position: relative;
  width: 100%;
}

.vantages__item:after {
  background: #1f2229;
  border-radius: 1.2rem;
  content: "";
  display: none;
  -webkit-filter: blur(21.5px);
  filter: blur(21.5px);
  height: 100%;
  left: 9.6rem;
  opacity: 0.06;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: -1;
}

.vantages__item p {
  font-size: 2rem;
}

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

.vantages__item:nth-of-type(odd) {
  background: #fff;
}

.vantages__item:nth-of-type(odd):after {
  display: block;
}

.vantages__item:first-of-type {
  padding: 0.8rem 0 3rem;
}

.vantages__item:first-of-type .vantages__item-title {
  max-width: 16.6rem;
}

.vantages__item:first-of-type p {
  max-width: 23.7rem;
}

.vantages__item:nth-of-type(2) {
  padding: 0.8rem 0 3rem;
}

.vantages__item:nth-of-type(2) .vantages__item-title {
  max-width: 23rem;
}

.vantages__item:nth-of-type(2) p {
  max-width: 27.3rem;
}

.vantages__item:nth-of-type(3) {
  padding: 0.8rem 0 3rem;
}

.vantages__item:nth-of-type(3) .vantages__item-title {
  max-width: 15.4rem;
}

.vantages__item:nth-of-type(3) p {
  max-width: 23.8rem;
}

.vantages__item:nth-of-type(4) {
  padding: 0.8rem 0 3rem;
}

.vantages__item:nth-of-type(4) .vantages__item-title {
  max-width: 24.8rem;
}

.vantages__item:nth-of-type(4) p {
  max-width: 25.8rem;
}

.vantages__item-icon {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 8.8rem;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-bottom: 2.2rem;
}

.vantages__item-title {
  font-size: 2.2rem;
  font-weight: 600;
  margin-bottom: 3.3rem;
}

.initiative-operator {
  padding: 10.3rem 0 6.6rem;
}

.initiative-operator__area {
  display: grid;
  gap: 1.1rem;
  grid-template-columns: 35.3rem 36.5rem 28.4rem 36.4rem;
  grid-template-rows: auto auto minmax(41.7rem, 1fr);
  height: 74.5rem;
  min-height: 74.5rem;
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
}

.initiative-operator__left {
  display: contents;
}

.initiative-operator__left .h2,
.initiative-operator__left .initiative-operator__title {
  font-size: 4rem;
  font-weight: 400;
  grid-column: 1 / 3;
  grid-row: 1;
  line-height: 1.2;
  margin-bottom: 3rem;
  max-width: 66.1rem;
  padding-top: 5.7rem;
}

.initiative-operator__left .h2 b,
.initiative-operator__left .initiative-operator__title b {
  color: #270089;
  font-weight: 600;
}

.initiative-operator__left .h2 span,
.initiative-operator__left .initiative-operator__title span {
  color: #5ab16f;
  font-weight: 600;
}

.initiative-operator__reports-btn {
  border-radius: 2.5rem;
  font-size: 1.8rem;
  font-weight: 600;
  grid-column: 1 / 3;
  grid-row: 2;
  height: 6.8rem;
  margin-bottom: 0;
  max-width: 39.5rem;
  text-align: center;
  width: 100%;
}

.initiative-operator__left-grid {
  display: contents;
}

.initiative-operator__left-grid .initiative-operator__image {
  height: 100%;
  min-height: 0;
}

.initiative-operator__left-grid .initiative-operator__image:first-child {
  grid-column: 1;
  grid-row: 3;
}

.initiative-operator__left-grid .initiative-operator__image:nth-child(2) {
  grid-column: 2;
  grid-row: 3;
}

.initiative-operator__left-gird {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1.1rem;
}

.initiative-operator__left-gird .initiative-operator__image {
  height: 41.7rem;
}

.initiative-operator__left-gird .initiative-operator__image:first-of-type {
  max-width: 35.3rem;
  width: 100%;
}

.initiative-operator__image {
  border-radius: 1.5rem;
  overflow: hidden;
  position: relative;
}

.initiative-operator__image img {
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  width: 100%;
}

.initiative-operator__image--banner {
  display: grid;
  gap: 1.1rem;
  grid-template-rows: 241fr 108fr;
  height: 100%;
  min-height: 0;
  overflow: hidden;
}

.initiative-operator__image--banner img {
  border-radius: 1.5rem;
  height: 100%;
  min-height: 0;
  -o-object-fit: cover;
  object-fit: cover;
  width: 100%;
}

.initiative-operator__image--banner .initiative-operator__image-title {
  background: #270089;
  border-radius: 2.5rem;
  padding: 1.5rem 2rem;
  position: static;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  min-height: 0;
}

.initiative-operator__image-title {
  bottom: 2.8rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1.1rem;
  left: 2rem;
  position: absolute;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.initiative-operator__image-title span {
  color: #fff;
  font-size: 2rem;
  font-weight: 600;
  line-height: 1.2;
}

.initiative-operator__image-title-icon {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
}

.initiative-operator__image-title-icon,
.initiative-operator__image-title-icon img {
  max-height: 4.2rem;
  max-width: 4.5rem;
}

.initiative-operator__right {
  display: contents;
}

.initiative-operator__right-col1 {
  display: grid;
  gap: 1.1rem;
  grid-column: 3;
  grid-row: 1 / -1;
  grid-template-rows: repeat(3, 1fr);
  min-height: 0;
  min-width: 0;
}

.initiative-operator__right-col1 .initiative-operator__image {
  height: 100%;
  min-height: 0;
  width: 100%;
}

.initiative-operator__right-col2 {
  display: grid;
  gap: 1.1rem;
  grid-column: 4;
  grid-row: 1 / -1;
  grid-template-rows: 360fr 373fr;
  min-height: 0;
  min-width: 0;
}

.initiative-operator__right-col2 .initiative-operator__image {
  height: 100%;
  min-height: 0;
  width: 100%;
}

.initiative-operator__right-col2 .initiative-operator__image-title {
  bottom: 2.5rem;
  gap: 2.1rem;
  left: 3.3rem;
}

.initiative-operator__right-col2 .initiative-operator__image-title-icon {
  max-height: 3.7rem;
  max-width: 3.5rem;
}

.faq__area {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  gap: 4rem;
  justify-content: space-between;
}

.faq__text {
  max-width: 47.3rem;
  padding-top: 6rem;
  width: 100%;
}

.faq__text p {
  font-size: 2.2rem;
  line-height: 1.36364;
}

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

.faq__text-header {
  margin-bottom: 5.4rem;
}

.faq__text-header .h2 {
  margin-bottom: 0.9rem;
}

.faq__text-header p {
  max-width: 37.4rem;
}

.faq__text-bg {
  position: relative;
}

.faq__text-bg a {
  color: #270089;
  text-decoration: underline;
}

.faq__text-bg a:hover {
  text-decoration: none;
}

.faq__text-bg:after {
  background: url(../img/icons/faq-text-bg.svg) 50% / contain no-repeat;
  content: "";
  height: 12.6rem;
  left: 50%;
  pointer-events: none;
  position: absolute;
  top: -1.5rem;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  width: 33.4rem;
}

.faq__items {
  max-width: 88.5rem;
  width: 100%;
}

.faq .ac {
  background: hsla(221, 8%, 60%, 0.1);
  border: none;
  border-radius: 1.5rem;
  margin: 0 0 0.9rem;
}

.faq .ac .ac-header {
  position: relative;
}

.faq .ac .ac-header:before {
  background: #270089;
  border-radius: 50%;
  content: "";
  height: 5rem;
  pointer-events: none;
  position: absolute;
  right: 3.1rem;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 5rem;
  z-index: 0;
}

.faq .ac .ac-trigger {
  background: transparent;
  color: #1f2229;
  display: block;
  font: inherit;
  font-family: Montserrat, sans-serif;
  font-size: 2.2rem;
  font-weight: 500;
  line-height: 1.26;
  padding: 2.2rem 8.6rem 2.2rem 5.1rem;
  position: relative;
  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%;
}

.faq .ac .ac-trigger:hover {
  color: #4b5263;
}

.faq .ac .ac-trigger:after,
.faq .ac .ac-trigger:before {
  background: #fff;
  content: "";
  pointer-events: none;
  position: absolute;
  right: 5.6rem;
  top: 50%;
  -webkit-transition: -webkit-transform 0.35s
    cubic-bezier(0.39, 0.575, 0.565, 1);
  transition: -webkit-transform 0.35s cubic-bezier(0.39, 0.575, 0.565, 1);
  transition: transform 0.35s cubic-bezier(0.39, 0.575, 0.565, 1);
  transition:
    transform 0.35s cubic-bezier(0.39, 0.575, 0.565, 1),
    -webkit-transform 0.35s cubic-bezier(0.39, 0.575, 0.565, 1);
  z-index: 1;
}

.faq .ac .ac-trigger:before {
  height: 2px;
  -webkit-transform: translate(50%, -50%);
  -ms-transform: translate(50%, -50%);
  transform: translate(50%, -50%);
  width: 2rem;
}

.faq .ac .ac-trigger:after {
  height: 2rem;
  -webkit-transform: translate(50%, -50%);
  -ms-transform: translate(50%, -50%);
  transform: translate(50%, -50%);
  width: 2px;
}

.faq .ac .ac-trigger:focus {
  color: #1f2229;
  outline: none;
}

.faq .ac .ac-panel .ac-text {
  color: rgba(31, 34, 41, 0.8);
  font: inherit;
  font-family: Montserrat, sans-serif;
  font-size: 1.8rem;
  font-weight: 400;
  line-height: 1.33333;
  max-width: 80.5rem;
  padding: 0 5.1rem 4.8rem;
}

.faq .ac .ac-panel .ac-text a {
  color: #5ab16f;
  text-decoration: underline;
  -webkit-text-decoration-skip-ink: none;
  text-decoration-skip-ink: none;
}

.faq .ac .ac-panel .ac-text a:hover {
  text-decoration: none;
}

.faq .ac.is-active > .ac-header .ac-trigger:after {
  -webkit-transform: translate(50%, -50%) rotate(90deg);
  -ms-transform: translate(50%, -50%) rotate(90deg);
  transform: translate(50%, -50%) rotate(90deg);
}

.subscription {
  padding-bottom: 6rem;
}

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

.subscription__area {
  background: rgba(212, 204, 231, 0.2);
  border-radius: 2.5rem;
  -webkit-column-gap: 9.4rem;
  -moz-column-gap: 9.4rem;
  column-gap: 9.4rem;
  display: grid;
  grid-template-columns: 44.5rem minmax(0, 1fr);
  grid-template-rows: 13rem auto 1fr;
  min-height: 49.1rem;
  padding: 2.8rem 3.4rem 3.8rem 5.6rem;
}

.subscription__steps {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  grid-column: 2;
  grid-row: 1 / 3;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  align-self: start;
  gap: 1.5rem;
  justify-content: space-between;
  justify-self: end;
  max-width: 66.1rem;
  width: 100%;
}

.subscription__content {
  grid-column: 1;
  grid-row: 1 / 4;
}

.subscription__content-icon {
  background: #fff;
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 13rem;
  margin: 0 0 3.6rem;
  width: 13rem;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.subscription__content-icon img {
  height: 8.8rem;
  width: 7.9rem;
}

.subscription__title {
  font-size: 2.8rem;
  font-weight: 600;
  line-height: 1;
  margin: 0 0 3.8rem;
  max-width: 36.8rem;
}

.subscription__text {
  font-size: 1.8rem;
  font-weight: 500;
  line-height: 3.2rem;
  margin: 0;
  max-width: 44.5rem;
}

.subscription__btn {
  align-self: end;
  background: #fff;
  border: 1px solid #270089;
  border-radius: 2.5rem;
  color: #1f2229;
  font-size: 1.8rem;
  font-weight: 600;
  grid-column: 2;
  grid-row: 3;
  height: 7.4rem;
  justify-self: end;
  margin: 0;
  max-width: 100%;
  width: 77.2rem;
}

.subscription__btn:hover {
  background: rgba(39, 0, 137, 0.08);
  color: #1f2229;
}

.subscription__step {
  -webkit-box-flex: 0;
  -ms-flex: 0 1 23.4rem;
  flex: 0 1 23.4rem;
  max-width: 23.4rem;
  text-align: center;
}

.subscription__step:first-child,
.subscription__step:first-child .subscription__step-text {
  max-width: 20.8rem;
}

.subscription__step:nth-child(2) {
  max-width: 17.5rem;
}

.subscription__step:nth-child(2) .subscription__step-text {
  max-width: 17.5rem;
}

.subscription__step-icon {
  background: #fff;
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 13rem;
  margin: 0 auto 3rem;
  width: 13rem;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.subscription__step-icon img {
  height: auto;
  width: auto;
}

.subscription__step:first-child .subscription__step-icon img {
  height: 5.1rem;
  width: 7rem;
}

.subscription__step:nth-child(2) .subscription__step-icon img {
  height: 6.9rem;
  width: 6.9rem;
}

.subscription__step:nth-child(3) .subscription__step-icon img {
  height: 7.7rem;
  width: 5.8rem;
}

.subscription__step-text {
  font-size: 1.8rem;
  font-weight: 400;
  line-height: 3rem;
  margin: 0 auto;
  max-width: 23.4rem;
}

.subscription__types {
  background: rgba(39, 0, 137, 0.2);
  border-radius: 2.5rem;
  gap: 7.9rem;
  min-height: 7.5rem;
  padding: 0 5.6rem;
}

.subscription__type,
.subscription__types {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.subscription__type {
  gap: 2rem;
}

.subscription__type p {
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 3.2rem;
  margin: 0;
}

.subscription__type p b {
  color: #270089;
  font-weight: 700;
}

.subscription__type-icon {
  height: 3.8rem;
  width: 4rem;
  -webkit-box-flex: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.subscription__type-icon img {
  height: 100%;
  width: 100%;
}

.subscription__type:last-child .subscription__type-icon {
  height: 3.8rem;
  width: 3.8rem;
}

.testimonials {
  padding: 6rem 0;
}

.testimonials__slider {
  overflow: visible;
}

.testimonials__item {
  cursor: pointer;
  margin: 0 auto;
  max-width: 28rem;
  text-align: center;
}

.testimonials__item-photo {
  background: rgba(48, 48, 48, 0.2);
  border-radius: 50%;
  height: 28.1rem;
  margin: 0 auto 2rem;
  overflow: hidden;
  position: relative;
  width: 28.1rem;
}

.testimonials__item-photo img {
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  width: 100%;
}

.testimonials__item-play {
  background: #fff;
  border: none;
  border-radius: 0.4rem;
  cursor: pointer;
  height: 5.4rem;
  left: 50%;
  position: absolute;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  width: 5.4rem;
  z-index: 2;
}

.testimonials__item-play:after {
  border-color: transparent transparent transparent #270089;
  border-style: solid;
  border-width: 0.8rem 0 0.8rem 1.2rem;
  content: "";
  left: 55%;
  position: absolute;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

.testimonials__item-name {
  background: #270089;
  border-radius: 0.5rem;
  color: #fff;
  display: inline-block;
  font-size: 2.8rem;
  font-weight: 500;
  letter-spacing: -0.05em;
  line-height: 1;
  margin-bottom: 1.5rem;
  padding: 0.5rem 2rem;
}

.testimonials__item-text {
  color: #303030;
  font-size: 2rem;
  letter-spacing: -0.04em;
  line-height: 1.1;
  margin: 0;
}

.mkb .plant__calculation,
.mkb .plant__info {
  background: #f7f7f7;
  -webkit-box-shadow: none;
  box-shadow: none;
}

.mkb .hero {
  background: transparent;
  position: relative;
}

.mkb .hero:after {
  background: #f7f7f7;
  content: "";
  height: 87.4rem;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: -1;
}

.mkb .place__footer-item:nth-of-type(4) .place__footer-item-text:after {
  background: url(../img/icons/copy-icon2.svg) 50% / contain no-repeat;
}

.mkb .initiative-operator__left .h2 span:first-of-type {
  color: #dd0a34;
}

.mkb .initiative-operator__left .h2 {
  max-width: 61.6rem;
}

.cashback {
  padding: 1.5rem 0 4rem;
}

.cashback__area {
  background: url(../img/cashback-bg.jpg) 50% / cover no-repeat;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 29.4rem;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  border-radius: 1.2rem;
  justify-content: center;
  padding-right: 14rem;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.cashback__area .h2 {
  color: #fff;
  font-size: 6.2rem;
  font-weight: 800;
  letter-spacing: 0.03em;
  line-height: 1;
  margin-bottom: 0;
  max-width: 49.3rem;
}

.cashback__area .h2 span {
  font-weight: 900;
}

.cashback__area p {
  color: #fff;
  font-size: 2.8rem;
  font-weight: 500;
  margin-bottom: 0;
  max-width: 46.6rem;
}

.cashback__content {
  position: relative;
}

.cashback__i {
  background: url(../img/icons/i.svg) 50% / contain no-repeat;
  cursor: pointer;
  height: 5.9rem;
  position: absolute;
  right: -7.5rem;
  top: 6.5rem;
  -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: 5.9rem;
}

.cashback__i:hover {
  -webkit-transform: scale(0.94);
  -ms-transform: scale(0.94);
  transform: scale(0.94);
}

.cashback-modal {
  background: rgba(31, 34, 41, 0.7);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 100%;
  left: 0;
  position: fixed;
  top: 0;
  width: 100%;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  display: none;
  z-index: 1000;
}

.cashback-modal.is-active {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.cashback-modal__area {
  background: #fff;
  border-radius: 1.2rem;
  max-width: 110.4rem;
  padding: 11.7rem 15.1rem 7.6rem;
  position: relative;
  width: 100%;
}

.cashback-modal__close {
  background: url(../img/icons/close-modal.svg) 50% / contain no-repeat;
  cursor: pointer;
  height: 4.8rem;
  position: absolute;
  right: 3.5rem;
  top: 3.2rem;
  -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: 4.8rem;
}

.cashback-modal__close:hover {
  -webkit-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  transform: rotate(90deg);
}

.cashback-modal__header {
  margin-bottom: 2.9rem;
  text-align: center;
}

.cashback-modal__header .h2 {
  font-size: 5rem;
  font-weight: 800;
}

.cashback-modal__header p {
  color: #5ab16f;
  font-size: 2.8rem;
  font-weight: 600;
  margin-bottom: 0;
  text-align: center;
}

.cashback-modal__text p {
  font-size: 2.8rem;
  font-weight: 400;
  text-align: center;
}

.cashback-modal__text a {
  color: #5ab16f;
  text-decoration: underline;
  -webkit-text-decoration-skip-ink: none;
  text-decoration-skip-ink: none;
}

.cashback-modal__text a:hover {
  text-decoration: none;
}

.modal-order {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 100%;
  position: fixed;
  width: 100%;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  background: rgba(31, 34, 41, 0.7);
  display: none;
  z-index: 9999;
}

.modal-order.is-active {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.modal-order__area {
  background: #fff;
  border-radius: 1.2rem;
  max-width: 78rem;
  padding: 6rem 12rem;
  position: relative;
  width: 100%;
}

.modal-order__close {
  background: url(../img/icons/close-modal.svg) 50%/22px no-repeat;
  cursor: pointer;
  display: none;
  height: 30px;
  position: absolute;
  right: 20px;
  top: 16px;
  width: 30px;
}

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

.modal-order__header {
  font-size: 3.5rem;
  font-weight: 400;
  margin-bottom: 2rem;
  text-align: center;
}

.modal-order__price {
  background: rgba(31, 34, 41, 0.1);
  border-radius: 1.2rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-bottom: 2.5rem;
  padding: 3rem 0 4rem;
}

.modal-order__price span {
  font-size: 2.4rem;
  font-weight: 300;
}

.modal-order__price .modal-order__price-result {
  font-size: 4rem;
  font-weight: 400;
  padding: 0 0.7rem;
  position: relative;
  top: 0.6rem;
}

.modal-order__inputs .input {
  border: 0.4px solid #1f2229;
  border-radius: 1.2rem;
  font-size: 2rem;
  font-weight: 400;
  height: 6.5rem;
  margin-bottom: 1.2rem;
  text-align: center;
}

.modal-order__inputs .input:last-of-type {
  margin-bottom: 0;
}

.modal-order__inputs .input::-webkit-input-placeholder {
  color: #1f2229;
  opacity: 0.5;
}

.modal-order__inputs .input::-moz-placeholder {
  color: #1f2229;
  opacity: 0.5;
}

.modal-order__inputs .input:-ms-input-placeholder {
  color: #1f2229;
  opacity: 0.5;
}

.modal-order__inputs .input::-ms-input-placeholder {
  color: #1f2229;
  opacity: 0.5;
}

.modal-order__inputs .input::placeholder {
  color: #1f2229;
  opacity: 0.5;
}

.modal-order__btn {
  font-size: 2rem;
  font-weight: 500;
  height: 7.2rem;
  margin-bottom: 3.5rem;
  margin-top: 3rem;
  width: 100%;
}

.modal-order__check {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.custom-checkbox {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  position: relative;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  cursor: pointer;
  gap: 1rem;
  line-height: 1;
  margin-bottom: 0;
}

.custom-checkbox span {
  font-size: 1.6rem;
  -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);
}

.custom-checkbox span a {
  text-decoration: underline;
  -webkit-text-decoration-skip-ink: none;
  text-decoration-skip-ink: none;
}

.custom-checkbox span a:hover {
  text-decoration: none;
}

.custom-checkbox input {
  left: 0;
  opacity: 0;
  position: absolute;
  top: 0;
  z-index: -1;
}

.custom-checkbox input:checked ~ .checkbox-icon:after {
  opacity: 1;
}

.custom-checkbox input:checked ~ span {
  opacity: 1;
}

.checkbox-icon {
  background: transparent;
  border-radius: 2px;
  height: 2rem;
  width: 2rem;
  -webkit-box-ordinal-group: 0;
  -ms-flex-order: -1;
  border: 1px solid #1f2229;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  order: -1;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding-top: 0.1rem;
  -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-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
}

.checkbox-icon:after {
  background: url(../img/icons/check.svg) 50% / contain no-repeat;
  content: "";
  display: block;
  height: 0.7rem;
  opacity: 0;
  -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: 1rem;
}

.modal-respond {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 100%;
  position: fixed;
  width: 100%;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  background: rgba(31, 34, 41, 0.7);
  display: none;
  z-index: 9999;
}

.modal-respond.is-active,
.modal-respond__area {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.modal-respond__area {
  border-radius: 1.2rem;
  max-width: 78rem;
  padding: 8.4rem 15rem 7rem;
  width: 100%;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  background: #fff;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.modal-respond__header {
  font-size: 3.5rem;
  margin-bottom: 6rem;
  text-align: center;
}

.modal-respond__btn {
  border-radius: 0.8rem;
  font-size: 2rem;
  font-weight: 500;
  height: 7.4rem;
  max-width: 42.3rem;
  width: 100%;
}

.modal-fail .modal-respond__btn {
  background: #fe0235;
}

.modal-fail .modal-respond__btn:hover {
  background: #fe204d;
}

@media (min-width: 767px) {
  .mkb .hero {
    padding-top: 18.6rem;
  }

  .mkb .hero__card {
    height: 38.9rem;
  }

  .mkb .hero__card-image {
    border-radius: 1.2rem;
  }

  .mkb .hero__header p {
    font-size: 2.5rem;
    font-weight: 400;
    max-width: 62.1rem;
  }

  .mkb .header-logos {
    gap: 2.9rem;
  }

  .mkb .hero__header {
    margin-bottom: 4.1rem;
  }

  .mkb .hero__card-text {
    padding: 3.3rem 5.6rem;
  }

  .mkb .plant {
    padding-top: 5.3rem;
  }

  .mkb .vantages__item:first-of-type p {
    max-width: 25.7rem;
  }

  .mkb .vantages__item:nth-of-type(3) p {
    max-width: 24.8rem;
  }
}

@media (min-width: 768px) {
  .plant__info-image {
    top: -2rem;
  }
}

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

  .modal-order__area {
    padding: 5rem 12rem;
  }
}

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

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

  .modal-order__area {
    padding: 4rem 12rem;
  }

  .modal-order__header {
    font-size: 3rem;
    margin-bottom: 1.5rem;
  }

  .modal-order__price {
    margin-bottom: 2rem;
    padding: 2rem 0 3rem;
  }

  .modal-order__price span {
    font-size: 2rem;
  }

  .modal-order__price .modal-order__price-result {
    font-size: 3.5rem;
    top: 0.5rem;
  }

  .modal-order__inputs .input {
    height: 6rem;
    margin-bottom: 1rem;
  }

  .modal-order__btn {
    height: 6.5rem;
    margin-bottom: 2rem;
    margin-top: 2rem;
  }
}

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

@media (max-width: 1200px) {
  .plant__calculation .quantity-inner {
    margin-left: 0;
    max-width: 100%;
    width: 100%;
  }
}

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

@media (max-width: 960px) {
  .bt-minus {
    position: relative;
    top: -1px;
  }

  .quantity {
    font-size: 40px;
    height: 45px;
    max-width: 100px;
  }

  .bt-plus {
    position: relative;
    top: -1px;
  }
}

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

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

  main {
    padding-top: 20px;
  }

  .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__list {
    font-size: 14px;
    width: 100%;
  }

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

  .h1 {
    font-size: 23px;
  }

  .h2 {
    font-size: 27px;
  }

  .container {
    padding-left: 15px;
    padding-right: 15px;
  }

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

  .quantity-inner {
    height: 64px;
    margin-bottom: 25px;
    padding: 0 45px;
  }

  .bt-minus,
  .bt-plus {
    background-size: 30px;
  }

  .header {
    padding: 0;
    top: 20px;
  }

  .header__area {
    gap: 20px;
  }

  .header__logos {
    gap: 10px;
  }

  .header__logo {
    max-width: 120px;
  }

  .header__logo--partner {
    max-width: 100px;
  }

  .header__lk {
    font-size: 14px;
  }

  .header__lk-icon {
    height: 14px;
    width: 23px;
  }

  .footer {
    padding: 30px 0 15px;
  }

  .footer__area {
    border-radius: 9px;
    padding: 20px;
  }

  .footer__menu ul {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 12px;
  }

  .footer__menu a {
    font-size: 16px;
  }

  .footer__bottom {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 20px;
  }

  .footer__copy {
    margin-right: 0;
  }

  .footer__copy p {
    font-size: 16px;
  }

  .footer__geo p {
    font-size: 14px;
  }

  .footer__pay {
    gap: 20px;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }

  .hero {
    padding: 110px 0 30px;
  }

  .hero__header {
    margin-bottom: 30px;
  }

  .hero__subtitle {
    font-size: 22px;
    margin-bottom: 15px;
  }

  .hero__header .h1,
  .hero__title {
    font-size: 32px;
    line-height: 1.1;
  }

  .hero__header .h1 {
    margin-bottom: 20px;
  }

  .hero__cards {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 10px;
  }

  .hero__card {
    height: 200px;
    max-width: 100%;
  }

  .hero__card-image:after {
    border-radius: 12px;
    content: "";
    height: 100%;
    left: 0;
    position: absolute;
    top: 0;
    width: 100%;
  }

  .hero__card-text {
    padding: 20px;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }

  .hero__card-text span {
    font-size: 16px;
    line-height: 1.3;
  }

  .plant {
    padding: 20px 0 40px;
  }

  .plant .h2,
  .plant .plant__title {
    font-size: 27px;
    margin-bottom: 20px;
  }

  .plant__area {
    -webkit-box-shadow: 0 0 26px 0 rgba(31, 34, 41, 0.1);
    box-shadow: 0 0 26px 0 rgba(31, 34, 41, 0.1);
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .plant__info {
    min-height: auto;
    padding: 24px;
  }

  .plant__info-header {
    font-size: 22px;
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    margin-bottom: 20px;
    max-width: 100%;
    order: 1;
  }

  .plant__info-btn {
    font-size: 16px;
    height: 54px;
    margin-top: 20px;
    max-width: 100%;
  }

  .plant__info-about-tree {
    margin-bottom: 20px;
    max-width: 100%;
    padding: 24px;
    -webkit-box-ordinal-group: 4;
    -ms-flex-order: 3;
    order: 3;
  }

  .plant__info-about-tree p {
    font-size: 18px;
    line-height: 1.4;
    margin-bottom: 16px;
    text-align: center;
  }

  .plant__info-about-tree p span {
    font-size: 14px;
    line-height: 1.3;
  }

  .plant__info-about-tree b {
    font-size: 16px;
  }

  .plant__info-footer {
    -webkit-box-ordinal-group: 6;
    -ms-flex-order: 5;
    font-size: 18px;
    order: 5;
    padding-top: 0;
  }

  .plant__info-image {
    position: static;
    -webkit-box-ordinal-group: 3;
    -ms-flex-order: 2;
    left: auto;
    margin: 0 auto;
    max-width: 55%;
    order: 2;
    top: auto;
    width: auto;
  }

  .plant__calculation {
    border-top: 1px solid rgba(31, 34, 41, 0.08);
    min-height: auto;
    padding: 24px;
  }

  .plant__calculation .quantity-inner {
    gap: 12px;
    grid-template-columns: 88px minmax(32px, 1fr) 88px;
    margin-bottom: 25px;
  }

  .plant__calculation .plant__quantity-btn {
    background-size: 30px;
    border-radius: 16px;
    height: 64px;
    width: 88px;
  }

  .plant__calculation .plant__quantity {
    font-size: 40px;
  }

  .plant__calculation-row {
    gap: 12px;
    margin-bottom: 20px;
  }

  .plant__calculation-row img {
    height: 51px;
    width: 52px;
  }

  .plant__calculation-row--co2 {
    margin-bottom: 20px;
  }

  .plant__calculation-row--co2 img {
    height: 58px;
    width: 58px;
  }

  .plant__calculation-co2,
  .plant__calculation-header {
    font-size: 18px;
  }

  .plant__calculation-btn {
    height: 64px;
    margin-top: 20px;
  }

  .plant__calculation-btn span {
    font-size: 16px;
  }

  .plant__calculation-btn .plant__calculation-price-result {
    font-size: 32px;
  }

  .place {
    padding-bottom: 30px;
  }

  .place__header {
    margin-bottom: 30px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 10px;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
  }

  .place__header .h2 {
    font-size: 27px;
  }

  .place__grid {
    gap: 8px;
    grid-template-columns: repeat(2, 2fr);
    grid-template-rows: repeat(3, 167px);
  }

  .place__image-item {
    height: auto;
  }

  .place__image-item img {
    border-radius: 9px;
  }

  .place__image-item:first-of-type img {
    border-radius: 9px;
  }

  .place__image-item:first-of-type {
    grid-area: auto;
  }

  .place__image-item:nth-of-type(2) {
    grid-area: auto;
  }

  .place__image-item:nth-of-type(3) {
    grid-area: auto;
  }

  .place__image-item:nth-of-type(4) {
    grid-area: auto;
  }

  .place__image-item:nth-of-type(5) {
    grid-area: auto;
  }

  .place__image-item:nth-of-type(6) {
    grid-area: auto;
  }

  .place__footer {
    gap: 8px;
    grid-template-columns: 1fr;
    margin-bottom: 30px;
  }

  .place__footer-item {
    gap: 20px;
    min-height: 103px;
    padding: 15px;
  }

  .place__footer-item-icon {
    height: 48px;
    width: 48px;
  }

  .place__footer-item-icon img {
    max-height: 48px;
    max-width: 48px;
  }

  .place__footer-item-text span:first-of-type {
    font-size: 16px;
    margin-bottom: 7px;
  }

  .place__footer-item-text span:nth-of-type(2) {
    font-size: 16px;
  }

  .fragile-nature {
    padding-bottom: 30px;
  }

  .fragile-nature__area {
    min-height: 320px;
    padding: 24px;
  }

  .fragile-nature__decor--1 {
    left: -10%;
    top: -5%;
    width: 120%;
  }

  .fragile-nature__decor--2 {
    bottom: -5%;
    right: -10%;
    width: 70%;
  }

  .fragile-nature__text .h2 {
    font-size: 40px;
    line-height: 1.1;
    margin-bottom: 15px;
  }

  .fragile-nature__text p {
    font-size: 20px;
  }

  .vantages__header {
    margin: 0;
  }

  .vantages__header p {
    font-size: 18px;
  }

  .vantages__grid {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 10px;
    margin: 30px 0 0;
    padding: 0;
  }

  .vantages__item {
    max-width: 100%;
    padding: 20px !important;
  }

  .vantages__item p {
    font-size: 18px;
    max-width: 100% !important;
  }

  .vantages__item-icon {
    height: auto;
    margin-bottom: 20px;
  }

  .vantages__item-icon img {
    max-width: 78px;
  }

  .vantages__item-title {
    font-size: 20px;
    margin-bottom: 20px;
    max-width: 100% !important;
  }

  .initiative-operator {
    padding: 30px 0;
  }

  .initiative-operator .h2,
  .initiative-operator .initiative-operator__title {
    font-size: 27px;
    margin-bottom: 20px;
    padding: 0 15px;
  }

  .initiative-operator .h2 span,
  .initiative-operator .initiative-operator__title span {
    color: #5ab16f;
    font-weight: 600;
  }

  .initiative-operator .h2 b,
  .initiative-operator .initiative-operator__title b {
    color: #270089;
    font-weight: 600;
  }

  .initiative-operator__area {
    display: grid;
    gap: 8px;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: auto;
    height: auto;
    min-height: 0;
  }

  .initiative-operator__left {
    display: contents;
  }

  .initiative-operator__left .h2,
  .initiative-operator__left .initiative-operator__title {
    font-size: 27px;
    grid-column: auto;
    grid-row: auto;
    margin-bottom: 20px;
    padding: 0 15px;
  }

  .initiative-operator__reports-btn {
    aspect-ratio: 1;
    border-radius: 9px;
    font-size: 16px;
    grid-column: auto;
    grid-row: auto;
    height: auto !important;
    margin-bottom: 0;
    max-width: 100%;
    padding: 12px 15px;
    width: 100%;
  }

  .initiative-operator__left-grid {
    display: contents;
  }

  .initiative-operator__left-grid .initiative-operator__image {
    height: 200px;
  }

  .initiative-operator__left-grid .initiative-operator__image:first-child {
    grid-column: auto;
    grid-row: auto;
  }

  .initiative-operator__left-grid .initiative-operator__image:nth-child(2) {
    grid-column: auto;
    grid-row: auto;
  }

  .initiative-operator__left-gird {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    display: contents;
    -ms-flex-direction: column;
    flex-direction: column;
  }

  .initiative-operator__left-gird .initiative-operator__image {
    height: 200px;
  }

  .initiative-operator__image {
    aspect-ratio: 1;
    border-radius: 9px;
    height: auto !important;
  }

  .initiative-operator__image--banner {
    display: contents;
  }

  .initiative-operator__image--banner img {
    aspect-ratio: 1;
    border-radius: 9px;
    display: block;
    height: auto !important;
    width: 100%;
  }

  .initiative-operator__image--banner .initiative-operator__image-title {
    bottom: auto;
    left: auto;
    position: static;
    right: auto;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: start;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    aspect-ratio: 1;
    border-radius: 9px;
    height: auto !important;
    justify-content: center;
    padding: 12px 15px;
    width: 100%;
  }

  .initiative-operator__image--last {
    display: none;
  }

  .initiative-operator__image-title {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: start;
    bottom: 15px;
    left: 15px;
    right: 15px;
  }

  .initiative-operator__image-title span {
    font-size: 16px;
  }

  .initiative-operator__right {
    display: contents;
  }

  .initiative-operator__right-col1 {
    display: contents;
    grid-column: auto;
    grid-row: auto;
  }

  .initiative-operator__right-col1 .initiative-operator__image {
    height: 200px;
  }

  .initiative-operator__right-col2 {
    display: contents;
    grid-column: auto;
    grid-row: auto;
  }

  .initiative-operator__right-col2 .initiative-operator__image,
  .initiative-operator__right-col2 .initiative-operator__image--last {
    height: 200px;
  }

  .initiative-operator__right-col2 .initiative-operator__image-title {
    bottom: 15px;
    gap: 11px;
    left: 15px;
    right: 15px;
  }

  .faq__area {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 25px;
  }

  .faq__text {
    max-width: 100%;
    padding: 0;
  }

  .faq__text p {
    font-size: 16px;
  }

  .faq__text-header {
    margin-bottom: 10px;
  }

  .faq__text-header .h2 {
    margin-bottom: 15px;
  }

  .faq__text-header p {
    max-width: 100%;
  }

  .faq__text-bg:after {
    display: none;
  }

  .faq .ac .ac-header:before {
    height: 30px;
    right: 16px;
    width: 30px;
  }

  .faq .ac .ac-trigger {
    font-size: 18px;
    padding: 16px 56px 16px 16px;
  }

  .faq .ac .ac-trigger:after,
  .faq .ac .ac-trigger:before {
    right: 31px;
  }

  .faq .ac .ac-trigger:before {
    width: 12px;
  }

  .faq .ac .ac-trigger:after {
    height: 12px;
  }

  .faq .ac .ac-panel .ac-text {
    font-size: 16px;
    max-width: 100%;
    padding: 0 16px 24px;
  }

  .subscription {
    padding-bottom: 30px;
  }

  .subscription__area {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    min-height: auto;
    padding: 24px;
  }

  .subscription__area,
  .subscription__steps {
    -ms-flex-direction: column;
    flex-direction: column;
  }

  .subscription__steps {
    -webkit-box-ordinal-group: 3;
    -ms-flex-order: 2;
    order: 2;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    gap: 20px;
    justify-self: stretch;
    margin-bottom: 24px;
    max-width: 100%;
  }

  .subscription__content {
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    margin-bottom: 24px;
    order: 1;
  }

  .subscription__content-icon {
    height: 100px;
    margin-bottom: 20px;
    width: 100px;
  }

  .subscription__content-icon img {
    height: auto;
    width: 60px;
  }

  .subscription__title {
    font-size: 24px;
    margin-bottom: 20px;
  }

  .subscription__text {
    font-size: 16px;
    line-height: 1.6;
    max-width: 100%;
  }

  .subscription__btn {
    -webkit-box-ordinal-group: 4;
    -ms-flex-order: 3;
    font-size: 16px;
    height: 54px;
    margin-bottom: 0;
    order: 3;
    width: 100%;
  }

  .subscription__step-text {
    font-size: 16px;
    line-height: 1.5;
    max-width: 100%;
  }

  .subscription__types {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    gap: 16px;
    min-height: auto;
    padding: 20px;
  }

  .testimonials {
    padding: 30px 0;
  }

  .testimonials__item-text {
    font-size: 16px;
  }

  .testimonials__item {
    max-width: 100%;
  }

  .testimonials__item-photo {
    aspect-ratio: 1;
    height: auto;
    margin-bottom: 1rem;
    width: 100%;
  }

  .testimonials__item-name {
    font-size: 1.4rem;
    margin-bottom: 0.8rem;
    padding: 0.4rem 1rem;
  }

  .testimonials__item-play {
    height: 3.6rem;
    width: 3.6rem;
  }

  .testimonials__item-play:after {
    border-width: 0.6rem 0 0.6rem 0.9rem;
  }

  .mkb .hero:after {
    display: none;
  }

  .mkb .hero__header .h1 {
    font-size: 37px;
  }

  .mkb .hero__header p {
    font-size: 14px;
  }

  .mkb .hero {
    background: #f7f7f7;
  }

  .mkb .plant .h2 {
    margin-bottom: 20px;
  }

  .mkb .vantages__item p br {
    display: none;
  }

  .cashback {
    padding: 0 0 40px;
  }

  .cashback__area {
    background: #f60235;
    height: auto;
    padding: 24px;
    position: relative;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }

  .cashback__area .h2 {
    font-size: 32px;
    margin-bottom: 10px;
  }

  .cashback__area p {
    font-size: 18px;
  }

  .cashback__content {
    display: contents;
  }

  .cashback__i {
    height: 45px;
    right: 10px;
    top: 10px;
    width: 45px;
  }

  .cashback-modal__area {
    padding: 48px 24px;
  }

  .cashback-modal__close {
    height: 30px;
    right: 20px;
    top: 20px;
    width: 30px;
  }

  .cashback-modal__header {
    margin-bottom: 15px;
  }

  .cashback-modal__header .h2 {
    font-size: 30px;
    margin-bottom: 10px;
  }

  .cashback-modal__header p {
    font-size: 18px;
  }

  .cashback-modal__text p {
    font-size: 16px;
  }

  .modal-order__area {
    border-radius: 0;
    height: 100%;
    overflow-y: auto;
    padding: 48px 24px;
  }

  .modal-order__close {
    display: block;
  }

  .modal-order__header {
    font-size: 20px;
    margin-bottom: 20px;
  }

  .modal-order__price {
    padding: 15px 0 25px;
  }

  .modal-order__price span {
    font-size: 14px;
  }

  .modal-order__price .modal-order__price-result {
    font-size: 25px;
    top: 4px;
  }

  .modal-order__inputs .input {
    font-size: 16px;
    height: 54px;
  }

  .modal-order__btn {
    font-size: 16px;
    height: 60px;
  }

  .custom-checkbox span {
    font-size: 10px;
  }

  .modal-respond__area {
    padding: 48px 30px;
  }

  .modal-respond__header {
    font-size: 24px;
    margin-bottom: 30px;
  }

  .modal-respond__btn {
    font-size: 16px;
    height: 64px;
  }
}

@media (max-width: 500px) {
  .testimonials__item-text {
    font-size: 13px;
  }
}

@media (max-width: 370px) {
  .header__lk {
    font-size: 11px;
    gap: 3px;
  }
}

@media (max-width: 360px) {
  .h2 {
    font-size: 25px;
  }

  .footer__pay {
    gap: 10px;
  }

  .footer__pay img {
    max-width: 25%;
  }

  .plant__calculation-header,
  .plant__info-footer {
    font-size: 16px;
  }

  .fragile-nature__text .h2 {
    font-size: 38px;
  }

  .fragile-nature__text p {
    font-size: 18px;
  }

  .initiative-operator .h2 {
    font-size: 25px;
  }

  .initiative-operator__image-title span {
    font-size: 15px;
  }

  .mkb .hero__header .h1 {
    font-size: 34px;
  }
}

@media (max-width: 340px) {
  .cashback__area .h2 {
    font-size: 30px;
  }
}

@media (max-width: 320px) {
  .hero__header .h1,
  .hero__title {
    font-size: 28px;
  }

  .fragile-nature__text .h2 {
    font-size: 35px;
  }

  .fragile-nature__text p {
    font-size: 16px;
  }

  .initiative-operator .h2 {
    font-size: 23px;
  }

  .initiative-operator__image-title span {
    font-size: 11px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .plant__info-image img {
    will-change: auto;
  }
}
