.view {
    width: 90%;
    height: 240px;
    /*margin: 10px;*/
    border: 2px solid transparent;
    overflow: hidden;
    position: relative;
    text-align: center;
    cursor: default;
	box-shadow: 0 0 10px #000;
}
.view:hover {
	border: 2px solid #333;
	box-shadow: 0px 0px 10px #fff;
	transition: all 1.2s ease-in-out;
}
.view .mask, .view .content {
    width: 100%;
    height: 250px;
    position: absolute;
    overflow: hidden;
    top: 0;
    left: 0
}
.view img {
    /*display: block;*/
    position: relative;
	width:85%;
}
.view h1 {
    /*text-transform: uppercase;*/
    color: #fff;
    text-align: center;
    position: relative;
    font-size: 24px;
    padding: 10px;
    background: #53311d;
    margin: 26px 0 0 0;
	text-shadow:0px 0px 4px #000;
}
.view p {
    font-style: italic;
    font-size: 16px;
    position: relative;
    color: #000;
    padding: 10px 20px 20px;
    text-align: center;
	font-weight:bold;
}
.view a.info {
    display: inline-block;
    text-decoration: none;
    padding: 5px 14px;
    background: #ccc;
    color: #000;
    /*text-transform: uppercase;*/
    box-shadow: 0 0 1px #000;
	font-size: 14px;
}
.login {
    display: inline-block;
    text-decoration: none;
    padding: 7px 14px;
    background: rgba(0,0,0,0.8);
    color: #fff;
    text-transform: uppercase;
    box-shadow: 0 0 1px #000
}

.view a.info:hover {
    /*box-shadow: 0 0 5px #000*/
	box-shadow: inset 0 0 1px #000;
}
.view-first img {
    transition: all 0.6s linear;
	width:100%;
	height:100%;
}
.view-first .mask {
    /*opacity: 0;*/
	opacity: 1;
    /*background-color: rgba(255,255,255, 0.6);*/
    transition: all 1.2s ease-in-out;
}
.view-first h1 {
    transform: translateY(-100px);
    opacity: 0;
    transition: all 0.6s ease-in-out;
}
.view-first p { 
    transform: translateY(100px);
    opacity: 0;
    transition: all 0.6s linear;
}
.view-first a.info{
    opacity: 0;
    transition: all 0.6s ease-in-out;
}
/*.view-first:hover img { 
    transform: scale(1.3);
} 
.view-first:hover .mask { 
    opacity: 1;
}
.view-first:hover h1,
.view-first:hover p,
.view-first:hover a.info {
    opacity: 1;
    transform: translateY(0px);
}
.view-first:hover p {
    transition-delay: 0.3s;
}
.view-first:hover a.info {
   transition-delay: 0.6s;
}*/
.view-first a.info {
   transition-delay: 0.6s;
   opacity:1;
	bottom: 13px;
    position: absolute;
    left: 50%;
    margin-left: -40px;
}