#services {
	position:relative;
	display: flex;
	flex-wrap:wrap;
	justify-content:space-between;
}

.service-item {
	position:relative;
	width:45%;
	background: #E0E0E0;
	padding:20px;
	margin:20px 20px 0 0;
	box-sizing:border-box;
	flex-grow:1;
}
.service-item  *{
	color:#000;
}
.service-item h4 {
	position:relative;
	width:45%;
	float:left;
	text-align:left;
}
.service-item h4 img {
	display:block;
	width:80%;
	max-width:200px;
	margin-top:20px;
}
.service-item-content {
	margin-left:50%;
	text-align:left;
	font-size:12px;
}
@media only screen and (max-width:1000px){
	.service-item h4 {width:35%;}
	.service-item h4 img {width:100%;}
	.service-item-content {margin-left:40%;}
@media only screen and (max-width:800px){
	.service-item {display:block; width:100%; margin-right:0;}
@media only screen and (max-width:500px){
	.service-item h4 {width:100%;}
	.service-item-content {margin-left:0;}
}
