/* COLORS */
/* TYPOGRAPHY */
/* ---- MEDIA QUERIES ----- */
.hero {
  max-height: 83rem;
  aspect-ratio: 1920/830;
  width: 100%;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  position: relative;
}
.hero .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  padding: clamp(4rem, 6vw, 17.2rem) 0 clamp(4rem, 6vw, 8rem);
  width: 100%;
  text-align: center;
  position: relative;
  z-index: 2;
}
.hero .content {
  max-width: 73.6rem;
  margin: 0 auto;
  color: #fff;
}
.hero .heading-pill-container {
  margin: 0 0 3.2rem;
}
.hero .heading {
  margin: 0 0 2.4rem;
}
.hero .buttons {
  display: flex;
  gap: 1.6rem;
  justify-content: center;
  flex-wrap: wrap;
  margin: 4rem 0 0;
}
.hero .overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.3);
  z-index: 1;
}

@media (max-width: 768px) {
  .hero {
    aspect-ratio: 375/542;
    max-height: calc(100dvh - 13rem);
  }
  .hero .heading-pill-container {
    margin: 0 0 2.4rem;
  }
  .hero .heading {
    margin: 0 0 1.6rem;
  }
  .hero .buttons {
    gap: 1.6rem;
    flex-wrap: wrap;
  }
  .hero .buttons .button {
    width: 100%;
    max-width: 45rem;
  }
}