.stats-grid-container {
	background-color: var(--color-tan);
	padding: 112px 0;
	overflow-x: hidden;
	touch-action: pan-x;
	margin-bottom: 100px;
}

.stats-grid {
	display: flex;
	overflow-x: auto;
	-webkit-overflow-scrolling: touch;
	max-width: 1400px;
	margin: 0 auto;
  overflow-y: hidden;
}

.stats-grid .item {
	width: 25%;
	flex-shrink: 0;
	padding: 0 34px; 
	min-width: 270px;
	text-align: center;
	color: var(--color-dark);
}

.stats-grid .figure {
	display: block;
	font-size: 4rem;
	font-family: var(--font-heading);
	font-weight: 500;
}

.stats-grid .description {
	font-size: 1.125rem;
	line-height: 1.33;
  font-weight: bold;
  text-wrap: pretty;
}

@media screen and (max-width: 1100px) {
	.stats-grid-container {
		padding: 65px 0;
	}
}

@media screen and (max-width: 800px) {
	.stats-grid .figure {
		font-size: 3.5rem;
	}
}

@media screen and (max-width: 500px) {
  .item {
    padding: 0 16px;
  }
}