*, *:after, *:before { -webkit-box-sizing: border-box; box-sizing: border-box; }
.clearfix:before, .clearfix:after { display: table; content: ''; }
.clearfix:after { clear: both; }


/* Common style */
.col figure {
    cursor: pointer;
    float: left;
    margin: 10px 0;
    max-height: 200px;
    max-width: 100%;
    /*min-width: 320px;*/
    overflow: hidden;
    position: relative;
    text-align: center;
    width: 100%;
    height: 200px;
}
.col figure img {
	position: relative;
	display: block;
	min-height: 100%;
	max-width: 100%;
	opacity: 0.8;
	min-width: 411px;

}

.col figure figcaption {
	padding: 2em;
	color: #fff;
	font-size: 0.8em;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}

.col figure figcaption::before,
.col figure figcaption::after {
	pointer-events: none;
}

.col figure figcaption,
.col figure figcaption > a {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

/* Anchor will cover the whole item by default */
/* For some effects it will show as a button */


/*---------------*/
/***** Oscar *****/
/*---------------*/

figure.effect-oscar {
	background: rgba(42,52,98,1);
}

figure.effect-oscar img {
	opacity: 0.9;
	-webkit-transition: opacity 0.2s;
	transition: opacity 0.2s;
}

figure.effect-oscar figcaption{
	/*padding: 14%;*/
	background-color: rgba(49,120,65,0.9);
	-webkit-transition: background-color 0.2s;
	transition: background-color 0.2s;
}

figure.fxadm  figcaption {
	/*padding: 14%;*/
	background-color: rgba(42,52,98,0.8);
	-webkit-transition: background-color 0.2s;
	transition: background-color 0.2s;
}

figure.effect-oscar figcaption::before {
	position: absolute;
	top: 30px;
	right: 30px;
	bottom: 30px;
	left: 30px;
	border: 1px solid #fff;
	content: '';
}

figure.effect-oscar h2 {
	/*margin: 6% 0 10px 0;*/
	-webkit-transition: -webkit-transform 0.2s;
	transition: transform 0.2s;
	-webkit-transform: scale(1);
	transform: scale(1);
	color: #fff;
	font-weight: 400;
	font-size: 1.5em;
	text-transform: uppercase;
}

figure.effect-oscar figcaption::before,
figure.effect-oscar p {
	opacity: 0;
	-webkit-transition: opacity 0.2s, -webkit-transform 0.2s;
	transition: opacity 0.2s, transform 0.2s;
	-webkit-transform: scale(0);
	transform: scale(0);
}

figure.effect-oscar:hover h2 {
	-webkit-transform: scale(1.2);
	transform: scale(1.2);
}

figure.effect-oscar:hover figcaption::before,
figure.effect-oscar:hover p {
	opacity: 1;
	-webkit-transform: scale(1);
	transform: scale(1);
}

figure.effect-oscar:hover figcaption {
	background-color: rgba(58,52,42,0);
}

figure.effect-oscar:hover img {
	opacity: 0.4;
}


@media screen and (max-width: 50em) {
	.content {
		padding: 0 10px;
		text-align: center;
	}
	.col figure {
		display: inline-block;
		float: none;
		margin: 10px auto;
		width: 100%;
	}
}