.box {
	cursor: pointer;
	height: 180px;
	width: 100%;
	position: relative;
	overflow: hidden;
	background-color:#eee;
	border-radius: 5px;
	margin-bottom: 26px;
}
.box img {
	position: absolute;
	left: 0;
	-webkit-transition: all 300ms ease-out;
	-moz-transition: all 300ms ease-out;
	-o-transition: all 300ms ease-out;
	-ms-transition: all 300ms ease-out;
	transition: all 300ms ease-out;
}
.box .overbox {
	background-color: #2A7884;
	position: absolute;
	top: 0;
	left: 0;
	color: #fff;
	z-index: 100;
	-webkit-transition: all 300ms ease-out;
	-moz-transition: all 300ms ease-out;
	-o-transition: all 300ms ease-out;
	-ms-transition: all 300ms ease-out;
	transition: all 300ms ease-out;
	opacity: 0;
	width: 100%;
	height: 100%;
}

.box .overbox a{
	font-size: 90%;
	color:#FFFFFF !important;
}
.box .overbox  a:hover{
	background: #2A7884; 
	color:#FFFFFF !important;
}

.box:hover .overbox {
	opacity: 1;
}

.box:hover .overbox {
	opacity: 1;
}
.box .overtext {
	-webkit-transition: all 300ms ease-out;
	-moz-transition: all 300ms ease-out;
	-o-transition: all 300ms ease-out;
	-ms-transition: all 300ms ease-out;
	transition: all 300ms ease-out;
	transform: translateY(10px);
	-webkit-transform: translateY(10px);
	margin: auto;
	width: 80%;
	text-align:center;
}
.box .title {
	font-size: 2em;
	text-transform: uppercase;
	opacity: 0;
	transition-delay: 0.1s;
	transition-duration: 0.2s;
	font-weight: bold;
	text-align:center;
}
.box:hover .title, .box:focus .title {
	opacity: 1;
	transform: translateY(0px);
	-webkit-transform: translateY(0px);
}
.box .tagline {
	font-size: 1.2em;
	opacity: 0;
	transition-delay: 0.2s;
	transition-duration: 0.2s;
}
.box:hover .tagline, .box:focus .tagline {
	opacity: 1;
	transform: translateX(0px);
	-webkit-transform: translateX(0px);
}
.box h2 {
	text-align: center !important;
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	width: 80%;
	height: 30%;
	margin: auto;
	font-size: 26px;
}
.box h3 {
	text-align: center;
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	width: 80%;
	height: 30%;
	margin: auto;
}
.boxWrap {
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	width: 100%;
	height: 50%;
	margin: auto;
}
