body {
	font-family: 'Chivo', sans-serif;
	overflow-x: hidden;
}




.infographic {
	counter-reset: infographic-steps;
	margin: 0 auto;
	max-width: 1500px;
	position: relative;
}

.infographic::after {
	background: yellow;
	content: '';
	display: block;
	height: 4px;
	left: 50%;
	position: absolute;
	top: 8px;
	transform: translateX(-50vw);
	width: 100vw;
}

.infographic > .d-flex {
	transform: scale(1);
}

.infographic > .d-flex > div {
	counter-increment: infographic-steps;
	padding-top: 36px;
}

.infographic > .d-flex > div::before {
	content: 'Step ' counter(infographic-steps);
}
.infographic > .d-flex > div::after {
	background: yellow;
	border-radius: 50%;
	content: '';
	display: block;
	height: 20px;
	position: absolute;
	top: 0;
	width: 20px;
}