@charset "UTF-8";

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

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: Gilroy, 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;
}

::-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 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: Gilroy, 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: #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: 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: Gilroy, 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: #5ab16f;
  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: #76be87;
  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: clclipInLeftip;
  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;
}

[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: 5.7rem 0;
  position: absolute;
  top: 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);
  -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;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.header-logos,
.header__area {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.header-logos {
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
  gap: 3.5rem;
}

.header-logos a {
  width: 100%;
}

.header-logos a:first-of-type {
  max-width: 14.7rem;
}

.header-logos a:nth-of-type(2) {
  max-width: 17.7rem;
}

.header-lk {
  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: #1f2229;
  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: url(../img/hero-bg.jpg) 50% / cover no-repeat;
  padding: 20.3rem 0 2.4rem;
}

.hero__header {
  margin-bottom: 5.1rem;
}

.hero__header .h1 {
  font-size: 8rem;
  font-weight: 600;
  line-height: 0.95;
  margin-bottom: 2.9rem;
}

.hero__header p {
  font-size: 2.6rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  max-width: 78rem;
}

.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;
  position: relative;
  width: 100%;
}

.hero__card:nth-of-type(2) .hero__card-text span {
  max-width: 54.1rem;
}

.hero__card-image {
  -webkit-box-shadow: 0 0 30px 0 rgba(31, 34, 41, 0.15);
  box-shadow: 0 0 30px 0 rgba(31, 34, 41, 0.15);
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
}

.hero__card-image img {
  border-radius: 1.2rem;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  pointer-events: none;
  width: 100%;
}

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

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

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

.plant .h2 {
  margin-bottom: 3rem;
  max-width: 72.7rem;
}

.plant__area {
  width: 100%;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  gap: 4rem;
  justify-content: space-between;
}

.plant__area,
.plant__info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.plant__info {
  background: #fff;
  border-radius: 1.2rem;
  -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);
  max-width: 68rem;
  padding: 3.8rem 10.6rem 2.8rem 6rem;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  position: relative;
}

.plant__info-header {
  font-size: 2.2rem;
  margin-bottom: 8.1rem;
  max-width: 26.8rem;
}

.plant__info-about-tree {
  background: hsla(0, 0%, 100%, 0.97);
  border-radius: 1.2rem;
  -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);
  margin-bottom: 7.7rem;
  margin-left: 0.3rem;
  max-width: 37.8rem;
  padding: 2rem;
  position: relative;
  width: 100%;
  z-index: 2;
}

.plant__info-about-tree p {
  font-size: 2.2rem;
  margin-bottom: 1.7rem;
  text-align: left;
}

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

.plant__info-about-tree p span {
  color: #9196a1;
  display: block;
  font-size: 1.8rem;
}

.plant__info-about-tree b {
  color: #5ab16f;
  font-size: 2.2rem;
  font-weight: 600;
}

.plant__info-about-tree-btn {
  background: #f15a22;
  border-radius: 0.8rem;
  -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);
  font-size: 1.8rem;
  font-weight: 400;
  height: 6.5rem;
  margin-top: 2.7rem;
  max-width: 33.8rem;
  width: 100%;
}

.plant__info-about-tree-btn:hover {
  background: #f47e52;
}

.plant__info-footer {
  font-size: 2.2rem;
}

.plant__info-image {
  position: absolute;
  right: 5.2rem;
  top: 1.9rem;
}

.plant__calculation {
  background: #fff;
  border-radius: 1.2rem;
  -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);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  max-width: 68rem;
  padding: 4rem 12.4rem 3.3rem 6.4rem;
  width: 100%;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.plant__calculation img:first-of-type {
  height: 7.3rem;
  margin-bottom: 1.9rem;
  width: 7.4rem;
}

.plant__calculation img:nth-of-type(2) {
  height: 8.1rem;
  margin-bottom: 1.2rem;
  width: 8.1rem;
}

.plant__calculation-text p {
  font-size: 2.2rem;
}

.plant__calculation-text p span {
  color: #5ab16f;
  display: block;
  font-weight: 600;
}

.plant__calculation-button {
  font-size: 1.8rem;
  height: 7.4rem;
  margin-top: 1.6rem;
  max-width: 43.6rem;
  width: 100%;
}

.plant__calculation-header {
  font-size: 2.2rem;
  margin-bottom: 2.5rem;
  max-width: 41.7rem;
}

.plant__calculation-co2 {
  font-size: 2.2rem;
  margin-bottom: 3rem;
  max-width: 43.6rem;
}

.plant__calculation-co2-result-span {
  color: #5ab16f;
  display: block;
}

.plant__calculation-btn {
  gap: 0.4rem;
  height: 7.4rem;
  max-width: 43.6rem;
  width: 100%;
}

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

.plant__calculation-btn .plant__calculation-price-result {
  font-size: 4rem;
}

.place {
  padding-bottom: 6.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: end;
  -ms-flex-align: end;
  align-items: flex-end;
  gap: 4rem;
  margin-bottom: 3.8rem;
}

.place__header .h2 {
  max-width: 77.4rem;
}

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

.place__nav,
.place__slide {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.place__nav {
  background: hsla(0, 0%, 100%, 0.4);
  border-radius: 2.5rem;
  -webkit-box-shadow: 0 13px 27px 0 rgba(31, 34, 41, 0.08);
  box-shadow: 0 13px 27px 0 rgba(31, 34, 41, 0.08);
  max-width: 34.3rem;
  padding: 1rem 1.6rem;
  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-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__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: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 {
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin-bottom: 2rem;
  -webkit-box-ordinal-group: 0;
  -ms-flex-order: -1;
  order: -1;
}

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

.place__footer-item {
  background: #fff;
  border-radius: 1.2rem;
  position: relative;
  width: 100%;
}

.place__footer-item:first-of-type {
  gap: 2.7rem;
  max-width: 32.7rem;
  padding: 0.3rem 0 2.5rem 1.8rem;
}

.place__footer-item:first-of-type .place__footer-item-text {
  max-width: 13.1rem;
}

.place__footer-item:first-of-type .place__footer-item-icon {
  padding-top: 4.4rem;
}

.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;
  max-width: 33.2rem;
  padding: 0.6rem 0 2.2rem;
}

.place__footer-item:nth-of-type(2) .place__footer-item-text {
  max-width: 24.4rem;
}

.place__footer-item:nth-of-type(2) .place__footer-item-icon {
  padding-top: 4.3rem;
}

.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;
  max-width: 30.8rem;
  padding: 0.6rem 0 2.2rem 0.5rem;
}

.place__footer-item:nth-of-type(3) .place__footer-item-text {
  max-width: 20rem;
}

.place__footer-item:nth-of-type(3) .place__footer-item-icon {
  padding-top: 4.3rem;
}

.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;
  max-width: 32.9rem;
  padding: 0.6rem 0 2.2rem 0.5rem;
}

.place__footer-item:nth-of-type(4) .place__footer-item-text {
  cursor: pointer;
  max-width: 12rem;
  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.9rem;
  position: absolute;
  right: -1.3rem;
  top: 59%;
  width: 1.9rem;
}

.place__footer-item:nth-of-type(4) .place__footer-item-icon {
  padding-top: 4.3rem;
}

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

.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;
  position: absolute;
  right: -0.9rem;
  width: 88%;
  z-index: -1;
}

.place__footer-item-text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

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

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

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

.fragile-nature__area {
  background: url(../img/fragile-nature-bg.jpg) 50% / cover no-repeat;
  border-radius: 1.5rem;
  padding: 17.8rem 14.8rem 18.6rem;
}

.fragile-nature__area .h2 {
  color: #fff;
  font-size: 9rem;
  font-weight: 600;
  line-height: 1.05556;
  margin-bottom: 2.1rem;
}

.fragile-nature__area p {
  color: #fff;
  font-size: 2.8rem;
  max-width: 62.9rem;
}

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

.fragile-nature__text {
  max-width: 82.1rem;
}

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

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

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

.vantages__header p a {
  color: #5ab16f;
  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: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  gap: 1.2rem;
  justify-content: space-between;
}

.initiative-operator__left {
  max-width: 72.8rem;
  padding-top: 8.2rem;
  width: 100%;
}

.initiative-operator__left .h2 {
  font-size: 4rem;
  font-weight: 400;
  line-height: 1.2;
  margin-bottom: 10rem;
  max-width: 66.1rem;
}

.initiative-operator__left .h2 span {
  font-weight: 500;
}

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

.initiative-operator__left .h2 span:nth-of-type(2) {
  color: #5ab16f;
}

.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:nth-of-type(2) {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: auto;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.initiative-operator__left-gird .initiative-operator__image:nth-of-type(2) img {
  border-radius: 1.5rem;
  height: 28.9rem;
}

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

.initiative-operator__text {
  background: #5ab16f;
  border-radius: 1.5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 11.6rem;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-top: auto;
  padding: 0 2rem;
}

.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__last-mobile {
  display: none;
}

.initiative-operator__image-title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1.1rem;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.initiative-operator__image-title span {
  color: #fff;
  font-size: 2.2rem;
  font-weight: 500;
}

.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 {
  max-width: 66rem;
}

.initiative-operator__right,
.initiative-operator__right-col1 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1.1rem;
  width: 100%;
}

.initiative-operator__right-col1 {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  max-width: 28.4rem;
}

.initiative-operator__right-col1 .initiative-operator__image {
  height: 24.1rem;
  width: 100%;
}

.initiative-operator__right-col2 {
  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.1rem;
}

.initiative-operator__right-col2 .initiative-operator__text {
  height: 10.9rem;
  padding: 0 3rem;
}

.initiative-operator__right-col2 .initiative-operator__image {
  height: 37.3rem;
  width: 100%;
}

.initiative-operator__right-col2 .initiative-operator__image:first-of-type {
  height: 24.1rem;
}

.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: 0.7rem;
  justify-content: space-between;
}

.faq__text {
  max-width: 51.2rem;
  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__phone {
  color: #f15a22;
  white-space: nowrap;
}

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

.faq__mail:hover {
  text-decoration: none;
}

.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: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-trigger {
  color: #1f2229;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font: inherit;
  font-family: Gilroy, sans-serif;
  font-size: 2.2rem;
  font-weight: 400;
  line-height: 1.259;
  padding: 2.2rem 3.1rem 2.2rem 5.1rem;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  background: transparent;
  gap: 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);
}

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

.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: Gilroy, 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 .ac-trigger:after {
  background: url(../img/icons/faq-open.svg) 50% / contain no-repeat;
  content: "";
  display: inline-block;
  height: 5rem;
  position: relative;
  right: 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: 5rem;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  -webkit-transform: none;
  -ms-transform: none;
  transform: none;
}

.faq .ac.is-active > .ac-header .ac-trigger:after {
  background: url(../img/icons/faq-close.svg) 50% / contain no-repeat;
  content: "";
}

.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: start;
  -ms-flex-align: start;
  align-items: flex-start;
  background: rgba(31, 34, 41, 0.7);
  display: none;
  overflow-y: auto;
  padding: 2rem 0;
  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/modal-closev2.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: 1.8rem;
  font-weight: 400;
  height: 5.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__inputs option {
  font-size: 1.4rem;
}

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

.modal-info {
  background: rgba(31, 34, 41, 0.7);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  overflow-y: auto;
  padding: 9.3rem 0;
  position: fixed;
  top: 0;
  width: 100%;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  height: 100%;
  justify-content: center;
  z-index: 100;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  display: none;
}

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

.modal-info__area {
  background: #fff;
  border-radius: 1.2rem;
  -webkit-box-shadow: 0 0 88px 0 rgba(31, 34, 41, 0.15);
  box-shadow: 0 0 88px 0 rgba(31, 34, 41, 0.15);
  max-width: 112.9rem;
  padding: 4.8rem 4.8rem 7rem;
  position: relative;
  width: 100%;
}

.modal-info__close {
  background: url(../img/icons/modal-info-close.svg) 50% / contain no-repeat;
  cursor: pointer;
  height: 2rem;
  position: absolute;
  right: 1.2rem;
  top: 1.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: 2rem;
}

.modal-info__close:hover {
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}

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

.modal-info__col {
  max-width: 49rem;
  width: 100%;
}

.modal-info__col-item {
  margin-bottom: 4.4rem;
}

.modal-info__col-item-image {
  margin-bottom: 1.8rem;
}

.modal-info__col-item-image img {
  border-radius: 1.3rem;
  height: 35.5rem;
  -o-object-fit: cover;
  object-fit: cover;
}

.modal-info__col-item-text {
  font-size: 2rem;
  font-weight: 300;
  max-width: 45.2rem;
}

.modal-info__footer {
  border-top: 1px solid rgba(31, 34, 41, 0.1);
  padding-top: 4.6rem;
}

.modal-info__footer p {
  font-size: 1.8rem;
  font-weight: 300;
  margin-bottom: 0;
  opacity: 0.7;
  text-align: justify;
}

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

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

.modal-variants__area {
  background: #fff;
  border-radius: 1.2rem;
  gap: 3.7rem;
  max-width: 107.9rem;
  padding: 10.7rem 6rem 9.6rem;
  position: relative;
  width: 100%;
}

.modal-variants__close {
  background: url(../img/icons/modal-closev2.svg) 50% / contain no-repeat;
  cursor: pointer;
  height: 2.7rem;
  position: absolute;
  right: 3.1rem;
  top: 3.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);
  width: 2.7rem;
}

.modal-variants__close:hover {
  -webkit-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  transform: rotate(90deg);
}

.modal-variants__item {
  border: 1.5px solid #5ab16f;
  border-radius: 1.2rem;
  cursor: pointer;
  padding: 3.6rem 1.9rem 2.3rem 3.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: 100%;
}

.modal-variants__item:hover {
  opacity: 0.9;
}

.modal-variants__item:nth-of-type(2) {
  background: #5ab16f;
}

.modal-variants__item:nth-of-type(3) {
  background: rgba(90, 177, 111, 0.8);
  border: 1.5px solid transparent;
}

.modal-variants__item .h3 {
  color: #fff;
  font-size: 3rem;
  font-weight: 600;
  margin-bottom: 2.1rem;
  max-width: 31.9rem;
}

.modal-variants__item p {
  color: #fff;
  font-size: 2.3rem;
  margin-bottom: 1.5rem;
}

.modal-variants__item-link {
  background: #fff;
  border-radius: 0.8rem;
  height: 4.6rem;
  margin: 0 auto;
  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);
  width: 4.6rem;
}

.modal-variants__item-link:after {
  background: url(../img/icons/modal-arrow.svg) 50% / contain no-repeat;
  content: "";
  height: 0.9rem;
  left: 50%;
  position: absolute;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  -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-subscription {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  background: rgba(31, 34, 41, 0.7);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 100%;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  position: fixed;
  width: 100%;
  z-index: 9999;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  display: none;
  overflow-y: auto;
  padding: 2rem 0;
}

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

.modal-subscription__area {
  background: #fff;
  border-radius: 0.8rem;
  max-width: 78rem;
  padding: 4.4rem 4.6rem;
  position: relative;
  width: 100%;
}

.modal-subscription__close {
  background: url(../img/icons/modal-closev2.svg) 50% / contain no-repeat;
  cursor: pointer;
  height: 1.7rem;
  position: absolute;
  right: 1rem;
  top: 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);
  width: 1.7rem;
}

.modal-subscription__close:hover {
  -webkit-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  transform: rotate(90deg);
}

.modal-subscription__flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.modal-subscription__image {
  max-width: 17.9rem;
  padding-top: 1.4rem;
  width: 100%;
}

.modal-subscription__form {
  -webkit-box-flex: 1;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  padding-left: 4.3rem;
}

.modal-subscription__form-content .h3 {
  font-size: 3.5rem;
  font-weight: 400;
  margin-bottom: 0;
}

.subscription__block {
  margin: 2rem 0 5rem;
}

.modal-subscription__p {
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 1.4;
  margin-bottom: 1.3rem;
  max-width: 44.3rem;
}

.modal-subscription__result {
  background: rgba(205, 215, 221, 0.35);
  border-radius: 0.8rem;
  padding: 1.5rem 2.1rem;
}

.modal-subscription__result-span {
  border-bottom: 2px solid #cdd7dd;
  color: #223f45;
  font-size: 2rem;
  font-weight: 600;
  padding-bottom: 1.3rem;
}

.modal-subscription__result-span sub {
  bottom: 0.05em;
  font-size: 60%;
  padding-left: 0.2rem;
}

.modal-subscription__result-price {
  color: #223f45;
  font-size: 1.7rem;
  font-weight: 600;
  padding-top: 0.8rem;
}

.modal-subscription__result-price b,
.subscription-price {
  color: #5ab16f;
  font-size: 2.2rem;
  font-weight: 800;
}

.modal-subscription__inputs {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 2rem;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.modal-subscription__inputs .input {
  border: none;
  border-bottom: 1.38px solid #cdd7dd;
  border-radius: 0;
  color: #1f2229;
  font-size: 2rem;
  font-weight: 400;
  margin-bottom: 2rem;
  padding: 0.5rem 0;
}

.modal-subscription__inputs .input::-webkit-input-placeholder {
  color: #1f2229;
  font-size: 2rem;
  opacity: 0.5;
}

.modal-subscription__inputs .input::-moz-placeholder {
  color: #1f2229;
  font-size: 2rem;
  opacity: 0.5;
}

.modal-subscription__inputs .input:-ms-input-placeholder {
  color: #1f2229;
  font-size: 2rem;
  opacity: 0.5;
}

.modal-subscription__inputs .input::-ms-input-placeholder {
  color: #1f2229;
  font-size: 2rem;
  opacity: 0.5;
}

.modal-subscription__inputs .input::placeholder {
  color: #1f2229;
  font-size: 2rem;
  opacity: 0.5;
}

.modal-subscription__check .custom-checkbox {
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
}

.modal-subscription__check span {
  font-size: 1.4rem;
  line-height: 1.25;
}

.modal-subscription__check a {
  text-decoration: underline;
  -webkit-text-decoration-skip-ink: none;
  text-decoration-skip-ink: none;
}

.modal-subscription__check a:hover {
  text-decoration: none;
}

.modal-subscription__check .mark-1 {
  color: #ed1c24;
}

.modal-subscription__check .mark-2 {
  color: #dd0a34;
}

.modal-subscription__check b {
  display: block;
  font-weight: 400;
}

.modal-subscription__btn {
  border-radius: 0.8rem;
  font-size: 2rem;
  font-weight: 500;
  height: 6.1rem;
  margin-top: 2.4rem;
  width: 100%;
}

.custom-range-slider {
  position: relative;
}

.custom-range-slider,
.custom-range-slider .irs {
  font-family: Gilroy, sans-serif;
}

.custom-range-slider .irs--round .irs-bar {
  background-color: #9cd0a9;
  height: 10px;
  top: 34px;
}

.custom-range-slider .irs--round .irs-handle {
  background-color: #5ab16f;
  border-color: #5ab16f;
  -webkit-box-shadow: 0 1px 3px rgba(0, 0, 255, 0);
  box-shadow: 0 1px 3px rgba(0, 0, 255, 0);
}

.custom-range-slider .irs--round .irs-line {
  background-color: #cdd7dd;
  height: 10px;
  top: 34px;
}

.custom-range-slider .irs--round .irs-max,
.custom-range-slider .irs--round .irs-min {
  background: transparent;
  bottom: -60px;
  color: rgba(31, 34, 41, 0.5);
  font-size: 16px;
  font-weight: 500;
  padding: 0;
  top: auto;
  visibility: visible !important;
}

.custom-range-slider .irs-min:before {
  content: "от ";
}

.custom-range-slider .irs-min:after {
  content: " ₽";
}

.custom-range-slider .irs-max:before {
  content: "до ";
}

.custom-range-slider .irs-max:after {
  content: " ₽";
}

.custom-range-slider__current {
  color: #223f45;
  font-size: 2.5rem;
  font-weight: 700;
  left: 50%;
  position: absolute;
  top: -0.9rem;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
}

@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: 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: 5rem;
    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: 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;
  }

  .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: 20px 0;
  }

  .header__area {
    gap: 20px;
  }

  .header-logos {
    gap: 10px;
  }

  .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: 100px 0 30px;
  }

  .hero__header {
    margin-bottom: 30px;
  }

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

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

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

  .hero__card {
    height: 200px;
  }

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

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

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

  .plant__info {
    max-width: 100%;
    padding: 24px;
  }

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

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

  .plant__info-about-tree p {
    font-size: 18px;
    margin-bottom: 5px;
    text-align: center;
  }

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

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

  .plant__info-about-tree-btn {
    font-size: 12px;
    height: 44px;
    margin-top: 15px;
  }

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

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

  .plant__calculation {
    max-width: 100%;
    padding: 24px;
  }

  .plant__calculation img:first-of-type {
    height: 51px;
    margin-bottom: 15px;
    width: 52px;
  }

  .plant__calculation img:nth-of-type(2) {
    height: 58px;
    margin-bottom: 15px;
    width: 58px;
  }

  .plant__calculation-text p {
    font-size: 18px;
    margin-bottom: 20px;
  }

  .plant__calculation-text p br {
    display: none;
  }

  .plant__calculation-button {
    height: 64px;
    margin-top: 0;
    max-width: 100%;
  }

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

  .plant__calculation-btn {
    font-size: 50px;
    height: 64px;
  }

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

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

  .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__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 {
    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 {
    display: block;
    margin-bottom: 10px;
  }

  .place__footer-item {
    gap: 20px !important;
    margin-bottom: 8px;
    max-width: 100% !important;
    min-height: 103px;
    padding: 15px !important;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }

  .place__footer-item:nth-of-type(4) .place__footer-item-text:after {
    right: -48px;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
  }

  .place__footer-item-icon {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    height: 48px;
    padding-top: 0 !important;
    width: 48px;
    -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 img {
    max-height: 48px;
    max-width: 48px;
  }

  .place__footer-item-text {
    max-width: 100% !important;
  }

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

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

  .fragile-nature__area {
    padding: 24px;
  }

  .fragile-nature__area .h2 {
    font-size: 40px;
    margin-bottom: 15px;
  }

  .fragile-nature__area 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 {
    font-size: 27px;
    margin-bottom: 20px;
    padding: 0 15px;
  }

  .initiative-operator .h2 span {
    font-weight: 500;
  }

  .initiative-operator .h2 span:first-of-type {
    color: #f15a22;
  }

  .initiative-operator .h2 span:nth-of-type(2) {
    color: #5ab16f;
  }

  .initiative-operator__area {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    display: grid;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 8px 5px;
    grid-template-columns: repeat(2, 1fr);
  }

  .initiative-operator__left {
    display: contents;
    max-width: 100%;
    padding-top: 0;
  }

  .initiative-operator__left .h2 {
    font-size: 27px;
    margin-bottom: 20px;
  }

  .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:nth-of-type(2) {
    display: contents;
  }

  .initiative-operator__left-gird
    .initiative-operator__image:nth-of-type(2)
    img {
    aspect-ratio: 1;
    border-radius: 9px;
    height: auto;
  }

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

  .initiative-operator__text {
    border-radius: 9px;
    height: 100%;
    padding: 0 18px;
  }

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

  .initiative-operator__last-mobile {
    border-radius: 9px;
    display: block;
    height: calc(var(--indexSize) * 43.6);
    margin-top: 8px;
    overflow: hidden;
  }

  .initiative-operator__last-mobile .initiative-operator__image {
    aspect-ratio: unset;
    height: 100% !important;
  }

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

  .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 {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    display: contents;
    -ms-flex-direction: column;
    flex-direction: column;
  }

  .initiative-operator__right-col1 {
    display: contents;
  }

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

  .initiative-operator__right-col2 {
    display: contents;
  }

  .initiative-operator__right-col2 .initiative-operator__text {
    height: 100%;
    padding: 0 18px;
  }

  .initiative-operator__right-col2 .initiative-operator__image {
    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__mail {
    white-space: nowrap;
  }

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

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

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

  .faq__text-bg br {
    display: none;
  }

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

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

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

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

  .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 {
    padding: 0;
  }

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

  .modal-info {
    padding: 50px 0;
  }

  .modal-info__area {
    -webkit-box-shadow: 0 0 44px 0 rgba(31, 34, 41, 0.15);
    box-shadow: 0 0 44px 0 rgba(31, 34, 41, 0.15);
    padding: 70px 24px 48px;
  }

  .modal-info__close {
    height: 30px;
    right: 12px;
    top: 12px;
    width: 30px;
  }

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

  .modal-info__col {
    max-width: 100%;
  }

  .modal-info__col-item {
    margin-bottom: 20px;
  }

  .modal-info__col-item-image {
    margin-bottom: 10px;
  }

  .modal-info__col-item-image img {
    height: auto;
  }

  .modal-info__col-item-text {
    font-size: 14px;
    line-height: 1.3;
    max-width: 100%;
  }

  .modal-info__col-item-text br {
    display: none;
  }

  .modal-info__footer {
    padding-top: 20px;
  }

  .modal-info__footer p {
    font-size: 14px;
  }

  .modal-variants__area {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    border-radius: 0;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 10px;
    height: 100%;
    overflow-y: auto;
    padding: 96px 24px 24px;
  }

  .modal-variants__close {
    height: 20px;
    right: 24px;
    top: 24px;
    width: 20px;
  }

  .modal-variants__item {
    padding: 24px;
  }

  .modal-variants__item .h3 {
    font-size: 20px;
    margin-bottom: 10px;
  }

  .modal-variants__item p {
    font-size: 16px;
    margin-bottom: 10px;
  }

  .modal-subscription {
    border-radius: 0;
    padding: 0;
  }

  .modal-subscription__area {
    border-radius: 0;
    padding: 24px;
  }

  .modal-subscription__close {
    height: 20px;
    right: 24px;
    top: 24px;
    width: 20px;
  }

  .modal-subscription__flex {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 20px;
  }

  .modal-subscription__image {
    max-width: 130px;
    padding: 0;
  }

  .modal-subscription__form {
    padding: 0;
  }

  .modal-subscription__form-content .h3 {
    font-size: 20px;
    text-align: center;
  }

  .subscription__block {
    margin-bottom: 40px;
  }

  .modal-subscription__p {
    font-size: 14px;
    max-width: 100%;
  }

  .modal-subscription__result-span {
    font-size: 18px;
    padding-bottom: 10px;
  }

  .modal-subscription__result-price {
    font-size: 16px;
  }

  .modal-subscription__result-price b {
    font-size: 20px;
  }

  .modal-subscription__inputs .input {
    font-size: 16px;
    margin-bottom: 15px;
  }

  .modal-subscription__inputs .input::-webkit-input-placeholder {
    font-size: 16px;
  }

  .modal-subscription__inputs .input::-moz-placeholder {
    font-size: 16px;
  }

  .modal-subscription__inputs .input:-ms-input-placeholder {
    font-size: 16px;
  }

  .modal-subscription__inputs .input::-ms-input-placeholder {
    font-size: 16px;
  }

  .modal-subscription__inputs .input::placeholder {
    font-size: 16px;
  }

  .modal-subscription__check span {
    font-size: 10px;
  }

  .modal-subscription__btn {
    font-size: 16px;
    height: 60px;
    margin-top: 20px;
  }

  .custom-range-slider__current {
    font-size: 20px;
    top: 0;
  }
}

@media (max-width: 767px) and (max-width: 767px) {
  .initiative-operator .h2 br {
    display: none;
  }
}

@media (max-width: 400px) {
  .hero__header .h1 {
    font-size: 40px;
  }
}

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

  .hero__header .h1 {
    font-size: 36px;
  }
}

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

  .footer__pay {
    gap: 10px;
  }

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

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

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

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

  .modal-subscription__check span {
    font-size: 9px;
  }
}

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

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

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

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

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

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