/* FUTURED IMAGES HOVER */

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;
	z-index: 5;
	width: 100%;
	height: 100%;
	opacity: 0;
	transition: all 0.3s linear;
	-webkit-transition: all 0.3s linear;
}

body .blog article .post-featured-content>a:hover:before,
body .blog .gem-simple-gallery .gem-gallery-item a:hover:before {
	opacity: 1;
	transition: all 0.3s linear;
	-webkit-transition: all 0.3s linear;
}

body .blog article .post-featured-content>a:after,
body .blog .gem-simple-gallery .gem-gallery-item a:after {
	content: '\e628';
	position: absolute;
	top: 150%;
	left: 50%;
	width: 70px;
	height: 70px;
	border-radius: 50%;
	font-family: 'thegem-icons';
	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 0.4s, opacity 0.4s, -webkit-transform 0s 0.4s;
	transition: top 0.4s, opacity 0.4s, transform 0s 0.4s;
	z-index: 10;
}