@media (hover: hover) {
  .key-number:hover .key-number__title {
    color: var(--color-green-1);
  }
}
.key-number__overline {
  padding-bottom: 8px;
  margin-bottom: 20px;
  display: block;
  border-bottom: var(--border-blue-6);
  font-size: var(--font-size-s);
  line-height: var(--line-height-s);
}
@media screen and (max-width: 1100px) {
  .key-number__overline {
    margin-bottom: 16px;
  }
}
.key-number__title {
  color: var(--color-green);
  transition: color var(--transition);
}
@media screen and (min-width: 1101px) {
  .key-number__title {
    margin-bottom: 24px;
    min-height: calc(var(--line-height-h2) * 2);
  }
}
.key-number__description {
  margin-top: auto;
}
@media screen and (max-width: 1100px) {
  .key-number__description {
    display: none;
  }
}.key-numbers {
  display: flex;
  gap: 40px;
}
@media screen and (max-width: 1100px) {
  .key-numbers {
    flex-direction: column;
  }
}
.key-numbers__item {
  flex: 1 1 25%;
}.hero {
  background-repeat: no-repeat;
  background-position: center top;
  background-size: 2040px;
}
@media screen and (max-width: 900px) {
  .hero {
    background-size: 1116px;
  }
}
.hero__top {
  max-width: 780px;
}
.hero__top:not(:last-child) {
  margin-bottom: 96px;
}
@media screen and (max-width: 900px) {
  .hero__top:not(:last-child) {
    margin-bottom: 64px;
  }
}
.hero__title {
  margin-bottom: 24px;
}
@media screen and (max-width: 900px) {
  .hero__title {
    margin-bottom: 16px;
  }
}
.hero__title._spread {
  margin-bottom: 40px;
}
@media screen and (max-width: 900px) {
  .hero__title._spread {
    margin-bottom: 24px;
  }
}
.hero__title._secondary {
  font-size: 48px;
  line-height: 48px;
}
@media screen and (max-width: 900px) {
  .hero__title._secondary {
    font-size: 32px;
    line-height: 32px;
  }
}
.hero__subtitle {
  margin-bottom: 24px;
}
@media screen and (max-width: 900px) {
  .hero__subtitle {
    margin-bottom: 16px;
  }
}
.hero__text:not(:last-child) {
  margin-bottom: 40px;
}
@media screen and (max-width: 900px) {
  .hero__text:not(:last-child) {
    margin-bottom: 24px;
  }
}
.hero__text._narrow {
  max-width: 520px;
}
.hero__cards, .hero__key-numbers {
  margin-bottom: 16px;
}
.hero__cards:not(:last-child), .hero__key-numbers:not(:last-child) {
  margin-bottom: 80px;
}
@media screen and (max-width: 900px) {
  .hero__cards:not(:last-child), .hero__key-numbers:not(:last-child) {
    margin-bottom: 64px;
  }
}
.hero__details {
  display: flex;
  gap: 24px;
}
@media screen and (max-width: 900px) {
  .hero__details {
    flex-direction: column;
    gap: 12px;
  }
}
.hero__details-item {
  font-size: var(--font-size-s);
  display: flex;
  align-items: center;
  gap: 2px;
}