/* COLORS */
/* TYPOGRAPHY */
/* ---- MEDIA QUERIES ----- */
.banner-block.bg-white {
  background-color: #fff;
}
.banner-block.bg-gray {
  background-color: #EDEDED;
}
.banner-block .heading,
.banner-block .text {
  text-align: center;
}
.banner-block .text {
  max-width: 94.7rem;
  margin: 4rem auto 0;
}
.banner-block .banner-email {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 2.4rem auto 0;
  gap: 1rem;
}
.banner-block .banner-email a {
  text-decoration-line: underline;
  text-decoration-style: solid;
  text-decoration-skip-ink: auto;
  text-decoration-thickness: auto;
  text-underline-offset: auto;
  text-underline-position: from-font;
  color: #333;
  transition: color 0.2s ease-in-out;
}
.banner-block .banner-email a:hover {
  color: #E11425;
}

@media (max-width: 768px) {
  .banner-block .text {
    margin: 2.4rem auto 0;
  }
}