.results {
	background-color: #031527;
	margin-top: -40px;
	position: relative;
	z-index: 0;
	padding-top: 140px;
	padding-bottom: 140px;
}

.results__inner {
	display: flex;
	align-items: stretch;
	justify-content: space-between;
	gap: 40px;
}

.results__content {
	display: flex;
	flex-direction: column;
	justify-content: center;
	gap: 16px;
	width: 40%;
}

.results__badge {
	display: flex;
	align-items: center;
	gap: 12px;
}

.results__badge-icon-img {
	width: 32px;
	height: 32px;
	display: block;
}

.results__badge-text {
	font-size: 20px;
	font-weight: 500;
	line-height: 24px;
	color: #FFFFFF;
}

.results__heading {
	margin: 0;
	font-size: 48px;
	font-weight: 500;
	line-height: 52px;
	color: #FFFFFF;
}

.results__description {
	margin: 0 0 60px 0;
	max-width: 70%;
	font-size: 18px;
	font-weight: 400;
	line-height: 28px;
	color: #FFFFFFB2;
}

.results__list {
	display: flex;
	flex-direction: column;
	gap: 24px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.results__list-item {
	display: flex;
	align-items: center;
	gap: 8px;
}

.results__list-icon {
	display: block;
	flex-shrink: 0;
	width: 32px;
	height: 32px;
}

.results__list-icon svg {
	display: block;
	width: 100%;
	height: 100%;
}

.results__list-text {
	font-size: 20px;
	font-weight: 500;
	line-height: 24px;
	color: #FFFFFF;
}

.results__cards {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	width: 60%;
}

.results__card {
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	gap: 24px;
	min-height: 275px;
	width: 100%;
	padding: 24px;
	border: 1px solid #383838;
	border-radius: 24px;
	background-color: #0072FF33;
}

.results__card--1,
.results__card--2 {
	width: calc(50% - 5px);
}

.results__card--2 {
	background-color: #0061D9;
	margin-left: -1px;
}

.results__card--3 {
	width: 100%;
	justify-content: flex-start;
	margin-top: -1px;
}

.results__card-number {
	font-size: 42px;
	font-weight: 500;
	line-height: 48px;
	color: #FFFFFF;
}

.results__card-title {
	margin: 0;
	font-size: 42px;
	font-weight: 500;
	line-height: 48px;
	color: #FFFFFF;
}

.results__card-divider {
	width: 100%;
	height: 1px;
	background-color: #0072FF;
}

.results__card-desc {
	margin: 0;
	font-size: 16px;
	font-weight: 400;
	line-height: 20px;
	color: #FFFFFFB2;
}

.results__card--2 .results__card-desc {
	color: #F7F7F6;
}

@media (max-width: 1024px) {
	.results {
		padding-top: 80px;
		padding-bottom: 80px;
	}

	.results__inner {
		flex-direction: column;
		gap: 40px;
	}

	.results__content,
	.results__cards {
		width: 100%;
	}

	.results__description {
		max-width: 100%;
	}
}

@media (max-width: 767px) {
	.results {
		padding-top: 80px;
		padding-bottom: 60px;
	}

	.results__inner {
		gap: 20px;
	}

	.results__card--1,
	.results__card--2 {
		width: 100%;
	}

	.results__card--2 {
		margin-left: 0;
		margin-top: -1px;
	}
}
