.solution_blocks {
	display: flex;
	gap: 24px;
}

.solution {
	border-radius: 24px;
	border: 1px solid var(--gray-200);
	background: var(--primary-50);
	padding: 24px;
}

.solution_description {
	font-size: 14px;
	line-height: 20px;
	color: var(--gray-600);
}

.solution_image {
	height: 250px;
	display: flex;
	justify-content: center;
	align-items: center;
	margin-bottom: 16px;
	position: relative;
}

.solution_image:after {
	content: '';
	position: absolute;
	bottom: 0;
	height: 87px;
	left: 0;
	width: 100%;
	background: linear-gradient(0deg, #F7FAFC 0%, rgba(247, 250, 252, 0.00) 44.82%);
}

.solution_image img {
	max-height: 100%;
	max-width: 100%;
	object-fit: contain;
}

@media (max-width: 1199px) {
	.solution_image {
		height: 190px;
	}	
}

@media (max-width: 991px) {
	.solution_image {
		height: 185px;
	}	
}

@media (max-width: 767px) {
	.solution_blocks {
		flex-direction: column;
	}

	.solution_image {
		height: auto;
		margin-top: 26px;
	}

	.solution_description {
		margin-bottom: 19px;
	}
}
