.view1 {
    border: 10px solid #FFDAB9;
    overflow: hidden;
	position:absolute;
    text-align: center;
    box-shadow: 1px 1px 2px #e6e6e6;
	margin-left: 57%;
	margin-top: 0;
	background: #ee9966;
   }
   
.view1 .mask1, .view1 .content {
    width: 340px;
    position: absolute;
    overflow: hidden;
    top: 0;
    left: 0;
}

 
.view1 h2 {
    text-transform: uppercase;
    color: #fff;
    text-align: center;
    font-size: 1.2em;
    background: rgba(0, 0, 0, 0.8);
    margin: 20px 0 0 0;
}
.view1 p {
    font-family: Georgia, serif;
    font-style: italic;
    font-size: 0.75em;
    position: relative;
    color: #fff;
    padding: 3px 20px 20px;
    text-align: center;
}
.view1 a.info {
    display: inline-block;
    text-decoration: none;
    padding: 7px 14px;
    background: #000;
    color: #fff;
    text-transform: uppercase;
    box-shadow: 0 0 1px #000
}
.view1 a.info:hover {
    box-shadow: 0 0 5px #000;}
.view1 img {
    transition: all 0.7s ease-in-out;
}
.view1 .mask1 {
    transition: all 0.5s linear;
    opacity: 0;
}   
.view1 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;
}
.view1 p {
    color: #333;
    opacity: 0;
    transition: all 0.5s linear;
}
.view1 a.info {
    transition: all 0.5s linear;
}
.view1:hover img { 
    opacity: 0;
}
.view1:hover .mask1 { 
    opacity: 1;
}                                                                            
.view1:hover h2,
.view1:hover p,
.view1:hover a.info{ 
    opacity: 1;
}