.carousel {
  background-color: var(--cbs-dark-gray);
}

.carousel-img {
  height: 100%;
  max-height: 500px;
  
}

.carousel-caption {
   color: #FFF;
   left: 0%;
   right: 0%;
   background-color: rgba(0, 0, 0, 0.4);
   padding-bottom: 40px;
   bottom: 0;
}

.carousel-control-prev,
.carousel-control-next {
  z-index: 2;
  stroke-width: 3px;
}

@media only screen and (max-width: 769px) {
  .carousel {
    max-height: 20vh;
    width: 100%;
  }

  .carousel-img {
    max-height: 20vh;
    height: auto;
    width: auto;
  }
}