/* styles for slider */

.vwSlider {
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  height: 100vh;
  z-index: 0;
}

.vwSlider__main,
.swiper {
  height: 100%;
  width: 100%;
}

/* ====== slides ====== */

.vwSlider__slides {
  width: 100vw;
  position: relative;
  background-color: #313131;
}

.vwSlider__slide {
  position: absolute;
  inset: 0;
  width: 100%;
}

.slide__bgImage,
.slide__bgVideo {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.slide__bgVideo,
.slide__bgImage--desktop {
  display: none;
}

.slide__bgImage--mobile {
  display: block;
}

.slide__overlay {
  position: absolute;
  inset: 0;
  color: #fff;
  padding: 30vh 30px 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-shadow: 0px 0px 8px #000000;
  font-family: var(--awb-typography3-font-family);
  width: 100%;
  max-width: 1350px;
  margin: 0 auto;
}

.slide__overlay__inner {
  display: flex;
  align-items: center;
  flex-direction: column;
  width: 100%;
}

.slide__headline {
  font-size: 42px !important;
  margin: 0 0 8px;
  text-transform: uppercase !important;
  text-align: center;
  line-height: 1 !important;
  color: #fff;
  width: 100%;
  letter-spacing: 3px !important;
}

.slide__subheading {
  color: white;
  text-transform: uppercase;
  margin-bottom: 8px !important;
  font-size: 1.25rem !important;
  letter-spacing: 2px !important;
}

.slide__excerpt {
  font-size: 1.04rem;
  line-height: 1.1;
  margin-top: 0;
  margin-bottom: 10px !important;
  width: 100%;
  text-align: center;
  letter-spacing: 2.1px !important;
  font-family: var(--awb-typography1-font-family) !important;
}

.slide__headline--desktop,
.slide__excerpt--desktop {
  display: none;
}

.slide__cta {
  padding: 0px 25px;
  display: flex;
  gap: 4px;
  border-radius: 25px;
  text-decoration: none;
  font-size: 20px;
  text-shadow: none;
  box-shadow: 2px 2px 8px #00000070;
  background-color: var(--vw-slider-cta-bg-color);
  color: var(--vw-slider-cta-color);
  letter-spacing: 3px;
  font-family: var(--awb-typography1-font-family) !important;
  text-align: center;
}

.slide__cta:hover {
  background-color: var(--vw-slider-cta-bg-color-hover);
  color: var(--vw-slider-cta-color);
}

.slide__cta span {
  margin-top: 1px;
  text-align: center;
}

.slide__cta svg {
  fill: white;
  display: none;
}

.slide__bgCredit {
  position: absolute;
  bottom: 10px;
  right: 10px;
  line-height: 1;
  text-align: right;
  font-family: var(--body_typography-font-family);
  z-index: 10;
  color: white;
}

.slide__bgCredit span {
  display: block;
  font-family: var(--awb-typography2-font-family);
}

/* ====== cards ====== */

.vwSlider__cards {
  display: none;
}

/* ====== pagination ====== */

.vwSlider__pagination {
  justify-content: center !important;
  gap: 3px;
  transition: transform 0.6s ease-in-out !important;
  display: flex;
  bottom: 45px !important;
}

.vwSlider__pagination .swiper-pagination-bullet {
  height: 10px;
  width: 10px;
  background-color: black;
  border: 1px solid white;
  border-radius: 100%;
  cursor: pointer;
  opacity: 1;
}

.vwSlider__pagination .swiper-pagination-bullet-active {
  background-color: white;
  border-color: black;
}

@media screen and (min-width: 768px) {

  .vwSlider__slides {
    height: 100vh;
  }

  .vwSlider__slide {
    height: 100vh;
  }

  /* ====== slides ====== */

  .slide__bgImage--desktop,
  .slide__bgVideo {
    display: block;
  }

  .slide__bgImage--mobile {
    display: none;
  }

  .slide__overlay {
    text-shadow: 0px 0px 20px #000000d5;
    padding-top: 320px;
  }

  .slide__overlay__inner {
    max-height: 380px;
    align-items: flex-start;
  }

  .slide__headline {
    width: 48%;
    font-size: 42px !important;
    text-align: unset !important;
    line-height: .9 !important;
    letter-spacing: 2px !important;
    margin: 0px;
  }

  .slide__headline--desktop {
    display: block;
  }

  .slide__headline--mobile {
    display: none;
  }

  .slide__excerpt {
    width: 48%;
    background-color: unset;
    padding: 0;
    text-align: unset;
    border: none;
  }

  .slide__excerpt--desktop {
    display: block;
  }

  .slide__excerpt--mobile {
    display: none;
  }

  .slide__bgCredit {
    right: 30px;
    bottom: 100px;
    width: unset;
  }

  .slide__bgCredit span {
    display: inline-block;
  }

  .slide__cta {
    font-size: 28px;
    text-transform: uppercase;
    padding-right: 15px;
  }

  .slide__cta svg {
    width: 24px;
    display: block;
  }

  /* ====== cards ====== */

  .vwSlider__cards {
    display: flex;
    align-items: center;
    position: absolute;
    left: 50%;
    z-index: 5;
    height: 410px;
    right: 0px;
  }

  .vwSlider__cardsViewport {
    overflow: hidden;
    display: flex;
    height: 100%;
  }

  .vwSlider__cardsRow {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 7px;
  }

  .vwSlider__card {
    position: relative;
    display: flex;
    justify-content: center;
    height: 340px;
    width: 275px;
    cursor: pointer;
    transition: all 0.6s ease-in-out;
  }

  .vwSlider__card[data-active="true"] {
    height: 410px;
    width: 285px;
  }

  .vwSlider__card img {
    width: 100%;
    object-fit: cover;
    z-index: 5;
    pointer-events: none;
    border: 2px solid #ffffff;
    border-radius: 10px;
  }

  .vwSlider__card h3 {
    position: absolute;
    top: 102%;
    margin: 0;
    font-size: 1.25rem !important;
    pointer-events: none;
    transition: all 0.6s ease-in-out;
  }

  .vwSlider__card[data-active="true"] h3 {
    top: 80%;
  }

  /* ====== pagination ====== */

  .vwSlider__pagination {
    top: 5px !important;
    right: 25px;
    width: unset !important;
    left: unset !important;
    bottom: unset !important;
  }

  .vwSlider__pagination .swiper-pagination-bullet {
    border: 1px solid white;
  }

  .vwSlider__pagination .swiper-pagination-bullet-active {
    background-color: white;
  }
}

@media screen and (min-width: 1250px) {
  .slide__headline {
    font-size: 89px !important;
  }
}