.list-features {
	margin-top: 1rem;
	display: flex;
	flex-direction: column;
	gap: 0.5rem;
  	font: 1.25rem Sequel-Neue, sans-serif;
  	text-transform: uppercase;
}

.list-features > li {
	min-height: 5rem;
	display: flex;
	justify-content: center;
	align-items: center;
	border-radius: 0.5em;
	position: relative;
	z-index: 0;
	overflow: hidden;
}

.list-features > li > .background {
	width: 100%;
	height: 100%;
	position: absolute;
	z-index: -1;
}

.list-features > li > .background.darken::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.4);
    z-index: 0;
}

.list-features > li > .background img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.list-numbers {
	counter-reset: listNumbers;
	border: 1px solid var(--color-yellow);
	border-radius: 8px;
	font-size: 1rem;
	padding: 1.5em;
	max-width: 768px;
	margin: 0 auto;
}

.list-numbers li {
	counter-increment: listNumbers;
	position: relative;
	padding-left: 2em;
}

.list-numbers li:not(:last-child) {
	margin-bottom: 1em;
}

.list-numbers li::before {
	content: counter(listNumbers)".";
	font: 400 1em Sequel-Neue, sans-serif;
	color: var(--color-yellow);
	position: absolute;
	top: 0;
	left: 0;
}

.list-numbers li:nth-child(2n)::before {
	color: white;
}

@media screen and (min-width: 768px) {

	.list-numbers {
		font-size: 1.25rem;
		padding: 4vw;
	}
}