.services{
	width: 100%;
	padding: 20px;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
}
.summary{
	width: 100%;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	gap: 20px;
	margin-bottom: 60px;
}
.summary_item{
	text-decoration: none;
	width: 145px;
	height: 145px;
	border-radius: 15px;
	background-color: var(--main_color);
	color: #fff;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	padding: 10px;
	gap: 10px;
	transition: filter 0.3s ease;
	user-select: none;
}
.summary_item img{
	width: 60px;
	height: 60px;
}
.summary_item h3{
	margin: 0;
	font-size: 1em;
	text-align: center;
}
.service{
	border-top: 1px solid #ddd;
	padding-top: 1em;
	width: 100%;
	max-width: 800px;
	margin-bottom: 60px;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
}
.service_title{
	font-family: "Libre Baskerville", serif;
	margin: 0;
	margin-bottom: 30px;
	text-align: start;
	font-size: 1.6em;
	position: relative;
	width: 100%;
}
.service_title::before{
	content:"";
	position: absolute;
	bottom: -5px;
	left: 0;
	width: 100px;
	height: 2px;
	background-color: var(--main_color);
}
.service_subtitle{
	margin: 0;
	font-size: 1.2em;
	margin-bottom: 16px;
}
.service_text{
	margin: 0;
	padding: 0;
	margin-bottom: 16px;
	font-size: 1.1em;
}
.service_list{
	list-style: none;
	width: 100%;
	padding: 0;
	margin: 0;
	margin-bottom: 16px;
}
.service_list li{
	position: relative;
	padding-left: 16px;
	margin-bottom: 8px;
}
.service_list li::before{
	content: "";
	border-radius: 50%;
	width: 10px;
	height: 10px;
	margin-top: 7px;
	background-color: var(--main_color);
	position: absolute;
	left: 0;
}
.service_contact_container{
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
}
.service_contact_button{
	margin: 0;
	padding: 0;
	text-decoration: none;
	color: #fff;
	background-color: var(--main_color);
	width: 100%;
	height: 40px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1em;
	border-radius: 10px;
	transition: filter 0.3s ease;
}
.service_contact_button:active{
	filter: brightness(1.2);
}

@media (hover: hover) {
	.service_contact_button:hover{
		filter: brightness(1.2);
	}
	.summary_item:hover{
		filter: brightness(1.2);
	}
}

@media (min-width: 768px) {
	.services{
		padding-bottom: 60px;
	}
	.summary{
		max-width: 800px;
		gap:unset;
		justify-content: space-between;
	}
	.service_contact_container{
		justify-content: flex-end;
	}
	.service_contact_button{
		max-width: 250px;
	}
	.service_subtitle{
		width: 100%;
	}
}