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


.grid {
	position: relative;
	margin: 0 auto;
	padding: 0;
	max-width: 1200px;
	list-style: none;
	text-align: center;
}

/* Common style */
.effect-chico {
	position: relative;
	display:inline-block;
	overflow: hidden;
	margin: 20px 15px;
	text-align: center;
	cursor: pointer;
	background:#303030;
	border:1px #e5e5e5 solid;
}

.effect-chico:nth-child(3n+1) {margin-left:0;}
.effect-chico:nth-child(3n) {margin-right:0;}

.effect-chico img {

	display: block;
	height: 100%;
	width: 100%;
	opacity: 1;
}

.effect-chico .figcaption {
	padding: 2em;
	color: #fff;
	font-size: 1.25em;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}

.effect-chico .figcaption::before,
.effect-chico .figcaption::after {
	pointer-events: none;
}

.effect-chico .figcaption,
.effect-chico .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 */
.effect-chico .figcaption > a {
	z-index: 1000;
	text-indent: 200%;
	white-space: nowrap;
	font-size: 0;
	opacity: 0;
}


/* Individual effects */


/*---------------*/
/***** Chico *****/
/*---------------*/

div.effect-chico img {
	-webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
	transition: opacity 0.35s, transform 0.35s;
	-webkit-transform: scale(1);
	transform: scale(1);
}

div.effect-chico:hover img, div.effect-chico:active img {
	opacity: 0.3;
	-webkit-transform: scale(1.1);
	transform: scale(1.1);
}

div.effect-chico .figcaption {
	padding: 1em;
}

div.effect-chico .figcaption::before {
	position: absolute;
	top: 10px;
	right: 10px;
	bottom: 10px;
	left: 10px;
	content: '';
	-webkit-transform: scale(1.1);
	transform: scale(1.1);
}

div.effect-chico .figcaption::before,
div.effect-chico p, div.effect-chico h2 {
	opacity: 0;
	-webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
	transition: opacity 0.35s, transform 0.35s;
}

div.effect-chico h2 {
	text-align:left;
	-webkit-transition: -webkit-transform 0.35s;
	transition: transform 0.35s;
	-webkit-transform: translate3d(0,-20px,0);
	transform: translate3d(0,-20px,0);
	color:#fff;
	letter-spacing:0 !important;
	font-size:24px;
	font-weight:bold;
	line-height:150%;
}

div.effect-chico p {
	max-width: 200px;
	-webkit-transform: scale(1.5);
	transform: scale(1.5);
	color:#fff;
	bottom:0;
	font-size:60px;
	position:absolute;
	right:20px;
	color:#ff8400;
}

div.effect-chico:hover .figcaption::before,div.effect-chico:hover h2,
div.effect-chico:hover p {
	opacity: 1;
	-webkit-transform: scale(1);
	transform: scale(1);
}
div.effect-chico:active .figcaption::before,div.effect-chico:active h2,
div.effect-chico:active p {
	opacity: 1;
	-webkit-transform: scale(1);
	transform: scale(1);
}
@media screen and (max-width: 50em) {
	.content {
		padding: 0 10px;
		text-align: center;
	}
	.effect-chico {
		display: inline-block;
		float: none;
		margin: 10px auto;
		/*width: 100%;*/
	}
}