@font-face {
	font-weight: normal;
	font-style: normal;
	font-family: 'feathericons';
	src:url('../fonts/feathericons/feathericons.eot?-8is7zf');
	src:url('../fonts/feathericons/feathericons.eot?#iefix-8is7zf') format('embedded-opentype'),
		url('../fonts/feathericons/feathericons.woff?-8is7zf') format('woff'),
		url('../fonts/feathericons/feathericons.ttf?-8is7zf') format('truetype'),
		url('../fonts/feathericons/feathericons.svg?-8is7zf#feathericons') format('svg');
}

.grid-sadie{
	position: relative;
	width:100%;
	height:100%;
	list-style: none;
	text-align: center;
}

/* Common style */
.grid-sadie figure {
	position: relative;
	overflow: hidden;
	width: 100%;
	height:100%;
	background: #3085a3;
	text-align: center;
	cursor: pointer;
	margin: 0;
}

.grid-sadie figure img {
	position: relative;
	display: block;
	max-width: 100%;
	opacity: 1;
	width: 100%;
}

.grid-sadie figure figcaption {
	padding: 0;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}

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

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

.grid-sadie figure h2 {
	font-size:11px;
	font-weight:700;
	line-height:17px;
	letter-spacing:0.15em;
	color:#ffffff;
	text-transform:uppercase;
	padding:0 20px;
}

.grid-sadie figure h2{
	margin: 0;
}


/* Individual effects */

/*---------------*/
/***** Sadie *****/
/*---------------*/

figure.effect-sadie figcaption::before {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: -webkit-linear-gradient(top, rgba(72,76,97,0) 0%, rgba(0,0,0,0.8) 75%);
	background: linear-gradient(to bottom, rgba(72,76,97,0) 0%, rgba(0,0,0,0.8) 75%);
	content: '';
	opacity: 0;
	-webkit-transform: translate3d(0,50%,0);
	transform: translate3d(0,50%,0);
}
figure.effect-sadie figcaption::after {
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 80px;
	background: -webkit-linear-gradient(top, rgba(72,76,97,0) 0%, rgba(0,0,0,0.8) 75%);
	background: linear-gradient(to bottom, rgba(72,76,97,0) 0%, rgba(0,0,0,0.8) 75%);
	content: '';
	opacity: 1;
	z-index:1;
	
	-webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
	transition: opacity 0.35s, transform 0.35s;
}

figure.effect-sadie h2 {
	position: absolute;
	bottom: 15px;
	z-index: 10;
	left: 0;
	width: 100%;
	-webkit-transition: -webkit-transform 0.35s, color 0.35s;
	transition: transform 0.35s, color 0.35s;
}

figure.effect-sadie figcaption::before{
	-webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
	transition: opacity 0.35s, transform 0.35s;
}


figure.effect-sadie:hover h2 {
	color: #fff;
	-webkit-transform: translate3d(0,-40px,0);
	transform: translate3d(0,-40px,0);
}

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