:root {
  --header-height: 98.19px;
  --overlay-opacity: 0.4;
  --text-color: #fff;
  --hero-scroll-offset: 90px;
}

/* full width header */
.full-width-header {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  background-color: black;
  height: calc(100vh - var(--header-height));
  min-height: 25rem;
  width: 100%;
  overflow: hidden;
}

.full-width-header img,
.full-width-header video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  z-index: 0;
  transform: translate(-50%, -50%);
}

.full-width-header .media-overlay {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background-color: black;
  opacity: 0.6;
  z-index: 1;
}

.full-width-header .media-content {
  display: grid;
  max-width: 800px;
  position: relative;
  z-index: 2;
  text-align: center;
}

.full-width-header .media-content p {
  font-weight: 100;
  font-size: 1rem;
  color: #fff;
  line-height: 1.4;
}

.full-width-header .media-content h1 {
  font-size: 3rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.2;
  margin: 1rem 0;
}

.full-width-header .media-content h5 {
  font-weight: 100;
  color: #fff;
  line-height: 1.2;
}

.full-width-header .media-content a {
  color: #FAEB00;
}

.full-width-header .hero_scroll {
  position: absolute;
  z-index: 2;
  color: #ffffff;
  bottom: 90px;
  width: 200px;
  margin: auto;
  display: block;
  cursor: pointer;
  left: 0;
  right: 0;
}

.full-width-header .hero_scroll .icon_scroll {
  font-size: 2rem;
  margin-top: 0px;
  display: block;
  animation: pulse 2s infinite;
  color: #FAEB00;
} 

/* full width scrolly header */
.scrolly-header {
  position: relative;
  min-height: 100vh;
}
.scrolly-header article {
  position: relative;
  padding: 0;
  max-width: 50rem;
  margin: 0 auto;
  z-index: 20;
}

.scrolly-header figure {
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  margin: 0;
  z-index: -10;
  overflow: hidden;
  /* margin-bottom: calc(-100vh);  */
}

.scrolly-header img,
.scrolly-header video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  z-index: 0;
  transform: translate(-50%, -50%);
}

.scrolly-header .media-wrapper {
  position: relative;
  height: 100%;
}

.scrolly-header .media-wrapper::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: rgba(0, 0, 0, var(--overlay-opacity));
  z-index: 1;
}

.scrolly-header .step {
  min-height: 900px;
  margin: 0 auto;
  position: relative;
  z-index: 20;
}

.scrolly-header .step:first-child {
  min-height: calc(100vh - var(--header-height));
  /* padding-bottom: var(--hero-scroll-offset); */
  margin-top: -100vh;

}
.scrolly-header .step:last-child {

  padding-top: 200px;
  padding-bottom: 400px;

}

.scrolly-header .step p {
  color: var(--text-color);
  padding: 25px;
  width: 100%;
}

.scrolly-header .step h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 700;
  color: var(--text-color);
  line-height: 1.2;
}

.scrolly-header .step h5 {
  color: var(--text-color);
}

.scrolly-header .media-content a {
  color: #FAEB00;
}

.scrolly-header .hero_scroll {
  position: absolute;
  z-index: 2;
  color: #ffffff;
  bottom: 90px;
  width: 200px;
  margin: auto;
  display: block;
  cursor: pointer;
  left: 0;
  right: 0;
}

.scrolly-header .hero_scroll .icon_scroll {
  font-size: 2rem;
  margin-top: 0px;
  display: block;
  animation: pulse 2s infinite;
  color: #FFC740;
}

@media (max-width: 768px) {

  .scrolly-header .step:first-child {
    min-height: calc(100vh - var(--header-height));
    padding-bottom: 60px;
  }

  .hero_scroll {
    bottom: 60px;
  }

  .scrolly-header .step h1 {
    font-size: 2rem;
    padding: 0 0.5rem;
  }

  .scrolly-header .step h5 {
    font-size: 1.1rem;
  }
}

@keyframes pulse {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

