:root {
	--background-color: #fff;
	--hover-color: #03a9f5;
}

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	outline: 0;
}

a {
	text-decoration: none;
}

ul,
ol {
	list-style-type: none;
}

body {
	overflow-x: hidden;
	overflow-y: scroll !important;
	font-family: "Poppins", sans-serif;
	overscroll-behavior: none;
}
#smooth-content {
	overflow: visible;
	width: 100%;
	/* set a height because the contents are position: absolute, thus natively there's no height */
	background-image: linear-gradient(
			rgba(255, 255, 255, 0.07) 2px,
			transparent 2px
		),
		linear-gradient(90deg, rgba(255, 255, 255, 0.07) 2px, transparent 2px),
		linear-gradient(rgba(255, 255, 255, 0.06) 1px, transparent 1px),
		linear-gradient(90deg, rgba(255, 255, 255, 0.06) 1px, transparent 1px);
	background-size: 100px 100px, 100px 100px, 20px 20px, 20px 20px;
	background-position: -2px -2px, -2px -2px, -1px -1px, -1px -1px;
}

i.fas.fa-angle-down::before {
	display: none !important;
}

/* #scroll-container {
overflow-y: auto !important;
} */

.viewport {
	overflow: hidden;
	position: fixed;
	height: 100%;
	width: 100%;
	top: 57px;
	left: 0;
	right: 0;
	bottom: 0;
}

.container {
	width: 1140px;
	margin: 0 auto;
}

.flexhead {
	display: flex;
	flex-wrap: wrap;
	justify-content: start;
	align-items: center;
}

.flexheadmain {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: center;
}

nav {
	background: var(--background-color);
	/* box-shadow: 0px 5px 15px 0px rgba(212, 201, 201, 0.75); */
	border-bottom: 1px solid #ddd;
}

.logo a {
	font-size: 20px;
	font-weight: 700;
	color: #ea3324;
	text-transform: uppercase;
}

/* normal menu css */

.main_menu > ul > li {
	display: inline-block;
	position: relative;
	margin: 0 -2px;
}

.main_menu ul li {
	position: relative;
}

.main_menu ul li a {
	font-size: 14px;
	color: #000;
	padding: 15px 15px;
	display: block;
	font-family: Graphik, ui-sans-serif, system-ui, -apple-system,
		BlinkMacSystemFont, Segoe UI, Roboto, Helvetica Neue, Arial, Noto Sans,
		sans-serif, Apple Color Emoji, Segoe UI Emoji, Segoe UI Symbol,
		Noto Color Emoji;
	font-weight: 500;
}

.main_menu ul li .active,
.main_menu ul li:hover > a {
	/* color: var(--hover-color); */
	color: #ff0000;
	font-weight: 500;
}

/* Normal Dropdown menu */
.main_menu ul li ul {
	width: 200px;
	background: #fff;
	padding: 0;
	transition: 0.5s;
	box-shadow: 0px 5px 15px 0px rgba(212, 201, 201, 0.75);
}

.main_menu ul li ul li a {
	padding: 6px 25px;
	font-size: 13px;
}

.main_menu ul li ul li a i {
	float: right;
}

.main_menu ul li ul li ul {
	left: 100%;
	top: 0;
}

/* mega menu css */
.mega_menu_dropdown {
	position: static !important;
}

.mega_menu {
	left: 0;
	right: 0;
	background: #fff;
	display: flex;
	flex-wrap: wrap;
	transition: 0.5s;
	/* box-shadow: 0px 5px 15px 0px rgba(212, 201, 201, 0.75); */
}

.mega_menu_item {
	width: 20%;
	padding: 15px 15px;
}

.main_menu ul li .mega_menu_item a {
	padding: 0px 0 10px 0px;
}

.main_menu ul li .mega_menu_item a:hover {
	/* color: var(--hover-color); */
	color: #ff0000;
}

.mega_menu_item h3 {
	margin-bottom: 15px;
}

.mega_menu_item img {
	width: 100%;
}

/* demo_2 css */
.mega_menu_demo_2 .mega_menu {
	left: 50%;
	transform: translateX(-50%);
	width: 100%;
}

.mobile_btn {
	display: none;
}

/* responsive css */
@media (min-width: 992px) and (max-width: 1199.98px) {
	.container {
		width: 960px;
	}

	.mega_menu_demo_2 .mega_menu {
		width: 940px;
	}

	.main_menu ul li ul {
		width: 150px;
	}
}

@media (min-width: 768px) and (max-width: 991.98px) {
	.container {
		width: 720px;
	}

	.pagetitle h2 {
		width: 100% !important;
	}

	.mega_menu_demo_2 .mega_menu {
		width: 700px;
	}

	.main_menu ul li a {
		font-size: 15px;
		padding: 20px 16px;
	}

	.main_menu ul li ul {
		width: 150px;
	}
}

@media (min-width: 768px) {
	.main_menu ul li ul {
		visibility: hidden;
		opacity: 0;
		position: absolute;
		margin-top: 50px;
	}

	.main_menu ul li .mega_menu {
		visibility: hidden;
		opacity: 0;
		position: absolute;
		margin-top: 50px;
	}

	.main_menu ul li:hover > ul {
		visibility: visible;
		opacity: 1;
		margin-top: 0px;
		z-index: 99;
	}

	.main_menu ul li:hover > .mega_menu {
		visibility: visible;
		opacity: 1;
		margin-top: 0;
		z-index: 99;
	}
}

@media (max-width: 767.98px) {
	.mega_menu_demo_2 .mega_menu,
	.container {
		width: 100%;
	}

	.pagetitle h2 {
		width: 100% !important;
	}

	nav {
		padding: 15px;
	}

	.mobile_btn {
		cursor: pointer;
		display: block;
		position: fixed;
		z-index: 99999;
		bottom: 15px;
		left: 11px;
	}

	#top-nav .dropdown {
		width: 100%;
		/* background: aliceblue; */
	}

	#top-nav ul li a.newmananq {
		display: flex !important;
		justify-content: space-between !important;
	}

	.container-fluid.mega_menu_itemAlligns {
		padding: 0% !important;
	}

	ul.dropdown-menu {
		position: relative !important;
		min-width: auto !important;
	}

	.mega_menu_item {
		width: auto;
	}

	.dextopnav {
		display: none;
	}

	.mainheaders {
		height: 4rem !important;
	}

	.main_menu {
		display: none;
		width: 100%;
	}

	.main_menu ul li {
		display: block;
	}

	.main_menu ul li a i {
		float: right;
	}

	.main_menu ul li a {
		border-bottom: 1px solid #ddd;
	}

	.main_menu ul li ul {
		width: 100%;
	}

	.main_menu ul li ul li ul {
		left: 0;
		top: auto;
	}

	.mega_menu .mega_menu_item {
		width: 50%;
	}

	.main_menu ul li ul {
		display: none;
		transition: none;
	}

	.main_menu ul li .mega_menu {
		display: none;
		transition: none;
	}

	.mega_menu_demo_2 .mega_menu {
		transform: translateX(0);
	}
}

@media (max-width: 575.98px) {
	.mega_menu .mega_menu_item {
		width: 100%;
	}
}

/* Brijesh css */

.rightnav {
	display: flex;
	align-items: center;
	gap: 18px;
	font-size: 12px;
	color: #000;
}

.globlogin a {
	color: #f0483e;
}

.offcanvas-top {
	top: 0;
	right: 0;
	z-index: 9999;
	left: 0;
	height: 12vh;
}

.offcanvas-header input {
	max-width: 100%;
	margin: auto;
	height: initial;
	padding: 11px 40px 11px 11px;
	line-height: initial;
	font-size: 15px;
	border: 0;
	text-indent: 0;
	width: 100%;
	font-family: var(--zf-primary-regular);
}

.offcanvas-header {
	position: relative;
	width: 50%;
	margin: auto;
}

.offcanvas-header i {
	position: absolute;
	right: 0;
}

/* brijesh/ */

.footerblack {
	background: #333;
	padding: 2rem 0;
}

.footernav {
	display: flex;
	justify-content: center;
	align-items: center;
	flex-wrap: wrap;
}

.colflex {
	display: flex;
	justify-content: space-between;
	flex-direction: column;
	height: 100%;
}

.footernav p {
	margin-bottom: 2px;
}

.footernav p a {
	border-right: 1px solid #fff;
	padding: 0 10px;
	color: #fff;
}

.footernav li {
	text-decoration: none;
}

.footerthum {
	display: flex;
	gap: 15px;
	flex-wrap: wrap;
}

.footerthum img {
	height: 35px;
}

.globsearchfooter .input-group {
	margin: 30px auto;
	position: relative;
	max-width: 900px;
	width: 58%;
}

.globsearchfooter {
	background-color: #0328d2;
	padding: 1px 0;
	text-align: center;
	color: #fff;
	font-size: 10px;
	position: relative;
}

.footercopyright {
	padding: 20px 0;
}

.maillanguagebox {
	display: flex;
	justify-content: end;
	gap: 16px;
	font-size: 11px;
	padding: 12px 0px;
}

.socil-links p {
	color: #fff;
	font-size: 18px;
	margin-bottom: 2px;
}

.socil-icon {
	display: flex;
	gap: 15px;
}

.socil-icon a {
	color: #fff;
	font-size: 18px;
}

.footerright {
	display: flex;
	color: #fff;
	gap: 14px;
}

.footerrightbox {
	background-color: #0051cb;
	padding: 12px 12px 6px;
	height: 14rem;
}

p.footheadfont {
	margin-bottom: 4px;
	font-size: 12px;
}

p.footperafont {
	font-size: 8px;
	margin: 0%;
}

.footerinbox {
	border: 1px solid #fff;
	padding: 12px 12px 6px;
	height: 6.5rem;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}

.colcont {
	display: flex;
	flex-direction: column;
}

.nexticon i {
	font-size: 12px;
	color: #fff;
}

input::placeholder {
	font-size: 10px;
}

.languaggw ul li ul {
	margin: auto auto auto -7rem;
}

.herobanner {
	padding: 0 0 0 0;
	/* padding: 6.3rem 0 0 0; */
	background-color: #005adf;
	height: 100vh;
	position: relative;
}

#banner img {
	width: 85%;
	aspect-ratio: 4/3;
	object-fit: contain;
}

.herobanner h1 {
	font-weight: 900;
	color: #fff;
}

.herobanner p.lead {
	color: #fff;
	font-weight: 200;
	font-size: 18px;
}

.herobanner p {
	color: #ffec0d;
	font-weight: 400;
	font-size: 20px;
}

.herobanner .inrh1 {
	-webkit-text-stroke: 1px #fff;
	color: #0056d4;
	display: block;
}

.cursor {
	display: block;
	width: 50px;
	text-align: center;
	height: 50px;
	margin: 12px 0px 0 25px;
	background-color: #ee584c;
	font-size: 36px;
	font-weight: 700;
	color: #fff;
	padding: 0px 2px 0 0px;
	position: absolute;
	transform: translate(-50%);
	border-radius: 50%;
	pointer-events: none;
	z-index: 999;
	transition: all 0.2s ease-out;
	animation: moveCursor1 0.5s infinite alternate;
}

.expand {
	background: transparent;
	animation: moveCursor2 0.5s forwards;
	border: 1px solid #000;
}

@keyframes moveCursor1 {
	from {
		transform: scale(1);
	}

	to {
		transform: scale(0.8);
	}
}

@keyframes moveCursor2 {
	0% {
		transform: scale(1);
	}

	50% {
		transform: scale(2);
	}

	100% {
		transform: scale(1);
		opacity: 0;
	}
}

.isccont {
	display: flex;
	align-items: center;
	gap: 18px;
	/* justify-content: center; */
}

.ioscertificate {
	display: flex;
	justify-content: space-between;
	align-items: center;
	background-color: #f0f0f0;
	padding: 35px 60px 55px;
	border-radius: 46px 46px 0 0;
}

.isccont h6 {
	font-size: 16px;
	color: #000;
	margin: 0 0 4px 0;
}

.isccont p {
	font-size: 14px;
	color: #4c4c4c;
	margin: 0%;
}

.bussnesstrust {
	display: flex;
	align-items: center;
	justify-content: space-between;
	background-color: #fff;
	padding: 34px 0px;
	/* border-radius: 0 0 46px 46px; */
}

.bussnesstrust .bussnessthum img {
	height: 46px;
	/* width: 200px; */
	/* aspect-ratio: 2 / 1; */
	object-fit: contain;
}

/* .trustandios {
position: absolute;
bottom: -13rem;
width: 1124px;
margin: 0 auto;
} */
.trustandios {
	position: relative;
	margin-bottom: 5rem;
}

.trustedbussness p {
	border-radius: 20px;
	background-color: #fff;
	box-shadow: 0 0 13px 0 rgba(0, 0, 0, 0.15);
	font-size: 12px;
	font-weight: 500;
	position: absolute;
	color: #000;
	top: 137px;
	left: 0;
	right: 0;
	margin: 0 auto;
	padding: 9px 0;
	width: 250px;
	text-align: center;
	z-index: 111;
}

.innovatesect {
	padding: 0rem 0 0 0;
	background-image: url(../images/catbg.png) !important;
	background-repeat: no-repeat;
	background-position: bottom;
	background-size: contain;
	background-color: #272727;
	position: relative;
}

.inhancing {
	padding: 13rem 0 0 0;
	background-image: url(../images/deploybg.png) !important;
	background-repeat: no-repeat;
	background-position: bottom;
	background-size: contain;
	background-color: #272727;
}

.datadriven {
	background: url(../images/divengraphbg.png);
	background-repeat: no-repeat;
	background-position: bottom;
	background-size: contain;
	background-color: #005adf !important;
}

.inotittle1 {
	font-size: 16px;
	font-weight: 600;
	color: #fff;
	text-align: center;
	margin-bottom: 22px;
}

.inotittle3 {
	font-size: 18px;
	margin: 25px 0 25px 0;
	font-weight: 400;
	text-transform: uppercase;
	color: #fff;
	text-align: center;
}

.inotittle2 {
	margin: 0%;
	text-align: center;
}

.inotittle2 a {
	background-color: #ea3324;
	padding: 8px 26px;
	color: #fff;
	font-size: 14px;
	border-radius: 17px;
	font-weight: 400;
}

h1.inotittle4 {
	color: #fff;
	text-align: center;
	font-size: 3rem;
	font-weight: 800;
	width: 49%;
	margin: auto;
}

.inotittle5 {
	font-size: 15px;
	font-weight: 400;
	color: #fff;
	margin: 25px auto 12px auto;
	width: 49%;
	text-align: center;
}

.inotittle6 {
	margin: 0%;
	text-align: center;
}

.inotittle6 a {
	font-size: 16px;
	font-weight: 400;
	color: #f8cb1e;
}

.casestudybox {
	display: flex;
	align-items: center;
	gap: 20px;
	padding: 35px 40px;
	border-radius: 26px;
	text-align: left;
}

.casestudybox img {
	width: 20%;
}

.boxbg1 {
	border: 2px solid;
	background-color: #d3cff6;
}

.boxbg2 {
	border: 2px solid;
	background-color: #fee1d9;
}

.boxbg3 {
	border: 2px solid;
	background-color: #fbdae6;
}

.boxbg4 {
	border: 2px solid;
	background-color: #d4f2f2;
}

.boxbg1:hover {
	border: 2px solid #503ed6;
}

.boxbg2:hover {
	border: 2px solid #fa5431;
}

.boxbg3:hover {
	border: 2px solid #e62770;
}

.boxbg4:hover {
	border: 2px solid #21abaa;
}

.casestudycont h5 {
	color: #000;
	font-size: 18px;
	margin-bottom: 6px;
	font-weight: 700;
}

.casestudycont .casecont1 {
	color: #000;
	font-size: 12px;
	margin-bottom: 4px;
	font-weight: 500;
	text-align: left;
}

.casestudycont .casecont2 {
	color: #000;
	font-size: 11px;
	margin-bottom: 12px;
	font-weight: 400;
	text-align: left;
}

.casestudycont .casecont3 {
	color: #000;
	font-size: 10px;
	margin: 0%;
	font-weight: 500;
	text-align: left;
}

.casestsection {
	padding: 5rem 0 0 0;
}

.buildingbetter h1 {
	color: #000;
	text-align: center;
	font-size: 3rem;
	font-weight: 800;
	width: 97%;
	margin: 3rem auto 2rem auto;
}

.buildingbetter p {
	text-align: center;
	margin: 2rem;
}

.hirejioin {
	text-align: center;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 14px;
	margin: 2rem 0;
}

.hire button {
	border: 1px solid #ea3324;
	background-color: #ea3324;
	color: #fff;
	padding: 8px 60px;
	border-radius: 6px;
	font-size: 15px;
	transform: translateY(0);
	transition: transform 150ms, box-shadow 150ms;
	user-select: none;
	-webkit-user-select: none;
	touch-action: manipulation;
	font-weight: 500;
}

.join button {
	border: none;
	font-size: 12px;
	transform: translateY(0);
	transition: transform 150ms, box-shadow 150ms;
	user-select: none;
	-webkit-user-select: none;
	touch-action: manipulation;
	background: #fff;
}

.hire button:hover {
	box-shadow: rgba(0, 0, 0, 0.15) 0 3px 9px 0;
	transform: translateY(-2px);
}

.join button:hover {
	box-shadow: rgba(0, 0, 0, 0.15) 0 3px 9px 0;
	transform: translateY(-2px);
}

.faqsect .faqtitle {
	width: fit-content;
	background: #ededed;
	padding: 5px 14px;
	border-radius: 16px;
	font-size: 12px;
	color: #afafaf;
}

.join .subjoinButton {
	border: 1px solid #0a58ca;
	color: #0a58ca;
	display: flex;
	padding: 8px 60px;
	border-radius: 6px;
	font-size: 15px;
	font-weight: 500;
}

.faqsect {
	width: 85%;
	margin: auto auto 2rem;
}

#faqcarousel .item h6 {
	color: #000;
}
.moretestinomials {
	display: flex;
	align-items: center;
}

#faqcarousel .item p {
	font-size: 14px;
	color: #000;
}

.faqsect .owl-theme .owl-dots .owl-dot span {
	border: 1px solid #0328d2;
	background: #fff !important;
}

.faqsect .owl-theme .owl-dots .owl-dot.active span,
.faqsect .owl-theme .owl-dots .owl-dot:hover span {
	background: #ea3324 !important;
	border: 1px solid #ea3324;
}

.inhancing {
	background-color: #f4f0ea;
	padding: 3rem 0 0 0;
}

h1.inhancing4 {
	color: #000;
	text-align: center;
	font-size: 3rem;
	font-weight: 800;
	width: 62%;
	margin: auto;
}

.datadriven {
	background-color: #0328d2;
	padding: 6rem 0 0 0;
}

.main-content {
	margin-top: 4rem;
}

.main-content .owl-theme .owl-dots {
	display: none;
}

.main-content .owl-theme .owl-nav {
	display: none;
}

.main-content .item p {
	color: #0de3ff;
	margin: 0 0 6px 0;
}

.main-content .item img {
	border-radius: 12px 12px 0 0;
}

.page-header {
	position: absolute;
	top: 43px;
	right: 0;
	left: 0;
	z-index: 1;
}

.graph {
	display: flex;
	gap: 16px;
}

.graph img {
	width: 100%;
	height: 100%;
	/* aspect-ratio: 4/3; */
	object-fit: contain;
}

.page-header.is-sticky {
	position: fixed;
	z-index: 9999 !important;
	top: 0;
	box-shadow: 0 5px 16px rgba(0, 0, 0, 0.1);
	backdrop-filter: blur(10px);
	animation: slideDown 0.35s ease-out;
}

@keyframes slideDown {
	from {
		transform: translateY(-100%);
	}

	to {
		transform: translateY(0);
	}
}

.projectview {
	margin-top: 12rem;
	position: relative;
	padding-bottom: 6rem;
}

.projectviewgirl {
	margin-top: 4rem;
}

#sync1 .item img {
	text-align: center;
	width: 60% !important;
	margin: 6px 0 0 126px;
}

.projectview .item h1 {
	text-align: center;
}

.projectview .item img {
	text-align: center;
	width: 48% !important;
	margin: 0 0 0 0px;
}

.projectview .parent img {
	aspect-ratio: 3/2;
	object-fit: contain;
	margin: 0 0px 0 -27px;
}

.projectview .child img {
	width: 78% !important;
	aspect-ratio: 3 / 2;
	object-fit: contain;
	margin: auto 28px 0px auto;
}

.centerimgabs {
	position: absolute;
	width: 100%;
	justify-content: center;
	align-items: center;
	bottom: 0;
	display: flex;
	z-index: 99;
}

.projectview .owl-theme .owl-nav.disabled + .owl-dots {
	display: none;
}

.absdata {
	position: absolute;
	bottom: 5%;
	right: 0%;
	right: 10%;
}

.absdata h2 {
	font-size: 12px;
	color: #fff;
	border-bottom: 1px solid #7a7a7a;
	margin: 0px;
	padding: 0px 0 10px;
}

.absdata tr td {
	font-size: 10px;
	color: #fff;
	border: none;
	padding: 1px 0;
}

.databg {
	background-color: #000;
	padding: 23px;
	border-radius: 8px;
}

.databg table {
	padding: 10px 0 0px 0;
	margin: 10px 0 0 0;
}

.helpintigrate {
	background-color: #e8f2fa;
	padding: 5rem 0 0 0;
	position: relative;
}

.whitelineinbottom p {
	position: absolute;
	width: 100%;
	height: 6.3rem;
	margin: 0%;
	bottom: 0;
	background: #fff;
	border-top: 1px solid #9dd4ff;
}

.relatevalue {
	position: relative;
	padding-bottom: 3.5rem;
}

.absmanimg {
	position: absolute;
	display: flex;
	border-bottom: 1px solid #454545;
	justify-content: center;
	bottom: 0;
}

.absmanimg img {
	width: 16%;
}

.absman .helping-title h1 {
	font-size: 32px;
	font-weight: 900;
	width: 88%;
	margin-bottom: 3rem;
	color: #000;
}

.absman .helping-title p {
	font-weight: 600;
	color: #000;
	width: 80%;
	font-size: 14px;
}

.flexli {
	display: flex;
	gap: 16px;
}

.flexli p {
	font-weight: 500;
	color: #000;
}

.waytroology {
	padding: 4rem 0 0 0;
}

.colflex {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	height: 100%;
}

.giztitle {
	padding: 1rem;
}

.giztitle h1 {
	color: #fff;
	margin-bottom: 18px;
}

.giztitle p {
	width: 85%;
	color: #fff;
	font-weight: 300;
	line-height: 22px;
	font-size: 15px;
	margin-bottom: 24px;
}

.gizsec {
	background-color: #000;
	border-radius: 18px;
	padding: 3rem;
	margin-top: 3rem;
	position: relative;
}

.gizright {
	background-color: #fff;
	border-radius: 12px;
	padding: 20px;
	width: 470px;
	position: absolute;
	height: 520px;
}

.gizrighttitle h1 {
	font-size: 28px;
	font-weight: 900;
	width: 100%;
	margin-bottom: 1.6rem;
	color: #000;
}

.gizrighttitle p {
	margin: 0;
	font-size: 14px;
	line-height: 2;
	color: #000;
}

.gizrighttitle .flexli {
	margin-bottom: 4px;
}

.gizrightside {
	display: flex;
	justify-content: end;
}

.digitalsolutitle p {
	font-size: 13px;
	text-transform: uppercase;
	color: #000;
	font-weight: 500;
	margin: 0%;
}

.digitalsolutitle h1 {
	font-size: 28px;
	font-weight: 800;
	color: #000;
	margin-bottom: 2rem;
}

.dualcorusel {
	padding: 8rem 4rem 0;
	position: relative;
}

.firtcorusel {
	border-radius: 20px;
	background-color: #0051cb;
	padding: 3.5rem 3rem;
	height: 28rem;
}

.firtcorusel h4 {
	color: #fff;
	font-size: 22px;
	margin-bottom: 78px;
	font-weight: 600;
	/* letter-spacing: -2px; */
	line-height: 35px;
}

.secondcorusle {
	width: 90%;
	margin: auto;
	padding: 3.5rem 0;
}

.secondcorusleflex {
	display: flex;
	flex-direction: column;
	height: 330px;
}

.secondcorusle h6 {
	color: #000;
	font-weight: 500;
	font-size: 16px;
	/* letter-spacing: -0.55px; */
	line-height: 1.6;
}

.indestrytitle h6 {
	font-size: 16px;
	font-weight: 700;
	color: #000;
	margin: 0 0 -4px 0px;
}

.indestrytitle span {
	font-size: 12px;
	color: #000;
	line-height: 1.6;
}

.indestrytitle p {
	margin: -7px 0 0 0;
}

.secondcorusle a {
	font-size: 15px;
	font-weight: 500;
}

#sync6 .owl-dots {
	text-align: start;
	position: absolute;
	bottom: 19px;
	left: -35px;
}

#sync6 .owl-nav {
	text-align: end;
	display: inline;
	position: absolute;
	width: 100%;
	margin: -15px 0 0px 28px;
	bottom: 0px;
}

#sync6 .owl-dots .owl-dot {
	display: inline-block;
	zoom: 1;
	/* transition: all ease .4s; */
	width: 10px;
	height: 10px;
	border-radius: 50%;
	border: 1px solid #ffc600;
	margin: 0 3px;
	display: inline-block;
	vertical-align: middle;
	cursor: pointer;
	transition: all ease 0.4s;
}

#sync6 .owl-nav button {
	padding: 8px 16px !important;
	border: 1px solid #fff;
	color: #fff;
	margin: 5px 0px 5px 8px;
	border-radius: 0%;
	background-color: #fff;
	color: #000;
}

#sync6 .owl-nav .disabled {
	background: transparent !important;
	color: #fff !important;
}

#sync6 .owl-dots button span {
	display: none;
}

#sync6 .owl-dots button.active {
	background: #ffc600;
	width: 20px;
	border-radius: 6px;
}

#banner {
	z-index: 0;
	height: 93vh;
	display: flex;
	align-items: center;
}

/* CASESTUDY */
.casestudyhead {
	background: url(../images/casestudy.jpg);
	background-size: cover;
	background-repeat: no-repeat;
	padding: 7rem 0;
	position: relative;
}

.casestudyheadjobBoardBanner {
	background: url(../images/Careerboard.jpg);
	background-size: cover;
	background-repeat: no-repeat;
	padding: 7rem 0 4rem 0;
	position: relative;
}

.banneroverly {
	background-color: #000;
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	opacity: 0.7;
}

.bloghead {
	background: url(../images/blogs.jpg);
	background-size: cover;
	background-repeat: no-repeat;
	padding: 7rem 0 4rem 0;
	position: relative;
}

.opsetytext {
	opacity: 1;
	position: relative;
}

.pagename p {
	font-family: "Poppins", Sans-serif;
	font-size: 15px;
	font-weight: 400;
	color: #dfdfdf;
	transition: color 0.3s;
	margin-bottom: 4px;
}

.pagetitle h2 {
	color: #ffffff;
	font-family: "Poppins", Sans-serif;
	font-size: 30px;
	font-weight: 500;
	line-height: 1.5em;
	width: 79%;
}

.downcasesdty {
	padding: 8px 0;
}

.pagehashtag p {
	padding: 14px 0 18px 0;
}

.pagehashtag p em {
	color: #ffffff;
	font-family: "Poppins", Sans-serif;
	font-size: 14px;
	font-weight: 400;
	line-height: 21px;
	letter-spacing: -0.2px;
}

.downcasesdty a {
	font-size: 13px;
	color: #fff;
	padding: 10px 20px;
	border-radius: 2px;
	background-color: #1c56b1;
}

.headbottom {
	background-color: #1c56b1;
	box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.5);
	padding: 12px 0px;
}

.subtitlehead {
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.casesubtit h5 {
	color: #ffffff;
	font-family: "Poppins", Sans-serif;
	font-size: 23px;
	font-weight: 600;
	line-height: 1.5em;
	margin: 0%;
}

.casesubtit h5 span {
	padding: 2px 10px 2px 10px;
	background-color: #013584;
	border-radius: 3px 3px 3px 3px;
	color: #ffffff;
	font-family: "Poppins", Sans-serif;
	font-size: 11px;
	font-weight: 500;
	line-height: 1.5em;
	position: relative;
	top: -4px;
}

.selsquery {
	margin: 0%;
}

.selsquery a {
	font-family: "Poppins", Sans-serif;
	font-weight: 500;
	fill: #1c56b1;
	color: #1c56b1;
	background-color: #ffffff;
	border-radius: 50px 50px 50px 50px;
	box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.12);
	font-size: 13px;
	padding: 7px 20px;
}

.sectionspace {
	margin: 4rem 0;
}

.clintdet h2 {
	font-family: "Poppins", Sans-serif;
	font-size: 23px;
	font-weight: 600;
	margin-bottom: 20px;
}

.clintdet p {
	font-family: "Poppins", Sans-serif;
	font-size: 16px;
	font-weight: 500;
	line-height: 25px;
	letter-spacing: -0.2px;
	margin-bottom: 34px;
}

.clintlogo {
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.clintlogo img {
	width: 100%;
}

.chalsol {
	margin: 4rem 0;
}

.colorbox {
	display: flex;
	align-items: center;
}

.solution {
	padding: 6em 2em 6em 7.5em;
}

.solution h2 {
	color: #ffffff;
	margin-bottom: 20px;
}

.solution p {
	font-size: 14px;
	color: #fff;
	margin-bottom: 28px;
}

.impactsec {
	padding: 3em 0em 3em 0em;
	background-color: #fbebdc;
	margin: -1rem 0;
	position: relative;
}

.impact {
	display: flex;
	align-items: center;
}

.impacttitle {
	position: absolute;
	position: absolute;
	top: -23px;
	left: 43%;
}

.impacttitle h5 {
	color: #ffffff;
	font-family: "Poppins", Sans-serif;
	font-weight: 600;
	padding: 0.5em 3em 0.5em 3em;
	background-color: #105b3c;
	border-radius: 50px 50px 50px 50px;
}

.impactbox {
	flex: 1;
	text-align: center;
	border: 1px solid #000;
	padding: 20px 20px 20px 20px;
	height: 20.2rem;
}

.impactcont h2 {
	margin-top: 0.5rem;
	margin-bottom: 1rem;
	font-size: 1.75rem;
	font-weight: 600;
	line-height: 1.2;
	color: #000;
}

.impactcont p {
	margin-top: 0%;
	font-weight: 400;
	color: #000;
}

.impactthum {
	width: 150px;
	margin: auto;
	height: 150px;
	margin-bottom: 15px;
}

.testisec {
	background: url(../images/testimonial-bg-black-1.png);
	background-size: cover;
	background-repeat: no-repeat;
	padding: 6rem 0;
	position: relative;
	height: 41.5rem;
}

.testititle h3 {
	color: #ffffff;
	font-family: "Poppins", Sans-serif;
	font-weight: 600;
}

.testititle p {
	color: #ffffff;
	font-family: "Poppins", Sans-serif;
	font-size: 20px;
	font-weight: 400;
	margin: 0%;
}

.viewbutton {
	text-align: end;
}

.viewbutton a {
	font-size: 16px;
	padding: 15px 30px;
	color: #fff;
	border-radius: 4px;
	background-color: #1c56b1;
}

.testislide {
	padding: 30px 30px 30px 30px;
	background-color: #ffffff;
	border-radius: 8px 8px 8px 8px;
	text-align: center;
}

.testislide p {
	margin: 15px 0px 15px 0px;
	color: #000;
	font-weight: 500;
}

.textimoniyalslide {
	margin-top: 3rem;
}

.testislide h3 {
	font-family: "Poppins", Sans-serif;
	font-weight: 600;
	color: #000;
	padding: 2rem 0;
}

.testislide h3 span {
	color: #f33532;
	font-family: "Poppins", Sans-serif;
	font-weight: 400;
}

.casesubtit svg {
	width: 26px;
	fill: #fff;
	margin: 0 4px;
}

.blogsec {
	padding: 4rem 0;
	background-color: #282828;
}

.blogtitle h2 {
	color: #fff;
	margin-bottom: 20px;
}

.blogtitle p {
	color: #ffffff;
	font-family: "Poppins", Sans-serif;
	font-size: 22px;
	font-weight: 500;
	margin-bottom: 20px;
}

.innerredbox {
	background-color: #f9272c;
	border-style: none;
	height: 470px;
	margin-bottom: 25px;
	box-shadow: 9.899px 9.899px 30px 0 rgba(0, 0, 0, 0.1);
	padding: 40px 20px;
	border-radius: 6px;
}

.innerredbox h2 {
	font-family: "Poppins", Sans-serif;
	font-size: 24px;
	font-weight: 600;
	color: #ffffff;
}

.innerredbox p {
	color: #ffffff;
	text-align: left;
	margin: 0px 0px 6px 0px;
}

.innerredbox a {
	color: #fff;
	font-weight: 500;
	text-decoration: underline;
}

.redviewall {
	background-color: #424242;
	border-style: solid;
	border-width: 2px 2px 2px 2px;
	border-color: #5a5a5a;
	border-radius: 4px 4px 4px 4px;
	width: 100%;
	margin-top: 1.5rem;
	transition: all 0.3s;
}

.redviewall:hover {
	background-color: #f33532;
	border-style: solid;
	border-width: 2px 2px 2px 2px;
	border-color: #f33532;
	border-radius: 4px 4px 4px 4px;
	width: 100%;
	transition: all 0.3s;
}

.redviewall a {
	font-size: 15px;
	padding: 12px 24px;
	fill: #fff;
	text-align: center;
	transition: all 0.3s;
	display: block;
	color: #fff;
	line-height: 1;
}

.formstatudy {
	padding: 4rem 0;
	background-color: #e6f1fc;
}

.downcasestudy h2 {
	font-family: "Poppins", Sans-serif;
	font-size: 26px;
	font-weight: 600;
	color: #000;
	margin-bottom: 1rem;
}

.downcasestudy p {
	color: #000;
}

.formdownload {
	border-radius: 20px 20px 20px 20px;
	border-style: solid;
	border-width: 5px 5px 5px 5px;
	transition: background 0.3s, border 0.3s, border-radius 0.3s, box-shadow 0.3s;
	padding: 48px 28px 48px 28px;
}

.formdownload label {
	font-family: "Poppins", Sans-serif;
	font-size: 15px;
	font-weight: 500;
	padding-bottom: 6px;
	color: #000;
	margin: 0%;
}

.formdownload .col-auto {
	margin-bottom: 30px;
	flex: 1;
}

.formdownload input {
	background-color: #ffffff;
	border-radius: 50px 50px 50px 50px;
	font-family: "Poppins", Sans-serif;
	font-size: 14px;
	font-weight: 500;
	border: 1px solid #69727d;
	padding: 0.5rem 1rem;
}

.formdownload .form-check-input {
	padding: 0%;
}

.formdownload .form-check-label {
	font-family: "Poppins", Sans-serif;
	font-size: 14px;
	font-weight: 500;
}

.formdownload .col-auto p {
	padding-bottom: 0px;
	color: #000000bf;
	font-family: "Poppins", Sans-serif;
	font-size: 12px;
	font-weight: 400;
}

.formdownload .col-auto p span a {
	color: #c36;
}

.casedownload a {
	background-color: #1c56b1;
	color: #ffffff;
	border-radius: 50px 50px 50px 50px;
	min-height: 40px;
	display: inline-block;
	line-height: 1;
	font-size: 15px;
	padding: 12px 24px;
	color: #fff;
	fill: #fff;
	text-align: center;
	width: 100%;
	font-weight: 500;
	transition: all 0.3s;
}

.downloadbutton {
	background-color: #1c56b1;
	color: #ffffff;
	border-radius: 50px 50px 50px 50px;
	min-height: 40px;
	display: inline-block;
	line-height: 1;
	font-size: 15px;
	padding: 12px 24px;
	color: #fff;
	fill: #fff;
	text-align: center;
	width: 100%;
	font-weight: 500;
	transition: all 0.3s;
}

/* ABOUT */

.contectpage {
	padding: 4rem 0;
}

.contectpage .conttitle h3 {
	margin-top: 0.5rem;
	margin-bottom: 1rem;
	font-weight: 600;
	text-align: center;
	line-height: 1.2;
	color: #000;
}

.contectpage .contpera p {
	margin-top: 0.5rem;
	margin-bottom: 1rem;
	text-align: center;
	line-height: 1.5;
	color: #000;
}

.contecttitle h2 {
	color: #ffffff;
	font-family: "Poppins", Sans-serif;
	font-size: 70px;
	font-weight: 700;
	line-height: 1.5em;
	text-shadow: 0px 0px 10px rgba(0, 0, 0, 0.3);
	margin: 0%;
}

.contheadpad {
	padding: 2rem 0 1rem 0;
}

.contpagename p {
	color: #ffffff;
	font-family: "Poppins", Sans-serif;
	font-size: 20px;
	font-weight: 400;
	width: 83%;
	margin: -10px 0px 0px 0px;
}

.contectpage .contpera p a {
	margin-top: 0.5rem;
	margin-bottom: 1rem;
	text-align: center;
	line-height: 1.5;
	color: #000;
}

.contthum {
	text-align: center;
}

.contthum i {
	font-size: 50px;
	margin-bottom: 12px;
	color: red;
}

.getintuch h2 {
	text-align: center;
	margin-bottom: 20px;
	font-weight: 600;
}

.gettuchsec {
	padding: 3rem 0;
}

.gettuchform input {
	padding: 12px;
	border: 1px solid #69727d;
}

.gettuchform textarea {
	padding: 12px;
	border: 1px solid #69727d;
}

.gettuchsec {
	background-color: #f7f7f7;
}

.gettuchform input::placeholder {
	font-size: 16px;
}

/* CASESTUDY LIST */

.casestudylist {
	padding: 4rem 0;
}

.casestudylist .card-body h5 {
	color: #f33532;
	font-family: "Poppins", Sans-serif;
	font-size: 13px;
	font-weight: 400;
	margin-bottom: 20px;
}

.casestudylist .card-body a {
	color: #f33532;
	font-family: "Poppins", Sans-serif;
	font-size: 13px;
	font-weight: 600;
	font-size: 13px;
}

.casestudylist .card:hover {
	box-shadow: rgba(0, 0, 0, 0.15) 0px 2px 8px;
}

.casestudylist .card-body a p {
	font-family: "Manrope", Sans-serif;
	font-size: 1rem;
	font-weight: 600;
	line-height: 1.5em;
	margin-bottom: 20px;
	color: #212529 !important;
}

.centerimgabs img {
	width: 45%;
	margin: 0 0 0 58px;
}

.centerimgabsgirl img {
	width: 20%;
	margin: 0px 0 0 187px;
}

.gizright {
	/* background: url(../img/melbg.png); */
	background-image: url(../images/melbg.png) !important;
	background-repeat: no-repeat;
	background-position: bottom;
	background-size: 100%;
	background-color: #fff;
}

#gridsystem {
	display: grid;
	grid-gap: 8px;
	grid-template-columns: repeat(auto-fit, minmax(50px, 1fr));
	grid-auto-rows: 70px;
	grid-auto-flow: row dense;
}

#gridsystem .item {
	/* position: relative; */
	background: #fff;
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	box-sizing: border-box;
	color: #fff;
	background-size: cover;
	background-position: center;
	box-shadow: -2px 2px 10px 0px rgba(0, 0, 0, 0.4);
	transition: transform 0.3s ease-in-out;
	cursor: pointer;
	counter-increment: item-counter;
}

#gridsystem .item img {
	aspect-ratio: 3/4;
	width: 100%;
	height: 100%;
	object-fit: scale-down;
	padding: 2px;
}

#gridsystem .item:hover {
	transform: scale(1.05);
}

#gridsystem .item:hover:after {
	opacity: 0;
}

#gridsystem .item--medium {
	grid-row-end: span 2;
}

#gridsystem .item--large {
	grid-row-end: span 3;
}

#gridsystem .item--full {
	grid-column-end: auto;
}

@media screen and (min-width: 768px) {
	#gridsystem .item--full {
		grid-column: 1/-1;
		grid-row-end: span 2;
	}
}

#gridsystem .item__details {
	position: relative;
	z-index: 1;
	padding: 15px;
	color: #444;
	background: #fff;
	text-transform: lowercase;
	letter-spacing: 1px;
	color: #828282;
}

#gridsystem .item__details:before {
	content: counter(item-counter);
	font-weight: bold;
	font-size: 1.1rem;
	padding-right: 0.5em;
	color: #444;
}

.relativess {
	position: relative;
}

.svg-dh {
	transition: all 0.3s;
	width: 156px;
	height: 60px;
}

@-webkit-keyframes ico-rotate

/* Safari and Chrome */ {
	from {
		-webkit-transform: rotate(0deg);
		-o-transform: rotate(0deg);
		transform: rotate(0deg);
	}

	to {
		-webkit-transform: rotate(360deg);
		-o-transform: rotate(360deg);
		transform: rotate(360deg);
	}
}

@keyframes ico-rotate {
	from {
		-ms-transform: rotate(0deg);
		-moz-transform: rotate(0deg);
		-webkit-transform: rotate(0deg);
		-o-transform: rotate(0deg);
		transform: rotate(0deg);
	}

	to {
		-ms-transform: rotate(360deg);
		-moz-transform: rotate(360deg);
		-webkit-transform: rotate(360deg);
		-o-transform: rotate(360deg);
		transform: rotate(360deg);
	}
}

.ico-rotate {
	-webkit-animation: ico-rotate 30s linear infinite;
	-moz-animation: ico-rotate 30s linear infinite;
	-ms-animation: ico-rotate 30s linear infinite;
	-o-animation: ico-rotate 30s linear infinite;
	animation: ico-rotate 30s linear infinite;
	top: -15px;
	left: 10px;
	position: absolute;
	width: 80px;
	transform-origin: center;
}

@-webkit-keyframes rotateStar

/* Safari and Chrome */ {
	from {
		-webkit-transform: rotate(0deg);
		-o-transform: rotate(0deg);
		transform: rotate(0deg);
	}

	to {
		-webkit-transform: rotate(360deg);
		-o-transform: rotate(360deg);
		transform: rotate(360deg);
	}
}

@keyframes rotateStar {
	from {
		-ms-transform: rotate(0deg);
		-moz-transform: rotate(0deg);
		-webkit-transform: rotate(0deg);
		-o-transform: rotate(0deg);
		transform: rotate(0deg);
	}

	to {
		-ms-transform: rotate(360deg);
		-moz-transform: rotate(360deg);
		-webkit-transform: rotate(360deg);
		-o-transform: rotate(360deg);
		transform: rotate(360deg);
	}
}

.rotate-star {
	animation: rotateStar 10s linear infinite;
	animation-play-state: paused;
}

.rotate-star:hover {
	animation-play-state: running;
}

.rotate-star {
	animation: rotateStar 10s linear infinite;
	animation-play-state: paused;
}

/* Variables */
:root {
	--black: #fff;
	--white: #eaeaea;
	--gray: #fff;

	--text-arrow-space: 1px;
	--shaft-width: 44px;
	--newshaft-width: 16px;
	--shaft-thickness: 1px;
	--arrow-head-width: 8px;
	--arrow-head-thickness: var(--shaft-thickness);
}

#contectpage ul {
	list-style: none;
}

/* The Arrow */
#contectpage .the-arrow {
	width: var(--shaft-width);
	transition: all 0.2s;
}

#contectpage .the-arrow.-left {
	position: absolute;
	top: 4%;
	left: 0px;
	padding: 21px;
	background: #ea3324;
	border-radius: 27px;
}

#contectpage .the-arrow.-left .shaft {
	width: 0;
	background-color: #fff;
}

#contectpage .the-arrow.-left .shaft:before,
#contectpage .the-arrow.-left .shaft:after {
	width: 0;
	background-color: #fff;
}

#contectpage .the-arrow.-left .shaft:before {
	transform: rotate(0);
}

#contectpage .the-arrow.-left .shaft:after {
	transform: rotate(0);
}

#contectpage .the-arrow.-right {
	top: 2px;
	padding: 21px;
	background: #ea3324;
	border-radius: 27px;
}

#contectpage .the-arrow.-right .shaft {
	width: var(--shaft-width);
	transition-delay: 0.2s;
	width: 15px;
	margin: 0 0 0 -6px;
}

#contectpage .the-arrow.-right .shaft:before,
#contectpage .the-arrow.-right .shaft:after {
	width: var(--arrow-head-width);
	transition-delay: 0.3s;
	transition: all 0.5s;
}

#contectpage .the-arrow.-right .shaft:before {
	transform: rotate(40deg);
}

#contectpage .the-arrow.-right .shaft:after {
	transform: rotate(-40deg);
}

#contectpage .the-arrow .shaft {
	background-color: #fff;
	display: block;
	height: var(--shaft-thickness);
	position: relative;
	transition: all 0.2s;
	transition-delay: 0;
	will-change: transform;
}

#contectpage .the-arrow .shaft:before,
#contectpage .the-arrow .shaft:after {
	background-color: #fff;
	content: "";
	display: block;
	height: var(--arrow-head-thickness);
	position: absolute;
	top: 0;
	right: 0;
	transition: all 0.2s;
	transition-delay: 0;
}

#contectpage .the-arrow .shaft:before {
	transform-origin: top right;
}

#contectpage .the-arrow .shaft:after {
	transform-origin: bottom right;
}

/* Animated Arrow Button */
#contectpage .animated-arrow {
	display: inline-block;
	color: var(--black);
	font-size: 1.25em;
	text-decoration: none;
	position: relative;
	transition: all 0.2s;
}

#contectpage .animated-arrow:hover .main .the-arrow {
	display: none;
}

#contectpage .animated-arrow:hover .the-arrow.-left .shaft {
	width: var(--newshaft-width);
	transition-delay: 0.1s;
	background-color: var(--gray);
	margin: 0 0 0 -7px;
}

#contectpage .animated-arrow:hover .the-arrow.-left .shaft:before,
#contectpage .animated-arrow:hover .the-arrow.-left .shaft:after {
	width: var(--arrow-head-width);
	transition-delay: 0.1s;
	background-color: var(--gray);
}

#contectpage .animated-arrow:hover .the-arrow.-left .shaft:before {
	transform: rotate(40deg);
}

#contectpage .animated-arrow:hover .the-arrow.-left .shaft:after {
	transform: rotate(-40deg);
}

#contectpage .animated-arrow:hover .main {
	transform: translateX(calc(var(--shaft-width) + var(--text-arrow-space)));
}

#contectpage .animated-arrow:hover .main .the-arrow.-right .shaft {
	width: 0;
	transform: translateX(200%);
	transition-delay: 0;
}

#contectpage .animated-arrow:hover .main .the-arrow.-right .shaft:before,
#contectpage .animated-arrow:hover .main .the-arrow.-right .shaft:after {
	width: 0;
	transition-delay: 0;
	transition: all 0.1s;
}

#contectpage .animated-arrow:hover .main .the-arrow.-right .shaft:before {
	transform: rotate(0);
}

#contectpage .animated-arrow:hover .main .the-arrow.-right .shaft:after {
	transform: rotate(0);
}

#contectpage .animated-arrow .main {
	display: flex;
	align-items: center;
	transition: all 0.2s;
}

#contectpage .animated-arrow .main .text {
	margin: 1px var(--text-arrow-space) 0 0;
	line-height: 1;
	padding: 15px 28px;
	background: #ea3324;
	color: #fff;
	border-radius: 24px;
	z-index: 1;
	font-size: 15px;
}

#contectpage .animated-arrow .main .the-arrow {
	position: relative;
}

.mega_menu_item.megasubAllignment {
	width: 100%;
}

.productsBox {
	display: flex;
	justify-content: center;
	align-items: center;
	/* background: linear-gradient(to right, #f3f3f3, #fff); */
	padding: 20px;
	min-height: 125px;
}

.productsBoxContent {
	padding-left: 8px;
	border-radius: 6px;
}

.productsBoxContent P {
	font-size: 12px;
	margin-bottom: 0;
	color: #000;
	font-weight: 400;
}

.contthum i {
	font-size: 50px;
	margin-bottom: 12px;
	color: red;
}

.productsBoxContent h4 {
	margin-bottom: 0;
	font-size: 20px;
	margin: 0 0 5px;
	line-height: 20px;
	color: #000;
}

.productsBox.productsubBox2 {
	background: #fff !important;
	align-items: flex-start !important;
}

.productsBox.productsubBox2:hover {
	background: #d6d6d626 !important;
}

.productsBox.productsubBox2 .contthum i {
	font-size: 30px;
	margin-bottom: 12px;
	color: green;
}

.mega_menu_item H3 {
	margin-bottom: 0;
	font-size: 17px;
	color: red;
}

.technologyIcon i {
	font-size: 20px;
	color: green;
	margin-right: 10px;
}

.technologyIcon {
	display: flex;
	align-items: center;
	border-bottom: 1px solid #a7a7a7;
	padding-bottom: 16px;
	margin-bottom: 16px;
}

.menusIconContent {
	display: flex;
}

.technologyIcon i {
	font-size: 15px;
}

.menusIconContent p {
	margin-bottom: 0;
	color: #000;
	font-size: 13px;
	font-weight: 600;
	margin-left: 8px;
}

.main_menu ul li .mega_menu_item a:hover p {
	color: #ff0000;
}

.mega_menu_item.megasubAllignment {
	width: 100%;
}

.logo img {
	width: 125px;
}

.getInButton {
	position: fixed;
	bottom: 12px;
	right: 116px;
}

.iconFixed {
	position: fixed;
	bottom: 65px;
	right: 42px;
	z-index: 999 !;
	z-index: 999 !important;
	display: none;
}

.footerModal button {
	background-color: transparent;
	border: 0;
}

.modal-footer button:nth-child(1) {
	color: #fff;
	background-color: #5c636a;
	border-color: #565e64;
}

.modal-footer button:nth-child(2) {
	color: #fff;
	background-color: #0b5ed7;
	border-color: #0a58ca;
}

.owl-next:hover .owl-prev {
	background-color: transparent !important;
}

#sync6 .owl-nav button:nth-child(2):hover #sync6 .owl-nav button:first-child i {
	color: #fff;
}

.herobanner .col-lg-6 {
	padding-left: 0 !important;
	padding-right: 0 !important;
}

.wordSlier .item {
	display: flex;
	justify-content: flex-end;
}

.wordSlier {
	height: 100vh;
}

.wordSlier #banner img {
	height: 93vh;
}

.heroBannerTextAllignment {
	/* max-width: 668px; */
	max-width: 860px;
	margin: 0 auto;
	padding: 0rem 0rem 0rem 16.5rem !important;
}

.heroBannerTextAllignment h1 {
	font-size: 75px;
	line-height: 72px;
}

.heroBannerTextAllignment h1 span {
	font-size: 50px;
}

.abstrust {
	position: relative;
}

.absbg {
	position: absolute;
	width: 100%;
	background: #005adf;
	height: 156px;
	margin-top: -1px;
}

/* ////////MARQUEE CSS START///// */

/* Container styles */
.scrolling-text-container {
	background-color: #fff;
	border-radius: 4px;
	overflow: hidden;
	border-radius: 0 0 46px 46px;
}

/* Inner container styles */
.scrolling-text-inner {
	display: flex;
	white-space: nowrap;
	font-size: 16px;
	font-weight: 600;
}

/* Text styles */
.scrolling-text {
	display: flex;
}

.scrolling-text-item {
	padding: 0 35px;
}

/* Apply the animation to the text items */
.scrolling-text-inner > div {
	animation: var(--direction) var(--marquee-speed) linear infinite;
}

/* Pause the animation when a user hovers over it */
.scrolling-text-container:hover .scrolling-text-inner > div {
	animation-play-state: paused;
}

/* Setting the Animation using Keyframes */
@keyframes scroll-left {
	0% {
		transform: translateX(0%);
	}

	100% {
		transform: translateX(-100%);
	}
}

@keyframes scroll-right {
	0% {
		transform: translateX(-100%);
	}

	100% {
		transform: translateX(0%);
	}
}

.wordMainBox {
	align-items: center;
	height: 100vh;
	/* padding-top: 60px; */
}

.lastborder {
	border-right: none !important;
}

/* ////TOP MENU ANIMATION CSS START/////// */
.mega_menu_item a:nth-child(2) {
	animation-delay: 1s;
}

.mega_menu_item a:nth-child(3) {
	animation-delay: 2s;
}

.mega_menu_item a:nth-child(4) {
	animation-delay: 3s;
}

.mega_menu_item a:nth-child(5) {
	animation-delay: 4s;
}

.canvasallignments {
	padding-left: 30px;
}

.offcanvasicons img {
	width: 125px;
}

@keyframes fadeIn {
	from {
		opacity: 0;
		transform: translate3d(0, -20%, 0);
	}

	to {
		opacity: 1;
		transform: translate3d(0, 0, 0);
	}
}

@media only screen and (max-width: 1520px) {
	.heroBannerTextAllignment h1 {
		font-size: 60px;
	}

	.heroBannerTextAllignment {
		padding: 0rem 0rem 0rem 12.5rem !important;
	}
}

@media only screen and (max-width: 1366px) {
	.heroBannerTextAllignment {
		max-width: 660px;
		padding: 0rem 0rem 0rem 8rem !important;
	}

	.heroBannerTextAllignment h1 {
		font-size: 65px;
	}
}

/* ///////////TOP MENU ANIMATION CSS CLOSE/////// */

/* TESTINOMIAL PAGE CSS START */
.testinomialcontainerbox {
	background: #045ad1;
	padding: 80px 0;
}

#container {
	width: 100%;
	max-width: 100%;
	margin: 2em auto;
}
.testinomialcontainerbox .card {
	margin-bottom: 20px;
}

.testinomialcontents {
	/* padding: 80px 0px; */
	background: #045ad1;
}

.testinomialcontents img {
	width: 100px;
	height: auto;
	object-fit: contain;
	padding-bottom: 10px;
}

.automation p {
	font-size: 18px;
	margin-bottom: 0;
	color: #525252;
	line-height: 1.6;
}

.automation {
	
    
    /* padding: 2rem 1.5rem; */
}
.masonry .card-body.automation{
    padding: 1rem 0rem !important;
}
.profilecard {
	display: flex;
	padding: 25px 0 5px;
	align-items: center;
}
.profilecard p {
	font-size: 16px;
	font-weight: 600;
	line-height: 1.4;
}
.profilecard span {
	font-size: 14px;
	color: #222;
	line-height: 1.6;
}
.profilecard img {
	padding-right: 15px;
	width: 60px;
	height: 60px;
	object-fit: contain;
}

.automationcard {
	box-shadow: 0 0 3px 1px rgba(0, 0, 0, 0.15);
	border-radius: 12px;
	background-color: #fff;
}
.zct_bold {
	color: #000;
}
.cardsubTexts {
	position: relative;
}
.cardsubTexts::after {
	position: absolute;
	content: "";
	width: 100%;
	height: 80px;
	background: transparent;
	bottom: 0;
	left: 0;
	z-index: 2;
	background: -webkit-linear-gradient(top, #fff0, #fff);
	background: -moz-linear-gradient(top, #fff0, #fff);
	background: linear-gradient(to bottom, #fff0, #fff);
}

/* TESTINOMIAL PAGE CSS CLOSE */

/* .masonry-with-columns {
columns: 3 auto;
column-gap: 1rem;
}
.grid-item {
break-inside: avoid;
page-break-inside: avoid;
-webkit-column-break-inside: avoid;
} */

/* SHOW MORE AND SHOW LESS CSS START */

#profile-description {
	max-width: 400px;
	position: relative;
}
#profile-description .text {
	/* width: 660px; */
	font-size: 18px;
	margin-bottom: 0;
	color: #525252;
	line-height: 1.6;
	position: relative;
	display: block;
	cursor: pointer;
}
#profile-description .show-more {
	/* width: 690px; */
	/* color: #777; */
	position: relative;
	font-size: 14px;
	padding-top: 5px;
	height: 20px;
	text-align: center;
	/* background: #f1f1f1; */
	cursor: pointer;
}
#profile-description .show-more:hover {
	color: #1779dd;
}
#profile-description .show-more-height {
	height: 65px;
	overflow: hidden;
}

.show-more,
.show-more1 {
	cursor: pointer;
	color: #555;
	display: inline-block;
	position: relative;
	padding-top: 5px;
	font-size: 14px;
	line-height: 1.2;
	font-weight: 700;
}

#profile-description1 {
	position: relative;
}
#profile-description1 .text {
	/* width: 660px; */
	font-size: 18px;
	margin-bottom: 0;
	color: #525252;
	line-height: 1.6;
	position: relative;
	display: block;
	cursor: pointer;
}
#profile-description1 .show-more1 {
	/* width: 690px; */
	color: #777;
	position: relative;
	font-size: 12px;
	padding-top: 5px;
	height: 20px;
	text-align: center;
	background: #f1f1f1;
	cursor: pointer;
}
#profile-description1 .show-more1:hover {
	color: #1779dd;
}
#profile-description1 .show-more-height1 {
	height: 65px;
	overflow: hidden;
}

#profile-description1 {
	position: relative;
}
#profile-description1 .text {
	/* width: 660px; */
	margin-bottom: 5px;
	color: #777;
	padding: 0 15px;
	position: relative;
	font-family: Arial;
	font-size: 14px;
	display: block;
}
#profile-description1 .show-more1 {
	/* width: 690px; */
	color: #777;
	position: relative;
	font-size: 12px;
	padding-top: 5px;
	height: 20px;
	text-align: center;
	background: #f1f1f1;
	cursor: pointer;
}
#profile-description1 .show-more1:hover {
	color: #1779dd;
}
#profile-description1 .show-more-height1 {
	height: 65px;
	overflow: hidden;
}

#profile-description1 .text {
	/* width: 660px; */
	font-size: 18px;
	margin-bottom: 0;
	color: #525252;
	line-height: 1.6;
	position: relative;
	display: block;
	cursor: pointer;
	padding-left: 0px;
	padding-right: 0px;
}
.inotitilemain {
	text-align: left !important;
	font-size: 16px;
	margin-top: 20px;
}

.inotitilemain a {
	font-size: 16px !important;
	transition: all ease 0.3s;
	margin-top: 20px;
	color: #0067ff;
}

.testinomialpagination {
	padding-top: 80px;
}

.testinomialpagination .pagination {
	justify-content: center;
	align-items: center;
}

.testinomialpagination nav {
	background-color: transparent;
	border: none;
}

.testinomialpagination .page-link4 {
	background-color: transparent !important;
	color: #fff !important;
	border: none !important;
	width: 45px;
	height: 45px;
	border-radius: 50%;
	display: flex;
	justify-content: center;
	align-items: center;
	cursor: pointer;
}
.testinomialpagination .page-link:focus {
	background: #fff !important;
	color: #053270 !important;
}
.pagelist {
	margin-right: 50px !important;
}
.pagelist2 {
	margin-left: 50px !important;
}
.testinomialpagination .page-link {
	font-size: 18px;
	line-height: 1.2;
}

.testinomialpagination .page-item {
	cursor: pointer;
	background-color: transparent;
}

/* Active style */
.testinomialpagination .page-item.active a {
	background-color: white !important;
	color: #053270 !important;
}

/* Inactive style */
.testinomialpagination .page-item:not(.active) a {
	background-color: transparent;
}

span.nextbutton {
	display: inline-block;
	padding-right: 18px;
	font-size: 18px;
}

.prevbutton {
	display: inline-block;
	padding-left: 18px;
	font-size: 18px;
}

.previocicon a {
	border: none;
	color: #fff !important;
}

.nexticons a {
	border: none;
	color: #fff !important;
}

.viewsmores {
	text-align: center;
	padding-top: 35px;
}

.viewsmores button {
	border-bottom: 2px solid #fff;
	font-size: 18px;
	cursor: pointer;
	font-weight: 600;
	line-height: 1.2;
	background-color: transparent;
	color: #ffff;
	border: none;
	border-bottom: 3px solid #fff;
}

#faqcarousel41 .owl-dot {
	display: none;
}

.footerrightbox:hover .fa-arrow-right {
	transform: translateX(5px);
}

/* LATEST MASORNY LAYOUT CSS START */

.masonry {
	-webkit-column-count: 3;
	-moz-column-count: 3;
	column-count: 3;
	-webkit-column-gap: 1em;
	-moz-column-gap: 1em;
	column-gap: 1em;
	-moz-column-gap: 1.5em;
	-webkit-column-gap: 1.5em;
	column-gap: 1.5em;
}

.masornyitem.automationcard.contanttestimonial .card {
	border: transparent !important;
	border: none !important;
}

.masornyitem.automationcard.contanttestimonial .card:hover {
	box-shadow: none !important;
}
.masornyitem {
	
        display: inline-block;
        /* float: left; */
        background: #fff;
        padding: 1em;
        margin: 0 0 1.5em;
        box-sizing: border-box;
        -moz-box-sizing: border-box;
        -webkit-box-sizing: border-box;
        box-shadow: 2px 2px 4px 0 #ccc;
        height: auto;
        max-width: 100%;
        overflow: hidden;
        
        /* Adjust positioning for the fourth item */
        &:nth-child(4n+1) {
            clear: left; /* Clear the float to start a new row */
        }
    }
    


@media only screen and (max-width: 320px) {
	.masonry {
		-moz-column-count: 1;
		-webkit-column-count: 1;
		column-count: 1;
	}
}

@media only screen and (min-width: 321px) and (max-width: 768px) {
	.masonry {
		-moz-column-count: 2;
		-webkit-column-count: 2;
		column-count: 2;
	}
}
@media only screen and (min-width: 769px) and (max-width: 1200px) {
	.masonry {
		-moz-column-count: 3;
		-webkit-column-count: 3;
		column-count: 3;
	}
}
@media only screen and (min-width: 1201px) {
	.masonry {
		-moz-column-count: 3;
		-webkit-column-count: 3;
		column-count: 3;
	}
}

/* LATEST MASORNY LAYOUT CSS CLOSE */

/* HOMEPAGE WE HELP INTIGRATE SECTION START */

#cf2 {
	position: relative;

	margin: 0 auto;
	background-image: url(../images/publicf.png) !important;
	width: 100%;
	height: 100%;
	background-size: contain;
	background-position: center;
}

#cf2::after {
	content: " ";
	display: block;
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	z-index: 1;
	background-image: url(../images/ycbs.png) !important;
	background-repeat: no-repeat;
	background-position: center;
	background-color: #fff;
	background-size: contain;
}

@keyframes cf3FadeInOut {
	0% {
		opacity: 1;
	}
	45% {
		opacity: 1;
	}
	55% {
		opacity: 0;
	}
	100% {
		opacity: 0;
	}
}

#cf2::after,
#cf3::after,
#cf4::after {
	animation-name: cf3FadeInOut;
	animation-timing-function: ease-in-out;
	animation-iteration-count: infinite;
	animation-duration: 10s;
	animation-direction: alternate;
}

/* FOR CF3 CSS START */
#cf3::after {
	content: " ";
	display: block;
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	z-index: 1;
	background-image: url(../images/ycbs.png) !important;
	background-repeat: no-repeat;
	background-position: center;
	background-color: #fff;
	background-size: contain;
}
#cf3 {
	position: relative;

	margin: 0 auto;
	background-image: url(../images/aisence.png) !important;
	width: 100%;
	height: 100%;
	background-size: contain;
	background-position: center;
}
/* FOR CF3 CSS CLOSE */

/* FOR CF4 CSS START */
#cf4::after {
	content: " ";
	display: block;
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	z-index: 1;
	background-image: url(../images/ycbs.png) !important;
	background-repeat: no-repeat;
	background-position: center;
	background-color: #fff;
	background-size: contain;
}
#cf4 {
	position: relative;

	margin: 0 auto;
	background-image: url(../images/paypal.png) !important;
	width: 100%;
	height: 100%;
	background-size: contain;
	background-position: center;
}
/* FOR CF4 CSS CLOSE */

.razorpayallignments {
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	box-sizing: border-box;
	color: #fff;
	background-size: cover;
	background-position: center;
	box-shadow: -2px 2px 10px 0px rgba(0, 0, 0, 0.4);
	transition: transform 0.3s ease-in-out;
	cursor: pointer;
	counter-increment: item-counter;
}

.razorpayallignments img {
	aspect-ratio: 3 / 4;
	width: 100%;
	height: 100%;
	object-fit: scale-down;
	padding: 2px;
}

#faqcarousel50 .owl-dots {
	display: none;
}

#faqcarousel40 .owl-dots {
	display: none;
}


/* .responsiveAllignment .card.content{
    border-radius: 4px !important;
} */
/* HOMEPAGE WE HELP INTIGRATE SECTION CLOSE */
