:root {

	--color-primary-50: #f8f7fc;
	--color-primary-100: #ede9f6;
	--color-primary-150: #e0d8f0;
	--color-primary-200: #d3c7ea;
	--color-primary-250: #c6b6e4;
	--color-primary-300: #b9a5de;
	--color-primary-350: #E2CCF599;
	--color-primary-400: #564d7c;
	--color-primary-450: #1a0b5a;
	--color-primary-470: #382e62;
	--color-primary-500: #120644;

	--color-frost: #E6F4D8;
	--color-whisper: #F3EDF5;
	--color-porcelain: #EEF3F1;

	--container-width: 138rem;
	--primary-navigation-offset-top: 2.4rem;
}

body {
	font-family: var(--ff-manrope);
}

h2,
h3,
[id] {
	scroll-margin-top: 10rem;
}

.input-1 {
	font-family: var(--ff-inter);
	font-weight: 600;
	border-radius: 1.6rem;
	padding: 1.4rem 2rem;
}

.input-1:focus-visible {
	outline: 0.2rem solid var(--color-primary-350);
}

.button {
	font-weight: 600;
	position: relative;
}

.button-md {
	padding: 0.8rem 2rem;
}

.button-xl {
	font-size: 1.6rem;
	padding: 1.2rem 3.4rem;
}

.button-white,
.button-white:hover {
	color: var(--color-primary-500);
	border-color: transparent;
	box-shadow: 0px 0px 16px 4px #1206441A;
}

.button-white.primary-border {
	border-color: var(--color-primary-500);
	box-shadow: none;
}

.heading {
	color: var(--color-primary-500);
}

.heading-4xl {
	font-size: 6.2rem;
	font-weight: 700;
	line-height: 1.1;
}

.heading-3xl {
	font-size: 4.8rem;
	font-weight: 700;
}

.text {
	font-family: var(--ff-inter);
	color: var(--color-primary-400);
}

.badge {
	font-family: var(--ff-inter);
	border-radius: 1000vmax;
}

.badge-lg {
	font-size: 1.5rem;
	font-weight: 600;
	padding: 1rem 2rem;
}

.badge-lg .icon {
	width: 1.8rem;
	height: 1.8rem;
}

.badge-md {
	font-size: 1.4rem;
	padding: 0.8rem 1.8rem;
}

.badge-primary.light {
	color: var(--color-primary-500);
	background-color: var(--color-primary-350);
}

.badge-outline,
.badge-outline:hover {
	padding: 0.8rem 2rem 0.8rem 1.4rem;
	border-color: var(--color-primary-150);
}

.card {
	border-radius: 1.2rem;
}

.divider-sm {
	margin: 2.4rem 0;
}

.container {
	display: block;
	margin-inline: auto;
	width: min(var(--container-width), 100%);
	padding-inline: 2.4rem;
}

.section-padding-top {
	padding-top: 10rem;
}

.section-padding-bottom {
	padding-bottom: 10rem;
}

.section-margin-top {
	margin-top: 10rem;
}

.section-margin-top-alt {
	margin-top: 6rem;
}

.bg-color-frost {
	background-color: var(--color-frost);
}

.bg-color-whisper {
	background-color: var(--color-whisper);
}

.bg-color-porcelain {
	background-color: var(--color-porcelain);
}

.bg-pattern {
	background-image: url(./../assets/bg.jpg);
	background-repeat: no-repeat;
	background-position: top center;
	background-size: 100% auto;
	max-height: 100%;
}

.bg-pattern-2 {
	background-image: url(./../assets/bg-2.jpg);
	background-repeat: no-repeat;
	background-position: center center;
	background-size: cover;
}

.bg-pattern-3 {
	background-image: url(./../assets/cta-bg.jpg);
	background-repeat: no-repeat;
	background-position: center center;
	background-size: cover;
}

.gradient-text-1 {
	background: linear-gradient(90.14deg, #0D0E35 0.12%, #776BC1 65.54%, #FFE5CE 159.06%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	color: transparent;
}

.gradient-text-2 {
	background: linear-gradient(90deg, #BFC1FD 16.88%, #FFFFFF 83.38%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	color: transparent;
}

.ttb-gradient-1 {
	background: linear-gradient(180deg, #DDCBFF 0%, #E6D9FF 42.97%, #FFFFFF 100%);
}

.ttb-gradient-2 {
	background: linear-gradient(180deg, rgba(28, 70, 181, 0.3) 0%, rgba(255, 255, 255, 0.6) 100%);
}

.max-width-30 {
	max-width: 30rem;
}

.max-width-45 {
	max-width: 45rem;
}

.max-width-70 {
	max-width: 70rem;
}

.max-width-85 {
	max-width: 85rem;
}

.show-on-mobile {
	display: none;
}

.counter {
	font-family: var(--ff-inter);
	font-size: 2.8rem;
	font-weight: 500;
	color: var(--color-primary-500);
	background: linear-gradient(140deg, rgba(204, 205, 255, 0.7) 4%, rgba(235, 203, 247, 0.7) 60.07%, rgba(166, 140, 225, 0.7) 100%);
	display: flex;
	justify-content: center;
	align-items: center;
	width: 5.2rem;
	height: 5.2rem;
	border-radius: 1.2rem;
	border: 0.3rem solid #fff;
	position: relative;
}

.counter-sm {
	width: 4.2rem;
	height: 4.2rem;
}

.primary-navigation-container {
	font-family: var(--ff-inter);
	width: 100%;
	position: fixed;
	left: 0;
	top: var(--primary-navigation-offset-top);
	z-index: 100;
}

.primary-navigation {
	background-color: #fff;
	display: flex;
	align-items: center;
	width: 100%;
	max-width: var(--container-width);
	margin-inline: auto;
	padding: 0.8rem 2.4rem;
	border-radius: 1.6rem;
	border: 0.1rem solid var(--color-neutral-150);
	z-index: 10;
}

.primary-navigation .logo-container,
.primary-navigation .action-container {
	min-width: 20rem;
	flex-shrink: 0;
}

.primary-navigation .action-container {
	display: flex;
	align-items: center;
	justify-content: flex-end;
}

.primary-navigation .logo-container .logo {
	width: 12rem;
}

.primary-navigation nav {
	flex-grow: 1;
}

.primary-navigation-list {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 3.2rem;
}

.primary-navigation-list li a {
	font-weight: 700;
	color: var(--color-primary-500);
	transition: all 250ms;
}

.primary-navigation-list li:hover a {
	color: var(--color-primary-400);
}

.primary-navigation-offset-top {
	padding-top: calc(var(--primary-navigation-offset-top) + 5.6rem);
}

.primary-navigation .menu-container {
	display: none;
}

.primary-navigation .menu-container .icon {
	fill: var(--color-primary-500);
	width: 2.4rem;
	height: 2.4rem;
	cursor: pointer;
}

.primary-navigation .menu-container .closer {
	display: none;
}

.primary-navigation.active .menu-container .opener {
	display: none;
}

.primary-navigation.active .menu-container .closer {
	display: block;
}

.hero {
	min-height: 100vh;
	padding-bottom: 0rem;
}

.hero.no-min-height {
	min-height: auto;
}

.hero-info {
	text-align: center;
	max-width: 110rem;
	padding: 2rem;
}

.hero-offset-top {
	padding-top: 7rem;
}

.hero .badge-outline {
	background-color: #fff;
}

.button {
	border-radius: 1.2rem;
}

.button-1 {
	min-width: 20rem;
	padding: 0.5rem 0.4rem 0.5rem 2.6rem;
	border-radius: 1.2rem;
}

.button-1-alt {
	width: 100%;
	max-width: 20rem;
	border-radius: 1.2rem;
	padding: 1.3rem 3.4rem;
}

.button-1 .button-icon {
	background-color: var(--color-primary-470);
	height: 4rem;
	width: 4rem;
	margin-left: -0.7rem;
	transform: translateX(0.3rem);
}

.button-1 .button-icon .icon {
	width: 1.2rem;
	height: 1.2rem;
}

.agents {
	display: flex;
	flex-wrap: wrap;
	gap: 2rem;
}

.agents .agent {
	border-radius: 3rem;
	border: 0.8rem solid var(--color-primary-100);
	width: calc(33.33% - 1.34rem);
	max-height: 40rem;
	position: relative;
	aspect-ratio: 1/1.5;
}

.agents .agent img {
	border-radius: 3rem;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: top center;
}

.agents .agent .badge {
	position: absolute;
	top: 1.2rem;
	right: 1rem;
}

.agents-alt-container {
	display: flex;
	justify-content: center;
}

.agents-alt {
	display: flex;
	flex-wrap: wrap;
	max-width: 105rem;
}

.agents-alt .agent-alt {
	text-align: center;
	border-radius: 1.6rem;
	width: calc(33.33%);
	position: relative;
	box-shadow: -6.16px 6.16px 6.16px 0px #0000001A;
	overflow: hidden;
}

.agents-alt .agent-alt::before {
	content: '';
	display: block;
	background: linear-gradient(180deg, rgba(18, 6, 68, 0) 0%, rgba(18, 6, 68, 0.04) 35.89%, rgba(18, 6, 68, 0.3) 68.35%, #120644 100%);
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	opacity: 0.85;
}

.agent-alt-info {
	width: 100%;
	max-width: 25rem;
	position: absolute;
	bottom: 2rem;
	left: 50%;
	transform: translateX(-50%);
}

.agents-alt .agent-alt:not(:last-of-type) .agent-alt-info {
	transform: translateX(calc(-50% - 1.6rem));
}

.agents-alt .agent-alt .heading,
.agents-alt .agent-alt .text {
	color: #fff;

}

.agents-alt .agent-alt img {
	border-radius: 1.6rem;
	aspect-ratio: 4/5;
	max-height: 45rem;
	object-fit: cover;
	object-position: top center;
}

.agents-alt .agent-alt:first-of-type {
	transform: rotate(-2.78deg) translate(4rem, 1.2rem);
}

.agents-alt .agent-alt:last-of-type {
	transform: rotate(2.78deg) translate(-4rem, 1.2rem);
}

.agent-alt {
	transition: all 250ms;
}

.agent-alt:hover:first-of-type {
	transform: rotate(-2.78deg) translate(4rem, -0.8rem);
}

.agent-alt:hover:nth-of-type(2) {
	transform: translateY(-0.8rem);
}

.agent-alt:hover:last-of-type {
	transform: rotate(2.78deg) translate(-4rem, -0.8rem);
}

.gradient-border {
	position: relative;
	border-radius: 2rem;
	padding: 1rem;
	background: #F9F6FF;
}

.gradient-border::before {
	content: "";
	position: absolute;
	inset: 0;
	padding: 1.4rem;
	border-radius: 1.8rem;
	background: linear-gradient(121.32deg,
			rgba(204, 205, 255, 0.7) 4%,
			rgba(235, 203, 247, 0.7) 60.07%,
			rgba(166, 140, 225, 0.7) 100%);
	-webkit-mask:
		linear-gradient(#fff 0 0) content-box,
		linear-gradient(#fff 0 0);
	-webkit-mask-composite: xor;
	mask-composite: exclude;
	pointer-events: none;
}

.workflow-container {
	width: 100%;
}

.workflow {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 2rem;
	width: 100%;
	max-width: 115rem;
	padding: 3rem;
	margin-inline: auto;
}

.workflow-row {
	display: flex;
	align-items: center;
	gap: 6rem;
	width: 100%;
	max-width: 90rem;
}

.workflow-row.reverse {
	flex-direction: row-reverse;
}

.workflow-column {
	width: 50%;
}

.workflow-column-img {
	width: 100%;
	max-height: 30rem;
	border-radius: 1.2rem;
	object-fit: cover;
	object-position: top center;
}

.workflow-vertical {
	display: flex;
	flex-direction: column;
	gap: 4rem;
	align-items: center;
}

.workflow-connector {
	position: relative;
}

.workflow-connector::after {
	content: "";
	position: absolute;
	top: 100%;
	left: 50%;
	transform: translateX(-50%);
	width: 1px;
	height: 3rem;
	border-left: 2px dashed var(--color-primary-200);
	margin-top: 1rem;
}

.workflow-connector:last-child::after {
	display: none;
}

.workflow-path {
	width: 100%;
	height: 103%;
	position: absolute;
	top: 0;
	left: -1rem;
	opacity: 0.8;
	image-rendering: crisp-edges;
	image-rendering: pixelated;
	user-select: none;
	pointer-events: none;
}

.section-header-1 {
	display: flex;
	align-items: center;
}

.section-header-1>*:first-of-type {
	width: 80%;
}

.section-header-1>*:nth-of-type(2) {
	display: flex;
	align-items: center;
	justify-content: flex-end;
	width: 20%;
}

.feature-cards {
	display: flex;
	flex-wrap: wrap;
	gap: 2rem;
}

.feature-card {
	width: calc(33.33% - 1.34rem);
	position: relative;
	border-radius: 1.8rem;
	overflow: hidden;
	box-shadow: 0px 4px 6px 4px #B49CC514;
}

.feature-card::before {
	content: '';
	display: block;
	background-color: var(--color-primary-500);
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	opacity: 0.7;
	z-index: 1;
	border-radius: 1.6rem;
	filter: grayscale(8%);
}

.feature-card img {
	height: 23rem;
	object-fit: cover;
	object-position: top center;
	filter: blur(0.04rem);

}

.feature-card-info {
	position: absolute;
	left: 2.4rem;
	bottom: 2.4rem;
	right: 2.4rem;
	z-index: 10;
}

.feature-card-info .heading,
.feature-card-info .text {
	color: #fff;
}

.feature-card .icon-box {
	position: absolute;
	top: 2.4rem;
	left: 2.4rem;
	z-index: 10;
}

.icon-box {
	background: linear-gradient(140deg, rgba(235, 203, 247, 0.4) 4%, rgba(180, 156, 197, 0.4) 51.03%, rgba(235, 203, 247, 0.4) 100%);
	display: flex;
	justify-content: center;
	align-items: center;
	width: 5.2rem;
	height: 5.2rem;
	border-radius: 1.2rem;
	border: 0.2rem solid var(--color-primary-350);
}

.icon-box .icon {
	width: 2.4rem;
	height: 2.4rem;
}

.information-section {
	padding: 4rem;
	border-radius: 2.4rem;
}

.information-section-1 {
	display: flex;
	align-items: center;
	gap: 4rem;
	overflow: hidden;
}

.information-section-1 .info {
	width: 45%;
	padding-left: 3rem;
}

.information-section-1 .images {
	display: flex;
	width: 55%;
	position: relative;
}

.information-section-1 .images img {
	border-radius: 2.4rem;
	border: 0.3rem solid #fff;
}

.information-section-1 .images img:first-of-type {
	width: 37rem;
	position: absolute;
	top: 50%;
	left: -0.5rem;
	transform: translateY(-50%);
	z-index: 1;
}

.information-section-1 .images img:last-of-type {
	width: 100%;
	width: 55rem;
	transform: translateX(45%);
}

.information-section-2 {
	display: flex;
	gap: 2rem;
}

.information-section-2 .information-section:first-of-type {
	display: flex;
	flex-direction: column;
	justify-content: center;
	width: 45%;
}

.information-section-2 .information-section:last-of-type {
	width: 55%;
	overflow: hidden;
	max-height: 58rem;
}

.information-section-2 .image {
	width: 100%;
	max-width: 57rem;
	border-radius: 2.4rem;
	border: 0.3rem solid #fff;
}

.video-container {
	max-width: 40rem;
	aspect-ratio: 2/3;
	border-radius: 1.8rem;
	overflow: hidden;
	position: relative;
	z-index: 10;
	cursor: pointer;
	transition: all 250ms;
}

/* .video-container::before {
	content: '';
	display: block;
	background: linear-gradient(180deg, rgba(18, 6, 68, 0) 0%, rgba(18, 6, 68, 0.04) 50%, rgba(18, 6, 68, 0.3) 68.35%, #120644 100%);
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	opacity: 0.8;
	transition: all 250ms;
} */

.video-container .icon.icon-play {
	fill: #fff;
	position: absolute;
	top: 50%;
	left: 50%;
	width: 5.2rem;
	height: 5.2rem;
	transform: translate(-50%, -50%);
	transition: all 250ms;
}

.video-container .thumbnail {
	width: 100%;
	height: 100%;
	object-fit: cover;

}

.video-container-modal {
	max-width: 28rem;
	position: fixed;
	top: 55%;
	left: 50%;
	transform: translate(-50%, -50%);
	border-radius: 2.2rem;
	border: 0.4rem solid var(--color-primary-350);
	z-index: 200;
}

.video-container-modal .close {
	display: flex;
	align-items: center;
	justify-content: center;
	position: absolute;
	top: 0;
	right: 0rem;
	width: 2.6rem;
	height: 2.6rem;
	background-color: var(--color-neutral-100);
	border: 0.2rem solid var(--color-primary-350);
	border-radius: 1000vmax;
	padding: 0.6rem;
	z-index: 10;
	transform: translate(40%, -50%);
	box-shadow: 0px 3.82px 15.29px 0px #00000029;
	cursor: pointer;
}

.video-container-modal .close .icon {

	width: 1.6rem;
	height: 1.6rem;
}

.video-container-modal.preview {
	left: unset;
	top: unset;
	right: 3rem;
	bottom: 2rem;
	max-width: 13rem;
	transform: unset;
	transition: all 250ms;
	opacity: 0;
	pointer-events: none;
}

.video-container-modal.preview.active {
	opacity: 1;
	pointer-events: unset;
}

.video-container-modal.preview:hover {
	transform: scale(1.05);
}

.positioned-cards-container {
	display: flex;
	justify-content: center;
	position: relative;
}

.positioned-cards {
	width: 100%;
	max-width: 120rem;
}

.positioned-cards .circles {
	width: 80rem;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	z-index: 1;
}

.positioned-cards .card {
	background-color: #fff;
	width: 100%;
	max-width: 28rem;
	z-index: 10;

}

.positioned-cards .card:nth-of-type(1) {
	position: absolute;
	top: 4rem;
	left: 0;
}

.positioned-cards .card:nth-of-type(2) {
	position: absolute;
	bottom: 10rem;
	left: 5rem;
}

.positioned-cards .card:nth-of-type(3) {
	position: absolute;
	top: 3rem;
	right: 0;
}

.positioned-cards .card:nth-of-type(4) {
	position: absolute;
	bottom: 0;
	right: 5rem;
}

.positioned-cards .arrow {
	width: 10rem;
}

.positioned-cards .arrow:first-of-type {
	position: absolute;
	bottom: 0;
	left: 20rem;
}

.positioned-cards .arrow:nth-of-type(2) {
	position: absolute;
	bottom: 14rem;
	right: 20rem;
}


.packages {
	display: flex;
	gap: 2rem;
	flex-wrap: wrap;
}

.packages .package {
	text-align: center;
	width: calc(33.33% - 1.33rem);
	padding: 3rem;
	border-radius: 1.6rem;
	box-shadow: 0px 4px 16px 0px #10182814;
	transition: all 250ms;
}

.packages .package:hover {
	transform: translateY(-0.8rem);
}

.packages .package .text.dim {
	color: var(--color-neutral-400);
}

.packages .list-icon {

	gap: 0;
}

.packages .list-icon li {
	align-items: flex-start;
	gap: 1rem;
}


.packages .list-icon li .icon {
	transform: translateY(0.6rem);
}

/* FAQ Accordion Styles */
.faq-container {
	max-width: 85rem;
	margin: 0 auto;
}

.accordion {
	border: 1px solid #E5E7EB;
	border-radius: 1.2rem;
	overflow: hidden;
	margin-bottom: 1rem;
	background-color: #fff;
	transition: all 0.3s ease;
}

.accordion:hover {
	box-shadow: 0px 4px 12px 0px rgba(16, 24, 40, 0.08);
}

.accordion-header {
	padding: 2.4rem;
	cursor: pointer;
	display: flex;
	justify-content: space-between;
	align-items: center;
	border: none;
	background: none;
	width: 100%;
	text-align: left;
	font-family: inherit;
	transition: background-color 0.3s ease;
}

.accordion-header:hover {
	background-color: #F9FAFB;
}

.accordion-title {
	font-size: 1.8rem;
	font-weight: 600;
	color: var(--color-primary-500);
	margin: 0;
	font-family: var(--ff-inter);
}

.accordion-icon {
	width: 2.4rem;
	height: 2.4rem;
	color: var(--color-primary-400);
	transition: transform 0.3s ease;
	flex-shrink: 0;
	margin-left: 2rem;
}

.accordion.open .accordion-icon {
	transform: rotate(45deg);
}

.accordion-content {
	max-height: 0;
	overflow: hidden;
	transition: max-height 0.3s ease;
	background-color: #fff;
}

.accordion.open .accordion-content {
	max-height: 500px;
}

.accordion-content-inner {
	padding: 0 2.4rem 2.4rem 2.4rem;
	border-top: 1px solid #F3F4F6;
}

.accordion-text {
	font-size: 1.6rem;
	line-height: 1.6;
	color: var(--color-primary-400);
	margin: 1.6rem 0 0 0;
	font-family: var(--ff-inter);
}


.cta-section {
	text-align: center;
	position: relative;
}

.cta-section .badge-outline,
.cta-section .badge-outline:hover {
	color: #fff;
	background-color: transparent;

}

.cta-section .text {
	color: #fff;
}


.cta-form {
	max-width: 40rem;
	position: relative;
}

.cta-form .button {
	position: absolute;
	top: 50%;
	right: 0.6rem;
	border-radius: 1.2rem;
	transform: translateY(-50%);
}

.footer {
	background-color: var(--color-primary-500);
	padding: 6rem 0 3rem;
	color: #fff;
}

.footer-content {
	display: flex;
	justify-content: space-between;
	gap: 4rem;
	margin-bottom: 4rem;
}

.footer-brand {
	flex: 1;
	max-width: 28rem;
}

.footer-description {
	opacity: 0.8;
}

.footer-logo {
	display: flex;
	align-items: center;
	gap: 0.8rem;
	margin-bottom: 1rem;
}

.footer-logo img {
	width: 12rem;
}

.footer .text,
.footer .heading {
	color: #fff;
}

.footer-social {
	display: flex;
	gap: 1.2rem;
}

.footer-social-link {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 4rem;
	height: 4rem;
	border: 1px solid rgba(255, 255, 255, 0.3);
	border-radius: 50%;
	color: #fff;
	text-decoration: none;
	transition: all 0.3s ease;
}

.footer-social-link:hover {
	background-color: rgba(255, 255, 255, 0.1);
	border-color: rgba(255, 255, 255, 0.5);
}

.footer-social-link svg {
	width: 2rem;
	height: 2rem;
}

.footer-section {
	flex: 1;
}

.footer-links {
	list-style: none;
	padding: 0;
	margin-top: 1.6rem;
}

.footer-links li {
	margin-bottom: 1.6rem;
}

.footer-links a {
	color: #fff;
	text-decoration: none;
	font-family: var(--ff-inter);
	opacity: 0.8;
}

.footer-links a:hover {
	color: #fff;
	opacity: 1;
}

.footer-contact-item {
	display: flex;
	align-items: flex-start;
	gap: 1.2rem;
	margin-bottom: 1.6rem;
	opacity: 0.8;
}

.footer-contact-icon {
	width: 1.8rem;
	height: 1.8rem;
	color: #fff;
	flex-shrink: 0;
	margin-top: 0.2rem;
}

.footer-bottom {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding-top: 3rem;
	border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-copyright {
	color: #fff;
	opacity: 0.7;
	font-family: var(--ff-inter);
}

.footer-partners {
	display: flex;
	gap: 1.2rem;
	align-items: center;
}

.footer-partner-logo {
	width: 3.6rem;
	border-radius: 0.4rem;
	transition: opacity 0.3s ease;
}

.footer-partner-logo:hover {
	opacity: 0.8;
}

.white-bottom-gradient {
	position: relative;
}

.white-bottom-gradient::after {
	content: "";
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 50px;
	/* gradient height */
	background: linear-gradient(to top, white 0%, transparent 100%);
	pointer-events: none;
	/* let clicks pass through */
}

.slide-1 .splide__slide {
	width: 25rem !important;
}

.slide-1 .splide__slide img {
	width: 25rem;
	height: 35rem;
	border-radius: 1.6rem;
	object-fit: cover;
	object-position: top center;
	position: relative;
	transition: all 100ms;
}

.slide-1 .splide__slide .img-container {
	position: relative;
}

.slide-1 .splide__slide .img-container::before {
	content: '';
	display: block;
	background-color: var(--color-primary-500);
	opacity: 0.4;
	width: 100%;
	height: 100%;
	border-radius: 1.6rem;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 100;
}

.slide-1-card {
	position: relative;
	transition: all 250ms;
}

.slide-1-card::before {
	content: '';
	display: block;
	background-color: var(--color-primary-500);
	width: calc(100% + 0rem);
	height: 100%;
	border-radius: 1.6rem;
	opacity: 0;
	pointer-events: none;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 10;
}

.slide-1-card .info-container {
	width: 24rem;
	position: absolute;
	top: 50%;
	left: 0;
	z-index: 200;
	opacity: 0;
	pointer-events: none;
	transform: translate(calc(100% + 2rem), -50%);

}

.slide-1-card .info-container .heading,
.slide-1-card .info-container .text {
	color: #fff;
}

.slide-1-card .info-container .text {
	max-width: 23rem;
}

.slide-1-card:hover .info-container {
	opacity: 1;
	pointer-events: unset;
}

.slide-1-card:hover::before {
	opacity: 1;
	pointer-events: unset;
}

.slide-1-card:hover .img-container img {
	z-index: 25;
	transform: scale(0.9);
}

.slide-1 .splide__slide {
	transition: all 250ms;
}

.slide-1 .splide__slide:hover {
	width: 50rem !important;
	margin-right: 2rem !important;
}

.slide-1 .splide__slide>.heading {
	max-width: 20rem;
}


@media (max-width: 1024px) {

	.show-on-mobile {
		display: block;
	}

	.primary-navigation-container {
		position: unset;
		padding-inline: 1rem;
		background-color: #e8d9f0;
	}

	.primary-navigation {
		transform: translateY(2rem);
		position: relative;
	}

	.primary-navigation nav {
		display: none;
		width: 100%;
		position: absolute;
		bottom: 0;
		left: 0rem;
		transform: translateY(calc(100% + 1rem));
		opacity: 0;
	}

	.primary-navigation.active nav {
		display: block;
		opacity: 1;
	}

	.primary-navigation .action-container {
		display: none;
	}

	.primary-navigation-list {
		display: flex;
		gap: 2rem;
		flex-direction: column;
		background-color: #fff;
		width: 100%;
		border-radius: 1.6rem;
		padding-top: 2rem;
		padding-bottom: 2rem;
		box-shadow: 0px 0px 16px 4px #1206441A;
	}

	.primary-navigation-list li {
		text-align: center;
		width: 100%;
	}

	.primary-navigation-offset-top {
		padding-top: 0;
	}

	.feature-cards .feature-card {
		width: calc(50% - 1rem);
	}

	.packages .package {
		width: calc(50% - 1rem);
	}

}

@media (max-width: 992px) {


	.primary-navigation {
		display: flex;
		justify-content: space-between;
		align-items: center;

	}

	.primary-navigation .menu-container {
		display: unset;
	}

	.primary-navigation .logo-container {
		min-width: unset;
	}

	.agents {
		gap: 1rem;
	}

	.agents .agent {
		width: calc(33.33% - 0.67rem);
	}

	.section-header-1 {
		flex-direction: column;
		gap: 2rem;
		text-align: center;
	}

	.section-header-1>*:first-of-type,
	.section-header-1>*:last-of-type {
		width: 100%;
		justify-content: center;
	}

	.information-section-1 .images img:first-of-type {
		width: 100%;
		max-width: 57rem;
		position: unset;
		transform: unset;
	}

	.information-section-1 .images img:last-of-type {
		display: none;
	}

	.information-section-1 {
		flex-direction: column;
		text-align: center;
	}

	.information-section-1 .images {
		justify-content: center;
		width: 100%;
	}

	.information-section-1 .info {
		width: 100%;
		display: flex;
		flex-direction: column;
		justify-content: center;
		align-items: center;
		padding-left: 0;
	}

	.information-section-2 {
		flex-direction: column-reverse;
	}

	.information-section-2 .information-section:first-of-type,
	.information-section-2 .information-section:last-of-type {
		width: 100%;
	}

	.positioned-cards .circles {
		width: 50rem;
	}

	.video-container {
		max-width: 30rem;
	}

	.positioned-cards .card:nth-of-type(1) {
		top: -9rem;
		left: 0;
	}

	.positioned-cards .card:nth-of-type(2) {
		bottom: -5rem;
		left: 0;
	}

	.positioned-cards .card:nth-of-type(3) {
		top: -5rem;
		right: 0;
	}

	.positioned-cards .card:nth-of-type(4) {
		bottom: -9rem;
		right: 0;
	}

	.positioned-cards .arrow:nth-of-type(1),
	.positioned-cards .arrow:nth-of-type(2) {
		display: none;
	}

	.footer-content {
		flex-wrap: wrap;
		gap: 2rem;
		justify-content: unset;
	}

	.footer-content>* {
		flex: unset;
	}

	.footer-brand,
	.footer-section {
		width: calc(50% - 1rem);
		max-width: unset;
	}

	.workflow-path {
		display: none;
	}

}

@media (max-width: 768px) {

	.heading-4xl {
		font-size: 5.2rem;
	}

	.heading-3xl {
		font-size: 3.8rem;
	}

	.heading-xl {
		font-size: 2.8rem;
	}

	.heading-md {
		font-size: 2.2rem;
	}

	.heading-sm {
		font-size: 1.8rem;
	}

	.text-xl {
		font-size: 1.7rem;
	}

	.badge-md {
		font-size: 1.2rem;
		padding: 0.4rem 1.2rem;
	}

	.badge-outline {
		font-size: 1.4rem;
	}

	.badge-lg .icon {
		width: 1.7rem;
		height: 1.7rem;
	}

	.button-xl {
		font-size: 1.4rem;
	}

	.button-1 {
		min-width: 20rem;
		padding: 0.4rem 0.4rem 0.4rem 2.6rem;
		border-radius: 1.2rem;
	}

	.button-1 .button-icon {
		width: 3.7rem;
		height: 3.7rem;
		transform: translateX(1.8rem)
	}

	.button-1-alt {
		padding: 1.2rem 3.4rem;
	}

	.counter {
		font-size: 2.2rem;
		width: 4.2rem;
		height: 4.2rem;
	}

	.feature-card .icon-box {
		width: 4.2rem;
		height: 4.2rem;
	}

	.icon-box .icon {
		width: 2rem;
		height: 2rem;
	}

	.agents .agent {
		border-radius: 2.4rem;
		border: 0.4rem solid var(--color-primary-100);
	}

	.agents .agent img {
		border-radius: 2.4rem;
	}

	.workflow-row,
	.workflow-row.reverse {
		gap: 2rem;
		flex-direction: column;
	}

	.workflow-column {
		width: 100%;
	}

	.gradient-border::before {
		padding: 0.8rem;
	}

	.feature-cards .feature-card {
		width: calc(100% - 0rem);
	}

	.agents-alt .agent-alt .heading {
		font-size: 1.6rem;
	}

	.agents-alt .agent-alt .text {
		font-size: 1.2rem;
		max-width: 20rem;
	}

	.agents-alt .agent-alt:not(:last-of-type) .agent-alt-info {
		transform: translateX(calc(-50% - 0rem));
	}

	.agents-alt .agent-alt img {
		aspect-ratio: 2/3;
	}

	.video-container {
		max-width: 25rem;
	}

	.positioned-cards .card {
		display: none;
	}

	.packages .package {
		width: calc(100% - 0rem);
	}

	.slide-1 .splide__slide:hover {
		width: auto !important;
		margin-right: 2rem !important;
	}

	.slide-1 .splide__slide .slide-1-card .info-container {
		padding-inline: 2rem;
		text-align: center;
		left: 0rem;
		bottom: 0;
		transform: unset;
	}

	.slide-1 .splide__slide:hover .img-container::before {
		opacity: 0.7;
	}

	.video-container-modal.preview {
		max-width: 11rem;
		right: 1.6rem;
		bottom: 1.6rem;
	}

}

@media (max-width: 557px) {

	.heading-4xl {
		font-size: 3.6rem;
	}

	.heading-3xl {
		font-size: 2.8rem;
	}

	.heading-xl {
		font-size: 2.2rem;
	}

	.heading-lg {
		font-size: 2.2rem;
	}

	.heading-md {
		font-size: 2rem;
	}

	.text-xl {
		font-size: 1.6rem;
	}

	.badge-outline {
		font-size: 1.2rem;
	}

	.badge-lg .icon {
		width: 1.4rem;
		height: 1.4rem;
	}

	.button-1 {
		min-width: unset;
	}

	.button-1 .button-icon {
		margin-left: 0.2rem;
		transform: translateX(0rem)
	}

	.button-1-alt {
		width: unset;
		padding: 1.2rem 3.4rem;
	}

	.hero-offset-top {
		margin-top: 6rem;
		padding-top: 0 !important;
	}

	.agents .agent .badge {
		background-color: transparent;
		top: unset;
		right: unset;
		left: 50%;
		bottom: -3rem;
		transform: translateX(-50%);
	}


	.agents-alt .agent-alt:first-of-type {
		transform: rotate(-2.78deg) translate(0rem, 0.5rem);
	}

	.agents-alt .agent-alt:last-of-type {
		transform: rotate(2.78deg) translate(0rem, 0.5rem);
	}

	.agents-alt .agent-alt .heading {
		font-size: 1.4rem;
	}

	.agents-alt .agent-alt .text {
		font-size: 1rem;
	}

	.agent-alt-info {
		bottom: 1rem;
	}

	.positioned-cards .circles {
		width: 100%;
	}

	.accordion-title {
		font-size: 1.6rem;
	}

	.footer-brand,
	.footer-section {
		width: calc(100% - 0rem);
		max-width: unset;
	}

	.footer-bottom {
		flex-direction: column;
		gap: 2rem;
	}

	.footer-bottom>* {
		width: 100%;
	}

}

@media (max-width: 450px) {

	.section-margin-top {
		margin-top: 8rem;
	}

	.section-margin-top-alt {
		margin-top: 4rem;
	}

	.agents {
		gap: 0.5rem;
	}

	.agents .agent {
		border-radius: 1.8rem;
		border: 0.3rem solid var(--color-primary-100);
		width: calc(33.33% - 0.34rem);
	}

	.agents .agent img {
		border-radius: 1.8rem;
	}

	.hero .button-1,
	.hero .button-1-alt {
		position: relative;
		width: 100%;
		max-width: unset;
		padding: 1.2rem 3.4rem;
	}

	.button-1 {
		padding: 1.2rem 3.4rem;
		width: 100%;
	}

	.button-1 .button-icon {
		position: absolute;
		right: 0.4rem;
	}

	.primary-navigation .logo-container .logo {
		width: 11rem;
	}

	.agents-alt .agent-alt .heading {
		font-size: 1rem;
		font-weight: 500;
	}

	.agents-alt .agent-alt .text {
		display: none;
	}

	.hero-info {
		padding: 2rem 0;
	}
}

@media (max-width: 400px) {
	.agents .agent .badge {
		font-size: 1rem;
	}
}