* {
	padding: 0;
	margin: 0;
	box-sizing: border-box;
}

* html {
	overflow-x: hidden;
	scroll-behavior: smooth;
}

:root {
	--dark: #0a0e1a;
	--dark2: #0d1630;
	--dark3: #111827;
	--cyan: #00c2e0;
	--cyan2: #00e5ff;
	--blue: #1a6cff;
	--blue2: #2979ff;
	--text: #1f2937;
	--muted: #6b7280;
	--light: #f4f7fb;
	--white: #ffffff;
	--border: #e2e8f0;
	--card-bg: #111d35;
}

body {
	margin: 0px;
	padding: 0px;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	background: #fff;
	font-family: "Poppins", sans-serif;
	overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	padding: 0;
	margin: 0;
}

a {
	-webkit-transition: var(--transition);
	transition: var(--transition);
	color: var(--blackColor);
	text-decoration: none;
	outline: 0 !important;
}

a:hover {
	color: var(--mainColor);
	text-decoration: none;
}

:focus {
	outline: 0 !important;
	-webkit-box-shadow: none !important;
	box-shadow: none !important;
}

ul,
ol,
li {
	list-style: none;
	margin: 0;
	padding: 0;
}

.no-padding {
	padding: 0px;
}

img {
	max-width: 100%;
	height: auto;
}

p {
	color: #000;
	font-size: 14px;
	margin-bottom: 15px;
	line-height: 1.8;
}

p:last-child {
	margin-bottom: 0;
}

img {
	max-width: 100%;
}

*,
*::before,
*::after {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}

.custom-container {
	max-width: 1700px;
	margin: 0px auto;
	padding: 0px 15px;
}

.cmn-gap {
	padding: 100px 0px;
	margin: 0px;
}

.cmn-butn {
	font-family: Poppins;
	font-weight: 300;
	font-style: Light;
	font-size: 18px;

	line-height: 18px;
	letter-spacing: 0%;

	padding: 14px 40px;
	border-radius: 30px;
}

.red-butn {
	background: #A8313A;
	color: var(--white);
}

.red-butn:hover {
	background: #1A1C23;
	color: var(--white);
}

.red-butn span {
	margin-left: 10px;
}

.red-butn span img {
	width: 10px;
	height: auto;
}

.white-butn {
	background: #fff;
	color: #404040;
}

.white-butn:hover {
	background: #A8313A;
	color: #fff;
}

.white-butn span {
	margin-left: 10px;
}

.white-butn span img {
	width: 10px;
	height: auto;
}

h6 {
	font-weight: 300;
	font-size: 16px;
	line-height: 26px;
	letter-spacing: 0%;
	color: #404040;
	margin: 0px 0px 20px 0px;
	padding: 0px;
}

h2 {
	font-family: Poppins;
	font-weight: 500;
	font-size: 40px;
	line-height: 50px;
	letter-spacing: 0%;
	color: #404040;
	margin: 0px 0px 30px 0px;
	padding: 0px;
}


h4 {
	font-family: Poppins;
	font-weight: 500;
	font-size: 26px;
	line-height: 36px;
	letter-spacing: 0%;
	color: #404040;
	margin: 0px 0px 20px 0px;
	padding: 0px;
}


/* =================================== */
/* =============my-css-start===========*/
/* =================================== */

/* =================================== */
/* ============NAVBAR===========*/
/* =================================== */

.header-section {
	background: #fdf3f4;
	padding: 25px 0px;
	position: relative;
	transition: all 0.3s ease;
	overflow: hidden;
}

.header-section.scroll {
	background: #fdf3f4;
	height: auto;
	padding: 4px 0px;
	transition: background-color 0.5s ease 0s;
	top: 0px;
	animation: slideDown 0.35s ease-out;
	position: fixed;
	transition: all 0.3s ease 0s;
	box-shadow: 0 0 15px 1px rgba(0, 0, 0, 0.07);
	z-index: 999;
	width: 100%;
	animation: slideDown 0.35s ease-out;
}

/* Slide-down animation */
@keyframes slideDown {
	from {
		transform: translateY(-100%);
	}

	to {
		transform: translateY(0);
	}
}

.logo {
	width: 300px;
	height: auto;
	margin: 0px;
	transition: all 0.3s ease;
}

.logo img {
	width: auto;
	height: auto;
	object-fit: cover;
	transition: all 0.3s ease;
	/* smooth movement */
}

.header-section.scroll .logo {
	width: 200px;
	height: auto;
	margin: 0px;
	bottom: 0px;
	position: relative;
	z-index: 99;
}

/* =================topbar============*/

.header-section-inner {
	position: relative;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.nav-row {
	position: relative;
	padding: 5px 0px;
	position: relative;
	z-index: 9;
}

.nav-inner {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 10px;
}

.stellarnav {
	width: 100%;
	line-height: normal;
	display: flex;
	justify-content: start;
	align-items: center;
	height: 100%;
}

.stellarnav ul {
	margin: 0px;
	padding: 0px;
	text-align: center;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 20px;
	width: 100%;
}

.stellarnav>ul>li>a {
	font-family: Poppins;
	font-weight: 400;
	font-size: 20px;
	line-height: 29px;
	letter-spacing: 0%;
	color: #a8313a;
	padding: 8px 30px;
	margin: 0px;
	border-radius: 30px;
	background-color: transparent;
}

.stellarnav>ul>li>a:hover {
	background: #a8313a;
	border-radius: 30px;

	color: #fff;
	text-decoration: none;
}

.stellarnav>ul>li>a.active {
	background: #001a35;
	border-radius: 30px;

	color: #fff !important;
	text-decoration: none;
}

.stellarnav>ul>li.current_page_item>a {
	background: #A8313A;
	border-radius: 30px;

	color: #fff !important;
	text-decoration: none;
}


.stellarnav.mobile ul {
	background: #A8313A;
	z-index: 999;
}

.stellarnav ul ul {
	top: auto;
	width: 250px;
	position: absolute;
	z-index: 9900;
	text-align: left;
	display: none;
	background: #f2faf8;
	padding: 20px 0px;
}

.main-nav .stellarnav li li {
	margin: 0px 0px;
	width: 100% !important;
}

.stellarnav li li {
	display: block !important;
	width: 100% !important;
}

.main-nav .stellarnav li li a {
	font-size: 16px;
	padding: 8px 12px;
	color: #000;
	font-weight: 400;
}

.stellarnav.mobile li a {
	border-bottom: 0px solid rgba(255, 255, 255, 0.15);
}

.stellarnav li.has-sub a {
	padding-right: 0px !important;
}

.stellarnav li a {
	padding: 5px 30px;
}

.main-nav .stellarnav li li a:hover {
	background: #f9f9f9;
	color: #1ba291;
}

.main-nav .stellarnav li li a.active {
	background: #f9f9f9;
	color: #1ba291;
}

.stellarnav li.has-sub>a::after {
	content: "\f107";
	margin-right: 20px !important;
	border-left: 6px solid transparent;
	border-right: 6px solid transparent;
	border-top: 6px solid #267ec3;
	display: inline-block;
	border: none !important;
	font: normal normal normal 16px/1 FontAwesome;
}

/*.stellarnav ul li:nth-child(5) {*/
/*	margin-left: 500px;*/
/*}*/

/* adjust value as needed */

.rightlink {
	display: flex;
	align-items: center;
	gap: 1px;
	justify-content: end;
	margin: 0px;
	width: 250px;
}

/* =================================== */
/* ============NAVBAR===========*/
/* =================================== */

/* =================================== */
/* ============banner-section=====*/
/* =================================== */
.banner-section {
	height: 750px;
	position: relative;
	overflow: hidden;
	margin: 0px 30px;
	border-radius: 20px;

}

.banner-left {
	height: 790px;
	position: relative;
	margin: 0px 0px 0px 40px;
	border-radius: 20px 0px 0px 20px;
	overflow: hidden;
}

.banner-left img {
	width: 100%;
	height: 100%;
	position: relative;
}

.hero-slide-overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(105deg, rgba(168, 49, 58, 0.29) 0%, rgba(168, 49, 58, 0.22) 55%, rgba(13, 26, 53, 0.15) 100%);
}


#overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(105deg, rgba(168, 49, 58, 0.29) 0%, rgba(168, 49, 58, 0.22) 55%, rgba(13, 26, 53, 0.15) 100%);
}

.hero-content {
	position: absolute;
	z-index: 2;
	padding: 0px;
	text-align: center;
	top: 0px;
	display: flex;
	justify-content: center;
	align-items: start;
	flex-direction: column;
	text-align: left;
	left: 120px;
	height: 600px;

	width: 60%;
}

.hero-content h1 {
	font-family: Poppins;
	font-weight: 600;
	font-size: 80px;
	line-height: 100px;
	letter-spacing: 0%;
	color: #fff;
	margin: 0px 0px 20px 0px;
	padding: 0px;
	text-align: left;
	max-width: 83%;
}

.hero-content h1 span.cyan {
	background: #FF2434;
	/* gradient colors */
	-webkit-background-clip: text;
	/* clip background to text (WebKit browsers) */
	-webkit-text-fill-color: transparent;
	/* make text transparent so gradient shows */
	background-clip: text;
	/* standard property */
}

.hero-content p {
	font-family: Poppins;
	font-weight: 300;

	font-size: 20px;
	line-height: 30px;
	letter-spacing: 0%;
	color: #fff;
	padding: 0px;
	margin: 0px 0px 30px 0px;
	max-width: 65%;
}

.hero-btns-row {
	display: flex;
	justify-content: start;
	align-items: center;
	gap: 20px;
}

.banner-right {
	height: 790px;
	width: auto;
	position: relative;
	overflow: hidden;
	border-radius: 0px 20px 20px 0px;
	margin-right: 40px;
}

.banner-right img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.hero-stats {
	background: #0000007a;
	height: 153px;
	position: absolute;
	top: 596px;
	width: 100%;
	padding: 60px 120px;
	display: flex;
	justify-content: start;
	align-items: center;
	gap: 66px;
	left: 0px;
}

.hero-stat-num {
	font-family: Poppins;
	font-weight: 600;
	font-size: 50px;
	line-height: 50px;
	letter-spacing: 0%;
	color: #fff;
	margin: 0px 0px 15px 0px;
	padding: 0px;
}

.hero-stat-label {
	font-family: Poppins;
	font-weight: 300;
	font-size: 18px;
	line-height: 18px;
	letter-spacing: 0%;
	color: #fff;
	margin: 0px;
	padding: 0px;
}

.banner-section .item img {
	width: auto !important;
	height: auto !important;

}

.hero-btns-row .cmn-butn.white-butn {

	display: flex;
	justify-content: center;
	align-items: center;
}

.hero-btns-row .cmn-butn.red-butn {
	display: flex;
	justify-content: center;
	align-items: center;
}


/* =================================== */
/* ===========banner-section=====*/
/* =================================== */

/* =================================== */
/* ===========trusted-strip=====*/
/* =================================== */

.trusted-strip {
	background: #fff;
	overflow: hidden;
}

.trusted-strip h3 {
	font-family: Poppins;
	font-weight: 400;
	font-size: 23px;
	line-height: 22px;
	letter-spacing: 0%;
	text-transform: uppercase;
	text-align: center;
	margin: 0px 0px 40px 0px;
	padding: 0px;
	color: #404040;
}

.gallery-card {
	overflow: hidden;
	position: relative;
	cursor: pointer;

	height: 120px;
	display: flex;
	justify-content: center;
	align-items: center;
}

.gallery-card img {
	width: auto !important;
	height: auto !important;
	object-fit: contain;
	transition: transform 0.5s;
	display: block;
}

.gallery-card:hover img {
	transform: scale(1.07);
}

.gallery-carousel .owl-dots {
	display: flex;
	gap: 6px;
	justify-content: center;
	margin-top: 32px;
}

.gallery-carousel .owl-dots .owl-dot {
	width: 12px;
	height: 12px;
	border-radius: 50%;
	background: #d9d9d9;
	cursor: pointer;
	transition: all 0.25s;
}

.gallery-carousel .owl-dots .owl-dot.active {
	background: #0170b9;
	width: 40px;
	border-radius: 15px;
}

/* =================================== */
/* ===========trusted-strip=====*/
/* =================================== */

/* =================================== */
/* ===========about-split=====*/
/* =================================== */

.about-split {
	background: #fff;
	position: relative;
	overflow: hidden;
}

.about-split-left {
	padding: 0px;
	margin: 0px;
	position: relative;
	height: 100%;
	z-index: 99;
}

.about-split-left-tittle {
	padding: 0px;
	padding: 0px;
}

.about-split-left-tittle h3 {
	font-family: Poppins;
	font-weight: 500;
	font-size: 35px;
	line-height: 45px;
	letter-spacing: 0%;
	color: #404040;
	margin: 0px 0px 20px 0px;
	padding: 0px;
}

.about-split-left-tittle p {
	font-family: Poppins;
	font-weight: 300;
	font-size: 20px;
	line-height: 30px;
	letter-spacing: 0%;
	color: #404040;
	margin: 0px 0px 50px 0px;
	padding: 0px;
}

.market-chip {
	background: #ffffffad;
	border: 1px solid #ffffffad;
	border-radius: 30px;
	position: absolute;
	bottom: 33px;
	width: 350px;
	padding: 40px 40px;
	left: 0;
	box-shadow: 0px 4px 60.1px 0px #569BE540;
}

.market-chip h4 {
	font-weight: 400;
	font-size: 28px;
	line-height: 28px;
	letter-spacing: 0%;
	color: #404040;
	margin: 0px 0px 10px 0px;
	padding: 0px;
}

.market-chip p {
	font-weight: 300;
	font-size: 16px;
	line-height: 26px;
	letter-spacing: 0%;
	color: #404040;
	margin: 0px 0px 20px 0px;
	padding: 0px;
}

.market-chip h5 {
	font-weight: 500;
	font-size: 32px;
	line-height: 40px;
	letter-spacing: 0%;
	color: #404040;
	margin: 0px;
	padding: 0px;
}

.about-img-wrap {
	border-radius: 0px;
	overflow: hidden;
	width: 100%;
	height: 500px;
	border-radius: 10px;
}

.about-img-wrap img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.5s;
}

.about-img-wrap:hover img {
	transform: scale(1.05);
}

.about-right-card {
	position: relative;
	margin: 0px;
	padding: 0px;
	height: 100%;
}

.about-right-card-header {
	padding: 0px;
	margin: 0px;
}

.about-right-card-header h6 {
	font-weight: 300;

	font-size: 20px;

	line-height: 30px;
	letter-spacing: 0%;
	color: #404040;
	margin: 0px 0px 10px 0px;
	padding: 0px;
}

.about-right-card-header h2 {
	font-family: Poppins;
	font-weight: 500;
	font-size: 60px;
	line-height: 70px;
	letter-spacing: 0%;
	color: #404040;
	margin: 0px 0px 20px 0px;
	padding: 0px;
	max-width: 100%;
	position: relative;
	z-index: 9;
}

.about-thumb {
	width: 300px;
	height: 300px;
	position: absolute;
	bottom: 19px;
	right: 0px;
	border-radius: 30px;
	overflow: hidden;
}

.about-thumb img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.5s;
}

.about-thumb:hover img {
	transform: scale(1.05);
}

/* =================================== */
/* ===========about-split=====*/
/* =================================== */

/* =================================== */
/* ===========services-section=====*/
/* =================================== */

.services-section {
	background: url(../images/key-benefits.png) top left no-repeat;
	position: relative;
	overflow: hidden;
	border-radius: 50px;
	background-size: cover;
}

.services-section-header {
	padding: 0px 0px 70px 0px;
	margin: 0px 0px 70px 0px;
	border-bottom: 1px solid #454545;
}

.services-header-left h6 {
	font-weight: 300;
	font-size: 16px;
	line-height: 130%;
	letter-spacing: 0%;
	color: #fff;
	margin: 0px 0px 60px 0px;
	padding: 0px;
}

.services-header-right {
	padding: 0px;
	margin: 0px;
}

.services-header-right h2 {
	font-weight: 500;

	font-size: 40px;

	line-height: 50px;
	letter-spacing: 0%;
	color: #fdfdfd;
	padding: 0px;
	margin: 0px;
}

.service-card {
	background: #0000005e;
	border-radius: 30px 30px 30px 30px;
	padding: 30px 30px;
	height: 100%;
	position: relative;
}

.service-card::after {
	content: "";
	position: absolute;
	top: 0px;
	right: 0px;
	width: 115px;
	height: 115px;
	/*background: #072d54;*/
	border-radius: 0px 0px 0px 30px;
}

.service-arrow {
	width: 80px;
	height: 80px;
	background: #fff;
	border-radius: 50%;
	text-align: center;
	font-size: 40px;
	display: flex;
	justify-content: center;
	align-items: center;
	position: absolute;
	top: 15px;
	right: 15px;
	z-index: 9;
}

.service-card h3 {
	font-weight: 500;
	font-size: 35px;
	line-height: 45px;
	letter-spacing: 0%;
	color: #fff;
	margin: 0px 0px 20px 0px;
	padding: 0px;
	max-width: 80%;
}

.service-card p {
	font-weight: 300;
	font-size: 16px;
	line-height: 26px;
	letter-spacing: 0%;
	color: #d1d1d1;
	margin: 0px 0px 30px 0px;
	padding: 0px;
}

.service-feature {
	background: #395878;
	border-radius: 20px;
	padding: 30px;
}

.service-feature p {
	font-weight: 300;
	font-size: 16px;
	line-height: 36px;
	letter-spacing: 0%;
	color: #d1d1d1;
	padding: 0px 0px 0px 30px;
	margin: 0px;
	position: relative;
}

.service-feature p::before {
	content: "\f35a";
	color: #00d1fc;
	position: absolute;
	left: 0px;
	top: 10px;
	font: normal normal normal 16px/1 FontAwesome;
}

.service-arrow i {
	transform: rotate(-400deg);
	transition: transform 0.5s;
}


.service-arrow:hover i {
	transform: translate(5px, -5px);
	color: #fff;
	margin-top: 15px;
}


.service-arrow:hover {
	background: #A8313A;
}


/* =================================== */
/* ===========services-section=====*/
/* =================================== */

/* =================================== */
/* ===========why-img-wrap=====*/
/* =================================== */

.why-img-wrap {
	width: 100%;
	height: 200px;
	border-radius: 15px;
	overflow: hidden;
}

.why-img-wrap img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.5s;
}

.why-img-wrap:hover img {
	transform: scale(1.05);
}

.why-section-tittle {
	border-bottom: 1px solid #404040;
	margin: 50px 0px;
}

.why-section-tittle h6 {
	font-weight: 300;

	font-size: 16px;

	line-height: 26px;
	letter-spacing: 0%;
	color: #404040;
	margin: 0px 0px 20px 0px;
	padding: 0px;
}

.why-section-tittle h2 {
	font-family: Poppins;
	font-weight: 500;

	font-size: 40px;

	line-height: 50px;
	letter-spacing: 0%;
	color: #404040;
	margin: 0px 0px 40px 0px;
	padding: 0px;
}

.why-feature {
	display: flex;
	align-items: flex-start;
	gap: 40px;
	margin: 0px 0px 20px 0px;
	border-bottom: 1px solid #404040;
	height: 120px;
	padding: 0px 0px 20px 0px;
}

.why-check {
	width: 60px;
	height: 60px;
	flex-shrink: 0;
	background: #A8313A;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #fff;
	font-size: 20px;
	margin: 10px 0px 0px 0px;
	transition: background 0.3s;
}

.why-feature:hover .why-check {
	background: #000;

	color: #fff;
}

.why-feature h6 {
	font-weight: 500;
	font-size: 22px;
	line-height: 22px;
	letter-spacing: 0%;
	color: #404040;
	margin: 0px 0px 15px 0px;
	padding: 0px;
}

.why-feature p {
	font-weight: 300;
	font-size: 16px;
	line-height: 26px;
	letter-spacing: 0%;
	color: #404040;
	padding: 0px;
	margin: 0px;
	max-width: 90%;
}

/* =================================== */
/* ===========why-img-wrap=====*/
/* =================================== */

/* =================================== */
/* ===========testi-section=====*/
/* =================================== */

.testi-section {
	background: #fff;
	margin: 0px 0px 100px 0px;
}

.testi-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin: 0px 0px 20px 0px;
}

.testi-header-left h6 {
	font-weight: 300;
	font-size: 16px;
	line-height: 26px;
	letter-spacing: 0%;
	color: #404040;
	margin: 0px 0px 20px 0px;
	padding: 0px;
}

.testi-header-left h2 {
	font-family: Poppins;
	font-weight: 500;
	font-size: 40px;
	line-height: 50px;
	letter-spacing: 0%;
	color: #404040;
	margin: 0px 0px 40px 0px;
	padding: 0px;
}

.testi-section-img {
	width: 100%;
	height: 450px;
	border-radius: 20px;
	overflow: hidden;
}

.testi-section-img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.5s;
}

.testi-section-img:hover img {
	transform: scale(1.05);
}

.testi-card {
	background: url(../images/testi-bg.png) top left no-repeat;
	border-radius: 20px;
	overflow: hidden;
	padding: 60px;
	height: 450px;
	background-size: cover;
}

.testi-body .testi-stars {
	font-size: 24px;
	color: #fef967;
	margin-bottom: 40px;
	display: flex;
	justify-content: start;
	align-items: start;
	gap: 10px;
}

.testi-body p {
	font-weight: 400;
	font-size: 32px;
	line-height: 50px;
	letter-spacing: 0%;
	color: #ffffff;
	margin: 0px 0px 50px 0px;
	padding: 0px;
}

.testi-info {
	display: flex;
	justify-content: start;
	align-items: center;
	gap: 20px;
}

.testi-img {
	width: 100px;
	height: 100px;
	overflow: hidden;
	border-radius: 50%;
	background: #ccc;
}

.testi-img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.testi-author {
	padding: 0px;
	margin: 0px;
}

.testi-author h5 {
	font-weight: 500;
	font-size: 20px;
	line-height: 100%;
	letter-spacing: 0%;
	color: #fff;
	margin: 0px 0px 15px 0px;
	padding: 0px;
}

.testi-author p {
	font-weight: 300;
	font-size: 16px;
	line-height: 100%;
	letter-spacing: 0%;
	color: #fff;
	margin: 0px;
	padding: 0px;
}

.testi-carousel .owl-dots {
	position: absolute;
	bottom: -60px;
	right: 0px;
	left: 0px;
	display: flex;
	justify-content: start;
	flex-direction: row;
	gap: 5px;
}

.testi-carousel .owl-dots .owl-dot span {
	width: 14px;
	height: 14px;
	margin: 0px;
	background: #eae8e8 !important;
	display: block;
	-webkit-backface-visibility: visible;
	transition: opacity 0.2s ease;
	border-radius: 50%;
}

.testi-carousel .owl-dots .owl-dot.active span,
.testi-carousel .owl-dots .owl-dot:hover span {
	background: #A8313A !important;
	width: 37px;
	height: 14px;
	border-radius: 25px;
}

/* =================================== */
/* ===========testi-section=====*/
/* =================================== */

/* =================================== */
/* ===========industry-section=====*/
/* =================================== */

.industry-section {
	background: #fff;
}

.industry-section-header {
	margin: 0px 0px 60px 0px;
	text-align: center;
	padding: 0px;
}

.industry-card {
	border-radius: 20px;
	padding: 40px;
	height: 100%;
	transition:
		border-color 0.3s,
		transform 0.3s,
		box-shadow 0.3s;
	position: relative;
	background: #edf0f680;
}

.industry-card::before {
	content: "";
	position: absolute;
	top: 0;
	left: 20px;
	right: 20px;
	height: 3px;
	background: #A8313A;
	border-radius: 0 0 3px 3px;
	transform: scaleX(0);
	transform-origin: left;
	transition: transform 0.4s;
}

.industry-card:hover {
	border-color: rgba(0, 194, 224, 0.35);
	transform: translateY(-5px);
	box-shadow: 0 14px 40px rgba(0, 0, 0, 0.08);
}

.industry-card:hover::before {
	transform: scaleX(1);
}

.industry-icon {
	width: 10px;
	height: 10px;
	border-radius: 50%;
	background: var(--cyan);
	display: inline-block;
	margin-right: 8px;
	margin-bottom: 12px;
}

.industry-card h5 {
	font-weight: 500;
	font-size: 20px;
	line-height: 30px;
	letter-spacing: 0%;
	color: #404040;
	margin: 0px 0px 10px 0px;
	padding: 0px 0px 0px 30px;
	position: relative;
}

.industry-card h5::before {
	content: "\f35a";
	color: #A8313A;
	position: absolute;
	left: 0px;
	top: 5px;
	font: normal normal normal 22px/1 FontAwesome;
}

.industry-card p {
	font-weight: 300;

	font-size: 16px;

	line-height: 26px;
	letter-spacing: 0%;
	color: #404040;
	margin: 0px;
	padding: 0px 0px 0px 30px;
}

/* =================================== */
/* ===========industry-section=====*/
/* =================================== */

/* =================================== */
/* ===========pricing-section=====*/
/* =================================== */

.pricing-section {
	position: relative;
	overflow: hidden;
}

.pricing-section-left {
	border-bottom: 1px solid #404040;
	height: 350px;
}

.pricing-section-left h2 {
	max-width: 60%;
	margin-bottom: 60px;
	font-family: Poppins;
	font-weight: 600;
	font-size: 40px;
	line-height: 50px;
	letter-spacing: 0%;
}

.pricing-info-box {
	background: #1A1C23;
	border-radius: 20px;
	padding: 30px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 50px;
	height: 350px;
	overflow: hidden;
}

.pricing-info-box-left {
	background: #fff;
	border-radius: 20px;
	padding: 30px;
	width: 40%;
	height: 90%;
	position: relative;
}

.pricing-info-box-left h5 {
	font-weight: 500;

	font-size: 16px;

	line-height: 26px;
	letter-spacing: 0%;
	color: #000000;
	margin: 0px 0px 10px 0px;
	padding: 0px;
}

.pricing-info-box-left p {
	font-weight: 300;

	font-size: 16px;

	line-height: 26px;
	letter-spacing: 0%;
	color: #000000;
	margin: 0px 0px 10px 0px;
	padding: 0px;
}

.pricing-info-box-left p::before {
	position: absolute;
	top: 0px;
	left: 0px;
}

.pricing-info-box-left h4 {
	font-weight: 500;
	font-size: 32px;
	line-height: 32px;
	letter-spacing: 0%;
	color: #404040;
	padding: 0px;
	margin: 20px 0px 0px 0px;
}

.pricing-info-box-left h4 span {
	font-weight: 300;
	font-size: 16px;
}

.pricing-info-box-right {
	width: 60%;
	padding: 0px 0px 0px 20px;
}

.pricing-info-box-right h3 {
	font-weight: 600;
	font-size: 32px;
	line-height: 42px;
	color: #fff;
	letter-spacing: 0%;
	margin: 0px 0px 20px 0px;
	padding: 0px;

}

.pricing-info-box-right p {
	font-weight: 400;
	font-size: 16px;
	line-height: 26px;
	color: #fff;
	margin: 0px;
	padding: 0px;
	max-width: 90%;
}

.pricing-info-box-right-butn {
	display: flex;
	justify-content: end;
	align-items: center;
}

.pricing-info-box-right-butn .nav-arrow {
	border: 1px solid #fff;
	border-radius: 50%;
	color: #fff;

	width: 50px;
	height: 50px;
	text-align: center;
	display: flex;
	justify-content: center;
	align-items: center;
	font-size: 20px;
}

.pricing-info-box-right-butn .nav-arrow:hover {
	background: #A8313A;
	border: 1px solid #A8313A;
	color: var(--white);
}

.pricing-butn {
	position: relative;
	bottom: -25px;
	left: 0px;
	right: 0px;
	margin: 0px auto;
	text-align: center;
	background: #1A1C23;
	width: 100%;
	height: 85px;
	border-radius: 20px 20px 0px 0px;
}


.pricing-butn .cmn-butn.red-butn {
	position: absolute;
	width: 90%;
	margin: 0px auto;
	left: 0px;
	right: 0px;
	bottom: 30px;
	padding: 14px 10px;
}


/* =================================== */
/* ===========pricing-section=====*/
/* =================================== */

/* =================================== */
/* ===========pricing-section=====*/
/* =================================== */

.careers-section {
	position: relative;
	overflow: hidden;
}

.careers-bg {
	position: absolute;
	inset: 0;
	background-image: url("../images/careers-bg.png");
	background-size: cover;
	background-position: center;
}

.careers-section .custom-container {
	width: 100%;
	position: relative;
	border-radius: 30px;
	overflow: hidden;
	height: 350px;
}

.careers-content {
	position: relative;
	z-index: 2;
	text-align: center;

	display: flex;
	justify-content: center;
	align-items: center;
	height: 100%;
	flex-direction: column;
}

.careers-content h3 {
	font-weight: 600;
	font-size: 40px;
	line-height: 40px;
	letter-spacing: 0%;
	text-align: center;
	margin: 0px 0px 30px 0px;
	padding: 0px;
	color: #fff;
}

.careers-content p {
	font-weight: 300;
	font-size: 16px;
	line-height: 30px;
	letter-spacing: 0%;
	text-align: center;
	margin: 0px 0px 30px 0px;
	padding: 0px;
	color: #d1d1d1;
}

.btn-explore {
	background: transparent;
	border: 1px solid #fff;
	color: #fff;

	transition: all 0.3s;
}

.btn-explore:hover {
	background: #a8313a;
	transform: translateY(-2px);
	border: 1px solid #a8313a;
	color: #fff;
}

/* =================================== */
/* ===========pricing-section=====*/
/* =================================== */

/* =================================== */
/* ===========cta-section=====*/
/* =================================== */

.cta-section {
	position: relative;
	margin: 100px 0px 0px 0px;
	padding: 0px;
}

.cta-section-inner {
	background: url(../images/contact-bg.png) top left no-repeat;
	background-size: cover;
	border-radius: 30px;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
	height: 400px;
}

.cta-section-inner h2 {
	font-family: Poppins;
	font-weight: 400;

	font-size: 48px;

	line-height: 120%;
	letter-spacing: 0%;
	text-align: center;
	color: #fdfdfd;
	padding: 0px;
	margin: 0px 0px 20px 0px;
}

.cta-section-inner p {
	color: #fdfdfd;
	font-weight: 300;
	font-size: 20px;
	line-height: 34px;
	letter-spacing: 0%;
	text-align: center;
	max-width: 34%;
	margin: 0px 0px 50px 0px;
	padding: 0px;
}

/* =================================== */
/* ===========cta-section=====*/
/* =================================== */

/* =================================== */
/* ===========footer-section=====*/
/* =================================== */

footer {
	background: #1A1C23;
	padding: 260px 0px 0px 0px;
	margin: -200px 0px 0px 0px;
}

.footer-logo img {
	width: 230px;
	height: auto;
	margin-bottom: 16px;
}

footer p.foot-desc {
	font-weight: 400;

	font-size: 14px;

	line-height: 24px;
	letter-spacing: 0px;
	color: #fdfdfd;
	margin: 0px;
	padding: 0px;

	max-width: 300px;
}

.footer-social {
	display: flex;
	gap: 15px;
	margin: 10px 0px;
}

.soc-btn {
	width: 40px;
	height: 40px;
	border-radius: 50%;
	background: #A8313A;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #fff;
	font-size: 20px;
	text-decoration: none;
	transition: all 0.25s;
}

.soc-btn:hover {
	background: #ccc;
	border-color: var(--cyan);
	color: var(--dark);
}

.footer-col-title {
	font-weight: 400;
	font-size: 22px;
	line-height: 100%;
	letter-spacing: 2%;
	color: #fff;
	padding-bottom: 20px;
	margin: 0px 0px 0px 0px;
}

.footer-links {
	list-style: none;
	padding: 0;
}

.footer-links li {
	margin-bottom: 10px;
}

.footer-links a {
	font-weight: 400;

	font-size: 14px;

	line-height: 24px;
	color: #fdfdfd;
	letter-spacing: 0%;

	text-decoration: none;
	transition:
		color 0.25s,
		padding-left 0.25s;
	display: inline-block;
}

.footer-links a:hover {
	color: #a8313a;
	padding-left: 4px;
}

.footer-newsletter-input {
	display: flex;
	gap: 0;
	margin: 20px 0px 0px 0px;
}

.footer-newsletter-input input {
	flex: 1;
	background: #fff;
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-right: none;
	border-radius: 30px 0px 0px 30px;
	padding: 10px 14px;
	color: #404040;
	font-size: 16px;
	outline: none;
	width: 60%;
}

.footer-newsletter-input input::placeholder {
	color: #404040;
}

.footer-newsletter-input input:focus {
	border-color: var(--cyan);
}

.footer-newsletter-input button {
	background: #A8313A;
	padding: 10px 40px;
	border-radius: 0px 30px 30px 0px;
	font-size: 18px;
	color: #fff;
	cursor: pointer;
	transition: background 0.25s;
	border: none;
}

.footer-newsletter-input button:hover {
	background: #000;
}

.footer-bottom {
	background: rgba(0, 0, 0, 0.3);
	margin-top: 50px;
	padding: 14px 0;
}

.footer-bottom-copy {
	color: #fdfdfd;
	font-size: 14px;
	text-align: center;
	line-height: 14px;
}

.footer-bottom-copy a {
	color: #fdfdfd;
}

.footer-bottom-copy a:hover {
	color: #a8313a;
}

/* Giant footer text */
.footer-big-text {
	text-align: center;
	font-weight: 700;
	font-style: Italic;
	font-size: 120px;
	line-height: 100%;
	letter-spacing: 0%;
	text-transform: uppercase;
	color: #898787;
	margin: 50px 0px;
	padding: 0px;
}

/* Giant footer text */

/* =================================== */
/* ===========footer-section=====*/
/* =================================== */

/*================================================
Go Top CSS
=================================================*/
.go-top {
	position: fixed;
	cursor: pointer;
	bottom: 100px;
	right: 20px;
	border-radius: 50%;
	background-color: #a8313a;
	color: #ffffff;
	z-index: 999;
	width: 50px;
	text-align: center;
	height: 50px;
	opacity: 0;
	visibility: hidden;
	font-size: 25px;
	-webkit-transition: var(--transition);
	-webkit-transition: 0.5s;
	transition: 0.5s;
	-webkit-box-shadow: 0px 3px 10px rgba(0, 0, 0, 0.1);
	box-shadow: 0px 3px 10px rgba(0, 0, 0, 0.1);
}

.go-top i {
	position: absolute;
	right: 0;
	left: 0;
	top: 50%;
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
	text-align: center;
	margin-left: auto;
	margin-right: auto;
}

.go-top:hover {
	color: #ffffff;
	-webkit-transition: all 0.5s linear;
	transition: all 0.5s linear;
	background-color: #000;
	border: 1px solid #000;
}

.go-top.active {
	opacity: 1;
	visibility: visible;
	bottom: 25px;
	-webkit-animation: top-bottom 5s infinite linear;
	animation: top-bottom 5s infinite linear;
}

/*================================================
Go Top CSS
=================================================*/


.about-page-content.form {
	padding-left: 100px;
}


.about-page-content.form .form-control {
	padding: 12px 20px;
	font-size: 16px;
}


.about-page-content.form label {
	margin: 12px 0px;
	font-size: 18px;
}

.about-grid {
	padding: 40px 30px;
	border: 1px solid #ccc;
	height: 97%;
	margin-bottom: 20px;
	border-radius: 20px;
	text-align: center;
}


.about-grid .about-grid-content p {
	font-size: 16px;
	line-height: 26px;
}


.about-grid-image {
	width: 300px;
	height: 250px;
	overflow: hidden;
	margin: 0px auto;
}


.about-grid-image img {
	max-width: 100%;
	width: 100%;
	object-fit: contain;
}

.about-grid-content {
	margin-bottom: 40px;
}


.service-image {
	border: 1px solid #ccc;
	border-radius: 20px;
	padding: 30px;
	margin: 0px auto;
}


.about-split .about-page-content {
	padding: 0px 0px 0px 50px;
}


.about-page-content.form h4 {
	font-family: Poppins;
	font-weight: 500;
	font-size: 35px;
	line-height: 45px;
	letter-spacing: 0%;
	color: #404040;
	margin: 15px 0px 20px 0px;
	padding: 0px;
}


.inner-banner-section {
	overflow: hidden;
	position: relative;
}

.why-section {
	position: relative;
	overflow: hidden;
}

.about-page .about-grid-image {
	width: 100%;
	height: 300px;
	border-radius: 10px;
	overflow: hidden;
	margin-bottom: 20px;
}


.about-page .about-grid {
	padding: 25px 25px;

}

.about-page .about-grid h4 {

	font-size: 30px;
	line-height: 30px;
	margin: 0px 0px 15px 0px;

}

.service-content {
	margin: 30px 0px;
	overflow: hidden;
	position: relative;
}


.why-feature-image {
	margin: 0px;
	width: 100%;
	border-radius: 20px;
	overflow: hidden;
}

.why-feature-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.why-feature-content {
	padding: 0px 50px 0px 0px;
	margin: 0px;
}


.bullet-points .about-grid {
	padding: 40px;
	height: 100%;
	text-align: left;


}


/*================================================
end M.B CSS
=================================================*/


.about-grid ul li {
	font-weight: 300;
	font-size: 16px;
	line-height: 36px;
	letter-spacing: 0%;
	padding: 0px 0px 0px 30px;
	margin: 0px;
	position: relative;
}

.about-grid ul li::before {
	content: "\f35a";
	color: #00d1fc;
	position: absolute;
	left: 0px;
	top: 10px;
	font: normal normal normal 16px/1 FontAwesome;
}

.float-anim {
	animation: floatY 4s ease-in-out infinite;
}

.main-menu-more {
	display: none;
}

button.submenu-expand {
	display: none;
}

.banner-left-inner {
	height: 500px;
	position: relative;
	margin: 10px 40px 0px 40px;
	border-radius: 20px;
	overflow: hidden;
}

.banner-left-inner img {
	width: 100%;
	overflow: hidden;
}

.service-card ul {
	background: #EDF0F61A;
	border-radius: 20px;
	padding: 30px;
}

.service-card ul li {
	font-weight: 300;
	font-size: 16px;
	line-height: 36px;
	letter-spacing: 0%;
	color: #d1d1d1;
	padding: 0px 0px 0px 30px;
	margin: 0px;
	position: relative;
}

.service-card ul li::before {
	content: "\f35a";
	color: #A8313A;
	position: absolute;
	left: 0px;
	top: 10px;
	font: normal normal normal 16px/1 FontAwesome;
}

.hero-content-inner {
	position: absolute;
	z-index: 2;
	padding: 0px;
	text-align: center;
	top: 0px;
	display: flex;
	justify-content: center;
	align-items: start;
	flex-direction: column;
	text-align: left;
	left: 60px;
	height: 600px;
}

.hero-content-inner h1 {
	font-family: Poppins;
	font-weight: 600;
	font-size: 60px;
	line-height: 70px;
	letter-spacing: 0%;
	color: #fff;
	margin: 0px 0px 20px 0px;
	padding: 0px;
	max-width: 100%;

}


.about-page-content h3 {
	font-family: Poppins;
	font-weight: 500;
	font-size: 35px;
	line-height: 45px;
	letter-spacing: 0%;
	color: #404040;
	margin: 15px 0px 20px 0px;
	padding: 0px;
}

.about-page-content p {
	font-family: Poppins;
	font-weight: 300;
	font-size: 16px;
	line-height: 30px;
	letter-spacing: 0%;
	color: #404040;
	margin: 0px 0px 20px 0px;
	padding: 0px;
}

.about-grid-content h4 {
	font-weight: 500;
	font-size: 22px;
	line-height: 22px;
	letter-spacing: 0%;
	color: #404040;
	margin: 25px 0px 15px;
	padding: 0px;
}

.about-grid-content p {
	font-family: Poppins;
	font-weight: 300;
	font-size: 20px;
	line-height: 30px;
	letter-spacing: 0%;
	color: #404040;
	margin: 10px 0px 15px 0px;
	padding: 0px;
}


.about-page-content ul li {
	font-family: Poppins;
	font-weight: 300;
	font-size: 16px;
	line-height: 26px;
	letter-spacing: 0%;
	padding: 0px 0px 10px 30px;
	margin: 0px;
	position: relative;
}

.about-page-content ul li::before {
	content: "\f35a";
	color: #a8313a;
	position: absolute;
	left: 0px;
	top: 10px;
	font: normal normal normal 16px/1 FontAwesome;
}

form label {
	margin: 15px 0 2px;
}

button.btn-apply {
	font-family: Poppins;
	padding: 10px 20px;
	border-radius: 50px;
	border: 1px solid #000000;
	background: #000;
	color: #ffffff;
	margin: 15px 0;
}

.form-control {
	border-radius: 10px !important;
}

.service-content .row {
	display: flex;
	align-content: center;
	align-items: center;
	justify-content: space-between;
}

.why-section-main-heading h2 {
	font-family: Poppins;
	font-weight: 500;
	font-size: 40px;
	line-height: 45px;
	letter-spacing: 0%;
	color: #404040;
	margin: 50px 0px 20px 0px;
	padding: 0px;
	text-align: center;
}

.why-feature-content h3 {
	font-family: Poppins;
	font-weight: 500;
	font-size: 30px;
	line-height: 50px;
	letter-spacing: 0%;
	color: #404040;
	max-width: 100%;
	margin: 15px 0px 20px 0px;
}


.why-feature-content p {
	font-family: Poppins;
	font-weight: 300;
	font-size: 16px;
	line-height: 30px;
	letter-spacing: 0%;
	color: #404040;
	margin: 0px 0px 20px 0px;
	padding: 0px;
}

.conferencing-main-content h3 {
	font-family: Poppins;
	font-weight: 500;
	font-size: 40px;
	line-height: 45px;
	letter-spacing: 0%;
	color: #404040;
	margin: 50px 0px 20px 0px;
	padding: 0px;
	text-align: center;
}

.conferencing-main-content p {
	font-family: Poppins;
	font-weight: 300;
	font-size: 18px;
	line-height: 28px;
	letter-spacing: 0%;
	color: #404040;
	margin: 0px 0px 30px 0px;
	padding: 0px;
	text-align: center;
}

.header-section {
	overflow: unset;
}

.about-grid h4 {
	font-family: Poppins;
	font-weight: 500;
	font-size: 25px;
	line-height: 34px;
	letter-spacing: 0;
	color: #404040;
	margin: 0px 0px 30px 0px;
	padding: 0px;
}

.about-page-content ul {
	margin: 20px;
}

.about-page-content p strong {
	font-weight: 600;
}

.row.testimonial {
	display: flex;
	align-items: center;
	margin: 20px 0 40px;
}

.testimonial-author img {
	width: 220px;
}

.about-page-content .addresscard {
	margin: 0 0 20px;
	padding: 20px;
	position: relative;
	width: 100%;
	background: #fff;
	border-radius: 20px;
	min-height: 170px;
	box-shadow: 0 18px 40px -10px rgba(51, 51, 51, 0.32);
}

.about-page-content .addresscard h5 {
	font-weight: 700;
	font-size: 27px;
	line-height: 35px;
	letter-spacing: 0%;
	text-transform: uppercase;
	color: #0b1544;
	margin: 0px 0px 15px 0px;
	padding: 0px;
	text-align: center;
}

.about-page-content .addresscard p {
	font-family: Poppins;
	font-weight: 400;
	font-size: 20px;
	line-height: 28px;
	letter-spacing: 0%;
	color: #000;
	padding: 0px 0px 20px 0px;
	margin: 0px;
	text-align: center;
}

.addresscard-icon {
	margin: 5px auto;
	padding: 10px 0px;
	background: top;
	width: 45px;
	height: 45px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
}


body.page-template-template-network .inner-banner-section .banner-left-inner {
	height: 895px;
}

.about-right-card-header p {
	font-family: Poppins;
	font-weight: 300;
	font-size: 20px;
	line-height: 30px;
	letter-spacing: 0%;
	color: #404040;
	margin: 0px 0px 30px 0px;
	padding: 0px;
}


.industry-card.blog-card {
	padding: 20px 20px 50px 20px;
}

.industry-card.blog-card img {
	height: 300px;
	border-radius: 15px;
	margin: 0px 0px 20px 0px;
}

.industry-card.blog-card .cmn-butn.red-butn span img {
	height: auto;
	margin: 0px;
}

.industry-card.blog-card h4 {
	font-size: 22px;
	margin: 0px 0px 30px 0px;
	height: 65px;
	line-height: 30px;
}












