.footer-benefits {
	padding: 0 16px;
	display: none;
}

.footer-benefits-list {
	list-style: none;
	display: flex;
	flex-direction: column;
	justify-content: space-around;
	gap: 12px;
	margin: 30px 0;
}

.footer-benefits h2 {
	font-size: 24px;
	font-family: 'VodafoneBold', Arial, sans-serif;
	text-align: left;
}

.benefits-list-item {
	display: flex;
	flex-direction: column;
	gap: 8px;
	align-items: center;
	justify-content: center;
}

.benefits-list-item p {
	font-size: 14px;
	text-align: center;
	color: #25282B;
	font-family: 'VodafoneLight', Arial, sans-serif;
}


@media screen and (min-width: 768px) {
	.footer-benefits-list {
		flex-direction: row;
	}

	.benefits-list-item p {
		font-size: 18px;
	}
}


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


	.footer-benefits h2 {
		font-size: 34px;
	}

	.benefits-list-item p {
		font-size: 20px;
	}
}

@media screen and (min-width: 1280px) {
	.footer-benefits {
		display: block;
		padding: 0;
		margin-top: 4rem;
	}

}