.benefits {
	display: flex;
	flex-direction: column;
	padding: 16px 16px 32px;
	gap: 32px;
	position: relative;
	flex-grow: 1;
	width: 100%;
}
.benefits-card {
	display: flex;
	flex-direction: column;
	padding: 0 16px;
	align-items: center;
	text-align: center;
}
.benefits-card .pictogram {
	margin: 0;
	height: 80px;
	width: 80px;
}
.benefits-card .title {
	font-size: 40px;
	font-weight: 600;
	font-style: normal;
	font-family: IberPangea-Regular;
	line-height: 48px;
	margin-bottom: 20px;
	color: #2c2c2c;
}
.benefits-card .subtitle {
	font-size: 24px;
	font-weight: 400;
	font-style: normal;
	font-family: IberPangea-Regular;
	line-height: 32px;
	margin-bottom: 8px;
	color: #2c2c2c;	
}
.benefits-card .text {
	font-size: 16px;
	font-weight: 400;
	font-style: normal;
	font-family: IberPangea-Bold;
	font-family: IberPangeaText-Regular;
	line-height: 22px;
	margin-bottom: 0;
	color: #2c2c2c;
}

@media (min-width: 992px) {
	.benefits {
		flex-direction: row;
		gap: 0;
		padding: 32px 8% 64px;
		justify-content: center;
	}
	.benefits-card {
		width: 395px;
	}
}