#hero {
  height: 100vh;
  min-height: 50rem;
  max-height: 57rem;
  background-color: var(--gray-very-light);
  padding-top: 6rem;
}

#hero #hero-backdrop {
  background-color: var(--navy-blue-medium-light);
  position: absolute;
  width: 58%;
  height: 100%;
  right: 0;
  bottom: 0;
  z-index: -10;
}

#hero #hero-backdrop #slant {
  fill: var(--gray-very-light);
  position: absolute;
  height: 100%;
  width: 28rem;
  left: 0;
}

#hero #hero-backdrop #slant .vertical {
  display: block;
}

#hero #hero-backdrop #slant .horizontal {
  display: none;
}

#hero #header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  height: 100%;
}

#hero #header #cta {
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: 36rem;
}

#hero #header #cta {
  display: flex;
  flex-direction: column;
}

#hero #header #cta .bu-title {
  color: var(--navy-blue);
  margin-bottom: 1.25rem;
  margin-top: 0;
}

#hero #header #cta .bu-subtitle {
  color: var(--gray-medium-dark);
  line-height: 1.875rem;
  margin-top: 0;
}

#hero #header #cta #cta-buttons {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
}

#hero #header #cta #post-cta-message a {
  white-space: nowrap;
}

@media (max-width: 1408px) {
  #hero {
    height: auto;
    max-height: none;
    padding-top: 10rem;
    padding-bottom: 6rem;
  }

  #hero #header {
    flex-direction: column;
    gap: 4rem;
  }

  #hero #hero-backdrop {
    width: 100%;
    height: 55%;
    left: 0;
    bottom: 0;
  }

  #hero #hero-backdrop #slant {
    width: 100%;
    height: 16rem;
    top: 0;
  }

  #hero #hero-backdrop #slant .vertical {
    display: none;
  }

  #hero #hero-backdrop #slant .horizontal {
    display: block;
  }

  #hero #header #cta #cta-buttons {
    flex-wrap: nowrap;
  }

  #hero #header #cta #cta-buttons .header-button {
    width: 100%;
  }
}

@media (max-width: 900px) {
  #hero #hero-backdrop {
    height: 65%;
  }
}

@media (max-width: 640px) {
  #hero {
    padding-top: 6rem;
  }

  #hero #hero-backdrop #slant {
    height: 8rem;
  }

  #hero #header #cta #cta-buttons {
    flex-direction: column;
  }
}
