.services {
	display: grid;
	gap: 15px;
    grid-template-columns: repeat(2, 1fr);
	margin-bottom: 30px;
}

@media screen and (min-width: 768px) {
	.services {
		gap: 50px 20px;
		grid-template-columns: repeat(3, 1fr);
		margin-bottom: 50px;
	}

}
@media screen and (min-width: 1025px) {
	.services {
		gap: 92px 20px;
		margin-bottom: 90px;
		grid-template-columns: repeat(4, 1fr);
	}
}
