h2 {
	
}

/* Common style */
figure {
	position: relative;
	float: left;
	overflow: hidden;
	text-align: center;
	cursor: default;	
	display:block;
	margin:0;
	width:100%;
}

figure img {
	position: relative;
	display: block;
	height: auto;
	max-width: 100%;
	opacity: 0.8;
}

figure figcaption {
	padding: 2em;
	color: #fff;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}

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

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

figure h2 {
	font-size: 16px;
	border-bottom:#fff 1px solid;
	text-transform: uppercase;
	display:inline-block;
	font-weight:normal;
	padding-bottom:2px;
	font-family:'sinkin_sans400_regular', Arial, Helvetica, sans-serif;
	text-shadow: 1px 1px 1px #000;
}

figure h2 span {
	text-transform:none;
	font-size: 14px;
}

figure h2,
figure p {
	margin: 0;
}

figure p {
	font-size: 14px;
	line-height:14px;
}

figure p a:link, figure p a:active, figure p a:visited{
	font-family:'sinkin_sans400_light', Arial, Helvetica, sans-serif;
	color:#fff;
	text-shadow: 1px 1px 1px #000;
}
figure p a:hover{
	color:#fff;
}



/*---------------*/
/***** Bubba *****/
/*---------------*/

figure.effect-bubba {
	background: #683500;
}

figure.effect-bubba img {
	opacity: 0.65;
	-webkit-transition: opacity 0.35s;
	transition: opacity 0.35s;
}

figure.effect-bubba:hover img {
	opacity: 0.2;
}

figure.effect-bubba figcaption::before,
figure.effect-bubba figcaption::after {
	position: absolute;
	top: 10px;
	right: 10px;
	bottom: 10px;
	left: 10px;
	content: '';
	opacity: 0;
	-webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
	transition: opacity 0.35s, transform 0.35s;
}

figure.effect-bubba figcaption::before {
	border-top: 1px solid #fff;
	border-bottom: 1px solid #fff;
	-webkit-transform: scale(0,1);
	transform: scale(0,1);
}

figure.effect-bubba figcaption::after {
	border-right: 1px solid #fff;
	border-left: 1px solid #fff;
	-webkit-transform: scale(1,0);
	transform: scale(1,0);
}

figure.effect-bubba h2 {
	padding-top: 15%;
	-webkit-transition: -webkit-transform 0.35s;
	transition: transform 0.35s;
	-webkit-transform: translate3d(0,-10%,0);
	transform: translate3d(0,-10%,0);
}

figure.effect-bubba p {
	padding: 15px 10px;
	opacity: 0;
	-webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
	transition: opacity 0.35s, transform 0.35s;
	-webkit-transform: translate3d(0,20px,0);
	transform: translate3d(0,20px,0);
}

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

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


@media screen and (max-width: 767px) {
	figure h2 {
		font-size: 12px;
		line-height:14px;
	}
	figure p {
		font-size: 11px;
		line-height:11px;
	}
	figure.effect-bubba p {
		padding: 10px 10px;
	}
}

@media screen and (max-width: 480px) {
	figure h2 {
		font-size: 10px;
		line-height:12px;
	}
	figure p {
		font-size: 11px;
		line-height:11px;
	}
	figure.effect-bubba p {
		padding: 10px 10px;
	}
	figure.effect-bubba figcaption::before,
	figure.effect-bubba figcaption::after {
		top: 5px;
		right: 5px;
		bottom: 5px;
		left: 5px;
	}
}