/* SERVICE BOX STYLE1 */

.serviceBox.style1 .imageContainer { position: relative; }
.serviceBox.style1 .imageContainer img { 	
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	
	border: 5px solid #ccc; 
	
	position: relative; 
	z-index: 1;
}
.serviceBox.style1 .imageContainer:before {
	content: '';
	position: absolute;
	top: 5px;
	left: 5px;
	right: 5px;
	bottom: 5px;
	background: rgba(0,0,0,.4) url(../../img/eye-icon.png) center center no-repeat;
	background-size: 32px 32px;
	z-index: 3;
	width: auto;
	height: auto;
	opacity: 0;
	
	-moz-transition: all 0.2s linear;
	-o-transition: all 0.2s linear;
	-ms-transition: all 0.2s linear;
	-webkit-transition: all 0.2s linear;
	transition: all 0.2s linear;
}
.serviceBox.style1:hover .imageContainer:before { opacity: 1; }
.serviceBox.style1:hover .imageContainer img { 
	border: 5px solid #52BFD3; 
}


.serviceBox.style1 h4 { 
	color: #666; 
	text-transform: none;
	font-weight: 400; 
}

.serviceBox.style1 p {
	color: #666;
}

.serviceBox.style1 .shadow {
	height: 25px;
	margin-bottom: 0;
}