.header {
  --swiper-pagination-color: #ffffff;
  --swiper-pagination-bullet-inactive-color: #ffffff;
  --swiper-pagination-bullet-inactive-opacity: 0.4;
  --swiper-navigation-color: #ffffff;
}

.header__slider {
  display: flex;
  align-items: center;
}

.header__text {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  max-width: 600px;
  text-align: center;
  color: rgb(var(--c-neutral-lightest));
  text-shadow: 2px 2px 6px rgba(var(--c-neutral-darkest), 0.5);
  font-size: 3vw;
}

.header__title {
  font-size: 2.4em;
  line-height: 1.1;
  text-transform: uppercase;
  font-weight: var(--f-weight-sb);
}

.header__description {
  font-size: 1em;
  font-style: italic;
}

.page.-main .header__text {
  bottom: 85px;
}

.header__image {
  overflow: hidden;
  display: block;

  picture {
    height: 100%;
    width: 100%;
  }

  & video {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  &.-left {
    & video,
    & img {
      object-position: left center;
    }
  }

  &.-right {
    & video,
    & img {
      object-position: right center;
    }
  }

  &.-top {
    & video,
    & img {
      object-position: center top;
    }
  }

  &.-bottom {
    & video,
    & img {
      object-position: center bottom;
    }
  }

  &.-bottom.-left {
    & video,
    & img {
      object-position: left bottom;
    }
  }

  &.-bottom.-right {
    & video,
    & img {
      object-position: right bottom;
    }
  }

  &.-top.-left {
    & video,
    & img {
      object-position: left top;
    }
  }

  &.-top.-right {
    & video,
    & img {
      object-position: right top;
    }
  }
}

/* =============================================================================
   Media Queries
   ========================================================================== */

@media (min-width: 800px) {
  div.header__text.-bottom {
    display: block;
  }
}

@media (min-width: 1024px) {
  .header__text {
    font-size: 32px;
  }

  .page.-main .header__text {
    bottom: 140px;
  }
}