.revealing-hero {
    position: sticky;
    min-height: 100vh;
    --reavealing-hero-overlay-opacity: 1;

    &::after {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      height: 100%;
      width: 100%;
      pointer-events: none;
      background-color: var(--color-black);
      opacity: var(--reavealing-hero-overlay-opacity);
    }
  }

body > section {
    padding-top: 12rem;
    padding-bottom: 10rem;
}

