/* CSS Document */

.how-does-it-work {
	background: black;
	color: white;
}

.how-does-it-work h2 {
	margin: 0 0 3rem;
	text-transform: none;
	text-align: center;
	font-size: 3rem;
	color: white;
}

.steps-list {

	margin: 0 0 5rem;
}

.steps {

}

.step {
	display: flex;
	justify-content: center;
	position: relative;
	
	transition: .5;
}

.step em {
	display: inline-block;
	background: url(../images/scribble-circle.png);
	background-size: 100% 100%;
	padding: 0 .25rem;
}

.step-content {
	width: 45%;
	padding-left: 5%;
}

.step-image {
	width: 35%;
}

.step-image img {
	width: 100%;
	height: auto;
}

.steps-list ol {
	margin: 0;
	padding: 0;
	list-style: none;
	display: flex;
	border-bottom: 1px solid white;
	display: flex;
	justify-content: center;
	
}

.steps-list ol li {
	position: relative;
}

.steps-list ol li::after {
	position: absolute;
	left: calc(50% - .75rem);
	bottom: -.75rem;
	width: 1.5rem;
	height: 1.5rem;
	background: black;
	border: 2px solid black;
	outline: 1px solid white;
	border-radius: .75rem;
	content: "";
}

.steps-list a {
	display: block;
	padding: 0 3rem 2.5rem;
}

.steps-list ol li.current-step::after {
	background: var(--yellow);

}

.number {
	font-size: 22.5rem;
	position: absolute;
	left: 5rem;
	top: -12rem;
	color: white;
	z-index: 10;
	color: var(--yellow);
	font-family: "Source Serif 4", sans-serif;
	font-weight: 700;
	opacity: .85;
}