@charset "utf-8";
/* CSS Document */

* {
	box-sizing: border-box;
}

.slide {
	vertical-align: middle;
	width: 100%;
	background-color: rgba(0, 0, 0, 0.60);
	margin-left: auto;
	margin-right: auto;
}

.zone-slide {
	background-position : center center;
	background-size: 1024px;
}

figure {
	margin: 0;
	background: #101010;
	text-transform: uppercase;
	text-shadow: 0 0 6px rgba(0,0,0,0.8);
	font-weight: 100;
}
div#captioned-gallery { 
	width: 100%;
	overflow: hidden;
	max-width: 768px;
	margin-left: auto;
	margin-right: auto;
	height: 220px;
}
figure.slider { 
	position: relative;
	font-size: 0;
}
figure a {
	position: absolute; 
	top: 110px;
}
figure.slider figure { 
	height: auto;
	display: inline-block;
	position: inherit;
}
figure.slider img { 
	width: 100%;
	
	height: auto;
	min-height: 220px;
	
	position: relative; 
  	left: 0; top: 50%; 
  	transform: translate(0, -50%);
}
figure.slider figure figcaption { 
	position: absolute;
	bottom: 0;
	background: rgba(0,0,0,0.4);
	color: #fff;
	width: 100%;
	font-size: 18px;
	padding: 10px;
	text-align: center;
}
figcaption {
	top: 180px;
	height: 50px;
}


/*Tablet View*/

@media (min-width: 768px){
	
	.slide {
		width: 100%;
	}

	div#captioned-gallery { 
		width: 100%;
		max-width: 1024px;
		margin-left: auto;
		margin-right: auto;
		height: 330px;
	}
	figure a {
		position: absolute; 
		top: 165px;
	}
	figure.slider img { 
		position: relative; 
  		top: 50%; left: 0; 
  		transform: translate(0, -50%); 
	}
	figcaption {
		top: 280px;
		height: 50px;
	}
	figure.slider figure figcaption { 
		font-size: 24px;
	}
	
}

/*Desktop View*/

@media (min-width: 1024px){
	
	.slide {
		width: 100%;
	}

	div#captioned-gallery { 
		width: auto;
		max-width: 1200px;
		margin-left: auto;
		margin-right: auto;
		height: 440px;
	}
	figure a {
		position: absolute; 
		top: 220px;
	}
	figure.slider img { 
		position: relative; 
  		top: 50%; left: 0; 
  		transform: translate(0, -50%); 
	}
	figcaption {
		top: 390px;
		height: 55px;
	}
	figure.slider figure figcaption { 
		font-size: 30px;
	}
}