/*=================================*/
/*   Resource Image Hover Styles   */
/*=================================*/

.qResourceImg article {
  position: relative;
	--min-width: 260px;
	--max-width: 480px;
}

.qResourceImg article a img {
	-webkit-transition: opacity 0.35s;
	transition: opacity 0.35s;
}

.qResourceImg article .fsTitle {
  position: absolute;
  top: 80%;
  left: 0;
  width: 100%;
	--opacity: 1;
  text-align: center;
	-webkit-transition: opacity 0.35s;
	transition: opacity 0.35s;
}

.qResourceImg article .fsTitle a {
	color: #FFF;
  font-variant: small-caps;
  font-weight: 400;
  font-size: 22px;
  line-height: 31px;
	margin: 0 10px;
	background: none;
	text-shadow: 1px 1px 2px #333;	
}

.qResourceImg figure {
	background: #030c17;
	border-radius: 11px;
}

.qResourceImg figure img {
	-webkit-transition: opacity 0.35s;
	transition: opacity 0.35s;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}

.qResourceImg article:hover figure img {
	opacity: 0.4;
	-webkit-transform: translate3d(0,0,0);
	transform: translate3d(0,0,0);
}

.qResourceImg article .fsTitle a::after {
	position: absolute;
	bottom: 0;
	left: 0;
	width: 80%;
	height: 3px;
	background: #FFF;
	content: '';
	-webkit-transition: -webkit-transform 0.35s;
	transition: transform 0.35s;
	-webkit-transform: translate3d(-100%,0,0);
	transform: translate3d(-100%,0,0);
}

.qResourceImg article:hover .fsTitle a::after {
	-webkit-transform: translate3d(0,0,0);
	transform: translate3d(0,0,0);
}