* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
:root {
  --primary-font: "Manrope", sans-serif;
  --secondary-font: "Bricolage Grotesque", sans-serif;
  --primary-color: #0f1112;
  --secondary-color: #74bf44;
  --heading-color: #03200C;
  --white-color: #fff;
  --background: #fbfef9;
  --dark-bg: #000000;
  --font-size: 15px;
}
body {
  font-family: var(--primary-font);
  font-size: var(--font-size);
  font-weight: 400;
  line-height: 1.6;
  color: var(--primary-color);
  background-color: var(--background);
}

h1,
h2,
h3,
h4,
h5,
h6{
	margin :0;
	font-family: var(--secondary-font);
	font-weight: 700;
	line-height: 1.2em;
	color: var(--heading-color);
}
a{
    text-decoration: none;
    color: var(--primary-color);
}
.padding50 {
	padding: 50px 0;
}
.padding70 {
	padding: 70px 0;
}
.padding100 {
	padding: 100px 0;
}
/*======================
	Button CSS
========================*/

.button {
	pointer-events: auto;
	cursor: pointer;
	background: var(--secondary-color);
	border: none;
	padding: 10px 57px 10px 20px;
	margin: 0;
	font-weight: 500;
	position: relative;
	display: inline-block;
}

.button::before,
.button::after {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}
.zit-permalink .button:first-child {
	margin-right: 10px;
}
.zit-btn {
	overflow: hidden;
	border-radius: 50px;
	color: var(--white-color);
	width: auto;
	text-align: left;
}

.zit-btn span {
	display: inline-block;
	position: relative;
	z-index: 10;
	color: var(--white-color);
}

.zit-btn:hover span {
	animation: MoveScaleUpInitial 0.3s forwards, MoveScaleUpEnd 0.3s forwards 0.3s;
}

@keyframes MoveScaleUpInitial {
	to {
		transform: translate3d(0,-105%,0) scale3d(1,2,1);
		opacity: 0;
	}
}

@keyframes MoveScaleUpEnd {
	from {
		transform: translate3d(0,100%,0) scale3d(1,2,1);
		opacity: 0;
	}
	to {
		transform: translate3d(0,0,0);
		opacity: 1;
	}
}

.zit-btn::before {
	content: '';
	background: var(--primary-color);
	width: 120%;
	height: 0;
	padding-bottom: 120%;
	top: -110%;
	left: -10%;
	border-radius: 50%;
	transform: translate3d(0,68%,0) scale3d(0,0,0);
}

.zit-btn:hover::before {
	transform: translate3d(0,0,0) scale3d(1,1,1);
	transition: transform 0.4s cubic-bezier(0.1, 0, 0.3, 1);
}

.zit-btn::after {
	content: '';
	background: var(--primary-color);
	transform: translate3d(0,-100%,0);
	transition: transform 0.4s cubic-bezier(0.1, 0, 0.3, 1);
}

.zit-btn:hover::after {
	transform: translate3d(0,0,0);
	transition-duration: 0.05s;
	transition-delay: 0.4s;
	transition-timing-function: linear;
}

.zit-btn span i {
	position: absolute;
	right: -51px;
	top: -5px;
	background: var(--primary-color);
	width: 35px;
	height: 35px;
	border-radius: 50%;
	line-height: 2.2;
}
.button.zit-btn.secondary-btn {
	background: transparent;
	border: 1px solid rgba(255,255,255,0.2);
	padding-left: 45px;
	padding-right: 20px;
}
.secondary-btn span i {
	background: var(--secondary-color);
	width: 34px;
	height: 34px;
	left: -39px;
}
/*========================
	Rotate Circle
==========================*/
.portfolio-circle {
	position: absolute;
	z-index: 9999;
	left: -50px;
	top: -50px;
}
.rotate-circle-wrapper {
	position: relative;
	width: 150px;
	height: 150px;
}
.rotate-circle {
	width: 100%;
	height: 100%;
	border-radius: 50%;
	position: absolute;
	animation: rotate 15s linear infinite;
	background: var(--secondary-color);
}
.circle-text {
  width: 100%;
  height: 100%;
  position: absolute;
  text-align: center;
  transform-origin: center;
  color: white;
  font-weight: bold;
}
.circle-text span {
	position: absolute;
	left: 50%;
	transform-origin: 0 75px;
	font-weight: 700;
}
.center-text {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	font-size: 32px;
	font-weight: bold;
	color: #000;
	background: #eaf9df;
	width: 60%;
	height: 60%;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	border: 10px solid var(--background);
}

/* animation */
@keyframes rotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
/*=========== Dot circle ==============*/
.dots-element {
	position: absolute;
	top: -103px;
	left: -10.5%;
	-webkit-animation: movebounce 4s ease-in-out infinite;
	animation: movebounce 4s ease-in-out infinite;
	z-index: -1;
}
@keyframes movebounce {
  0% {
    -webkit-transform: translateY(0px);
    transform: translateY(0px);
  }
  50% {
    -webkit-transform: translateY(20px);
    transform: translateY(20px);
  }
  100% {
    -webkit-transform: translateY(0px);
    transform: translateY(0px);
  }
}

/*=========== Circle Background ========*/
.circle-bg {
  position:absolute;
  top:50%;
  left:50%;
  transform:translate(-50%,-50%);
  width:800px;
  height:800px;
  background-color:#09c82c0d;
  border-radius:9999px;
  filter:blur(48px)
}
/*=======================
	Breadcrumb
=========================*/
.breadcrumb-area {
	background-image: url('../img/brd-bg.jpg');
	background-color: #090d2d;
	background-size: cover;
}
.hero-content-section {
	padding-right: 63px;
}
.zit-tagline h2 {
	font-size: 13px;
	font-weight: 400;
	border: 1px solid var(--secondary-color);
	display: inline-block;
	padding: 6px 11px;
	border-radius: 50px;
	margin-bottom: 15px;
}
.zit-tagline h2 i {
  font-size: 13px;
  color: var(--secondary-color);
}
.zit-title h1 {
	font-size: 30px;
}
.zit-title p {
	font-size: 14px;
}
.hero-content ul {
  display: flex;
  flex-wrap: wrap;
  padding: 0;
}
.hero-content ul li {
	width: 100%;
	list-style: none;
	margin-bottom: 5px;
}
.hero-content ul li i {
  color: var(--secondary-color);
  margin-right: 8px;
}

.breadcrumb-featured {
	min-height: 100%;
	position: relative;
	overflow: hidden;
}
/*=====================
*	Swiper slider
======================*/
.zitSwiper {
  max-width: 100%;
  overflow: visible;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.zitSwiper .swiper-slide::after {
  position: absolute;
  content: "";
  inset: 0;
  width: 100%;
  aspect-ratio: 1/1;
}
.zitSwiper .swiper-slide-active::after {
  background: none;
}
.zitSwiper .swiper-slide img {
	display: block;
	width: 100%;
	box-shadow: 0px 3px 17px rgb(0 0 0 / 25%);
	aspect-ratio: 1/1;
	height: 300px;
	transition: all 0.4s ease;
}
/*=====================
*	Portfolio slider
======================*/
#zoomitPortfolio {
    max-width: 100%;
    margin: 0 auto;
}
#zoomitPortfolio .carousel-inner {
	border-radius: 20px;
	overflow: hidden;
}
#zoomitPortfolio .carousel-indicators {
  	position: static;
	margin-right: 50px;
  	margin-left: 50px;
}
.carousel-indicators button.thumbnail {
  	width: 250px;
}
#zoomitPortfolio .carousel-indicators button.thumbnail img {
	border-radius: 5px;
}
#zoomitPortfolio .carousel-indicators button.thumbnail:not(.active) {
  	opacity: 0.7;
}

/*=====================
*	Our Client
======================*/
.zit-client-area {
	background: #f8fafc;
}
.zit-clientlist {
	overflow: hidden;
	position: relative;
}
.zit-clientlist::after {
  position: absolute;
  content: '';
  width: 100px;
  height: 100%;
  background: linear-gradient(to left, rgb(248,250,252) 0%,rgba(248,250,252,0.51) 70%,rgba(248,250,252,0) 100%);
  z-index: 999;
  right: 0;
  top: 0;
}
.zit-clientlist::before {
  position: absolute;
  content: '';
  width: 100px;
  height: 100%;
  background: linear-gradient(to right, rgb(248,250,252) 0%,rgba(248,250,252,0.51) 70%,rgba(248,250,252,0) 100%);
  z-index: 999;
  left: 0;
  top: 0;
}
.zit-clientlist ul {
  display: flex;
  scrollbar-width: none;
  animation: marqueeLeft 20s linear infinite;
  list-style: none;
  position: relative;
}
.zit-clientlist ul li {
  padding: 10px;
  border: 1px solid #EAECF0;
  border-radius: 12px;
  margin-right: 20px;
  display: flex;
  font-size: 16px;
  color: #333;
  cursor: pointer;
  background: var(--white-color);
}
@keyframes marqueeLeft {
  0% { left: 0; }
  100% { left: -100%; }
}
/*=====================
*	Quotation area
======================*/
.quotation-form-area {
	background-image: url('../img/bg.jpg');
	background-color: #090d2d;
	background-size: cover;
}
.quotation-form-area .zit-tagline h2 {
	border: 1px solid #8f2689;
}
.quotation-form-area .zit-tagline h2 i, .quotation-form-area .hero-content ul li i {
	color: #8f2689;
}
.quotation-form-area .button, .quotation-form-area .secondary-btn span i {
	background: #8f2689;
}
.quote-form {
	border-radius: 20px;
	overflow: hidden;
}
.quote-head {
	padding: 20px;
	text-align: center;
	background: #650260;
}
.quote-head h2 {
	color: var(--white-color);
	font-size: 26px;
	font-weight: 500;
}
.quote-body {
	background: var(--white-color);
	padding: 40px;
}
.quote-body .form-control::placeholder {
	opacity: 0.6;
}
.quote-body input, .quote-body textarea, .quote-body select {
	border: 2px solid #5E9B2F38;
	font-size: 16px;
	padding: 12px 18px;
	margin-bottom: 10px;
}
.quote-body .form-control:focus {
	border-color: var(--secondary-color);
	outline: 0;
	box-shadow: unset;
}

/*=====================
*	Service area
======================*/
.service-category .panel{
    margin-bottom: 25px;
    min-height: 200px;
	border-radius: 20px;
	background: var(--white-color);
	box-shadow: 0px 0px 15px #ddd;
	background: #fefbfe;
	overflow: hidden;
	position: relative;
	z-index: 1;
}
.service-category .panel h1{
	font-size: 22px;
	padding: 15px;
	text-align: center;
	color: var(--white-color);
	background: #74bf46;
}
.service-category .panel p{
	margin-bottom: 0;
}
.zit-service-content{
	padding: 30px;
}
.pin-spacer:nth-child(1) .panel{
	background: #fefbfe;
}
.pin-spacer:nth-child(2) .panel{
	background: #f6fcf3;
}
.pin-spacer:nth-child(3) .panel{
	background: #fcf9f6;
}
.pin-spacer:nth-child(4) .panel{
	background: #f3f9fc;
}
.pin-spacer:nth-child(5) .panel{
	background: #f3f3fc;
}
.pin-spacer:nth-child(6) .panel{
	background: #fefbfe;
}
.pin-spacer:nth-child(7) .panel{
	background: #f6fcf3;
}
.pin-spacer:nth-child(8) .panel{
	background: #fcf9f6;
}
.pin-spacer:nth-child(9) .panel{
	background: #f3f9fc;
}
.pin-spacer:nth-child(10) .panel{
	background: #f3f3fc;
}
.pin-spacer:nth-child(11) .panel{
	background: #fefbfe;
}
.pin-spacer:nth-child(12) .panel{
	background: #f6fcf3;
}
.pin-spacer:nth-child(13) .panel{
	background: #fcf9f6;
}
.pin-spacer:nth-child(14) .panel{
	background: #f3f9fc;
}
.pin-spacer:nth-child(15) .panel{
	background: #f3f3fc;
}

.pin-spacer:nth-child(1) .panel h1{
	background: #8f2689;
}
.pin-spacer:nth-child(2) .panel h1{
	background: #74bf46;
}
.pin-spacer:nth-child(3) .panel h1{
	background: #ff7901;
}
.pin-spacer:nth-child(4) .panel h1{
	background: #37b9eb;
}
.pin-spacer:nth-child(5) .panel h1{
	background: #3a3890;
}
.pin-spacer:nth-child(6) .panel h1{
	background: #8f2689;
}
.pin-spacer:nth-child(7) .panel h1{
	background: #74bf46;
}
.pin-spacer:nth-child(8) .panel h1{
	background: #ff7901;
}
.pin-spacer:nth-child(9) .panel h1{
	background: #37b9eb;
}
.pin-spacer:nth-child(10) .panel h1{
	background: #3a3890;
}
.pin-spacer:nth-child(11) .panel h1{
	background: #8f2689;
}
.pin-spacer:nth-child(12) .panel h1{
	background: #74bf46;
}
.pin-spacer:nth-child(13) .panel h1{
	background: #ff7901;
}
.pin-spacer:nth-child(14) .panel h1{
	background: #37b9eb;
}
.pin-spacer:nth-child(15) .panel h1{
	background: #3a3890;
}
/*======================
   Tech Stack
=======================*/
.techstack-marquee-ticker {
  background: var(--secondary-color);
  color: var(--white-color);
  padding: 15px 0;
  font-size: 30px;
  font-weight: 700;
  position: relative;
  z-index: 10;
}
.scrolling-wrap {
	display: flex;
	gap: 30px;
	overflow: hidden;
}
.scrolling-text {
	position: relative;
	animation: marqueeLeft 20s linear infinite;
	display: flex;
	gap: 30px;
	flex-shrink: 0;
}
@keyframes marqueeLeft {
  0% {
    left: 0;
  }
  100% {
    left: -100%;
  }
}
.scrolling-text span i {
	margin-right: 20px;
}
/*==========================
	Pricing Table
==============================*/
.zit-pricing-area {
	background: var(--background);
	position: relative;
	z-index: 10;
}
.pricing-single {
	background: var(--white-color);
	padding: 15px;
	border-radius: 25px;
	margin-bottom: 24px;
	border: 1px solid #F4EAF4;
	box-shadow: 0px 0px 8px #ddd;
}
.pricing-header {
	background: #eee;
	padding: 20px;
	border-radius: 20px;
	position: relative;
}
.pricing-header h4 {
	font-size: 22px;
}
.p-icon {
	position: absolute;
	right: 21px;
}
.p-icon i {
	font-size: 31px;
}
.pricing-header .discount {
  margin: 20px 0;
}
.pricing-header .discount strong {
  padding: 3px 9px;
  border-radius: 50px;
  margin-left: 10px;
}
.pricing-header button {
	width: 100%;
	padding: 13px;
	border-radius: 10px;
	color: var(--white-color);
	opacity: 0.9;
}
.pricing-header .tagline {
	font-size: 13px;
	margin-top: 17px;
	line-height: 17px;
}
.pricing-header button:hover {
	color: var(--white-color);
	opacity: 1;
}
.pricing-feature {
	min-height: 264px;
}
.pricing-feature h5 {
	margin-top: 17px;
	margin-left: 20px;
	font-size: 17px;
	font-weight: 600;
	color: #444;
}
.pricing-feature ul {
	padding: 10px 20px;
	margin: 0;
}
.pricing-feature ul li {
	position: relative;
	margin: 7px 0;
	font-weight: 500;
	color: #111;
	margin-left: 30px;
	list-style: none;
}
.pricing-feature ul li::before {
	position: absolute;
	content: "\f08b";
	left: -25px;
	top: -2px;
	font-size: 16px;
	font-weight: 700;
	color: #222;
	font-family: 'Font Awesome 7 Free';
}
.color1 .pricing-header{
	background: #DCEFD1;
	color: #467529;
}
.color1 .pricing-header button {
	background: #72BF44;
}
.color1 h4, .color1 h1 {
	color: #467529;
}
.color1 .discount strong{
  border: 1px solid #72BF44;
}
.color2 .pricing-header{
	background: #CECEE6;
	color: #23225D;
}
.color2 .pricing-header button {
	background: #393898;
}
.color2 h4, .color2 h1 {
	color: #23225D;
}
.color2 .discount strong{
  border: 1px solid #393898;
}
.color3 .pricing-header{
	background: #CDEFFB;
	color: #1E7391;
}
.color3 .pricing-header button {
	background: #31BCEE;
}
.color3 h4, .color3 h1 {
	color: #1E7391;
}
.color3 .discount strong{
  border: 1px solid #31BCEE;
}
.color4 .pricing-header {
	background: #F4EBCA;
	color: #886B07;
}
.color4 .pricing-header button {
	background: #FFC80A;
}
.color4 h4, .color4 h1 {
	color: #886B07;
}
.color4 .discount strong{
  border: 1px solid #FFC80A;
}
.color5 .pricing-header {
	background: #F7CFF6;
	color: #790676;
}
.color5 .pricing-header button {
	background: #92278F;
}
.color5 h4, .color5 h1 {
	color: #790676;
}
.color5 .discount strong{
  border: 1px solid #92278F;
}
.color6 .pricing-header{
	background: #F2E1F9;
	color: #990BCC;
}
.color6 .pricing-header button {
	background: #990BCC;
}
.color6 h4, .color6 h1 {
	color: #820CAC;
}
.color6 .discount strong{
  border: 1px solid #990BCC;
}

/**=======================
 	Process Accordion
==========================*/
.zit-process-area {
	padding-bottom: 300px;
}
.accordion-custom {
  height: 240px;
}
.acc-card {
	display: flex;
	border-radius: 20px;
	overflow: hidden;
	background: #fff;
	cursor: pointer;
	flex: 0.8;
	transition: all 0.5s ease;
	box-shadow: 0px 0px 8px #ddd;
}
.acc-card.active {
  flex: 4;
}
.acc-mini {
	width: 110px;
	background: linear-gradient(180deg, #611481, #161549);
	color: #fff;
	padding: 20px 10px;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}
.acc-mini .icon {
  width: 55px;
  height: 55px;
  background: rgba(255,255,255,0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: auto;
}
.acc-mini h1 {
	font-size: 50px;
	color: #fff;
}
.acc-content {
  padding: 30px;
  opacity: 0;
  transform: translateX(20px);
  transition: all 0.4s ease;
}
.acc-card.active .acc-content {
  opacity: 1;
  transform: translateX(0);
}
.acc-card:not(.active) {
	background: linear-gradient(180deg, #611481, #161549);
}
.acc-content {
  padding: 30px;
  opacity: 0;
  width: 0;
  overflow: hidden;
  transform: translateX(20px);
  transition: all 0.4s ease;
}
.acc-card.active .acc-content {
  opacity: 1;
  width: auto;
  transform: translateX(0);
}
.acc-card {
  transition: flex 0.5s cubic-bezier(0.25, 1, 0.5, 1);
}
.acc-content ul li {
  position: relative;
  margin: 7px 0;
  margin-left: 0px;
  font-weight: 500;
  color: #111;
  margin-left: 30px;
  list-style: none;
}
.acc-content ul {
  padding: 0;
}
.acc-content ul li:before {
  position: absolute;
  content: "\f08b";
  left: -25px;
  top: -2px;
  font-size: 16px;
  font-weight: 700;
  color: #222;
  font-family: 'Font Awesome 7 Free';
}
@media (max-width: 768px) {
	.accordion-custom {
		flex-direction: column;
		height: auto;
	}
	.acc-card {
		flex: 1 !important;
		width: 100%;
		flex-direction: row;
	}
	.acc-content {
		opacity: 1 !important;
		width: 100% !important;
		transform: none !important;
		background: #fff;
	}
	.acc-mini {
		width: 80px;
		justify-content: unset;
	}
	.acc-mini .icon {
		margin: 0;
	}
} 
.banner-element {
  position: absolute;
  bottom: 0%;
  right: 0%;
  z-index: -1;
}
/*========================
	CTA area
===========================*/
.zit-cta-area {
	background-image: url('../img/bg2.jpg');
	background-color: #090d2d;
	background-size: cover;
	background-position: top center;
	-webkit-mask-image: url(../img/cta-shape2.png);
	mask-image: url(../img/cta-shape2.png);
	-webkit-mask-repeat: no-repeat;
	mask-repeat: no-repeat;
	-webkit-mask-position: center;
	mask-position: center;
	-webkit-mask-size: contain;
	mask-size: contain;
	margin-top: -211px;
}
/*===================================
	Content Box
=====================================*/
.content-box {
	margin-bottom: 25px;
}
.content-box ul {
  padding: 0;
}
.content-box ul li {
	position: relative;
	margin: 7px 0;
	margin-left: 0px;
	font-weight: 500;
	margin-left: 31px;
	list-style: none;
	font-size: 14px;
}
.content-box ul li::before {
	position: absolute;
	content: "\f00c";
	left: -31px;
	top: 3px;
	font-size: 9px;
	font-weight: 700;
	color: var(--secondary-color);
	font-family: 'Font Awesome 7 Free';
	width: 20px;
	height: 20px;
	background: #e6f7db;
	border-radius: 50%;
	padding-left: 6px;
	padding-top: 3px;
}
.content-box .card {
	border: 1px solid rgba(55, 193, 50, 0.18);
	min-height: 324px;
}
.col-xxl-6.content-box .card {
	min-height: 255px;
}
.content-box .card-header {
	margin: 18px;
	margin-bottom: 0;
	border-radius: 10px !important;
	overflow: hidden;
	background: var(--background);
	padding: 13px 10px;
	border-left: 4px solid var(--secondary-color);
	border-right: 4px solid var(--secondary-color);
	box-shadow: 0px 0px 5px #d3eec2;
	border-bottom: 0px solid;
}
.content-box .card-header h3 {
	font-size: 18px;
	color: #36611a;
	text-align: center;
}
/**=============================
	FAQ 
===============================*/
.faq-area {
	border-top: 1px solid rgba(116,191,68,0.3);
}
.faq-thumb img {
	-webkit-mask-image: url(../img/vertical-shape.png);
	mask-image: url(../img/vertical-shape.png);
	-webkit-mask-repeat: no-repeat;
	mask-repeat: no-repeat;
	-webkit-mask-position: center;
	mask-position: top;
	-webkit-mask-size: contain;
	mask-size: contain;
}
.faq-contact {
  position: absolute;
  right: 37px;
  background: var(--primary-color);
  width: 58%;
  border-radius: 20px;
  margin-top: -111px;
  text-align: center;
  overflow: hidden;
  transition: all 0.4s;
}
.faq-contact:hover {
	transform: translateY(-5px) scale(1.01);
}
.faq-contact h2 {
  color: var(--background);
  font-size: 20px;
  padding-top: 14px;
  padding-bottom: 16px;
}
.faq-contact a {
  width: 100%;
  display: block;
  background: var(--secondary-color);
  color: #fff;
  font-size: 20px;
  padding: 10px;
  font-weight: 700;
}
#faqAccordion .accordion-button {
	padding: 5px 18px;
	color: var(--background) !important;
	background-color: var(--secondary-color) !important;
}
#faqAccordion .accordion-button:focus {
	box-shadow: unset;
}
#faqAccordion .accordion-button.collapsed{
	background-color: #e6f9e9 !important;
	color: #054411 !important;
}
#faqAccordion .accordion-item {
	background-color: #e6f9e9;
	border: 1px solid #9ce3aa;
	margin-bottom: 10px;
	border-radius: 8px;
	overflow: hidden;
}
#faqAccordion .accordion-body {
	font-size: 14px;
	background: var(--background);
}
.loadMoreContent {
	display: none;
}