/* HERO SLIDER */
.hero-wrapper {
  position: relative;
  height: 100vh;
  width: 100%;
  overflow: hidden;
  background: #290c31;
}

.hero-slider {
  height: 100%;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0; 
}

.hero-slider .splide__track,
.hero-slider .splide__list,
.hero-slider .splide__slide {
  height: 100%;
}

.splide__slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

/* STATIC HERO CONTENT */
.hero-static-content {
  position: absolute;
  bottom: 15%;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  width: 100%;
  max-width: 1920px;
  padding: 0 10rem;
  mix-blend-mode: color-dodge;
  opacity: 1;
  pointer-events: none;
}

.hero-static-content h1 {
  font-weight: 300;
  font-size: clamp(3.5rem, 13.78vw, 275px);
  line-height: 0.85;
  text-transform: uppercase;
  color: var(--secondary-color);
  text-align: end;
}

.hero-static-content h1 span {
  font-size: 0.22em;
  display: inline-block;
  border: 1px solid var(--secondary-color);
  padding: 0.2em;
  width: 8rem;
  text-align: start;
  transform: translateY(-12%);
}
