.view img {
    max-width: 100%;
    height: auto;
}
.view {
    width: 300px;
    overflow: hidden;
    position: relative;
    text-align: center;
    cursor: default;
    background: #fff url(../images/bgimg.jpg) repeat center center;
}
.view .mask, .view .content {
    width: 100%;
    height: 100%;
    position: absolute;
    overflow: hidden;
    top: 0;
    left: 0
}
.view img {
    display: block;
    position: relative
}

.view p {
    font-family: Georgia, serif;
    font-style: italic;
    font-size: 0.9em;
    position: relative;
    padding: 7% 4% 5% 5%;
    text-align: center
}
.view a.info {
    display: inline-block;
    text-decoration: none;
    padding: 1% 4%;
    margin-left: 3%;
    background: none repeat scroll 0% 0% #212121;
    color: #fff;
    text-transform: uppercase;
    font-family: "Yanone Kaffeesatz",Arial,Helvetica,sans-serif;
    font-size: 1.1em;
}
.view a.info:hover {
    background: #FFF67A;
    color: #666;
}
.view-tenth img { 
    transform: scaleY(1);
    transition: all 0.4s ease-in-out;
}
.view-tenth .mask { 
    background-color: rgba(201, 201, 201, 0.3); 
    transition: all 0.4s linear;
    opacity: 0;
}   
.view-tenth h2{
    border-bottom: 1px solid rgba(0, 0, 0, 0.3);
    background: transparent;
    margin: 20px 40px 0px 40px;
    transform: scale(0);
    color: #333;
    transition: all 0.5s linear;
    opacity: 0;
}
.view-tenth p {
    color: #333;
    opacity: 0;
    transform: scale(0);
    transition: all 0.5s linear;
}
.view-tenth a.info { 
    opacity: 0;
    transform: scale(0);
    transition: all 0.5s linear;
}
.view-tenth:hover img { 
    transform: scale(10);
    opacity: 0;
}
.view-tenth:hover .mask { 
    opacity: 1;
}                                                                            
.view-tenth:hover h2,
.view-tenth:hover p,
.view-tenth:hover a.info{ 
    transform: scale(1);
    opacity: 1;
}
.view-first img { 
    transition: all 0.2s linear;
}
.view-first .mask {
    opacity: 0;
    background-color: rgba(201,201,201, 0.7); 
    transition: all 0.4s ease-in-out;
}
.view-first h2 {
    transform: translateY(-100px);
    opacity: 0;
    transition: all 0.2s ease-in-out;
}
.view-first p { 
    transform: translateY(100px);
    opacity: 0;
    transition: all 0.2s linear;
}
.view-first a.info{
    opacity: 0;
    transition: all 0.2s ease-in-out;
}
.view-first:hover img { 
    transform: scale(1.1);
    
} 
.view-first:hover .mask { 
    opacity: 1;
}
.view-first:hover h2,
.view-first:hover p,
.view-first:hover a.info {
    opacity: 1;
    transform: translateY(0px);
}
.view-first:hover p {
    transition-delay: 0.1s;
}
.view-first:hover a.info {
    /*transition-delay: 0.1s;*/
}
.view-fifth img {
    transition: all 0.3s ease-in-out; 
}
.view-fifth .mask { 
    background-color: rgba(201,201,201,0.3);
    transform: translateX(-300px);
    opacity: 1;
    transition: all 0.4s ease-in-out; 
}
.view-fifth h2{
    background: rgba(255, 255, 255, 0.5);
    color: #000;
    box-shadow: 0px 1px 3px rgba(159, 141, 140, 0.5);
}
.view-fifth:hover .mask { 
    transform: translateX(0px);
}                       
.view-fifth:hover img { 
    transform: translateX(300px);
    transition-delay: 0.1s;
}
.view-fifth:hover p{
    opacity: 1;
    transition-delay: 0.4s;
}