@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;
	position: relative;
}

.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;
}

#prev-slide, #next-slide {
	position: absolute;
	z-index: 51;
	height: 100%;
	width: 20px;
	top: 0;
	background-color: rgba(0, 0, 0, 0.5);
	opacity: 0;
	display: table;
	padding: 25px;
	margin: 0;
	cursor: pointer;
}
#prev-slide span, #next-slide span {
	display: table-cell;
	vertical-align: middle;
	color: whitesmoke;
}

#prev-slide {
	left: 0;
	text-align: left;
	background: -moz-linear-gradient(left,  rgba(0,0,0,1) 0%, rgba(0,0,0,0) 100%);
	background: -webkit-linear-gradient(left,  rgba(0,0,0,1) 0%,rgba(0,0,0,0) 100%);
	background: linear-gradient(to right,  rgba(0,0,0,1) 0%,rgba(0,0,0,0) 100%);
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#000000', endColorstr='#00000000',GradientType=1 );
}
#next-slide {
	right: 0;
	text-align: right;
	background: -moz-linear-gradient(left,  rgba(0,0,0,0) 0%, rgba(0,0,0,1) 98%, rgba(0,0,0,1) 100%);
	background: -webkit-linear-gradient(left,  rgba(0,0,0,0) 0%,rgba(0,0,0,1) 98%,rgba(0,0,0,1) 100%);
	background: linear-gradient(to right,  rgba(0,0,0,0) 0%,rgba(0,0,0,1) 98%,rgba(0,0,0,1) 100%);
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#00000000', endColorstr='#000000',GradientType=1 );
}
.arrow {
	border: solid white;
	border-width: 0 5px 5px 0;
	display: inline-block;
	padding: 10px;
}

.right {
	transform: rotate(-45deg);
	-webkit-transform: rotate(-45deg);
	margin-right: 7px;
}

.left {
	transform: rotate(135deg);
	-webkit-transform: rotate(135deg);
	margin-left: 7px;
}

figure.slider { 
	position: relative;
	font-size: 0;
	width: 100%;
}

figure.slider li { 
	position: absolute;
	display: block;
	height: 220px;
	width: 100%;
}

figure.slider li a {
	display: block;
	height: 100%;
}

figure.slider img {
	width: 100%;
	height: 220px;
	position: relative;
	object-fit: cover;
	object-position: center center;
	filter: blur(0px);
	-webkit-filter: blur(0px);
	-moz-filter: blur(0px);
	-o-filter: blur(0px);
	-ms-filter: blur(0px);
	filter:progid:DXImageTransform.Microsoft.Blur(PixelRadius='0');
	transition: 0.3s filter linear;
	-webkit-transition: 0.3s -webkit-filter linear;
  	-o-transition: 0.3s -o-filter linear;
}
figure.slider img.blur {
	filter: blur(20px);
	-webkit-filter: blur(20px);
	-moz-filter: blur(20px);
	-o-filter: blur(20px);
	-ms-filter: blur(20px);
	filter:progid:DXImageTransform.Microsoft.Blur(PixelRadius='2');
}

figure.slider figcaption {
	display: block;
	position: absolute;
	bottom: 0;
	background: rgba(0,0,0,0.4);
	color: #fff;
	width: 100%;
	font-size: 18px;
	padding: 15px;
	text-align: center;
	/* top: 180px; */
	height: 50px;
	letter-spacing: .02em;
}

#captioned-gallery:hover #prev-slide,
#captioned-gallery:hover #next-slide {
	opacity: 0.2;
}
#captioned-gallery:hover #prev-slide:hover,
#captioned-gallery:hover #next-slide:hover {
	opacity: 0.7;
}
#captioned-gallery img,
#captioned-gallery figcaption {
	opacity: 0.9;
}
#captioned-gallery:hover img,
#captioned-gallery:hover figcaption {
	opacity: 1;
}


/*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;
	}

	#prev-slide {
		left: 0;
	}
	#next-slide {
		right: 0;
	}

	.arrow {
		border-width: 0 7px 7px 0;
	}

	.slider {
		width: 100%;
	}

	figure.slider li { 
		height: 330px;
	}

	figure.slider img {
		height: 330px;
	}

	figure.slider figcaption { 
		/* top: 280px; */
		height: 50px;
		font-size: 24px;
		padding: 12px;
		letter-spacing: .05em;
		word-spacing: .05em;
	}
	
}

/*Desktop View*/

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

	div#captioned-gallery { 
		width: auto;
		/* max-width: 1200px; */
		max-width: 2400px;
		margin-left: auto;
		margin-right: auto;
		height: 500px;
	}

	#prev-slide,
	#next-slide {
		width: 200px;
	}

	figure.slider li { 
		height: 500px;
	}

	figure.slider img {
		height: 500px;
	}

	figure.slider figcaption { 
		font-size: 30px;
		padding: 9px;
		letter-spacing: .1em;
		word-spacing: .1em;
	}
}
/*Desktop XL View*/
@media (min-width: 1200px){
	#prev-slide {
		left: calc((100vw - 1200px) / 2);
	}
	#next-slide {
		right: calc((100vw - 1200px) / 2);
	}
	#prev-slide::before,
	#next-slide::after {
		content: " ";
		display: block;
		position: absolute;
		width: calc((100vw - 1200px) / 2);
		height: 100%;
		background-color: rgba(0, 0, 0, 1);
		top: 0;
	}
	#prev-slide::before {
		left: calc( (1200px - 100vw) / 2);
	}
	#next-slide::after {
		right: calc( (1200px - 100vw) / 2);
	}
}