/*
* 	Owl Carousel Owl Demo Theme 
*	v1.3.3
*/

.owl-theme .owl-controls {
	text-align: center;
	padding: 0 30px;
}

/* Styling Next and Prev buttons */

.owl-theme .owl-controls .owl-buttons div {
	color: #869791;
	display: inline-block;
	zoom: 1;
	*display: inline;
	/*IE7 life-saver */
	margin: 5px;
	margin-bottom: 20px;
	padding: 3px 10px;
	font-size: 20px;
	-webkit-border-radius: 30px;
	-moz-border-radius: 30px;
	border-radius: 30px;
	filter: Alpha(Opacity=50);
	/*IE7 fix*/
	opacity: 0.5;
	font-family: "FontAwesome";
}

.owl-theme .owl-controls .owl-buttons .owl-prev {
	float: left;
	position: relative;
	left: 6vw;
}

.owl-theme .owl-controls .owl-buttons .owl-next {
	float: right;
	position: relative;
	right: 6vw;
}

/* Clickable class fix problem with hover on touch devices */
/* Use it for non-touch hover action */
.owl-theme .owl-controls.clickable .owl-buttons div:hover {
	filter: Alpha(Opacity=100);
	/*IE7 fix*/
	opacity: 1;
	text-decoration: none;
}

/* Styling Pagination*/

.owl-theme .owl-controls .owl-page {
	display: none;
	zoom: 1;
	*display: none;
	/*IE7 life-saver */
}

.owl-theme .owl-controls .owl-page span {
	display: block;
	width: 12px;
	height: 12px;
	margin: 5px 7px;
	filter: Alpha(Opacity=50);
	/*IE7 fix*/
	opacity: 0.5;
	-webkit-border-radius: 20px;
	-moz-border-radius: 20px;
	border-radius: 20px;
	background: #555;
}

.owl-theme .owl-controls .owl-page.active span,
.owl-theme .owl-controls.clickable .owl-page:hover span {
	filter: Alpha(Opacity=100);
	/*IE7 fix*/
	opacity: 1;
	background: #555;
}

/* If PaginationNumbers is true */

.owl-theme .owl-controls .owl-page span.owl-numbers {
	height: auto;
	width: auto;
	color: #FFF;
	padding: 2px 10px;
	font-size: 12px;
	-webkit-border-radius: 30px;
	-moz-border-radius: 30px;
	border-radius: 30px;
}

/* preloading images */
.owl-item.loading {
	min-height: 150px;
}

.carouselPresentation .owl-wrapper-outer {
	height: 100%;
}

.carouselPresentation .owl-wrapper-outer .owl-wrapper {
	height: 100%;
}

.carouselPresentation .owl-wrapper-outer .owl-wrapper .owl-item {
	height: 399px;
	padding: 0;
}

.carouselPresentation .owl-wrapper-outer .owl-wrapper .owl-item img {
	object-fit: cover;
	width: 100%;
	height: 100%;
	box-shadow: inset 11px 11px 14px 0px rgba(50, 50, 50, 0.75);
	background: #009587;
	padding: 6px;

}

.carouselPresentation .owl-buttons {
	position: absolute;
	width: 100%;
	height: 0;
	top: 46%;
	bottom: 50%;
	left: 0;
}

.carouselPresentation .owl-controls .owl-buttons>div {
	margin: 0;
	padding: 10px;
	background: #009587;
	border: 1px solid #009587;
	opacity: 1;
	border-radius: 0;
	color: #fff;
	transition: all 0.3s ease-out;
}

.carouselPresentation .owl-controls .owl-buttons>div:hover {
	background: transparent;
	color: #009587;
}

.carouselPresentation .owl-controls .owl-buttons .owl-prev {
	left: 6px;
	border-left: none;
}

.carouselPresentation .owl-controls .owl-buttons .owl-next {
	right: 0;
	border-right: none;
}