.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;
  right: 60px;
  bottom: 3vw;
  z-index: 10;
  font-size: 1.2vw;
  line-height: 1.2;
  text-align: right;
  color: rgb(var(--c-neutral-lightest));
}

.header__title {
  font-size: 187%;
  line-height: 1.4;
  text-shadow: 2px 2px 5px rgb(var(--c-neutral-darker));
}

.header__description {
  max-width: 700px;
  margin-left: auto;
  font-size: 387%;
  font-weight: var(--f-weight-sb);
  line-height: 1;
  text-transform: uppercase;
  text-shadow: 5px 5px 10px rgb(var(--c-neutral-darker));
}

.header .swiper-pagination {
  display: none;
}

.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: 641px) {
  .header .swiper-pagination {
    display: block;
    left: 60px;
    width: auto;
    bottom: 3vw;
  }
}

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

@media (min-width: 1281px) {
  .header__text {
    font-size: var(--f-size);
  }
}