/* CUSTOMIZE THE CAROUSEL
-------------------------------------------------- */

/* Carousel base class */
.carousel {
  height: 500px;
  margin-bottom: 60px;
  margin-top: 60px;
}
/* Since positioning the image, we need to help out the caption */
.carousel-caption {
  z-index: 10;
  background-color: rgba(0,0,0,0.5);
  border-radius: 20px;  
}

/* Declare heights because of positioning of img element */
.carousel .item {
  height: 500px;
  background-color: black;
  overflow: hidden;
}
.carousel-inner > .item > img {
  /*position: absolute;
  top: 0;
  left: 0;*/
  /*min-width: 100%;*/
  /*height: 500px;*/
  object-fit: cover;
  min-width: none;
  min-height: 100%;
}
