* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

:root {
	--text-color--text-primary: #212121;
	--font-main: 'Neue Montreal';
	--font-poppins: 'Neue Montreal';
	--background-color--background-primary: #fff;
	--header-height: 80px;
	--blue-color: #87b4fb;
	--orange-color: #FFD38F;
	--theme-color: #faaaae;
	--dark-color: #212121;
	--white-color: #ffffff;
	--green-color: #77dd77;
}

@font-face {
	font-family: 'Neue Montreal';
	src: url('./fonts/NeueMontreal-Regular.eot');
	src: url('./fonts/NeueMontreal-Regular.eot?#iefix') format('embedded-opentype'),
		url('./fonts/NeueMontreal-Regular.woff2') format('woff2'),
		url('./fonts/NeueMontreal-Regular.woff') format('woff'),
		url('./fonts/NeueMontreal-Regular.ttf') format('truetype'),
		url('./fonts/NeueMontreal-Regular.svg#NeueMontreal-Regular') format('svg');
	font-weight: normal;
	font-style: normal;
	font-display: swap;
}

@font-face {
	font-family: 'Neue Montreal Bold';
	src: url('./fonts/NeueMontreal-Bold.eot');
	src: url('./fonts/NeueMontreal-Bold.eot?#iefix') format('embedded-opentype'),
		url('./fonts/NeueMontreal-Bold.woff2') format('woff2'),
		url('./fonts/NeueMontreal-Bold.woff') format('woff'),
		url('./fonts/NeueMontreal-Bold.ttf') format('truetype'),
		url('./fonts/NeueMontreal-Bold.svg#NeueMontreal-Bold') format('svg');
	font-weight: bold;
	font-style: normal;
	font-display: swap;
}

body {
	font-family: var(--font-main);
	color: var(--text-color--text-primary);
	font-size: 1rem;
	line-height: 1.5;
	background-color: #ecedef;
	background: url(../images/banner-bg.svg) no-repeat;
	background-attachment: fixed;
	background-size: cover;
}

.fw-bold {
	font-family: 'Neue Montreal Bold';
}

.btn-primary {
	background: var(--dark-color);
	border-color: var(--dark-color);
	font-size: 18px;
	font-weight: normal;
	border-radius: 30px;
	min-width: 125px;
	height: 50px;
}

.text-dark {
	color: var(--dark-color);
}

.btn-primary {
	display: flex;
	align-content: center;
	align-items: center;
	justify-content: center;
}

.btn-primary:hover {
	background: #3E006E;
	border-color: #3E006E;
}

.btn-primary img {
	width: 18px;
	margin-left: 8px;
	transform: translateY(.1rem);
	transition: opacity .2s ease-in-out, transform .2s ease-in-out, color .2s ease-in-out;
	position: relative;
	top: -3px;
}

.btn-primary:hover img {
	transform: translate(.25rem, .1rem);
	transition: opacity .2s ease-in-out, transform .2s ease-in-out, background-color .2s ease-in-out, color .2s ease-in-out;
}

.text-white {
	color: #fff;
}

.bg-dark {
	background: var(--dark-color);
}

a {
	transition: all 0.3s ease;
}

img {
	width: 100%;
}

header {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	z-index: 1000;
}

.navbar {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 1.625rem;
}
.logo {
	position: relative;
	width: 240px;
	height: 60px;
}
.logo img {
	max-width: 100%;
	transition: opacity 0.5s ease;
	position: absolute;
	top: 0;
	left: 0;
}

.logo-header-st {
	opacity: 0;
	width: 60px;
}

#mainHeader.fixed .logo-header {
  opacity: 0;
}

#mainHeader.fixed .logo-header-st {
  opacity: 1;
}

.menu-toggle {
	width: 50px;
	height: 50px;
	position: relative;
	cursor: pointer;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	border: 2px solid var(--dark-color);
	border-radius: 50%;
	padding: 16px 12px;
}

.menu-toggle span {
	display: block;
	height: 2px;
	background: #000;
	border-radius: 3px;
	transition: 0.4s;
}

.menu-toggle.active span:nth-child(1) {
	transform: rotate(45deg) translate(3px, 3px);
}

.menu-toggle.active span:nth-child(2) {
	opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
	transform: rotate(-45deg) translate(6px, -6px);
}

.menu-box {
	position: fixed;
	top: 20px;
	right: 0px;
	width: 301px;
	min-height: 370px;
	background: #fff;
	transition: 0.4s ease;
	padding: 65px 20px 15px 25px;
	box-shadow: -3px 0px 8px rgba(0, 0, 0, 0.1);
	border-radius: 24px;
	opacity: 0;
	pointer-events: none;
}
.menu-box.active {
	right: 15px;
	opacity: 1;
	z-index: 99;
	pointer-events: all;
}
.menu-box ul {
	list-style: none;
	padding: 0;
}

.menu-box ul li {
	margin: 15px 0;
}

.menu-box ul li a {
	text-decoration: none;
	color: #000;
	font-size: 24px;
	text-transform: uppercase;
	line-height: 25px;
}

.menu-active .menu-button {
	opacity: 0;
	transition: 0.4s ease;
}

@media(max-width: 768px) {
	.navbar button {
		margin-right: 15px;
	}
}

.banner {
	height: 100vh;
	position: relative;
	color: var(--dark-color);
	text-align: center;
	display: flex;
	align-content: center;
	align-items: center;
	justify-content: center;
	width: 100%;
	/* background: url(../images/banner-bg.svg) no-repeat; */
	z-index: 9;
	background-size: cover;
}

.banner-content {
	width: 800px;
	max-width: 100%;
	padding: 0 25px;
	z-index: 1;
}

.banner-content h1 {
	font-size: 92px;
	line-height: 100px;
}

.banner-content .btn {
	display: inline;
	position: relative;
	top: 60px;
}

.button-banner {
	background-color: var(--orange-color);
	border-color: var(--orange-color);
	color: var(--dark-color);
	padding:14px 25px;
	
}

.button-banner i {
	width: 22px;
	height: 22px;
	background: var(--dark-color);
	border-radius: 50%;
	text-align: center;
	padding: 0;
	display: inline-block;
	vertical-align: middle;
	position: relative;
	top: -4px;
	margin-left: 5px;
	transform: translateY(.1rem);
}

.button-banner i img {
	top: -6px;
	margin-left: 0;
}

.button-banner:hover i {
	transform: translate(.25rem, .1rem);
	transition: opacity .2s ease-in-out, transform .2s ease-in-out, background-color .2s ease-in-out, color .2s ease-in-out;
}

.button-banner:hover i img {
	transform: translateY(.1rem);
}

section h2 {
	font-size: 92px;
	line-height: 100px;
}



/******************/

.ServicesHeading_heading {
	display: flex;
	font-size: clamp(3rem,10.6vw,10rem);
	line-height: .9;
	text-transform: uppercase;
	letter-spacing: calc(-20em / 1000);
	font-weight: 400;
}
.head-l{width: 100%;
  padding-left: 13.5%;
  margin-bottom: 10vh;}
  .ServicesHeading_heading.head-l.split {
	position: relative;
}
.ServicesHeading_heading.head-l i {
	width: 70px;
	position: absolute;
	top: 5px;
	right: 30px;
	rotate: -109deg;
}
#services {
	overflow: hidden;
}

 
.split {
  opacity: 0;

 
}

.split * {
  will-change: transform;
}



.heading-all {
	display: flex;
	position: relative;
	align-content: end;
	align-items: end;
	margin: 0px 0 50px !important;
}
.ServicesHeading_heading.head-l.split {
	position: relative;
}
.heading-all img {
	width: 170px;
	position: relative;
	top: 32px;
	left: -30px;
}

.more-icon {
	background: var(--dark-color);
	width: 66px;
	height: 66px;
	padding: 18px 22px;
	border-radius: 50%;
	color: #fff;
	position: absolute;
	right: 50%;
	top: 40px;
	margin-right: -33px;
	rotate: -34deg;
}

.panels {
	display: flex;
	gap: 1rem;
	align-items: stretch;
	position: relative;
}

.panel {
	flex: 0 0 200px;
	background: url(../images/paid-bg.svg) no-repeat;
	border-radius: 40px;
	padding: 1.4rem;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
	transition: flex-basis .45s cubic-bezier(.2, .8, .2, 1), background .25s, color .25s;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	cursor: pointer;
	overflow: hidden;
	min-height: 600px;
	text-align: center;
	position: relative;
}

.s-media {
	background: url(../images/social-media-manage-bg.svg) no-repeat;
}

.Paid-ads-tab {
	background: url(../images/paid-bg.svg) no-repeat;
}

.Community-building-tab {
	background: url(../images/cb-bg.svg) no-repeat;
}

.panel.active {
	flex: 0 0 calc(100% - 400px);
	color: var(--dark-color);
	transform: translateY(-2px);
	background-position: right center;
	padding: 0 270px 0 50px;
	text-align: left;
}

.panel.active.s-media {
	background-color: #B6EAB6;
}

.panel.active.Paid-ads-tab {
	background-color: #FFD38F;
}

.panel.active.Community-building-tab {
	background-color: #DCCFF2;
}

.panel.active .more-icon {
	right: 34px;
	rotate: 0deg;
	margin-right: 0;
}

.panel.active h5 {
	font-size: 62px;
	line-height: 65px;
	width: 100%;
	display: inline-block;
	transform: rotate(0deg);
	text-align: left;
	padding: 0 0 30px;
}

.extra .btn {
	padding-left: 20px;
	padding-right: 20px;
	width: 240px;
}

.panel.active .extra {
	opacity: 1;
	transform: none;
	max-height: 400px;
	font-size: 18px;
	line-height: 25px;
	padding-right: 16%;
}

.tag-list {
	padding: 0;
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
}

.tag-list li {
	font-size: 16px;
	list-style: none;
	border: 1px solid;
	padding: 6px 15px;
	border-radius: 30px;
	color: var(--dark-color);
	text-transform: capitalize;
}
.tag-list li:hover {
	background: #3E006E;
	color: #fff;
	border-color: #3E006E;
}

.panel .extra {
	opacity: 0;
	transform: translateY(8px);
	transition: opacity .3s ease, transform .3s ease;
	max-height: 0;
	overflow: hidden;
	margin-top: .6rem;
}

.panel.active .extra {
	opacity: 1;
	transform: none;
	max-height: 400px;
}

.panel h5 {
	margin-bottom: 0;
	font-size: 52px;
	line-height: 65px;
	width: 600px;
	display: inline-block;
	transform: rotate(-90deg);
	white-space: nowrap;
	text-align: left;
	padding: 0 100px 0 40px;
}

.panel .open-btn {
	z-index: 2;
}

.panel.active .open-btn {
	border-color: rgba(255, 255, 255, 0.6);
	color: #fff;
	background: transparent;
}

@media (max-width: 767px) {
	.panels {
		flex-direction: column;
	}

	.panel {
		flex: 0 0 auto;
		width: 100%;
	}

	.panel.active {
		width: 100%;
		transform: none;
	}
}

.dark-body header .menu-toggle {
	border-color: var(--white-color);
}
.dark-body header .logo img {
	filter: brightness(0) invert(1);
}
.dark-body header .btn-primary:hover {
	background:rgb(220, 207, 242);
	border-color: rgb(220, 207, 242);
}
.dark-body header .menu-toggle span {
	background: #fff;
}

.dark-body header .btn-primary {
	background: var(--white-color);
	border-color: var(--white-color);
	color: #000;
}

.dark-body header .btn-primary img {
	filter: brightness(1) invert(1);
}

.light-bg .heading-all img {
	filter: brightness(1) invert(1);
}

.dark-body .active.menu-toggle {
	border-color: var(--dark-color);
}

.dark-body .active.menu-toggle span {
	background: var(--dark-color);
}

.work-section {
	/* background: url(../images/work-bg.svg) no-repeat center; */
	background-size: cover;
	padding-bottom: 100px !important;
}

/****************work*************/


.carousel__slider {
	position: relative;
	width: 100%;
	height: 100vh;
}

.carousel__item {
	width: 100%;
	padding: 15px;
	color: var(--dark-color);
	background: rgba(255, 255, 255, 0.8);
	border: 2px solid rgba(255, 255, 255, 1);
	border-radius: 40px;
	position: absolute;
	top: 0%;
	opacity: 0;

}


.carousel__nav {
	display: none;
	gap: 16px;
	align-items: center;
	flex-direction: column;
}

.carousel__nav__item {
	background: #424b58;
	box-shadow: none;
	display: block;
	width: 10px;
	height: 10px;
	border: 1px solid rgba(255, 255, 255, 0.2);
	border-radius: 50%;
	cursor: pointer;
}
#project-sec {
	background: #3E006E;
}
.project-repeat{

	width: 100%;
	padding: 15px 0 0;
	color: var(--dark-color);
	background: rgba(255, 255, 255, 0.6);
	border: 2px solid rgba(255, 255, 255, 1);
	border-radius: 40px;
	margin-bottom: 30px;

}

.work-img img {
	border-radius: 40px;
	margin-top: 0;
}

.work-img {
	position: relative;
}

.work-img::before {
	content: "";
	display: block;
	overflow: hidden;
	clear: both;
	background: url(../images/work-overlay.png) no-repeat 100%;
	background-size: cover;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 9;
	border-radius: 40px;
}

.project-repeat h4 {
	font-size:30px;
	color: var(--dark-color);
	display: flex;
	margin-bottom: 0;
	margin-top: 15px;
}

.project-repeat h4 img {
	width: 67px;
	position: relative;
	filter: brightness(1) invert(1);
	margin-top: -12px;
}

.work-list {
	display: flex;
	gap: 15px;
	position: absolute;
	bottom: 20px;
	flex-wrap: wrap;
	z-index: 9;
	width: 600px;
	max-width: 100%;
}

.work-list li {
	border: 1px solid #fff;
	height: 38px;
	display: flex;
	align-content: center;
	justify-content: center;
	align-items: center;
	color: #fff;
	padding: 3px 16px;
	font-size: 14px;
	border-radius: 30px;
}

.work-img img {
	height: 60vh;
	object-fit: cover;
}
.work-button{text-align: center;}
.work-button .btn {
	display: inline-block;
	padding: 0 15px;
}
.work-button .btn:hover{background: #fff; color: #000; border-color: #fff;}
.work-button .btn:hover img {
	filter: brightness(1) invert(1);
}
/*********processbg**********/

.process-bg {
	/* background: url(../images/process-bg.png); */
	background-size: cover;
	min-height: 100vh;
	padding-bottom: 100px;
	position: relative;
	background: #3E006E;
	overflow: hidden;
	z-index: 1;
}

.process-bg::after {
	/* background: url(../images/result-top-bg.svg) no-repeat top; */
	position: absolute;
	bottom: -1px;
	width: 100%;
	left: 0;
	height: 100px;
	content: "";
	display: block;
	z-index: 99;
	overflow: hidden;
	clear: both;
	background-size: 100% auto;
}

.process-bg .heading-all img {
	width: 117px;
	position: relative;
	top: 23px;
	left: -90px;
}

.build-icon {
	background: #DCCFF2;
}

.target-icon {
	background: #FFD38F;
}

.final-icon {
	background: #DCCFF2;
}


/*****************/

.result-bg .heading-all img {
	filter: brightness(1) invert(1);
}
#result {
	padding: 8rem 0 3rem;
}
#process .heading-all {
	transform-origin: left center;
	font-size: 60px;
	line-height: 70px;
	padding-left: 50px;
	margin-bottom: 20px !important;
	
}

/********************/
.card-box {
	border-radius: 20px;
	padding: 20px;
	height: auto;
	font-size: 18px;
	color: var(--dark-color);
	line-height: 25px;
	min-height: 85px;
}

.card-box p {
	margin-bottom: 0;
}

.highlight-text {
	font-weight: bold;
	font-size: 1.2rem;
}

.stat-number {
	font-size: 1.5rem;
	font-weight: bold;
}

.find-more-btn {
	background-color: #000;
	color: #fff;
	padding: 10px 20px;
	border-radius: 30px;
	display: inline-block;
	text-decoration: none;
}

.find-more-btn:hover {
	background-color: #333;
	color: #fff;
}

.box-blue {

	background: linear-gradient(180deg, #F5FAFF 0%, #EAF3FF 100%);
	border: 1px solid #BFD9FF;
}

.card-green {
	background: linear-gradient(180deg, #F0FFF5 0%, #E5F7E5 100%);
	border: 1px solid #B7E3C1;

}
.card-box.card-purple.box-seo {
	padding: 32px 20px;
}
.card-purple {
	background: linear-gradient(180deg, #FAF7FF 0%, #F5F0FF 100%);
	border: 1px solid #D6C9F5;

}

.revenue-box {
	background: #ffd7d7;
	border: 1px solid #ffd7d7;
}

.stat-number {
	font-size: 26px;
}


.right-section {
	display: flex;
	flex-wrap: wrap;

	justify-content: center;

}

.why-img {
	width: 100%;
	height: 414px;
	border-radius: 30px;
}
.video-why-us {
	height: 405px;
	object-fit: cover;
	border-radius: 20px;
}
.view-more-img a {
	width: 180px;
}

.total-followers-w {
	font-size: 20px;
	width: 100%;
}

.leads-drop {
	background: linear-gradient(135deg, #ffe6e6, #ffcccc);
	border: 1px solid rgba(255, 192, 203, 0.4);
}

.total-followers {
	background: #dcccf3;
	border: 1px solid rgba(180, 140, 255, 0.4);
	text-align: right;
	padding: 26px 15px;
}

.total-followers h3 {
	font-size: 28px;
	margin: 10px 0 0;
	width: 100%;
}

.total-followers p {
	font-size: 12px;
	color: #333;
}

.organic-growth {
	background: linear-gradient(135deg, #fff7e6, #ffeabf);
	border: 1px solid rgba(255, 214, 144, 0.4);
	padding: 20px 15px;
}

.organic-growth .d-flex {
	margin-top: 28px;
}

.revenue-text {
	font-size: 14px;

}

.organic-growth .label {
	line-height: 15px;
	margin-top: 14px;
}

.platform-reward {
	background: linear-gradient(135deg, #e8f1ff, #d6e7ff);
	border: 1px solid rgba(150, 200, 255, 0.4);
}

.icon {
	margin-top: 0;
}

.icon img {
	width: 48px;
}

.right-section-m .col-sm-6 {
	margin-bottom: 15px;
}

.why-image-section {
	position: relative;
}

.view-more-img a {
	width: 220px;
	margin-right: 0 !important;
}

.view-more-img {
	display: flex;
	background-color:rgba(255, 255, 255, 0.60);
	padding: 15px 30px;
	position: absolute;
	bottom: -35px;
	left: 50%;
	border-radius: 20px;
	align-content: center;
	margin-left: -120px;
	justify-content: center;
	justify-items: center;
	align-items: center;
}


.row-b {
	display: block;
	/* flex-wrap: wrap; */
	padding: 0;
	margin: 0 -10px;
}

.col-sm-b {
	width: 49%;
	display: inline-block;
	vertical-align: top;
	/* margin-bottom: 15px; */
	padding: 0 10px;
}

.col-sm-b .card-box {
	width: 100%;
	margin-bottom: 15px;
}

.Platforms-box {
	min-height: 235px;
	padding: 38px 28px;
}

.col-sm-b.widthb1 {
	width: 55%;
}

.col-sm-b.widthb2 {
	width: 44%;
}

.custom-card.card-box.leads-drop {
	padding: 32px 15px;
}

.team-section {
	/* background: url(../images/team-bg.svg) no-repeat; */
	background-size: cover;
}

.team-member img {
	width: 165px;
}



/**************footer********/
.footer {
	background-color: #3E006E;
	padding: 8rem 0 5rem;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	min-height: 50vh;
}
.Footer_top {
	margin-bottom: 4rem;
	display: flex;
  justify-content: space-between;
  align-items: center;
  grid-column: span 12;
}
.Footer_copyrightText__f_Lte {
	font-size: 1.25rem;
	text-align: right;
}
.footer-logo {
	width: 90px;
	filter: brightness(0) invert(1);
}
.Footer_email {
	font-size: 5rem;
	font-weight: 400;
	line-height: 1;
	letter-spacing: calc(-.02em);
	margin: 0;
	text-decoration: none;
	color: #fff;
	cursor: pointer;
}

.Footer_bottom {
	flex-direction: row;
	align-items: center;
	display: flex;
 
  justify-content: space-between;
  grid-column: span 12;
}
.Footer_socialLinks{
	display: flex;
	justify-self: flex-start;
	flex-wrap: wrap;
	gap: 1.5rem;
}
.Footer_socialLinks__tA7gt a {
	font-size: 1.25rem;
}
.Footer_socialLinks img {
	width: .7rem;
	transition: transform .25s ease-in-out;
	will-change: transform;
}
.Footer_socialLinks a {
	font-size: 1.25rem;
	display: flex;
  gap: .3rem;
  align-items: baseline;

  text-decoration: none;
  color: #fff;
}
.Footer_logos{
	display: flex;
	flex-wrap: wrap;
	gap: 2rem;
}
.Footer_socialLinks a:hover img {
  transform: translate(25%,-25%);
}
.Footer_logos img {
	height: 2.25rem;
	display: block;
	max-width: 100%;
	width: auto;
}

.Footer_last__auU9C {
	align-items: center;
	grid-template-columns: 1fr auto;
    justify-content: unset;
    margin: 2.5rem 0;
	display: grid;
	grid-column: span 12;
	gap: 1rem;
	padding-bottom: 30px;
  padding-top: 30px;
}
.Footer_lastNav__at6Kh {
	display: flex;
	justify-self: flex-start;
	flex-wrap: wrap;
	list-style: none;
	gap: 1.5rem;
	margin: 0;
	padding: 0;
}

.Footer_newsletterButton__wp2hz {
	font-size: 1.25rem;
	padding: .8125rem 1.4375rem;
	border: 2px solid;
  color: #fff;
  line-height: 1;
  border-radius: 50px;
  text-decoration: none;
  display: inline-block;
  transition: all .3s ease;
}

.Footer_lastNav__at6Kh a {
	display: flex;
	gap: .3rem;
	align-items: baseline;
	font-size: 1.25rem;
	text-decoration: none;
	color: #fff;
}
.footer-top {
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-wrap: wrap;
	margin-bottom: 30px;
}

.footer-logo img {
	max-width: 198px;
}


.Footer_copyright__j4atB {
	grid-template-columns: 1fr auto;
	margin: unset;
	display: grid;
  color: #fff;
  grid-column: span 12;
  align-items: center;
  gap: 1rem;
  margin-bottom: 30px;
}

.Footer_sectorsWrap__UM4Zx {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
}
.Footer_sectorTitle__yEZhb {
	font-size: 1.125rem;
	margin-right: 10px;
	margin-bottom: unset;
	width: auto;
}
.Footer_sectorMenu__GX7QZ {
	margin: unset;
	padding: unset;
	list-style: none;
}
.Footer_sectorItem__0Cx14 {
	font-size: 1rem;
	padding: .625rem 1.4375rem;
	margin: .3125rem .625rem .3125rem 0;
	border: 1px solid hsla(0,0%,100%,.3);
  display: inline-block;
  color: #fff;
  line-height: 1;
  border-radius: 50px;
  text-decoration: none;
}
.footer-links {
	display: flex;
	gap: 50px;
	flex-wrap: wrap;
	justify-content: center;
}

.footer-links a {
	color: var(--white-color);
	text-decoration: none;
	/* font-weight: 500; */
	font-size: 20px;
}


.footer-bottom {
	border-top: 1px solid #fff;
	padding-top: 20px;
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	font-size: 20px;
	color: var(--white-color);
}

.footer-center {
	margin-bottom: 50px;
}

.footer-center h3 {
	max-width: 80%;
	font-size: 4rem;
	margin: 7% auto 50px;
  font-weight: normal;
}

.footer-center a {
	width: 240px;
	border: 1px solid #fff;
	margin: 0 auto !important;
	background-color: #3E006E;
}
.footer-center a:hover{
	border-color: rgb(220, 207, 242);
	 background-color: rgb(220, 207, 242);
	  color: #000;
	}
.KotaverseCta_kotaverseCta__bBpWa {
	padding: 0;
	background-color: #3E006E;
	position: relative;
	max-width: 100vw;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #fff;

  overflow: hidden;
  z-index: 6;
}
.KotaverseCta_text__IMtZr {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	z-index: 2;
}
.Marquee_marquee__ALmrA {
	width: 100%;
	display: flex;
	flex-direction: row;
	transform-origin: bottom left;
}
.KotaverseCta_marquee__PNczk {
	margin: 3.75rem 0;
	display: flex;
	justify-content: center;
	gap: 0;

	width: 100%;
	padding: 0;
}
.KotaverseCta_marquee__PNczk img {
	height: auto;
	flex-shrink: 0;
	width: auto;
	height: 105px;
	margin: 0 20px;
}
.Magnetic_magnetic__LncOy .btn {
	padding-left: 30px;
	padding-right: 30px;
}
.Parallax_containerInner__yaEn0 video {
	width: 100%;
}
.KotaverseCta_marquee__PNczk {
	display: flex;
	white-space: nowrap;
	 animation: tickerForwards 180s linear infinite;
}
@keyframes tickerForwards {
  from {
    transform: translate3d(0%, 0, 0);
  }

  to {
    transform: translate3d(-100%, 0, 0);
  }
}


.KotaverseCta_smallHeading__2lBEA {
	text-transform: uppercase;
	font-size: 1.25rem;
	font-weight: 400;
	letter-spacing: calc(161em / 1000);
	margin: 0;
	color: #fff;
}
#doyounow h2 {
	margin-bottom: 7rem !important;
}

.KotaverseCta_backgroundVideo__FSZyH {
	width: 100%;
	margin: 0 auto;
	height: 100vh;
}
/*****faq********/
.faq-section {
	background-color: #3E006E;
	padding-top: 5rem !important;
	padding-bottom: 5rem !important;
}
.accordion-item {
	background: none !important;
	border: none;
	padding: 10px 0 !important;
	color: #fff;
}
.accordion-header {
	margin-bottom: 0;
	font-size: 1.5rem;
	line-height: inherit;
}
.accordion-button {
	background: none;
	color: #fff;
	font-size: 1.5rem;
	padding: 0 0 0 40px;
}
.accordion-button::after {
	background: url(../images/plus.svg);
	position: absolute;
	left: 0;
	width: 19px;
	top: 10px;
}
.accordion-button:focus {
	z-index: 3;
	outline: 0;
	box-shadow: none;
}
.accordion-button:not(.collapsed) {
	color: #fff;
	background-color: transparent;
	box-shadow: none;
	
}
.accordion-button:not(.collapsed)::after {
	background: url(../images/plus.svg);
	position: absolute;
	left: 0;
	width: 19px;
	rotate: -45deg;
}
.accordion-body {
	padding: 0 40px;
	font-size: 1.5rem;
	line-height: 1.33;
}

/********video*********/
.KotaverseCta_kotaverseCta {
	padding: 12rem 0;
	max-width: 100vw;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #fff;
 
  background: #3E006E;
  margin-bottom: -5rem;
  overflow: hidden;
  z-index: 6;
}
.KotaverseCta_text{
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	z-index: 2;
}
.KotaverseCta_smallHeading{
	text-transform: uppercase;
	font-size: 1.25rem;
	font-weight: 400;
	letter-spacing: calc(161em / 1000);
	margin: 0;
}


/*****************/

.swiper {
	width: 100%;
	height: 600px;
	overflow: visible;
	position: relative;
	padding-right: 50px;
}
.TestimonialsPanel_logo img {
	height: 60px !important;
	width: auto !important;
	max-width: 150px;
	filter: brightness(0);
}
.text-large {
	font-size: 100px;
	line-height: 80px;
	font-weight: normal;
	margin-top: 23%;
}
.TestimonialsPanel_description{
	font-size: 30px;
	margin-bottom: 1.5rem;
	font-weight: 400;
  display: block;
  line-height: 1.2;
  color: #000;
}
.TestimonialsPanel_details {
	display: block;
	margin-top: auto;
}
.TestimonialsPanel_name{
	display: block;
}
.TestimonialsPanel_name a{ color: #000; text-decoration: none;}
    .swiper-slide {
      width: 100%;
      height: 100%;
     border-radius: 0 87px 0 87px;
    }
    .slide-img{ width: 100%;
      height: 100%;}
      .banner-content-projets{position: relative;}

   
.project-img-banner {
	width: 100%;
	height: auto;
}

.d-flex.banner-text {
	
	width: 100%;
	height: 100%;
	display: flex;
	align-content: center;
	align-items: flex-start;
	justify-content: space-between;
	z-index: 99;
	padding: 2.8125rem;
	flex-direction: column;
}
.view-project-button {
	position: absolute;
	left: 5%;
	bottom: 42px;
	border: 1px solid #fff;
	padding-left: 22px;
	padding-right: 19px;
}
.project-logo{text-align: left;}
.project-logo img {
	width: 140px !important;
}
.banner-text h3 {
	font-size: 80px;
	font-weight: bold;
	background: linear-gradient(90deg, #c5b7ff, #f9a7a7);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	color: transparent;
	text-align: left;
	margin-top: 30px;
	font-family: 'Neue Montreal Bold';
  

}
.TestimonialsPanel_logo {
	margin-bottom: 1rem;
}
.TestimonialsPanel_details {
	display: block;
	margin-top: auto;
	font-size: 18px;
	padding-bottom: 15px;
}
.swiper-button-next::after, .swiper-button-prev::after{display: none;}
.swiper-button-next.slider-arrow-next {
	width: 50px;
	height: 50px;
	bottom: 90px !important;
	top: inherit;
	right: 130px;
	border: 2px solid var(--dark-color);
	border-radius: 50%;
	display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  pointer-events: all;
}
.swiper-button-next.slider-arrow-next:before{
	content: "";
  width: 16px;
  height: 16px;
  border-right: 2px solid;
  border-top: 2px solid;
  color: #000;
  transform: translateX(-25%) rotate(45deg);
  transition: all .3s ease;
}
.swiper-button-prev.slider-arrow-prev:before{content: "";
  width: 16px;
  height: 16px;
  border-right: 2px solid;
  border-top: 2px solid;
  color: #000;
  transform: translateX(10%) rotate(-140deg);
  transition: all .3s ease;
}
.swiper-button-prev.slider-arrow-prev {
	width: 50px;
	height: 50px;
	border: 2px solid #000;
	border-radius: 50%;
	position: absolute;
	right: 190px;
	bottom: 90px;
	top: inherit;
	left: inherit;
		display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  pointer-events: all;
}
.swiper-button-next.slider-arrow-next:hover::before {
	transform: translateX(-10%) rotate(45deg);
}
 .swiper-button-prev.slider-arrow-prev:hover::before {
	transform: translateX(-10%) rotate(-140deg);
}
.swiper-button-next.swiper-button-disabled, .swiper-button-prev.swiper-button-disabled {
	opacity: 0;
	cursor: auto;
	pointer-events: none;
}
.desktop-img {
  display: block;
}
.mobile-img {
  display: none;
}
 /* sabhi slides default stack left me */
    .swiper-slide {
      transform: translateX(-60px) scale(0.8);
      opacity: 0.5;
      z-index: 0;
    }

    /* active slide upar dikhne ke liye */
    .swiper-slide-active {
      transform: translateX(0) scale(1);
      opacity: 1;
      z-index: 10;
    }

    /* prev slide thoda visible rahe */
    .swiper-slide-prev {
      transform: translateX(-30px) scale(0.9);
      opacity: 0.7;
      z-index: 5;
    }
/*********new-services**********/

.service-inner-bg {
	background-color: #fff;
	padding: 50px;
	color: var(--dark-color);
	border-radius: 40px;
	
	justify-content: center;
  align-items: center;
}
.stacked-services {
  position: relative;
  width: 100%;
}

.service-inner-bg h5 {
	font-size: 21vh;
	/* line-height: 65px; */
	width: 100%;
	display: inline-block;
	transform: rotate(0deg);
	text-align: left;
	padding: 0 0 30px;
	line-height: 20vh;
 	
}
.extra.tag-list-s-extra {
	padding-right: 30%;
}
.s-media-list{background: #B6EAB6;}
.Paid-ads-list{background-color: #FFD38F;}
.Community-list{background-color: #DCCFF2;}
.service-inner-bg h5 {
	font-size: 6rem;
	/* line-height: 65px; */
	width: 100%;
	display: inline-block;
	transform: rotate(0deg);
	text-align: left;
	padding: 0 0 30px;
	line-height: 5rem;
	
}
.service-video video {
	width: 100%;
	height: 70vh;
	overflow: hidden;
	border-radius: 0 87px 0 87px !important;
	object-fit: cover;
}
.service-video img {
	width: 100%;
	height: 70vh;
	overflow: hidden;
	border-radius: 0 87px 0 87px !important;
	object-fit: cover;
	display: none;
}
.img-mob{display: none;}
/*******project new section*******/
#project-sec {
	background: #3E006E;
	padding: 12rem 0 5.5rem;
}
.Work_text__WI9A4 {
	margin-bottom: 4.5rem;
	flex-direction: row;
	justify-content: space-between;
}
.Work_heading__pbv4g {
	margin: .64ch 0 0;
	width: 50%;
	display: flex;
	flex-direction: row;
	font-size:140px;
	line-height: .9;
	text-transform: uppercase;
	font-weight: 400;
	letter-spacing: calc(-20em / 1000);
	color: #fff;
	position: relative;
	flex-wrap: wrap;
}
.Work_heading__pbv4g .Work_heading__pbv4g {
	width: 100%;
}
.Work_rightText__zx_Y0 {
	width: calc(50% - 1rem);
	display: flex;
  flex-direction: column;
}
.Work_rightText__zx_Y0 h3 {
	font-size: clamp(2.5rem,4.3vw,5rem);
	font-weight: 400;
	line-height: 1.07;
	margin: 0 0 1rem;
}
.FadeInUp_container___uxva {
	width: 100%;
	display: inline-block;
	color: #fff;
}
.Work_rightText__zx_Y0 p{  font-size: 1.25rem;}
.Work_heading__pbv4g.Work_bottom__rzrzH {
	padding-left: 13.5%;
	width: 100%;
	margin: 1rem 0 0;
}
.small-project .work-img img {
	height: 40vh;
}
.small-project .project-repeat h4{margin-top: 0; font-size: 22px;}
.small-project .project-repeat  h4 img {
	width: 52px;
	
}
.small-project .work-list {
	padding: 0 15px;
	margin-bottom: 0;
}
.work-img video{
	height: 80vh;
	width: 100%;
	object-fit: cover;
	border-radius: 40px;
	overflow: hidden;
}
.small-project video {
	height: 40vh;
	width: 100%;
	object-fit: cover;
	border-radius: 40px;
	overflow: hidden;
}
.head-animation * {
	will-change: transform;
}
/*********processnew***************/

.time-line-wrap {
	display: flex;
}
.Timeline_block {
	width: 55vw;
	gap: 4%;
	padding: 2vw 3vw 3vw 3vw;
	margin-right: 3.125rem;
	flex-direction: row;
	align-items: flex-start;
	border-radius: 0 87px 0 87px;
	display: flex;
	flex-shrink: 0;
	background-color: #efefef;
	box-shadow: 0 0 96px 0 rgba(0,0,0,.16);
	max-width: 90%;
	position: relative;
}
.Timeline_block::after {
	content: "";
	display: block;
	overflow: hidden;
	clear: both;
	/* width: 100%; */
	height: 2px;
	position: absolute;
	bottom: -50px;
	background: #fff;
	right: 0;
	left: -53px;
}
.Timeline_block1:after{left: 0px;}
.week-timeline {
	position: absolute;
	bottom: -63px;
	z-index: 9999;
	background: #3e006e;
	width: 100px;
	border-radius: 4px;
	padding: 4px 9px;
	border: 1px solid #fff;
	margin-left: -50px;
	left: 50%;
	color: #fff;
}
.Timeline_image{
	width: 26%;
	aspect-ratio: 1/1;
	flex-shrink: 0;
	padding: 0;
  margin: 0;
}

.step-icon {
	width: 190px;
  height: 190px;
  border-radius: 0 25px 0 25px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 30px;
  position: relative;
 
}
.build-icon {
	background: #B6EAB6;
}
.step-icon img {
	width: 100px;
	height: auto;
}
.Timeline_blockHeading {
	display: flex;
	align-items: center;
	gap: 1rem;
	font-size: 3rem;
	font-weight: 300;
	letter-spacing: calc(-10em / 1000);
	line-height: 1.2;
}
.process-content {
	text-align: left;
}
.Timeline_blockText{
	font-size: 1.25rem;
}
.Timeline_workInvolved p {
	font-size: 20px;
	line-height: 1.5;
	margin-bottom: 0;
}
.Timeline_workInvolvedList {
	gap: .625rem;
	display:flex ;
	flex-wrap: wrap;
}
.Timeline_workInvolvedList span {
	font-size: 1rem;
	line-height: 1;
  border-radius: 7px;
  background-color: #000;
  color: #fff;
  padding: .5em .6em .6em;
  transform: translateY(.3em);
}
.d-block-mobile{display: none;}

.start-work-btn {
	position: fixed;
	bottom: 0;
	left: 0;
	opacity: 0;
	z-index: 9999;
	width: 100%;
	/* pointer-events: none; */
	padding: 1.25rem 1.625rem;
	display: flex;
	justify-content: flex-end;
	
}
.start-work-btn a{min-width: 204px;}

.dark-body .start-work-btn .btn-primary {
	background: var(--white-color);
	border-color: var(--white-color);
	color: #000;
	
}
.dark-body .start-work-btn .btn-primary:hover {
	background: rgb(220, 207, 242);
	border-color: rgb(220, 207, 242);
}
.dark-body .start-work-btn  .btn-primary img {
	filter: brightness(1) invert(1);
}
.mnu-work-m{display: none;}
@media (min-width: 1400px) {
  .container, .container-lg, .container-md, .container-sm, .container-xl, .container-xxl {
    max-width: 1300px;
  }
}
@media (max-width: 398px) {
  body .Platforms-box {
    padding: 13px 15px !important;
  }
}