@font-face {
  font-family: Nunito Sans;
  font-style: normal;
  font-weight: 200;
  src: url(../fonts/NunitoSans-ExtraLight.woff2) format("woff2");
}

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

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

@font-face {
  font-family: Nunito Sans;
  font-style: normal;
  font-weight: 600;
  src: url(../fonts/NunitoSans-SemiBold.woff2) format("woff2");
}

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

@font-face {
  font-family: Nunito Sans;
  font-style: normal;
  font-weight: 800;
  src: url(../fonts/NunitoSans-ExtraBold.woff2) format("woff2");
}

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

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

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

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

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

@-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:
    Nunito Sans,
    sans-serif;
  font-size: 1.8rem;
  font-weight: 400;
  padding: 0 2.3rem;
  text-align: left;
  -webkit-transition: all 0.45s cubic-bezier(0.39, 0.575, 0.565, 1);
  transition: all 0.45s cubic-bezier(0.39, 0.575, 0.565, 1);
  width: 100%;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.select-box__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: 4rem;
  font-weight: 600;
}

.h1,
.h2 {
  text-transform: uppercase;
}

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

.green-bg {
  background: #5ab16f;
  border-radius: 6px;
  color: #fff;
  padding: 0 1.1rem;
}

@-webkit-keyframes rotationSpecialists {
  0% {
    -webkit-transform: translate(-50%, -50%) rotate(0deg);
    transform: translate(-50%, -50%) rotate(0deg);
  }

  to {
    -webkit-transform: translate(-50%, -50%) rotate(-1turn);
    transform: translate(-50%, -50%) rotate(-1turn);
  }
}

@keyframes rotationSpecialists {
  0% {
    -webkit-transform: translate(-50%, -50%) rotate(0deg);
    transform: translate(-50%, -50%) rotate(0deg);
  }

  to {
    -webkit-transform: translate(-50%, -50%) rotate(-1turn);
    transform: translate(-50%, -50%) rotate(-1turn);
  }
}

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

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

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

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

.container {
  margin: 0 auto;
  max-width: 158rem;
  padding-left: 5rem;
  padding-right: 5rem;
}

.btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-family:
    Nunito Sans,
    sans-serif;
  font-size: 1.8rem;
  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.6rem;
  -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: #7dc18d;
  color: #fff;
}

.btn--arrow:hover span:after {
  -webkit-transform: translateX(0.5rem);
  -ms-transform: translateX(0.5rem);
  transform: translateX(0.5rem);
}

.btn--arrow span {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 1.1rem;
}

.btn--arrow span:after {
  background: url(../img/btn-arrow.svg) 50% / contain no-repeat;
  content: "";
  height: 0.9rem;
  width: 1rem;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  -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 {
  -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);
}

.nav-prev {
  background: url(../img/nav-prev.svg) 50% / contain no-repeat;
}

.nav-next,
.nav-prev {
  cursor: pointer;
  height: 3.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);
  width: 3.6rem;
}

.nav-next {
  background: url(../img/nav-next.svg) 50% / contain no-repeat;
}

.nav-next.swiper-button-disabled,
.nav-prev.swiper-button-disabled {
  opacity: 0.5;
}

.svg-hidden {
  display: none;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.header {
  left: 0;
  padding-top: 12.8rem;
  position: absolute;
  top: 0;
  width: 100%;
}

.header__wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 2.8rem;
}

.header__forest-save-logo {
  max-width: 18rem;
  width: 100%;
}

.header__forest-save-logo img {
  width: 100%;
}

.header__kanzler-logo {
  margin-top: 0.2rem;
  max-width: 24.9rem;
  mix-blend-mode: darken;
  width: 100%;
}

.header__kanzler-logo img {
  width: 100%;
}

.footer {
  background: url(../img/footer-bg.svg) 50% / cover no-repeat;
  border-top: 1px solid #bcbdbf;
  margin-top: 6.3rem;
  padding: 15.3rem 0 11.7rem;
}

.footer__wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 0 6.7rem;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.footer__left {
  max-width: 88.9rem;
  width: 100%;
}

.footer__links {
  margin-bottom: 1.2rem;
}

.footer__links ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.footer__links a,
.footer__links li {
  font-size: 1.5rem;
  line-height: 1.35714;
  text-decoration: underline;
  -webkit-text-decoration-skip-ink: none;
  text-decoration-skip-ink: none;
}

.footer__links a:hover,
.footer__links li:hover {
  text-decoration: none;
}

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

.footer__bottom p {
  font-size: 1.5rem;
  margin-bottom: 0;
}

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

.footer__right img:first-of-type {
  width: 8.6rem;
}

.footer__right img:nth-of-type(2) {
  width: 6.8rem;
}

.footer__right img:nth-of-type(3) {
  width: 6.8rem;
}

.hero {
  background: url(../img/hero-bg.jpg) 50% / cover no-repeat;
  height: 109.6rem;
  padding-top: 34rem;
}

.hero__content {
  max-width: 79.4rem;
  width: 100%;
}

.hero__content .h1 {
  line-height: 1.4;
  margin-bottom: 2.1rem;
}

.hero__content p {
  line-height: 1.4;
  max-width: 62.7rem;
}

.steps {
  background: url(../img/steps-bg.svg) 50% / cover no-repeat;
  padding: 7.8rem 0 10rem;
}

.steps .h2 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -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: 1rem;
}

.steps .h2 .green-bg {
  font-size: 3rem;
  padding: 0.4rem 2.1rem;
  text-transform: none;
}

.steps__wrap {
  padding-left: 8rem;
  padding-right: 4rem;
}

.steps__items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 10.5rem;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.steps__item {
  width: 100%;
}

.steps__item:first-of-type {
  max-width: 37.6rem;
}

.steps__item:first-of-type .steps__item-icon {
  padding-left: 1.9rem;
}

.steps__item:first-of-type img {
  width: 31.7rem;
}

.steps__item:nth-of-type(2) {
  left: 0.7rem;
  max-width: 39.3rem;
  position: relative;
}

.steps__item:nth-of-type(2) .steps__item-icon {
  padding-left: 0.4rem;
}

.steps__item:nth-of-type(2) img {
  width: 29.9rem;
}

.steps__item:nth-of-type(3) {
  max-width: 40.6rem;
}

.steps__item:nth-of-type(3) .steps__item-title {
  margin-left: 2.3rem;
}

.steps__item:nth-of-type(3) img {
  width: 33.2rem;
}

.steps__item-icon {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 26.8rem;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-bottom: 2.7rem;
}

.steps__item-title {
  font-size: 2rem;
  font-weight: 400;
  line-height: 1.4;
}

.catalog-card {
  padding: 5rem 0;
}

.catalog-card__wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 0 5rem;
}

.catalog-card__aside {
  margin-right: 3rem;
  max-width: 42.7rem;
  padding-bottom: 0.1rem;
  width: 100%;
}

.catalog-card__aside .h2 {
  max-width: 32rem;
}

.catalog-card__title {
  color: #223f45;
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 0.9rem;
}

.catalog-card__about {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1.1rem;
  margin-bottom: 1.1rem;
}

.catalog-card__about img {
  border-radius: 0.5rem;
}

.catalog-card__about-left {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.catalog-card__about-flex {
  display: grid;
  gap: 0.9rem;
  grid-template-columns: repeat(2, 1fr);
  margin-bottom: auto;
}

.catalog-card__about--single .catalog-card__about-left {
  max-width: 20.7rem;
  width: 100%;
}

.catalog-card__about--single .catalog-card__about-flex {
  grid-template-columns: repeat(1, 1fr);
}

.catalog-card__about-item {
  width: 100%;
}

.catalog-card__about-item img {
  height: 13.6rem;
  -o-object-fit: cover;
  object-fit: cover;
  width: 100%;
}

.catalog-card__about-geo {
  background: #5ab16f;
  border-radius: 0.5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 0.9rem;
  padding: 1.1rem 1rem;
}

.catalog-card__about-geo:before {
  background: url(../img/catalog-card-geo-icon.svg) 50% / contain no-repeat;
  content: "";
  display: inline-block;
  height: 2.1rem;
  width: 1.5rem;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
}

.catalog-card__about-geo p {
  color: #fff;
  font-size: 1.3rem;
  font-weight: 800;
  letter-spacing: 0.13px;
  margin-bottom: 0;
}

.catalog-card__about-geo p span {
  display: block;
  font-weight: 400;
  width: 100%;
}

.catalog-card__about-right .catalog-card__about-item img {
  height: 19.8rem;
  -o-object-fit: cover;
  object-fit: cover;
  width: 20.8rem;
}

.catalog-card__description {
  background: #f3f3f3;
  border-radius: 0 0 0.5rem 0.5rem;
  margin-bottom: 1.4rem;
  padding: 1.4rem 0.5rem 2.1rem 1.7rem;
}

.catalog-card__description p {
  font-size: 1.6rem;
  line-height: 1.35;
}

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

.catalog-card__description p.big {
  font-size: 2rem;
  font-style: italic;
  font-weight: 400;
  line-height: 1.1;
  margin-bottom: 1.6rem;
}

.catalog-card__description p b {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  line-height: 1.25;
}

.catalog-card__forest-help .h2 {
  font-size: 2rem;
  font-weight: 800;
  line-height: 1.3;
  margin-bottom: 1.8rem;
  text-transform: none;
}

.catalog-card__forest-help-item {
  border-radius: 0.5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 2rem;
}

.catalog-card__forest-help-item:last-of-type {
  margin-bottom: 0;
}

.catalog-card__forest-help-item:nth-of-type(2) .catalog-card__forest-help-left,
.catalog-card__forest-help-item:nth-of-type(2)
  .catalog-card__forest-help-right {
  background: #5ab16f;
}

.catalog-card__forest-help-left {
  background: #223f45;
  border-radius: 0.5rem;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
  border-top-right-radius: 0;
  max-width: 42.5rem;
  overflow: hidden;
  width: 100%;
}

.catalog-card__forest-help-header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 1.6rem;
  padding-bottom: 0.8rem;
  padding-left: 1.6rem;
  padding-top: 0.8rem;
  position: relative;
}

.catalog-card__forest-help-header img {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
}

.catalog-card__forest-help-header p {
  color: #fff;
  font-size: 1.3rem;
  line-height: 1.3076923077;
  margin-bottom: 0;
}

.catalog-card__forest-help-header p span {
  display: block;
  font-weight: 800;
}

.catalog-card__forest-help-white {
  background: #fff;
  border-radius: 0.5rem;
  height: 100%;
  padding-right: 1.1rem;
  padding-top: 0.8rem;
}

.catalog-card__forest-help-white-item {
  background: #f2f4f6;
  border-radius: 0.5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 1.3rem;
  margin-bottom: 0.7rem;
  padding: 1rem 1.3rem;
}

.catalog-card__forest-help-white-item:last-of-type {
  margin-bottom: 0;
}

.catalog-card__forest-help-white-item img {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
}

.catalog-card__forest-help-white-item p {
  color: #797676;
  font-size: 1.2rem;
  letter-spacing: 0.12px;
  line-height: 1.25;
  margin-bottom: 0;
}

.catalog-card__forest-help-white-item p span {
  display: block;
  font-weight: 700;
}

.catalog-card__forest-help-right {
  background: #223f45;
  border-radius: 0.5rem;
  border-top-left-radius: 0;
  color: #fff;
  max-width: 20.6rem;
  width: 100%;
}

.catalog-card__forest-help-text {
  height: 100%;
  margin-left: 1.7rem;
  padding-right: 1.2rem;
  padding-top: 1.5rem;
  position: relative;
}

.catalog-card__forest-help-text:after {
  border-radius: 0.5rem;
  bottom: -0.5rem;
  content: "";
  height: 1rem;
  left: -0.5rem;
  position: absolute;
  width: 1rem;
}

.catalog-card__forest-help-text p {
  font-size: 1.2rem;
  line-height: 1.25;
}

.catalog-card__forest-help-text-num {
  color: #ff6752;
  display: block;
  font-size: 1.6rem;
  font-weight: 800;
  letter-spacing: 0.18px;
  margin-bottom: 1.2rem;
}

.catalog-card__forest-help-text-2 {
  margin-bottom: 1.6rem;
  margin-left: 1.7rem;
  padding-right: 0.5rem;
  padding-top: 1.1rem;
}

.catalog-card__forest-help-text-2 p {
  font-size: 1.3rem;
  font-weight: 800;
  line-height: 1.4615384615;
  margin-bottom: 0;
}

.catalog-card__forest-help-copy {
  border-top: 1px solid #fff;
  font-size: 1.3rem;
  font-style: italic;
  font-weight: 300;
  line-height: 1.4615384615;
  margin-left: 1.7rem;
  margin-right: 1.7rem;
  padding-top: 0.4rem;
  text-align: right;
}

.catalog-card__image {
  border-radius: 0.5rem;
  height: 23.3rem;
  overflow: hidden;
  width: 100%;
}

.catalog-card__image img {
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  width: 100%;
}

.catalog-card__map {
  -webkit-box-flex: 1;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  position: relative;
}

.catalog-card-map {
  border: 0.5rem solid #f2f4f6;
  border-radius: 0.5rem;
  height: 100%;
  position: relative;
}

.catalog-card-map iframe {
  border-radius: 0.5rem;
  height: 100%;
  width: 100%;
}

.catalog-card-map [class*="gototech"] {
  display: none !important;
}

.catalog-card-map [class*="copyright"] {
  display: none !important;
}

.catalog-card__map-btn {
  bottom: 13.2rem;
  font-size: 2rem;
  font-weight: 800;
  height: 7.8rem;
  left: 50%;
  letter-spacing: 0.2px;
  max-width: 38.8rem;
  position: absolute;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  width: 100%;
  z-index: 2;
}

.plant-tree {
  padding-bottom: 7.3rem;
  position: relative;
}

.plant-tree:after {
  background: url(../img/specialists-after.svg) 50% / contain no-repeat;
  bottom: -28.5rem;
  content: "";
  height: 63.3rem;
  position: absolute;
  right: -1.5rem;
  width: 22.1rem;
  z-index: -1;
}

.plant-tree:before {
  background: url(../img/specialists-before.svg) 50% / contain no-repeat;
  content: "";
  height: 58.1rem;
  left: 0;
  position: absolute;
  top: 5rem;
  width: 14.7rem;
  z-index: -1;
}

.plant-tree__wrap {
  padding-left: 8rem;
  padding-right: 7.4rem;
}

.plant-tree__header {
  margin-bottom: 5.6rem;
  text-align: right;
}

.plant-tree__header,
.plant-tree__header .h2 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
}

.plant-tree__header .h2 {
  line-height: 1.58;
  margin-bottom: 4.1rem;
}

.plant-tree__header .h2 span {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  font-size: 3rem;
  padding-left: 2.6rem;
  padding-right: 2.6rem;
  text-transform: none;
}

.plant-tree__header p {
  font-size: 3rem;
  font-weight: 300;
  line-height: 1.3666666667;
  max-width: 106.1rem;
}

.plant-tree__body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 5rem;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.plant-tree__link {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  margin-top: -5.8rem;
}

.plant-tree__link-item {
  position: relative;
}

.plant-tree__link-item-bg {
  border-radius: 0.6rem;
  overflow: hidden;
}

.plant-tree__link-item-bg img {
  border-radius: 0.6rem;
  -webkit-filter: drop-shadow(0 48px 102px rgba(28, 57, 36, 0.2));
  filter: drop-shadow(0 48px 102px rgba(28, 57, 36, 0.2));
  height: 42rem;
  -o-object-fit: cover;
  object-fit: cover;
  width: 72.5rem;
}

.plant-tree__link-item-btn {
  font-weight: 600;
  height: 6rem;
  left: 50%;
  max-width: 35.8rem;
  position: absolute;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  width: 100%;
}

.plant-tree__text {
  margin-right: -4rem;
  padding-left: 1.5rem;
  padding-top: 1rem;
}

.plant-tree__text p {
  font-size: 1.8rem;
  font-weight: 300;
  line-height: 1.3888888889;
  margin-bottom: 2.6rem;
}

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

.plant-tree__items {
  gap: 10.3rem;
  margin-left: 1.9rem;
  margin-top: 4.1rem;
}

.plant-tree__item,
.plant-tree__items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.plant-tree__item {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  font-size: 2rem;
}

.plant-tree__item img {
  margin-bottom: 0.8rem;
}

.specialists {
  background: url(../img/specialists-bg.svg) 50% / cover no-repeat;
  padding-bottom: 9.6rem;
  padding-top: 7.2rem;
}

.specialists__header {
  margin-bottom: 6rem;
  margin-left: 9.8rem;
  margin-right: 9.8rem;
  max-width: 105.3rem;
}

.specialists__header .h2 {
  line-height: 1.41;
  margin-bottom: 2.2rem;
}

.specialists__header p {
  font-size: 3rem;
  font-weight: 300;
  max-width: 73.9rem;
}

.specialists__header .green-bg {
  display: inline-block;
  padding: 0.2rem 0.7rem 0.4rem;
}

.specialists__body {
  background: #fff;
  border-radius: 0.6rem;
  -webkit-box-shadow: 0 17px 36px 0 rgba(31, 34, 41, 0.1);
  box-shadow: 0 17px 36px 0 rgba(31, 34, 41, 0.1);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 0 8.8rem 1rem;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  gap: 3.4rem;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.specialists__items {
  display: grid;
  gap: 1rem 4.8rem;
  grid-template-columns: repeat(2, 1fr);
  max-width: 100%;
  padding-top: 4.3rem;
  width: 100%;
}

.specialists__item:first-of-type img {
  height: 5.9rem;
  width: 6rem;
}

.specialists__item:nth-of-type(2) img {
  height: 6.3rem;
  width: 6.1rem;
}

.specialists__item:nth-of-type(3) img {
  height: 5.3rem;
  width: 5.9rem;
}

.specialists__item:nth-of-type(4) img {
  height: 5.9rem;
  width: 5.9rem;
}

.specialists__item-icon {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 1rem;
  min-height: 6.3rem;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
}

.specialists__item-icon img {
  -o-object-fit: contain;
  object-fit: contain;
}

.specialists__item-text p {
  font-size: 1.8rem;
  line-height: 1.3888888889;
}

.specialists__video-link {
  max-width: 66.4rem;
  width: 100%;
  -webkit-box-flex: 0;
  display: block;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  position: relative;
  top: -3.9rem;
}

.specialists__video {
  position: relative;
}

.specialists__video-bg img {
  border-radius: 0.6rem;
  height: 40.9rem;
  -o-object-fit: cover;
  object-fit: cover;
  width: 66.4rem;
}

.specialists__video-play {
  background: url(../img/specialists-play.svg) 50% / contain no-repeat;
  height: 10rem;
  width: 10rem;
}

.specialists__video-play,
.specialists__video-play-text {
  left: 50%;
  position: absolute;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

.specialists__video-play-text {
  -webkit-animation-duration: 10s;
  animation-duration: 10s;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  -webkit-animation-name: rotationSpecialists;
  animation-name: rotationSpecialists;
  -webkit-animation-timing-function: linear;
  animation-timing-function: linear;
  background: url(../img/specialists-play-text.svg) 50% / contain no-repeat;
  height: 12.7rem;
  width: 12.7rem;
}

.leading-media {
  padding-bottom: 7.7rem;
  padding-top: 6.7rem;
}

.leading-media__wrap {
  padding: 0 8.8rem;
}

.leading-media__header {
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin-bottom: 7rem;
}

.leading-media__header,
.leading-media__header .h2 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
}

.leading-media__header .h2 {
  max-width: 46.6rem;
  text-align: right;
  width: 100%;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  line-height: 1.4;
}

.leading-media__header .h2 span {
  display: inline-block;
  font-size: 3rem;
  text-transform: none;
}

.leading-media__nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 1.6rem;
}

.leading-media__slider .swiper-slide {
  height: auto;
  opacity: 0;
  pointer-events: none;
  -webkit-transition: opacity 0.45s cubic-bezier(0.39, 0.575, 0.565, 1);
  transition: opacity 0.45s cubic-bezier(0.39, 0.575, 0.565, 1);
}

.leading-media__slider .swiper-slide-visible {
  opacity: 1;
  pointer-events: auto;
}

.leading-media__slide {
  background: #fcfdfd;
  border-radius: 0.6rem;
  -webkit-box-shadow: 0 7px 31px 0 rgba(0, 0, 0, 0.15);
  box-shadow: 0 7px 31px 0 rgba(0, 0, 0, 0.15);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 100%;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  padding: 2.5rem;
}

.leading-media__logo {
  margin-bottom: 2.6rem;
}

.leading-media__logo img {
  max-height: 3.3rem;
  max-width: 16rem;
}

.leading-media__screen {
  margin-bottom: 2.9rem;
}

.leading-media__btn {
  height: 5.2rem;
  margin-top: auto;
  width: 100%;
}

.modal {
  position: relative;
  z-index: 1000;
}

.modal .dialog__overlay {
  background: rgba(31, 34, 41, 0.5);
}

.modal .dialog__content {
  background: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 0 auto;
  max-width: 122rem;
  padding: 4.2rem 4.3rem 5.5rem;
  text-align: left;
  width: 100%;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  border-radius: 0.6rem;
  -webkit-box-shadow: 0 0 78px 0 rgba(0, 0, 0, 0.25);
  box-shadow: 0 0 78px 0 rgba(0, 0, 0, 0.25);
  justify-content: center;
}

.modal .modal__header {
  margin-bottom: 3.5rem;
}

.modal .dialog h2 {
  color: #223f45;
  font-family:
    Nunito Sans,
    sans-serif;
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 1.4rem;
  padding: 0;
  text-transform: none;
}

.modal .dialog h2:after {
  display: none;
}

.modal .dialog__wrap {
  width: 100%;
}

.close-modal__container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  margin-bottom: 3.8rem;
}

.close-modal {
  background: url(../img/modal-close.svg) 50%/1.1rem no-repeat;
  cursor: pointer;
  height: 2rem;
  width: 2rem;
}

.modal--checkout .dialog__content {
  max-width: 68.8rem;
  padding: 1rem 2.2rem 5.2rem 2.1rem;
}

.modal--checkout .close-modal__container {
  margin-right: -1.2rem;
}

.modal-checkout {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1.9rem;
}

.modal-checkout__left {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  padding-top: 5.3rem;
}

.modal-checkout__left img {
  width: 100%;
}

.modal--checkout .modal-checkout__right {
  -webkit-box-flex: 1;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}

.modal--checkout .modal-checkout__right .h2 {
  margin-bottom: 3rem;
  text-align: left;
}

.modal-checkout__info {
  background: #eef1f3;
  border-radius: 0.6rem;
  margin-bottom: 2.7rem;
  padding: 1.3rem 1.8rem 0.7rem;
}

.modal-checkout__info .h3 {
  border-bottom: 1px solid #cdd7dd;
  color: #223f45;
  font-size: 1.5rem;
  font-weight: 600;
  line-height: 1.35;
  margin-bottom: 0;
  padding-bottom: 1.4rem;
}

.modal-checkout__info-calc {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 1.7rem;
  margin-top: 0.8rem;
}

.modal-checkout__info-calc p {
  color: #223f45;
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 0;
}

.modal-checkout__info-calc p span {
  color: #5ab16f;
  font-size: 1.6rem;
  font-weight: 800;
}

.modal-checkout__info-calc p span b {
  font-weight: 800;
}

.modal-checkout__inputs .input {
  border: none;
  border-bottom: 1px solid #cdd7dd;
  border-radius: 0;
  color: #1f2229;
  font-size: 1.4rem;
  margin-bottom: 1.3rem;
  padding: 0 0.8rem 0.9rem;
}

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

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

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

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

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

.modal-checkout__btns {
  margin-top: 1.9rem;
}

.modal-checkout__btn-sbp {
  background: #1d1346;
  color: #fff;
  height: 6rem;
  margin-bottom: 1rem;
  width: 100%;
}

.modal-checkout__btn-sbp:hover {
  background: #2a1c66;
}

.modal-checkout__btn-sbp span {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 0.6rem;
}

.modal-checkout__btn-sbp span:after {
  background: url(../img/footer-sbp-2.svg) 50% / contain no-repeat;
  content: "";
  display: inline-block;
  height: 3.6rem;
  width: 6.5rem;
}

.modal-checkout__btn-card {
  color: #fff;
  height: 6rem;
  width: 100%;
}

.quantity-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  background: #fff;
  border-radius: 0.4rem;
  height: 3.7rem;
  width: 8.4rem;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: 0.8rem 1rem;
}

.bt-minus {
  background: url(../img/minus-icon.svg) 50%/0.9rem no-repeat;
  cursor: pointer;
  height: 2rem;
  width: 0.9rem;
}

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

.quantity {
  background: none;
  color: #000;
  font-size: 1.6rem;
  font-weight: 400;
  max-width: 3rem;
  text-align: center;
}

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

.email-error,
.phone-error {
  color: red;
  font-size: 1.4rem;
  padding: 0 0.8rem 0.9rem;
  visibility: hidden;
}

.balloon {
  font-family: Nunito Sans;
  padding: 9px 33px 6px 9px;
  width: 100%;
}

[class*="balloon__layout"] {
  border-radius: 5px;
  position: relative;
  z-index: 20;
}

.balloon__wrap {
  width: 100%;
}

.baloon__header {
  color: #5ab16f;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12px;
  margin-bottom: 5px;
}

.baloon__items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin-bottom: 10px;
}

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

.baloon__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  gap: 10px;
  max-width: 174px;
  width: 100%;
}

.baloon__item:nth-of-type(2) {
  left: 10px;
  position: relative;
}

.baloon__item-icon {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  min-width: 21px;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.baloon__item-text {
  max-width: 143px;
  width: 100%;
}

.baloon__item-text p {
  color: #223f45;
  font-size: 12px;
  font-weight: 600;
  line-height: 1.3333333333;
  margin-bottom: -2px;
}

.baloon__item-text span {
  color: #5ab16f;
  font-size: 12px;
  font-weight: 600;
  line-height: 1;
  margin-bottom: 0;
}

#catalog-card-map {
  position: relative;
  z-index: 1;
}

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

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

@media (max-width: 1600px) {
  .catalog-card__about-geo p {
    font-size: 1.4rem;
  }

  .modal-checkout__inputs .input {
    font-size: 1.6rem;
  }
}

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

  .catalog-card__forest-help .h2,
  .catalog-card__title {
    font-size: 2.2rem;
  }

  .catalog-card__forest-help-header p {
    font-size: 1.4rem;
  }

  .catalog-card__forest-help-white-item p {
    font-size: 1.3rem;
  }

  .catalog-card__forest-help-text-num {
    font-size: 2rem;
  }

  .catalog-card__forest-help-text-2 p {
    font-size: 1.4rem;
  }

  .catalog-card__forest-help-copy {
    font-size: 1.5rem;
  }

  .modal .dialog h2 {
    font-size: 2.1rem;
  }

  .modal-checkout__info-calc p {
    font-size: 1.3rem;
  }

  .modal-checkout__info-calc p span {
    display: block;
  }
}

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

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

@media (max-width: 1200px) {
  .modal .dialog__content {
    max-width: 90%;
  }
}

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

@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: 26px;
  }

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

  .h3 {
    font-size: 15px;
  }

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

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

  .nav-next,
  .nav-prev {
    height: 34px;
    width: 34px;
  }

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

  .header {
    padding: 24px 0;
  }

  .header__wrap {
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }

  .header__forest-save-logo {
    max-width: 120px;
  }

  .header__kanzler-logo {
    max-width: 130px;
  }

  .footer {
    margin-top: 0;
    padding: 40px 0;
  }

  .footer__wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    padding: 0;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    gap: 20px;
  }

  .footer__links {
    margin-bottom: 20px;
  }

  .footer__links ul {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    gap: 1rem 2rem;
    justify-content: flex-start;
  }

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

  .footer__right {
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }

  .hero {
    background: url(../img/hero-bg-mobile.jpg) 50% / cover no-repeat;
    height: auto;
    padding: 110px 0 150px;
  }

  .hero__content p {
    font-size: 16px;
    max-width: 100%;
  }

  .steps {
    background: #fff;
    padding: 40px 0 0;
  }

  .steps .h2 {
    gap: 5px;
  }

  .steps .h2 .green-bg {
    font-size: 20px;
    padding: 3px 15px;
  }

  .steps__wrap {
    padding: 0;
  }

  .steps__items {
    margin-top: 30px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }

  .steps__item {
    margin-bottom: 20px;
  }

  .steps__item:first-of-type .steps__item-icon {
    padding: 0;
  }

  .steps__item:first-of-type img {
    max-width: 70%;
  }

  .steps__item:nth-of-type(2) {
    left: 0;
  }

  .steps__item:nth-of-type(2) .steps__item-icon {
    padding: 0;
  }

  .steps__item:nth-of-type(2) img {
    max-width: 70%;
  }

  .steps__item:nth-of-type(3) .steps__item-title {
    margin: 0;
  }

  .steps__item:nth-of-type(3) img {
    max-width: 70%;
  }

  .steps__item-icon {
    height: auto;
    margin-bottom: 20px;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }

  .steps__item-title {
    font-size: 16px;
    text-align: center;
  }

  .catalog-card {
    padding: 30px 12px 0;
  }

  .catalog-card__wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    padding: 0;
  }

  .catalog-card__aside {
    margin-right: 0;
    max-width: 100%;
  }

  .catalog-card__title {
    font-size: 22px;
    line-height: 1.1;
    margin-bottom: 15px;
  }

  .catalog-card__about {
    gap: 10px;
  }

  .catalog-card__about,
  .catalog-card__about-flex {
    margin-bottom: 10px;
  }

  .catalog-card__about-item,
  .catalog-card__about-item img,
  .catalog-card__about-right .catalog-card__about-item img {
    height: 100%;
  }

  .catalog-card__description {
    margin-bottom: 15px;
    padding: 24px;
  }

  .catalog-card__description p {
    font-size: 15px;
  }

  .catalog-card__description p.big {
    font-size: 18px;
    margin-bottom: 10px;
  }

  .catalog-card__description p b {
    font-size: 18px;
  }

  .catalog-card__forest-help .h2 {
    font-size: 20px;
    line-height: 1.15;
  }

  .catalog-card__forest-help-header p {
    font-size: 12px;
  }

  .catalog-card__forest-help-text p,
  .catalog-card__forest-help-white-item p {
    font-size: 10px;
  }

  .catalog-card__forest-help-text-num {
    font-size: 18px;
  }

  .catalog-card__forest-help-copy,
  .catalog-card__forest-help-text-2 p {
    font-size: 13px;
  }

  .catalog-card__image {
    height: 200px;
  }

  .catalog-card__map {
    margin-top: 25px;
  }

  .catalog-card-map {
    height: 330px;
  }

  .catalog-card__map-btn {
    bottom: 20px;
    font-size: 16px;
    font-weight: 700;
    height: 56px;
    margin: 10px auto 0;
    max-width: 70%;
    max-width: 100%;
    position: static;
    text-align: center;
    -webkit-transform: none;
    -ms-transform: none;
    transform: none;
  }

  .plant-tree:after {
    bottom: -25.5rem;
    width: 6.7rem;
  }

  .plant-tree:before {
    display: none;
    top: -20rem;
    width: 3.7rem;
  }

  .plant-tree {
    padding: 40px 0;
  }

  .plant-tree__wrap {
    padding: 0;
  }

  .plant-tree__header {
    margin-bottom: 10px;
  }

  .plant-tree__header .h2 {
    line-height: 1.3;
    margin-bottom: 20px;
  }

  .plant-tree__header .h2 span {
    font-size: 20px;
    margin-top: 5px;
    padding-left: 15px;
    padding-right: 15px;
  }

  .plant-tree__header p {
    font-size: 16px;
  }

  .plant-tree__body {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 12px;
  }

  .plant-tree__link {
    margin: 0;
  }

  .plant-tree__link-item-bg img {
    height: auto;
    width: 100%;
  }

  .plant-tree__link-item-btn {
    height: 50px;
    max-width: 80%;
  }

  .plant-tree__text {
    margin-right: 0;
    padding-left: 0;
    padding-top: 10px;
  }

  .plant-tree__text p {
    font-size: 15px;
    margin-bottom: 10px;
  }

  .plant-tree__items {
    gap: 40px;
    margin-left: 0;
    margin-top: 20px;
  }

  .plant-tree__item {
    font-size: 13px;
  }

  .plant-tree__item img {
    max-height: 30px;
    max-width: 30px;
  }

  .specialists {
    padding: 40px 0;
  }

  .specialists__header {
    margin: 0 0 20px;
    max-width: 100%;
  }

  .specialists__header .h2 {
    font-size: 25px;
    line-height: 1.2;
    margin-bottom: 15px;
  }

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

  .specialists__body {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 12px;
    padding: 24px;
  }

  .specialists__items {
    gap: 6px;
    grid-template-columns: repeat(1, 1fr);
    padding-top: 0;
  }

  .specialists__item:first-of-type img {
    height: auto;
    max-height: 40px;
    max-width: 40px;
    width: auto;
  }

  .specialists__item:nth-of-type(2) img {
    height: auto;
    max-height: 40px;
    max-width: 40px;
    width: auto;
  }

  .specialists__item:nth-of-type(3) img {
    height: auto;
    max-height: 40px;
    max-width: 40px;
    width: auto;
  }

  .specialists__item:nth-of-type(4) img {
    height: auto;
    max-height: 40px;
    max-width: 40px;
    width: auto;
  }

  .specialists__item-icon {
    min-height: 40px;
  }

  .specialists__item-text p {
    font-size: 15px;
    line-height: 1.35;
  }

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

  .specialists__video-link {
    max-width: 100%;
    top: 0;
  }

  .specialists__video-bg img {
    height: auto;
  }

  .leading-media {
    padding: 40px 0;
  }

  .leading-media__wrap {
    padding: 0;
  }

  .leading-media__header {
    margin-bottom: 30px;
  }

  .leading-media__header .h2 {
    line-height: 1;
    margin-bottom: 0;
  }

  .leading-media__header .h2 span {
    font-size: 16px;
    margin-top: 3px;
    padding: 4px 11px;
  }

  .leading-media__nav {
    gap: 6px;
  }

  .leading-media__slider .swiper-slide {
    opacity: 1;
    pointer-events: auto;
  }

  .leading-media__slide {
    padding: 24px;
  }

  .leading-media__logo {
    margin-bottom: 15px;
  }

  .leading-media__logo img {
    max-height: 25px;
    max-width: 100px;
  }

  .leading-media__screen {
    margin-bottom: 15px;
  }

  .leading-media__btn {
    height: 50px;
  }

  .modal .dialog__content {
    height: 85vh;
    margin: 10px;
    max-width: 100%;
    overflow-y: scroll;
    padding: 18px 18px 28px;
  }

  .modal .modal__header {
    margin-bottom: 20px;
  }

  .modal .dialog h2 {
    font-size: 25px;
  }

  .close-modal__container {
    margin-bottom: 10px;
  }

  .close-modal {
    background-size: 1.5rem;
  }

  .modal--checkout .close-modal__container {
    margin-right: -10px;
  }

  .modal-checkout {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 15px;
  }

  .modal-checkout__left {
    padding-top: 0;
  }

  .modal-checkout__left img {
    width: 30%;
  }

  .modal--checkout .modal-checkout__right .h2 {
    font-size: 22px;
    margin-bottom: 15px;
  }

  .modal-checkout__info {
    margin-bottom: 20px;
    padding: 15px;
  }

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

  .modal-checkout__btns {
    margin-bottom: 30px;
  }

  .quantity {
    font-size: 16px;
  }

  .balloon {
    padding: 12px 20px 12px 12px;
  }

  [class*="balloon__content"] {
    padding: 0 !important;
  }

  .baloon__item-text p,
  .baloon__item-text span {
    font-size: 11px;
  }
}

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

  .catalog-card__map-btn {
    height: 50px;
  }

  .baloon__header {
    margin-bottom: 8px;
  }

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

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

  .catalog-card-map {
    height: 300px;
  }

  .modal .dialog__content {
    height: 80vh;
  }
}


@keyframes fadeInUpMini {
  from {
    opacity: 0;
    transform: translate3d(0, 32%, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

.fadeInUpMini {
  animation-name: fadeInUpMini;
}

.hero-v2 {
  height: 104.2rem;
  padding-top: 36rem;
  background: url('../img/hero-v2.jpg') center/cover no-repeat;
}

@media (max-width: 767px) {
  .hero-v2 {
    padding: 150px 0 150px;
    height: auto;
    background-position: 60% 46px;
    background-color: #ebedec;
  }
  .hero-v2__content{
    max-width: 63%;
    position: relative;
    top: -35px;
  }
}


.hero-v2__content .h1 {
  font-weight: 300;
  font-size: 6rem;
  text-transform: uppercase;
  max-width: 66rem;
  margin-bottom: 1.9rem;
  line-height: 1.35;
}

@media (max-width: 767px) {
  .hero-v2__content .h1 {
    font-size: 29px;
    line-height: 1.4;
    margin-bottom: 20px;
  }
}

@media (max-width: 360px) {
  .hero-v2__content .h1 {
    font-size: 79px;
  }
}


.hero-v2__content p {
  font-weight: 300;
  font-size: 3rem;
  max-width: 63.6rem;
  line-height: 1.35;
}

@media (max-width: 767px) {
  .hero-v2__content p{
    font-size: 19px;
  }
}

@media (max-width: 400px) {
  .hero-v2__content p{
    font-size: 18px;
  }
}

@media (max-width: 360px) {
  .hero-v2__content p{
    font-size: 17px;
  }
}

@media (max-width: 320px) {
  .hero-v2__content p{
    font-size: 15px;
  }
}

.hero-v2__content p a {
  font-weight: 700;
  text-transform: uppercase;
}

.hero-v2__content p a:hover {
  text-decoration: underline;
}

@media (min-width: 767px) {
  .header__forest-save-logo {
    max-width: 19.6rem;
  }

  .header__wrap {
    gap: 5rem;
  }
}

