.cards_solutions {
	position: relative;
	padding: 120px 0;
	text-align: center;
	overflow: hidden;
}

.cards_solutions .title {
	display: block;
	text-align: center;
	color: #000;
	font-size: 44px;
	font-style: normal;
	font-weight: 700;
	line-height: 50px; 
	margin: 0 auto 32px auto;
}

.cards_solutions .title span {
	color: #8DD3BF;
}

.cards_solutions .subtitle {
	display: block;
	text-align: center;
	color: #000;
	font-size: 18px;
	font-style: normal;
	font-weight: 400;
	line-height: 24px;
	width: 100%;
	max-width: 400px;
	margin: 0 auto 48px auto;
}

.cards_solutions .cards {
	display: flex;
	gap: 20px;
	align-items: stretch;
	justify-content: space-between;
}

.cards_solutions .cards .card {
	width: calc(50% - 10px);
	border-radius: 8px;
	border-bottom: 4px solid #8DD3BF;
	background: #E8F6F2;
	padding: 40px 44px 60px 44px;
	display: flex;
	gap: 32px;
	align-items: center;
	justify-content: space-between;
}

.cards_solutions .cards img {
	width: 97px;
	height: 96px;
}

.cards_solutions .cards .text {
	width: calc(100% - 129px);
	text-align: left;
}

.cards_solutions .cards .text p.title {
	display: block;
	text-align: left;
	color: #000;
	font-size: 28px;
	font-style: normal;
	font-weight: 700;
	line-height: normal;
	margin: 0 auto 32px auto;
}

.cards_solutions .cards .text p.title span {
	color: #8DD3BF;
}

.cards_solutions .cards .text p.desc {
	color: #000;
	font-size: 18px;
	font-style: normal;
	font-weight: 400;
	line-height: 24px;
	margin: 0 auto;
}

@media only screen and (max-width: 996px) {
	.cards_solutions {
		padding: 80px 0;
	}

	.cards_solutions .title {
		font-size: 32px;
		font-style: normal;
		font-weight: 700;
		line-height: 42px;
	}

	.cards_solutions .subtitle {
		font-size: 18px;
		font-style: normal;
		font-weight: 400;
		line-height: 24px;
	}

	.cards_solutions .cards {
		flex-wrap: wrap;
	}

	.cards_solutions .cards .card {
		width: 100%;
		flex-wrap: wrap;
	}

	.cards_solutions .cards .text { 
		width: 100%;
	}

	.cards_solutions .cards .text p.title { 
		font-size: 24px;
		font-style: normal;
		font-weight: 700;
		line-height: 32px;
	}

	.cards_solutions .cards .text p.desc { 
		font-size: 18px;
		font-style: normal;
		font-weight: 400;
		line-height: 24px;
	}
}