.circle-stats-container {
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	gap: 40px;
	padding-bottom: 80px;
}

.circle-stats-section h4 {
	font-size: 22px;
	font-weight: 800;
	color: #2b2628;
	font-family: 'Open Sans', sans-serif;
	text-align: center;
	padding-top: 40px;
	text-transform: uppercase;
	padding-bottom: 20px;
}

.circle-stats-section p {
	font-size: 22px;
}

.circle-container {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 40px;
}

.circle-stat {
	width: 150px;
	text-align: center;
}

.circular-chart {
	display: block;
	margin: 0 auto 10px;
	max-width: 100%;
	max-height: 150px;
}

.circle-bg {
	fill: none;
	stroke: #eee;
	stroke-width: 3.8;
}

.circle {
	fill: none;
	stroke-width: 2.8;
	stroke-linecap: round;
	animation: progress 1s ease-out forwards;
}

.percentage {
	fill: #333;
	font-family: 'Arial', sans-serif;
	font-size: 0.5em;
	text-anchor: middle;
}

.circular-chart.blue .circle {
	stroke: #0077cc;
}

.circular-chart.green .circle {
	stroke: #00c853;
}

.circular-chart.orange .circle {
	stroke: #ff9800;
}

keyframes progress {
	stroke-dasharray: 0 100;
}