
/* EFFECT */

 .mask { 
  cursor: pointer;
   width: 221px;
   height: 146px;;
   position: absolute;
   overflow: hidden;
   top: 0;
   left: 0;
  background-color: #000;
  overflow:visible;
  -webkit-transition: all 0.4s ease-in-out;
  -moz-transition: all 0.4s ease-in-out;
  -o-transition: all 0.4s ease-in-out;
  -ms-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;  
  opacity: 0;
   filter:alpha(opacity=0);
   
  /* opacity: 0;
   filter:alpha(opacity=0);
   overflow:visible;
   border:100px solid rgba(0,0,0,0.7);
   -moz-box-sizing:border-box;
   -webkit-box-sizing:border-box;
   box-sizing:border-box;
   -webkit-transition: all 0.4s ease-in-out;
   -moz-transition: all 0.4s ease-in-out;
   -o-transition: all 0.4s ease-in-out;
   -ms-transition: all 0.4s ease-in-out;
   transition: all 0.4s ease-in-out;*/
}



.project:hover .mask {
	
    opacity: 0.8;
    filter:alpha(opacity=80);

   /*opacity: 1;
   filter:alpha(opacity=100);
   border:100px solid rgba(0,0,0,0.8);*/
}
