/* Carousel Animations Starting */

.carousel-inner .carousel-item > img {
  -webkit-animation: thing 10s;
  -o-animation: thing 10s;
  animation: thing 10s; 
}
@keyframes thing {
  from {
     transform: scale(1, 1);
  }
  to {
    transform: scale(1.5, 1.5);
  }
}

/* Carousel Animations Ends */


.carousel-item {
  	height: 100vh;
  	background-size: cover;
  	background-position: center center;
}

.carousel-item {
  	margin: auto;
    color: white;
}
.drk:after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: black;
  opacity: 0.6;
  z-index: 1;
}

.carousel-caption {
  z-index: 2;
}