.carousel-item {
  position: relative;
  min-height: 575px;
  height: 85vh;
}
.carousel-item:before {
  content: " ";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  opacity: 1;
  background: rgba(0, 0, 0, 0.6);
}

.carousel-caption h2, .carousel-caption p {
  color: #F8F5EC;
}
.carousel-caption h2 {
  font-size: 3rem;
  font-weight: 800;
  font-style: italic;
  text-shadow: 0 2px 3px rgba(0, 0, 0, 0.8);
}
.carousel-caption p {
  text-shadow: 0 3px 6px rgba(0, 0, 0, 0.8);
}
.carousel-caption .col-md-4 {
  background: white;
  box-shadow: 0px 0px 33px 1px rgba(0, 0, 0, 0.25);
  padding: 4rem 3rem;
}
.carousel-caption .col-md-8 {
  padding: 4rem;
}

.modkitHeroSlideUp {
  animation-name: modkitHeroSlideUp;
  -webkit-animation-name: modkitHeroSlideUp;
  animation-duration: 1.25s;
  -webkit-animation-duration: 1.25s;
  animation-timing-function: ease;
  -webkit-animation-timing-function: ease;
  visibility: visible !important;
}

@keyframes modkitHeroSlideUp {
  0% {
    transform: translateY(0%);
    opacity: 0;
  }
  100% {
    transform: translateY(-50%);
    opacity: 1;
  }
}
@-webkit-keyframes modkitHeroSlideUp {
  0% {
    -webkit-transform: translateY(0%);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateY(-50%);
    opacity: 1;
  }
}
.carousel-indicators {
  background-color: transparent;
  bottom: 18%;
}

/* video stuff */
.video-background {
  background: #000;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: -99;
  position: relative;
  height: 800px;
  /* Remove height for full screen*/
  overflow: hidden;
}

.video-foreground,
.video-background iframe {
  position: absolute;
  top: 0;
  left: -13%;
  /* left 0 if full screen*/
  width: 126%;
  /* width 100% if full screen*/
  height: 126%;
  /* width 100% if full screen*/
  pointer-events: none;
}

@media (min-aspect-ratio: 16/9) {
  .video-foreground {
    height: 300%;
    top: -100%;
  }
}
@media (max-aspect-ratio: 16/9) {
  .video-foreground {
    width: 300%;
    left: -100%;
  }
}
@media all and (max-width: 600px) {
  .vid-info {
    width: 50%;
    padding: 0.5rem;
  }
}
.button#toggle-btn {
  width: 48px;
  height: 48px;
  background: red;
  cursor: pointer;
}
.button#toggle-btn:hover {
  fill: white;
}
