.slider-banner {
	position: relative;
}

.slider-banner .carousel-inner .carousel-item {
	display: block;
	height: 100%;
	min-height: 1px;
}

.slider-banner .carousel-inner .carousel-item img {
	display: block;
	object-fit: cover;
	object-position: center center;
	height: 800px;
}

.slider_caption {
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	height: 100%;
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	z-index: 9;
}

.slider-content h3 {
	color: #fff;
	font-size: 50px;
	font-weight: 800;
	line-height: 60px;
	text-transform: capitalize;
}

.slider-content h3 span {
	color: #3C99DC;
	font-size: 50px;
	font-weight: 800;
	line-height: 60px;
}

.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;
}


  