.section-with-icons {
	padding: 60px 0 60px;
}

.section-with-icons__heading {
	text-align: center;
	margin: 0;
	color: var(--grey-900);
	margin-bottom: 24px;
}

.section-with-icons__content {
	margin: 0;
	font-weight: 400;
	text-align: center;
	margin-bottom: 64px;
}

.cards {
	position: relative;
	z-index: 100;
}

.cards .container {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	gap: 28px;
	flex-wrap: wrap;
}

.cards__card {
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	align-items: flex-start;
}

.cards .cards__card {
	width: calc(100% / 4 - 48px);
	gap: 24px;
}

.cards__card__body {
	display: flex;
	gap: 24px;
	justify-content: center;
	align-items: flex-start;
	height: 100%;
}

.cards__card__body__icon {
	width: 64px;
	height: 64px;
	display: flex;
	justify-content: center;
	align-items: center;
}
.cards__card__body__icon svg {
	width: 64px;
	height: 64px;
}
.cards__card__body__content {
	display: flex;
	flex-direction: column;
	gap: 16px;
}

.cards__card__content__body__header {
	margin: 0;
	font-size: 24px;
	line-height: 32px;
	font-weight: 700;
	color: var(--grey-900);
}

.cards__card__content__body__text {
	max-width: 285px;
	font-size: 16px;
	line-height: 24px;
}

@media (max-width: 1735px) {
	.cards .container {
		gap: 24px;
	}

	.cards__card__body {
		justify-content: center;
		align-items: center;
		flex-direction: column;
		text-align: center;
	}
}

@media (max-width: 1400px) {
	.cards .cards__card {
		width: calc(100% / 4 - 24px);
		gap: 24px;
	}
}

@media (max-width: 1280px) {
	.cards .container {
		gap: 48px 24px;
	}
	.cards .cards__card {
		width: calc(100% / 2 - 48px);
		gap: 24px;
		justify-content: center;
		align-items: center;
	}
	.cards__card__body {
		flex-direction: row;
		justify-content: flex-start;
		align-items: flex-start;
		text-align: left;
		gap: 24px;
	}
	.cards .container .cards__card:nth-child(odd) {
		justify-content: flex-end;
		align-items: flex-end;
	}
	.cards .container .cards__card:nth-child(odd) .cards__card__body {
		flex-direction: row-reverse;
		text-align: right;
	}

	.cards .container .cards__card:nth-child(even) {
		justify-content: flex-start;
		align-items: flex-start;
	}
}

@media (max-width: 992px) {
	.cards .container .cards__card {
		width: 100%;
	}

	.cards .container .cards__card .cards__card__body {
		width: 100%;
		flex-direction: row !important;
		justify-content: center !important;
		text-align: left !important;
	}
}

@media (max-width: 768px) {
	.cards__card__body__content {
		gap: 8px;
	}

	.section-with-icons__content {
		margin-bottom: 48px;
	}
}

@media (max-width: 440px) {
	.cards__card__content__body__header,
	.cards__card__body__content {
		text-align: center;
	}
	.cards .container .cards__card .cards__card__body {
		flex-direction: column !important;
		justify-content: center !important;
		align-items: center !important;
		gap: 12px !important;
	}
	.section-with-icons {
		padding: 40px 0;
	}
}
