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

.carousel-caption {
  top: 50%;
  transform: translateY(-50%);
  bottom: initial;
  -webkit-transform-style: preserve-3d;
  -moz-transform-style: preserve-3d;
  transform-style: preserve-3d;
  left: 4rem;
  right: 4rem;
  padding: 0;
}
.carousel-caption h2, .carousel-caption p {
  color: white;
}
.carousel-caption h2 {
  font-size: 3rem;
  font-weight: 800;
}
.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;
  }
}
.video-btn {
  background: transparent;
  cursor: pointer;
  border: none;
  position: relative;
  top: -60px;
  left: 1%;
  color: #fff;
}
.video-btn:hover {
  background: #000;
}
