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