.stappen_items{
	display: flex;
	gap: 2rem;
	justify-content: center;
}

.stap{
	font-family: var(--heading-font);
	color: var(--blauw);
	font-size: 2.6rem;
	line-height: 3rem;
	font-weight: 300;
	display: flex;
	flex-direction: column;
	gap: 1.5rem;
	align-items: center;
	max-width: 15rem;
	text-align: center;
}

.stap_icoon{
	width: 10rem;
	height: 10rem;
	border: 0.1rem solid rgba(36, 53, 136, 0.3);
	border-radius: 50%;
	background: #fff;
	display: inline-flex;
	justify-content: center;
	align-items: center;
}

.stap-spacer{
	width: 15rem;
	height: 0.1rem;
	background:  rgba(36, 53, 136, 0.2);
	transform: translateY(5rem);
}

.stap-spacer:last-child{
	display: none;
}

@media (max-width:767px)
{		
	.stappen_items{
		flex-direction: column;
    	align-items: center;
	}
	
	.stap-spacer{
		transform: none;
	}
}

@media (min-width:768px) and (max-width:991px)
{
	
}

@media (min-width:992px) and (max-width:1199px)
{
	
}

@media (min-width:1200px) and (max-width:1399px)
{
    
}

@media (min-width:1400px)
{
    
}