.cta-body {
	display: flex;
	flex-flow: wrap;
	justify-content: space-between;
	gap: 2rem;
	position: relative;
	border: 2px solid rgb(71, 98, 137);
	border-radius: 20px;
	background: linear-gradient(317deg, rgb(165 239 255 / 17%) 0%, rgb(110 191 244 / 6%) 22%, rgb(70 144 212 / 4%) 100%);
	-webkit-backdrop-filter: saturate(110%) blur(20px);
	backdrop-filter: saturate(110%) blur(20px);
	box-shadow: 0 8px 24px rgba(0, 0, 0, .15);
	padding: 28px;
	overflow: hidden;
	isolation: isolate;
}

.cta-body::before, .cta-body::after {
	content: "";
	position: absolute;
	inset: 0;
	border-radius: inherit;
	pointer-events: none;
}

.cta-body::before {
	background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='1'/%3E%3C/svg%3E") repeat;
	opacity: .15;
	mix-blend-mode: overlay;
}

.cta-body::after {
	background: url(/wp-content/uploads/2025/09/form-gradient.webp);
	background-size: auto;
	background-position: right;
	background-repeat: no-repeat;
	opacity: .9;
	z-index: -1;
}

.cta-body p {
	line-height: 1.5rem;
	margin-bottom: 0;
}

.cta-small {
	align-items: center;
	padding: 30px 40px;
}

.cta-small h2 {
	font-size: 2rem;
}

.cta-big {
	padding: 50px 40px;
}

.cta-desc-short {
	max-width: 520px;
}

.cta-big .cta-content {
	max-width: 900px;
}

.cta-subtitle{
		margin: 16px 0 32px;
		font-size: 1rem;
		font-weight: 600;
		letter-spacing: .5px;
		text-transform: uppercase;
		color: var(--teal);
		line-height: 1rem;
}

.cta-big .button-group {
	align-items: end;
}

