.threeItems_grid {
	display: grid;
	grid-gap: 160px;
	grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) minmax(0, 1fr);
	margin-bottom: 20px;
}
.threeItems_image img {
	margin: 0 auto;
}
.threeItems_text h3 {
	text-align: center;
}

@media screen and (max-width: 992px) {
	.threeItems_grid {
		grid-template-columns: minmax(0, 1fr);
		grid-gap: 20px;
	}
	.threeItems_image img {
		max-width: 195px;
	}
}
