.site-banner {
  position: relative;
  background-size: 100%;
  /* background-repeat: no-repeat;
  background-position: top center; */
  /* min-height: 70vh; */
}
.site-banner .carousel-item {
  position: static;
}

.site-banner .carousel-item .img-wrapper {
   position: relative;
 /* right: 0;
  bottom: 0; */
}

.site-banner .carousel-item img {
  max-height: 600px;
  object-fit: cover;
  width: 100%;
}


.slider_caption {
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	height: 100%;
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: start;
	text-align: left;
	z-index: 9;
}

.slider-content h3 {
	color: #fff;
	font-size: 60px;
	font-weight: 700;
	line-height: 70px;
	text-transform: capitalize;
}

.slider-content h5 {
	color: #fff;
	font-size: 24px;
	font-weight: 600;
	line-height: 30px;
}

.animated {
	-webkit-animation-duration: 1.5s;
	animation-duration: 1.5s;
}

@-webkit-keyframes fadeInRight {
	from {
		opacity: 0;
		-webkit-transform: translate3d(100px, 0, 0);
		transform: translate3d(100px, 0, 0);
	}

	to {
		opacity: 1;
		-webkit-transform: none;
		transform: none;
	}
}

@keyframes fadeInRight {
	from {
		opacity: 0;
		-webkit-transform: translate3d(100px, 0, 0);
		transform: translate3d(100px, 0, 0);
	}

	to {
		opacity: 1;
		-webkit-transform: none;
		transform: none;
	}
}

.fadeInRight {
	-webkit-animation-name: fadeInRight;
	animation-name: fadeInRight;
}

.carousel-control-next {
	right: 2%;
}

.carousel-control-prev {
	left: 2%;
}

.carousel-control-next, .carousel-control-prev {
	position: absolute;
	top: 45%;
	bottom: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 0;
	color: #fff;
	text-align: center;
	background-color: rgba(0, 0, 0, 0.7);
	width: 50px;
	height: 50px;
	border-radius: 100%;
	border: 0;
	transition: opacity .15s ease;
	z-index: 9;
}
