@import url(https://fonts.googleapis.com/css?family=Montserrat:300,regular,600&display=swap);

@import url(https://fonts.googleapis.com/css?family=Cormorant+Garamond:regular&display=swap);

@charset "UTF-8";

* {
  padding: 0px;
  margin: 0px;
  border: 0px;
}

*,
*:before,
*:after {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

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

body {
  color: #141414;
  line-height: 1;
  font-family: "Montserrat";
  font-size: 1rem;
  -ms-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

input,
button,
textarea {
  font-family: "Montserrat";
  font-size: inherit;
}

button {
  cursor: pointer;
  color: inherit;
  background-color: inherit;
}

a {
  color: inherit;
}

a:link,
a:visited {
  text-decoration: none;
}

a:hover {
  text-decoration: none;
}

ul li {
  list-style: none;
}

img {
  vertical-align: top;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: inherit;
  font-size: inherit;
}

.lock body {
  overflow: hidden;
  -ms-touch-action: none;
  touch-action: none;
}

.wrapper {
  min-height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  overflow: hidden;
}

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

.wrapper > * {
  min-width: 0;
}

/*
(i) Стили будут применяться ко 
всем классам содержащим *__container
Например header__container, main__container и т.д.
Снипет (HTML): cnt
*/

[class*="__container"] {
  max-width: 81rem;
  -webkit-box-sizing: content-box;
  box-sizing: content-box;
  margin: 0 auto;
  padding: 0 1rem;
}

.select {
  position: relative;
}

.select__body {
  position: relative;
}

.select__title {
  color: inherit;
  text-align: left;
  cursor: pointer;
  width: 100%;
  border-radius: 4px;
}

.select__value {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  height: 1.875rem;
  gap: 0.625rem;
  color: #fff;
  font-weight: 300;
}

.select__value > * {
  -webkit-box-flex: 1;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}

.select__text {
  -webkit-box-flex: 1;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}

.select__input {
  width: 100%;
  background-color: transparent;
  height: 100%;
}

.select__options {
  color: #000;
  position: absolute;
  top: 20px;
  border-radius: 0 0 4px 4px;
  min-width: 100%;
  left: 0;
  border-top: 0;
  border-top: 0;
  padding: 10px 0px 5px 0px;
}

.select__scroll {
  overflow-y: auto;
  overflow-x: hidden;
  max-height: 200px;
}

.select__option {
  width: 100%;
  text-align: left;
  cursor: pointer;
  display: inline-block;
  color: inherit;
  color: #fff;
  font-weight: 300;
}

.select__option:not(:last-child) {
  margin-bottom: 5px;
}

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

.select._select-open {
  z-index: 5;
}

._select-tag {
  cursor: pointer;
}

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

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

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

.link {
  display: inline-block;
  padding: 1rem 2rem;
  background-color: #22c96a;
  color: #fff;
  text-align: center;
  font-size: 0.875rem;
  line-height: 150%;
  text-transform: uppercase;
  border-radius: 6px;
  -webkit-transition: background-color 0.3s;
  transition: background-color 0.3s;
}

.title {
  font-family: "Cormorant Garamond";
  line-height: 120%;
  text-align: center;
}

@supports (
  font-size: clamp(1.75rem, 1.1547619048rem + 2.9761904762vw, 3.625rem)
) {
  .title {
    font-size: clamp(1.75rem, 1.1547619048rem + 2.9761904762vw, 3.625rem);
  }
}

@supports not (
  font-size: clamp(1.75rem, 1.1547619048rem + 2.9761904762vw, 3.625rem)
) {
  .title {
    font-size: calc(1.75rem + 1.875 * (100vw - 20rem) / 63);
  }
}

@supports (
  font-size: clamp(2.5rem, 2.1428571429rem + 1.7857142857vw, 3.625rem)
) {
  .title_big {
    font-size: clamp(2.5rem, 2.1428571429rem + 1.7857142857vw, 3.625rem);
  }
}

@supports not (
  font-size: clamp(2.5rem, 2.1428571429rem + 1.7857142857vw, 3.625rem)
) {
  .title_big {
    font-size: calc(2.5rem + 1.125 * (100vw - 20rem) / 63);
  }
}

.section {
  padding: 8rem 0;
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 50;
  -webkit-transition: background-color 0.3s;
  transition: background-color 0.3s;
}

.header._header-scroll {
  background-color: #141414;
}

.header__top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  min-height: 6.3125rem;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 0.9375rem;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

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

@supports (gap: clamp(0.9375rem, -11.0555919291rem + 19.3440866615vw, 5rem)) {
  .top-header__left {
    gap: clamp(0.9375rem, -11.0555919291rem + 19.3440866615vw, 5rem);
  }
}

@supports not (
  gap: clamp(0.9375rem, -11.0555919291rem + 19.3440866615vw, 5rem)
) {
  .top-header__left {
    gap: calc(0.9375rem + 4.0625 * (100vw - 61.99875rem) / 21.00125);
  }
}

.top-header__logo {
  z-index: 6;
}

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

@supports (gap: clamp(0.625rem, -6.3863460508rem + 11.3088506637vw, 3rem)) {
  .top-header__right {
    gap: clamp(0.625rem, -6.3863460508rem + 11.3088506637vw, 3rem);
  }
}

@supports not (gap: clamp(0.625rem, -6.3863460508rem + 11.3088506637vw, 3rem)) {
  .top-header__right {
    gap: calc(0.625rem + 2.375 * (100vw - 61.99875rem) / 21.00125);
  }
}

.top-header__btn {
  color: #fff;
  font-weight: 300;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 0.5625rem;
  z-index: 6;
  -webkit-transition: color 0.3s;
  transition: color 0.3s;
}

.top-header__btn::before {
  content: "";
  background: url("../img/globe.svg") left no-repeat;
  display: block;
  width: 1rem;
  height: 0.9375rem;
}

.top-header__link {
  color: #fff;
  padding: 1rem 2rem;
  border-radius: 6px;
  text-transform: uppercase;
  display: inline-block;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  white-space: nowrap;
}

.top-header__language {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0.5rem;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.top-header__language::before {
  content: "";
  display: block;
  width: 0.9375rem;
  height: 0.9375rem;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 0.9375rem;
  flex: 0 0 0.9375rem;
  background: url("../img/globe.svg") 0 0 / contain no-repeat;
}

.top-header__sub-list {
  margin: 5px 0 0 0;
  position: absolute;
  top: 100%;
  width: 100%;
  left: 0;
  z-index: 2;
  background-color: #fff;
  padding: 15px;
  border-radius: 10px;
  -webkit-box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
}

.menu__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  row-gap: 1.875rem;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

@supports (
  (-moz-column-gap: clamp(0.9375rem, -5.1513005178rem + 9.8208439974vw, 3rem))
    or (column-gap: clamp(0.9375rem, -5.1513005178rem + 9.8208439974vw, 3rem))
) {
  .menu__list {
    -webkit-column-gap: clamp(
      0.9375rem,
      -5.1513005178rem + 9.8208439974vw,
      3rem
    );
    -moz-column-gap: clamp(0.9375rem, -5.1513005178rem + 9.8208439974vw, 3rem);
    column-gap: clamp(0.9375rem, -5.1513005178rem + 9.8208439974vw, 3rem);
  }
}

@supports not (
  (-moz-column-gap: clamp(0.9375rem, -5.1513005178rem + 9.8208439974vw, 3rem))
    or (column-gap: clamp(0.9375rem, -5.1513005178rem + 9.8208439974vw, 3rem))
) {
  .menu__list {
    -webkit-column-gap: calc(
      0.9375rem + 2.0625 * (100vw - 61.99875rem) / 21.00125
    );
    -moz-column-gap: calc(
      0.9375rem + 2.0625 * (100vw - 61.99875rem) / 21.00125
    );
    column-gap: calc(0.9375rem + 2.0625 * (100vw - 61.99875rem) / 21.00125);
  }
}

.menu__link {
  color: #fff;
  line-height: 130%;
  position: relative;
  display: inline-block;
}

.menu__link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0rem;
  height: 0.0625rem;
  -webkit-transition: width 0.3s;
  transition: width 0.3s;
  background-color: #22c96a;
}

.bottom-menu__copy:not(:last-child) {
  margin-bottom: 12px;
}

.bottom-menu__text:not(:last-child) {
  margin-bottom: 12px;
}

.icon-menu {
  display: none;
}

.footer {
  background-color: #141414;
  padding-top: 5rem;
  color: #9ba1a6;
}

.footer__logo {
  display: inline-block;
}

.footer__logo:not(:last-child) {
  margin-bottom: 64px;
}

.footer__text {
  font-size: 0.75rem;
  line-height: 150%;
}

.footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding: 2rem 0;
  margin-top: 4rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 0.75rem;
  font-size: 0.875rem;
  font-weight: 300;
  line-height: 150%;
}

.footer__link {
  -webkit-transition: color 0.3s;
  transition: color 0.3s;
}

.no-webp .hero {
  background: url("../img/bg.jpg") center/cover no-repeat;
}

.hero {
  min-height: 100vh;
  position: relative;
  z-index: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.hero::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: -1;
  background-color: rgba(20, 20, 20, 0.6);
}

.hero__container {
  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: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-flex: 1;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}

.hero__body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  padding: 6.25rem 0;
}

.hero__block {
  text-align: center;
  max-width: 57.5625rem;
}

.hero__title {
  line-height: 110%;
  color: #fff;
  font-family: "Cormorant Garamond";
}

@supports (font-size: clamp(2rem, 0.8888888889rem + 5.5555555556vw, 5.5rem)) {
  .hero__title {
    font-size: clamp(2rem, 0.8888888889rem + 5.5555555556vw, 5.5rem);
  }
}

@supports not (
  font-size: clamp(2rem, 0.8888888889rem + 5.5555555556vw, 5.5rem)
) {
  .hero__title {
    font-size: calc(2rem + 3.5 * (100vw - 20rem) / 63);
  }
}

.hero__title:not(:last-child) {
  margin-bottom: 40px;
}

.hero__text {
  font-weight: 300;
  line-height: 150%;
  color: #fff;
  max-width: 34rem;
  margin: 0px auto;
}

@supports (font-size: clamp(0.875rem, 0.8353174603rem + 0.1984126984vw, 1rem)) {
  .hero__text {
    font-size: clamp(0.875rem, 0.8353174603rem + 0.1984126984vw, 1rem);
  }
}

@supports not (
  font-size: clamp(0.875rem, 0.8353174603rem + 0.1984126984vw, 1rem)
) {
  .hero__text {
    font-size: calc(0.875rem + 0.125 * (100vw - 20rem) / 63);
  }
}

.hero__text:not(:last-child) {
  margin-bottom: 40px;
}

.hero__slider {
  padding: 1rem 0;
  position: relative;
  z-index: 1;
}

.hero__slider::before {
  content: "";
  position: absolute;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  top: 0;
  left: 0;
  height: 100%;
  background-color: #141414;
  z-index: -1;
}

.hero__slide {
  background-color: #141414;
}

.slide-hero {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 1.875rem;
  border-left: 1px solid rgba(255, 255, 255, 0.1);
  border-right: 1px solid rgba(255, 255, 255, 0.1);
  padding: 0.21875rem 1rem;
}

.slide-hero__name {
  font-weight: 600;
  font-size: 0.6875rem;
  color: #fff;
  line-height: 127%;
}

.slide-hero__name:not(:last-child) {
  margin-bottom: 4px;
}

.slide-hero__value {
  font-size: 0.625rem;
  line-height: 142%;
  color: #707d89;
}

.slide-hero__percent {
  font-size: 0.625rem;
  font-weight: 600;
  line-height: 137%;
  color: #cd2b31;
}

.slide-hero__percent_green {
  color: #299764;
  font-size: 0.6875rem;
  line-height: 130%;
}

.services__title:not(:last-child) {
  margin-bottom: 40px;
}

.services__body {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 1.5rem 1fr 1.5rem 1fr;
  grid-template-columns: repeat(3, 1fr);
  -ms-grid-rows: auto 1.5rem auto;
  grid-template-areas: "item-1 item-2 item-2" "item-3 item-4 item-5";
  gap: 1.5rem;
}

.item-services {
  padding: 2rem 2.5rem 3.6875rem;
}

.item-services_1 {
  -ms-grid-row: 1;
  -ms-grid-column: 1;
  grid-area: item-1;
}

.item-services_2 {
  -ms-grid-row: 1;
  -ms-grid-column: 3;
  -ms-grid-column-span: 3;
  grid-area: item-2;
}

.item-services_3 {
  -ms-grid-row: 3;
  -ms-grid-column: 1;
  grid-area: item-3;
}

.item-services_4 {
  -ms-grid-row: 3;
  -ms-grid-column: 3;
  grid-area: item-4;
}

.item-services_5 {
  -ms-grid-row: 3;
  -ms-grid-column: 5;
  grid-area: item-5;
}

.item-services__number {
  font-weight: 300;
  font-size: 0.875rem;
  line-height: 150%;
  color: #707d89;
  display: inline-block;
}

.item-services__number:not(:last-child) {
  margin-bottom: 32px;
}

.item-services__title {
  font-family: "Cormorant Garamond";
  line-height: 130%;
}

@supports (font-size: clamp(1.25rem, 1.0119047619rem + 1.1904761905vw, 2rem)) {
  .item-services__title {
    font-size: clamp(1.25rem, 1.0119047619rem + 1.1904761905vw, 2rem);
  }
}

@supports not (
  font-size: clamp(1.25rem, 1.0119047619rem + 1.1904761905vw, 2rem)
) {
  .item-services__title {
    font-size: calc(1.25rem + 0.75 * (100vw - 20rem) / 63);
  }
}

.item-services__title:not(:last-child) {
  margin-bottom: 16px;
}

.item-services__text {
  font-size: 1rem;
  font-weight: 300;
  line-height: 150%;
  max-width: 37.5rem;
}

.who-we__title:not(:last-child) {
  margin-bottom: 32px;
}

.who-we__text {
  max-width: 67.25rem;
  font-size: 1rem;
  font-weight: 300;
  margin: 0px auto;
  line-height: 150%;
  text-align: center;
}

.who-we__text:not(:last-child) {
  margin-bottom: 64px;
}

.who-we__image-ibg {
  padding-bottom: 37.037037037%;
}

.income-investments__title:not(:last-child) {
  margin-bottom: 40px;
}

.income-investments__body {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 1fr;
  grid-template-columns: 1fr 1fr;
  gap: 0.9375rem;
}

.income-investments__text {
  font-weight: 300;
  line-height: 150%;
}

.income-investments__text:not(:last-child) {
  margin-bottom: 16px;
}

.income-investments__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 1rem;
  border-bottom: 1px solid #d2dae1;
}

.income-investments__item:not(:first-child) {
  padding: 1.5rem 0;
}

.income-investments__item:first-child {
  padding-bottom: 1.5rem;
}

.income-investments__percent {
  font-size: 3rem;
  font-family: "Cormorant Garamond";
}

.income-investments__small-text {
  margin-top: 1.5rem;
  font-weight: 300;
  font-size: 0.875rem;
  color: #707d89;
  line-height: 150%;
}

.table__container {
  width: 100%;
  margin: 0 auto;
  overflow-x: auto; /* Добавляем горизонтальную прокрутку */
}

.text__svg__table {
  display: flex;
  align-items: center;
  position: relative;
  font-weight: bold;
  margin-bottom: 10px;
}

.text__table {
  position: absolute;
  margin-left: 33px;
  font-size: 21px;
}

.text__table-ru {
  position: absolute;
  margin-left: 15px;
  font-size: 15px;
}

.performance__table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 10px;
}

.performance__table th,
.performance__table td {
  padding: 10px;
  text-align: center;
  border: 1px solid #ddd;
}

.performance__table thead th {
  background-color: #22c96a;
  color: white;
}

.performance__table tbody tr:nth-child(odd) {
  background-color: #f9f9f9;
}

.performance__table tbody tr:nth-child(even) {
  background-color: #ffffff;
}

.performance__table tbody tr td:first-child {
  font-weight: bold;
  background-color: #e5f9e7;
}

.performance__table tbody tr td:nth-last-child(-n + 2) {
  font-weight: bold;
  background-color: #e5f9e7;
}

@media (max-width: 1300px) {
  .text__table-ru {
    position: absolute;
    margin-left: 5px;
    font-size: 12px;
  }

  .text__table {
    position: absolute;
    margin-left: 33px;
    font-size: 16px;
  }
}

@media (max-width: 1030px) {
  .text__table-ru {
    position: absolute;
    margin-left: 5px;
    font-size: 10px;
  }

  .text__table {
    position: absolute;
    margin-left: 25px;
    font-size: 13px;
  }

  .performance__table {
  }
}

@media (max-width: 850px) {
  .text__table-ru {
    position: absolute;
    margin-left: 5px;
    font-size: 8px;
  }

  .text__table {
    position: absolute;
    margin-left: 19px;
    font-size: 12px;
  }
}

@media (max-width: 708px) {
  .text__table-ru {
    position: absolute;
    margin-left: 5px;
    font-size: 6px;
  }


  .text__table {
    position: absolute;
    margin-left: 10px;
    font-size: 10px;
  }
}

@media (max-width: 550px) {
  .text__table-ru {
    position: absolute;
    margin-left: 5px;
    font-size: 3px;
    flex-wrap: wrap;
  }

  .text__table {
    position: absolute;
    margin-left: 10px;
    font-size: 7px;
  }

}


@media (max-width: 430px) {
  
  .text__table {
    position: absolute;
    margin-left: 5px;
    font-size: 5px;
  }

}

.comparison__title:not(:last-child) {
  margin-bottom: 64px;
}

.comparison__body {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr) [4];
  grid-template-columns: repeat(4, 1fr);
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: end;
}

@supports (gap: clamp(2rem, -3.9028802666rem + 9.5215424899vw, 4rem)) {
  .comparison__body {
    gap: clamp(2rem, -3.9028802666rem + 9.5215424899vw, 4rem);
  }
}

@supports not (gap: clamp(2rem, -3.9028802666rem + 9.5215424899vw, 4rem)) {
  .comparison__body {
    gap: calc(2rem + 2 * (100vw - 61.995rem) / 21.005);
  }
}

.item-comparison__percent {
  font-family: "Cormorant Garamond";
  line-height: 150%;
  display: block;
}

@supports (
  font-size: clamp(1.25rem, -0.2257200667rem + 2.3803856225vw, 1.75rem)
) {
  .item-comparison__percent {
    font-size: clamp(1.25rem, -0.2257200667rem + 2.3803856225vw, 1.75rem);
  }
}

@supports not (
  font-size: clamp(1.25rem, -0.2257200667rem + 2.3803856225vw, 1.75rem)
) {
  .item-comparison__percent {
    font-size: calc(1.25rem + 0.5 * (100vw - 61.995rem) / 21.005);
  }
}

.item-comparison__block-diagram {
  width: 100%;
  background-color: #22c96a;
  display: block;
  border-radius: 6px;
}

.item-comparison__block-diagram_1 {
  height: 3.125rem;
}

.item-comparison__block-diagram_2 {
  height: 4.375rem;
}

.item-comparison__block-diagram_3 {
  height: 5rem;
}

.item-comparison__block-diagram_4 {
  height: 15rem;
}

.item-comparison__info {
  font-weight: 300;
  line-height: 150%;
  min-height: 2.5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

@supports (font-size: clamp(0.875rem, 0.5060699833rem + 0.5950964056vw, 1rem)) {
  .item-comparison__info {
    font-size: clamp(0.875rem, 0.5060699833rem + 0.5950964056vw, 1rem);
  }
}

@supports not (
  font-size: clamp(0.875rem, 0.5060699833rem + 0.5950964056vw, 1rem)
) {
  .item-comparison__info {
    font-size: calc(0.875rem + 0.125 * (100vw - 61.995rem) / 21.005);
  }
}

.item-comparison__info_big {
  font-family: "Cormorant Garamond";
}

@supports (
  font-size: clamp(1.25rem, -0.2257200667rem + 2.3803856225vw, 1.75rem)
) {
  .item-comparison__info_big {
    font-size: clamp(1.25rem, -0.2257200667rem + 2.3803856225vw, 1.75rem);
  }
}

@supports not (
  font-size: clamp(1.25rem, -0.2257200667rem + 2.3803856225vw, 1.75rem)
) {
  .item-comparison__info_big {
    font-size: calc(1.25rem + 0.5 * (100vw - 61.995rem) / 21.005);
  }
}

.calculator__title:not(:last-child) {
  margin-bottom: 64px;
}

.calculator__body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 1.5625rem;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
}

.calculator__text-item {
  line-height: 150%;
}

.calculator__item:not(:last-child) {
  margin-bottom: 40px;
}

.calculator__right {
  padding: 3rem;
  border: 1px solid #d2dae1;
  border-radius: 6px;
}

.calculator__title-small {
  font-family: "Cormorant Garamond";
  font-size: 2rem;
  line-height: 130%;
}

.calculator__title-small:not(:last-child) {
  margin-bottom: 32px;
}

.calculator__block-total:not(:last-child) {
  margin-bottom: 32px;
}

.calculator__right-item {
  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;
  justify-content: space-between;
  gap: 0.625rem;
}

.calculator__right-item:not(:last-child) {
  margin-bottom: 16px;
}

.calculator__info-text {
  font-size: 0.875rem;
  font-weight: 300;
  line-height: 150%;
  color: #707d89;
}

.calculator__total {
  font-family: "Cormorant Garamond";
  line-height: 130%;
  font-size: 3rem;
}

.calculator__link {
  width: 100%;
}

.item-calculator {
  overflow: hidden;
}

.item-calculator__options {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1rem;
  margin-top: 0.625rem;
}

.item-calculator__label {
  font-weight: 300;
  font-size: 0.875rem;
  line-height: 150%;
  color: #707d89;
  display: block;
}

.item-calculator__label:not(:last-child) {
  margin-bottom: 6px;
}

.item-calculator__rate {
  font-size: 2rem;
  font-family: "Cormorant Garamond";
  line-height: 130%;
}

.item-calculator__slider-container input[type="range"] {
  width: 100%;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: transparent;
}

.item-calculator__slider-container
  input[type="range"]::-webkit-slider-runnable-track {
  width: 100%;
  height: 2px;
  background: #d2dae1;
  border-radius: 5px;
  cursor: pointer;
}

.item-calculator__slider-container input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 16px;
  height: 16px;
  background: #22c96a;
  border-radius: 50%;
  cursor: pointer;
  margin-top: -6px;
  /* Half the thumb height to align it in the center */
  -webkit-box-shadow: calc(-100vmax - 16px) 0 0 100vmax #22c96a;
  box-shadow: calc(-100vmax - 16px) 0 0 100vmax #22c96a;
  clip-path: polygon(
    100% 0,
    2px 0,
    0 7px,
    -100vmax 7px,
    -100vmax 11px,
    0 8px,
    2px 100%,
    100% 100%
  );
}

.item-calculator__slider-container
  input[type="range"]:focus::-webkit-slider-runnable-track {
  background: #d3d3d3;
}

.item-calculator__slider-labels {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 0.9375rem;
  margin-top: 0.625rem;
}

.item-calculator__slider-labels span {
  font-size: 0.875rem;
  font-weight: 300;
  line-height: 150%;
  color: #707d89;
}

.item-calculator__amount-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 0.75rem;
}

.item-calculator__amount-wrap:not(:last-child) {
  margin-bottom: 16px;
}

.item-calculator__slider-value {
  font-size: 2rem;
  font-family: "Cormorant Garamond";
  line-height: 130%;
}

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

.steps__title {
  margin: 0px auto;
}

.steps__title:not(:last-child) {
  margin-bottom: 64px;
}

.steps__body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  z-index: 1;
}

@supports (gap: clamp(1.875rem, -13.2547467413rem + 24.4033093268vw, 7rem)) {
  .steps__body {
    gap: clamp(1.875rem, -13.2547467413rem + 24.4033093268vw, 7rem);
  }
}

@supports not (
  gap: clamp(1.875rem, -13.2547467413rem + 24.4033093268vw, 7rem)
) {
  .steps__body {
    gap: calc(1.875rem + 5.125 * (100vw - 61.99875rem) / 21.00125);
  }
}

.steps__body:not(:last-child) {
  margin-bottom: 64px;
}

.steps__body::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 0.0625rem;
  top: 14px;
  left: 0rem;
  border-top: 1px dashed #d2dae1;
  z-index: -1;
}

.steps__decor {
  position: absolute;
  top: 14px;
  z-index: -1;
  border-top: 0.1px dashed #d2dae1;
}

.steps__decor_left {
  width: 2.125rem;
  left: -30px;
}

.steps__decor_right {
  width: 2.125rem;
  right: -30px;
}

.steps__link {
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  align-self: center;
}

.item-steps__decor {
  z-index: 1;
}

.item-steps__decor span {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 1.875rem;
  height: 1.875rem;
  border-radius: 50%;
  border: 1px solid #d2dae1;
  background-color: #fff;
}

.item-steps__decor span::after {
  content: "";
  width: 0.625rem;
  height: 0.625rem;
  border-radius: 50%;
  background-color: #22c96a;
  display: block;
}

.item-steps__decor:not(:last-child) {
  margin-bottom: 40px;
}

.item-steps__title {
  font-size: 2rem;
  font-family: "Cormorant Garamond";
  line-height: 130%;
}

.item-steps__title:not(:last-child) {
  margin-bottom: 16px;
}

.item-steps__text {
  font-weight: 300;
  line-height: 150%;
}

.sources__title:not(:last-child) {
  margin-bottom: 40px;
}

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

@supports (gap: clamp(1.5625rem, -8.585500863rem + 16.368073329vw, 5rem)) {
  .sources__row {
    gap: clamp(1.5625rem, -8.585500863rem + 16.368073329vw, 5rem);
  }
}

@supports not (gap: clamp(1.5625rem, -8.585500863rem + 16.368073329vw, 5rem)) {
  .sources__row {
    gap: calc(1.5625rem + 3.4375 * (100vw - 61.99875rem) / 21.00125);
  }
}

.sources__row:not(:last-child) {
  border-bottom: 1px solid #d2dae1;
  padding-bottom: 2rem;
}

.sources__row:not(:first-child) {
  padding-top: 2rem;
}

.row-sources__left {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 1.5rem;
}

.row-sources__number {
  font-weight: 300;
  font-size: 0.875rem;
  line-height: 150%;
  color: #707d89;
}

.row-sources__title {
  font-size: 2rem;
  font-family: "Cormorant Garamond";
  line-height: 130%;
}

.row-sources__text {
  font-weight: 300;
  line-height: 150%;
}

.reach__body {
  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: center;
  -ms-flex-align: center;
  align-items: center;
}

.reach__title {
  max-width: 51.25rem;
  margin: 0px auto;
}

.reach__title:not(:last-child) {
  margin-bottom: 32px;
}

.reach__title span {
  display: block;
}

@media (min-width: 29.99875em) {
  .top-header__link-mob {
    display: none;
  }

  .top-header__link {
    border: 1px solid #fff;
  }

  .menu__bottom {
    display: none;
  }
}

@media (min-width: 37.5em) {
  .item-comparison {
    text-align: center;
  }

  .item-comparison__percent:not(:last-child) {
    margin-bottom: 24px;
  }

  .item-comparison__info {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin-top: 1.5rem;
  }
}

@media (min-width: 61.99875em) {
  .footer__bottom {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }

  .income-investments__text {
    max-width: 34.375rem;
  }

  .calculator__left {
    -webkit-box-flex: 0;
    -ms-flex: 0 1 39.75rem;
    flex: 0 1 39.75rem;
  }

  .calculator__right {
    -webkit-box-flex: 0;
    -ms-flex: 0 1 32.875rem;
    flex: 0 1 32.875rem;
  }

  .steps__title span {
    display: block;
  }

  .steps__item {
    -webkit-box-flex: 0;
    -ms-flex: 0 1 20.5rem;
    flex: 0 1 20.5rem;
  }

  .row-sources__left {
    -webkit-box-flex: 0;
    -ms-flex: 0 1 36.25rem;
    flex: 0 1 36.25rem;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }

  .row-sources__text {
    -webkit-box-flex: 0;
    -ms-flex: 0 1 39.75rem;
    flex: 0 1 39.75rem;
  }
}

@media (max-width: 61.99875em) {
  .link {
    font-size: 0.75rem;
  }

  .section {
    padding: 4rem 0;
  }

  .top-header__left {
    gap: inherit;
  }

  .top-header__right {
    gap: inherit;
  }

  .top-header__right {
    gap: 3rem;
  }

  .top-header__btn {
    font-size: 0.875rem;
  }

  .top-header__link {
    font-size: 0.75rem;
  }

  .menu__list {
    -webkit-column-gap: inherit;
    -moz-column-gap: inherit;
    column-gap: inherit;
  }

  .menu__list {
    -webkit-column-gap: 4rem;
    -moz-column-gap: 4rem;
    column-gap: 4rem;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 1.5rem 0;
  }

  .menu__link {
    font-size: 0.875rem;
  }

  .footer {
    padding-top: 3.875rem;
  }

  .footer__logo:not(:last-child) {
    margin-bottom: 40px;
  }

  .footer__text {
    font-size: 0.625rem;
  }

  .footer__bottom {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    margin-top: 2.5rem;
    font-size: 0.75rem;
    padding: 2rem 0 2.5rem;
  }

  .hero__body {
    padding: 12.5rem 0 6.25rem;
  }

  .hero__title:not(:last-child) {
    margin-bottom: 32px;
  }

  .hero__text:not(:last-child) {
    margin-bottom: 32px;
  }

  .services__body {
    grid-template-areas: "item-1 item-2" "item-3 item-4" "item-5 item-5";
    -ms-grid-columns: (1fr) [2];
    grid-template-columns: repeat(2, 1fr);
  }

  .item-services {
    padding: 1.5rem 2rem 2rem;
    min-height: 15rem;
  }

  .item-services__text {
    font-size: 0.875rem;
    max-width: 26.4375rem;
  }

  .who-we__text {
    font-size: 0.875rem;
  }

  .who-we__text:not(:last-child) {
    margin-bottom: 48px;
  }

  .who-we__image-ibg {
    padding-bottom: 43.037037%;
  }

  .income-investments__body {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .income-investments__text {
    font-size: 0.875rem;
  }

  .income-investments__percent {
    font-size: 2rem;
  }

  .income-investments__small-text {
    font-size: 0.75rem;
  }

  .comparison__title:not(:last-child) {
    margin-bottom: 40px;
  }

  .comparison__body {
    gap: 2rem;
  }

  .item-comparison__percent {
    font-size: 1.25rem;
  }

  .item-comparison__info {
    font-size: 0.875rem;
  }

  .item-comparison__info_big {
    font-size: 1.25rem;
  }

  .calculator__title:not(:last-child) {
    margin-bottom: 40px;
  }

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

  .calculator__text-item {
    font-size: 0.875rem;
  }

  .calculator__left {
    width: 100%;
  }

  .calculator__right {
    width: 100%;
  }

  .calculator__title-small {
    font-size: 1.5rem;
  }

  .calculator__info-text {
    font-size: 0.75rem;
  }

  .calculator__total {
    font-size: 2rem;
  }

  .item-calculator__slider-labels span {
    font-size: 0.75rem;
  }

  .item-calculator__slider-value {
    font-size: 1.5rem;
  }

  .steps__title:not(:last-child) {
    margin-bottom: 40px;
  }

  .steps__body {
    gap: inherit;
  }

  .steps__body {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    row-gap: 2.5rem;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    text-align: center;
  }

  .steps__body::after {
    display: none;
  }

  .steps__body:not(:last-child) {
    margin-bottom: 40px;
  }

  .steps__decor {
    display: none;
  }

  .item-steps__decor {
    display: none;
  }

  .item-steps__title {
    font-size: 1.5rem;
  }

  .item-steps__text {
    font-size: 0.875rem;
  }

  .sources__row {
    gap: inherit;
  }

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

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

  .row-sources__number {
    font-size: 0.75rem;
  }

  .row-sources__title {
    font-size: 1.5rem;
  }

  .row-sources__text {
    font-size: 0.875rem;
  }

  .item-services_1 {
    -ms-grid-row: 1;
    -ms-grid-column: 1;
  }

  .item-services_2 {
    -ms-grid-row: 1;
    -ms-grid-column: 2;
    -ms-grid-column-span: 1;
  }

  .item-services_3 {
    -ms-grid-row: 2;
    -ms-grid-column: 1;
  }

  .item-services_4 {
    -ms-grid-row: 2;
    -ms-grid-column: 2;
  }

  .item-services_5 {
    -ms-grid-row: 3;
    -ms-grid-column: 1;
    -ms-grid-column-span: 2;
  }
}

@media (max-width: 61.995em) {
  .comparison__body {
    gap: inherit;
  }

  .item-comparison__percent {
    font-size: inherit;
  }

  .item-comparison__info {
    font-size: inherit;
  }

  .item-comparison__info_big {
    font-size: inherit;
  }
}

@media (max-width: 47.99875em) {
  .section {
    padding: 3rem 0;
  }

  .top-header__right {
    gap: 1.25rem;
  }

  .menu__list {
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-column-gap: 1.5625rem;
    -moz-column-gap: 1.5625rem;
    column-gap: 1.5625rem;
  }
}

@media (max-width: 37.5em) {
  .comparison__body {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .item-comparison {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
    -ms-flex-direction: row-reverse;
    flex-direction: row-reverse;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
  }

  .item-comparison:first-child {
    -webkit-box-ordinal-group: 5;
    -ms-flex-order: 4;
    order: 4;
  }

  .item-comparison:nth-child(2) {
    -webkit-box-ordinal-group: 4;
    -ms-flex-order: 3;
    order: 3;
  }

  .item-comparison:nth-child(3) {
    -webkit-box-ordinal-group: 3;
    -ms-flex-order: 2;
    order: 2;
  }

  .item-comparison:nth-child(4) {
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
  }

  .item-comparison__wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }

  .item-comparison__block-diagram {
    height: 1.75rem;
  }

  .item-comparison__block-diagram_1 {
    width: 2.1875rem;
  }

  .item-comparison__block-diagram_2 {
    width: 3rem;
  }

  .item-comparison__block-diagram_3 {
    width: 3.4375rem;
  }

  .item-comparison__block-diagram_4 {
    width: 10.375rem;
  }
}

@media (max-width: 29.99875em) {
  .item-calculator__slider-container input[type="range"]::-webkit-slider-thumb {
    width: 20px;
    height: 20px;
    margin-top: -8px;
    -webkit-box-shadow: calc(-100vmax - 20px) 0 0 100vmax #22c96a;
    box-shadow: calc(-100vmax - 20px) 0 0 100vmax #22c96a;
    clip-path: polygon(
      100% 0,
      2px 0,
      0 7px,
      -100vmax 7px,
      -100vmax 11px,
      0 11px,
      2px 100%,
      100% 100%
    );
  }
  .header__top {
    min-height: 4.5rem;
  }

  .top-header__link-pc {
    display: none;
  }

  .top-header__link {
    background-color: #22c96a;
    width: 100%;
    text-align: center;
  }

  .menu::before {
    content: "";
    position: fixed;
    width: 100%;
    height: 72px;
    top: 0;
    left: 0;
    -webkit-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
    background-color: #141414;
    z-index: 5;
    -webkit-transform: translate(-100%, 0);
    -ms-transform: translate(-100%, 0);
    transform: translate(-100%, 0);
    -webkit-transition: -webkit-transform 0.3s;
    transition: -webkit-transform 0.3s;
    transition: transform 0.3s;
    transition: transform 0.3s, -webkit-transform 0.3s;
  }

  .menu-open .menu::before {
    -webkit-transform: translate(0, 0);
    -ms-transform: translate(0, 0);
    transform: translate(0, 0);
  }

  .menu__wrap {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #141414;
    z-index: 4;
    overflow: auto;
    padding: 6rem 0.9375rem 3.125rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    row-gap: 1.25rem;
    -webkit-transform: translate(-100%, 0);
    -ms-transform: translate(-100%, 0);
    transform: translate(-100%, 0);
    -webkit-transition: -webkit-transform 0.3s;
    transition: -webkit-transform 0.3s;
    transition: transform 0.3s;
    transition: transform 0.3s, -webkit-transform 0.3s;
  }

  .menu-open .menu__wrap {
    -webkit-transform: translate(0, 0);
    -ms-transform: translate(0, 0);
    transform: translate(0, 0);
  }

  .menu__body {
    -webkit-box-flex: 1;
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
  }

  .menu__list {
    border-top: none;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    row-gap: 2rem;
  }

  .menu__list:not(:last-child) {
    margin-bottom: 3rem;
  }

  .menu__link {
    font-size: 1.125rem;
  }

  .menu__bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 2rem;
    color: #9ba1a6;
    font-size: 12px;
    line-height: 150%;
    font-weight: 300;
  }

  .icon-menu {
    display: block;
    position: relative;
    width: 1.125rem;
    height: 0.875rem;
    cursor: pointer;
    z-index: 6;
  }

  .icon-menu span,
  .icon-menu::before,
  .icon-menu::after {
    content: "";
    -webkit-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
    right: 0;
    position: absolute;
    width: 100%;
    height: 0.125rem;
    background-color: #fff;
  }

  .icon-menu::before {
    top: 0;
  }

  .icon-menu::after {
    bottom: 0;
  }

  .icon-menu span {
    top: calc(50% - 0.0625rem);
  }

  .menu-open .icon-menu span {
    width: 0;
  }

  .menu-open .icon-menu::before {
    top: calc(50% - 0.0625rem);
    -webkit-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    transform: rotate(-45deg);
  }

  .menu-open .icon-menu::after {
    bottom: calc(50% - 0.0625rem);
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
  }

  .footer {
    padding-top: 3rem;
  }

  .footer__bottom {
    padding: 2rem 0;
  }

  .no-webp .hero {
    background: url("../img/bg-mob.jpg") center/cover no-repeat;
  }

  .hero__body {
    padding: 8.375rem 0 3.125rem;
  }

  .hero__title:not(:last-child) {
    margin-bottom: 24px;
  }

  .hero__text:not(:last-child) {
    margin-bottom: 24px;
  }

  .hero__link {
    width: 100%;
  }

  .services__title:not(:last-child) {
    margin-bottom: 32px;
  }

  .services__body {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    gap: 0.75rem;
    -ms-grid-rows: auto 0.75rem auto 0.75rem auto 0.75rem auto 0.75rem auto;
    grid-template-areas: "item-1" "item-2" "item-3" "item-4" "item-5";
  }

  .item-services {
    min-height: auto;
    padding: 1.5rem;
  }

  .item-services__number:not(:last-child) {
    margin-bottom: 24px;
  }

  .who-we__title:not(:last-child) {
    margin-bottom: 24px;
  }

  .who-we__image-ibg {
    padding-bottom: 74.037037%;
  }

  .income-investments__title:not(:last-child) {
    margin-bottom: 32px;
  }

  .income-investments__percent {
    font-size: 1.5rem;
  }

  .comparison__title:not(:last-child) {
    margin-bottom: 32px;
  }

  .item-comparison__percent {
    font-size: 1rem;
    text-align: right;
  }

  .item-comparison__info_big {
    font-size: 1rem;
  }

  .calculator__title:not(:last-child) {
    margin-bottom: 32px;
  }

  .calculator__body {
    gap: 1.5rem;
  }

  .calculator__right {
    padding: 1.5rem;
  }

  .calculator__title-small {
    font-size: 1.25rem;
  }

  .calculator__total {
    font-size: 1.5rem;
  }

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

  .item-calculator__label {
    font-size: 0.75rem;
  }

  .item-calculator__slider-value {
    font-size: 1.25rem;
  }

  .steps__title:not(:last-child) {
    margin-bottom: 32px;
  }

  .steps__body:not(:last-child) {
    margin-bottom: 32px;
  }

  .steps__link {
    width: 100%;
  }

  .item-steps__title {
    font-size: 1.25rem;
  }

  .sources__title:not(:last-child) {
    margin-bottom: 32px;
  }

  .sources__row:not(:last-child) {
    padding-bottom: 1.5rem;
  }

  .sources__row:not(:first-child) {
    padding-top: 1.5rem;
  }

  .row-sources__title {
    font-size: 1.25rem;
  }

  .item-services_1 {
    -ms-grid-row: 1;
    -ms-grid-column: 1;
  }

  .item-services_2 {
    -ms-grid-row: 3;
    -ms-grid-column: 1;
    -ms-grid-column-span: 1;
  }

  .item-services_3 {
    -ms-grid-row: 5;
    -ms-grid-column: 1;
  }

  .item-services_4 {
    -ms-grid-row: 7;
    -ms-grid-column: 1;
  }

  .item-services_5 {
    -ms-grid-row: 9;
    -ms-grid-column: 1;
    -ms-grid-column-span: 1;
  }
}

@media (any-hover: hover) {
  .select__option:hover {
    color: #22c96a;
  }

  .link:hover {
    background-color: rgba(34, 201, 106, 0.7);
  }

  .top-header__btn:hover {
    color: #22c96a;
  }

  .top-header__link:hover {
    color: #22c96a;
    border: 1px solid #22c96a;
  }

  .menu__link:hover::after {
    width: 100%;
  }

  .footer__link:hover {
    color: #22c96a;
  }
}

.webp .hero {
  background: url(../img/bg.webp) center/cover no-repeat;
}

@media (max-width: 29.99875em) {
  .webp .hero {
    background: url(../img/bg-mob.webp) center/cover no-repeat;
  }
}
