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

/* Common style */
.grid figure {
	position: relative;
	float: left;
	overflow: hidden;
	margin: 10px 1%;
	min-width: 230px;
	max-width: 230px;
	max-height: 80px;
	width: 100%;
	height: auto;
	background: #000;
	text-align: center;
	cursor: pointer;
}

.grid figure img {
	position: relative;
	display: block;
	min-height: 100%;
	max-width: 100%;
	opacity: 1;
}
.availimg .grid figure img {
    padding:0px;
}

.grid figure figcaption {
	padding: 2em;
	color: #fff;
	text-transform: uppercase;
	font-size: 1.25em;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}

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

.grid figure figcaption{
	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 */
/*
.grid figure figcaption > a {
	z-index: 1000;
	text-indent: 200%;
	white-space: nowrap;
	font-size: 0;
	opacity: 0;
}
*/
.grid figure:hover a{
    color:#fff!important;
    cursor:pointer;
}
.grid figure h2 {
	word-spacing: -0.15em;
	font-weight: 300;
}

.grid figure h2 span {
	font-weight: 800;
}

.grid figure h2,
.grid figure p {
	margin: 0;
}

.grid figure p {
	letter-spacing: 1px;
	font-size: 68.5%;
}

/* Individual effects */


/*-----------------*/
/***** Terry *****/
/*-----------------*/

figure.effect-terry {
	background: #000;
}

figure.effect-terry figcaption {
	padding: .5em;
}
/*,
figure.effect-terry figcaption::after*/
figure.effect-terry figcaption::before {
	position: absolute;
	width: 100%;
	height: 100%;
	border-style: solid;
	border-color: #101010;
	content: '';
	-webkit-transition: -webkit-transform 0.35s;
	transition: transform 0.35s;
}

figure.effect-terry figcaption::before {
	left: 0;
	bottom: 0;
	border-width: 0 0 0 100px;
	-webkit-transform: translate3d(100px,0px,0);
	transform: translate3d(100px,0px,0);
    left:-100px;
}

figure.effect-terry figcaption::after {
/*
	top: 0;
	left: 0;
	border-width: 1px;
	-webkit-transform: translate3d(-15px,-15px,0);
	transform: translate3d(-15px,-15px,0);
*/
}

figure.effect-terry img,
figure.effect-terry p {
	-webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
	transition: opacity 0.35s, transform 0.35s;
}

figure.effect-terry img {
	opacity: 1;
}

figure.effect-terry h2 {
	position: absolute;
	margin:auto;
	padding: 5px 10px;
	width: 50%;
	-webkit-transition: -webkit-transform 0.35s;
	transition: transform 0.35s;
	-webkit-transform: translate3d(100%,0,0);
	transform: translate3d(100%,0,0);
    opacity:0;
    font-size:2em;
}

@media screen and (max-width: 920px) {
	figure.effect-terry h2 {
		padding: 0.75em 10px;
		font-size: 160%;
	}
}

figure.effect-terry p {
	float: left;
	clear: both;
    width:80px;
	text-align: center;
	text-transform: none;
    font-weight: 400;
    line-height: 1.4em;
}
figure.effect-terry p i{
    font-size: 1.4em;
    margin-top:5px;
}

figure.effect-terry p {
	display: block;
	margin-bottom: 1em;
	color: #fff;
	opacity: 1;
	-webkit-transform: translate3d(100px,0,0);
	transform: translate3d(100px,0,0);
    position:relative;
    left:-100px;
}

/*
figure.effect-terry p:hover,
figure.effect-terry p:focus {
	color: #f3cf3f;
    opacity: 0; 
}
*/


figure.effect-terry:hover figcaption::before,
figure.effect-terry:hover figcaption::after {
	-webkit-transform: translate3d(0,0,0);
	transform: translate3d(0,0,0);
}

figure.effect-terry:hover img {
	opacity: 0.7;

}

figure.effect-terry:hover h2 {
	-webkit-transform: translate3d(40%,0,0);
	transform: translate3d(40%,0,0);
    opacity:1;
}
figure.effect-terry:hover p {
	-webkit-transform: translate3d(0,0,0);
	transform: translate3d(0,0,0);
}






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