.cta {
	padding-top: 50px;
	padding-bottom: 50px;
}

.cta__panel {
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	align-items: stretch;
	row-gap: 64px;
	column-gap: 0;
	background-color: #05324E;
	border-radius: 40px;
	padding: 80px 96px;
}

.cta__content {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	width: 44%;
}

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

.cta__description {
	width: 85%;
	max-width: 85%;
	margin: 0 0 32px 0;
	font-size: 18px;
	font-weight: 400;
	line-height: 28px;
	color: #FFFFFFB2;
}

.cta__button {
	display: inline-flex;
	align-items: center;
	align-self: flex-start;
	background-color: #0072FF;
	border-radius: 50px;
	padding: 4px 4px 4px 24px;
	text-decoration: none;
	transition: background-color 0.2s ease;
}

.cta__button:hover {
	background-color: #0061D9;
}

.cta__button-text {
	margin: 0 24px 0 0;
	font-size: 18px;
	font-weight: 600;
	line-height: 22px;
	color: #FFFFFF;
}

.cta__button-icon {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	border-radius: 50%;
	background-color: #FFFFFF;
	color: #0072FF;
	flex-shrink: 0;
}

.cta__stats {
	display: flex;
	flex-direction: row;
	flex-wrap: nowrap;
	justify-content: space-between;
	align-items: stretch;
	width: 56%;
}

.cta__stat {
	display: flex;
	flex-direction: column;
	gap: 24px;
	width: 100%;
	min-height: 284px;
	border: 1px solid #404E5B;
	border-radius: 24px;
	padding: 24px;
	text-decoration: none;
	transition: border-color 0.2s ease;
}

.cta__stat:hover {
	border-color: #0072FF;
}

.cta__stat + .cta__stat {
	margin-left: -1px;
}

.cta__stat-number {
	color: #FFFFFF;
	font-size: 80px;
	font-weight: 500;
	line-height: 110%;
}

.cta__stat-divider {
	align-self: center;
	width: 100%;
	border-top: 1px solid #0072FF;
}

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

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

	.cta__panel {
		flex-direction: column;
		gap: 40px;
		padding: 40px 48px;
	}

	.cta__content {
		width: 100%;
	}

	.cta__heading {
		font-size: 42px;
		line-height: 48px;
	}

	.cta__stats {
		width: 100%;
		row-gap: 32px;
	}
}

@media (max-width: 767px) {
	.cta__panel {
		gap: 20px;
		padding: 32px;
	}

	.cta__heading {
		margin-bottom: 28px;
		font-size: 36px;
		line-height: 42px;
	}

	.cta__stats {
		flex-direction: column;
		row-gap: 0;
	}

	.cta__stat + .cta__stat {
		margin-left: 0;
		margin-top: -1px;
	}
}
