/* MOSAIC */
section.mosaic-wrapper {
	position: relative;
	border-bottom: 2px solid #fff;
	border-top: 2px solid #fff;
	display: flex;
	flex-flow: row wrap;
	margin: 0 0 35px;
}
.mosaic-wrapper figure {
	position: relative;
	outline: 2px solid #fff;
	background-color: #000;
	margin: 0;
	padding: 0;
	border: 0;
}
.mosaic-wrapper figure picture img {
	width: 100%;
	height: 100%;
	opacity: .7;
	transition: opacity .6s ease;
}
.mosaic-wrapper figcaption {
	position: absolute;
	top: 54%;
	left: 50%;
	transform: translate(-50%, -50%);
	-ms-transform:translate(-63%, -63%);
	text-align: center;
}
.mosaic-wrapper figure figcaption h3 {
	font-family: 'Sofia Rough W00 Black One', sans-serif;
	font-size: 32px;
	text-transform: uppercase;
	text-shadow: 1px 1px 1px rgba(0,0,0,0.6);
	line-height: 1;
	color: #fff;
	margin-bottom: 0px;
	transition-property: margin-bottom;
	transition-timing-function: ease;
	transition-duration: .6s;
}
.mosaic-wrapper figure figcaption .mo-divider {
	opacity:  0;
	-webkit-transition: -webkit-transform .6s;
	transition-property: margin-bottom, opacity, transform;
	transition-timing-function: ease;
	transition-duration: .6s;
	transform: translateY(19px);
	border: none;
	margin: 0 auto;
	width: 127px;
	height: 5px;
	background-color: #ea5418;
	background-image: url(/includes/public/assets/backgrounds/texture-denim-orange.jpg);
}
.mosaic-wrapper figcaption .mo-link-text {
	font-family: 'Sofia Rough W00 Black One', sans-serif;
	font-size: 18px;
	text-transform: uppercase;
	text-shadow: 1px 1px 1px rgba(0,0,0,0.6);
	text-rendering: optimizeLegibility;
	line-height: 1;
	color: #fff;
	opacity: 0;
	-webkit-transition: -webkit-transform .6s;
	transition-property: opacity, transform;
	transition-timing-function: ease;
	transition-duration: .6s;
	transform: translateY(19px);
}
.mosaic-wrapper figcaption .mo-icon {
	margin: 0px auto 22px;
}
.mosaic-wrapper figure:nth-child(9n+1) {
	flex: 0 0 50%;
}
.mosaic-wrapper figure:nth-child(9n+2) {
	flex: 0 0 25%;
}
.mosaic-wrapper figure:nth-child(9n+3) {
	flex: 0 0 25%;
}
.mosaic-wrapper figure:nth-child(9n+4) {
	flex: 0 0 33.33%;
}
.mosaic-wrapper figure:nth-child(9n+5) {
	flex: 0 0 33.33%;
}
.mosaic-wrapper figure:nth-child(9n+6) {
	flex: 0 0 33.33%;
}
.mosaic-wrapper figure:nth-child(9n+7) {
	flex: 0 0 25%;
}
.mosaic-wrapper figure:nth-child(9n+8) {
	flex: 0 0 25%;
}
.mosaic-wrapper figure:nth-child(9n+9) {
	flex: 0 0 50%;
}
/* hovers */
@media only screen and (min-width: 64.063em) {
	.mosaic-wrapper figure:hover figcaption h3 {
		margin-bottom: 19px;
	}
	.mosaic-wrapper figure:hover figcaption .mo-divider {
		opacity:  1;
		transform: translateY(0);
		margin-bottom:  15px;
	}
	.mosaic-wrapper figure:hover figcaption .mo-link-text {
		opacity: 1;
		transform: translateY(0);
	}
	.mosaic-wrapper figure:hover picture img {
		opacity: .3;
	}
}
@media only screen and (max-width: 64em) {
	.mosaic-wrapper figure figcaption h3 {
		font-size: 20px;
		line-height: 1;
	}
}
@media only screen and (max-width: 40em) {
	section.mosaic-wrapper {
		display: block;
	}
	.mosaic-wrapper img.mo-divider,
	.mosaic-wrapper div.mo-link-text {
		display: none;
	}
	.mosaic-wrapper figure figcaption h3 {
		font-size: 20px;
		line-height: 1;
	}
	.mosaic-wrapper figcaption .mo-icon { margin-bottom: 5px; }
	.mosaic-wrapper figcaption { width: 90%; }
}