@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;
}

/* Common Style End */


/*==================================================================*/
/*========== 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;
}

/* -----  work  ------ */

/*==================================================================*/
/*========== 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 0;
	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 ==========*/
/*==================================================================*/