@font-face {
  font-family: "Gilroy";
  src: url("fonts/Gilroy-Medium.woff2") format("woff2");
  font-weight: 500;
  font-style: normal;
}
@font-face {
  font-family: "Gilroy";
  src: url("fonts/Gilroy-Semibold.woff2") format("woff2");
  font-weight: 600;
  font-style: normal;
}
@font-face {
  font-family: "Inter";
  src: url("fonts/Inter-Regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: "Inter";
  src: url("fonts/Inter-Medium.woff2") format("woff2");
  font-weight: 500;
  font-style: normal;
}
@font-face {
  font-family: "Inter";
  src: url("fonts/Inter-SemiBold.woff2") format("woff2");
  font-weight: 600;
  font-style: normal;
}
@font-face {
  font-family: "Inter";
  src: url("fonts/Inter-Bold.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
}
:root {
  --header-height: 6.875rem;
  --white: #ffffff;
  --black: #1c1c1c;
  --grey200: #585757;
  --grey300: #969696;
  --orange: #ff640d;
  --green: #37ae35;
  --gradient-green: linear-gradient(0deg, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2)), #37ae35;
}

* a {
  text-decoration: none;
  color: inherit;
  cursor: pointer;
}

html {
  height: 100%;
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", sans-serif;
  color: var(--black);
}

.wrapper {
  min-height: 100%;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.content {
  flex: 1 1 auto;
}

.maintitle {
  font-size: 3rem;
  line-height: 3.75rem;
}
@media (max-width: 1399px) {
  .maintitle {
    font-size: 2.5rem;
    line-height: 3.3125rem;
  }
}
@media (max-width: 767px) {
  .maintitle {
    font-size: 2.25rem;
    line-height: 3rem;
  }
}
@media (max-width: 440px) {
  .maintitle {
    font-size: 1.5rem;
    line-height: 2rem;
  }
}

.title {
  font-size: 2.25rem;
  line-height: 3rem;
}
@media (max-width: 767px) {
  .title {
    font-size: 1.5rem;
    line-height: 2rem;
  }
}

.midtitle {
  font-size: 1.5rem;
  line-height: 2rem;
}
@media (max-width: 767px) {
  .midtitle {
    font-size: 1.25rem;
    line-height: 1.75rem;
  }
}

.subtitle {
  font-size: 1.25rem;
  line-height: 1.75rem;
}
@media (max-width: 767px) {
  .subtitle {
    font-size: 1rem;
    line-height: 1.5rem;
  }
}

.text {
  font-size: 1rem;
  line-height: 1.5rem;
}
@media (max-width: 767px) {
  .text {
    font-size: 0.875rem;
    line-height: 1.125rem;
  }
}

.text-orange {
  color: var(--orange);
}

.text-green {
  color: var(--green);
}

.btn__orange {
  text-align: center;
  background: var(--orange);
  font-family: var(--font-inter-bd);
  font-style: normal;
  font-weight: 700;
  font-size: 16px;
  line-height: 19px;
  color: var(--white);
  border-radius: 5px;
  border: none;
}

.btn__orange:active,
.btn__orange:hover {
  color: var(--white);
  background: linear-gradient(90deg, #ff640d 0%, #f8a70c 100%);
}

.btn__green {
  text-align: center;
  display: inline-block;
  text-decoration: none;
  color: var(--white);
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2)), #37ae35;
  border-radius: 4px;
  transition: opacity 0.2s ease-in-out;
  -webkit-transition: opacity 0.2s ease-in-out;
  -moz-transition: opacity 0.2s ease-in-out;
  -ms-transition: opacity 0.2s ease-in-out;
  -o-transition: opacity 0.2s ease-in-out;
}
.btn__green:active, .btn__green:hover {
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2)), #37ae35;
  color: var(--white);
  opacity: 0.8;
}

.header {
  position: relative;
  z-index: 1;
  height: var(--header-height);
  font-weight: 400;
  color: var(--white);
}
.header__main {
  padding: 2.5rem 0 1.875rem;
}
@media (max-width: 767px) {
  .header__main {
    padding: 0.9375rem 0.625rem;
  }
}
@media (max-width: 767px) {
  .header__top {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
}
.header__links {
  list-style-type: none;
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: end;
  align-items: center;
}
@media (max-width: 767px) {
  .header__links {
    margin-top: 0.625rem;
    justify-content: space-between;
  }
}
.header__link {
  font-weight: 400;
  padding: 0.5rem 1.5rem;
  margin-left: 1.875rem;
  transition: all 0.2s ease-in-out;
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -ms-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
}
.header__link:active, .header__link:hover {
  color: var(--orange);
}
@media (max-width: 991px) {
  .header__link {
    padding: 0.3125rem 0.9375rem;
    margin-left: 0.9375rem;
  }
}
@media (max-width: 767px) {
  .header__link {
    margin-left: 0;
  }
}
.header__login {
  font-weight: 600;
  font-size: 16px;
  line-height: 20px;
  letter-spacing: -0.01em;
  padding: 0.625rem 1.9375rem;
  margin-left: 1.875rem;
  border: 1px solid #ffffff;
  filter: drop-shadow(0px 1px 3px rgba(0, 0, 0, 0.15));
  -webkit-filter: drop-shadow(0px 1px 3px rgba(0, 0, 0, 0.15));
  border-radius: 6px;
  -webkit-border-radius: 6px;
  -moz-border-radius: 6px;
  -ms-border-radius: 6px;
  -o-border-radius: 6px;
  transition: all 0.2s ease-in-out;
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -ms-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
}
.header__login:active, .header__login:hover {
  color: var(--orange);
  border: 1px solid var(--orange);
}
@media (max-width: 991px) {
  .header__login {
    margin-left: 0.9375rem;
  }
}

.hero {
  position: relative;
  padding: calc(var(--header-height) + 4.375rem) 0 2.375rem;
  margin-top: calc(var(--header-height) * -1);
  background: url(img/main-bg.png) no-repeat;
  background-position: center;
  background-size: cover;
  color: var(--white);
}
@media (max-width: 767px) {
  .hero {
    padding: calc(var(--header-height) + 2.5rem) 0 1.875rem;
  }
}
.hero__main {
  position: relative;
  z-index: 1;
}
.hero__wrapper {
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 40%;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, #ffffff 100%);
}
.hero__block {
  padding: 1.25rem 1.875rem;
}
@media (max-width: 575px) {
  .hero__block {
    padding: 0.625rem 0;
  }
}
.hero__title {
  font-weight: 600;
  margin-bottom: 1.25rem;
}
.hero__subtitle {
  font-weight: 500;
  margin-bottom: 3.75rem;
}
.hero__btn {
  padding: 1.125rem 2.6875rem;
}
.hero__img {
  text-align: end;
  margin-top: -1.875rem;
}

.together {
  padding: 3.75rem 0;
}
@media (max-width: 767px) {
  .together {
    padding: 1.875rem 0;
  }
}
.together__title {
  font-weight: 500;
  margin-bottom: 2.5rem;
}
.together__subtitle {
  font-weight: 500;
  margin-bottom: 2.5rem;
  color: var(--grey200);
}
.together__items {
  margin-bottom: 5.3125rem;
}
.together__item {
  padding: 1.875rem;
  height: 100%;
  display: flex;
  flex-direction: column;
}
.together__number {
  font-weight: 600;
  margin-bottom: 0.625rem;
}
.together__info {
  font-weight: 400;
  color: var(--grey200);
  margin-bottom: 1.5625rem;
  flex: 1 1 auto;
}
.together .progress-bar {
  background-color: var(--orange);
}
.together__btn {
  padding: 1.125rem 1.4375rem;
}

.creating {
  padding: 3.75rem 0;
}
@media (max-width: 767px) {
  .creating {
    padding: 1.875rem 0;
  }
}
.creating__item {
  height: 100%;
  padding: 1.875rem 1rem 3rem;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.02), 0px 10px 30px rgba(0, 0, 0, 0.05);
  border-radius: 12px;
  -webkit-border-radius: 12px;
  -moz-border-radius: 12px;
  -ms-border-radius: 12px;
  -o-border-radius: 12px;
}
@media (max-width: 991px) {
  .creating__item {
    text-align: center;
  }
}
.creating__img {
  margin-bottom: 1.25rem;
}
.creating__subtitle {
  font-weight: 600;
  margin-bottom: 0.625rem;
}
.creating__text {
  font-weight: 400;
  color: var(--grey300);
}

.mytree {
  padding: 3.75rem 0;
}
@media (max-width: 767px) {
  .mytree {
    padding: 1.875rem 0;
  }
}
.mytree__title {
  font-weight: 600;
  margin-bottom: 0.625rem;
}
.mytree__subtitle {
  font-weight: 500;
  color: var(--grey200);
  margin-bottom: 3.75rem;
}
.mytree__btn {
  padding: 1.125rem 1.5rem;
}

.ecosystem {
  padding: 3.75rem 0;
}
@media (max-width: 767px) {
  .ecosystem {
    padding: 1.875rem 0;
  }
}
.ecosystem__title {
  font-weight: 500;
  margin-bottom: 0.625rem;
}
.ecosystem__subtitle {
  font-weight: 500;
  color: var(--grey300);
  margin-bottom: 2.5rem;
}
.ecosystem__items {
  row-gap: 1.875rem;
}
.ecosystem__item {
  height: 100%;
  padding: 1.875rem 1.25rem;
  border: 1px solid #e5e5e5;
  border-radius: 12px;
  -webkit-border-radius: 12px;
  -moz-border-radius: 12px;
  -ms-border-radius: 12px;
  -o-border-radius: 12px;
}
@media (max-width: 767px) {
  .ecosystem__item {
    text-align: center;
  }
}
.ecosystem__img {
  margin-bottom: 1.25rem;
}
.ecosystem__img-svg {
  width: 3rem;
  height: 3rem;
}
.ecosystem__head {
  font-weight: 500;
  margin-bottom: 0.625rem;
}
.ecosystem__text {
  font-weight: 400;
  color: var(--grey200);
}

.coord {
  padding: 3.75rem 0 0;
}
@media (max-width: 767px) {
  .coord {
    padding: 1.875rem 0 0;
  }
}
.coord__title {
  font-weight: 500;
  margin-bottom: 0.625rem;
}
.coord__subtitle {
  font-weight: 500;
  color: var(--grey300);
  margin-bottom: 2.5rem;
}
.coord__items {
  margin-bottom: 2.5rem;
}
.coord__item {
  padding: 1.875rem;
}
@media (max-width: 767px) {
  .coord__item {
    text-align: center;
  }
}
.coord__header {
  display: flex;
  align-items: center;
  margin-bottom: 0.5rem;
}
@media (max-width: 767px) {
  .coord__header {
    justify-content: center;
  }
}
.coord__img-svg {
  width: 2rem;
  height: 2rem;
  margin-right: 1rem;
}
.coord__plant-svg {
  width: 2.5rem;
  height: 2.5rem;
  margin-right: 1rem;
}
.coord__head {
  font-weight: 600;
}
.coord__text {
  font-weight: 400;
  color: var(--grey200);
}

.tariff {
  padding: 3.75rem 0;
  font-size: 1rem;
  line-height: 1.5rem;
}
@media (max-width: 767px) {
  .tariff {
    padding: 1.875rem 0;
  }
}
.tariff thead th:first-child {
  width: 50%;
}
.tariff thead th {
  padding: 1.25rem 1.5rem 3rem;
}
@media (max-width: 767px) {
  .tariff thead th {
    padding: 0.625rem 0.625rem 0.625rem;
  }
}
.tariff th,
.tariff td {
  font-weight: 400;
  padding: 1.25rem 1.5rem;
}
@media (max-width: 767px) {
  .tariff th,
  .tariff td {
    padding: 0.625rem 0.75rem;
  }
}
.tariff thead th {
  font-weight: 600;
}
.tariff td {
  text-align: center;
  vertical-align: middle;
}
.tariff__row {
  border-top: 1px solid #e5e5e5;
}
.tariff__row-orange {
  border-top: 1px solid #f29d79;
}
.tariff__check {
  width: 1.5rem;
}
.tariff__cost {
  vertical-align: middle;
}
.tariff__price {
  font-weight: 600;
  margin-bottom: 1.25rem;
}
.tariff__btn {
  padding: 0.5rem 0.75rem;
}

.steps {
  padding: 3.75rem 0;
}
@media (max-width: 767px) {
  .steps {
    padding: 1.875rem 0;
  }
}
.steps__title {
  font-weight: 500;
  margin-bottom: 1.25rem;
}
.steps__subtitle {
  font-weight: 400;
  margin-bottom: 2.5rem;
}
.steps__items {
  row-gap: 2.5rem;
}
.steps__item {
  padding: 0 1.5rem;
}
.steps__item-last {
  padding: 1.5rem;
}
.steps__header {
  display: flex;
  align-items: center;
  margin-bottom: 1.25rem;
}
.steps__img-svg {
  width: 3.125rem;
  height: 3.125rem;
  margin-right: 1.25rem;
}
.steps__divider {
  position: relative;
  width: 100%;
}
.steps__divider::after {
  position: absolute;
  content: "";
  left: 0;
  top: 50%;
  width: 100%;
  height: 1px;
  background-color: #000;
  opacity: 0.1;
}
.steps__btn {
  padding: 1.125rem 2.6875rem;
}

.company {
  padding: 3.75rem 0 7.5rem;
}
@media (max-width: 767px) {
  .company {
    padding: 1.875rem 3.75rem;
  }
}
.company__title {
  font-weight: 500;
  margin-bottom: 0.625rem;
}
.company__subtitle {
  font-weight: 500;
  color: var(--grey300);
  margin-bottom: 2.5rem;
}
.company .swiper {
  height: 18.75rem;
}
.company .swiper-wrapper {
  align-items: center;
}
.company .swiper-slide {
  text-align: center;
  width: 25.125rem;
  height: 16.625rem;
  transition: all 0.2s ease-in-out;
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -ms-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
}
.company .swiper-slide .swiper-slide-prev {
  margin-right: -20px;
}
.company .swiper-slide-active {
  width: 29.5rem;
  height: 18.75rem;
  z-index: 1;
  margin-right: -20px;
}
.company .swiper-slide-active .swiper__img {
  width: 6.25rem;
  height: 6.25rem;
}
.company .swiper-slide:nth-child(odd) {
  background: linear-gradient(180deg, rgba(28, 28, 28, 0.4) 0%, rgba(28, 28, 28, 0.2) 100%), url(img/slider1.jpg);
  background-position: center;
  background-size: cover;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.02), 0px 10px 30px rgba(0, 0, 0, 0.05);
  border-radius: 12px;
  -webkit-border-radius: 12px;
  -moz-border-radius: 12px;
  -ms-border-radius: 12px;
  -o-border-radius: 12px;
}
.company .swiper-slide:nth-child(even) {
  background: linear-gradient(180deg, rgba(28, 28, 28, 0.4) 0%, rgba(28, 28, 28, 0.2) 100%), url(img/slider2.jpg);
  background-position: center;
  background-size: cover;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.02), 0px 10px 30px rgba(0, 0, 0, 0.05);
  border-radius: 12px;
  -webkit-border-radius: 12px;
  -moz-border-radius: 12px;
  -ms-border-radius: 12px;
  -o-border-radius: 12px;
}
.company .swiper__item {
  padding: 1.875rem 1rem 3rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  color: var(--white);
}
.company .swiper__img {
  background-color: var(--white);
  width: 5rem;
  height: 5rem;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  margin-bottom: 1.25rem;
  transition: all 0.2s ease-in-out;
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -ms-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
}
.company .swiper__title {
  font-weight: 700;
  font-size: 0.875rem;
  line-height: 1.25rem;
  margin-bottom: 1.5rem;
}
.company .swiper__block {
  padding: 0 1.5rem;
}
.company .swiper__subtitle {
  font-weight: 600;
  margin-bottom: 0.25rem;
}
.company .swiper__info {
  font-weight: 500;
  font-size: 0.8125rem;
  line-height: 1.25rem;
}
.footer {
    padding: 3.75rem 0;
    background: #F7F7F7;
}
.footer__tel {
    font-weight: 600;
    font-size: 1rem;
    line-height: 1.625rem;
    color: var(--black);
}
.footer__link {
    font-size: 0.875rem;
    line-height: 1.125rem;
    color: var(--black);
}
.footer__tel:hover,
.footer__tel:visited,
.footer__link:hover,
.footer__link:visited {
    color: var(--black);
    text-decoration: underline;
}
@media (max-width:767px) {
    .footer {
        padding: 1.25rem 0;
    }
    .footer__text {
        font-size: 0.875rem;
        line-height: 1.125rem;
    }    
}
/* Modal */
.modal legend {
    font-size: 1rem;
}
.modal input.form-control {
    border-radius: 5px;
    width: 100%;
    height: 50px;
    padding: 0 15px 0 15px;
    outline: none;
    background: #f2f2f2;
    border: 2px solid #ff640d;
    box-shadow: none;
}
.form-check-input:checked {
    background-color: #ff640d;
    border-color: #ff640d;
}
.form-check-input:checked[type=checkbox] {
    background-image: url(data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3e%3cpath fill='none' stroke='%23fff' stroke-linecap='round' stroke-linejoin='round' stroke-width='3' d='m6 10 3 3 6-6'/%3e%3c/svg%3e);
}