.slider {
  width: 100%;
  height: 100vh;
  overflow: hidden;
  position: relative;
}
.slider__container {
  list-style: none;
  margin: 0;
  padding: 0;
  position: relative;
}
.slider__item {
  position: absolute;
  width: 100%;
  height: 100vh;
}
.slider__itemImage {
  margin: 0;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.slider__itemImage::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  /* Rectangle 1: */
  background-image: linear-gradient(
    -180deg,
    rgba(0, 0, 0, 0) 0%,
    rgba(0, 0, 0, 0.5) 100%
  );
}
.slider__itemText {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 20;
  font-size: 1rem;
  color: #fff;
}
.slider__itemTitle {
  text-transform: uppercase;
  width: 100%;
  padding: 0 2em;
  font-size: 2em;
  font-weight: 300;
  text-align: center;
  margin: 0.5rem 0 0;
  font-weight: 300;
}
@media (min-width: 60em) {
  .slider__itemTitle {
    font-size: 4em;
    width: 50%;
    margin: 0 auto;
    padding: 0;
  }
}
.slider__itemSubtitle {
  width: 40%;
  font-size: 1.25em;
  text-align: center;
  line-height: 1.4;
  display: none;
}
.slider__prev,
.slider__next {
  cursor: default;
  z-index: 50;
  width: 0.875em;
}
.slider__prev svg,
.slider__next svg {
  display: block;
  width: 100%;
  height: auto;
}
.slider__prev.is-active,
.slider__next.is-active {
  cursor: pointer;
}
.slider__prev {
  position: absolute;
  left: 1em;
  top: 50%;
  transform: translateY(-50%);
}
.slider__next {
  position: absolute;
  right: 1em;
  top: 50%;
  transform: translateY(-50%);
}

.navThumbs {
  z-index: 500;
  z-index: 100;
  list-style: none;
  margin: 0;
  margin-top: 1rem;
  padding: 0;
  display: grid;
  grid-auto-flow: column;
  gap: 1rem;
  overflow-x: auto;
  scroll-behavior: smooth;
}

.navThumbs::-webkit-scrollbar {
  height: 3px;
}

.navThumbs__item {
  width: 100px;
  height: 50px;
  background-size: cover;
  background-position: center;
  cursor: pointer;
}

@media (min-width: 60em) {
  .navThumbs__item {
    width: 150px;
    height: 100px;
  }
}
.navThumbs__item.is-active {
  opacity: 0.5;
  cursor: default;
}
