

.section_solutions {
	background: linear-gradient(to bottom, #EEF5FF 0%, white 95%);
}

.section_solutions__title {
	font-size: clamp(24px, calc(24px + 16 * (calc(var(--vw, 1vw) * 100) - 576px) / 416), 40px);
	font-weight: 700;
	margin-bottom: clamp(30px, calc(30px + 20 * (calc(var(--vw, 1vw) * 100) - 576px) / 416), 50px);
}

.section_solutions__title span {
		background: linear-gradient(95deg, #967BDE 0.3%, #236BEB 90%);
		-webkit-background-clip: text;
		-webkit-text-fill-color: transparent;
	}

.section_solutions__grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: clamp(20px, calc(20px + 10 * (calc(var(--vw, 1vw) * 100) - 576px) / 416), 30px);
}

@media (max-width: 768px) {
	.section_solutions__grid {
		grid-template-columns: 1fr;
	}
}

.section_solutions .btn {
	align-self: flex-start;
	margin-top: auto;
}