.hero-home-alt {
  position: relative;
  overflow: hidden;
  padding: 6rem 12vw;
  min-height: calc(90vh - 16rem);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
}

.hero-home-alt:after {
  display: none !important;
}


@supports (mix-blend-mode: multiply) {
  .hero-home-alt:after {
    mix-blend-mode: multiply;
    opacity: 1;
  }
}
  
.hero-home-alt__container {
  z-index: 2;
}

.hero-home-alt__heading {
  font-size: 4.2rem;
  letter-spacing: 0.05em;
  margin-bottom: 0.3em;
}

.hero-home-alt__heading span {
  position: relative;
}

.hero-home-alt__heading span:after {
  display: block;
  content: '';
  position: absolute;
  width: 0;
  left: 0;
  bottom: 0.2em;
  height: 0.2em;
  background-color: #FFB351;
  z-index: -1;
  animation-name: underline;
  animation-delay: 1s;
  animation-duration: 1.2s;
  animation-fill-mode: forwards;
  animation-timing-function: ease-in-out;
}

.hero-home-alt__content {
  font-size: 1.8rem;
  line-height: 1.4em;
  margin: 0 0 1.2em;
}

.hero-home-alt__buttons {
  display: flex;
  gap: 2rem;
  flex-flow: row wrap;
}

.hero-home-alt__image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

@media (min-width: 480px) {
  .hero-home-alt__heading {
    font-size: 6rem;
  }
  
  .hero-home-alt__content {
    font-size: 2rem;
  }
}
@media (min-width: 768px) {
  .hero-home-alt__content {
    font-size: 2.2rem;
  }
}
@media (min-width: 992px) {
  .hero-home-alt__container {
    max-width: min-content;
  }
  .hero-home-alt__heading {
    font-size: 9rem;
    white-space: nowrap;
  }
  .hero-home-alt__content {
    font-size: 2.4rem;
  }
  .hero-home-alt__buttons {
    justify-content: center;
  }
  .hero-home-alt__buttons .btn,
  .hero-home-alt__buttons .cta_button {
    padding-left: 4rem !important;
    padding-right: 4rem !important;
  }
}

@keyframes underline {
  from {
    width: 0;
  }
  to {
    width: 100%;
  }
}
