.has-effect figure {
	position: relative;
	overflow: hidden;
	margin: 0;
	width: 100%;
	background: #000000;
	text-align: center;
	cursor: pointer;
}

.has-effect figure img {
	position: relative;
	display: block;
	opacity: 1;
}

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

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

.has-effect figure figcaption,
.has-effect 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 */

.has-effect figure figcaption > a {
	z-index: 1000;
	text-indent: 200%;
	white-space: nowrap;
	font-size: 0;
	opacity: 0;
}

.has-effect figure h2 {
	word-spacing: -0.15em;
	font-weight: 300;
}

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

.has-effect figure h2,
.has-effect figure p {
	margin: 0;
}

.has-effect figure p {
	letter-spacing: 1px;
}

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

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

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

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

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

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

figure.effect-bubba h2 {
	padding-top: 30%;
	transition: transform 0.35s;
	transform: translate3d(0,-20px,0);
}

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

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

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