/* COLORS */
/* TYPOGRAPHY */
/* ---- MEDIA QUERIES ----- */
.hero-text {
  padding: 9.6rem 0 8.9rem;
}
.hero-text .container {
  max-width: 74.2rem;
  margin: 0 auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
}
.hero-text .button-container {
  display: flex;
  justify-content: center;
}
.hero-text .button-container .back-arrow-link {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  font-size: 1.8rem;
  color: #3C3C3C;
  font-weight: 500;
  line-height: 2.7rem;
  transition: color 0.2s ease-in-out;
}
.hero-text .button-container .back-arrow-link svg {
  transition: transform 0.2s ease-in-out;
}
.hero-text .button-container .back-arrow-link:hover {
  cursor: pointer;
  color: #1D752D;
}
.hero-text .button-container .back-arrow-link:hover svg {
  transform: translateX(-5px);
}

@media (max-width: 768px) {
  .hero-text {
    padding: 4rem 0 4.8rem;
  }
}