.dwl_float-pill-carousel .carousel-item {
  height: 100vh;
}
.dwl_float-pill-carousel .contrast-overlay {
  background-color: rgba(var(--kpl-dark-rgb), 0.3);
  mix-blend-mode: multiply;
}
.dwl_float-pill-carousel .indicators-wrapper {
  display: flex;
  position: absolute;
  left: 0;
  bottom: 2.5rem;
  width: 100%;
  overflow-x: auto;
  z-index: 3;
}
.dwl_float-pill-carousel .indicators-wrapper::-webkit-scrollbar {
  display: none;
}

.dwl_float-pill-indicators {
  display: flex;
  flex-wrap: nowrap;
  gap: 0.25rem;
  padding: 0.25rem;
  margin: 0 auto;
  border-radius: 1rem;
  background-color: rgba(var(--kpl-off-white-rgb), 0.1);
  -webkit-backdrop-filter: blur(20px);
          backdrop-filter: blur(20px);
}
.dwl_float-pill-indicators .btn,
.dwl_float-pill-indicators .floating-pill {
  border-radius: 0.75rem;
}
.dwl_float-pill-indicators .btn {
  position: relative;
  color: rgba(var(--kpl-off-white-rgb), 0.7);
  text-wrap: nowrap;
  padding: 0.75rem;
  border-width: 0;
  line-height: 1;
  z-index: 2;
  transition: color 0.35s ease-out;
}
.dwl_float-pill-indicators .btn.active {
  color: rgba(var(--kpl-dark-rgb), 1);
}
.dwl_float-pill-indicators .floating-pill {
  position: absolute;
  left: 0;
  top: 0.25rem;
  bottom: 0.25rem;
  min-width: 2rem;
  background-color: var(--kpl-light);
  z-index: 1;
  will-change: width, transform;
  transition: width 0.35s ease-in-out, transform 0.35s ease-out;
}

.dwl_content {
  position: absolute;
  left: 0;
  right: 0;
}
@media (max-width: 991.98px) {
  .dwl_content {
    top: 5.25rem;
    bottom: 5.25rem;
  }
  .dwl_content .dwl_logo,
  .dwl_content .dwl_caption {
    position: absolute;
    left: 50%;
    transform: translate(-50%, 50%);
  }
  .dwl_content .dwl_logo {
    bottom: clamp(13rem, 50%, 30rem);
  }
  .dwl_content .dwl_caption {
    text-align: center;
    bottom: clamp(5rem, 21%, 10rem);
  }
}
@media (min-width: 992px) {
  .dwl_content {
    top: calc(50% - 1.5rem);
    display: flex;
  }
  .dwl_content .dwl_logo {
    height: 3rem;
    width: 25%;
  }
  .dwl_content .dwl_caption {
    position: relative;
    width: 50%;
    margin-top: 0.625rem;
  }
}

.dwl_digital-square {
  border-radius: 1rem;
  width: 5rem;
  height: 5rem;
  background-color: rgba(var(--kpl-off-white-rgb), 0.1);
  -webkit-backdrop-filter: blur(20px);
          backdrop-filter: blur(20px);
}
.dwl_digital-square .dwl_lt-svg {
  width: auto;
  height: 11px;
}
@media (min-width: 992px) {
  .dwl_digital-square {
    border-radius: 0.75rem;
    width: 3rem;
    height: 3rem;
  }
  .dwl_digital-square .dwl_lt-svg {
    height: 8px;
  }
}

.dwl_text-logo {
  width: auto;
  height: 2.5rem;
}
@media (min-width: 768px) and (max-width: 991.98px) {
  .dwl_text-logo {
    height: 3.5rem;
  }
}
@media (min-width: 992px) {
  .dwl_text-logo {
    margin-top: 0.25rem;
  }
}

.dwl_caption {
  font-family: LTSerif, serif;
  font-size: 0.9375rem;
  line-height: 1.25rem;
}
@media (min-width: 992px) {
  .dwl_caption {
    font-size: 1.25rem;
    line-height: 1.75rem;
  }
}

.dwl_float-pill-carousel .carousel-item .dwl_animate {
  transform: translateY(3rem);
  transition: transform 0.7s;
}
.dwl_float-pill-carousel .carousel-item.active .dwl_animate,
.dwl_float-pill-carousel .carousel-item-next.carousel-item-start .dwl_animate,
.dwl_float-pill-carousel .carousel-item-prev.carousel-item-end .dwl_animate {
  transform: translateY(0);
}
.dwl_float-pill-carousel .active.carousel-item-start .dwl_animate,
.dwl_float-pill-carousel .active.carousel-item-end .dwl_animate {
  transform: translateY(-3rem);
}
