#service {
	background-color: rgb(255, 255, 255);
	background-position: center;
	background-size: cover;
	padding-bottom: 7rem;
	padding-top: 7rem;
	max-width: 1000px;
	margin: 0 auto;
}
.services {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 2rem;
}

.service-card img {
	width: 3rem;
	margin-top: 1rem;
	margin-bottom: 1rem;
}

.service-card {
	border: 2px solid black;
	border-radius: 2rem;
	text-align: center;
	padding: 20px 25px;
	margin-top: 3rem;
	background-color: whitesmoke;
	box-shadow: 0 3px 7px rgb(165, 161, 161);
}
.service-card ul {
	list-style: none;
	margin-bottom: 1rem;
}
.service-card h3 {
	margin-bottom: 0.8rem;
	color: #e84613;
	font-weight: bold;
}
