.grid li a {
   /*width: 100%;
   margin: 0;
   float: left;*/
   overflow: hidden;
   position: relative;
   text-align: center;
   cursor: default;
   background: #000;
    
}
.grid li a {
 cursor: pointer;   
}
.grid li a img {
   -webkit-transform: scaleY(1);
   -moz-transform: scaleY(1);
   -o-transform: scaleY(1);
   -ms-transform: scaleY(1);
   transform: scaleY(1);
   -webkit-transition: all 0.5s ease-in-out;
   -moz-transition: all 0.5s ease-in-out;
   -o-transition: all 0.5s ease-in-out;
   -ms-transition: all 0.5s ease-in-out;
   transition: all 0.5s ease-in-out;
}
.grid li a:hover img {
   -webkit-transform: scale(1.1);
   -moz-transform: scale(1.1);
   -o-transform: scale(1.1);
   -ms-transform: scale(1.1);
   transform: scale(1.1);
   -ms-filter: "progid: DXImageTransform.Microsoft.Alpha(Opacity=0)";
   filter: alpha(opacity=0);
   opacity: 0.3;
}
.grid li .title {
    padding: 0;
    text-align: center;
    position: absolute;
    left: 50%;
    top: -10px;
    opacity: 0;
    -moz-transition: all .5s ease;
    -webkit-transition: all .5s ease;
    transition: all .5s ease;
    z-index: 8;
    transform: translate(-50%,-30%);
    width: 80%;
    color: #dedede;
    font-size: 15px;
    line-height: 18px;
    /*font-family: "Lora", serif;*/
    text-align: center !important;
}
.grid li:hover .title {
    top: 35%;
    opacity: 1;
}
.grid li .line {
    padding: 0;
    text-align: center;
    position: absolute;
    left: 50%;
    bottom: -40px;
    opacity: 1;
    -moz-transition: all .3s ease;
    -webkit-transition: all .3s ease;
    transition: all .3s ease;
    z-index: 9;
    transform: translate(-50%,-50%);
    width: 60px;
    height: 2px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.5);
}
.grid li:hover .line {
    bottom:20%;
    opacity: 1;
}

.grid li .viewlarger {
    padding: 0;
    text-align: center;
    position: absolute;
    left: 50%;
    bottom: -80px;
    opacity: 1;
    -moz-transition: all .6s ease;
    -webkit-transition: all .6s ease;
    transition: all .6s ease;
    z-index: 9;
    transform: translate(-50%,-50%);
    width: 50%;
    text-transform: uppercase;
    font-size: 11px;
    color:#626262;
    
}
.grid li:hover .viewlarger {
    bottom: 0;
    opacity: 1;
}
