.hero {
  position: relative;
  margin-top: 20px;
}
.hero__content {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding: 3rem 4rem 12rem;
  border-radius: 48px;
  background: var(--white) url("./images/bg.webp") center right/cover no-repeat;
  overflow: hidden;
}
@media (max-width: 991.98px) {
  .hero__content {
    padding: 4.8rem 3.2rem;
    border-radius: 0 3.2rem 3.2rem 0;
    background-position: center right 35%;
  }
}
@media (max-width: 767.98px) {
  .hero__content {
    display: block;
    padding: 3.2rem 2rem;
    border-radius: 0 2.4rem 2.4rem 0;
    background-position: center right 25%;
  }
}
.hero__main {
  width: min(100%, 58rem);
}
@media (max-width: 991.98px) {
  .hero__main {
    width: min(100%, 52rem);
  }
}
.hero__title {
  max-width: 57rem;
  margin: 3rem 0 1.8rem;
  color: var(--text-primary);
  font-size: 4.8rem;
  font-weight: var(--font-weight-bold);
  line-height: 1.14;
}
@media (max-width: 991.98px) {
  .hero__title {
    font-size: 4rem;
  }
}
@media (max-width: 767.98px) {
  .hero__title {
    font-size: 3.4rem;
  }
  .hero__title br {
    display: none;
  }
}
.hero__text {
  max-width: 42rem;
  margin: 0;
  color: var(--text-secondary);
  font-size: 1.6rem;
  line-height: 1.45;
}
@media (max-width: 767.98px) {
  .hero__text br {
    display: none;
  }
}
.hero__stats {
  display: flex;
  gap: 4.8rem;
  margin: 4.4rem 0 0;
  padding: 0;
}
@media (max-width: 767.98px) {
  .hero__stats {
    flex-wrap: wrap;
    gap: 2.4rem;
    margin-top: 3.2rem;
  }
}
.hero__stat {
  min-width: 8.4rem;
}
.hero__stat-value {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin: 0 0 0.4rem;
  color: var(--orange-500);
  font-size: 2.8rem;
  font-weight: var(--font-weight-bold);
  line-height: 1;
}
.hero__stat-icon {
  flex: 0 0 auto;
  color: var(--orange-500);
}
.hero__stat-label {
  margin: 0;
  color: var(--text-secondary);
  font-size: 1.6rem;
  line-height: 1.08;
}
.hero__button {
  align-self: flex-end;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 24rem;
  min-height: 3.8rem;
  margin: 0 1rem 5.6rem 3rem;
  padding: 0.8rem 2.4rem;
  border: 1px solid var(--orange-500);
  border-radius: var(--radius-pill);
  color: var(--orange-500);
  font-size: 1.4rem;
  font-weight: var(--font-weight-semibold);
  line-height: 1.2;
  text-align: center;
  transition: color 0.15s ease, background-color 0.15s ease;
}
.hero__button:hover, .hero__button:focus-visible {
  color: var(--white);
  background-color: var(--orange-500);
  text-decoration: none;
}
@media (max-width: 991.98px) {
  .hero__button {
    min-width: 20rem;
    margin-bottom: 3.2rem;
  }
}
@media (max-width: 767.98px) {
  .hero__button {
    width: 100%;
    min-width: 0;
    margin: 3.2rem 0 0;
  }
}

/*# sourceMappingURL=style.css.map */
