@charset "utf-8";
/* CSS Document */

.view {
    width: 100%;
    height: auto;
    float: left;
    overflow: hidden;
    position: relative;
    text-align: center;
    cursor: default;
	border-left: solid 15px #00578e;
	border-right: solid 15px #00578e;
	border-top: solid 15px #00578e;
	border-bottom: solid 15px #00578e;
}
.view .mask, .view .content {
    width: 100%;
    height: 100%;
    position: absolute;
    overflow: hidden;
    top: 0;
    left: 0
}
.view img {
	width: 100%;
	height: auto;
    display: block;
    position: relative;
	text-align: center;
}
.view h2 {
    text-transform: uppercase;
    color: #fff;
    text-align: center;
	width: 100%;
    font-size: 18.8px;
    padding: 10px 10px 27px 10px;
    background: rgba(0, 87, 142, 1);
    margin: 0 0 0 0;
	z-index: 150;
	opacity: 1 !important;
	border-bottom: solid 4px #FFFFFF;
	height: 35px;
}
.view p {
    font-family: "Helvetica Neue", Helvetica, Arial;
    font-size:23px;
    position: relative;
    color: #fff;
    padding: 20px 20px 20px;
    text-align: center
}
.view a.info {
    display: inline-block;
    text-decoration: none;
    padding: 7px 14px;
    background: #000;
    color: #fff;
	font-size:18px;
    text-transform: uppercase;
    box-shadow: 0 0 1px #000
}
.view a.info:hover {
    box-shadow: 0 0 5px #000
}

.view-first img { 
    transition: all 0.2s linear;
}
.view-first .mask {
    opacity: 0;
    background-color: rgba(246,166,6, 0.9); 
    transition: all 0.4s ease-in-out;
}
.view-first h2 {
    /*transform: translateY(100px);*/
	position: relative;
    opacity: 1 !important;
    transition: all 0.2s ease-in-out;
	margin-top: 1;
}
.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;
}
