/* --- module: effects slide --- */

/* common
---------------------------------------------------- */
.indexSlide {
	position: relative;
}
.indexSlide .sliderContainer {
	overflow: hidden;
	position: relative;
}


/* dynHeight with aspect ratio
---------------------------------------------------- */
.indexSlide.dynHeight {}
.indexSlide.dynHeight .item {
	height: 100%;
} 
.indexSlide.dynHeight .item:before {
	content: "";
	display: block;
	padding-top: 100%; /* 1:1 aspect ratio */
	padding-top: 75%; /* 4:3 aspect ratio */
	padding-top: 56.25%; /* 16:9 aspect ratio */
}


/* item
---------------------------------------------------- */
.indexSlide .item {
	width: 100%;
	height: 390px; /* js: auto viewport height */
	
	box-sizing: border-box;
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;

	background-size: cover !important;
	background-position: center center;
	position: relative;
	float: left;
	cursor: grab;
}
.indexSlide .item .contentWrapper {
	position: relative;
	height: 335px;
}
.indexSlide .item .teaser {
	position: absolute;
	bottom: 50px;
	width: 60%;
	left: 0px;
	background-color: rgba(255,255,255,1);
	padding: 20px 20px 20px 20px;
}
.indexSlide .item .content a {
	color: #ffffff;
}
.indexSlide .item .content .title {}
.indexSlide .item .content .teaser {}


/* pagination
---------------------------------------------------- */
.indexSlide .sliderPagination {
	position: absolute;
	top: 10px;
	right: 10px;
	z-index: 4;
}
.indexSlide .sliderPagination .swiper-pagination-bullet {
	width: 10px;
	height: 10px;
	background-color: #000000;
	opacity: 0.5;
	margin: 0px 2px 0px 2px;
}
.indexSlide .sliderPagination .swiper-pagination-bullet:hover {
	background-color: #000000;
	opacity: 1;
}
.indexSlide .sliderPagination .swiper-pagination-bullet-active {
	background-color: #ffffff;
	opacity: 1;
}


/* prev/next
---------------------------------------------------- */
.indexSlide .sliderArrow {
	width: 100%;
	position: absolute;
	top: 50%;
	z-index: 5;
}
.indexSlide .next, .indexSlide .prev {
	background-repeat: no-repeat;
	background-position: center;
	cursor: pointer;
	width: 45px;
	height: 45px;
	opacity: 0.5;
	position: absolute;
	margin: -22px 0px 0px 0px;
}
.indexSlide .next:hover, .indexSlide .prev:hover {
	opacity: 1;
}
.indexSlide .next::after,
.indexSlide .prev::after {
	content: "\f105";
	font-family: FontAwesome;
	width: 45px;
	font-size: 50px;
	line-height: 45px;	
	text-align: center;
	display: block;
	color: #ffffff;
	text-shadow: 3px 3px 6px rgba(0,0,0,0.8);
}
.indexSlide .next {
	right: 0px;
}
.indexSlide .next::after {
	content: "\f105";
}
.indexSlide .prev {
	left: 0px;
}
.indexSlide .prev::after {
	content: "\f104";
}

