/**
 * SERVICES
 */
.services-box-dropshadow {
	height: 340px;
	-webkit-box-shadow: -2px 2px 15px 5px rgba(128,128,128,0.26);
	-moz-box-shadow: -2px 2px 15px 5px rgba(128,128,128,0.26);
	box-shadow: -2px 2px 15px 5px rgba(128,128,128,0.26);
}
.services-box {
	float: left;
	width: 20%;
	height: 170px;
	border: 1px solid #E3E3E3;
	color: #464646;
	font-weight: 900;
	font-family: sans-serif;
	text-align: center;
	padding: 25px;
}
.services-box-image {
    background-repeat: no-repeat;
    background-position: 50%;
    height: 80px;
    position: relative;
}
.services-box-image img {
    max-height: 100%;
    position: absolute;
    top: 50%;
    left: 50%;
    margin-right: -50%;
    transform: translate(-50%, -50%);
}
.services-box-title {
	margin-top:10px;
	line-height:1.2em;
}
.services-box a {
	color: #464646;
}
.services-box a:hover {
	text-decoration: underline;
}


/**
 * RESPONSIVENESS
 */
@media screen and (max-width: 1200px) {
	.services-box-dropshadow {
    	height: 850px;
	}
	.services-box {
		width: 50%;
	}
}
@media screen and (max-width: 360px) {
	.services-box-title {
		font-size: 10px;
	}
}
@media screen and (max-width: 400px) {
	#services-boxes-section {
	    padding: 20px;
    	padding-bottom: 100px;
	}
	.services-box-title {
		font-size: 12px;
	}
}