/* 
* This is a custom stylesheet,
* however it is recommended that if you would like to edit theme code that you do so in a child theme:
* http://codex.wordpress.org/Child_Themes
*/


ul.img-list {
  list-style-type: none;
  margin-top:0;
  padding: 0;
  }
  
 ul.img-list li {
   display:inline-block;
   height:200px;
   margin: 0em 1em 0 0;
   position: relative;
   width:340px;
   }
   
 span.text-content {
   background: rgba(0,0,0,0.5);
   color:#f1b310;
   cursor: pointer;
   display: table;
   height:228px;
   left:0;
   position:absolute;
   top:25px;
   width:340px;
   opacity:0;
   -webkit-transition: opacity 500ms;
  -moz-transition: opacity 500ms;
  -o-transition: opacity 500ms;
  transition: opacity 500ms;
   }
   
 span.text-content h5{
	display: table-cell;
	text-align: center;
	vertical-align:middle;
	padding:0;
	margin:0;
	}

	
   
ul.img-list li:hover span.text-content{
	opacity:1;
}
  