/* 

COLORS

blue-1000: #040439
blue-600: #1A63FF
blue-300: #98B9F7
blue-100: #DAE7FF
slate: #4F4F6D
red: #E31E24

 */

.business-solution .cards {
	display: grid;
	grid-template-columns: repeat(1, 1fr);
	gap: 10px;
}

.business-solution .card {
	display: flex;
	flex-direction: column;
	align-items: center;
}

.business-solution .card .image {
	width: 192px;
	height: auto;
}

.business-solution .card .text {
	display: flex;
	flex-direction: column;
	gap: 10px;
	text-align: center;
}

.business-solution .card .text .title {
	color: var(--blue-1000);
}

.business-solution .card .text .description {
	font-size: 16px;
	color: var(--slate);
}

@media (min-width: 768px) {
	.business-solution .cards {
		grid-template-columns: repeat(3, 1fr);
		gap: 20px;
	}

	.business-solution .card .text .title {
		font-size: 20px;
	}

	.business-solution .card .text .description {
		font-size: 14px;
	}
}

@media (min-width: 1440px) {
	.business-solution .cards {
		gap: 30px;
	}

	.business-solution .card .text .title {
		font-size: 32px;
	}

	.business-solution .card .text .description {
		font-size: 20px;
	}
}
