.carousel {
	height: 500px;
	width: 100%;
	overflow: hidden;
 }

 .carousel-inner > .carousel-item {
	display: flex;
  	justify-content: center; /* Center horizontally */
  	align-items: center; /* Center vertically */
	background-color: black;
 }

 .carousel-inner > .carousel-item > img {
	height: 500px;
	max-width: 100%;
	object-fit: scale-down;
	
 }