/**
 * Statistics Component Styles
 * Converted from Statistics.module.scss for WordPress
 */

.statisticsContainer {
	width: 100%;
	border-top: 1px solid #e0e0e0;
}

.statisticsWrapper {
	display: flex;
	justify-content: space-between;
}

.statItem {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	padding: 75px 3% 30px 3%;
	width: 25%;
	border-left: 1px solid #e0e0e0;
}

.statItem:first-child {
	padding-left: 0;
	border-left: none;
}

.statItem:last-child {
	padding-right: 0;
}

.statItem .statValue {
	color: var(--lightBlue, #a3dbe8);
	font-family: var(--font-regular, "Raleway-Regular", sans-serif);
	font-size: 80px;
	line-height: 72px;
	font-weight: 400;
	display: flex;
	align-items: baseline;
}

.statItem .statValue .statSuffix {
	transform: translateY(5px);
	margin-left: 5px;
}

.statItem .statValue .statNumber {
	display: inline-block;

}




.statItem .statValue .statNumber.statNumberDisplay-1 {
	width: 175px;
}

.statItem .statValue .statNumber.statNumberDisplay-2 {
	width: 126px;
}

.statItem .statValue .statNumber.statNumberDisplay-3 {
	width: 96px;
}

.statItem .statValue .statNumber.statNumberDisplay-4 {
	width: 140px;
}

.statItem .statLabel {
	margin-top: 40px;
	color: #454545;
	font-family: var(--font-regular, "Raleway-Regular", sans-serif);
	font-size: 18px;
	line-height: 1.6;
	font-weight: 400;
	margin-bottom: 0;
}

/* Responsive */
@media (max-width: 1440px) {
	.statItem {
		padding: 40px 3% 30px 3%;
	}

	.statItem .statValue {
		font-size: 75px;
	}

	.statItem .statLabel {
		margin-top: 30px;
	}
}

@media (max-width: 1024px) {
	.statItem {
		padding: 60px 2.5%;
	}

	.statItem .statValue {
		font-size: 57px;
		line-height: 1.3;
	}

	.statItem .statLabel {
		font-size: 16px;
		margin-top: 10px;
	}

	.statItem .statValue .statNumber.statNumberDisplay-1,
	.statItem .statValue .statNumber.statNumberDisplay-2,
	.statItem .statValue .statNumber.statNumberDisplay-3,
	.statItem .statValue .statNumber.statNumberDisplay-4 {
		width: auto;
	}
}

@media (max-width: 820px) {
	.statisticsWrapper {
		flex-wrap: wrap;
	}

	.statItem {
		width: 50%;
		padding: 50px 3% 25px 3%;
		border-left: 1px solid #e0e0e0;
		border-bottom: 1px solid #e0e0e0;
	}

	.statItem:nth-child(odd) {
		border-left: none;
	}



	.statItem .statValue {
		font-size: 50px;
		line-height: 45px;
	}

	.statItem .statLabel {
		font-size: 15px;
		margin-top: 25px;
	}
}





@media (max-width: 700px) {
	.statItem {
		padding-top: 25px;
		padding-bottom: 25px;
		width: 50%;
		/* border-left: none; */
		border-bottom: 1px solid #e0e0e0;
	}

	.statItem:last-child {
		border-bottom: none;
	}

	.statItem .statValue {
		font-size: 30px;
		line-height: 1.3;
	}

	.statItem .statLabel {
		font-size: 14px;
		margin-top: 10px;
		margin-bottom: 10px;
	}
}