@charset "utf-8";
/* CSS Document */
.box-service{
	width: 80%;
	padding: 100px;
	margin: auto;
}

.section-header h1{
	position: relative;
	font-family: "Metric Black";
	font-size: 35px;
	font-weight: 500;
	line-height: 40px;
}

/* Descontinuado 
.section-header h1::before{
	position: absolute;
	content: '';
	width: 100%;
	height: 1px;
	left: 0;
	top: calc(100% + 5px);
	background-color: #01A982;
}

*/

.section-header p{
	font-family: "Metric Light";
	font-size: 19px;
	font-weight: 400px;
	line-height: 26px;
}

.service-contents{
	width: 100%;
	display: flex;
	justify-content: space-between;
	
}

.service-box{
	flex-basis: 33,33%;
	padding: 25px 10px;
	cursor: pointer;
	transition: all 0.3s;
}

.service-box:hover{
	box-shadow: 0px 0px 15px rgba(0,0,0,0.1);
}

.service-icon{
	width: 50px;
	height: 50px;
	display: flex;
	justify-content: center;
	align-items: center;
	border-radius: 50%;
	border: 2px solid #01A982;
	
}

.service-icon i{
	font-size: 24px;
	color: #000;
}

.service-desc{
	margin-top: 25px;
}

.service-desc h2{
	margin-bottom: 10px;
	font-family: "Metric SemiBold";
	font-size: 22px;
}

.service-desc p{
	font-family: "Metric Light";
	font-size: 19px;
	font-weight: 400px;
	line-height: 1.4;
	color: #000;
}

@media(max-width: 700px){
	.service-contents{
		flex-direction: column;
	}
}

/*
@media(max-width: 986px){
	.service-contents .service-box{
		flex-basis: 100%;
		text-align: center;
		align-items: center;
	}
	.service-contents .service-box:not(:last-child){
		margin-bottom: 20px;
	}
}

@media(max-width: 668px){
	.service-contents .service-box{
		flex-basis: 100%;
		align-items: center;
	}
	
}

*/