.about-section {
	position: relative;
	overflow: hidden;
	background: var(--color-bg-light);
}

.about-section::before {
	content: "";
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	width: 62%;
	background: linear-gradient(
		135deg,
		rgba(32, 178, 170, 0.12),
		rgba(32, 178, 170, 0.18)
	);
	clip-path: polygon(5% 0%, 100% 0%, 100% 100%, 0% 100%);
	z-index: 1;
}

.about-section::after {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	bottom: 0;
	width: 56%;
	background: linear-gradient(
		45deg,
		rgba(0, 63, 92, 0.2),
		rgba(0, 63, 92, 0.28)
	);
	clip-path: polygon(0% 0%, 40% 0%, 100% 100%, 0% 100%);
	z-index: 1;
}

/* CTA Section */

.cta-section__content {
	display: grid;
	grid-template-columns: 1fr 1fr;
	padding-top: var(--space-md);
	z-index: 2;
}
