/* CSS3 EFFECTS */

/* SECOND EFFECTS */

.second-effect .mask {
   opacity: 0;
   overflow:visible;
   border:0px 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;
   position: absolute;
   top: 0;
   width: 100%;
   height: 100%;
}
.second-effect a.info {
   position:relative;
   top:-10px;
   opacity:0;
   -moz-transform:scale(0,0);
   -webkit-transform:scale(0,0);
   -o-transform:scale(0,0);
   -ms-transform:scale(0,0);
   transform:scale(0,0);
   -webkit-transition: -webkit-transform 0.2s 0.1s ease-in, opacity 0.1s ease-in-out;
   -moz-transition: -moz-transform 0.2s 0.1s ease-in, opacity 0.1s ease-in-out;
   -o-transition: -o-transform 0.2s 0.1s ease-in, opacity 0.1s ease-in-out;
   -ms-transition: -ms-transform 0.2s 0.1s ease-in, opacity 0.1s ease-in-out;
   transition: transform 0.2s 0.1s ease-in;
}
.second-effect:hover .mask {
   opacity: 1;
   background: rgba(0,0,0,0.7);
   padding: 10% 5%;
   text-align: center;
}
.second-effect:hover a.info {
   opacity:1;
   -moz-transform:scale(1,1);
   -webkit-transform:scale(1,1);
   -o-transform:scale(1,1);
   -ms-transform:scale(1,1);
   transform:scale(1,1);
   -moz-transition-delay:0.3s;
   -webkit-transition-delay:0.3s;
   -o-transition-delay:0.3s;
   -ms-transition-delay:0.3s;
   transition-delay:0.3s;
}

.second-effect:hover img
{
   background-size: 150%;
}
/*
.view {
   width: 300px;
   height: 200px;
   margin: 10px;
   float: left;
   border: 5px solid #fff;
   overflow: hidden;
   position: relative;
   text-align: center;
   box-shadow: 0px 0px 5px #aaa;
   cursor: default;
}
.view img {
   display: block;
   position: relative;
}
*/

.view .mask, .view .content {
   /* width: 100%; */
   /* height: 100%; */
   position: absolute;
   overflow: hidden;
   top: 0;
   left: 0;
}


.view a.info {
   /* background:url(../img/link.png) center no-repeat; */
   display: inline-block;
   text-decoration: none;
   padding: 10px 20px;
   /* text-indent:-9999px; */
   /* width:20px; */
   /* height:20px; */
   /* float: right; */
   bottom: 0;
   margin-top: 15px;
   background-image: none;
   border-radius: 0;
   box-shadow: none;
   background-color: #d00b2b;
}


.view .mask h1, .view .mask h2, .view .mask p {
   color: #E8E8E8;
   font-family: Open sans;
   font-weight: 600;
}

.view .mask h1 {
    font-size: 20px;

    /* line-height: 10px; */
    margin-top: 0px;
    text-transform: uppercase;
}

.view .mask h2 {
    font-size: 12px;

    margin-top: -7px;
    font-weight: 100;
    letter-spacing: 3px;
    color: #BBB;
}

.view .mask p {
    font-weight: 100;

    text-align: left;
    /* width: 340px; */
}