section.section-hero {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  background-attachment: fixed;
  position: relative;
  z-index: 9;
  min-height: 400px;
  display: flex;
  align-items: center;
}
section.section-hero::after {
  content: "";
  position: absolute;
  width: 40px;
  height: 120px;
  background-color: var(--hat-accent);
  left: 50%;
  bottom: 0;
  transform: translate(-50%, 50%);
}
@media (max-width: 768px) {
  section.section-hero::after {
    display: none;
  }
}
section.section-hero .section-container {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
section.section-hero .section-container h1 {
  color: var(--hat-neutral);
  text-align: center;
}
section.section-hero .section-container h1 span {
  display: block;
  line-height: 1;
  font-size: var(--text-lg);
}