.product-features-wrap {
	padding-bottom: 4rem;
}
.products-row {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}
.product {
	position: relative;
	max-width: 32%;
	width: 100%;
	margin-bottom: 1rem;
	border-radius: 0.5rem;
	overflow: hidden;
}
.locations-template #main-body .product {
	max-width: calc(50% - 0.5rem);
}
.product h3 {
	position: absolute;
	bottom: 0;
	left: 0;
	background: #7487c0cc;
	color: white;
	padding: 10px 20px;
	font-size: 20px;
	margin: 0;
	width: 100%;
	font-weight: 700;
	/* height: 100%;
  max-height: 48px; */
	height: 50px;
	transition: all 1s ease;
}
@media (max-width: 768px) {
	.product h3 {
		height: 70px;
	}
}
.product img {
	width: 100%;
	height: 100%;
	aspect-ratio: 16/9;
	object-fit: cover;
}
.product:hover h3 {
	height: 100%;
}
#products {
	padding: 4rem 1rem;
}
#products h2 {
	text-align: center;
	margin-top: 0;
	margin-bottom: 1.5rem;
}

@media (max-width: 992px) {
	.product {
		max-width: calc(50% - 0.5rem);
	}
}

@media (max-width: 630px) {
	.product {
		width: 100%;
		max-width: 100%;
	}
	#products .container {
		padding: 0 1rem;
	}
}
