.summary__inner {
	background: #12104f;
	border-radius: 20px;
}
.summary {
	position: relative;
}
.summary::before {
	content: '';
	position: absolute;
	left: -300px;
	top: -100px;
	width: 1361px;
	height: 593px;
	z-index: -1;
	background: center/ contain no-repeat
		var(--wpr-bg-2d9ca72e-80ca-466e-994e-9acf6bd61ebd);
}
.summary__title {
	margin-bottom: 20px;
	padding-left: 0;
}
.summary__text {
	margin-bottom: 30px;
}
.summary__row {
	display: flex;
}
.summary__pros {
	border-radius: 20px;
	background: rgba(7, 182, 125, 0.7);
}
.summary__cons {
	border-radius: 20px;
	background: rgba(253, 23, 23, 0.23);
}
.summary__title-wrap {
	display: flex;
	align-items: center;
	gap: 10px;
	margin-bottom: 25px;
}
.summary__list-title {
	margin-bottom: 0;
}
.summary__list ul {
	display: flex;
	flex-direction: column;
	gap: 16px;
}
.summary__list ul li {
	display: flex;
	gap: 12px;
	align-items: center;
	list-style: none;
	font-size: 16px;
}
.summary__pros .summary__list ul li:before {
	content: '';
	width: 24px;
	height: 24px;
	flex-shrink: 0;
	background: url('/images/pros.svg') center center / cover no-repeat;
}
.summary__cons .summary__list ul li:before {
	content: '';
	width: 24px;
	height: 24px;
	flex-shrink: 0;
	background: url('/images/cons.svg') center center / cover no-repeat;
}
@media screen and (min-width: 991px) {
	.summary__inner {
		padding: 50px 60px;
	}
	.summary__row {
		gap: 30px;
	}
	.summary__pros {
		flex-basis: calc((100% - 30px) / 2);
		padding: 30px;
	}
	.summary__cons {
		flex-basis: calc((100% - 30px) / 2);
		padding: 30px;
	}
}
@media screen and (max-width: 991px) {
	.summary__inner {
		padding: 20px;
	}
	.summary__row {
		flex-direction: column;
		gap: 20px;
	}
	.summary__pros {
		flex-basis: calc((100% - 30px) / 2);
		padding: 20px;
	}
	.summary__cons {
		flex-basis: calc((100% - 30px) / 2);
		padding: 20px;
	}
}
