/* HARD RESET Bootstrap carousel behavior */
#carouselVideoExample,
#carouselVideoExample * {
  box-sizing: border-box;
}

/* Carousel wrapper */
#carouselVideoExample {
  position: relative;
  height: 80vh;
  overflow: hidden;
}

/* Disable bootstrap slide movement */
.carousel-inner {
  position: relative !important;
  height: 100%;
  transform: none !important;
}

/* Slides overlap */
.carousel-item {
  position: absolute !important;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 1s ease-in-out, transform 1.2s ease;
  transform: scale(1.1);
}

/* Active slide */
.carousel-item.active {
  opacity: 1;
  visibility: visible;
  transform: scale(1);
  z-index: 2;
}

/* Video fill */
.carousel-item video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

carousel-indicators {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 2;
    display: flex;
    justify-content: center;
    padding: 0;
    margin-right: 15%;
    margin-bottom: 1rem;
    margin-left: 15%;
}

.carousel-indicators > button {
    box-sizing: content-box;
    flex: 0 1 auto;
    width: 30px;
    height: 22px;
    padding: 0;
    margin-right: 3px;
    margin-left: 3px;
    text-indent: -999px;
    cursor: pointer;
    background-color: #000;
    background-clip: padding-box;
    border: 0;
    border-top: 10px solid rgba(0,0,0,0);
    border-bottom: 10px solid rgba(0,0,0,0);
    opacity: .5;
    transition: opacity .6s ease
}

carousel-indicators > .active{
  background-color: #000;
}
