
.grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
}

@media only screen and (max-width: 992px) {
	.grid {
		grid-template-columns: repeat(1, 1fr);
	}
}


.flex {
	display: flex;
}

.image-div {
	margin-left: 15px;
	margin-right: 15px;
	position: relative;
	text-align: center;
}

.over-image {
	position: absolute;
	top: 66%;
	left: 50%;
	transform: translate(-50%, -50%);
	background-color: #0e8714D8;
	width: 100%;
	height: 30%;
	display: grid;
	color: white;
}

.service-text {
	font-size: 1.5em;
}
