.sr-only {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	overflow: hidden;
	clip: rect(0,0,0,0);
	white-space: nowrap;
	-webkit-clip-path: inset(50%);
	clip-path: inset(50%);
	border: 0;
}
.carousel-sliders {
	position: relative;
	width: 100%;
	margin: auto;
	margin-bottom:20px;
}
.carousel-sliders-inner {
	position: relative;
	width: 100%;
	overflow: hidden;
}
.carousel-caption {
	position: absolute;
	right: 0;
	bottom: 5px;
	left: 0;
	z-index: 10;
	padding: 20px;
	color: #fff;
	text-align: center;
	background: rgba(0,0,0,0.4);
}
.carousel-caption h3{
	margin-top: 0;
	margin-bottom: 0;
	transform: translate(-100%, 0);        
}
.carousel-caption p{
	opacity: 0;
	transform: translate3D(0, 0, 0);
}
.slide {
	position: relative;
	display: none;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	width: 100%;
	-webkit-animation-name: fade;
	-webkit-animation-duration: 1s;
	animation-name: fade;
	animation-duration: 1s;
}
@-webkit-keyframes fade {
	from {opacity: 0}
	to {opacity: 1}
}

@keyframes fade {
	from {opacity: 0}
	to {opacity: 1}
}
.slide.active .carousel-caption h3{
	transform: translate(0, 0);
	animation: titleAnimtion 1s;
	color: #fff; /* CXW */
}
@keyframes titleAnimtion {
	0% {
		transform: translate(-100%, 0);    
	}
	100% {
		transform: translate(0, 0);
	}
}
.slide.active .carousel-caption p{
	transform: translate3D(0, 0, 0);
	opacity: 1;
	animation: textAnimtion 1s;
	color: #fff; /* CXW */
}
@keyframes textAnimtion {
	0% {
		transform: translate3D(0, 60px, 0);   
		opacity: 0;
	}
	100% {
		transform: translate3D(0, 0, 0);
		opacity: 1;
	}
}
.slide.active {
	display: block;
}
.slide img {
	width: 100%;
}
.carousel-controls {
	width: 15%;
	max-width:60px;
	position: absolute;
	top: 85%;
	bottom: 5%;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center; 
}
.carousel-controls.left {
	left: 0;
}
.carousel-controls.right {
	right: 0;
}
.prevSlide, .nextSlide {
	cursor: pointer;
	width: 50px;
	height: 50px;
	background: rgba(0,0,0,0.4);
	border-radius: 50%;
}
.prevSlide.inactive, .nextSlide.inactive{
	cursor: default;
}
.prevSlide.inactive .prevIcon {
	border-right-color: #717070;
} 
.nextSlide.inactive .nextIcon{
	border-left-color: #717070;
}
.prevIcon{
	margin: 10px 12px;
	display: inline-block;
	border-top: 15px solid transparent;
	border-right: 15px solid #ffffff;
	border-bottom: 15px solid transparent;        
}    
.nextIcon{
	margin: 10px 20px;
	display: inline-block;
	border-top: 15px solid transparent;
	border-left: 15px solid #ffffff;
	border-bottom: 15px solid transparent;
}
.carousel-indicators {
	position: absolute;
	right: 0;
	bottom: 5px;
	left: 0;
	z-index: 15;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	padding-left: 0;
	margin-right: 15%;
	margin-left: 15%;
	list-style: none;
}
.carousel-indicators li {
	cursor: pointer;
	position: relative;
	-webkit-box-flex: 0;
	-ms-flex: 0 1 auto;
	flex: 0 1 auto;
	width: 40px;
	height: 10px;
	margin: 0 5px;
	text-indent: -999px;
	background-color: rgba(255,255,255,.5);
}
.carousel-indicators .active {
	background-color: #fff;
	cursor: default;
}