/* Content CTA Section */
section.content-cta-section {
    padding: 60px 20px;
}
.content-cta-section .container {
	border-radius: 30px;
	padding: 40px;
}

/* Main Content Column */
.content-cta-section .content-cta-main {

}

/* Checkmark List Styling */
.content-cta-section .content-cta-main ul {
	list-style: none;
	padding: 0;
	margin: 24px 0;
}

.content-cta-section .content-cta-main ul li {
	position: relative;
	padding-left: 40px;
	margin-bottom: 16px;
}

.content-cta-section .content-cta-main ul li::before {
	content: '';
	position: absolute;
	left: 0;
	top: 50%;
	transform: translateY(-50%);
	width: 27px;
	height: 27px;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='27' height='27' viewBox='0 0 27 27' fill='none'%3E%3Cpath d='M17.8292 10.7808L11.7477 16.5858L8.70703 13.6833' stroke='%23F9646A' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M13.2688 23.2202C18.7648 23.2202 23.2202 18.7648 23.2202 13.2688C23.2202 7.77278 18.7648 3.31738 13.2688 3.31738C7.77278 3.31738 3.31738 7.77278 3.31738 13.2688C3.31738 18.7648 7.77278 23.2202 13.2688 23.2202Z' stroke='%23F9646A' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
	background-repeat: no-repeat;
	background-size: contain;
}

.content-cta-section .content-cta-main ul li:last-child {
	margin-bottom: 0;
}

/* CTA Card */
.content-cta-section .content-cta-card {
	display: flex;
	flex: 0 0 auto;
}

.content-cta-section .cta-card-inner {
	position: relative;
	background: linear-gradient(77deg, rgba(249, 100, 106, 0.50) 2.16%, rgba(0, 0, 0, 0.00) 97.71%), #292929;
	border-radius: 30px;
	border: solid 2px transparent;
	padding: 40px;
	color: #ffffff;
	width: 100%;
	align-content: center;
}

.content-cta-section .cta-card-inner:before {
	content: '';
	position: absolute;
	inset: -1px;
	width: 100%;
	height: 100%;
	border-radius: 30px;
	padding: 1px;
    background: linear-gradient(288deg, #F9646A 2.16%, rgb(0 0 0 / 0%) 97.71%);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
	-webkit-mask-composite: destination-out;
	        mask-composite: exclude; 
	pointer-events: none;
	z-index: 1;
}

.content-cta-section .cta-card-content {
	margin-bottom: 24px;
}

.content-cta-section .cta-card-content > *:first-child {
	margin-top: 0;
}

.content-cta-section .cta-card-content > *:last-child {
	margin-bottom: 0;
}

/* CTA Card Buttons override */
.content-cta-section .content-button.purple-button {
	content: "";
	background: linear-gradient(266deg, #F9646A 0%, #FF545B 100%);
	background-size: 300% 100%;
	transition: all 0.3s ease-in-out;
	border: solid 1px transparent;
}
.content-cta-section .content-button.purple-button:is(:hover, :focus, :active) {
	box-shadow: none;
	transition: all 0.3s ease-in-out;
	background-size: 100% 100%;
	border: solid 1px #fff;
}

.content-cta-section .content-button.purple-button:before {
	display: none;
}
/* Responsive */
@media (max-width: 991px) {
	.content-cta-section .content-cta-card {
		margin-top: 30px;
	}

	.content-cta-section .cta-card-inner {
		padding: 30px;
	}
}

@media (max-width: 576px) {
	.content-cta-section .cta-card-inner {
		padding: 24px;
		border-radius: 20px;
	}

	.content-cta-section .content-cta-main ul li {
		padding-left: 36px;
	}

	.content-cta-section .content-cta-main ul li::before {
		width: 24px;
		height: 24px;
	}
}
