 

   .content-cover {
	text-align: center;
        position: relative;       
        z-index: 1000;
margin: 0;
 
   }
   
   figure.img-content {
	text-align: center;
	position: relative;
	display: inline-block;
	overflow: hidden;
        float:left; 
	margin: 10px 30px 10px 0px;
	min-width: 300px;
	max-width: 300px;
	width: 300px;
	height: 300px; 
	background-color: #000000;
	-webkit-box-shadow: 0 8px 17px 0 rgba(0,0,0,.2), 0 6px 20px 0 rgba(0,0,0,.19);
	box-shadow: 0 8px 17px 0 rgba(0,0,0,.2), 0 6px 20px 0 rgba(0,0,0,.19);
   }


    figure.img-content * {
	-webkit-box-sizing: padding-box;
	box-sizing: padding-box;
	-webkit-transition: all 0.2s ease-out;
	transition: all 0.2s ease-out;
   }
   figure.img-content img {
	max-width: 100%;
	height: 100%;
	vertical-align: top;
   }
   figure.img-content figcaption {
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	align-items: center;
	z-index: 1;
	display: flex;
	flex-direction: column;
	justify-content: center;
	line-height: 1.1em;
	opacity: 0;
   }
   
   figure.img-content:after {
	border: 2px solid #ccc;
	position: absolute;
	content: "";
	display: block;
	top: 50%;
	bottom: 50%;
	left: 0;
	right: 0;
	-webkit-transition: all 0.7s ease-in-out;
	transition: all 0.7s ease-in-out;
	opacity: 0;
   }
   figure.img-content a {
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
	position: absolute;
	z-index: 1;
   }
   figure.img-content:hover img {
	opacity: 0.2;
   }
   figure.img-content:hover:after {
	top: 0;
	bottom: 0;
	opacity: 0.9;
   }
   .img-content h3 {
	font-size: 1.2em;
	font-weight: 400;
	letter-spacing: 1px;
	margin: 0;
	text-transform: uppercase;
	transform: scale(0);
	-webkit-transition: all 1s ease 0s;
	transition: all 1s ease 0s;
   }
   .img-content h3 span {
	display: block;
	font-size: 0.7em;
	font-weight: 400;
	margin-top: 6px;
   }
   .img-content:hover figcaption, .img-content:hover h3 {
	transform: scale(1);
	opacity: 1;
   }
   @media only screen and (max-width:990px) {
	.img-content {
	margin-bottom: 20px;
	}
   } 
