.product-hero-section {
	padding: 130px 0 100px;
	background: #F4F4F4;

}

.product-hero-intro {
	display: flex;
	align-items: center;
	flex-direction: column;
}

.product-hero-title {
	font-size: var(--f48);
	font-weight: 700;
	max-width: 980px;
	text-align: center;
}

.product-hero-copy {
	max-width: 1040px;
	color: #6b6f76;
	font-size: var(--f16);
	text-align: center;
	margin: 30px 0 45px;
}




.product-hero-stats ul {
	display: grid;
	grid-template-columns: 1fr;
	gap: 18px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.product-hero-stats li {
	min-height: 200px;
	border-radius: 15px;
	background: #FFF;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	flex-direction: column;
	color: #888;
}



.product-hero-stats h2 {
	margin: 0;
	color: var(--gm-theme);
	font-size: 50px;
	font-weight: 700;
	font-family: 'DIN';
}

@media (min-width: 992px) {
	.product-hero-stats ul {
		grid-template-columns: repeat(3, minmax(0, 1fr));
		gap: 40px;
	}

	.product-hero-stats h2 {
		font-size: var(--f60);
	}

}