/* COLORS */
/* TYPOGRAPHY */
/* ---- MEDIA QUERIES ----- */
.banner {
  position: relative;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  background-color: #EBEDE9;
  aspect-ratio: 1920/1256;
  max-height: 100vh;
  width: 100%;
}
.banner .container {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 3.2rem;
  height: 100%;
  max-width: 78.3rem;
  margin: 0 auto;
  text-align: center;
  color: #fff;
}
.banner .container .text {
  max-width: 46.9rem;
  margin: 0 auto;
}
.banner .container .buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 2.1rem;
}
.banner .overlay {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(0deg, #D5D7D3 0%, rgba(213, 215, 211, 0) 100%);
}

@media (max-width: 768px) {
  .banner {
    aspect-ratio: 375/812;
    max-height: 100dvh;
    width: 100%;
  }
  .banner .container {
    gap: 1.6rem;
  }
  .banner .container .buttons {
    margin: 0.8rem 0 0;
    gap: 1.6rem;
  }
  .banner .container .buttons .button {
    width: 100%;
    max-width: 45rem;
    margin: 0 auto;
  }
}