body .blog article .post-featured-content > a {
	display: block;
	position: relative;
	overflow: hidden;
}

body .blog article .post-featured-content > a:before, body .blog .gem-simple-gallery .gem-gallery-item a:before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	opacity: 0;
	opacity: 0;
	z-index: 5;
	width: 100%;
	height: 100%;
	transition: all .3s;
	-webkit-transition: all .3s;
}

body .blog article .post-featured-content > a:hover:before, body .blog .gem-simple-gallery .gem-gallery-item a:hover:before {
	opacity: 1;
	transition: all .3s;
	-webkit-transition: all .3s;
}

body .blog article .post-featured-content > a:after, body .blog .gem-simple-gallery .gem-gallery-item a:after {
	content: "";
	position: absolute;
	top: 150%;
	left: 50%;
	width: 70px;
	height: 70px;
	border-radius: 50%;
	font-family: "thegem-icons";
	font-style: normal;
	font-size: 35px;
	line-height: 70px;
	margin-top: -35px;
	margin-left: -35px;
	opacity: 0;
	text-align: center;
	-webkit-transform: scale(0);
	transform: scale(0);
	-webkit-transition: top .4s, opacity .4s, -webkit-transform 0s .4s;
	transition: top .4s, opacity .4s, transform 0s .4s;
	z-index: 10;
}

body .blog article .post-featured-content > a:hover:after, body .blog .gem-simple-gallery .gem-gallery-item a:hover:after {
	opacity: 1;
	top: 50%;
	-webkit-transform: scale(1);
	transform: scale(1);
	-webkit-transition: top 0s, opacity .4s, -webkit-transform .4s;
	transition: top 0s, opacity .4s, transform .4s;
}