section.icon-list.no-images {
	margin: 0;
	background:var(--stone);
	position: relative;
}

section.icon-list.no-images:before {
	content: '';
	top: -1.5rem;
	left: 0;
	width: 100%;
	height: 3rem;
	position: absolute;
	background:  url(assets/stone-rough-edge.svg) repeat-x;
	background-size: cover;
	z-index: 21;
} 


/*section.icon-list.no-images:after {
	content: '';
	bottom: -1.5rem;
	left: 0;
	width: 100%;
	height: 3rem;
	position: absolute;
	background:  url(assets/stone-rough-edge.svg) repeat-x;
	background-size: cover;
	z-index: 21;
}*/



section.icon-list.no-images .aurora-row{
	display:flex;
	margin:0;
	gap:1rem;
}

section.icon-list.no-images .aurora-row.justify-center{
	justify-content: center;
}

section.icon-list.no-images .image {
	padding-bottom: 56%;
	background-size: cover;
	position: relative;
	width: 100%;
	background-position:center;
}

section.icon-list.no-images .item {
	width: 32.333%;
	display: flex;
	flex-direction: column;
	align-items: center;
	position: relative;
	text-align: center;
	color: var(--brand-dark-color);
}

section.icon-list.no-images .item .icon {
	font-size: 3rem;
	color: var(--brand-dark-color);
	z-index: 10;
}

section.icon-list.no-images .item .icon svg{
	width:100px;
	height:100px;
}



section.icon-list.no-images .item .info {
	position: relative;
	width: 100%;
}



section.icon-list.no-images .item .info h5 {
	text-transform: uppercase;
	letter-spacing: .15em;
	font-weight: 600;
	font-size: 1rem;
}

section.icon-list.no-images .item .info p.text{
	font-weight:500;
}

/* ORDERED STEPS */

section.ordered-steps {
	margin: 0;
}

section.ordered-steps .steps-wrapper {
	margin: 60px 0 0 0;
}

section.ordered-steps .steps-wrapper ol {
	list-style: none;
	display: flex;
	flex-wrap:wrap;
	gap: 30px;
	padding: 0;
	margin: 0;
}

section.ordered-steps .steps-wrapper ol li {
	border-radius: 12px;
	position: relative;
	width: calc(33.333% - 20px);
	filter: drop-shadow(0 4px 12px rgba(0,0,0,0.1));
	background: #fff;
}

section.ordered-steps .steps-wrapper ol li card {
	width: 100%;
	display: flex;
	flex-direction: column;
}

section.ordered-steps .steps-wrapper ol li:after{
	content: '';
	position: absolute;
	background: #fff;
}
section.ordered-steps .steps-wrapper ol li:after {
	right: 0;
	top: 50%;
	width: 15px;
	height: 45px;
	clip-path:polygon(0 0, 100% 50%, 0 100%);
	transform: translate(100%, -50%);
}

section.ordered-steps .steps-wrapper ol li:last-of-type:after{
	display:none;
}

section.ordered-steps .steps-wrapper ol li .counter {
	position: absolute;
	top: 0;
	left: 0;
	width: 48px;
	height: 48px;
	background: var(--accent-green);
	border-radius: 50% 50% 0 50%;
	color: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.5em;
	font-weight: 700;
	transform: translate(-25%,-25%);
	border: 6px solid #fff;
}

section.ordered-steps .steps-wrapper li .image {
	background-size: cover;
	padding-bottom: 50%;
	border-radius: 8px 8px 0 0;
	margin:4px;
}

section.ordered-steps .steps-wrapper li .info {
	display: flex;
	flex-direction: column;
	justify-content: center;
	padding: 40px;
	gap: 5px;
	position: relative;
}

section.ordered-steps .steps-wrapper li .info p,
section.ordered-steps .steps-wrapper li .info h5{
	margin:0;
}

section.ordered-steps .steps-wrapper li .info p{
	font-weight:500;
	line-height:1.5em;
}

section.ordered-steps .steps-wrapper li .info i{
	font-size: 2.25em;
	color: var(--accent-green);
}

@media screen and (max-width:1250px){
	section.ordered-steps .steps-wrapper li .info{
		padding:30px;
	}
}

@media screen and (max-width:1060px){
	section.ordered-steps .steps-wrapper ol li{
		width:calc(50% - 15px);
	}

}

@media screen and (max-width:700px){
	section.ordered-steps .steps-wrapper li .info{
		padding:20px;
	}
}

@media screen and (max-width:640px){
	section.ordered-steps .steps-wrapper ol li{
		width:100%;
	}
	section.ordered-steps .steps-wrapper ol li:after {
		clip-path: polygon(0 0, 100% 0, 50% 100%);
		top: initial;
		bottom: 0;
		left: 50%;
		transform: translate(-50%,100%);
		width: 40px;
		height: 15px;
	}

}
