.view {
   width: 100%;
   height: 100%;
   overflow: hidden;
   position: relative;
   text-align: center;
   cursor: pointer;
   
}
.view .mask,.view .content {
   width: 100%;
   height: 100%;
   position: absolute;
   overflow: hidden;
   top: 0;
   left: 0;
   text-decoration:none;cursor: pointer;
}
.view img {
   display: block;
   position: relative;
}
.view h2 {
   text-align: center;
   position: relative;
   font-size: 18px;
   margin-top: 35%;
   text-decoration:none;
   background-color:#000;
}
.view-first .mask {
   -ms-filter: "progid: DXImageTransform.Microsoft.Alpha(Opacity=80)";
   filter: alpha(opacity=80);
   opacity: 0.8;
   background-color: rgba(0,0,0,0.8);
   
   -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;
  
}

.view-first:hover .mask {
   cursor: pointer;
   background:none;
}


.view-first img {
   -webkit-transition: all 0.2s linear;
   -moz-transition: all 0.2s linear;
   -o-transition: all 0.2s linear;
   -ms-transition: all 0.2s linear;
   transition: all 0.2s linear;
}


.view-first:hover img {
   -webkit-transform: scale(1.1,1.1);
   -moz-transform: scale(1.1,1.1);
   -o-transform: scale(1.1,1.1);
   -ms-transform: scale(1.1,1.1);
   transform: scale(1.1,1.1);
   cursor: pointer;
}
@media screen and (max-width: 640px) {
.view h2 {
   text-align: center;
   position: relative;
   font-size: 18px;
   margin-top: 5%;
   text-decoration:none;
   background-color:#000;
   font-size:10px!important;
}
}

	