.hero .page-title br {
  @media all and (max-width: 1023px) {
    display: none;
  }
}

/* Hero full-width slider */
.hero-section {
  position: relative;
  overflow-x: hidden;
}

.hero-slider {
  position: absolute;
  inset: 0;
  width: 100vw;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  z-index: 0;
}

.hero-slider:before {
  width: 100%;
  height: 44.4%;
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg,rgba(39, 39, 39, 1) 0%, rgba(39, 39, 39, 0) 100%);
  z-index: 9;
}

.hero-slider:after {
  width: 100%;
  height: 51.825%;
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  background: linear-gradient(0deg,rgba(39, 39, 39, 1) 0%, rgba(39, 39, 39, 0) 100%);
  z-index: 9;
}

.hero-slider__track {
  position: relative;
  width: 100%;
  height: 100%;
}

.hero-slider__slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 0.9s ease;
}

.hero-slider__slide.is-active {
  opacity: 1;
  z-index: 1;
}

.hero-slider--single {
  background-position: bottom;
}
