: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:
    Roboto Condensed,
    sans-serif;
}

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

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

body {
  background: #1f2229;
}

.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: 1.2s;
  transition-duration: 1.2s;
}

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

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

main {
  background: #fff;
  margin: 0 auto;
  max-width: 192rem;
  width: 100%;
}

::-moz-selection {
  background-color: #00549f;
  color: #fff;
}

::selection {
  background-color: #00549f;
  color: #fff;
}

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

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

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

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

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

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

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

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

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

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

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

  to {
    opacity: 1;
  }
}

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

  to {
    opacity: 1;
  }
}

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

  to {
    opacity: 0;
  }
}

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

  to {
    opacity: 0;
  }
}

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

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

.input,
.textarea {
  background: transparent;
  border: 0.06rem solid #1f2229;
  border-radius: 0.4rem;
  color: #1f2229;
  font-family:
    Roboto Condensed,
    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:
    Roboto Condensed,
    sans-serif;
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 1;
  padding: 0;
  text-align: left;
  -webkit-transition: all 0.45s cubic-bezier(0.39, 0.575, 0.565, 1);
  transition: all 0.45s cubic-bezier(0.39, 0.575, 0.565, 1);
  width: 100%;
}

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

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

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

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

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

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

.select-box__input {
  display: none;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.link {
  position: relative;
}

.link:hover {
  color: #00549f;
}

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

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

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

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

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

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

.container {
  max-width: 158rem;
}

.btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-family:
    Roboto Condensed,
    sans-serif;
  font-size: 2rem;
  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: #00549f;
  border: none;
  border-radius: 0.3rem;
  -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: #006ac8;
  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,
.fancybox-custom-video .fancybox-button {
  background: #fff;
  border: 1px solid #dedede;
  border-radius: 50%;
  color: #1f2229;
  height: 5.6rem;
  margin: 2rem;
  width: 5.6rem;
}

.fancybox-custom .fancybox-button:hover,
.fancybox-custom-video .fancybox-button:hover {
  color: #1f2229;
}

.fancybox-custom .fancybox-infobar,
.fancybox-custom-video .fancybox-infobar {
  display: none;
}

.fancybox-custom .fancybox-navigation .fancybox-button--arrow_left,
.fancybox-custom .fancybox-navigation .fancybox-button--arrow_right,
.fancybox-custom-video .fancybox-navigation .fancybox-button--arrow_left,
.fancybox-custom-video .fancybox-navigation .fancybox-button--arrow_right {
  background: #fff;
  border: 1px solid #dedede;
  border-radius: 50%;
  color: #1f2229;
  height: 5.6rem;
  padding: 0.5rem;
  width: 5.6rem;
}

.fancybox-custom .fancybox-navigation .fancybox-button--arrow_right,
.fancybox-custom-video .fancybox-navigation .fancybox-button--arrow_right {
  right: calc(env(safe-area-inset-right) + 15rem);
}

.fancybox-custom .fancybox-navigation .fancybox-button--arrow_left,
.fancybox-custom-video .fancybox-navigation .fancybox-button--arrow_left {
  left: calc(env(safe-area-inset-right) + 15rem);
}

.fancybox-custom-video.fancybox-is-open .fancybox-bg,
.fancybox-custom.fancybox-is-open .fancybox-bg {
  background: #fff;
  opacity: 1;
}

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

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

.social-block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-left: -1.4rem;
}

.social-block__vk {
  height: 2rem;
  max-width: 2rem;
  width: 100%;
}

.social-block__vk .icon {
  color: #299aff;
  height: 100%;
  width: 100%;
}

.social-block__youtube {
  height: 2rem;
  max-width: 2.3rem;
  width: 100%;
}

.social-block__youtube .icon {
  color: #ff2e00;
  height: 100%;
  width: 100%;
}

.social-block__dzen {
  height: 2rem;
  max-width: 2rem;
  width: 100%;
}

.social-block__dzen .icon {
  color: #1fe74f;
  height: 100%;
  width: 100%;
}

.social-block__tg {
  height: 2rem;
  max-width: 2rem;
  width: 100%;
}

.social-block__tg .icon {
  color: #25b1ff;
  height: 100%;
  width: 100%;
}

.social-block-item {
  -webkit-box-sizing: content-box;
  box-sizing: content-box;
  padding: 0 1.4rem;
}

.header {
  background: transparent;
  left: 0;
  position: fixed;
  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);
  width: 100%;
  z-index: 500;
}

.header.scroll {
  background: #1f2229;
}

.header.scroll .header__wrap {
  border-color: transparent;
  padding: 2rem 0;
}

.header__wrap {
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  border-bottom: 1px solid hsla(0, 0%, 100%, 0.15);
  justify-content: space-between;
  padding: 4.3rem 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);
}

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

.header__logos {
  gap: 3.6rem;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
}

.header__forest-save-logo {
  max-width: 15rem;
}

.header__forest-post-ru-logo {
  max-width: 18rem;
}

.header__forest-skolkovo-logo {
  max-width: 13.5rem;
}

.header__nav {
  -webkit-box-flex: 1;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  width: 100%;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  padding-right: 7.9rem;
}

.header__nav,
.header__nav ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.header__nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.header__nav a,
.header__nav li {
  color: #fff;
  font-size: 1.8rem;
}

.header__nav a {
  padding: 0 1.5rem;
}

.header__nav a:hover {
  color: #5ab16f;
}

.header__lk {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 1.4rem;
}

.header__lk:after {
  background: url(../img/lk-icon.svg) 50% / contain no-repeat;
  content: "";
  display: inline-block;
  height: 3.4rem;
  width: 3.4rem;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
}

.header__lk span {
  color: #fff;
  display: inline-block;
  font-size: 1.2rem;
  font-weight: 500;
  max-width: 5.6rem;
  position: relative;
  text-align: right;
  text-transform: uppercase;
}

.header-mobile {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  left: 0;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 995;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  display: none;
  -webkit-transition: all 0.45s cubic-bezier(0.39, 0.575, 0.565, 1);
  transition: all 0.45s cubic-bezier(0.39, 0.575, 0.565, 1);
}

.header-mobile__logo img {
  max-width: 32px;
}

.header-mobile.scroll {
  background-color: #1f2229;
}

.header-mobile__cnt {
  width: 100%;
}

.header-mobile__meta {
  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;
  height: 56px;
  justify-content: space-between;
  padding-left: 40px;
  padding-right: 40px;
  width: 100%;
}

.header-mobile__meta .btn {
  background: #1a2939;
  border: none;
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  height: 34px;
  max-width: 200px;
  padding-bottom: 0;
  top: 0;
}

.header-mobile__meta-icons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.header-mobile__tel a {
  color: #292d32;
  font-size: 14px;
  font-weight: 600;
  line-height: 17px;
}

.header-mobile__burger {
  background: url(../img/burger.svg) 100% 50%/20px 20px no-repeat;
  cursor: pointer;
  height: 40px;
  margin-left: 5px;
  width: 35px;
}

.header-mobile__call,
.header-mobile__search-icon {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 40px;
  margin-left: 5px;
  width: 35px;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.header-mobile__burger.active {
  background: url(../img/burger_close.svg) 90% 50%/20px 20px no-repeat;
  display: block;
}

.header-mobile-menu {
  background-color: #313540;
  height: calc(100vh - 56px);
  left: 0;
  left: -100%;
  opacity: 0;
  overflow: scroll;
  padding-bottom: 60px;
  position: fixed;
  top: 56px;
  -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);
  visibility: hidden;
  width: 100%;
  z-index: 999;
  z-index: -1;
}

.header-mobile-menu .header-mobile-menu__list {
  list-style: none;
  margin: 60px 0 0;
  overflow: scroll;
  padding: 0 40px;
  text-align: left;
}

.header-mobile-menu .header-mobile-menu__list li {
  margin-bottom: 20px;
}

.header-mobile-menu .header-mobile-menu__list li a,
.header-mobile-menu .header-mobile-menu__list li span {
  color: #fff;
  font-size: 20px;
  font-weight: 500;
  position: relative;
  text-transform: none;
}

.header-mobile-menu .header-mobile-menu__list li.active a {
  color: #00549f;
}

.header-mobile-menu .header-mobile-center {
  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;
  margin-top: 7vh;
  padding: 0 40px;
  text-align: left;
}

.header-mobile-menu.active {
  left: 0;
  opacity: 1;
  visibility: visible;
  z-index: 999;
}

.header-mobile__meta-right {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.header-mobile-menu__btn{
  background:none;
  border:1px solid #5ab16f;
  border-radius:4px;
  display:flex;
  display:inline-flex;
  line-height:1;
  margin:60px 25px 0;
  padding:10px 15px;
}

.header-mobile-menu__btn span{
  align-items:center;
  color:#fff;
  display:flex;
  font-size:14px;
  font-weight:400;
  position:relative;
  text-transform:none;
}

.header-mobile-menu__btn span:before{
  background:url(../img/lk-icon.svg) 50%/contain no-repeat;
  border-radius:4px;
  content:"";
  display:inline-block;
  height:25px;
  margin-right:10px;
  width:25px;
}

.footer {
  background: rgba(31, 34, 41, 0.7);
  height: 14.2rem;
  margin: -14.2rem auto 0;
  max-width: 192rem;
  width: 100%;
}

.footer .container {
  height: 100%;
}

.footer__wrap {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  height: 100%;
  justify-content: center;
}

.footer__nav ul,
.footer__wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.footer__nav ul {
  gap: 5rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer__nav a,
.footer__nav li {
  color: #fff;
  font-size: 2.2rem;
  font-weight: 300;
  text-decoration: underline;
  -webkit-text-decoration-skip-ink: none;
  text-decoration-skip-ink: none;
}

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

.hero {
  /* background: url(../img/hero-bg.jpg) 50% / cover no-repeat; */
  background: url(../img/hero-bg-crimea.jpg) 50% / cover no-repeat;
  height: 100%;
  height: 100vh;
  position: relative;
}

.hero .container,
.hero__wrap {
  height: 100%;
}

.hero__wrap {
  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-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.hero__description {
  margin: 0 auto;
  max-width: 84.3rem;
  width: 100%;
}

.hero__description .h1 {
  color: #fff;
  font-size: 7rem;
  font-weight: 900;
  line-height: 0.65714;
  margin-bottom: 4.2rem;
}

.hero__description p {
  color: #fff;
  font-size: 3rem;
  font-weight: 300;
  line-height: 1.33333;
}

.hero__btn {
  height: 6rem;
  margin-top: 6.3rem;
  max-width: 51.7rem;
  width: 100%;
}

.hero__btn span:first-of-type {
  font-weight: 700;
  padding-right: 0.5rem;
}

.hero__footer {
  bottom: 5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 4rem;
  left: 0;
  margin-left: auto;
  margin-right: auto;
  max-width: 84.3rem;
  position: absolute;
  right: 0;
  width: 100%;
}

.hero__social {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
}

.hero__copy {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1.1rem;
  position: relative;
}

.hero__copy:before {
  background: url(../img/warn-icon.svg) 50% / contain no-repeat;
  content: "";
  display: inline-block;
  height: 2.4rem;
  width: 2.4rem;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
}

.hero__copy p {
  color: #fff;
  font-size: 1.2rem;
  font-weight: 400;
  line-height: 1.5;
  opacity: 0.8;
}

.ecosystem {
  background: #1f2229;
  height: 90rem;
}

.ecosystem__wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 100%;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.ecosystem__item-bg,
.ecosystem__item-bg-hover {
  height: 100%;
  left: 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);
  width: 100%;
}

.ecosystem__item-bg img,
.ecosystem__item-bg-hover img {
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  width: 100%;
}

.ecosystem__item-bg-hover {
  opacity: 0;
}

.ecosystem__item-area {
  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);
  z-index: 2;
}

.ecosystem__item {
  cursor: pointer;
  height: 100%;
  max-width: 33.3333%;
  position: relative;
  width: 100%;
}

.ecosystem__item:hover .ecosystem__item-bg-hover {
  opacity: 1;
}

.ecosystem__item:hover .ecosystem__item-area,
.ecosystem__item:hover .ecosystem__item-bg {
  opacity: 0;
}

.ecosystem__item:hover .ecosystem__item-hover {
  opacity: 1;
}

.ecosystem__item p {
  color: #fff;
  font-size: 2.4rem;
  line-height: 1.45833;
}

.ecosystem__item-hover {
  height: 100%;
  left: 0;
  opacity: 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);
  width: 100%;
  z-index: 3;
}

.ecosystem__item-hover-header {
  color: #fff;
  display: block;
  font-size: 2.9rem;
  font-weight: 400;
  line-height: 1.2069;
}
.ecosystem__item-hover-title{
  color: #FFF;
  font-size: 2.9rem;
  font-weight: 400;
  margin-bottom: 3.5rem;
  display: block;
}
.ecosystem__item-hover1-items-v2 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 2rem 0rem;
}
.ecosystem__item-hover1-items-v2 .ecosystem__item-hover1-item-v2{
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  width: 50%;
}

.ecosystem__item-hover1-items-v2 .ecosystem__item-hover1-item-v2 span{
  color: #FFF;
  font-size: 2.2rem;
  font-weight: 400;
  text-align: center;
}
.ecosystem__item-hover1-item-v2:nth-of-type(2){
  margin-top: -0.1rem;
  span{
    margin-top: -0.1rem;
  }
}
.ecosystem__item-hover1-item-v2:nth-of-type(3){
  margin-top: -0.2rem;
}
.ecosystem__item-hover1-item-v2:nth-of-type(4){
  margin-top: -0.9rem;
}








.ecosystem__item-hover1 {
  padding: 19.1rem 8.6rem 14rem 20rem;
}
.ecosystem__item-hover1.v2{
  padding: 14.4rem 1.7rem 14rem 17.8rem;
}

.ecosystem__item-hover1 .ecosystem__item-hover-header {
  margin-bottom: 6.5rem;
}

.ecosystem__item-hover1-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: baseline;
  -ms-flex-align: baseline;
  align-items: baseline;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin-bottom: 0.7rem;
  position: relative;
}

.ecosystem__item-hover1-item:first-of-type span:nth-of-type(2):before {
  background: #5ab16f;
  content: "";
  display: inline-block;
  height: 0.7rem;
  margin-right: 1rem;
  width: 14.3rem;
}

.ecosystem__item-hover1-item:nth-of-type(2) span:nth-of-type(2):before {
  background: #5ab16f;
  content: "";
  display: inline-block;
  height: 0.7rem;
  margin-right: 1rem;
  width: 7.3rem;
}

.ecosystem__item-hover1-item:nth-of-type(3) span:nth-of-type(2):before {
  background: #5ab16f;
  content: "";
  display: inline-block;
  height: 0.7rem;
  margin-right: 1rem;
  width: 4.2rem;
}

.ecosystem__item-hover1-item:nth-of-type(4) span:nth-of-type(2):before {
  background: #5ab16f;
  content: "";
  display: inline-block;
  height: 0.7rem;
  margin-right: 1rem;
  width: 3.1rem;
}

.ecosystem__item-hover1-item:nth-of-type(5) span:nth-of-type(2):before {
  background: #5ab16f;
  content: "";
  display: inline-block;
  height: 0.7rem;
  margin-right: 1rem;
  width: 2rem;
}

.ecosystem__item-hover1-item:nth-of-type(6) span:nth-of-type(2):before {
  background: #5ab16f;
  content: "";
  display: inline-block;
  height: 0.7rem;
  margin-right: 1rem;
  width: 1.6rem;
}

.ecosystem__item-hover1-item:nth-of-type(7) {
  padding-right: 2rem;
}

.ecosystem__item-hover1-item:nth-of-type(7) span:nth-of-type(2):before {
  background: #5ab16f;
  content: "";
  display: inline-block;
  height: 0.7rem;
  margin-right: 1rem;
  width: 0.8rem;
}

.ecosystem__item-hover1-item:nth-of-type(8) {
  padding-right: 2rem;
}

.ecosystem__item-hover1-item:nth-of-type(8) span:nth-of-type(2):before {
  background: #5ab16f;
  content: "";
  display: inline-block;
  height: 0.7rem;
  margin-right: 1rem;
  width: 0.5rem;
}

.ecosystem__item-hover1-item span:first-of-type {
  color: #fff;
  display: block;
  font-size: 2.9rem;
  font-weight: 400;
  letter-spacing: 0.21em;
  line-height: 1.2069;
}

.ecosystem__item-hover1-item span:nth-of-type(2) {
  color: #fff;
  display: block;
  font-size: 4rem;
  font-weight: 500;
}

.ecosystem__item-hover2 {
  padding: 18.8rem 4.3rem 8rem 3rem;
}

.ecosystem__item-hover2 .ecosystem__item-hover-header {
  margin-bottom: 4.5rem;
  margin-left: 5.8rem;
  max-width: 32.8rem;
}

.ecosystem__item-hover2-items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap:2rem 0rem;
}

.ecosystem__item-hover2-item {
  text-align: center;
  width: 50%;
}

.ecosystem__item-hover2-item:first-of-type {
  margin-bottom: 1.7rem;
}

.ecosystem__item-hover2-item:first-of-type span {
  margin-top: -3.2rem;
  margin-top: 1.7rem;
}

.ecosystem__item-hover2-item:first-of-type img {
  width: 23.1rem;
}

.ecosystem__item-hover2-item:nth-of-type(2) {
  margin-bottom: 1.7rem;
  margin-top: -3.2rem;
  margin-top: 1rem;
}

.ecosystem__item-hover2-item:nth-of-type(2) img {
  width: 22rem;
}

.ecosystem__item-hover2-item:nth-of-type(2) span {
  margin-top: -1.7rem;
}

.ecosystem__item-hover2-item:nth-of-type(3) {
  margin-top: -1.6rem;
}

.ecosystem__item-hover2-item:nth-of-type(3) img {
  width: 22.2rem;
  width: 23.8rem;
}

.ecosystem__item-hover2-item:nth-of-type(3) span {
  margin-top: -1.2rem;
  margin-top: 1.9rem;
}

.ecosystem__item-hover2-item:nth-of-type(4) {
  margin-top: -0.4rem;
}

.ecosystem__item-hover2-item:nth-of-type(4) img {
  width: 20.7rem;
  width: 26rem;
}

.ecosystem__item-hover2-item:nth-of-type(4) span {
  margin-top: -1.8rem;
}

.ecosystem__item-hover2-item span {
  color: #fff;
  display: block;
  font-size: 2.2rem;
  line-height: 1;
  margin: 0 auto;
  max-width: 19.2rem;
  max-width: 21.2rem;
  width: 100%;
}

.ecosystem__item-hover3 {
  padding: 16.1rem 9rem 12.2rem 6.3rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.ecosystem__item-hover3 .ecosystem__item-hover-header {
  margin-bottom: 6.3rem;
  max-width: 30.9rem;
}

.ecosystem__item-hover3-item {
  margin-bottom: 7.2rem;
}

.ecosystem__item-hover3-item:first-of-type
  .ecosystem__item-hover3-item-body-text {
  margin-top: 1.7rem;
}

.ecosystem__item-hover3-item:first-of-type img {
  width: 9.3rem;
}

.ecosystem__item-hover3-item:nth-of-type(2) .ecosystem__item-hover3-item-body {
  gap: 0.8rem;
  margin-left: -2rem;
}

.ecosystem__item-hover3-item:nth-of-type(2)
  .ecosystem__item-hover3-item-body-text {
  margin-top: 0.8rem;
}

.ecosystem__item-hover3-item:nth-of-type(2) img {
  width: 13.2rem;
}

.ecosystem__item-hover3-item-header {
  margin-bottom: 0.8rem;
}

.ecosystem__item-hover3-item-header span {
  color: #fff;
  font-size: 2.8rem;
  font-weight: 400;
  letter-spacing: 0.21em;
  line-height: 1.25;
}

.ecosystem__item-hover3-item-body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 2.5rem;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.ecosystem__item-hover3-item-body span {
  display: block;
}

.ecosystem__item-hover3-item-body span:first-of-type {
  color: #fff;
  font-size: 7rem;
  font-weight: 500;
  line-height: 1;
  max-width: 26.7rem;
  width: 100%;
}

.ecosystem__item-hover3-item-body span:nth-of-type(2) {
  color: #fff;
  font-size: 2.6rem;
  font-weight: 400;
  line-height: 1;
}

.ecosystem__item-hover3-item-body span sub {
  bottom: 0;
  font-size: 50%;
}

.ecosystem__item-title {
  color: #fff;
  font-size: 12rem;
  font-weight: 500;
  line-height: 1;
  margin-bottom: 3.3rem;
}

.ecosystem__item-mini {
  /* font-size: 2.4rem; */
  font-size: 7rem;
  left: -2.3rem;
  position: relative;
}

.ecosystem__item-title-span {
  color: #fff;
  display: block;
  font-size: 2.9rem;
  font-weight: 400;
  letter-spacing: 0.06em;
  line-height: 1.2069;
}

.ecosystem__item-arrow {
  background: #299aff;
  border-radius: 50%;
  cursor: pointer;
  height: 3.7rem;
  position: relative;
  width: 3.7rem;
}

.ecosystem__item-arrow:after {
  background: url(../img/arrow-right.svg) 50% / contain no-repeat;
  content: "";
  height: 1.4rem;
  left: 1.9rem;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 3.4rem;
}

.ecosystem__item--1 {
  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-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  padding: 2rem 6.7rem 6.1rem 18.8rem;
}

.ecosystem__item--1 p {
  margin-bottom: 3rem;
  max-width: 36.5rem;
}

.ecosystem__item--1 .ecosystem__item-arrow,
.ecosystem__item--1 .ecosystem__item-title-span,
.ecosystem__item--1 p {
  left: 1.2rem;
  position: relative;
}

.ecosystem__item--1 .ecosystem__item-title-span {
  letter-spacing: 0.21em;
}

.ecosystem__item--2 {
  padding: 13.1rem 18rem 2rem 7.7rem;
}

.ecosystem__item--2 p {
  line-height: 1.2;
  margin-bottom: 2rem;
  max-width: 37rem;
}

.ecosystem__item--2 .ecosystem__item-arrow,
.ecosystem__item--2 .ecosystem__item-title-span,
.ecosystem__item--2 p {
  left: 1.2rem;
  position: relative;
}

.ecosystem__item--2 .ecosystem__item-title-span {
  font-size: 2.8rem;
  letter-spacing: 0;
}

.ecosystem__item--3 {
  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-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  padding: 2rem 6.7rem 6.1rem 5.1rem;
}

.ecosystem__item--3 p {
  margin-bottom: 3rem;
  max-width: 30.6rem;
}

.ecosystem__item--3 .ecosystem__item-title sub {
  bottom: 0;
  font-size: 4.3rem;
}

.ecosystem__item--3 .ecosystem__item-arrow,
.ecosystem__item--3 .ecosystem__item-title-span,
.ecosystem__item--3 p {
  left: 1.2rem;
  position: relative;
}

.risks {
  background: #c0c4cf;
  padding: 4rem 0 9.7rem;
}

.risks .h2 {
  font-size: 4rem;
  font-weight: 500;
  margin-bottom: 0;
  text-align: center;
}

.risks__area {
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 1.2rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 4.9rem;
  overflow: hidden;
  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);
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
}

.risks__area:after {
  background: #d1d5e1;
  content: "";
  height: 100%;
  left: 0;
  opacity: 0;
  pointer-events: none;
  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: 0.3s;
  transition-duration: 0.3s;
  width: 100%;
}

.risks__area.animate:after {
  opacity: 1;
}

.risks__header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  max-width: 43.3rem;
  width: 100%;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 0.5rem;
  padding: 0.5rem;
}

.risks__header-item {
  border-radius: 1.2rem;
  border-bottom-right-radius: 0;
  border-top-right-radius: 0;
  color: #fff;
  cursor: pointer;
  height: 21.8rem;
  padding: 6.7rem 4.9rem;
  -webkit-transition: all 0.45s cubic-bezier(0.39, 0.575, 0.565, 1);
  transition: all 0.45s cubic-bezier(0.39, 0.575, 0.565, 1);
  width: 100%;
}

.risks__header-item span {
  display: block;
  font-size: 2.4rem;
}

.risks__header-item.active {
  background: transparent;
}

.risks__tabs {
  -webkit-box-flex: 1;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  width: 100%;
}

.risks__tab-tab {
  display: none;
}

.risks__tab-tab.active-tab {
  -webkit-animation: fadeIn 1.2s;
  animation: fadeIn 1.2s;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.risks__header-item--1 {
  background: url(../img/risk-header-1-bg.jpg) 50% / cover no-repeat;
}

.risks__header-item--1 span {
  max-width: 24rem;
}

.risks__header-item--2 {
  background: url(../img/risk-header-2-bg.jpg) 50% / cover no-repeat;
}

.risks__header-item--2 span {
  max-width: 24rem;
}

.risks__header-item--3 {
  background: url(../img/risk-header-3-bg.jpg) 50% / cover no-repeat;
}

.risks__header-item--3 span {
  max-width: 29rem;
}

.risks__header-item--3.active {
  color: #fff;
}

.risks__tab-bl-pets{
  margin-bottom:10.5rem;
}
@media (max-width:767px){
  .risks__tab-bl-pets{
    margin-bottom:15px;
  }
}


.risks__tab-tab--1{
  align-items:center;
  flex-direction:column;
  height:100%;
  justify-content:flex-end;
  padding:7rem 3.5rem;
}

.risks__tab-tab--1 p {
  color: #fff;
  font-size: 3rem;
  font-weight: 600;
  text-align: center;
}

.risks__tab-tab--2 {
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  height: 100%;
  padding: 7rem;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.risks__tab-tab--2 p {
  color: #fff;
  font-size: 3rem;
  font-weight: 600;
  margin-top: 3.6rem;
  max-width: 64.1rem;
  text-align: center;
}

.risks__tab-bl1 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 4rem;
  max-width: 22.4rem;
  width: 100%;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
}

.risks__tab-bl1-item {
  padding-bottom: 1rem;
}

.risks__tab-bl1-item span {
  color: #fff;
  font-size: 3rem;
  font-weight: 600;
  text-align: center;
}

.risks__tab-bl1-item-area {
  max-width: 9.2rem;
  text-align: center;
  width: 100%;
}

.risks__tab-bl1-item-area .risks__tab-bl1-item-area-span {
  color: #fff;
  font-size: 2rem;
  margin-top: 0.2rem;
}

.risks__tab-bl1-item-area:first-of-type .risks__tab-bl1-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 25.4rem;
  max-width: 9.2rem;
  width: 100%;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
  background: url(../img/risk-tab-photo-1.png) 50% / cover no-repeat;
}

.risks__tab-bl1-item-area:nth-of-type(2) .risks__tab-bl1-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 34.5rem;
  max-width: 9.2rem;
  width: 100%;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
  background: url(../img/risk-tab-photo-2.png) 50% / cover no-repeat;
}

.risks__tab-tab--3 {
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  height: 100%;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  padding: 6rem 6rem 9.7rem;
}

.risks__tab-tab--3 p {
  color: #fff;
  font-size: 3rem;
  font-weight: 600;
  margin-top: 4.1rem;
  max-width: 80.9rem;
  text-align: center;
}

.risks__tab-tab--3 p:first-of-type {
  font-weight: 700;
  letter-spacing: 0.21em;
  margin-bottom: 3.5rem;
  margin-top: 0;
}

.risks__slider-mobile {
  display: none;
}

.risks__slider-mobile .h2 {
  font-size: 25px;
  margin-bottom: 25px;
  padding: 0 12px;
}

.risk-slider__slide {
  border-radius: 6px;
  height: 586px;
}

.risk-slider__slide--1 {
  background: url(../img/risk-slide-1.jpg) 50% / cover no-repeat;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 64px 12px 95px;
  -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;
}

.risk-slider__slide--1 p {
  color: #fff;
  font-size: 2rem;
  font-weight: 600;
}

.risk-slider__slide--2 {
  background: url(../img/risk-slide-2.jpg) 50% / cover no-repeat;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 64px 12px 95px;
  -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;
}

.risk-slider__slide--2 p {
  color: #fff;
  font-size: 2rem;
  font-weight: 600;
  max-width: 90%;
}

.risk-slider__slide--3 {
  background: url(../img/risk-slide-3.jpg) 50% / cover no-repeat;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 64px 12px 95px;
  -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;
}

.risk-slider__slide--3 p {
  color: #fff;
  font-size: 2rem;
  font-weight: 600;
  max-width: 100%;
}

.risk-slider__slide--3 img {
  max-width: 150px;
}

/* Risks v2 Slider */
.risks-v2 {
  background: #c0c4cf;
  background: linear-gradient(0deg, #D2D7DB 0%, #D2D7DB 100%), url(<path-to-image>) lightgray -43.656px 0px / 104.547% 174.226% no-repeat;
  padding: 4.1rem 0;
  position: relative;
}

.risks-v2 .h2 {
  color: #1F2229;
  font-size: 4rem;
  font-weight: 500;
  margin-bottom: 2.1rem;
  text-align: center;
}

.risks-v2__slider {
  position: relative;
  height: 71rem;
  overflow: hidden;
}

.risks-v2__backgrounds {
  position: relative;
  width: 100%;
  height: 100%;
}

.risks-v2__bg-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0;
  transition: opacity 0.5s ease;
}

.risks-v2__bg-slide.active {
  opacity: 1;
}

.risks-v2__cards {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 2rem;
  padding-top: 6rem;
  padding-bottom: 6rem; 
  padding-left: 5.2rem;
}

.risks-v2__card {
  background: rgba(250, 250, 250, 0.75);
  border-radius: 0.3rem;
  padding: 4.4rem 4rem 4.4rem 3rem;
  max-width: 44.5rem;
  display: flex;
  align-items: center;
  gap: 2rem;
  backdrop-filter: blur(1rem);
  height: 18.9rem;
  flex-shrink: 0;
}

.risks-v2__card-icon {
  flex-shrink: 0;
}

.risks-v2__card-icon img {
  width: 6rem;
  height: 6rem;
  object-fit: contain;
}

.risks-v2__card-text {
  color: #000;
  font-size: 2.4rem;
  font-weight: 400;
}

.risks-v2__navigation {
  position: absolute;
  bottom: 6.1rem;
  right: 7.3rem;
  display: flex;
  gap: 1rem;
  z-index: 3;
}

.risks-v2__dot {
  width: 1.2rem;
  height: 1.2rem;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: all 0.3s ease;
}

.risks-v2__dot.active {
  background: #fff;
  transform: scale(1.2);
}

.risks-v2__dot:hover {
  background: rgba(255, 255, 255, 0.8);
}

/* Скрываем мобильные карточки на десктопе */
.risks-v2__mobile-cards {
  display: none;
}

/* Скрываем мобильную версию экосистемы на десктопе */
.ecosystem-mobile {
  display: none;
}

.need-hero {
  background: url(../img/need-hero-bg.jpg) 50% / cover no-repeat;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 90rem;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.need-hero__wrap {
  margin: 0 auto;
  max-width: 79.8rem;
  width: 100%;
}

.need-hero__wrap .h2 {
  color: #fff;
  font-size: 7rem;
  font-weight: 900;
  margin-bottom: 2.4rem;
}

.need-hero__wrap p {
  color: #fff;
  font-size: 3rem;
  font-weight: 300;
  margin-bottom: 0;
  max-width: 68.9rem;
}

.participate {
  background: #ebeef3;
  padding: 7rem 0 13rem;
}

.participate .h2 {
  color: #00549f;
  font-size: 7rem;
  font-weight: 900;
  text-align: center;
}

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

.participate-bl {
  position: relative;
}

.participate-bl img {
  display: block;
}

.participate-bl--1 {
  margin-top: 7.8rem;
  max-width: 21.4rem;
  width: 100%;
}

.participate-bl--1 img {
  margin-bottom: 1.7rem;
  margin-left: -2rem;
  max-width: 21.1rem;
  width: 100%;
}

.participate-bl--1:after {
  background: url(../img/participate-arrow-1.svg) 50% / contain no-repeat;
  bottom: -6rem;
  content: "";
  height: 9.3rem;
  left: 7rem;
  position: absolute;
  width: 17.7rem;
}

.participate-title {
  display: block;
  font-size: 3rem;
  font-weight: 500;
  margin-bottom: 0.7rem;
}

.participate-text {
  font-size: 2.2rem;
}

.participate-bl--2 {
  max-width: 24.5rem;
  width: 100%;
}

.participate-bl--2 img {
  margin-bottom: 1.4rem;
  max-width: 18.1rem;
  width: 100%;
}

.participate-bl--2 .participate-text,
.participate-bl--2 .participate-title {
  margin-left: -0.2rem;
}

.participate-bl--2:after {
  background: url(../img/participate-arrow-2.svg) 50% / contain no-repeat;
  content: "";
  height: 9.3rem;
  left: 11.6rem;
  position: absolute;
  top: -3rem;
  width: 17.7rem;
}

.participate-bl--3 {
  left: -1.6rem;
  margin-top: 8rem;
  max-width: 31.5rem;
  position: relative;
  width: 100%;
}

.participate-bl--3 img {
  margin-bottom: 0.6rem;
  max-width: 23.2rem;
  width: 100%;
}

.participate-bl--3:after {
  background: url(../img/participate-arrow-3.svg) 50% / contain no-repeat;
  bottom: -6.2rem;
  content: "";
  height: 9.3rem;
  left: 20.6rem;
  position: absolute;
  width: 17.7rem;
}

.participate-text-mini {
  display: block;
  font-size: 1.6rem;
  margin-top: 0.4rem;
  opacity: 0.5;
}

.participate-bl--4 {
  left: -0.7rem;
  margin-top: -0.5rem;
  max-width: 27rem;
  position: relative;
  width: 100%;
}

.participate-bl--4 img {
  margin-bottom: 1.7rem;
  max-width: 21.6rem;
  width: 100%;
}

.participate-bl--4 .participate-text,
.participate-bl--4 .participate-title {
  margin-left: -0.2rem;
}

.participate-bl--4:after {
  background: url(../img/participate-arrow-4.svg) 50% / contain no-repeat;
  content: "";
  height: 9.3rem;
  left: 15.1rem;
  position: absolute;
  top: -2.5rem;
  width: 17.7rem;
}

.participate-bl--5 {
  margin-top: 6.1rem;
  max-width: 28.9rem;
  width: 100%;
}

.participate-bl--5 img {
  margin-bottom: 0.9rem;
  max-width: 25.4rem;
  width: 100%;
}

.map {
  position: relative;
}

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

.map__aside {
  background: #d9dce1;
  margin-left: -6.2rem;
  max-width: 62.3rem;
  padding: 3.4rem 0;
  position: relative;
  width: 100%;
}

.map__aside:after {
  background: #d9dce1;
  content: "";
  height: 100%;
  left: -100%;
  position: absolute;
  top: 0;
  width: 100%;
}

.map__aside-item {
  background: #fff;
  border-radius: 0.6rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 5rem;
  left: 6.2rem;
  margin-bottom: 1.8rem;
  position: relative;
  width: 100%;
  z-index: 2;
}

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

.map__aside-item:first-of-type {
  padding: 3.7rem 5.8rem 2rem 4rem;
}

.map__aside-item:nth-of-type(2) {
  padding: 4.6rem 5.8rem 4.2rem 4rem;
}

.map__aside-item:nth-of-type(3) {
  padding: 3.3rem 4.8rem 5.7rem 4rem;
}

.map__aside-item-logo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  max-width: 12.2rem;
  width: 100%;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.map__aside-item-text .h3 {
  font-size: 2.8rem;
  font-weight: 500;
  margin-bottom: 1.5rem;
  max-width: 80%;
}

.map__aside-item-text p {
  font-size: 2.2rem;
  opacity: 0.6;
}

.map {
  overflow: hidden;
}

.map__area {
  height: 90rem;
  margin-right: -15.2rem;
  width: calc(100% + 15.2rem);
}

.catalog__map,
.catalog__map-wrap,
.map-catalog {
  height: 100%;
  width: 100%;
}

.ymaps {
  width: 100%;
}

.catalog__map [class*="gototech"] {
  display: none !important;
}

.catalog__map [class*="copyright"] {
  display: none !important;
}

.catalog__map [class*="balloon__content"] {
  background: #fff;
  border-radius: 6px;
  -webkit-filter: drop-shadow(0 4px 32px rgba(0, 0, 0, 0.15));
  filter: drop-shadow(0 4px 32px rgba(0, 0, 0, 0.15));
  margin-right: 0 !important;
  min-width: 428px;
  padding: 0;
}

.catalog__map [class*="balloon__content"] ymaps {
  width: 100% !important;
}

.catalog__map [class*="balloon__layout"] {
  background: transparent;
}

.catalog__map [class*="balloon"] {
  -webkit-box-shadow: none;
  box-shadow: none;
}

.catalog__map [class*="balloon__close"] {
  position: absolute;
  right: 4px;
  top: 2px;
}

.catalog__map [class*="balloon__tail"] {
  display: none;
}

.balloon {
  font-family: Roboto Condensed;
  padding: 23px 33px 6px 21px;
}

.balloon,
.balloon__wrap {
  width: 100%;
}

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

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

.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;
  line-height: 1.3333333333;
  margin-bottom: -2px;
}

.baloon__item-text p,
.baloon__item-text span {
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0.12px;
}

.baloon__item-text span {
  color: #5ab16f;
  line-height: 1;
  margin-bottom: 0;
}

.location {
  background: url(../img/location-bg.jpg) 50% / cover no-repeat;
  height: 90rem;
  padding: 24.1rem 0 28.1rem;
}

.location__wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 4rem;
  padding: 0 11.1rem;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.location__text {
  max-width: 68.2rem;
  width: 100%;
}

.location__text .h2 {
  color: #fff;
  font-size: 5rem;
  font-weight: 500;
  margin-bottom: 3.4rem;
  max-width: 64.9rem;
}

.location__text p {
  color: #fff;
  font-size: 3rem;
}

.location__btns,
.location__btns .btn {
  max-width: 52.2rem;
  width: 100%;
}

.location__btns .btn {
  border-radius: 0.6rem;
  height: 7.9rem;
}

.location__btn1 {
  background: #5ab16f;
  -webkit-box-shadow: 0 0 45px 0 rgba(0, 0, 0, 0.4);
  box-shadow: 0 0 45px 0 rgba(0, 0, 0, 0.4);
  color: #fff;
  font-size: 3rem;
  font-weight: 400;
  margin-bottom: 4.9rem;
}

.location__btn1:hover {
  background: #76be87;
}

.location__btn2 {
  background: #00549f;
  -webkit-box-shadow: 0 0 45px 0 rgba(0, 0, 0, 0.4);
  box-shadow: 0 0 45px 0 rgba(0, 0, 0, 0.4);
  color: #fff;
  font-size: 2rem;
  font-weight: 400;
  line-height: 1.15;
  padding: 0 2.8rem;
  text-align: center;
}

.location__btn2:hover {
  background: #006ac8;
}

.photo-reports {
  background: url(../img/photo-reports-bg.jpg) 50% / cover no-repeat;
  height: 90rem;
  padding: 12.7rem 0 14.1rem;
}

.photo-reports__wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 5.7rem;
  padding-left: 17.9rem;
  padding-right: 18.9rem;
}

.photo-reports__left {
  max-width: 51.2rem;
  padding-top: 27.7rem;
  width: 100%;
}

.photo-reports__left .h2 {
  color: #fff;
  font-size: 7.9rem;
  font-weight: 900;
  margin-bottom: 0;
  opacity: 0.15;
  position: sticky;
  text-transform: uppercase;
  top: 12rem;
  -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);
}

.photo-reports__right .h2 {
  color: #fff;
  font-size: 7rem;
  font-weight: 500;
  margin-bottom: 1rem;
}

.photo-reports__right p {
  color: #fff;
  font-size: 2.3rem;
}

.photo-reports__date {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 3rem;
  margin-bottom: 1.7rem;
}

.photo-reports__date,
.photo-reports__date span {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.photo-reports__date span {
  color: #fff;
  font-size: 3.5rem;
}

.photo-reports__date span:nth-of-type(2) {
  display: inline-block;
  font-weight: 600;
  position: relative;
}

.photo-reports__date span:nth-of-type(2):after {
  border: 4px solid #fff;
  border-radius: 2rem;
  content: "";
  height: 125%;
  left: -10.25%;
  position: absolute;
  top: -10.25%;
  width: 122%;
}

.photo-reports__video {
  margin-bottom: 1.7rem;
  margin-top: 4.2rem;
}

.photo-reports__video-item {
  position: relative;
}

.photo-reports__video-item:hover .video-play {
  -webkit-transform: translate(-50%, -50%) scale(0.94);
  -ms-transform: translate(-50%, -50%) scale(0.94);
  transform: translate(-50%, -50%) scale(0.94);
}

.photo-reports__video-item img {
  border-radius: 1rem;
  -webkit-box-shadow: 0 6px 57.1px 0 rgba(0, 0, 0, 0.4);
  box-shadow: 0 6px 57.1px 0 rgba(0, 0, 0, 0.4);
}

.video-play {
  background: url(../img/video-play.svg) 50% / contain no-repeat;
  height: 9.4rem;
  left: 50%;
  position: absolute;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  -webkit-transform-origin: center;
  -ms-transform-origin: center;
  transform-origin: center;
  -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: 9.4rem;
  z-index: 2;
}

.partner {
  background: #e7eaf0;
  padding: 16.7rem 0;
}

.partner__photo,
.partner__wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.partner__photo {
  background: url(../img/partner-bg.jpg) 50% / cover no-repeat;
  height: 51.2rem;
  max-width: 65.1rem;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.partner__btn,
.partner__photo {
  border-radius: 0.6rem;
  width: 100%;
}

.partner__btn {
  background: #fff;
  color: #1f2229;
  font-size: 1.9rem;
  font-weight: 500;
  height: 6rem;
  letter-spacing: 0.04em;
  max-width: 31.7rem;
}

.partner__text {
  -webkit-box-flex: 1;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  padding-left: 7rem;
  width: 100%;
}

.partner__text .h2 {
  font-size: 5rem;
  font-weight: 500;
  line-height: 1.15;
  margin-bottom: 2.4rem;
  margin-right: -2rem;
}

.partner__text p {
  font-size: 2.2rem;
  margin-bottom: 2.5rem;
  max-width: 74.2rem;
}

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

.partner__icons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin-top: 2.4rem;
  padding-right: 3.8rem;
}

.partner__item {
  text-align: center;
  width: 100%;
}

.partner__item span {
  font-size: 1.8rem;
  font-weight: 300;
}

.partner__item:first-of-type {
  max-width: 13.4rem;
}

.partner__item:first-of-type img {
  max-width: 6.3rem;
}

.partner__item:nth-of-type(2) {
  max-width: 18.3rem;
}

.partner__item:nth-of-type(2) img {
  max-width: 5.9rem;
}

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

.partner__item:nth-of-type(3) img {
  max-width: 5.6rem;
}

.partner__item:nth-of-type(4) {
  max-width: 15.4rem;
}

.partner__item:nth-of-type(4) img {
  max-width: 4.4rem;
}

.partner__item-icon {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  min-height: 6.3rem;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin-bottom: 1.7rem;
}

.partner__item-icon img {
  width: 100%;
}

.press {
  background: #f9f9f9;
  padding: 5rem 0 10rem;
}

.press__wrap .h2 {
  font-size: 5rem;
  font-weight: 500;
  margin: 0 auto 5.9rem;
  max-width: 75.4rem;
  text-align: center;
  width: 100%;
}

.press__area {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1.8rem;
}

.press__big {
  max-width: 39.5rem;
  width: 100%;
}

.press__big .press__item-btn {
  background: #5ab16f;
  border: none;
  border-radius: 0.6rem;
  color: #fff;
  font-size: 1.8rem;
  font-weight: 400;
  height: 6.6rem;
  margin-top: auto;
  padding: 0;
  width: 100%;
}

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

.press__big .press__item {
  height: 100%;
  padding-bottom: 1.8rem;
}

.press__big .press__item:hover .press__item-btn .icon {
  background: #7dc18d;
  color: #fff;
  -webkit-transform: translateX(0.8rem);
  -ms-transform: translateX(0.8rem);
  transform: translateX(0.8rem);
}

.press__big .press__item-logo {
  margin-bottom: 2.5rem !important;
  margin-left: 0 !important;
  max-width: 13.8rem !important;
  width: 100%;
}

.press__big .press__item-photo {
  margin: 0 -1.5rem 2.8rem;
}

.press__item {
  background: #fff;
  -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;
  padding: 2.2rem 3rem 1.5rem;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  border-radius: 0.6rem;
  -ms-flex-direction: column;
  flex-direction: column;
}

.press__item:hover .press__item-btn .icon {
  color: #1f2229;
  -webkit-transform: translateX(1rem);
  -ms-transform: translateX(1rem);
  transform: translateX(1rem);
}

.press__item:first-of-type .press__item-logo {
  margin-bottom: 1.7rem;
  margin-left: 0.7rem;
  max-width: 20.3rem;
  width: 100%;
}

.press__item:nth-of-type(2) .press__item-logo {
  margin-bottom: 1rem;
  margin-left: 1.3rem;
  max-width: 12.2rem;
  width: 100%;
}

.press__item:nth-of-type(3) .press__item-logo {
  margin-bottom: 1.3rem;
  margin-left: 0.7rem;
  max-width: 15.4rem;
  width: 100%;
}

.press__item:nth-of-type(4) .press__item-logo {
  margin-bottom: 2.3rem;
  margin-left: 0.5rem;
  max-width: 15.3rem;
  width: 100%;
}

.press__item:nth-of-type(5) .press__item-logo {
  margin-bottom: 1.8rem;
  margin-left: -0.4rem;
  max-width: 19.6rem;
  width: 100%;
}

.press__item:nth-of-type(6) .press__item-logo {
  margin-bottom: 0.8rem;
  margin-left: 0.6rem;
  max-width: 12.6rem;
  width: 100%;
}

.press__item-logo img,
.press__item-photo img {
  width: 100%;
}

.press__item-btn {
  background: transparent;
  border-bottom: 1px solid #5ab16f;
  border-radius: 0;
  color: #5ab16f;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  font-size: 1.8rem;
  font-weight: 400;
  gap: 0.5rem;
  height: auto;
  margin: auto auto 0;
  padding-bottom: 0.3rem;
  width: 100%;
  width: -webkit-min-content;
  width: -moz-min-content;
  width: min-content;
}

.press__item-btn .icon {
  height: 0.8rem;
  width: 1.1rem;
}

.press__item-btn:hover {
  background: transparent;
  color: #5ab16f;
}

.press__grid {
  display: grid;
  gap: 0.7rem 1.8rem;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: 28.3rem;
}

.faq {
  background: url(../img/faq-bg.jpg) 50% / cover no-repeat;
  min-height: 133rem;
}

.faq .ac {
  background: transparent;
  border: none;
  border-bottom: 1px solid #cdd7dd;
  margin: 0;
}

.faq .ac .ac-trigger {
  color: #1f2229;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font: inherit;
  font-family:
    Roboto Condensed,
    sans-serif;
  font-size: 2.6rem;
  font-weight: 700;
  line-height: 1.3846153846;
  padding: 3rem 0;
  -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: #1f2229;
  font: inherit;
  font-family:
    Roboto Condensed,
    sans-serif;
  font-size: 2.2rem;
  font-weight: 300;
  margin-bottom: 1rem;
  max-width: 96.2rem;
  padding: 0;
}

.faq .ac .ac-panel .ac-text:last-of-type {
  margin-bottom: 0;
  padding-bottom: 3.2rem;
}

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

.faq .ac .ac-trigger:after {
  background: url(../img/faq-open.svg) 50% / contain no-repeat;
  content: "";
  display: inline-block;
  height: 2.8rem;
  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: 2.8rem;
  -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/faq-close.svg) 50% / contain no-repeat;
  content: "";
}

.faq .ac.is-active > .ac-header .ac-trigger {
  padding-bottom: 1.5rem;
}

.faq__wrap {
  padding: 6.9rem 19.1rem 18.1rem;
}

.faq__header {
  margin-bottom: 5.1rem;
}

.faq__header .h2 {
  font-size: 5rem;
  font-weight: 400;
  margin-bottom: 0.9rem;
}

.faq__header p {
  font-size: 2.2rem;
  max-width: 84.7rem;
}

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

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

.modal .h4 {
  font-size: 3rem;
  font-weight: 600;
  margin-bottom: 2rem;
}

.modal .h4,
.modal .input,
.modal .textarea {
  color: #fff;
  font-family:
    Roboto Condensed,
    sans-serif;
}

.modal .input,
.modal .textarea {
  background: transparent;
  border: 1px solid #e3e4e4;
  border-radius: 0.5rem;
  font-size: 1.8rem;
  font-weight: 400;
  padding: 0 1rem;
  text-align: center;
  width: 100%;
}

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

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

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

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

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

.modal .input::-webkit-input-placeholder,
.modal .textarea::-webkit-input-placeholder {
  color: #fff;
  opacity: 0.8;
}

.modal .input::-moz-placeholder,
.modal .textarea::-moz-placeholder {
  color: #fff;
  opacity: 0.8;
}

.modal .input:-ms-input-placeholder,
.modal .textarea:-ms-input-placeholder {
  color: #fff;
  opacity: 0.8;
}

.modal .input::-ms-input-placeholder,
.modal .textarea::-ms-input-placeholder {
  color: #fff;
  opacity: 0.8;
}

.modal .input::placeholder,
.modal .textarea::placeholder {
  color: #fff;
  opacity: 0.8;
}

.modal .modal-form .input {
  height: 5.6rem;
  margin-bottom: 2.3rem;
  width: 100%;
}

.modal .btn {
  background: #5ab16f;
  height: 6rem;
  margin-bottom: 2.3rem;
  width: 100%;
}

.modal .btn:hover {
  background: #76be87;
}

.modal p {
  color: #fff;
  font-size: 1.6rem;
  text-align: center;
}

.modal a {
  color: #fff;
  text-decoration: underline;
  -webkit-text-decoration-skip-ink: none;
  text-decoration-skip-ink: none;
}

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

.modal .dialog__content {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  background: #fff;
  background: #1f2229;
  border-radius: 1.2rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  justify-content: center;
  margin: 0 2.6rem;
  max-width: 40%;
  padding: 4rem 14rem;
}

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

.close-modal__container {
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  justify-content: flex-end;
  margin-bottom: 3rem;
  position: absolute;
  right: 2rem;
  top: 2rem;
}

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

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

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

  .ecosystem__item--1,
  .ecosystem__item-hover1 {
    padding-left: 16rem;
  }
}

@media (max-width: 1600px) {
  .ecosystem__item-hover1 {
    padding-left: 10rem;
  }

  .ecosystem__item-hover3 {
    padding-right: 4rem;
  }

  .ecosystem__item--1 {
    padding-left: 13rem;
  }

  .modal .dialog__content {
    max-height: 90vh;
    overflow-y: auto;
  }

  .modal-form__copy {
    margin-bottom: 30px;
    padding-bottom: 30px;
  }
}

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

  .ecosystem__item-hover1 {
    padding-left: 10rem;
  }

  .ecosystem__item--1 {
    padding-left: 14rem;
  }
}

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

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

  .ecosystem__item-hover1 {
    padding-left: 13rem;
  }

  .ecosystem__item--1 {
    padding-left: 16rem;
  }
}

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

@media (max-width: 1200px) {
  .header-mobile {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .header__wrap{
    display: none;
  }
  .header-mobile__tel a {
    font-size: 18px;
  }

  .hero {
    height: 100rem;
  }

  .ecosystem__item-hover1 {
    padding-left: 10rem;
  }
}

@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__icon {
    right: 16px;
    width: 10px;
  }

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

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

  .h1 {
    font-size: 23px;
  }

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

  .h3 {
    font-size: 15px;
  }

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

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

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

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

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

  .fancybox-custom .fancybox-navigation .fancybox-button--arrow_right,
  .fancybox-custom-video .fancybox-navigation .fancybox-button--arrow_right {
    right: 0;
    right: env(safe-area-inset-left);
  }

  .fancybox-custom .fancybox-navigation .fancybox-button--arrow_left,
  .fancybox-custom-video .fancybox-navigation .fancybox-button--arrow_left {
    left: 0;
    left: env(safe-area-inset-left);
  }

  .fancybox-custom-video .fancybox-slide {
    padding: 12px;
  }

  .header {
    display: none;
  }

  .header__logos {
    gap: 0;
  }

  .header__forest-save-logo {
    margin-right: 20px;
    max-width: 77px;
  }

  .header__forest-post-ru-logo {
    margin-right: 20px;
    max-width: 70px;
  }

  .header__forest-skolkovo-logo {
    max-width: 70px;
  }

  .header__lk {
    gap: 0;
  }

  .header__lk:after {
    height: 20px;
    width: 20px;
  }

  .header-mobile__meta {
    padding-left: 17px;
    padding-right: 17px;
  }

  .header-mobile__meta .btn {
    font-size: 10px;
    font-weight: 600;
    height: 24px;
    line-height: 12px;
    max-width: 112px;
  }

  .header-mobile__tel a {
    font-size: 14px;
  }

  .header-mobile-menu .header-mobile-menu__list {
    padding: 0 25px;
  }

  .header-mobile-menu .header-mobile-center {
    font-size: 20px;
    font-weight: 500;
    padding: 0 25px;
    text-transform: none;
  }

  .footer {
    height: auto;
    margin-top: -130px;
    padding: 30px 0;
  }

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

  .footer__nav a,
  .footer__nav li {
    font-size: 16px;
  }

  .hero {
    height: auto;
    height: 738px;
    padding: 228px 0 50px;
  }

  .hero__wrap {
    height: auto;
  }

  .hero__description .h1 {
    font-size: 45px;
    line-height: 1;
    margin-bottom: 19px;
  }

  .hero__description p {
    font-size: 16px;
    line-height: 1.2;
    padding-right: 10px;
  }

  .hero__description p br {
    display: none;
  }

  .hero__btn {
    font-size: 15px;
    height: 60px;
    margin-top: 50px;
    max-width: 100%;
  }

  .hero__footer {
    position: static;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 15px;
    margin-top: 120px;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }

  .hero__copy:before {
    display: none;
  }

  .hero__copy p {
    font-size: 10px;
    line-height: 1.2;
    padding: 0 30px;
    text-align: center;
  }

  .ecosystem {
    height: auto;
  }

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

  .ecosystem__item {
    -webkit-box-shadow: inset 0 0 0 2100px rgba(0, 0, 0, 0.2);
    box-shadow: inset 0 0 0 2100px rgba(0, 0, 0, 0.2);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    max-width: 100%;
    min-height: 380px;
    padding: 48px 24px !important;
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: normal !important;
    -ms-flex-direction: column !important;
    flex-direction: column !important;
    -webkit-box-pack: center !important;
    -ms-flex-pack: center !important;
    justify-content: center !important;
  }

  .ecosystem__item p {
    font-size: 18px;
    left: 0 !important;
  }

  .ecosystem__item-hover-header {
    font-size: 23px;
  }

  

  .ecosystem__item-hover1 {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding: 24px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }

  .ecosystem__item-hover1 .ecosystem__item-hover-header {
    margin-bottom: 15px;
  }

  .ecosystem__item-hover1-item {
    margin-bottom: 3px;
  }

  .ecosystem__item-hover1-item:nth-of-type(7) {
    padding-right: 0;
  }

  .ecosystem__item-hover1-item:nth-of-type(8) {
    padding-right: 0;
  }

  .ecosystem__item-hover1-item span:first-of-type {
    font-size: 18px;
  }

  .ecosystem__item-hover1-item span:nth-of-type(2) {
    font-size: 20px;
  }

  .ecosystem__item-hover2 {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding: 24px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }

  .ecosystem__item-hover2 .ecosystem__item-hover-header {
    margin-bottom: 15px;
    margin-left: 0;
    max-width: 100%;
  }

  .ecosystem__item-hover2-item:first-of-type span {
    margin-top: -10px;
  }

  .ecosystem__item-hover2-item:first-of-type img {
    width: 90px;
  }

  .ecosystem__item-hover2-item:nth-of-type(2) {
    margin-top: -17px;
  }

  .ecosystem__item-hover2-item:nth-of-type(2) img {
    width: 90px;
  }

  .ecosystem__item-hover2-item:nth-of-type(2) span {
    margin-top: -9px;
    max-width: 80%;
  }

  .ecosystem__item-hover2-item:nth-of-type(3) img {
    width: 90px;
  }

  .ecosystem__item-hover2-item:nth-of-type(3) span {
    margin-top: 0;
  }

  .ecosystem__item-hover2-item:nth-of-type(4) img {
    width: 90px;
  }

  .ecosystem__item-hover2-item:nth-of-type(4) span {
    margin-top: -14px;
  }

  .ecosystem__item-hover2-item span {
    font-size: 16px;
    max-width: 80%;
  }

  .ecosystem__item-hover3 {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding: 24px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }

  .ecosystem__item-hover3 .ecosystem__item-hover-header {
    margin-bottom: 15px;
    max-width: 100%;
  }

  .ecosystem__item-hover3-item {
    margin-bottom: 30px;
  }

  .ecosystem__item-hover3-item:first-of-type
    .ecosystem__item-hover3-item-body-text {
    margin-top: 7px;
  }

  .ecosystem__item-hover3-item:first-of-type img {
    width: 50px;
  }

  .ecosystem__item-hover3-item:nth-of-type(2)
    .ecosystem__item-hover3-item-body {
    gap: 20px;
    margin-left: -10px;
  }

  .ecosystem__item-hover3-item:nth-of-type(2)
    .ecosystem__item-hover3-item-body-text {
    margin-top: 0;
  }

  .ecosystem__item-hover3-item:nth-of-type(2) img {
    width: 70px;
  }

  .ecosystem__item-hover3-item-header {
    margin-bottom: 5px;
  }

  .ecosystem__item-hover3-item-header span {
    font-size: 20px;
  }

  .ecosystem__item-hover3-item-body span:first-of-type {
    font-size: 40px;
  }

  .ecosystem__item-hover3-item-body span:nth-of-type(2) {
    font-size: 20px;
  }

  .ecosystem__item-title {
    font-size: 70px;
    margin-bottom: 20px;
  }

  .ecosystem__item-mini {
    font-size: 16px;
    left: 0;
  }

  .ecosystem__item-title-span {
    font-size: 20px !important;
    left: 0 !important;
  }

  .risks {
    padding: 48px 0;
  }

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

  .risks__wrap {
    display: none;
  }

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

  .risks__header-item {
    border-radius: 1.2rem;
    height: auto;
    padding: 24px;
  }

  .risks__header-item span {
    font-size: 20px;
  }

  .risks__tab-tab--1 {
    padding: 48px 24px;
  }

  .risks__tab-tab--1 p {
    font-size: 20px;
  }

  .risks__tab-tab--2 {
    padding: 48px 24px;
  }

  .risks__tab-tab--2 p {
    font-size: 20px;
  }

  .risks__tab-bl1 {
    gap: 20px;
  }

  .risks__tab-bl1-item {
    padding-bottom: 3px;
  }

  .risks__tab-bl1-item span {
    font-size: 2rem;
  }

  .risks__tab-bl1-item-area {
    max-width: -webkit-min-content;
    max-width: -moz-min-content;
    max-width: min-content;
    text-align: left;
  }

  .risks__tab-bl1-item-area .risks__tab-bl1-item-area-span {
    font-size: 17px;
  }

  .risks__tab-bl1-item-area:first-of-type .risks__tab-bl1-item {
    border-radius: 0.6rem 0.6rem 0 0;
    height: 122px;
    max-width: 49px;
  }

  .risks__tab-bl1-item-area:nth-of-type(2) .risks__tab-bl1-item {
    border-radius: 0.6rem 0.6rem 0 0;
    height: 166px;
    max-width: 49px;
  }

  .risks__tab-tab--3 {
    padding: 48px 24px;
  }

  .risks__tab-tab--3 p {
    font-size: 20px;
  }

  .risks__slider-mobile {
    display: block;
  }

  .need-hero {
    -webkit-box-shadow: inset 0 0 0 2100px rgba(0, 0, 0, 0.1);
    box-shadow: inset 0 0 0 2100px rgba(0, 0, 0, 0.1);
    height: auto;
    padding: 48px 0;
  }

  .need-hero__wrap .h2 {
    font-size: 35px;
    margin-bottom: 20px;
  }

  .need-hero__wrap p {
    font-size: 22px;
  }

  /* Risks v2 Mobile Styles */
  .risks-v2 {
    padding: 4rem 0;
  }

  .risks-v2 .h2 {
    font-size: 2.7rem;
    margin-bottom: 3rem;
  }

  .risks-v2__slider {
    height: 40rem;
  }

  /* Скрываем карточки внутри слайдера на мобильных устройствах */
  .risks-v2__cards {
    display: none;
  }

  .risks-v2__navigation {
    bottom: 1rem;
    right: 1rem;
  }

  .risks-v2__dot {
    width: 1rem;
    height: 1rem;
  }

  /* Стили для мобильных карточек */
  .risks-v2__mobile-cards {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-top: 3rem;
  }

  .risks-v2__mobile-card {
    background: rgba(250, 250, 250, 0.9);
    border-radius: 0.8rem;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1.5rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  }

  .risks-v2__mobile-card-icon {
    flex-shrink: 0;
  }

  .risks-v2__mobile-card-icon img {
    width: 5rem;
    height: 5rem;
    object-fit: contain;
  }

  .risks-v2__mobile-card-text {
    color: #000;
    font-size: 1.6rem;
    font-weight: 400;
    line-height: 1.4;
  }

  /* Скрываем оригинальный блок экосистемы на мобильных устройствах */
  .ecosystem {
    display: none;
  }

  /* Мобильная версия экосистемы */
  .ecosystem-mobile {
    display: block;
    background: #1f2229;
    /* padding: 4rem 0; */
  }

  .ecosystem-mobile__wrap {
    display: flex;
    flex-direction: column;
    gap: 0rem;
  }

  .ecosystem-mobile__item {
    position: relative;
    height: 50rem;
    border-radius: 0;
    overflow: hidden;
    cursor: pointer;
  }

  .ecosystem-mobile__item-bg,
  .ecosystem-mobile__item-bg-hover {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transition: all 0.45s cubic-bezier(0.39, 0.575, 0.565, 1);
  }

  .ecosystem-mobile__item-bg img,
  .ecosystem-mobile__item-bg-hover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  @media (max-width: 767px) {
    .ecosystem-mobile__item-bg img,
    .ecosystem-mobile__item-bg-hover img {
      object-position: top;
    }
  }

  .ecosystem-mobile__item-bg-hover {
    opacity: 0;
  }

  .ecosystem-mobile__item-area {
    position: relative;
    z-index: 2;
    padding: 2rem;
    height: 100%;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    transition: all 0.45s cubic-bezier(0.39, 0.575, 0.565, 1);
    padding: 48px 24px !important;
  }

  .ecosystem-mobile__item:hover .ecosystem-mobile__item-bg-hover {
    opacity: 1;
  }

  .ecosystem-mobile__item:hover .ecosystem-mobile__item-area,
  .ecosystem-mobile__item:hover .ecosystem-mobile__item-bg {
    opacity: 0;
  }

  .ecosystem-mobile__item:hover .ecosystem-mobile__item-hover {
    opacity: 1;
  }

  .ecosystem-mobile__item-title {
    color: #fff;
    font-size: 6.2rem;
    font-weight: 500;
    margin-bottom: 1rem;
    line-height: 1.2;
  }

  .ecosystem-mobile__item-mini {
    font-size: 2rem;
    font-weight: 400;
  }

  .ecosystem-mobile__item-title-span {
    font-size: 2.4rem;
    font-weight: 400;
  }

  .ecosystem-mobile__item p {
    color: #fff;
    font-size: 2.4rem;
    line-height: 1.4;
    margin-bottom: 1rem;
  }

  .ecosystem-mobile__item-arrow {
    width: 2rem;
    height: 2rem;
    border-right: 2px solid #fff;
    border-bottom: 2px solid #fff;
    transform: rotate(-45deg);
    margin-top: auto;
  }

  .ecosystem-mobile__item-hover {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: all 0.45s cubic-bezier(0.39, 0.575, 0.565, 1);
    z-index: 3;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }

  .ecosystem-mobile__item-hover-title {
    color: #fff;
    font-size: 2.4rem;
    font-weight: 400;
    margin-bottom: 2rem;
    text-align: center;
  }

  .ecosystem-mobile__item-hover-header {
    color: #fff;
    font-size: 2rem;
    font-weight: 400;
    margin-bottom: 2rem;
    text-align: center;
  }

  .ecosystem-mobile__item-hover1-items-v2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }

  .ecosystem-mobile__item-hover1-item-v2 {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
  }

  .ecosystem-mobile__item-hover1-item-v2 img {
    width: 8rem;
    height: 8rem;
    object-fit: contain;
  }

  .ecosystem-mobile__item-hover1-item-v2 span {
    color: #fff;
    font-size: 1.4rem;
    font-weight: 400;
    text-align: center;
  }

  .ecosystem-mobile__item-hover2-items {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }

  .ecosystem-mobile__item-hover2-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
  }

  .ecosystem-mobile__item-hover2-item img {
    width: 12rem;
    height: 12rem;
    object-fit: contain;
  }

  .ecosystem-mobile__item-hover2-item span {
    color: #fff;
    font-size: 1.4rem;
    font-weight: 400;
    text-align: center;
  }

  .ecosystem-mobile__item-hover3-items {
    display: flex;
    flex-direction: column;
    gap: 2rem;
  }

  .ecosystem-mobile__item-hover3-item {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 0.8rem;
    padding: 1.5rem;
    align-items: center;
    display: flex;
    flex-direction: column;
  }

  .ecosystem-mobile__item-hover3-item-header span {
    color: #fff;
    font-size: 3.4rem;
    font-weight: 400;
    display: block;
    margin-bottom: 1rem;
  }

  .ecosystem-mobile__item-hover3-item-body {
    display: flex;
    align-items: center;
    gap: 1.5rem;
  }

  .ecosystem-mobile__item-hover3-item-body-icon img {
    width: 7rem;
    height: 10rem;
    object-fit: contain;
  }

  .ecosystem-mobile__item-hover3-item-body-text span:first-of-type {
    color: #fff;
    font-size: 4.4rem;
    font-weight: 500;
    display: block;
  }

  .ecosystem-mobile__item-hover3-item-body-text span:nth-of-type(2) {
    color: #fff;
    font-size: 2rem;
    font-weight: 400;
    display: block;
  }

  .participate {
    padding: 48px 0;
  }

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

  .participate__items {
    margin-top: 30px;
  }

  .participate-bl--1,
  .participate__items {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }

  .participate-bl--1 {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-top: 0;
    max-width: 100%;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-bottom: 30px;
    text-align: center;
  }

  .participate-bl--1 img {
    margin-bottom: 15px;
    margin-left: 0;
    max-width: 150px;
  }

  .participate-bl--1:after {
    display: none;
  }

  .participate-title {
    font-size: 25px;
    margin-bottom: 10px;
  }

  .participate-text {
    font-size: 18px;
    padding: 0 20px;
  }

  .participate-bl--2 {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-top: 0;
    max-width: 100%;
    -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;
    margin-bottom: 30px;
    text-align: center;
  }

  .participate-bl--2 img {
    margin-bottom: 15px;
    margin-left: 0;
    max-width: 150px;
  }

  .participate-bl--2 .participate-text,
  .participate-bl--2 .participate-title {
    margin-left: 0;
  }

  .participate-bl--2:after {
    display: none;
  }

  .participate-bl--3 {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-top: 0;
    max-width: 100%;
    -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;
    left: 0;
    margin-bottom: 30px;
    text-align: center;
  }

  .participate-bl--3 img {
    margin-bottom: 15px;
    margin-left: 0;
    max-width: 150px;
  }

  .participate-bl--3:after {
    display: none;
  }

  .participate-bl--4 {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    max-width: 100%;
    -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;
    left: 0;
    margin-bottom: 30px;
    margin-top: 0;
    text-align: center;
  }

  .participate-bl--4 img {
    margin-bottom: 15px;
    margin-left: 0;
    max-width: 150px;
  }

  .participate-bl--4 .participate-text,
  .participate-bl--4 .participate-title {
    margin-left: 0;
  }

  .participate-bl--4:after {
    display: none;
  }

  .participate-bl--5 {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    max-width: 100%;
    -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;
    left: 0;
    margin-top: 0;
    text-align: center;
  }

  .participate-bl--5 img {
    margin-bottom: 15px;
    margin-left: 0;
    max-width: 150px;
  }

  .map {
    margin-bottom: 0;
  }

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

  .map__aside {
    margin: 0 -12px;
    max-width: calc(100% + 24px);
    padding: 48px 12px 30px;
    width: calc(100% + 24px);
  }

  .map__aside:after {
    display: none;
  }

  .map__aside-item {
    left: 0;
    padding: 24px !important;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 0;
    margin-bottom: 10px;
  }

  .map__aside-item-logo {
    margin-bottom: 10px;
    max-width: 60px;
  }

  .map__aside-item-logo img {
    max-height: 60px;
  }

  .map__aside-item-text .h3 {
    font-size: 18px;
    margin-bottom: 10px;
    max-width: 100%;
  }

  .map__aside-item-text .h3 br {
    display: none;
  }

  .map__aside-item-text p {
    font-size: 16px;
  }

  .map__area {
    height: 300px;
    margin-right: 0;
    width: 100%;
  }

  .map-catalog {
    margin: 0 -12px;
    width: calc(100% + 24px);
  }

  .catalog__map [class*="balloon__content"] {
    min-width: unset;
  }

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

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

  .location {
    -webkit-box-shadow: inset 0 0 0 2100px rgba(0, 0, 0, 0.2);
    box-shadow: inset 0 0 0 2100px rgba(0, 0, 0, 0.2);
    height: auto;
    padding: 48px 0;
  }

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

  .location__text .h2 {
    font-size: 30px;
    margin-bottom: 20px;
  }

  .location__text p {
    font-size: 20px;
  }

  .location__text p br {
    display: none;
  }

  .location__btns {
    margin-top: 20px;
    max-width: 100%;
  }

  .location__btns .btn {
    height: 60px;
    max-width: 100%;
  }

  .location__btn1 {
    font-size: 22px;
    margin-bottom: 10px;
  }

  .location__btn2 {
    font-size: 16px;
  }

  .photo-reports {
    -webkit-box-shadow: inset 0 0 0 2100px rgba(0, 0, 0, 0.1);
    box-shadow: inset 0 0 0 2100px rgba(0, 0, 0, 0.1);
    height: auto;
    padding: 48px 0;
  }

  .photo-reports__wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 0;
    padding: 0;
  }

  .photo-reports__left {
    display: none;
  }

  .photo-reports__right .h2 {
    font-size: 35px;
    margin-bottom: 20px;
  }

  .photo-reports__right p {
    font-size: 18px;
  }

  .photo-reports__date {
    gap: 20px;
    margin-bottom: 20px;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
  }

  .photo-reports__date span {
    font-size: 22px;
  }

  .photo-reports__date span:nth-of-type(2):after {
    border: 2px solid #fff;
  }

  .photo-reports__video-item img {
    max-width: 100%;
    width: 100%;
  }

  .video-play {
    height: 65px;
    width: 65px;
  }

  .partner {
    padding: 48px 0;
  }

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

  .partner__photo {
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    height: 200px;
    margin-top: 30px;
    max-width: 100%;
    order: 1;
  }

  .partner__btn {
    font-size: 18px;
    height: 54px;
    max-width: 90%;
  }

  .partner__text {
    padding: 0;
  }

  .partner__text .h2 {
    font-size: 35px;
    margin-bottom: 20px;
    margin-right: 0;
  }

  .partner__text p {
    font-size: 18px;
    line-height: 1.3;
    margin-bottom: 15px;
  }

  .partner__icons {
    display: grid;
    gap: 20px 0;
    grid-template-columns: repeat(2, 1fr);
    margin-top: 25px;
    padding: 0;
  }

  .partner__item span {
    font-size: 15px;
  }

  .partner__item:first-of-type {
    max-width: 100%;
  }

  .partner__item:nth-of-type(2) {
    max-width: 100%;
  }

  .partner__item:nth-of-type(3) {
    max-width: 100%;
  }

  .partner__item:nth-of-type(4) {
    max-width: 100%;
  }

  .partner__item-icon {
    margin-bottom: 10px;
    min-height: 50px;
  }

  .partner__item-icon img {
    max-height: 50px;
    max-width: 50px !important;
  }

  .press {
    padding: 48px 0;
  }

  .press__wrap .h2 {
    font-size: 27px;
    margin-bottom: 30px;
  }

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

  .press__big {
    max-width: 100%;
  }

  .press__big .press__item-btn {
    font-size: 16px;
    height: 54px;
  }

  .press__big .press__item-logo {
    max-width: 100px !important;
  }

  .press__item {
    -webkit-box-shadow: 0 4px 15px 0 rgba(0, 0, 0, 0.07);
    box-shadow: 0 4px 15px 0 rgba(0, 0, 0, 0.07);
    padding: 24px 12px;
  }

  .press__item:first-of-type .press__item-logo {
    margin-bottom: 15px;
    margin-left: 0;
    max-width: 100px;
  }

  .press__item:nth-of-type(2) .press__item-logo {
    margin-bottom: 15px;
    margin-left: 0;
    max-width: 55px;
  }

  .press__item:nth-of-type(3) .press__item-logo {
    margin-bottom: 15px;
    margin-left: 0;
    max-width: 76px;
  }

  .press__item:nth-of-type(4) .press__item-logo {
    margin-bottom: 15px;
    margin-left: 0;
    max-width: 76px;
  }

  .press__item:nth-of-type(5) .press__item-logo {
    margin-bottom: 15px;
    margin-left: 0;
    max-width: 100px;
  }

  .press__item:nth-of-type(6) .press__item-logo {
    margin-bottom: 15px;
    margin-left: 0;
    max-width: 76px;
  }

  .press__item-btn {
    font-size: 16px;
    height: auto;
  }

  .press__grid {
    gap: 6px;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: auto;
  }

  .press__item-photo {
    margin-bottom: 15px;
  }

  .faq {
    min-height: auto;
    padding-bottom: 130px;
  }

  .faq .ac .ac-trigger {
    font-size: 17px;
    gap: 20px;
    line-height: 1.2;
    padding: 16px 0;
  }

  .faq .ac .ac-panel .ac-text {
    font-size: 16px;
  }

  .faq .ac .ac-panel .ac-text:last-of-type {
    margin-bottom: 0;
    padding-bottom: 24px;
  }

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

  .faq__wrap {
    padding: 48px 0;
  }

  .faq__header {
    margin-bottom: 20px;
  }

  .faq__header .h2 {
    font-size: 35px;
  }

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

  .modal .input,
  .modal .textarea {
    font-size: 16px;
  }

  .modal .modal-form .input {
    height: 50px;
    margin-bottom: 10px;
  }

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

  .modal .dialog__content {
    border-radius: 0;
    margin: 12px;
    max-height: 80vh;
    max-width: 100%;
    overflow-y: scroll;
    padding: 30px 12px 48px;
    width: 100%;
  }

  .modal-form__copy {
    font-size: 14px;
  }

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

@media (max-width: 380px) {
  .partner__item span {
    display: block;
    font-size: 14px;
    line-height: 1.3;
  }
}

@media (max-width: 370px) {
  .hero__description p {
    font-size: 16px;
  }

  .need-hero__wrap p {
    font-size: 20px;
  }

  .partner__item span {
    font-size: 13px;
  }
}

@media (max-width: 360px) {
  .header__forest-post-ru-logo, 
  .header__forest-save-logo{
    margin-right: 10px;
  }
  .footer__nav ul {
    gap: 12px;
  }

  .hero {
    height: 700px;
    padding: 160px 0 70px;
  }

  .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) {
  .header__forest-save-logo,
  .header__forest-skolkovo-logo {
    max-width: 60px;
  }

  .header-mobile__logo img {
    max-width: 28px;
  }

  .header-mobile__tel a {
    font-size: 12px;
  }

  .header-mobile-menu .header-mobile-menu__list {
    margin-top: 40px;
  }

  .header-mobile-menu .header-mobile-menu__list li a,
  .header-mobile-menu .header-mobile-menu__list li span {
    font-size: 19px;
  }

  .footer__nav ul {
    gap: 10px;
  }

  .footer__nav a,
  .footer__nav li,
  .hero__description p {
    font-size: 14px;
  }

  .hero__btn {
    font-size: 12px;
  }

  .need-hero__wrap .h2 {
    font-size: 30px;
  }

  .need-hero__wrap p {
    font-size: 18px;
  }

  .location__btn2,
  .participate-text-mini {
    font-size: 14px;
  }

  .photo-reports__date span {
    font-size: 20px;
  }

  .partner__text .h2 {
    font-size: 30px;
  }
}

.gallary .container{
  max-width: 160.8rem;
}
.gallary{
  background: url(../img/bg-gallary.jpg) 50%/cover no-repeat;
}
.gallary-wrapper{
  display: flex;
  gap: 8rem;
  /* gap: 0; */
  align-items: center;
  padding-top: 12.4rem;
  padding-bottom: 10.7rem;
}
.gallary__left-title h3{
  color: #FFF;
  font-size: 7.9rem;
  font-weight: 900;
  margin: 0;
  opacity: 0.15;
}
.gallary-main{
  position: relative;
  width: 100%;
}
.gallary__main-title h2{
  color: #FFF;
  font-size: 5rem;
  font-weight: 500;
  margin-bottom: 1rem;
}
.gallary__main-subtitle p{
  color: #FFF;
  font-size: 2.3rem;
  font-weight: 400;
  margin-bottom: 3.8rem;
  max-width: 58.4rem;
}
.gallary__main-gallary{
  background: url(../img/bg-gallary-main.jpg) 50%/cover no-repeat;
  width: 100%;
  height: 100%;
  border-radius: 10px;
  max-width: 82.1rem;
  position: relative;
  max-height: 52.5rem;
}
@media (max-width:950px){
  .gallary__main-gallary{
    margin: 0 auto;
  }
}
@media (max-width:767px){
  .gallary__main-gallary{
    height: auto;
  }
  
}
.blur-overlay {
  /* position: absolute; */
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(255, 255, 255, 0.2); 
  backdrop-filter: blur(10px); 
  /* display: flex; */
  /* justify-content: center; */
  border-radius: 10px;
}
.gallary__main-content{
  position: relative;
  z-index: 1;
  padding: 0.6rem;
  border-radius: 8px;
}
.gallary-header{
  display: flex;
  gap: 0.6rem;
}

.gallary-header .gallary-item{
  border-radius: 10px;
  color: #1F2229;
  font-size: 1.7rem;
  font-weight: 400;
  line-height: 18px;
  padding-top: 0.8rem;
  padding-right: 4rem;
  padding-left: 1.3rem;
  padding-bottom: 0.6rem;
  margin-bottom: 0.5rem;
  height: 5rem;
  cursor: pointer;
  position: relative;
  &::before{
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    background-color: #fff;
    border-radius: 10px;
    opacity: 0.4;
    background: #FFF;
    width: 100%;
    height: 100%;
    z-index: -1;
  }
}
.gallary-header .gallary-item:nth-of-type(1){
  width: 17.6rem;
}
.gallary-header .gallary-item:nth-of-type(2){
  width: 16.8rem;
}
.gallary-header .gallary-item:nth-of-type(3){
  width: 23.1rem;
}
.gallary-header .gallary-item:nth-of-type(4){
  width: 26.6rem;
}
@media (max-width: 767px){
  .gallary-header .gallary-item:nth-of-type(1){
    width: 100%;
  }
  .gallary-header .gallary-item:nth-of-type(2){
    width: 100%;
  }
  .gallary-header .gallary-item:nth-of-type(3){
    width: 100%;
  }
  .gallary-header .gallary-item:nth-of-type(4){
    width: 100%;
  }
}
.gallary-header .gallary-item.active{
  &::before{
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    background-color: #fff;
    border-radius: 10px;
    opacity: 0.65;
    background: #FFF;
    width: 100%;
    height: 100%;
    z-index: -1;
    height: calc(100% + 0.5rem);
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
  }
}
.gallary__tab-photos{
  grid-template-columns: repeat(3,1fr);
  display: grid;
  gap: 0.7rem;
}
.gallary__tab-photos a{
  width: 17.5rem;
  border-radius: 10px;
  height: 14.1rem;
  img{
    border-radius: 10px;
    height: 14.1rem;
    object-fit: cover;
    width: 100%;
  }
}
.gallary-tab{
  display: flex;
  display: none;
  gap: 1.2rem;
  padding-top: 0.8rem;
  padding-left: 0.8rem;
  padding-bottom: 1.3rem;
  padding-right: 1.1rem;
  position: relative;
  z-index: 3;
  &::before{
    content: '';
    background: #fff;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    border-radius: 10px;
    opacity: 0.65;
    z-index: -1;
  }
}
.gallary-tab.active-tab{
  display: flex;
  animation: fadein 1.2s;
}
.gallary__tab__info-item{
  display: flex;
  align-items: center;
  gap: 1.2rem;
  img{
    width: 5.4rem;
    height: 5.4rem;
  }
  p{
    color: #1F2229;
    font-size: 1.6rem;
    font-weight: 300;
    line-height: 22px; 
    margin-bottom: 0;
  }
} 
.gallary__tab-info{
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.gallary__tab-wrap{
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 2.5rem;
  padding-top: 4rem;
  padding-left: 1.8rem;
}
.gallary-btn{
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.8rem;
  color: #FFF;
  font-size: 1.8rem;
  font-weight: 400;
  border-radius: 6px;
  background: #5AB16F;
  width: 100%;
  height: 5.9rem;
  margin-top: 4.3rem;
}
.gallary-tab.first-active::before {
  border-top-left-radius: 0;
}
.gallary-tab.last-active::before {
  border-top-right-radius: 0; 
}
.gallary__slider-nav-prev{
  width: 5.1rem;
  height: 3.7rem;
  cursor: pointer;
  z-index: 2;
  transition: all ease-out .35s;
  opacity: 0.85;
  background: url('../img/prew-arrow.svg') center/contain no-repeat;
  position: absolute;
  left: -4.1rem;
  top: 50%;
  transform: translateY(-50%);
}
/* .gallary__slider-nav-prev.swiper-button-disabled{
  display: none;
} */
.gallary__slider-nav-next{
  width: 5.1rem;
  height: 3.7rem;
  cursor: pointer;
  z-index: 2;
  transition: all ease-out .35s;
  opacity: 0.85;
  background: url('../img/next-arrow.svg') center/contain no-repeat;
  position: absolute;
  right: -4.1rem;
  top: 50%;
  transform: translateY(-50%);
}
/* .gallary__slider-nav-next.swiper-button-disabled{
  display: none;
} */
.gallary__slider-pagination{
  display: flex;
  gap: 2rem;
  justify-content: center;
}
.gallary__slider-pagination.swiper-pagination-bullets{
 position: relative;
 z-index: 5;
 bottom: -2rem !important;
}
.gallary__slider-pagination .swiper-pagination-bullet {
  background: #ccc;
  border-radius: 1rem;
  height: .8rem;
  margin: 0 !important;
  opacity: 1;
  transition: all .35s ease-out;
  width: 4.3rem;
}
.gallary__slider-pagination .swiper-pagination-bullet-active {
  background: #5AB16F;
}
.gallary-tab.first-tab::before{
  border-top-left-radius: 0;
}
.gallary-tab.four-tab::before{
  border-top-right-radius: 0;
}

@media (max-width:1300px){
  .gallary__left-title h3{
    width: 30%;
  }
  .gallary__tab-photos a{
    max-width: 17.5rem;
    width: 100%;
  }
  .gallary__tab-photos a img {
    border-radius: 10px;
    object-fit: cover;
    height: 100%;
  }
}
@media (max-width:1150px){
  .gallary__left-title{
    display: none;
  }
  .gallary-main{
    max-width: 821px;
    margin: 0 auto;
  }
}
@media (max-width:767px){
  .gallary-wrapper{
    padding-bottom: 3.7rem;
    padding-top: 5.4rem;
  }
  .gallary__slider-nav-prev{
    display: none;
  }
  .gallary__slider-nav-next{
    display: none;
  }
  .gallary-main{
    max-width: 100%;
  }
  .gallary-tab{
    flex-direction: column;
  }
  .gallary__tab-photos a{
    max-width: 100%;
  }
  .gallary__tab-photos a img {
    width: 100%;
  }
  .gallary-header .gallary-item{
    font-size: 14px;
    height: 50px;
    margin: 0;
  }
  .gallary-header{
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    margin-bottom: 8px;
  }
  .gallary-header .gallary-item::before{
    border-radius: 10px;
  }
  .gallary-header .gallary-item.active::before{
    border-radius: 10px;
    height: 100%;
  }
  .gallary__tab-wrap{
    padding-top: 2rem;
    gap: 1rem;
  }
  .gallary-wrapper {
    padding-top: 14px;
  }
}
@media (max-width:450px){
  .gallary-header .gallary-item {
    height: 70px;
  }
}
@media (max-width:392px){
  .gallary-header .gallary-item {
    height: 90px;
    height: auto;
  }
}
.gallary__slider-nav-prev.swiper-button-disabled{
  display: none;
}
.gallary__slider-nav-next.swiper-button-disabled{
  display: none;
}
.gallary-btn:not([href]):not([tabindex]){
  color: #FFF;
}
