/* LSQ Get Started CTA — Figma 1666:3508 */
#top .lsq-get-started-cta {
	--lsq-gsc-bg: #020b1a;
	--lsq-gsc-eyebrow: #5e9bff;
	--lsq-gsc-heading: #ffffff;
	--lsq-gsc-body: #8c97ac;
	--lsq-gsc-primary-bg: #ffffff;
	--lsq-gsc-primary-text: #106dfd;
	--lsq-gsc-secondary-bg: rgba(255, 255, 255, 0.08);
	--lsq-gsc-secondary-border: rgba(255, 255, 255, 0.22);
	--lsq-gsc-secondary-text: #ffffff;
}

#top .lsq-get-started-cta *,
#top .lsq-get-started-cta *::before,
#top .lsq-get-started-cta *::after {
	box-sizing: border-box;
}

#top .lsq-get-started-cta__grid {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	gap: 48px;
}

#top .lsq-get-started-cta__left {
	flex: 1 1 60%;
	min-width: 0;
	max-width: 862px;
}

#top .lsq-get-started-cta__right {
	flex: 0 1 40%;
	min-width: 0;
	max-width: 567px;
	padding-top: 40px;
}

#top .lsq-get-started-cta--no-body .lsq-get-started-cta__left {
	max-width: 100%;
	flex: 1 1 100%;
}

#top .lsq-get-started-cta__eyebrow {
    margin: 0;
    color: var(--lsq-gsc-eyebrow);
    font-size: 12px;
    font-weight: 600;
    line-height: normal;
    text-transform: uppercase;
    letter-spacing: 1.44px;
    margin-bottom: 15px;
}

.responsive #top #wrap_all .main_color .lsq-get-started-cta__heading{
	font-size: 58px;
	line-height: 62px !important;
}
#top .lsq-get-started-cta__actions {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 12px;
	margin-top: 38px;
}

#top .lsq-get-started-cta__btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	margin: 0;
	border-radius: 100px;
	font-size: 16px;
	font-weight: 600;
	line-height: normal;
	text-decoration: none;
	text-align: center;
	transition: opacity 0.2s ease, background-color 0.2s ease, border-color 0.2s ease;
}

#top .lsq-get-started-cta__btn:hover,
#top .lsq-get-started-cta__btn:focus {
	text-decoration: none;
	opacity: 0.92;
}
#top .lsq-get-started-cta__btn--secondary:hover,
#top .lsq-get-started-cta__btn--secondary:focus {
	background: #0047ff;
}
#top .lsq-get-started-cta__btn:focus-visible {
	outline: 2px solid #5e9bff;
	outline-offset: 3px;
}

#top .lsq-get-started-cta__btn--primary {
	padding: 16px 32px;
	background: var(--lsq-gsc-primary-bg);
	color: var(--lsq-gsc-primary-text);
	border: 1px solid transparent;
}

#top .lsq-get-started-cta__btn--secondary {
	padding: 17px 33px;
	background: var(--lsq-gsc-secondary-bg);
	color: var(--lsq-gsc-secondary-text);
	border: 1px solid var(--lsq-gsc-secondary-border);
}

#top .lsq-get-started-cta__btn-label {
	display: inline-block;
}

#top .lsq-get-started-cta__btn-arrow {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 17px;
	height: 17px;
	flex-shrink: 0;
	transition: transform 0.5s ease;
}

#top .lsq-get-started-cta__btn-arrow svg {
	display: block;
	width: 17px;
	height: 17px;
}
#top .lsq-get-started-cta__btn:hover .lsq-get-started-cta__btn-arrow {
    transform: translateX(4px);
}
#top .lsq-get-started-cta__body {
	color: var(--lsq-gsc-body);
	font-size: 18px;
	font-weight: 400;
	line-height: 30.96px;
}

#top .lsq-get-started-cta__body p {
	margin: 0 0 16px;
}

#top .lsq-get-started-cta__body p:last-child {
	margin-bottom: 0;
}

#top .lsq-get-started-cta__body a {
	color: inherit;
	text-decoration: underline;
}

@media only screen and (max-width: 989px) {
	#top .lsq-get-started-cta__heading {
		font-size: clamp(36px, 5vw, 52px);
		line-height: 1.15;
	}

	#top .lsq-get-started-cta__grid {
		gap: 32px;
	}

	#top .lsq-get-started-cta__right {
		padding-top: 12px;
	}
	.responsive #top #wrap_all .main_color .lsq-get-started-cta__heading {
    line-height: 1.2 !important;
}
}

@media only screen and (max-width: 767px) {
	#top .lsq-get-started-cta {
		padding: 48px 0;
	}

	#top .lsq-get-started-cta__grid {
		flex-direction: column;
		gap: 28px;
	}

	#top .lsq-get-started-cta__left,
	#top .lsq-get-started-cta__right {
		flex: 1 1 auto;
		max-width: 100%;
		width: 100%;
	}

	#top .lsq-get-started-cta__right {
		padding-top: 0;
	}

	#top .lsq-get-started-cta__heading {
		font-size: clamp(32px, 8vw, 42px);
		line-height: 1.2;
		letter-spacing: -0.8px;
	}

	#top .lsq-get-started-cta__actions {
		margin-top: 28px;
		flex-direction: column;
		align-items: stretch;
	}

	#top .lsq-get-started-cta__btn {
		width: 100%;
	}

	#top .lsq-get-started-cta__body {
		font-size: 16px;
		line-height: 1.6;
	}
.responsive #top #wrap_all .main_color .lsq-get-started-cta__heading {
    font-size: 30px !important;
    line-height: 1.2 !important;
}
.lsq-get-started-cta__heading br {
    display: none;
}
}
