#carouselExampleIndicators{
	width: auto;
	overflow: hidden;
}
.carousel-control-next, .carousel-control-prev{
	position        : absolute;
	top             : 50%;
	bottom          : 50%;
	z-index         : 1;
	display         : -ms-flexbox;
	display         : flex;
	-ms-flex-align  : center;
	align-items     : center;
	-ms-flex-pack   : center;
	justify-content : center;
	width           : 45px;
	height          : 45px;
	color           : #323030 !important;
	text-align      : center;
	opacity         : 1;
	transition      : opacity .15s ease;
	background-color:  #fefefe;
	padding         : 15px;
	border-radius   : 25px;

}

.carousel-control-prev{
	left: 15px;
	 
}

.carousel-control-next{
	right: 15px;
}

.carousel-control-next:hover, .carousel-control-prev{
	 color: #323030;
}

.carousel-indicators li {
	box-sizing      : content-box;
	-ms-flex        : 0 1 auto;
	flex            : 0 1 auto;
	width           : 10px;
	height          : 10px;
	margin-right    : 3px;
	margin-left     : 3px;
	text-indent     : -999px;
	cursor          : pointer;
	background-color: #D6D6D6;
	background-clip : padding-box;
	border-top      : none;
	border-bottom   : none;
	opacity         : .5;
	transition      : opacity .6s ease;
	border-radius   : 15px;

}
.carousel-indicators li.active {
    background-color: #D63426;

}

.carousel-caption{
	/*background-color: rgba(50,48,48,.6);*/
}


.bg-prop{
	height               : 350px;
	overflow             : hidden;
	background-position  : center center; 
	background-repeat    : no-repeat;
	background-size      : cover;
}

.carousel-fade .carousel-item {
	opacity: 0;
	transition-duration: 1s;
	transition-property: opacity;
}

.carousel-fade .carousel-item.active,
.carousel-fade .carousel-item-next.carousel-item-left,
.carousel-fade .carousel-item-prev.carousel-item-right {
	opacity: 1;
}

.carousel-fade .active.carousel-item-left,
.carousel-fade .active.carousel-item-right {
	opacity: 0;
}

.carousel-fade .carousel-item-next,
.carousel-fade .carousel-item-prev,
.carousel-fade .carousel-item.active,
.carousel-fade .active.carousel-item-left,
.carousel-fade .active.carousel-item-prev {
	transform: translateX(0);
	transform: translate3d(0, 0, 0);
}