
.carousel { 
	position: relative; 
	width: 100%; 
	height: 600px; 
	overflow: hidden; 
  margin-top: 70px;
	background-color: #000; 
} 

.carousel-item .slide-image { 
	/* width: 1920px;  */
	width: 100%; 
	height: 600px; 
	background-size: cover; 
	background-repeat: repeat; 
  background-position: center center;
} 

.carousel-item { 
	position: absolute; 
	width: 100%; 
	height: 1920px; 
	border: none; 
	top: 0; 
	left: 100%; 
} 

.carousel-item.active { 
	left: 0; 
	transition: all 1.5s ease-out; 
} 

.carousel-item div { 
	height: 100%; 
	width: 100%; 
} 
