.hero {
  position: relative;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 150px 0 160px;
  overflow: hidden;
}
.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(10, 15, 36, 0.55) 0%,
    rgba(10, 15, 36, 0.15) 50%,
    rgba(10, 15, 36, 0.9) 100%
  );
  pointer-events: none;
}
.hero__inner {
  position: relative;
  z-index: 2;
}
.hero__content {
  max-width: 700px;
}
.hero__title {
  font-size: 64px;
  font-weight: 700;
  line-height: 1;
  text-transform: uppercase;
  margin: 0 0 18px;
  color: #ffffff;
  letter-spacing: 1px;
}
.hero__title .accent {
  color: #8be9fd;
}
.hero__subtitle {
  color: #d7dcec;
  font-size: 16px;
  margin: 0 0 28px;
  max-width: 420px;
}
.hero__btn {
  margin-top: 10px;
}

@media (min-width: 1440px) {
  .hero {
    background-size: 100% 100%;
  }
}

@media (max-width: 900px) {
  .hero {
    padding: 130px 0 180px;
  }
  .hero__title {
    font-size: 40px;
  }
  .hero__subtitle {
    font-size: 14px;
  }
}
@media (max-width: 600px) {
  .hero {
    padding: 120px 0 200px;
  }
  .hero__title {
    font-size: 32px;
  }
}
