/* CSS Document */

/*---------------*/
/***** Sadie *****/
/*---------------*/

figure.effect-sadie figcaption::before {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;

	content: '';
	opacity: 0;
	-webkit-transform: translate3d(0,50%,0);
	transform: translate3d(0,50%,0);
	background-color:rgba(200,200,200,0.9);
	margin:0;
	text-align:center
}

figure.effect-sadie h2 {
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	color: #fff;
	-webkit-transition: -webkit-transform 0.9s, color 0.9s;
	transition: transform 0.9s, color 0.9s;
	
	-webkit-transform: translate3d(0,0,0);
	transform: translate3d(0,0,0);
	
	background-color:#277f66;
	padding:5px 0 10px 0;
	font-size:14pt;
	font-weight:normal;
}

figure.effect-sadie figcaption::before,
figure.effect-sadie p {
	-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,-80%,0) translate3d(0,-170px,0);
	transform: translate3d(0,-80%,0) translate3d(0,-170px,0);
	background-color:#277f66;
}


figure.effect-sadie p {
	position: absolute;
	bottom: 0;
	left: 0;
	padding: 10px;
	width: 100%;
	opacity: 0;
	-webkit-transform: translate3d(0,10px,0);
	transform: translate3d(0,10px,0);
	background-color:rgba(100,100,100,0.3);
	color:#333
}


figure.effect-sadie:hover figcaption::before ,
figure.effect-sadie:hover p {
	opacity: 1;
	-webkit-transform: translate3d(0,0,0);
	transform: translate3d(0,0,0);
}
