@charset "utf-8";
/* CSS Document */

/*---------- Google Fonts ----------*/

:root {
	--white: #fff;
	--black: #1D1D1D;
	--violet: #584EFC;
	--sky: #6EDEF4;
}

body {
	font-family: 'Outfit';
	font-size: 18px;
	line-height: 22px;
	font-weight: 200;
	background-color: var(--white);
	color: var(--black);
}

figure {
	margin: 0;
}

a,
input,
button,
textarea {
	outline: none !important;
}

a {
	color: inherit;
	text-decoration: none;
	transition: all ease-in-out 300ms;
	-webkit-transition: all ease-in-out 300ms;
	-ms-transition: all ease-in-out 300ms;
	-o-transition: all ease-in-out 300ms;
	-moz-transition: all ease-in-out 300ms;
}

.container-fluid,
.container {
	padding-left: 15px;
	padding-right: 15px;
}

.row {
	margin-left: -15px;
	margin-right: -15px;
}

.row>* {
	padding-left: 15px;
	padding-right: 15px;
}

p {
	font-family: inherit;
	font-size: inherit;
	line-height: inherit;
	color: inherit;
}

p a {
	text-decoration: none;
	color: inherit;
}

p a:hover {
	color: var(--violet);
}

ul li,
ol li {
	font-size: inherit;
	line-height: inherit;
	color: inherit;
}

ul li a,
ol li a {
	text-decoration: none;
	color: inherit;
}

ul li a:hover,
ol li a:hover {
	color: var(--violet);
}

/* Common Style Start */
.main-title {
	font-family: 'SatoshiMedium';
	font-size: 60px;
	line-height: 70px;
	font-weight: normal;
	text-transform: capitalize;
}

.main-title * {
	text-decoration: none;
	font-family: inherit;
	font-size: inherit;
	line-height: inherit;
	font-weight: inherit;
	margin: 0;
}

.main-title span {
	font-family: 'Instrument Serif';
	font-style: italic;
	background: -moz-linear-gradient(270deg, #6EDEF4 0%, #584EFC 100%);
	background: -webkit-linear-gradient(270deg, #6EDEF4 0%, #584EFC 100%);
	background: linear-gradient(270deg, #6EDEF4 0%, #584EFC 100%);
	background-clip: text;
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
}

.section-title {
	font-family: 'SatoshiMedium';
	font-size: 50px;
	line-height: 60px;
	font-weight: normal;
}

.section-title * {
	text-decoration: none;
	font-family: inherit;
	font-size: inherit;
	line-height: inherit;
	font-weight: inherit;
	margin: 0;
}

.section-title span {
	font-family: 'Instrument Serif';
	font-style: italic;
	background: -moz-linear-gradient(270deg, #6EDEF4 0%, #584EFC 100%);
	background: -webkit-linear-gradient(270deg, #6EDEF4 0%, #584EFC 100%);
	background: linear-gradient(270deg, #6EDEF4 0%, #584EFC 100%);
	background-clip: text;
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	padding-right: 5px;
	padding-left: 5px;
}

.small-title {
	font-size: 20px;
	line-height: 20px;
	font-weight: 500;
}

.small-title * {
	text-decoration: none;
	font-size: inherit;
	line-height: inherit;
	font-weight: inherit;
	margin: 0;
}

.large-detail {
	font-size: 20px;
	line-height: 125%;
	font-weight: 200;
}

.large-detail * {
	text-decoration: none;
	font-size: inherit;
	line-height: inherit;
	font-weight: inherit;
	margin: 0;
}

.common-detail * {
	text-decoration: none;
	font-size: inherit;
	line-height: inherit;
	font-weight: inherit;
	margin: 0;
}

.btn {
	font-size: 20px;
	line-height: 30px;
	font-weight: 500;
	border: none;
	border-radius: 10px;
	-webkit-border-radius: 10px;
	-moz-border-radius: 10px;
	-ms-border-radius: 10px;
	-o-border-radius: 10px;
	transition: all 0.5s ease;
	-webkit-transition: all 0.5s ease;
	-moz-transition: all 0.5s ease;
	-ms-transition: all 0.5s ease;
	-o-transition: all 0.5s ease;
}

.btn-violet {
	background: -moz-linear-gradient(270deg, #584EFC 0%, #6EDEF4 50%, #584EFC 100%);
	background: -webkit-linear-gradient(270deg, #584EFC 0%, #6EDEF4 50%, #584EFC 100%);
	background: linear-gradient(270deg, #584EFC 0%, #6EDEF4 50%, #584EFC 100%);
	background-size: 1000% 100%;
	color: var(--white);
	padding: 5px 5px 5px 16px;
	display: flex;
	align-items: center;
	max-width: max-content;
}

.btn-violet span {
	width: 40px;
	height: 40px;
	flex: 0 0 auto;
	margin: 0 0 0 10px;
	background-color: var(--white);
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 5px;
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	-ms-border-radius: 5px;
	-o-border-radius: 5px;
	transition: 0.5s;
	-webkit-transition: 0.5s;
	-moz-transition: 0.5s;
	-ms-transition: 0.5s;
	-o-transition: 0.5s;
}

.btn-violet:hover {
	background-size: 200% 100%;
	background-position: right;
	color: var(--white) !important;
}

.btn-simple-violet {
	background: var(--white);
	background-size: 1000% 100%;
	color: var(--violet);
	padding: 5px 5px 5px 16px;
	display: flex;
	align-items: center;
	max-width: max-content;
	border: 1px solid var(--violet);
}

.btn-simple-violet span {
	width: 40px;
	height: 40px;
	flex: 0 0 auto;
	margin: 0 0 0 10px;
	background-color: var(--violet);
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 5px;
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	-ms-border-radius: 5px;
	-o-border-radius: 5px;
	transition: 0.5s;
	-webkit-transition: 0.5s;
	-moz-transition: 0.5s;
	-ms-transition: 0.5s;
	-o-transition: 0.5s;
}

.btn-simple-violet:hover {
	background: var(--violet);
	color: var(--white) !important;
}

.btn-simple-violet:hover span {
	color: var(--white);
	background-color: rgba(0, 0, 0, 0.10);
}

/* Common Style End */


.fix-width-365 {
	max-width: 365px;
	width: 100%;
}

.fix-width-540 {
	max-width: 540px;
	width: 100%;
}

.fix-width-605 {
	max-width: 605px;
	width: 100%;
}

.fix-width-660 {
	max-width: 660px;
	width: 100%;
}

.fix-width-695 {
	max-width: 695px;
	width: 100%;
}

.fix-width-700 {
	max-width: 700px;
	width: 100%;
}

.fix-width-1345 {
	max-width: 1345px;
	width: 100%;
}

.fix-width-1480 {
	max-width: 1480px;
	width: 100%;
}

.fix-width-1520 {
	max-width: 1520px;
	width: 100%;
}

/*==================================================================*/
/*========== Header Start ==========*/
/*==================================================================*/
.header {
	padding: 20px 0;
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 999;
	background-color: var(--white);
	transition: 0.5s;
	-webkit-transition: 0.5s;
	-moz-transition: 0.5s;
	-ms-transition: 0.5s;
	-o-transition: 0.5s;
}

.header.sticky_header {
	padding: 12px 0;
	-moz-box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.10);
	-webkit-box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.10);
	box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.10);
}

.header.sticky_header .navbar-brand {
	max-width: 170px;
}

.header .navbar {
	padding: 0;
}

.header .navbar-brand {
	padding: 0;
	margin: 0;
	max-width: 208px;
	width: 100%;
}

.header .navbar-nav .nav-item {
	padding: 0 25px;
}

.header .navbar-nav .nav-item .nav-link {
	font-size: 20px;
	line-height: 125%;
	font-weight: 400;
	color: var(--black);
	padding: 0;
}

.header .navbar-nav .nav-item .nav-link:hover,
.header .navbar-nav .nav-item .nav-link.active {
	color: var(--violet);
}

/*==================================================================*/
/*========== Header End ==========*/
/*==================================================================*/



/*==================================================================*/
/*========== New Class Add Start ==========*/
/*==================================================================*/

.content {
	padding: 111px 0 0;
}

/* Banner Start */
.banner-wrp {
	position: relative;
	padding: 30px 0;
}

.banner-shape-left {
	position: absolute;
	left: 0;
	top: 50%;
	z-index: -1;
	transform: translate(0, -50%);
	-webkit-transform: translate(0, -50%);
	-moz-transform: translate(0, -50%);
	-ms-transform: translate(0, -50%);
	-o-transform: translate(0, -50%);
}

.banner-shape-right {
	position: absolute;
	right: 0;
	top: 50%;
	z-index: -1;
	transform: translate(0, -50%);
	-webkit-transform: translate(0, -50%);
	-moz-transform: translate(0, -50%);
	-ms-transform: translate(0, -50%);
	-o-transform: translate(0, -50%);
}

.banner-main {
	max-width: 1520px;
	width: 100%;
	margin: 0 auto;
}

.banner-main .row {
	align-items: center;
}

.banner-left {
	margin: 0 -85px 0 63px;
}

.banner-left .main-title {
	margin: 0 0 20px;
}

.banner-left .main-title span {
	display: inline-block;
	padding: 0 0 0 3px;
}

.banner-left .large-detail {
	max-width: 529px;
	width: 100%;
	margin: 0 0 40px;
}

.banner-img {
	max-width: 666px;
	width: 100%;
	margin-left: auto;
}

.banner-img img {
	width: 100%;
}

/* Banner End */

/* About Start */
.about-right .section-title {
	margin: 0 0 30px;
}

.about-right .large-detail p {
	margin: 0 0 30px;
}

.about-right .large-detail p:last-child {
	margin-bottom: 0;
}

.about-main {
	max-width: 1620px;
	width: 100%;
	margin-left: auto;
	padding: 0 100px 0 0;
	position: relative;
}

.about-shape {
	position: absolute;
	left: 148px;
	top: 50%;
	z-index: -1;
	transform: translate(0, -50%);
	-webkit-transform: translate(0, -50%);
	-moz-transform: translate(0, -50%);
	-ms-transform: translate(0, -50%);
	-o-transform: translate(0, -50%);
}

.about-main::after {
	content: "";
	position: absolute;
	left: 148px;
	right: 0;
	top: 40px;
	bottom: 40px;
	z-index: -1;
	background: -moz-linear-gradient(180deg, rgba(110, 222, 244, 0.1) 0%, rgba(88, 78, 252, 0.1) 100%);
	background: -webkit-linear-gradient(180deg, rgba(110, 222, 244, 0.1) 0%, rgba(88, 78, 252, 0.1) 100%);
	background: linear-gradient(180deg, rgba(110, 222, 244, 0.1) 0%, rgba(88, 78, 252, 0.1) 100%);
	border-radius: 10px;
	-webkit-border-radius: 10px;
	-moz-border-radius: 10px;
	-ms-border-radius: 10px;
	-o-border-radius: 10px;
}

.about-icon {
	max-width: 77px;
	width: 100%;
	height: 66px;
	display: flex;
	align-items: center;
	margin: 0 0 15px;
}

.about-details .small-title {
	margin: 0 0 10px;
}

.about-block {
	padding: 30px;
	background-color: var(--white);
	margin: 0 0 30px;
	min-height: 240px;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	justify-content: space-between;
	position: relative;
	cursor: pointer;
	overflow: hidden;
	border: 1px solid rgba(88, 78, 252, 0.3);
	-moz-box-shadow: 10px 10px 0px 0px rgba(0, 0, 0, 0.05);
	-webkit-box-shadow: 10px 10px 0px 0px rgba(0, 0, 0, 0.05);
	box-shadow: 10px 10px 0px 0px rgba(0, 0, 0, 0.05);
	border-radius: 20px;
	-webkit-border-radius: 20px;
	-moz-border-radius: 20px;
	-ms-border-radius: 20px;
	-o-border-radius: 20px;
	transition: 0.5s;
	-webkit-transition: 0.5s;
	-moz-transition: 0.5s;
	-ms-transition: 0.5s;
	-o-transition: 0.5s;
}

.about-block:last-child {
	margin-bottom: 0;
}

.hover-icon {
	max-width: 193px;
	width: 100%;
	opacity: 0.1;
	position: absolute;
	right: -38px;
	bottom: -10px;
	opacity: 0;
	transition: 0.5s;
	-webkit-transition: 0.5s;
	-moz-transition: 0.5s;
	-ms-transition: 0.5s;
	-o-transition: 0.5s;
}

.hover-icon img {
	width: 100%;
}

.about-block:hover {
	border-color: rgba(88, 78, 252, 1);
}

.about-block:hover .hover-icon {
	opacity: 0.1;
}

.about-left {
	max-width: 650px;
	width: 100%;
}

.about-right {
	max-width: 708px;
	width: 100%;
	margin-left: auto;
}

.about-wrp {
	padding-top: 30px;
	padding-bottom: clamp(2.188rem, 1.739rem + 1.68vw, 3.75rem);
}

.about-slider .slick-list {
	padding-bottom: 10px;
}

/* About End */

/* Platform Start */
.platform-wrp {
	padding-top: clamp(2.188rem, 1.739rem + 1.68vw, 3.75rem);
	padding-bottom: clamp(2.188rem, 1.739rem + 1.68vw, 3.75rem);
	position: relative;
}

.platform-shape {
	position: absolute;
	top: 50%;
	left: 0;
	z-index: -1;
	transform: translate(0, -50%);
	-webkit-transform: translate(0, -50%);
	-moz-transform: translate(0, -50%);
	-ms-transform: translate(0, -50%);
	-o-transform: translate(0, -50%);
}

.platform-main {
	max-width: 1420px;
	width: 100%;
	margin: 0 auto;
}

.platform-right {
	background-color: var(--white);
	padding: 30px;
	margin: 0 0 0 -29px;
	border: 1px solid rgba(88, 78, 252, 0.3);
	-moz-box-shadow: 10px 10px 0px 0px rgba(0, 0, 0, 0.05);
	-webkit-box-shadow: 10px 10px 0px 0px rgba(0, 0, 0, 0.05);
	box-shadow: 10px 10px 0px 0px rgba(0, 0, 0, 0.05);
	border-radius: 20px;
	-webkit-border-radius: 20px;
	-moz-border-radius: 20px;
	-ms-border-radius: 20px;
	-o-border-radius: 20px;
}

.platform-left .section-title {
	margin: 0 0 15px;
}

.platform-left {
	max-width: 511px;
	width: 100%;
}

.common-faq .accordion-button {
	font-size: 20px;
	line-height: 22px;
	font-weight: 400;
	color: var(--black);
	background-color: transparent;
	border: none;
	box-shadow: none;
	padding: 0;
	border-radius: 0;
	-webkit-border-radius: 0;
	-moz-border-radius: 0;
	-ms-border-radius: 0;
	-o-border-radius: 0;
}

.common-faq .accordion-item {
	padding: 14px 0;
	border: none;
	background-color: transparent;
	border-bottom: 1px solid rgba(29, 29, 29, 0.15);
	border-radius: 0;
	-webkit-border-radius: 0;
	-moz-border-radius: 0;
	-ms-border-radius: 0;
	-o-border-radius: 0;
}

.common-faq .accordion-item:last-child {
	border-color: #0000;
}

.common-faq .accordion-item:first-child {
	padding-top: 0;
}

.common-faq .accordion-body {
	padding: 0 40px 0 0;
}

.common-faq .accordion-body .common-detail {
	line-height: 28px;
	color: var(--black);
}

.common-faq .accordion-button::after {
	background-image: none;
	width: 50px;
	height: 50px;
	display: block;
	border: 1px solid rgba(88, 78, 252, 0.2);
	border-radius: 50%;
	-webkit-border-radius: 50%;
	-moz-border-radius: 50%;
	-ms-border-radius: 50%;
	-o-border-radius: 50%;
}

.common-faq .accordion-button::before {
	content: "";
	background-image: none;
	width: 14px;
	height: 2px;
	background-color: var(--violet);
	position: absolute;
	right: 18px;
}

.common-faq .accordion-button span::before {
	content: "";
	background-image: none;
	width: 2px;
	height: 14px;
	background-color: var(--violet);
	position: absolute;
	right: 24px;
	top: 50%;
	transform: translate(0, -50%);
	-webkit-transform: translate(0, -50%);
	-moz-transform: translate(0, -50%);
	-ms-transform: translate(0, -50%);
	-o-transform: translate(0, -50%);
	transition: 0.5s;
	-webkit-transition: 0.5s;
	-moz-transition: 0.5s;
	-ms-transition: 0.5s;
	-o-transition: 0.5s;
}

.common-faq .accordion-button span {
	display: block;
	width: 100%;
}

.common-faq .accordion-button:not(.collapsed) span::before {
	transform: translate(0, -50%) rotate(90deg);
	-webkit-transform: translate(0, -50%) rotate(90deg);
	-moz-transform: translate(0, -50%) rotate(90deg);
	-ms-transform: translate(0, -50%) rotate(90deg);
	-o-transform: translate(0, -50%) rotate(90deg);
}

/* Platform End */


/* -----  powered  ------ */
.powered-wrapper {
	padding-top: clamp(2.188rem, 1.506rem + 2.55vw, 4.563rem);
}

.powered-main {
	position: relative;
	overflow: hidden;
	padding: 70px 100px 113px;
	border-radius: 10px;
	-webkit-border-radius: 10px;
	-moz-border-radius: 10px;
	-ms-border-radius: 10px;
	-o-border-radius: 10px;
	text-align: center;
}

.powered-main::after {
	position: absolute;
	content: '';
	height: 100%;
	width: 100%;
	top: 0;
	left: 0;
	right: 0;
	z-index: -2;
	border-radius: 10px;
	opacity: 0.1;
	background: linear-gradient(180deg, #6EDEF4 0%, #584EFC 100%);
	-webkit-border-radius: 10px;
	-moz-border-radius: 10px;
	-ms-border-radius: 10px;
	-o-border-radius: 10px;
}

.powered-main .section-title {
	margin-bottom: 20px;
}

.powered-detail {
	display: flex;
	align-items: center;
	margin-top: 30px;
	position: relative;
}

.powered-detail .powered-left,
.powered-detail .powered-right {
	width: 50%;
}

.powered-detail .powered-left {
	text-align: left;
	padding-right: 100px;
	border-right: 1px solid #574efc30;
}

.powered-detail .powered-right {
	text-align: right;
	padding-left: 100px;
}

.title-block {
	width: 100%;
	max-width: 735px;
	margin: 0 auto;
	text-align: center;
}

.title-block .common-detail {
	max-width: 700px;
	width: 100%;
	margin: 0 auto;
}

.title-block .btn {
	margin: 35px auto 0;
}

.title-block .section-title {
	margin-bottom: 34px;
}

.title-block strong {
	display: block;
	color: var(--black);
	font-size: 18px;
	font-weight: 600;
	line-height: 122.222%;
	margin-bottom: 35px;
}

.powered-bg-icon {
	position: absolute;
	z-index: -1;
	width: 100%;
	bottom: 0;
	left: 50%;
	transform: translateX(-50%);
	-webkit-transform: translateX(-50%);
	-moz-transform: translateX(-50%);
	-ms-transform: translateX(-50%);
	-o-transform: translateX(-50%);
}

.powered-bg-icon img {
	transform: rotateX(180deg) rotateY(180deg);
	-webkit-transform: rotateX(180deg) rotateY(180deg);
	-moz-transform: rotateX(180deg) rotateY(180deg);
	-ms-transform: rotateX(180deg) rotateY(180deg);
	-o-transform: rotateX(180deg) rotateY(180deg);
}

/* -----  powered  ------ */

/* -----  factory  ------ */
.factory-wrapper {
	padding-bottom: clamp(2.188rem, 1.739rem + 1.68vw, 3.75rem);
}

.factory-main {
	position: relative;
	width: 100%;
	max-width: 1440px;
	margin: 0 auto;
}

.factory-main .center-logo-back {
	width: 100%;
	max-width: 420px;
	position: absolute;
	top: -160px;
	left: 50%;
	transform: translateX(-50%);
	-webkit-transform: translateX(-50%);
	-moz-transform: translateX(-50%);
	-ms-transform: translateX(-50%);
	-o-transform: translateX(-50%);
	z-index: -1;
}

.factory-card-box {
	margin-top: 50px;
	display: flex;
}

.factory-card-box .slick-list {
	padding-bottom: 10px;
}

.factory-card {
	flex: 1;
	overflow: hidden;
	height: auto !important;
	position: relative;
	padding: 30px;
	border: 1px solid rgba(88, 78, 252, 0.30);
	background: #FFF;
	margin-right: 65px;
	box-shadow: 10px 10px 0px 0px rgba(0, 0, 0, 0.05);
	border-radius: 20px;
	-webkit-border-radius: 20px;
	-moz-border-radius: 20px;
	-ms-border-radius: 20px;
	-o-border-radius: 20px;
	transition: all 0.3s ease;
	-webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	-ms-transition: all 0.3s ease;
	-o-transition: all 0.3s ease;
}

.factory-card-inner {
}

.factory-card:last-child {
	margin-right: 0;
}

.factory-card .factory-icon {
	width: 55px;
	height: 55px;
	margin-bottom: 30px;
}

.factory-card .small-title {
	margin-bottom: 10px;
}

.factory-card:hover {
	border-color: var(--violet);
}

.factory-card:first-child,
.factory-card:last-child {
	transform: translateY(-100%);
	-webkit-transform: translateY(-100%);
	-moz-transform: translateY(-100%);
	-ms-transform: translateY(-100%);
	-o-transform: translateY(-100%);
}


.factory-card:hover .factory-hover-icon {
	opacity: 1;
}

.factory-hover-icon {
	position: absolute;
	bottom: -20px;
	right: -10px;
	opacity: 0;
	transition: all 0.3s ease;
	-webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	-ms-transition: all 0.3s ease;
	-o-transition: all 0.3s ease;
	width: 50%;
}

.factory-hover-icon img {
	height: 100%;
	width: 100%;
	opacity: 0.1;
}


.factory-card-box .slick-slide {
	margin: 0 20px;
}

.factory-card-box .slick-list {
	margin: 0 -20px;
	padding: 10px 0;
	height: 100%;
}

.factory-card-box .slick-track {
	display: flex;
	height: 100%;
}


.center-logo {
	position: relative;
	z-index: 3;
	width: 100%;
	max-width: 325px;
	margin: -145px auto 120px auto;
}


/* -----  factory  ------ */

/* -----  acc  ------ */
.acc-wrapper {
	position: relative;
	margin-top: clamp(2.188rem, 1.875rem + 1.56vw, 3.75rem);
	margin-bottom: clamp(2.188rem, 1.875rem + 1.56vw, 3.75rem);
}

.acc-main {
	position: relative;
	display: flex;
	align-items: stretch;
	justify-content: space-between;
	padding: 39px 40px;
}

.acc-main::after {
	position: absolute;
	content: '';
	height: 100%;
	width: 100%;
	top: 0;
	left: 0;
	right: 0;
	z-index: -1;
	border-radius: 10px;
	opacity: 0.1;
	background: linear-gradient(180deg, #6EDEF4 0%, #584EFC 100%);
	-webkit-border-radius: 10px;
	-moz-border-radius: 10px;
	-ms-border-radius: 10px;
	-o-border-radius: 10px;
}

.acc-left {
	position: relative;
	z-index: 1;
	width: 100%;
	max-width: 660px;
	border-radius: 20px;
	border: 1px solid rgba(88, 78, 252, 0.30);
	background: #FFF;
	box-shadow: 10px 10px 0px 0px rgba(0, 0, 0, 0.05);
	-webkit-border-radius: 20px;
	-moz-border-radius: 20px;
	-ms-border-radius: 20px;
	-o-border-radius: 20px;
	padding: 0px 30px 32px;
}

.acc-left .section-title {
	position: relative;
	z-index: 2;
	padding-top: 38px;
	padding-bottom: 38px;
}

.acc-left .title-bg-img {
	position: absolute;
	top: 0;
	right: 0;
	height: 218px;
	opacity: 0.4;
	z-index: -1;
}

.acc-right {
	height: auto;
	width: 100%;
	max-width: 930px;
}

.acc-right img {
	height: 100%;
	width: 100%;
	object-fit: cover;
	border-radius: 20px;
	-webkit-border-radius: 20px;
	-moz-border-radius: 20px;
	-ms-border-radius: 20px;
	-o-border-radius: 20px;
}

/* -----  acc  ------ */


/* -----  use  ------ */
.use-wrapper {
	position: relative;
	margin-top: clamp(2.188rem, 1.739rem + 1.68vw, 3.75rem);
	margin-bottom: clamp(4.375rem, 3.658rem + 2.68vw, 6.875rem);
}

.use-main-slider .section-title {
	padding: 50px 0;
	text-align: center;
}

.use-main-slider {
	position: relative;
	width: 100%;
	max-width: 1452px;
	margin: 0 auto;
}

.use-box {
	position: relative;
}

.use-box::after {
	position: absolute;
	content: '';
	top: 0;
	left: 0;
	right: 0;
	z-index: -1;
	height: 287px;
	border-radius: 10px;
	opacity: 0.1;
	background: linear-gradient(180deg, #6EDEF4 0%, #584EFC 100%);
	-webkit-border-radius: 10px;
	-moz-border-radius: 10px;
	-ms-border-radius: 10px;
	-o-border-radius: 10px;
}

.use-inner {
	height: auto !important;
	box-shadow: 10px 10px 0px 0px rgba(0, 0, 0, 0.05);
	border-radius: 20px;
	-webkit-border-radius: 20px;
	-moz-border-radius: 20px;
	-ms-border-radius: 20px;
	-o-border-radius: 20px;
	border: 1px solid rgba(88, 78, 252, 0.30);
	transition: all 0.3s ease;
	-webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	-ms-transition: all 0.3s ease;
	-o-transition: all 0.3s ease;
}

.use-inner:hover {
	border-color: var(--violet);
}

.use-item {
    display: block;
    text-decoration: none;
	height: 100%;
	overflow: hidden;
	position: relative;
	padding: 31px 50px 40px;
	background: #FFF;
	border-radius: 20px;
	-webkit-border-radius: 20px;
	-moz-border-radius: 20px;
	-ms-border-radius: 20px;
	-o-border-radius: 20px;
	transition: 0.5s;
	-webkit-transition: 0.5s;
	-moz-transition: 0.5s;
	-ms-transition: 0.5s;
	-o-transition: 0.5s;
}

.use-item .use-icon {
	height: 58px;
	width: 55px;
	margin-bottom: 96px;
}

.use-item .use-bg {
	position: absolute;
	top: -6px;
	right: -18px;
	width: 199px;
	opacity: 0;
	transition: 0.5s;
	-webkit-transition: 0.5s;
	-moz-transition: 0.5s;
	-ms-transition: 0.5s;
	-o-transition: 0.5s;
}

.use-item:hover .use-bg {
	opacity: 1;
}

.use-item .use-bg img {
	height: 100%;
	width: 100%;
	opacity: 0.1;
}

.use-main-slider .slick-slide {
	margin: 0 20px;
}

.use-main-slider .slick-list {
	margin: 0 -20px;
	padding: 10px 0;
	height: 100%;
}

.use-main-slider .slick-track {
	display: flex;
	height: 100%;
}

/* ----- slick dots ----- */
.slick-slider .slick-dots {
	padding-top: 23px;
	display: flex;
	justify-content: center;
	padding-left: 0;
}

.slick-slider .slick-dots li {
	font-size: 0;
	line-height: 0;
	list-style-type: none;
	margin-right: 11px;
}

.slick-slider .slick-dots li button {
	padding: 0;
	position: relative;
	font-size: 0;
	line-height: 0;
	width: 11px !important;
	height: 11px;
	background-color: var(--violet);
	opacity: 0.2;
	border-radius: 100%;
	-webkit-border-radius: 100%;
	-moz-border-radius: 100%;
	-ms-border-radius: 100%;
	-o-border-radius: 100%;
	box-shadow: none;
	border: none;
}

.slick-slider li.slick-active {
	margin-right: 33px;
}

.slick-slider li.slick-active button {
	background: linear-gradient(180deg, #6EDEF4 0%, #584EFC 100%);
	opacity: 1;
}

.slick-slider li.slick-active button::before {
	position: absolute;
	content: '';
	top: -3px;
	left: -3px;
	width: 17px;
	height: 17px;
	z-index: -1;
	background-color: var(--white);
	border: 1px solid var(--violet);
	border-radius: 100%;
	-webkit-border-radius: 100%;
	-moz-border-radius: 100%;
	-ms-border-radius: 100%;
	-o-border-radius: 100%;
}

.slick-slider li.slick-active button::after {
	position: absolute;
	content: '';
	top: 50%;
	right: -28px;
	width: 23px;
	height: 1px;
	z-index: -1;
	background-color: var(--violet);
}

/* -----  use  ------ */


/* -----  work  ------ */
.work-wrapper {
	position: relative;
	overflow: hidden;
	padding-top: clamp(2.188rem, 1.739rem + 1.68vw, 3.75rem);
	padding-bottom: clamp(2.188rem, 1.919rem + 1.01vw, 3.125rem);
}

.work-main .section-title {
	margin-bottom: 50px;
	text-align: center;
}

.work-slider {
	width: 100%;
	max-width: 1320px;
	margin: 0 auto;
}

.work-item {
	height: auto !important;
	position: relative;
	padding: 46px 31px;
	display: flex !important;
	align-items: center;
	justify-content: center;
	border-radius: 15px;
	-webkit-border-radius: 15px;
	-moz-border-radius: 15px;
	-ms-border-radius: 15px;
	-o-border-radius: 15px;
	transition: all 0.3s ease;
	-webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	-ms-transition: all 0.3s ease;
	-o-transition: all 0.3s ease;
}

.work-item img {
	margin: auto;
	opacity: 0.4;
}

.work-item:hover img {
	opacity: 1;
}

.work-item:hover {
	border-radius: 15px;
	background: #FFF;
	box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.10);
	-webkit-border-radius: 15px;
	-moz-border-radius: 15px;
	-ms-border-radius: 15px;
	-o-border-radius: 15px;
	opacity: 1;
}

.work-item:after {
	display: none;
	position: absolute;
	content: '';
	top: 0;
	left: 0;
	width: 30px;
	height: 30px;
	border-top: 3px solid #6EDEF4;
	border-left: 3px solid #6EDEF4;
	background-color: #fff;
	border-radius: 15px 0 0 0;
	-webkit-border-radius: 15px 0 0 0;
	-moz-border-radius: 15px 0 0 0;
	-ms-border-radius: 15px 0 0 0;
	-o-border-radius: 15px 0 0 0;
}

.work-item:before {
	display: none;
	position: absolute;
	content: '';
	bottom: 0;
	right: 0;
	width: 30px;
	height: 30px;
	border-bottom: 3px solid #6EDEF4;
	border-right: 3px solid #6EDEF4;
	background-color: #fff;
	border-radius: 0 0 15px 0;
	-webkit-border-radius: 0 0 15px 0;
	-moz-border-radius: 0 0 15px 0;
	-ms-border-radius: 0 0 15px 0;
	-o-border-radius: 0 0 15px 0;
}

.work-item:hover::after {
	display: block;
}

.work-item:hover::before {
	display: block;
}

.work-main .slick-slide {
	margin: 0 20px;
}

.work-main .slick-list {
	margin: 0 -20px;
	padding: 10px 0;
	height: 100%;
}

.work-main .slick-track {
	display: flex;
	height: 100%;
}

.work-main .slick-next,
.work-main .slick-prev {
	position: absolute;
	top: calc(50% - 25px);
	background: linear-gradient(180deg, #6EDEF4 0%, #584EFC 100%);
	font-size: 0;
	line-height: 0;
	border: none;
	box-shadow: none;
	height: 50px;
	width: 50px;
	border-radius: 10px;
	-webkit-border-radius: 10px;
	-moz-border-radius: 10px;
	-ms-border-radius: 10px;
	-o-border-radius: 10px;
}

.work-main .slick-next:hover,
.work-main .slick-prev:hover {
	background: linear-gradient(180deg, #584EFC 0%, #6EDEF4 100%);
}

.work-main .slick-next::after,
.work-main .slick-prev::after {
	position: absolute;
	content: '';
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	height: 16px;
	width: 10px;
	background-image: url(data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2211%22%20height%3D%2216%22%20viewBox%3D%220%200%2011%2016%22%20fill%3D%22none%22%3E%3Cpath%20d%3D%22M9.03076%201L2.03076%208L9.03076%2015%22%20stroke%3D%22white%22%20stroke-width%3D%222%22%20stroke-linecap%3D%22round%22%2F%3E%3C%2Fsvg%3E);
	background-repeat: no-repeat;
	background-size: cover;
	z-index: 2;
	-webkit-transform: translate(-50%, -50%);
	-moz-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	-o-transform: translate(-50%, -50%);
}

.work-main .slick-next::after {
	background-image: url(data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2210%22%20height%3D%2217%22%20viewBox%3D%220%200%2010%2017%22%20fill%3D%22none%22%3E%3Cpath%20d%3D%22M1.53076%201.3667L8.53076%208.3667L1.53076%2015.3667%22%20stroke%3D%22white%22%20stroke-width%3D%222%22%20stroke-linecap%3D%22round%22%2F%3E%3C%2Fsvg%3E);
}

.work-main .slick-next {
	right: -100px;
}

.work-main .slick-prev {
	left: -100px;
}

/* -----  enterprise-knowledge  ------ */

.enterprise-knowledge-agent {
	padding-top: clamp(2.188rem, 1.739rem + 1.68vw, 3.75rem);
	padding-bottom: clamp(2.188rem, 1.739rem + 1.68vw, 3.75rem);
}

.enterprise-knowledge-agent .enterprise-knowledge-main-title {
	max-width: 1344px;
	width: 100%;
	margin-left: auto;
	margin-right: auto;
}

.enterprise-knowledge-agent .enterprise-knowledge-main-title > * {
	margin-bottom: 40px;
}

.enterprise-knowledge-agent .enterprise-knowledge-main-title .main-detail *,
.enterprise-knowledge-agent .enterprise-knowledge-main-title .common-detail {
	margin-bottom: 20px;
}

.enterprise-knowledge-agent .enterprise-knowledge-main-title .main-detail b,
.enterprise-knowledge-agent .enterprise-knowledge-main-title .main-detail strong {
	font-weight: 600;
}

.enterprise-knowledge-agent .enterprise-knowledge-main-title .enterprise-knowledge-buttons {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	gap: 40px;
}

.enterprise-knowledge-carousel {
	opacity: 0;
	padding-bottom: 50px;
}

.enterprise-knowledge-carousel:before {
	position: absolute;
	content: "";
	left: 0;
	right: 0;
	bottom: 25px;
	height: 1px;
	width: 100%;
	background: rgba(88, 78, 252, 0.3);
	z-index: 0;
}

.enterprise-knowledge-carousel:after {
	position: absolute;
	content: "";
	left: 50%;
	bottom: 0;
	height: 50px;
	width: 150px;
	background: var(--white);
	z-index: 0;
	transform: translate(-50%, 0);
	-webkit-transform: translate(-50%, 0);
	-moz-transform: translate(-50%, 0);
	-ms-transform: translate(-50%, 0);
	-o-transform: translate(-50%, 0);
}

.enterprise-knowledge-carousel.slick-initialized {
	opacity: 1;
}

.enterprise-knowledge-carousel .slick-list {
	margin: 0 -10px;
}

.enterprise-knowledge-carousel .slick-track {
	display: flex;
	justify-content: center;
	height: inherit;
}

.enterprise-knowledge-carousel .enterprise-knowledge-item {
	margin: 60px 10px 40px;
	height: 100%;
	position: relative;
	top: 0;
}

.enterprise-knowledge-carousel .enterprise-knowledge-block {
	position: relative;
	top: 0;
	padding: 30px;
	background: var(--white);
	border: 1px solid rgba(88, 78, 252, 0.3);
	border-radius: 20px;
	-webkit-border-radius: 20px;
	-moz-border-radius: 20px;
	-ms-border-radius: 20px;
	-o-border-radius: 20px;
	transition: all ease-in-out 0.3s;
	-webkit-transition: all ease-in-out 0.3s;
	-moz-transition: all ease-in-out 0.3s;
	-ms-transition: all ease-in-out 0.3s;
	-o-transition: all ease-in-out 0.3s;
}

.enterprise-knowledge-carousel .enterprise-knowledge-item:hover .enterprise-knowledge-block {
	top: -60px;
	background: linear-gradient(180deg, rgba(110, 222, 244, 0.25) 0%, rgba(88, 78, 252, 0.25) 100%), #FFFFFF;
	box-shadow: 10px 10px 0px rgba(0, 0, 0, 0.05);
}

.enterprise-knowledge-carousel .enterprise-knowledge-block .enterprise-icon {
	height: 55px;
	margin-bottom: 30px;
}

.enterprise-knowledge-carousel .enterprise-knowledge-block .enterprise-icon * {
	max-height: 100%;
}

.enterprise-knowledge-carousel .enterprise-knowledge-block .enterprise-icon .default-icon {
	display: block;
}

.enterprise-knowledge-carousel .enterprise-knowledge-block .enterprise-icon .active-icon {
	display: none;
}

.enterprise-knowledge-carousel .enterprise-knowledge-item:hover .enterprise-knowledge-block .enterprise-icon .default-icon {
	display: none;
}

.enterprise-knowledge-carousel .enterprise-knowledge-item:hover .enterprise-knowledge-block .enterprise-icon .active-icon {
	display: block;
}

.enterprise-knowledge-carousel .enterprise-knowledge-block .enterprise-title {
	font-weight: 500;
	font-size: 20px;
	line-height: 125%;
	color: #1D1D1D;
	margin-bottom: 10px;
}

.enterprise-knowledge-carousel .enterprise-knowledge-block .enterprise-title * {
	font-weight: inherit;
	font-size: inherit;
	line-height: inherit;
	color: inherit;
	margin-top: 0;
	margin-bottom: 0;
}

.enterprise-knowledge-carousel .enterprise-knowledge-block .enterprise-title a {
	text-decoration: none;
}

.enterprise-knowledge-carousel .enterprise-knowledge-block .enterprise-title a:hover {
	color: var(--violet);
}

.enterprise-knowledge-carousel .enterprise-knowledge-block .enterprise-detail .detail * {
	margin-bottom: 10px;
}

.enterprise-knowledge-carousel .slick-arrow {
	position: absolute;
	left: 50%;
	bottom: 0;
	background: linear-gradient(180deg, #6EDEF4 0%, #584EFC 100%);
    font-size: 0;
    line-height: 0;
    border: none;
    box-shadow: none;
    height: 50px;
    width: 50px;
	z-index: 9;
    border-radius: 10px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
	transform: translate(-50%, 0);
	-webkit-transform: translate(-50%, 0);
	-moz-transform: translate(-50%, 0);
	-ms-transform: translate(-50%, 0);
	-o-transform: translate(-50%, 0);
}

.enterprise-knowledge-carousel .slick-arrow:hover {
	background: linear-gradient(180deg, #584EFC 0%, #6EDEF4 100%);
}

.enterprise-knowledge-carousel .slick-arrow.slick-prev {
	margin-left: -30px;
}

.enterprise-knowledge-carousel .slick-arrow.slick-prev:after {
	position: absolute;
    content: '';
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    height: 16px;
    width: 10px;
    background-image: url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2211%22%20height%3D%2216%22%20viewBox%3D%220%200%2011%2016%22%20fill%3D%22none%22%3E%3Cpath%20d%3D%22M9.03076%201L2.03076%208L9.03076%2015%22%20stroke%3D%22white%22%20stroke-width%3D%222%22%20stroke-linecap%3D%22round%22%2F%3E%3C%2Fsvg%3E");
    background-repeat: no-repeat;
    background-size: cover;
    z-index: 2;
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
}

.enterprise-knowledge-carousel .slick-arrow.slick-next {
	margin-left: 30px;
}

.enterprise-knowledge-carousel .slick-arrow.slick-next:after {
	position: absolute;
    content: '';
    top: 50%;
    left: 50%;
    height: 16px;
    width: 10px;
    background-image: url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2211%22%20height%3D%2216%22%20viewBox%3D%220%200%2011%2016%22%20fill%3D%22none%22%3E%3Cpath%20d%3D%22M9.03076%201L2.03076%208L9.03076%2015%22%20stroke%3D%22white%22%20stroke-width%3D%222%22%20stroke-linecap%3D%22round%22%2F%3E%3C%2Fsvg%3E");
    background-repeat: no-repeat;
    background-size: cover;
    z-index: 2;
	transform: translate(-50%, -50%) rotate(180deg);
	-webkit-transform: translate(-50%, -50%) rotate(180deg);
	-moz-transform: translate(-50%, -50%) rotate(180deg);
	-ms-transform: translate(-50%, -50%) rotate(180deg);
	-o-transform: translate(-50%, -50%) rotate(180deg);
}
/* -----  enterprise-knowledge  ------ */

/* eka page */
.common-breadcrumbs-block {
	margin-bottom: 40px;
}

.common-breadcrumbs-block .breadcrumb {
	display: flex;
	flex-wrap: wrap;
	margin: 0;
	padding: 0;
	list-style-type: none;
}

.common-breadcrumbs-block .breadcrumb .breadcrumb-item {
	display: inline-flex;
	flex-wrap: wrap;
	margin: 0;
	padding: 0;
	list-style-type: none;
	color: var(--black);
}

.common-breadcrumbs-block .breadcrumb .breadcrumb-item:before {
	position: relative;
	content: "//";
	font-weight: 300;
	padding: 0 10px;
	background-clip: unset;
	-webkit-background-clip: unset;
	-webkit-text-fill-color: var(--black);
}

.common-breadcrumbs-block .breadcrumb .breadcrumb-item:first-child:before {
	display: none;
}

.common-breadcrumbs-block .breadcrumb .breadcrumb-item.active {
	font-weight: 600;
	background: linear-gradient(180deg, #6EDEF4 0%, #584EFC 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	text-fill-color: transparent;
}

/* eka-banner */
.eka-banner-section .eka-banner-description {
	padding: 20px 20px 20px 80px;
	background: linear-gradient(180deg, rgba(110, 222, 244, 0.1) 0%, rgba(88, 78, 252, 0.1) 100%);
	border-radius: 10px;
	-webkit-border-radius: 10px;
	-moz-border-radius: 10px;
	-ms-border-radius: 10px;
	-o-border-radius: 10px;
}

.eka-banner-section .eka-banner-description .eka-banner-image {
	max-width: 605px;
	margin-left: auto;
}

.eka-banner-section .eka-banner-description .eka-banner-image * {
	width: 100%;
}

.eka-banner-section .eka-banner-description .eka-banner-main-detail > * {
	margin-bottom: 40px;
}

.eka-banner-section .eka-banner-description .eka-banner-title > * {
	margin-bottom: 20px;
}

.eka-banner-section .eka-banner-description .eka-banner-title .main-detail {
	color: var(--black);
}

.eka-banner-section .eka-list-buttons > * {
	margin-bottom: 40px;
}

.eka-banner-section .eka-list-buttons > *:last-child {
	margin-bottom: 0;
}

.eka-banner-section .eka-list-buttons .eka-banner-list ul {
	display: flex;
	flex-wrap: wrap;
	gap: 26px;
	margin: 0;
	padding: 0;
	list-style-type: none;
}

.eka-banner-section .eka-list-buttons .eka-banner-list ul li {
	display: inline-flex;
	margin: 0;
	padding: 0 0 0 12px;
	position: relative;
	list-style-type: none;
	font-weight: 400;
	color: var(--black);
}

.eka-banner-section .eka-list-buttons .eka-banner-list ul li:before {
	position: absolute;
	content: "";
	left: 0;
	top: 11px;
	width: 4px;
	height: 4px;
	background: linear-gradient(180deg, #6EDEF4 0%, #584EFC 100%);
	border-radius: 50%;
	-webkit-border-radius: 50%;
	-moz-border-radius: 50%;
	-ms-border-radius: 50%;
	-o-border-radius: 50%;
}

.eka-banner-section .eka-list-buttons .eka-banner-buttons {
	display: flex;
	flex-wrap: wrap;
	gap: 20px;
}
/* eka-banner */

/* hidden-cost */
.hidden-cost-section {
	padding-top: 90px;
	padding-bottom: 60px;
}

.hidden-cost-section .hidden-cost-content > * {
	margin-bottom: 20px;
}

.hidden-cost-section .organisation-list {
	margin-top: 50px;
}

.hidden-cost-section .organisation-list > .row {
	margin: 0 -10px;
}

.hidden-cost-section .organisation-list > .row > * {
	padding: 0 10px;
	margin-bottom: 20px;
}

.hidden-cost-section .organisation-list .organisation-block {
	position: relative;
	padding: 26px;
	overflow: hidden;
	border: 1px solid var(--violet);
	box-shadow: 10px 10px 0px rgba(0, 0, 0, 0.05);
	border-radius: 20px;
	-webkit-border-radius: 20px;
	-moz-border-radius: 20px;
	-ms-border-radius: 20px;
	-o-border-radius: 20px;
}

.hidden-cost-section .organisation-list .organisation-block .back-icon {
	position: absolute;
	right: -20px;
	top: 0;
	opacity: 0.10;
	max-width: 155px;
	z-index: -1;
}

.hidden-cost-section .organisation-list .organisation-block .title {
	font-weight: 500;
	font-size: 40px;
	line-height: 110%;
	color: var(--black);
	margin-bottom: 50px;
}

.hidden-cost-section .organisation-list .organisation-block .title * {
	font-weight: inherit;
	font-size: inherit;
	line-height: inherit;
	color: inherit;
	margin-top: 0;
	margin-bottom: 0;
}

.hidden-cost-section .organisation-list .organisation-block .title a {
	text-decoration: none;
}

.hidden-cost-section .organisation-list .organisation-block .title a:hover {
	color: var(--violet);
}

.hidden-cost-section .hidden-cost-list .cost-block {
	position: relative;
	text-decoration: none;
	display: block;
	position: relative;
	padding-left: 76px;
	padding-bottom: 20px;
	margin-top: 50px;
	margin-bottom: 20px;
	border-bottom: 1px solid rgba(47, 47, 47, 0.2);
}

.hidden-cost-section .hidden-cost-list .cost-block:first-child {
	margin-top: 0;
}

.hidden-cost-section .hidden-cost-list .cost-block:last-child {
	margin-bottom: 0;
}

.hidden-cost-section .hidden-cost-list .cost-block:before {
	position: absolute;
	content: "";
	left: 0;
	right: 0;
	bottom: 0;
	height: 3px;
	width: 100%;
	background: linear-gradient(270deg, #584EFC 0%, #6EDEF4 100%);
	opacity: 0;
	border-radius: 6px;
	-webkit-border-radius: 6px;
	-moz-border-radius: 6px;
	-ms-border-radius: 6px;
	-o-border-radius: 6px;
	transition: all 0.3s ease-in-out;
	-webkit-transition: all 0.3s ease-in-out;
	-moz-transition: all 0.3s ease-in-out;
	-ms-transition: all 0.3s ease-in-out;
	-o-transition: all 0.3s ease-in-out;
}

.hidden-cost-section .hidden-cost-list .cost-block:hover:before {
	opacity: 1;
}

.hidden-cost-section .hidden-cost-list .cost-block .icon {
	position: absolute;
	left: 0;
	top: 0;
	width: 55px;
	height: 55px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	background: var(--violet);
	border-radius: 5px;
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	-ms-border-radius: 5px;
	-o-border-radius: 5px;
}

.hidden-cost-section .hidden-cost-list .cost-block .icon * {
	max-width: 40px;
	max-height: 40px;
}

.hidden-cost-section .hidden-cost-list .cost-block .title {
	font-weight: 500;
	font-size: 24px;
	line-height: 135%;
	color: var(--black);
	margin-bottom: 10px;
}

.hidden-cost-section .hidden-cost-list .cost-block .title * {
	font-weight: inherit;
	font-size: inherit;
	line-height: inherit;
	color: inherit;
	margin-top: 0;
	margin-bottom: 0;
}

.hidden-cost-section .hidden-cost-list .cost-block .title a {
	text-decoration: none;
}

.hidden-cost-section .hidden-cost-list .cost-block .title a:hover {
	color: var(--violet);
}

.hidden-cost-section .hidden-cost-list .cost-block .detail {
	line-height: 150%;
}
/* hidden-cost */

/* intelligence-steps */
.intelligence-steps-section {
	padding-top: 60px;
	/* padding-bottom: 95px; */
}

.intelligence-steps-section .intelligence-steps-main-title {
	margin-bottom: 30px;
}

.intelligence-steps-section .intelligence-steps-main-title .section-title {
	margin-bottom: 20px;
}

.intelligence-steps-section .intelligence-steps-description {
	position: relative;
	z-index: 9;
	padding-top: 70px;
	padding-left: 30px;
	padding-right: 30px;
}

.intelligence-steps-section .intelligence-steps-description:before {
	position: absolute;
	content: "";
	left: 0;
	right: 0;
	top: 0;
	width: 100%;
	height: calc(100% - 95px);
	z-index: -1;
	background: linear-gradient(180deg, rgba(110, 222, 244,0.1) 0%, rgba(88, 78, 252,0.1) 100%);
	border-radius: 10px;
	-webkit-border-radius: 10px;
	-moz-border-radius: 10px;
	-ms-border-radius: 10px;
	-o-border-radius: 10px;
}

.intelligence-steps-list > .row {
	margin: 0 -10px;
}

.intelligence-steps-list > .row > * {
	padding: 0 10px;
}

.intelligence-steps-list .intelligence-block {
	padding: 30px;
	background: var(--white);
	border: 1px solid rgba(88, 78, 252, 0.3);
	box-shadow: 10px 10px 0px rgba(0, 0, 0, 0.05);
	height: calc(100% - 20px);
	margin-top: 20px;
	border-radius: 20px;
	-webkit-border-radius: 20px;
	-moz-border-radius: 20px;
	-ms-border-radius: 20px;
	-o-border-radius: 20px;
}

.intelligence-steps-list .intelligence-block .icon {
	height: 50px;
	margin-bottom: 50px;
}

.intelligence-steps-list .intelligence-block .icon * {
	max-height: 100%;
}

.intelligence-steps-list .intelligence-block .number {
	position: relative;
	font-weight: 400;
	font-size: 22px;
	line-height: 125%;
	color: var(--black);
	margin-bottom: 20px;
}

.intelligence-steps-list .intelligence-block .number:before {
	position: absolute;
	content: "";
	left: 0;
	right: 0;
	top: 14px;
	width: 100%;
	height: 1px;
	background: #000000;
	opacity: 0.2;
}

.intelligence-steps-list .intelligence-block .number span {
	position: relative;
	display: inline-block;
	background: var(--white);
	padding-right: 10px;
}

.intelligence-steps-list .intelligence-block .title {
	font-weight: 500;
	font-size: 24px;
	line-height: 135%;
	color: var(--black);
	margin-bottom: 10px;
}

.intelligence-steps-list .intelligence-block .title * {
	font-weight: inherit;
	font-size: inherit;
	line-height: inherit;
	color: inherit;
	margin-top: 0;
	margin-bottom: 0;
}

.intelligence-steps-list .intelligence-block .title a {
	text-decoration: none;
}

.intelligence-steps-list .intelligence-block .title a:hover {
	color: var(--violet);
}

.intelligence-steps-list .intelligence-block .detail > * {
	margin-bottom: 10px;
}

.intelligence-steps-list .intelligence-block .detail > *:last-child {
	margin-bottom: 0;
}
/* intelligence-steps */

/* governed-agentic-loop */
.governed-agentic-loop-wrapper {
	position: relative;
	padding-top: 200px;
	padding-bottom: 85px;
}

.governed-agentic-loop-wrapper:before {
	position: absolute;
	content: "";
	left: 50%;
	top: 0;
	width: 100%;
	max-width: 415px;
	height: 651px;
	background: url('../images/five-way-back-shape.svg') no-repeat;
	background-size: 100% 100%;
	z-index: -1;
	transform: translate(-50%, 0);
	-webkit-transform: translate(-50%, 0);
	-moz-transform: translate(-50%, 0);
	-ms-transform: translate(-50%, 0);
	-o-transform: translate(-50%, 0);
}

.governed-agentic-loop-wrapper .governed-agentic-loop-main-title {
	margin-bottom: 30px;
}

.governed-agentic-loop-wrapper .governed-agentic-loop-main-title .section-title {
	margin-bottom: 30px;
}

.agentic-loop-steps-block {
	position: relative;
	padding-bottom: 100px;
}

.agentic-loop-steps-block .agentic-loop-steps-image .step-image {
	display: inline-block;
}

.agentic-loop-steps-block .agentic-loop-steps-image .step-dash-lines * {
	width: 100%;
}

.agentic-loop-steps-block .agentic-loop-steps-image .step-dash-lines {
	margin-top: -135px;
}

.agentic-loop-steps-block .agentic-loop-steps-list .step-block {
	position: absolute;
	left: 50%;
	top: 50%;
	max-width: 275px;
	width: 100%;
}

.agentic-loop-steps-block .agentic-loop-steps-list .step-block .step-icon {
	display: none;
	align-items: center;
	justify-content: center;
	width: 70px;
	height: 70px;
	background: linear-gradient(270deg, #6EDEF4 0%, #584EFC 100%);
	border-radius: 10px;
	-webkit-border-radius: 10px;
	-moz-border-radius: 10px;
	-ms-border-radius: 10px;
	-o-border-radius: 10px;
}

.agentic-loop-steps-block .agentic-loop-steps-list .step-block .step-icon * {
	max-height: 40px;
}

.agentic-loop-steps-block .agentic-loop-steps-list .step-block.step1 {
	text-align: right;
	transform: translate(-630px, -75px);
	-webkit-transform: translate(-630px, -75px);
	-moz-transform: translate(-630px, -75px);
	-ms-transform: translate(-630px, -75px);
	-o-transform: translate(-630px, -75px);
}

.agentic-loop-steps-block .agentic-loop-steps-list .step-block.step2 {
	text-align: right;
	transform: translate(-500px, 130px);
	-webkit-transform: translate(-500px, 130px);
	-moz-transform: translate(-500px, 130px);
	-ms-transform: translate(-500px, 130px);
	-o-transform: translate(-500px, 130px);
}

.agentic-loop-steps-block .agentic-loop-steps-list .step-block.step3 {
	text-align: center;
	transform: translate(-138px, 210px);
	-webkit-transform: translate(-138px, 210px);
	-moz-transform: translate(-138px, 210px);
	-ms-transform: translate(-138px, 210px);
	-o-transform: translate(-138px, 210px);
}

.agentic-loop-steps-block .agentic-loop-steps-list .step-block.step4 {
	transform: translate(220px, 130px);
	-webkit-transform: translate(220px, 130px);
	-moz-transform: translate(220px, 130px);
	-ms-transform: translate(220px, 130px);
	-o-transform: translate(220px, 130px);
}

.agentic-loop-steps-block .agentic-loop-steps-list .step-block.step5 {
	transform: translate(350px, -75px);
	-webkit-transform: translate(350px, -75px);
	-moz-transform: translate(350px, -75px);
	-ms-transform: translate(350px, -75px);
	-o-transform: translate(350px, -75px);
}

.agentic-loop-steps-block .agentic-loop-steps-list .step-block .small-title {
	margin-bottom: 10px;
}

.agentic-loop-steps-block .agentic-loop-steps-list .step-block .detail *:last-child {
	margin-bottom: 0;
}

.agentic-loop-steps-slider {
	margin-top: -20px;
}

.agentic-loop-steps-carousel {
	opacity: 0;
}

.agentic-loop-steps-carousel:has(> .slick-arrow) {
	padding-bottom: 80px;
}

.agentic-loop-steps-carousel .slick-arrow {
	position: absolute;
	left: 50%;
	bottom: 0;
	background: linear-gradient(180deg, #6EDEF4 0%, #584EFC 100%);
    font-size: 0;
    line-height: 0;
    border: none;
    box-shadow: none;
    height: 50px;
    width: 50px;
	z-index: 9;
    border-radius: 10px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
	transform: translate(-50%, 0);
	-webkit-transform: translate(-50%, 0);
	-moz-transform: translate(-50%, 0);
	-ms-transform: translate(-50%, 0);
	-o-transform: translate(-50%, 0);
}

.agentic-loop-steps-carousel .slick-arrow:hover {
	background: linear-gradient(180deg, #584EFC 0%, #6EDEF4 100%);
}

.agentic-loop-steps-carousel .slick-arrow.slick-prev {
	margin-left: -30px;
}

.agentic-loop-steps-carousel .slick-arrow.slick-prev:after {
	position: absolute;
    content: '';
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    height: 16px;
    width: 10px;
    background-image: url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2211%22%20height%3D%2216%22%20viewBox%3D%220%200%2011%2016%22%20fill%3D%22none%22%3E%3Cpath%20d%3D%22M9.03076%201L2.03076%208L9.03076%2015%22%20stroke%3D%22white%22%20stroke-width%3D%222%22%20stroke-linecap%3D%22round%22%2F%3E%3C%2Fsvg%3E");
    background-repeat: no-repeat;
    background-size: cover;
    z-index: 2;
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
}

.agentic-loop-steps-carousel .slick-arrow.slick-next {
	margin-left: 30px;
}

.agentic-loop-steps-carousel .slick-arrow.slick-next:after {
	position: absolute;
    content: '';
    top: 50%;
    left: 50%;
    height: 16px;
    width: 10px;
    background-image: url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2211%22%20height%3D%2216%22%20viewBox%3D%220%200%2011%2016%22%20fill%3D%22none%22%3E%3Cpath%20d%3D%22M9.03076%201L2.03076%208L9.03076%2015%22%20stroke%3D%22white%22%20stroke-width%3D%222%22%20stroke-linecap%3D%22round%22%2F%3E%3C%2Fsvg%3E");
    background-repeat: no-repeat;
    background-size: cover;
    z-index: 2;
	transform: translate(-50%, -50%) rotate(180deg);
	-webkit-transform: translate(-50%, -50%) rotate(180deg);
	-moz-transform: translate(-50%, -50%) rotate(180deg);
	-ms-transform: translate(-50%, -50%) rotate(180deg);
	-o-transform: translate(-50%, -50%) rotate(180deg);
}

.agentic-loop-steps-carousel.slick-initialized {
	opacity: 1;
}

.agentic-loop-steps-carousel .slick-track {
	display: flex;
	justify-content: center;
}

.agentic-loop-steps-carousel .slick-slide {
	height: inherit;
}

.agentic-loop-steps-carousel .agentic-steps-block {
	height: 100%;
	text-align: center;
	padding: 35px 0 0 !important;
}

.agentic-loop-steps-carousel .agentic-steps-block .step-icon {
	position: relative;
	width: 96px;
	height: 78px;
	margin: 0 auto;
	display: flex;
	align-items: center;
	justify-content: center;
	background: url('../images/way-deliver-slider-icon-bg.svg') no-repeat;
	background-size: 100% 100%;
}

.agentic-loop-steps-carousel .agentic-steps-block .step-icon:before {
	position: absolute;
	content: "";
	left: 50%;
	top: -35px;
	width: 326px;
	height: 198px;
	background: url('../images/way-deliver-mobile-dash-shape.svg') no-repeat;
	background-size: 100% 100%;
	transform: translate(-50%, 0);
	-webkit-transform: translate(-50%, 0);
	-moz-transform: translate(-50%, 0);
	-ms-transform: translate(-50%, 0);
	-o-transform: translate(-50%, 0);
}

.agentic-loop-steps-carousel .agentic-steps-block .step-detail {
	max-width: 275px;
	width: 100%;
	margin-left: auto;
	margin-right: auto;
	padding-top: 115px;
}

.agentic-loop-steps-carousel .agentic-steps-block .step-detail .title {
	font-weight: 500;
	font-size: 20px;
	line-height: 125%;
	color: var(--black);
	margin-bottom: 10px;
}

.agentic-loop-steps-carousel .agentic-steps-block .step-detail .title * {
	font-weight: inherit;
	font-size: inherit;
	line-height: inherit;
	color: inherit;
	margin-top: 0;
	margin-bottom: 0;
}

.agentic-loop-steps-carousel .agentic-steps-block .step-detail .title a {
	text-decoration: none;
}

.agentic-loop-steps-carousel .agentic-steps-block .step-detail .title a:hover {
	color: inherit;
}

.agentic-loop-steps-carousel .agentic-steps-block .step-detail .detail {
	font-size: 18px;
}
/* governed-agentic-loop */

/* organisations-achieve */
.organisations-achieve-section {
	padding-top: 60px;
	padding-bottom: 60px;
}

.organisations-achieve-section .organisations-achieve-description {
	position: relative;
	padding: 70px 0 70px 100px;
	overflow: hidden;
	background: linear-gradient(180deg, rgba(110, 222, 244, 0.1) 0%, rgba(88, 78, 252, 0.1) 100%);
	border-radius: 10px;
	-webkit-border-radius: 10px;
	-moz-border-radius: 10px;
	-ms-border-radius: 10px;
	-o-border-radius: 10px;
}

/* .organisations-achieve-section .organisations-achieve-description .organisations-achieve-left {
	padding-top: 70px;
	padding-bottom: 70px;
} */

.organisations-achieve-section .section-title {
	margin-bottom: 30px;
}

.organisations-achieve-section .organisations-achieve-left .organisations-detail ul {
	display: block;
	margin: 0;
	padding: 0;
	list-style-type: none;
}

.organisations-achieve-section .organisations-achieve-left .organisations-detail ul li {
	display: block;
	margin: 0;
	padding: 25px 0 25px 35px;
	list-style-type: none;
	line-height: 150%;
	border-bottom: 1px solid rgba(47, 47, 47,0.10);
	position: relative;
}

.organisations-achieve-section .organisations-achieve-left .organisations-detail ul li:before {
	position: absolute;
	content: "";
	top: 31px;
	left: 0;
	width: 22px;
	height: 22px;
	background: url("data:image/svg+xml,%3Csvg width='22' height='22' viewBox='0 0 22 22' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M18.4064 18.4167H18.4167H18.4064ZM18.4064 18.4167C17.7318 19.0856 16.5092 18.919 15.6519 18.919C14.5995 18.919 14.0928 19.1248 13.3417 19.8759C12.7022 20.5155 11.8448 21.6667 10.8333 21.6667C9.82183 21.6667 8.96448 20.5155 8.32495 19.8759C7.57389 19.1248 7.06711 18.919 6.01473 18.919C5.1574 18.919 3.93486 19.0856 3.26028 18.4167C2.58029 17.7424 2.74764 16.5148 2.74764 15.6519C2.74764 14.5615 2.50917 14.0602 1.73266 13.2836C0.577568 12.1286 2.16667e-05 11.5509 0 10.8333C1.08333e-05 10.1156 0.577547 9.5381 1.73263 8.38302C2.4258 7.68985 2.74764 7.00297 2.74764 6.01473C2.74764 5.15737 2.58103 3.93482 3.25 3.26023C3.9243 2.58026 5.1519 2.74762 6.01475 2.74762C7.00296 2.74762 7.68985 2.4258 8.383 1.73265C9.5381 0.577547 10.1156 0 10.8333 0C11.551 0 12.1286 0.577547 13.2836 1.73265C13.9766 2.42566 14.6635 2.74762 15.6519 2.74762C16.5092 2.74762 17.7319 2.58101 18.4065 3.25C19.0864 3.9243 18.919 5.15189 18.919 6.01473C18.919 7.10513 19.1576 7.60648 19.934 8.38302C21.0891 9.5381 21.6667 10.1156 21.6667 10.8333C21.6667 11.5509 21.0891 12.1286 19.934 13.2836C19.1575 14.0602 18.919 14.5615 18.919 15.6519C18.919 16.5148 19.0864 17.7424 18.4064 18.4167Z' fill='%23584EFC'/%3E%3Cpath d='M7.58398 11.8006L9.53398 13.5417L14.084 8.125' stroke='white' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E%0A") no-repeat;
	background-size: 100% 100%;
}

.organisations-achieve-section .organisations-achieve-right .organisations-back-image {
	position: absolute;
	top: 50%;
	right: 0;
	z-index: -1;
	transform: translate(0, -50%);
	-webkit-transform: translate(0, -50%);
	-moz-transform: translate(0, -50%);
	-ms-transform: translate(0, -50%);
	-o-transform: translate(0, -50%);
}

.organisations-achieve-section .organisations-achieve-right .organisations-back-image * {
	width: 100%;
}

.organisations-achieve-section .organisations-achieve-list {
	
}

.organisations-achieve-section .organisations-achieve-list .achieve-block {
	position: relative;
	background: linear-gradient(270deg, #584EFC 0%, #6EDEF4 50%, #584EFC 100%);
	/* border: 1px solid rgba(88, 78, 252,0.3); */
	padding: 20px;
	box-shadow: 10px 10px 0px rgba(0, 0, 0, 0.05);
	margin-bottom: 20px;
	border-radius: 20px;
	-webkit-border-radius: 20px;
	-moz-border-radius: 20px;
	-ms-border-radius: 20px;
	-o-border-radius: 20px;
}

.organisations-achieve-section .organisations-achieve-list .achieve-block:before {
	position: absolute;
	content: "";
	left: 1px;
	right: 1px;
	top: 1px;
	bottom: 1px;
	background: var(--white);
	z-index: 0;
	border-radius: 20px;
	-webkit-border-radius: 20px;
	-moz-border-radius: 20px;
	-ms-border-radius: 20px;
	-o-border-radius: 20px;
}

.organisations-achieve-section .organisations-achieve-list .achieve-block:last-child {
	margin-bottom: 0;
}

.organisations-achieve-section .organisations-achieve-list .achieve-block .title {
	position: relative;
	z-index: 9;
	font-weight: 500;
	font-size: 40px;
	line-height: 110%;
	color: var(--black);
	margin-bottom: 40px;
}

.organisations-achieve-section .organisations-achieve-list .achieve-block .title * {
	font-weight: inherit;
	font-size: inherit;
	line-height: inherit;
	color: inherit;
	margin-top: 0;
	margin-bottom: 0;
}

.organisations-achieve-section .organisations-achieve-list .achieve-block .title a {
	text-decoration: none;
}

.organisations-achieve-section .organisations-achieve-list .achieve-block .title a:hover {
	color: var(--violet);
}

.organisations-achieve-section .organisations-achieve-list .achieve-block .detail {
	position: relative;
	z-index: 9;
}

.organisations-achieve-section .organisations-achieve-list .achieve-block .detail *:last-child {
	margin-bottom: 0;
}
/* organisations-achieve */

/* weekly-production */
.weekly-production-section {
	padding-top: 60px;
	padding-bottom: 60px;
}

.weekly-production-section .weekly-production-main-title {
	margin-bottom: 50px;
}

.weekly-production-section .weekly-production-main-title > * {
	margin-bottom: 30px;
}

.weekly-production-section .weekly-production-main-title > *:last-child {
	margin-bottom: 0;
}

.weekly-production-carousel {
	opacity: 0;
}

.weekly-production-carousel.slick-initialized {
	opacity: 1;
}

.weekly-production-carousel:has(> .slick-arrow) {
	padding-bottom: 80px;
}

.weekly-production-carousel .slick-arrow {
	position: absolute;
	left: 50%;
	bottom: 0;
	background: linear-gradient(180deg, #6EDEF4 0%, #584EFC 100%);
    font-size: 0;
    line-height: 0;
    border: none;
    box-shadow: none;
    height: 50px;
    width: 50px;
	z-index: 9;
    border-radius: 10px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
	transform: translate(-50%, 0);
	-webkit-transform: translate(-50%, 0);
	-moz-transform: translate(-50%, 0);
	-ms-transform: translate(-50%, 0);
	-o-transform: translate(-50%, 0);
}

.weekly-production-carousel .slick-arrow:hover {
	background: linear-gradient(180deg, #584EFC 0%, #6EDEF4 100%);
}

.weekly-production-carousel .slick-arrow.slick-prev {
	margin-left: -30px;
}

.weekly-production-carousel .slick-arrow.slick-prev:after {
	position: absolute;
    content: '';
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    height: 16px;
    width: 10px;
    background-image: url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2211%22%20height%3D%2216%22%20viewBox%3D%220%200%2011%2016%22%20fill%3D%22none%22%3E%3Cpath%20d%3D%22M9.03076%201L2.03076%208L9.03076%2015%22%20stroke%3D%22white%22%20stroke-width%3D%222%22%20stroke-linecap%3D%22round%22%2F%3E%3C%2Fsvg%3E");
    background-repeat: no-repeat;
    background-size: cover;
    z-index: 2;
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
}

.weekly-production-carousel .slick-arrow.slick-next {
	margin-left: 30px;
}

.weekly-production-carousel .slick-arrow.slick-next:after {
	position: absolute;
    content: '';
    top: 50%;
    left: 50%;
    height: 16px;
    width: 10px;
    background-image: url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2211%22%20height%3D%2216%22%20viewBox%3D%220%200%2011%2016%22%20fill%3D%22none%22%3E%3Cpath%20d%3D%22M9.03076%201L2.03076%208L9.03076%2015%22%20stroke%3D%22white%22%20stroke-width%3D%222%22%20stroke-linecap%3D%22round%22%2F%3E%3C%2Fsvg%3E");
    background-repeat: no-repeat;
    background-size: cover;
    z-index: 2;
	transform: translate(-50%, -50%) rotate(180deg);
	-webkit-transform: translate(-50%, -50%) rotate(180deg);
	-moz-transform: translate(-50%, -50%) rotate(180deg);
	-ms-transform: translate(-50%, -50%) rotate(180deg);
	-o-transform: translate(-50%, -50%) rotate(180deg);
}

.weekly-production-carousel .slick-track {
	display: flex;
	justify-content: center;
}

.weekly-production-carousel .slick-list {
	margin: 0 -14px;
}

.weekly-production-carousel .slick-slide {
	height: inherit;
	margin: 54px 14px 14px;
}

.weekly-production-carousel .weekly-production-block {
	position: relative;
	top: 0;
	height: 100%;
	padding: 26px;
	background: var(--white);
	border: 1px solid rgba(88, 78, 252, 0.3);
	box-shadow: 10px 10px 0px rgba(0, 0, 0, 0.05);
	border-radius: 20px;
	-webkit-border-radius: 20px;
	-moz-border-radius: 20px;
	-ms-border-radius: 20px;
	-o-border-radius: 20px;
	transition: all 0.3s ease-in-out;
	-webkit-transition: all 0.3s ease-in-out;
	-moz-transition: all 0.3s ease-in-out;
	-ms-transition: all 0.3s ease-in-out;
	-o-transition: all 0.3s ease-in-out;
}

.weekly-production-carousel .slick-slide:hover .weekly-production-block {
	top: -54px;
	background: linear-gradient(180deg, rgba(110, 222, 244, 0.25) 0%, rgba(88, 78, 252, 0.25) 100%), #FFFFFF;
}

.weekly-production-carousel .weekly-production-block .week-icon {
	height: 55px;
	margin-bottom: 40px;
}

.weekly-production-carousel .weekly-production-block .week-icon * {
	max-height: 100%;
}

.weekly-production-carousel .weekly-production-block .week-name {
	text-transform: uppercase;
	margin-bottom: 20px;
}

.weekly-production-carousel .weekly-production-block .week-title {
	font-weight: 500;
	font-size: 20px;
	line-height: 125%;
	color: var(--black);
	margin-bottom: 15px;
}

.weekly-production-carousel .weekly-production-block .week-title * {
	font-weight: inherit;
	font-size: inherit;
	line-height: inherit;
	color: inherit;
	margin-top: 0;
	margin-bottom: 0;
}

.weekly-production-carousel .weekly-production-block .week-title a {
	text-decoration: none;
}

.weekly-production-carousel .weekly-production-block .week-title a:hover {
	color: var(--violet);
}

.weekly-production-carousel .weekly-production-block .week-detail > *:last-child {
	margin-bottom: 0;
}
/* weekly-production */

/* qxli-ai */
.qxli-ai-section {
	padding-top: 60px;
	padding-bottom: 60px;
}

.qxli-ai-section .qxli-ai-main-title {
	margin-bottom: 50px;
}

.qxli-ai-section .qxli-ai-main-title > * {
	margin-bottom: 30px;
}

.qxli-ai-section .qxli-ai-main-title > *:last-child {
	margin-bottom: 0;
}

.qxli-ai-section .qxli-ai-main-title .main-detail > * {
	margin-bottom: 20px;
}

.qxli-ai-section .qxli-ai-main-title .main-detail > *:last-child {
	margin-bottom: 0;
}

.qxli-ai-section .qxli-ai-content {
	position: relative;
	overflow-x: auto;
}

.qxli-ai-section .qxli-ai-content .qxli-logo {
	display: inline-block;
	width: 208px;
	/* position: absolute;
	left: 50%;
	top: 80px;
	transform: translate(-50%, 0);
	-webkit-transform: translate(-50%, 0);
	-moz-transform: translate(-50%, 0);
	-ms-transform: translate(-50%, 0);
	-o-transform: translate(-50%, 0); */
}

.qxli-ai-section .qxli-ai-content .qxli-ai-table {
	position: relative;
	/* margin-top: 163px; */
	/* background: linear-gradient(180deg, rgb(110, 222, 244,0.1) 0%, rgb(88, 78, 252,0.1) 100%); */
	padding: 0 40px;
	border-radius: 10px;
	-webkit-border-radius: 10px;
	-moz-border-radius: 10px;
	-ms-border-radius: 10px;
	-o-border-radius: 10px;
}

/* .qxli-ai-section .qxli-ai-content .qxli-ai-table:before {
	position: absolute;
	content: "";
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
	z-index: -1;
	border-radius: 10px;
	-webkit-border-radius: 10px;
	-moz-border-radius: 10px;
	-ms-border-radius: 10px;
	-o-border-radius: 10px;
} */

.qxli-ai-table .table {
	position: relative;
	margin: 0;
	min-width: 1280px;
}

.qxli-ai-table .table:before {
	position: absolute;
	content: "";
	left: 50%;
	top: 0;
	bottom: 10px;
	z-index: -1;
	width: 100%;
	/* height: 100%; */
	max-width: 480px;
	background: linear-gradient(155.76deg, #6EDEF4 -0.11%, #584EFC 68.7%);
	transform: translate(-50%, 0);
	-webkit-transform: translate(-50%, 0);
	-moz-transform: translate(-50%, 0);
	-ms-transform: translate(-50%, 0);
	-o-transform: translate(-50%, 0);
	border-radius: 24px;
	-webkit-border-radius: 24px;
	-moz-border-radius: 24px;
	-ms-border-radius: 24px;
	-o-border-radius: 24px;
}

.qxli-ai-table .table:after {
	position: absolute;
	content: "";
	left: 0;
	right: 0;
	bottom: 0;
	z-index: -2;
	height: calc(100% - 115px);
	margin: 0 -40px;
	background: linear-gradient(180deg, rgb(110, 222, 244,0.1) 0%, rgb(88, 78, 252,0.1) 100%);
	border-radius: 20px;
	-webkit-border-radius: 20px;
	-moz-border-radius: 20px;
	-ms-border-radius: 20px;
	-o-border-radius: 20px;
}

.qxli-ai-table .table thead {
	border-color: transparent;
}

.qxli-ai-table .table thead th {
	background: transparent;
	padding-top: 30px;
	padding-bottom: 30px;
	padding-left: 35px;
	padding-right: 35px;
	text-align: center;
	font-weight: 600;
	font-size: 26px;
	line-height: 130%;
	color: var(--violet);
	text-transform: uppercase;
}

.qxli-ai-table .table thead th:first-child {
	padding-left: 0;
	text-align: left;
}

.qxli-ai-table .table thead tr:first-child th {
	padding-top: 58px;
}

.qxli-ai-table .table thead tr:first-child th {
	background: transparent;
	border-radius: 0;
	-webkit-border-radius: 0;
	-moz-border-radius: 0;
	-ms-border-radius: 0;
	-o-border-radius: 0;
}

.qxli-ai-table .table thead th:nth-child(2) {
	background: var(--white);
	border-bottom: 1px;
	border-radius: 20px 20px 0 0;
	-webkit-border-radius: 20px 20px 0 0;
	-moz-border-radius: 20px 20px 0 0;
	-ms-border-radius: 20px 20px 0 0;
	-o-border-radius: 20px 20px 0 0;
}

.qxli-ai-table .table tbody td {
	position: relative;
	z-index: 9;
	min-width: 450px;
	font-weight: 400;
	font-size: 24px;
	line-height: 150%;
	color: #000000;
	background: transparent;
	padding: 25px 35px;
	border-top: 1px solid #e6e6e6;
}

.qxli-ai-table .table tbody td:first-child {
	padding-left: 0;
}

.qxli-ai-table .table tbody td:last-child {
	padding-right: 0;
}

.qxli-ai-table .table tbody tr:last-child td {
	border: none;
	padding-bottom: 45px;
}

.qxli-ai-table .table tbody tr:last-child td:nth-child(2) {
	position: relative;
	background: transparent;
}

.qxli-ai-table .table tbody tr:last-child td:nth-child(2):before {
	position: absolute;
	content: "";
	left: 0;
	right: 0;
	top: 0;
	bottom: 15px;
	background: var(--white);
	border-radius: 0 0 20px 20px;
	-webkit-border-radius: 0 0 20px 20px;
	-moz-border-radius: 0 0 20px 20px;
	-ms-border-radius: 0 0 20px 20px;
	-o-border-radius: 0 0 20px 20px;
}

.qxli-ai-table .table tbody td.enterprice-ai {
	background: var(--white);
}

/* .qxli-ai-table .table tbody tr:last-child td.enterprice-ai {
	border-bottom: ;
	border-radius: 0 0 24px 24px;
	-webkit-border-radius: 0 0 24px 24px;
	-moz-border-radius: 0 0 24px 24px;
	-ms-border-radius: 0 0 24px 24px;
	-o-border-radius: 0 0 24px 24px;
} */

.qxli-ai-table .table tbody td.saas-ai,
.qxli-ai-table .table tbody td.enterprice-ai {
	font-weight: 500;
}

.qxli-ai-table .table tbody td.saas-ai span,
.qxli-ai-table .table tbody td.enterprice-ai span {
	display: block;
	position: relative;
	padding-left: 36px;
}

.qxli-ai-table .table tbody td.enterprice-ai span:before {
	position: absolute;
	content: "";
	left: 0;
	top: 7px;
	width: 22px;
	height: 22px;
	background: url("data:image/svg+xml,%3Csvg width='22' height='22' viewBox='0 0 22 22' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M18.4064 18.4167H18.4167H18.4064ZM18.4064 18.4167C17.7318 19.0856 16.5092 18.919 15.6519 18.919C14.5995 18.919 14.0928 19.1248 13.3417 19.8759C12.7022 20.5155 11.8448 21.6667 10.8333 21.6667C9.82183 21.6667 8.96448 20.5155 8.32495 19.8759C7.57389 19.1248 7.06711 18.919 6.01473 18.919C5.1574 18.919 3.93486 19.0856 3.26028 18.4167C2.58029 17.7424 2.74764 16.5148 2.74764 15.6519C2.74764 14.5615 2.50917 14.0602 1.73266 13.2836C0.577568 12.1286 2.16667e-05 11.5509 0 10.8333C1.08333e-05 10.1156 0.577547 9.5381 1.73263 8.38302C2.4258 7.68985 2.74764 7.00297 2.74764 6.01473C2.74764 5.15737 2.58103 3.93482 3.25 3.26023C3.9243 2.58026 5.1519 2.74762 6.01475 2.74762C7.00296 2.74762 7.68985 2.4258 8.383 1.73265C9.5381 0.577547 10.1156 0 10.8333 0C11.551 0 12.1286 0.577547 13.2836 1.73265C13.9766 2.42566 14.6635 2.74762 15.6519 2.74762C16.5092 2.74762 17.7319 2.58101 18.4065 3.25C19.0864 3.9243 18.919 5.15189 18.919 6.01473C18.919 7.10513 19.1576 7.60648 19.934 8.38302C21.0891 9.5381 21.6667 10.1156 21.6667 10.8333C21.6667 11.5509 21.0891 12.1286 19.934 13.2836C19.1575 14.0602 18.919 14.5615 18.919 15.6519C18.919 16.5148 19.0864 17.7424 18.4064 18.4167Z' fill='%23008000'/%3E%3Cpath d='M7.58398 11.8006L9.53398 13.5417L14.084 8.125' stroke='white' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E%0A") no-repeat;
	background-size: 100% 100%;
}

.qxli-ai-table .table tbody td.saas-ai span:before {
	position: absolute;
	content: "";
	left: 0;
	top: 7px;
	width: 22px;
	height: 22px;
	background: url("data:image/svg+xml,%3Csvg width='20' height='20' viewBox='0 0 20 20' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M10 0C4.48578 0 0 4.48578 0 10C0 15.5142 4.48578 20 10 20C15.5142 20 20 15.5142 20 10C20 4.48578 15.5142 0 10 0Z' fill='%23FE3D45'/%3E%3Cpath d='M13.6856 12.5033C14.0114 12.8292 14.0114 13.3558 13.6856 13.6817C13.6083 13.7592 13.5165 13.8207 13.4153 13.8626C13.3142 13.9045 13.2058 13.926 13.0963 13.9259C12.883 13.9259 12.6697 13.8442 12.5072 13.6817L10.0031 11.1775L7.49898 13.6818C7.42169 13.7592 7.32986 13.8207 7.22875 13.8626C7.12764 13.9045 7.01925 13.926 6.9098 13.9259C6.80035 13.926 6.69194 13.9045 6.59082 13.8626C6.4897 13.8207 6.39785 13.7593 6.32055 13.6818C5.99477 13.3558 5.99477 12.8292 6.32055 12.5033L8.8248 9.99918L6.32051 7.49508C5.99473 7.16914 5.99473 6.64254 6.32051 6.31664C6.64645 5.99086 7.17305 5.99086 7.49898 6.31664L10.0031 8.8209L12.5072 6.3166C12.8331 5.99082 13.3597 5.99082 13.6856 6.3166C14.0114 6.64254 14.0114 7.16914 13.6856 7.49508L11.1814 9.99918L13.6856 12.5033Z' fill='white'/%3E%3C/svg%3E%0A") no-repeat;
	background-size: 100% 100%;
}
/* qxli-ai */

/* unlock-organisations */
.unlock-organisations-section {
	padding-top: 60px;
	padding-bottom: 120px;
}

.unlock-organisations-section .unlock-organisations-description .unlock-organisations-content {
	display: flex;
	flex-wrap: wrap;
}

.unlock-organisations-section .unlock-organisations-description .unlock-organisations-content > * {
	flex: 1 0 0;
	max-width: 100%;
}

.unlock-organisations-section .unlock-organisations-description .unlock-organisations-content .unlock-organisations-image {
	flex: 0 0 auto;
	width: 100%;
	max-width: 575px;
	margin-left: 40px;
	overflow: hidden;
	border-radius: 20px;
	-webkit-border-radius: 20px;
	-moz-border-radius: 20px;
	-ms-border-radius: 20px;
	-o-border-radius: 20px;
}

.unlock-organisations-section .unlock-organisations-description .unlock-organisations-content .unlock-organisations-image * {
	width: 100%;
	height: 100%;
	object-fit: cover;
	font-family: 'object-fit: cover';
}

.unlock-organisations-section .unlock-organisations-main-detail {
	position: relative;
	z-index: 9;
	overflow: hidden;
	background: var(--white);
	border: 1px solid rgba(88, 78, 252,0.3);
	padding: 40px;
	box-shadow: 10px 10px 0px rgba(0, 0, 0, 0.05);
	border-radius: 20px;
	-webkit-border-radius: 20px;
	-moz-border-radius: 20px;
	-ms-border-radius: 20px;
	-o-border-radius: 20px;
}

.unlock-organisations-section .unlock-organisations-main-detail:before {
	position: absolute;
	content: "";
	right: 0;
	top: 0;
	width: 445px;
	height: 415px;
	z-index: -1;
	background: url('../images/unlock-organisations-back-img.svg') no-repeat;
	background-size: 100% 100%;
}

.unlock-organisations-section .unlock-organisations-main-detail > * {
	margin-bottom: 30px;
}

.unlock-organisations-section .unlock-organisations-main-detail > *:last-child {
	margin-bottom: 0;
}

.unlock-organisations-section .unlock-organisations-main-detail .main-detail > * {
	margin-bottom: 20px;
}

.unlock-organisations-section .unlock-organisations-main-detail .main-detail > *:last-child {
	margin-bottom: 0;
}

.unlock-organisations-section .unlock-organisations-main-detail .unlock-organisations-buttons {
	display: flex;
	flex-wrap: wrap;
	gap: 20px;
}

.unlock-organisations-section .unlock-organisations-main-detail .unlock-organisations-list {
	margin-top: 65px;
}

.unlock-organisations-section .unlock-organisations-list ul {
	display: flex;
	flex-wrap: wrap;
	margin: 0 -20px;
	padding: 0;
	list-style-type: none;
}

.unlock-organisations-section .unlock-organisations-list ul li {
	flex: 0 0 auto;
	width: calc(50% - 40px);
	display: inline-flex;
	flex-wrap: wrap;
	margin: 0 20px 20px;
	padding: 0 0 0 36px;
	list-style-type: none;
	position: relative;
}

.unlock-organisations-section .unlock-organisations-list ul li:before {
	position: absolute;
	content: "";
	left: 0;
	top: 0;
	width: 22px;
	height: 22px;
	background: url("data:image/svg+xml,%3Csvg width='22' height='22' viewBox='0 0 22 22' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M18.4064 18.4167H18.4167H18.4064ZM18.4064 18.4167C17.7318 19.0856 16.5092 18.919 15.6519 18.919C14.5995 18.919 14.0928 19.1248 13.3417 19.8759C12.7022 20.5155 11.8448 21.6667 10.8333 21.6667C9.82183 21.6667 8.96448 20.5155 8.32495 19.8759C7.57389 19.1248 7.06711 18.919 6.01473 18.919C5.1574 18.919 3.93486 19.0856 3.26028 18.4167C2.58029 17.7424 2.74764 16.5148 2.74764 15.6519C2.74764 14.5615 2.50917 14.0602 1.73266 13.2836C0.577568 12.1286 2.16667e-05 11.5509 0 10.8333C1.08333e-05 10.1156 0.577547 9.5381 1.73263 8.38302C2.4258 7.68985 2.74764 7.00297 2.74764 6.01473C2.74764 5.15737 2.58103 3.93482 3.25 3.26023C3.9243 2.58026 5.1519 2.74762 6.01475 2.74762C7.00296 2.74762 7.68985 2.4258 8.383 1.73265C9.5381 0.577547 10.1156 0 10.8333 0C11.551 0 12.1286 0.577547 13.2836 1.73265C13.9766 2.42566 14.6635 2.74762 15.6519 2.74762C16.5092 2.74762 17.7319 2.58101 18.4065 3.25C19.0864 3.9243 18.919 5.15189 18.919 6.01473C18.919 7.10513 19.1576 7.60648 19.934 8.38302C21.0891 9.5381 21.6667 10.1156 21.6667 10.8333C21.6667 11.5509 21.0891 12.1286 19.934 13.2836C19.1575 14.0602 18.919 14.5615 18.919 15.6519C18.919 16.5148 19.0864 17.7424 18.4064 18.4167Z' fill='%23584EFC'/%3E%3Cpath d='M7.58398 11.8006L9.53398 13.5417L14.084 8.125' stroke='white' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E%0A") no-repeat;
	background-size: 100% 100%;
}
/* unlock-organisations */
/* eka page */

/*==================================================================*/
/*========== New Class Add End ==========*/
/*==================================================================*/


/*==================================================================*/
/*========== Footer Start ==========*/
/*==================================================================*/
.footer {
	position: relative;
}

.footer-main {
	overflow: hidden;
	position: relative;
	padding: 50px 200px 0;
	border-radius: 10px 10px 0px 0px;
	-webkit-border-radius: 10px 10px 0px 0px;
	-moz-border-radius: 10px 10px 0px 0px;
	-ms-border-radius: 10px 10px 0px 0px;
	-o-border-radius: 10px 10px 0px 0px;
}

.footer-main::after {
	position: absolute;
	content: '';
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	height: 100%;
	width: 100%;
	opacity: 0.1;
	border-radius: 10px 10px 0px 0px;
	background: linear-gradient(180deg, #6edef4 0%, #584efc 100%);
	z-index: -2;
}

.footer-main h6 {
	color: #584EFC;
	font-family: 'Outfit';
	font-size: 25px;
	font-weight: 500;
	line-height: 120%;
	text-transform: uppercase;
	margin-bottom: 20px;
}

.footer-main li {
	list-style-type: none;
}


.sideimg-left {
	position: absolute;
	top: 0;
	bottom: 0;
	left: -50px;
	opacity: 0.2;
	z-index: -1;
}

.sideimg-right {
	position: absolute;
	top: 0;
	bottom: 0;
	right: -50px;
	opacity: 0.2;
	z-index: -1;
}

.sideimg-left img,
.sideimg-right img {
	width: 100%;
	height: 100%;
}

.sideimg-right img {
	transform: rotateY(180deg);
	-webkit-transform: rotateY(180deg);
	-moz-transform: rotateY(180deg);
	-ms-transform: rotateY(180deg);
	-o-transform: rotateY(180deg);
}

.footer-left ul {
	padding-left: 0;
	margin-bottom: 0;
}

.footer-left li {
	list-style-type: none;
	color: var(--black);
	font-size: 20px;
	font-weight: 300;
	line-height: 150%;
	margin-bottom: 30px;
}

.footer-left li:last-child {
	margin-bottom: 0;
}

.footer-left li span {
	display: block;
	color: var(--black);
	opacity: 0.5;
	font-size: 20px;
	font-weight: 300;
	line-height: 100%;
	margin-bottom: 5px;
}

.footer-left li a {
	display: inline-block;
	color: var(--black);
	font-size: 20px;
	font-weight: 300;
	line-height: 150%;
	transition: all 0.3s ease;
	-webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	-ms-transition: all 0.3s ease;
	-o-transition: all 0.3s ease;
}

.footer-left li p {
	margin-bottom: 0;
}


.footer-right {
	text-align: right;
}

.footer-right ul {
	padding-left: 0;
	margin-bottom: 0px;
}

.footer-right li {
	margin-bottom: 30px;
}

.footer-right li:last-child {
	margin-bottom: 0px;
}

.footer-right li a {
	color: #000;
	text-align: right;
	font-size: 20px;
	font-weight: 300;
	line-height: 100%;
	text-transform: capitalize;
}


.footer-center {
	text-align: center;
}

.footer-center .footer-logo {
	display: block;
	width: 100%;
	max-width: 157px;
	margin: 0 auto 20px;
}

.footer-center .footer-logo img {
	width: 100%;
	height: 100%;
}

.footer-center .common-detail {
	color: var(--black);
	text-align: center;
	font-size: 18px;
	font-weight: 200;
	line-height: 155.556%;
	margin-bottom: 20px;
}

.footer-center ul {
	display: flex;
	justify-content: center;
	align-items: center;
	margin-bottom: 0;
	padding-left: 0;
}

.footer-center ul li a {
	display: flex;
	align-items: center;
	color: #000;
	font-size: 20px;
	font-weight: 500;
	line-height: 100%;
	margin-right: 25px;
}

.footer-center ul li a:hover {
	color: var(--violet);
}

.footer-center ul li a img {
	margin-right: 5px;
	width: 16px;
	height: 16px;
}

.footer-center ul li:last-child a {
	margin-right: 0;
}

.footer-bottom {
	position: relative;
	padding: 20px 5px;
	margin-top: 20px;
}

.footer-bottom::after {
	position: absolute;
	content: '';
	top: 0;
	left: 50%;
	transform: translateX(-50%);
	right: 0;
	height: 1px;
	width: 1720px;
	opacity: 0.15;
	background: #1D1D1D;
	-webkit-transform: translateX(-50%);
	-moz-transform: translateX(-50%);
	-ms-transform: translateX(-50%);
	-o-transform: translateX(-50%);
}

.footer-bottom .common-detail {
	text-align: center;
	color: var(--black);
	font-size: 16px;
	font-weight: 300;
	line-height: 162.5%;
}

/*==================================================================*/
/*========== Footer End ==========*/
/*==================================================================*/