#carouselHero{
  padding: 0;
  margin: 0;
  overflow: hidden;
}

#carouselHero .carousel-item img {  
  object-fit: cover;
  object-position: center;

  width: 100%;

  height: 400px;
}

#carouselHero .carousel-item:before {
  content: '';
  display: block;
  position: absolute;
  background-image: 
    linear-gradient(
      to bottom,
      rgba(0, 0, 0, 0),
      rgba(0, 0, 0, .5)
    );
  width: 100%;
  height: 100%;
  top: 0;
 
}