body{
	margin: 0;
	padding: 0;
}
.services{
	background-image: url(bg_back.png);
	text-align: center;
}
.services h1{
	display: inline-block;
	text-transform: uppercase;
	font-size: 30px;
	padding-bottom: 10px;
	margin-top: 10px;
    color:black;
}
.services h4{
    color:black;
}
.cen{
	max-width: 1200px;
	margin: auto;
	overflow: hidden;
	padding: 1px;
}
.service{
	display: inline-block;
	width: calc(100%/3);
	margin: 0 -2px;
	padding: 20px;
	box-sizing: border-box;
	cursor: pointer;
	transition: 0.4s;
    margin-bottom: 10px;
}
.service:hover{
	background: rgba(255,255,255,0.5);
    border-radius: 30px;
    
}
.service i{
	color:#f07f7f;
	font-size: 60px;
	margin-bottom: 30px;
}
.service h2{
	font-size: 18px;
	text-transform: uppercase;
	font-weight: 500;
	margin: 0;
    color:black;
}

.service p{
	color: black;
	font-size: 12px;
	font-weight: 400;
    text-align: center;
}
@media screen and (max-width: 800px){
	.service{
		width: 50%;
	}
}
@media screen and (max-width: 500px){
	.service{
		width: 100%;
	}
}