.section-cta {
	position: relative;
}
.cta-content .title {
	font-size: 32px;
	margin-bottom: 20px;
	line-height: 1.4;
}
.cta-content .link {
	margin: 24px 0 20px;
}
.cta-content {
	margin-bottom: 62px;
}
.cta-items {
	display: grid;
	gap: 50px;
}
.cta-item {
	padding-left: 16px;
}
.cta-item img {
	max-width: 38px;
}
.cta-item .title {
	font-size: 18px;
	color: var(--color_text);
	line-height: 1.4;
	margin: 14px 0;
	position: relative;
}
.cta-item .title::before {
	content: '';
	background: linear-gradient(180deg, #CEEEF3 0%, #CBDBF9 100%);
	width: 6px;
	height: 26px;
	border-radius: 12px;
	display: inline-block;
	position: absolute;
	left: -16px;
}
.cta-item .desc {
	font-size: 13px;
	color: #8189A8;
	line-height: 1.8;
}
.cta-item .link {
	color: var(--primary);
	margin-top: 32px;
	display: inline-block;
	transition: 0.4s ease;
}
.cta-item .link:hover {
	color: var(--gray);
}
.cta-content .short-content::before {
	content: '';
	min-width: 9px;
	height: 9px;
	background: var(--primary);
	display: inline-block;
	border-radius: 3px;
}
.cta-content .short-content i {
	color: var(--primary);
	font-size: 20px;
	margin: 0 1px 0 3px;
}
.cta-content .short-content {
	display: flex;
	align-items: first baseline;
	gap: 7px;
	font-size: 13px;
}
.cta-shadow-1 {
	background: #0533E633;
	width: 15%;
	height: 60%;
	position: absolute;
	filter: blur(120px);
	right: 0;
	top: 30%;
	z-index: -1;
	border-radius: 50% 0 0 50%;
	animation: move-sh-4 6s alternate ease infinite;
}
.cta-shadow-2 {
	background: #58F7A333;
	width: 22%;
	height: 50%;
	position: absolute;
	filter: blur(120px);
	left: 50%;
	bottom: 15%;
	z-index: -1;
	animation: move-sh-6 4s alternate ease infinite;
}
.cta-btn-wrap {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 16px;
}
@media screen and (min-width: 768px) {
	.cta-items {
		display: flex;
	}
}
@media screen and (min-width: 992px) {
	.cta-inner {
		display: flex;
		gap: 50px;
		margin: auto;
	}
	.cta-items {
		gap: 64px;
		flex: 0 0 54%;
	}
	.cta-item {
		flex: 1 0 0;
		max-width: 260px;
	}
	.cta-content .title {
		margin-bottom: 10px;
	}
	.cta-content .short-content {
		justify-content: flex-start;
		font-size: 14px;;
	}
	.cta-content {
		margin-bottom: 0;
	}
	.cta-item .desc {
		min-height: 72px;
	}
}
@media screen and (min-width: 1400px) {
	.cta-inner {
		gap: 82px;
		max-width: 80%;
	}
}
