@charset "UTF-8";
/* CSS Document */


/* Image Overlay */

.img-container {
  position: relative;
  width: 100%;
  
}

.image {
  display: block;
  width: 100%;
  height: auto;
}

.img-overlay {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  height: 100%;
  width: 100%;
  opacity: 0;
  transition: .3s ease;
  background-color: rgba(0,0,0,0.4);
}

.img-container:hover .img-overlay {
  opacity: 1;
}

.absolute-center{
  color: white;
  font-size: 100px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  text-align: center;

}

.category-link {
  color: white;
  font-size: 10px;
  position: absolute;
  bottom: 2%;
  left: 2%;


}	
	
.fa-user:hover {
  color: #eee;

}	
	
