.hero {
  padding: 96px 16px;
  background: linear-gradient(to right bottom, #3182ed, #0da2e7);
  color: rgba(255, 255, 255, 0.9);
  text-align: center;
  font-family: ui-sans-serif, system-ui, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  font-size: 20px;
}

@media (max-width: 767px) {
  .hero .hero__container {
    max-width: 590px;
    margin: auto;
  }
}

.hero h1 {
  color: #fff;
  font-family: ui-sans-serif, system-ui, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
}

@media (max-width: 767px) {
  .hero h1 {
    font-size: 32px;
  }
}

.hero__subtitle {
  max-width: 675px;
  margin: 0 auto 40px;
}

.hero .hero__buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
}

@media (max-width: 640px) {
  .hero .hero__buttons {
    flex-direction: column;
    align-items: center;
  }
  .hero .hero__buttons .button {
    width: 100%;
    max-width: 515px;
  }
}

.hero .hero__button--white {
  background: #f1f5f9;
  color: #0f1729;
}

.hero .hero__button--white:hover {
  background: rgba(241, 245, 249, 0.8);
}

.hero .hero__button--transparent {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: white;
}

.hero .hero__button--transparent:hover {
  background: rgba(255, 255, 255, 0.2);
}

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