/* ---------- slideshow CSS ---------- */
.slideshow {
	width: 100%;
	padding: 0;
	margin: 0;
}
 
/* cycle slide */
.slideshow .cycle-slide {
	position: relative;
	width: 100%;
	max-height: 700px;
	overflow: hidden;
	background: #102151;
}
.slideshow .cycle-slide img {
	display: block;
	width: 100%;
}
/* slide body */
.slideshow .cycle-slide .slide-body {
	position: absolute;
	width: 100%;
	top: 15%;
	z-index: 100;
	opacity: 0;
	margin-left: -50px;
	-webkit-transition: .5s;
	-moz-transition: .5s;
	-o-transition: .5s;
	transition: .5s;
}
.slideshow .cycle-slide.cycle-slide-active .slide-body {
	opacity: 1.0;
	margin: 0;
}
/* slide content */
.slideshow .cycle-slide .slide-content {
	width: 50%;
	margin: 0 auto;
}
.slideshow .cycle-slide .slide-content .content-label {
	position: relative;
	display: inline-block;
	padding: 15px 30px;
	margin: 0;
	background: #fff;
	color: #102151;
	font-size: 1em;
	font-weight: 700;
	letter-spacing: 5px;
	text-transform: uppercase;
}
.slideshow .cycle-slide .slide-content .content-title {
	font-size: 1.6em;
	font-weight: 300;
	line-height: 1.2;
	padding: 20px;
	margin: 0 0 30px;
	background: rgba(143, 142, 142, .8);
	color: #fff;
}
.slideshow .cycle-slide .slide-content .content-btn {
	display: inline-block;
	padding: 12px 50px;
	background: rgba(143, 142, 142, .8);
	color: #fff;
	font-size: 1.2em;
	font-weight: normal;
	border: 2px solid;
	border-radius: 100px;
	text-decoration: none;
}
.slideshow .cycle-slide .slide-content .content-btn:hover {
	background: #fff;
	color: #102151;
	border-color: #fff;
}
 
/* cycle pager */
.slideshow .cycle-pager {
	padding: 30px 0;
	background: #eee;
	text-align: center;
	z-index: 100;
}
.slideshow .cycle-pager span {
	display: inline-block;
	width: 20px;
	height: 20px;
	margin: 0 5px;
	background: #ccc;
	border-radius: 20px;
	text-indent: -9999px;
	cursor: pointer;
}
.slideshow .cycle-pager span:hover {
	background: #666;
}
.slideshow .cycle-pager span.cycle-pager-active {
	background: #102151;
}
 
/* TABLET */
@media screen and (max-width: 1024px) {
 
	.slideshow .cycle-slide .slide-content {
		width: 90%;
	}
 
}
 
/* MOBILE */
@media screen and (max-width: 768px) {
 
	.slideshow .cycle-slide .slide-body {
		top: 10%;
	}
	.slideshow .cycle-slide .slide-content {
		width: 90%;
	}
	.slideshow .cycle-slide .slide-content .content-title {
		font-size: 1.5em;
	}
 
}
 
/* SUPER MOBILE */
@media screen and (max-width: 600px) {
 
	.slideshow .cycle-slide .slide-body {
		position: static;
		padding: 30px;
	}
	.slideshow .cycle-slide .slide-content {
		width: 100%;
		min-height: 300px;
	}
	.slideshow .cycle-slide .slide-content .content-title {
		background: #102151;
		font-size: 1.2em;
	}
 
}