@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=DM+Serif+Display:ital@0;1&family=Outfit:wght@100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@100..900&display=swap');

html {
	font-size: 16px;
	overflow-x: clip;
}

body {
	position: relative;
	font-family: "Inter", sans-serif;
	background: #fff;
	overflow-x: clip;
}

/*.container {
    max-width: 1170px;
}*/

:root {
	--white: #ffffff;
	--black: #000;
	--gary-color: #727272;
	--lightgary-color: #b2b9bd;
	--theme-color: #0706EF;
	--primary-color: #1C3F39;
}

p,
a,
button,
h5,
h6 {
	font-size: 1rem;
	font-weight: 400;
	line-height: 2;
	color: #828282;
	font-family: "Inter", sans-serif;
}

h1,
h2,
h3,
h4,
span {
	color: #000;
	font-family: "Outfit", sans-serif;
}

.img-auto {
	display: block;
	max-width: 100%;
	margin: 0 auto;
}

a,
button {
	text-decoration: none !important;
	-webkit-transition: all 0.5s ease;
	transition: all 0.5s ease;
}

a:hover,
button:hover {
	-webkit-transition: all 0.5s ease;
	transition: all 0.5s ease;
}

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

figure {
	margin: 0;
}

section {
	padding: 5rem 0;
	overflow: clip;
}

/* Lenis */
html.lenis {
	height: auto;
}

.lenis.lenis-smooth {
	scroll-behavior: auto;
}

.lenis.lenis-smooth [data-lenis-prevent] {
	overscroll-behavior: contain;
}

.lenis.lenis-stopped {
	overflow: hidden;
}

.lenis.lenis-scrolling iframe {
	pointer-events: none;
}

/* loader */
.preLoader {
	width: 100%;
	height: 100%;
	z-index: 1111;
	display: flex;
	align-items: center;
	justify-content: center;
	position: fixed;
	top: 0;
	bottom: 0;
	right: 0;
	left: 0;
}

.preLoader.black {
	background-color: var(--primary-color);
	z-index: 11113;
}

.preLoader.white {
	z-index: 11112;
	background-color: var(--theme-color);
}

/* loader */

/* Cursor Start */

.mouse-cursor {
	position: fixed;
	left: 0;
	top: 0;
	pointer-events: none;
	border-radius: 50%;
	-webkit-transform: translateZ(0);
	transform: translateZ(0);
	visibility: hidden;
}

.cursor-inner {
	margin-left: 2px;
	margin-top: 2px;
	width: 7px;
	height: 7px;
	z-index: 10000001;
	background-color: var(--primary);
	-webkit-transition: width 0.3s ease-in-out, height 0.3s ease-in-out, margin 0.3s ease-in-out, opacity 0.3s ease-in-out;
	-o-transition: width 0.3s ease-in-out, height 0.3s ease-in-out, margin 0.3s ease-in-out, opacity 0.3s ease-in-out;
	transition: width 0.3s ease-in-out, height 0.3s ease-in-out, margin 0.3s ease-in-out, opacity 0.3s ease-in-out;
}

.cursor-inner.cursor-hover {
	margin-left: -10px;
	margin-top: -10px;
	width: 30px;
	height: 30px;
	background-color: var(--primary);
	opacity: 0.3;
}

/* Cursor End */

:is(.heading, .main-heading) .char {
	display: inline !important;
}

.heading-sm {
	font-size: 1.5rem;
}

/* btn css */

.themeBtn {
	background: var(--theme-color);
	font-size: 1rem;
	color: var(--white);
	text-transform: capitalize;
	font-weight: 600;
	display: inline-block;
	padding: 1.32em 6.92em 1.32em 2.92em;
	border-radius: 7px;
	line-height: normal;
	position: relative;
	border: 1px solid transparent;
}

.themeBtn.borderBtn {
	background: transparent;
	border: 1px solid #fff;
	padding: 1.04em 2em;
}

/* btn css */

/* mouse animation css  */

.bounce-element {
	animation: bounce 0.9s infinite alternate;
	-webkit-animation: bounce 0.9s infinite alternate;
}

@keyframes bounce {
	from {
		transform: translateY(0px);
	}

	to {
		transform: translateY(-15px);
	}
}

@-webkit-keyframes bounce {
	from {
		transform: translateY(0px);
	}

	to {
		transform: translateY(-15px);
	}
}

.mouse {
	position: absolute;
	bottom: 1rem;
	left: 0;
	right: 0;
	margin: auto;
	z-index: 11;
	text-align: center;
}

/* mouse animation css  */

/* navigation css */
.header {
	width: 100%;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 999;
}

.top-bar {
	padding: 0.55rem 10rem;
	background: var(--theme-color);
}

ul.cal-list {
	display: flex;
	align-items: center;
}

ul.top-social {
	display: flex;
	align-items: center;
	justify-content: flex-end;
	gap: 0.5rem;
}

ul.cal-list li a {
	font-size: 1.2rem;
	color: var(--white);
	display: flex;
	align-items: center;
	gap: 10px;
	border-right: 1px solid var(--white);
	padding: 0 1.2rem;
}

ul.cal-list li a span {
	color: var(--white);
}

ul.cal-list li:first-child a {
	padding-left: 0;
}

ul.cal-list li:last-child a {
	padding-right: 0;
	border: 0;
}

ul.top-social li a {
	width: 35px;
	height: 35px;
	background: var(--white);
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 5px;
	font-size: 1rem;
	color: var(--black);
}

.an-navbar {
	margin-top: 2rem;
	padding: 0 10rem;
}

.navbar-nav {
	align-items: center;
	justify-content: space-between;
	/* width: 100%; */
	gap: 2rem;
}

.navbar-nav .nav-item .nav-link {
	font-size: 1rem;
	color: #104B59;
	text-transform: capitalize;
	font-weight: 600;
	padding: 0 0;
	display: inline-block;
	font-family: "Outfit", sans-serif;
}

.navbar .drop-down .drop-down ul {
	top: 0;
	left: calc(100% - 0px);
}

.navbar .drop-down .drop-down:hover ul {
	top: 0;
}

.navbar .drop-down .drop-down a:after {
	transform: rotate(-95deg);
	display: inline-block;
	position: absolute;
	right: 10px;
}

.navbar .nav-item.drop-down {
	position: relative;
	z-index: 1;
}

.navbar .drop-down>a:after {
	content: '\f0d7';
	font-family: 'Font Awesome 5 Pro';
	font-weight: 900;
	padding-left: 5px;
	color: var(--secondary);
}

.navbar .drop-down ul {
	display: block;
	position: absolute;
	top: calc(100% + 30px);
	z-index: 99;
	opacity: 0;
	visibility: hidden;
	padding: 0;
	background: var(--white);
	box-shadow: 0px 0px 30px rgb(127 137 161 / 25%);
	transition: 0.3s;
}

.navbar .drop-down:hover>ul {
	opacity: 1;
	top: 100%;
	visibility: visible;
}

.navbar .drop-down li {
	min-width: 180px;
	position: relative;
}

.navbar .drop-down ul a {
	padding: 0.25em 0.75em;
	font-size: 1rem;
	color: #104B59;
	text-transform: capitalize;
	font-weight: 600;
	display: block;
	font-family: "Outfit", sans-serif;
}

.navbar .drop-down ul a:hover {
	background: var(--secondary);
	color: #fff;
}


/* navigation css */

/* slider css */

.mainSlider {
	height: 950px;
	position: relative;
	z-index: 1;
	padding: 0;
}

.homeSlider.swiper-container {
	width: 100%;
	height: 100%;
	position: absolute;
	left: 0;
	top: 0;
	z-index: 0;
}

.homeSlider.swiper-container .swiper-slide {
	/* overflow: hidden; */
}

.homeSlider .slide-inner {
	width: 100%;
	height: 100%;
	position: absolute;
	left: 0;
	top: 0;
	z-index: 1;
	background-size: cover;
	background-position: center;
	display: flex;
	flex-wrap: wrap;
	flex-direction: column;
	justify-content: center;
	align-items: center;
}

.slideContent {
	text-align: left;
	padding: 0 8rem 0 4rem;
}

.slideContent .subTitle {
	font-size: 1.25rem;
	color: var(--white);
	width: 327px;
	height: 40px;
	background: var(--theme-color);
	margin: 0 0 1.7rem;
	border-radius: 50px;
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
}

.slideContent .subTitle:before {
	content: '';
	position: absolute;
	left: 15px;
	top: 0;
	bottom: 0;
	margin: auto;
	width: 11px;
	height: 11px;
	background: var(--white);
	border-radius: 50%;
}

.slideContent h4:after {
	content: '';
	position: absolute;
	right: 15px;
	top: 0;
	bottom: 0;
	margin: auto;
	width: 11px;
	height: 11px;
	background: var(--white);
	border-radius: 50%;
}

.slideContent :is(h2, .slideContent .title) {
	font-size: 5rem;
	color: #01323F;
	line-height: 5.3125rem;
	margin: 0 0 2rem;
	text-transform: capitalize;
	font-weight: 600;
}

.slideContent p {
	font-size: 1.25rem;
	color: #505D7B;
	line-height: 1.875rem;
	margin: 0 0 3rem;
}

.themeBtn span {
	width: 47px;
	height: 47px;
	background: var(--white);
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 6px;
	position: absolute;
	right: 10px;
	top: 0;
	bottom: 0;
	margin: auto;
}

.vectorimg {
	position: absolute;
	right: 0;
	bottom: 0;
	z-index: 1;
}

.future-btn {
	width: 295px;
	height: 79px;
	background: var(--white);
	position: absolute;
	left: 0;
	right: 19rem;
	margin: auto;
	z-index: 11;
	display: flex;
	align-items: center;
	justify-content: center;
	bottom: 19rem;
	box-shadow: 0 4px 4px 0 rgb(0 0 0 / 25%);
	gap: 16px;
	padding: 0 1rem;
	border-radius: 50px;
}

a.future-btn span {
	width: 51px;
	height: 51px;
	background: #9191FF;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	color: var(--white);
	font-size: 1.2rem;
}

.future-btn div {
	font-size: 1rem;
	color: #01323F;
	font-weight: 500;
	line-height: 1.3625rem;
}

/* slider css */

.provide-main {
	background: url(../images/providebg.webp) no-repeat top center/ cover;
	padding: 10rem 0;
}

.sub-heading {
	color: var(--white);
	background: var(--theme-color);
	margin: 0 0 2.5rem;
	display: inline-block;
	padding: 1px 12.6px;
	border-radius: 50px;
	box-shadow: 0 4px 4px 0 rgb(0 0 0 / 25%);
}

.heading {
	font-size: 3rem;
	color: var(--white);
	font-weight: 600;
	line-height: 1;
}

p.para {
	font-size: 1.125rem;
	color: var(--white);
	margin: 0;
	line-height: 1.75rem;
}


.provide-main .row+.row {
	margin-top: 8rem;
}


.provide-card :is(h2, .title) {
	font-size: 1.625rem;
	color: var(--white);
	font-weight: 600;
}

.provide-card figure {
	margin: 0 0 3rem;
}

.provide-card p {
	font-size: 14px;
	color: var(--white);
	line-height: 1.3625rem;
	margin: 0 0 1.2rem;
	font-family: "Outfit", sans-serif;
}

.provide-list ul {
	display: flex;
	flex-wrap: wrap;
}

.provide-list ul li {
	width: 25%;
	border-right: 1px solid rgb(229 227 227 / 30%);
	padding: 0 2rem;
}

.provide-list ul li:first-child {
	padding-left: 0;
}

.provide-list ul li:is(:nth-child(4), :last-child) {
	padding-right: 0;
	border: 0;
}

.provide-card a {
	color: var(--white);
	font-size: 1.3rem;
}

.vision-img {
	position: relative;
	text-align: right;
}

.vision-img .img-1,
.vision-img .img-2 {
	border-radius: 20px;
}

.vision-img .img-2 {
	position: absolute;
	left: -2rem;
	bottom: -6rem;
}

.vision-img .img-3 {
	position: absolute;
	left: 0;
	right: 0;
	margin: auto;
	z-index: -1;
}

.main-heading {
	font-size: 2.5rem;
	color: #1C3F39;
	font-weight: 600;
	line-height: 2.75rem;
}

.mission-content .main-heading {
	margin-bottom: 1.8rem;
}

.mission-content {
	padding-right: 4.5rem;
}

.mission-content p {
	font-size: 1.125rem;
	color: #505D7B;
	line-height: 1.75rem;
	margin: 0 0 1.5rem;
}

ul.rank {
	display: flex;
	gap: 3rem;
}

ul.rank li h2 {
	font-size: 3.5rem;
	color: #104B59;
	font-weight: 600;
}

ul.rank li h3 {
	font-size: 1.25rem;
	color: #104B59;
	font-weight: 600;
	margin: 0;
}

.mission-main {
	padding: 6rem 0 10rem;
}

.choose-main {
	background: url(../images/choosebg.webp) no-repeat top center/ cover;
	position: relative;
	padding: 6.5rem 0 12rem;
}

.chooseimg-1 {
	position: absolute;
	left: 0;
	bottom: 2rem;
}

.chooseimg-2 {
	position: absolute;
	right: 0;
	top: 9rem;
}

.title .heading {
	color: #1C3F39;
}

.title {
	margin-bottom: 6rem;
}

.choose-card {
	text-align: center;
}

.choose-card h2 {
	font-size: 1.375rem;
	color: #1C3F39;
	font-weight: 600;
	margin: 2.5rem 0 2rem;
}

.choose-card p {
	color: #505D7B;
	line-height: 1.625rem;
	margin: 0;
}

.case-box figure {
	position: relative;
	border-radius: 16px;
	box-shadow: 0 4px 4px 0 rgb(0 0 0 / 25%);
}

.case-box figure img {
	width: 100%;
	border-radius: 16px;
	height: 417px;
	object-fit: cover;
}

.case-box figure .overlay {
	position: absolute;
	bottom: 0;
	left: 0;
	padding: 3rem 3rem;
	right: 0;
}

.caseSlider {
	margin-right: -38rem;
	padding: 0 0 40px;
}

.case-box figure .overlay h2 {
	font-size: 1.5rem;
	color: var(--white);
	line-height: 1.4;
	margin: 0;
}

.case-box figure:before {
	content: '';
	position: absolute;
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
	background: linear-gradient(360deg, #076177 12%, rgb(248 197 3 / 50%) 100%);
	border-radius: 16px;
	opacity: 72%;
}

.case-main {
	position: relative;
	padding-bottom: 0;
	margin-bottom: -18rem;
}

.case-main .swiper-button-next {
	right: 16rem;
	top: 8rem;
	width: 60px;
	height: 60px;
	border: 1px solid #006379;
	border-radius: 50%;
	-webkit-transition: all 0.5s ease;
	transition: all 0.5s ease;
}

.case-main .swiper-button-next:after {
	font-size: 1.2rem;
	color: #006379;
	-webkit-transition: all 0.5s ease;
	transition: all 0.5s ease;
}

.case-main .swiper-button-prev {
	right: 21rem;
	top: 8rem;
	width: 60px;
	height: 60px;
	border: 1px solid #006379;
	border-radius: 50%;
	left: auto;
	-webkit-transition: all 0.5s ease;
	transition: all 0.5s ease;
}

.case-main .swiper-button-prev:after {
	font-size: 1.2rem;
	color: #006379;
	-webkit-transition: all 0.5s ease;
	transition: all 0.5s ease;
}

.logoSlider .swiper-wrapper {
	align-items: center;
}

.client-main {
	background: url(../images/clientbg.webp) no-repeat top center/ cover;
	padding: 20rem 0 20rem;
}

.logoSlider .swiper-wrapper a img {
	display: table;
	margin: auto;
}

.testi-card {
	/* background: var(--white); */
	/* border-radius: 10px; */
	position: relative;
	/* padding: 2rem 3rem; */
}

.quote {
	position: absolute;
	right: 60px;
	top: 40px;
	z-index: 11;
}

.testi-content figure {
	position: absolute;
	top: -50px;
	z-index: 1;
	display: inline-block;
	text-align: center;
	box-shadow: 0px 8px 0px 0px var(--theme-color);
	border-radius: 50%;
}

.reviewSlider {
	padding: 4rem 0;
}

.testi-content {
	position: relative;
	z-index: 1;
	background: #fff;
	padding: 5rem 4rem 2.2rem;
	border-radius: 10px;
}

.testi-content p {
	font-size: 1.125rem;
	color: #2E2E2E;
	line-height: 1.75rem;
	width: 90%;
	margin: 0 0 1.7rem;
}

.testi-content ul {
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.testi-content ul li:first-child {
	display: flex;
	align-items: center;
	gap: 13px;
}

.testi-content ul li div {
	font-size: 1rem;
	color: var(--black);
	font-weight: bold;
}

.testi-content ul li .star {
	color: var(--theme-color);
	font-size: 1.2rem;
}

.testi-content ul li h2 {
	font-size: 1.25rem;
	color: var(--black);
	font-weight: bold;
	margin: 0;
}

.testi-content ul li h5 {
	font-size: 14px;
	color: var(--black);
	font-weight: 600;
	margin: 0;
}

.testi-card .swiper-button-prev:after {
	display: none;
}

.testi-card .swiper-button-prev {
	top: auto;
	left: 2rem;
}

.testi-card .swiper-button-prev span {
	display: flex;
	align-items: center;
	gap: 10px;
	font-size: 1rem;
	color: var(--white);
	font-weight: 600;
	font-family: "Outfit", sans-serif;
}

.testi-card .swiper-button-prev span i {
	font-size: 2.5rem;
}

.testi-card .swiper-button-next {
	top: auto;
	left: 9rem;
}

.testi-card .swiper-button-next:after {
	display: none;
}

.testi-card .swiper-button-next span {
	display: flex;
	align-items: center;
	gap: 10px;
	font-size: 1rem;
	color: var(--white);
	font-weight: 600;
	font-family: "Outfit", sans-serif;
}

.testi-card .swiper-button-next span i {
	font-size: 2.5rem;
}

.ensure-main {
	padding: 0;
	margin-top: -9rem;
}

.ensure-card {
	background: var(--theme-color);
	border-radius: 20px;
	padding: 0 4rem;
	position: relative;
	display: flex;
	align-items: center;
	height: 271px;
	justify-content: space-between;
	z-index: 1;
	overflow: hidden;
}

.ensure-card:before {
	content: '';
	position: absolute;
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
	border: 1px dashed #fff;
	border-radius: 20px;
	width: 98.5%;
	height: 96%;
	margin: auto;
	z-index: -1;
}

.ensure-card img {
	position: absolute;
	right: 6.5rem;
	z-index: 1;
}

.ensure-card div {
	flex: 0 0 46%;
	text-align: center;
}

.ensure-card h2 {
	font-size: 2.5rem;
	color: var(--white);
	font-weight: 600;
	line-height: 2.625rem;
	margin: 0 0 15px;
}

.ensure-card p {
	color: var(--white);
	line-height: 1.625rem;
	margin: 0;
}

.ensure-card a {
	position: relative;
	z-index: 1;
	margin-left: auto;
	background: var(--white);
	border-radius: 10px;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 14px;
	box-shadow: 0 0 0 3px rgb(255 255 255 / 30%);
	width: fit-content;
	padding: 0.9rem 2rem 0.9rem 3.5rem;
	font-size: 14px;
	color: #1C3F39;
	font-weight: 500;
}

.ensure-card a span {
	width: 29px;
	height: 29px;
	background: var(--theme-color);
	border-radius: 50%;
	position: absolute;
	left: 13px;
}

.client-main .row+.row {
	margin-top: 8rem;
}

.faq-main {
	margin-top: -151px;
	background: url(../images/faqjpg.webp) no-repeat top center/ cover;
	padding-top: 17rem;
	position: relative;
}

.faq-main .mission-content .heading {
	color: #1C3F39;
}

.faq-main .mission-content {
	padding-right: 3.5rem;
}


.faq-main #accordion {
	border: 0;
	border-radius: 50px;
}

.faq-main #accordion .card {
	border: none;
	/* border-bottom: 0; */
	/* border-radius: 50px; */
	/* box-shadow: 0px 4px 20px 0px rgb(180 193 208 / 25%); */
	/* padding: 0rem 1rem; */
	background: transparent;
}

.faq-main #accordion .card .btn-link {
	--height: 5rem;
	--width: 4.5rem;
	width: 100%;
	display: flex;
	align-items: center;
	color: #1C3F39;
	padding: 0;
	border: 0;
	font-size: 1.25rem;
	border-radius: 5px;
	/* background-color: #363636; */
	text-decoration: none;
	overflow: hidden;
	padding-left: 1.7rem;
	border-bottom-left-radius: 0;
	font-weight: 600;
	font-family: "Outfit", sans-serif;
	border-radius: 50px;
	box-shadow: 0px 4px 20px 0px rgb(180 193 208 / 25%);
	padding: 1.13rem 2.5rem;
	background: var(--white);
}

.faq-main #accordion .card .btn-link span {
	display: flex;
	align-items: center;
	justify-content: center;
	height: var(--height);
	margin-right: 2rem;
	font-size: 1.875rem;
}

.faq-main #accordion .card .btn-link i {
	display: flex;
	align-items: center;
	justify-content: center;
	color: #101771;
	width: 32px;
	height: 32px;
	/* margin-left: auto; */
	background: #F4F4FF;
	font-size: 14px;
	border-radius: 50px;
	position: absolute;
	right: 20px;
}

.faq-main #accordion .card .btn-link i::before {
	content: '\f068';
}

.faq-main #accordion .card .btn-link.collapsed i::before {
	content: '\f067';
}

.faq-main #accordion .card .btn-link.collapsed i {
	color: #101771;
	/* background: #232323; */
}

.faq-main #accordion .card+.card {
	margin-top: 1.5rem;
}

.faq-main #accordion .card .card-body {
	padding: 1.8rem 1rem 0.5rem 0rem;
}

.faq-main #accordion .card .card-body p {
	color: #505D7B;
	font-size: 1rem;
	font-weight: 400;
	padding-left: 2em;
	margin: 0;
	line-height: 1.625rem;
}

.faq-main.bg-purple h4 {
	color: #000;
	font-size: 3.125rem;
	text-transform: uppercase;
	font-weight: 500;
	text-align: center;
	margin-bottom: 2rem;
}

.faq-main #accordion .card .btn-link[aria-expanded="true"] {
	background: #104553;
	color: var(--white);
}

.faq-main #accordion .card .btn-link[aria-expanded="true"] i {
	background: rgb(255 255 255 / 20%);
	color: var(--white);
}

.faqvector-2 {
	position: absolute;
	right: 0;
	bottom: 0;
}

.blog-main .mission-content .heading {
	color: #1C3F39;
}

.blog-card {
	background: rgb(255 255 255 / 2%);
	box-shadow: 0 10px 30px 0 rgb(137 151 186 / 15%);
	border-radius: 10px;
	margin: 20px;
}

:is(.blogSlider, .testimonialSlider) {
	padding: 1rem 0 5.5rem;
}

.blog-card figure {
	position: relative;
}

.blog-card figure img {
	border-top-left-radius: 10px;
	border-top-right-radius: 10px;
}

.blog-card figure span {
	color: var(--white);
	background: var(--theme-color);
	display: inline-block;
	padding: 6px 25px;
	border-radius: 0;
	box-shadow: 0 4px 4px 0 rgb(0 0 0 / 25%);
	position: absolute;
	right: 0;
	bottom: -15px;
	text-transform: uppercase;
	border-top-left-radius: 5px;
	border-bottom-left-radius: 5px;
}

.userset {
	display: flex;
	align-items: center;
	padding: 1.3rem 2rem;
	gap: 1rem;
	border-bottom: 1px solid #EEEEEE;
}

.userset span {
	flex-shrink: 0;
}

.userset span img {
	box-shadow: 0 0 0px 4px #D9D9D9;
	border-radius: 50%;
}

.userset h2 {
	font-size: 1rem;
	color: #1C3F39;
	margin: 0 0 5px;
}

.userset h5 {
	line-height: normal;
	font-size: 13px;
	color: #505D7B;
	margin: 0;
}

.blog-content {
	padding: 1.8rem 2rem 2rem;
}

.blog-content h2 {
	font-size: 1.5rem;
	color: #1C3F39;
	font-weight: 600;
	line-height: 1.4;
	width: 90%;
	margin-bottom: 20px;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

.blog-content p {
	color: #505D7B;
	line-height: 1.625rem;
	margin: 0 0 20px;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	text-overflow: ellipsis;
	overflow: hidden;
}

.blog-content a {
	font-size: 14px;
	color: #1C3F39;
	font-weight: bold;
	font-family: "Outfit", sans-serif;
	display: flex;
	align-items: center;
	gap: 10px;
}

:is(.blogSlider, .testimonialSlider) .swiper-pagination-bullet {
	width: 30px;
	height: 30px;
	background: transparent;
	opacity: 1;
	border: 1px solid transparent;
	position: relative;
}

:is(.blogSlider, .testimonialSlider) .swiper-pagination-bullet:before {
	content: '';
	position: absolute;
	width: 6px;
	height: 6px;
	background: #505D7B;
	margin: auto;
	inset: 0;
	border-radius: 50%;
}

:is(.blogSlider, .testimonialSlider) .swiper-pagination-bullet-active {
	border-color: var(--theme-color);
}

:is(.blogSlider, .testimonialSlider) .swiper-pagination-bullet-active:before {
	background: var(--theme-color);
}

.track-main {
	background: url(../images/bg-ft.webp) no-repeat top center/ cover;
	padding: 3.07rem 0;
}

ul.track-list li {
	display: flex;
	align-items: center;
	gap: 3rem;
}

ul.track-list li div {
	border-left: 5px solid var(--theme-color);
	padding-left: 2.5rem;
}

ul.track-list li div h2 {
	font-size: 1.5rem;
	color: var(--white);
	font-weight: 600;
	margin: 0;
}

ul.track-list li div p {
	font-size: 1.25rem;
	color: var(--white);
	margin: 0.5rem 0 0;
	line-height: 1.25;
}

.subscribe-form {
	display: flex;
	align-items: center;
	gap: 1rem;
	position: relative;
}

.subscribe-form input {
	width: 351px;
	height: 48px;
	flex-shrink: 0;
	border: 0;
	font-size: 14px;
	padding: 0 1.3rem;
	border-radius: 6px;
}

.subscribe-form .themeBtn {
	padding: 0.88em 2.46em;
	border: 0;
}

/* footer css start */

footer {
	background: url(../images/footerbg.webp) no-repeat top center/ cover;
	padding-top: 4rem;
}

.suport-card {
	background: var(--theme-color);
	border-radius: 10px;
	padding: 2rem 3rem 2.5rem;
}

.suport-card .d-flex {
	align-items: center;
	gap: 1rem;
	margin-bottom: 1rem;
}

.suport-card .d-flex figure {
	width: 58px;
	height: 58px;
	background: var(--white);
	border-radius: 50%;
	flex-shrink: 0;
	display: flex;
	align-items: center;
	justify-content: center;
}

.suport-card .d-flex h2 {
	font-size: 1.125rem;
	color: var(--white);
	font-weight: 600;
	line-height: 1.625rem;
	margin: 0;
	padding-right: 3rem;
}

.suport-card p {
	color: var(--white);
	line-height: 1.625rem;
	width: 88%;
	margin: 0 0 20px;
}

.suport-card .themeBtn {
	padding: 1.32em 2.92em;
	background: var(--white);
	color: var(--black);
	width: 100%;
	text-align: center;
}

.quickList h2 {
	font-size: 1.25rem;
	color: var(--white);
	font-weight: 600;
	margin: 0 0 1.5rem;
}

.quickList ul li a {
	font-size: 1rem;
	color: var(--white);
	font-weight: 400;
}

.quickList ul li+li {
	margin-top: 0.5rem;
}

.footer-call ul {
	display: flex;
	align-items: center;
	background: rgb(255 255 255 / 5%);
	border-radius: 10px;
	padding: 1.5rem 5rem;
	margin-top: 3rem;
	justify-content: space-between;
}

.footer-call ul li {
	display: flex;
	align-items: flex-end;
	gap: 15px;
}

.footer-call ul li figure {
	width: 59px;
	height: 59px;
	border: 1px dashed var(--white);
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	flex-shrink: 0;
}

.footer-call ul li h2 {
	font-size: 12px;
	color: var(--white);
	font-weight: 600;
	margin: 0 0 0;
}

.footer-call ul li a {
	font-size: 1rem;
	color: var(--white);
	font-weight: 600;
	font-family: "Outfit", sans-serif;
}

.copyRight p {
	font-size: 15px;
	color: var(--white);
	margin: 0;
	line-height: normal;
}

.copyRight ul {
	display: flex;
	align-items: center;
	gap: 13px;
	justify-content: flex-end;
}

.copyRight ul li a {
	font-size: 15px;
	color: var(--white);
}

.copyRight ul li {
	color: var(--white);
}

.copyRight {
	padding: 2.5rem 0;
}

/* footer css end */

.copyRight ul li a:hover,
.quickList ul li a:hover {
	color: gray;
}

.suport-card .themeBtn:hover,
.subscribe-form .themeBtn:hover,
.themeBtn:hover,
ul.top-social li a:hover,
.future-btn:hover {
	background: var(--primary-color);
	color: var(--white);
}

.future-btn:hover div {
	color: var(--white);
}

.case-main .swiper-button-next:hover,
.case-main .swiper-button-prev:hover {
	background: #006379;
	border-color: #006379;
}

.case-main .swiper-button-next:hover:after,
.case-main .swiper-button-prev:hover:after {
	color: var(--white);
}

/* Innerpages */
/* Pagetitle */
.pagetitle {
	background: #F3F7FA;
	height: 700px;
}

.pagetitle .vectorimg {
	bottom: 5rem;
}

.pagetitle .slideContent {
	text-align: left;
	padding: 0 0 0 10rem;
}

/* About Us Page */
.about {
	position: relative;
}

.about::before {
	content: '';
	width: 100%;
	height: 77%;
	background: var(--theme-color);
	position: absolute;
	inset: 0;
}

.about__content .sub-heading {
	color: var(--theme-color);
	background: var(--white);
}

.about__content p {
	color: var(--white);
}

.awards__content {
	position: relative;
}

.awards__content figure {
	width: 100%;
	height: 100%;
}

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

.awards__contentInfo {
	width: 100%;
	position: absolute;
	top: 50%;
	left: 0;
	transform: translateY(-50%);
	text-align: center;
}

.awards__contentInfo h2 {
	font-size: 9.25rem;
	line-height: 0.95;
	color: var(--theme-color);
}

.awards__contentInfo h2 sup {
	font-size: 6rem;
}

.awards__contentInfo h2 span {
	font-size: 1.5rem;
	display: block;
}

.awards__logos {
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	gap: 1rem 0;
}

.awards__logosImg {
	width: 32%;
	height: 150px;
	background: var(--white);
	border: 1px solid #EEEEEE;
	display: inline-flex;
	justify-content: center;
	align-items: center;
}

.awards__logosImg img {
	width: 45%;
	transition: all 300ms ease-in-out;
}

.awards__logosImg:hover img {
	transform: scale(1.1);
}

.experience {
	background: url(../images/providebg.webp) no-repeat center/cover;
}

.experience-card {
	width: 100%;
	height: 100%;
	position: relative;
	display: flex;
	align-items: flex-start;
	gap: 1rem;
	border: 1px dashed #07847F;
	border-radius: 1.25rem;
	overflow: hidden;
	padding: 2rem 1.5rem;
}

.experience-card:hover::before {
	background: var(--primary-color);
}

.experience-card::before {
	content: "";
	width: 100%;
	height: 100%;
	position: absolute;
	inset: 0;
	filter: blur(80px);
	background: #167C92;
}

.experience-card>* {
	position: relative;
	z-index: 1;
}

.experience-card__img img {
	max-width: 60px;
}

.experience-card__content h4 {
	color: var(--white);
	font-size: 2.5rem;
	font-weight: bold;
}

.experience-card__content h4 span {
	color: var(--white);
	display: block;
	font-size: 1.125rem;
	font-weight: normal;
}

.team {
	background: url(../images/choosebg.webp) no-repeat center/cover;
	position: relative;
}

.teamVector--left {
	position: absolute;
	bottom: 0;
	left: 0;
}

.teamVector--right {
	position: absolute;
	top: 0;
	right: 0;
}

.team-card {
	width: 100%;
	height: 385px;
	position: relative;
	border-radius: 1rem;
	overflow: hidden;
}

.team-card__img {
	width: 100%;
	height: 100%;
	overflow: hidden;
}

.team-card__img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: all 300ms ease-in-out;
	object-position: top;
}

.team-card:hover .team-card__img img {
	transform: scale(1.1);
}

.team-card:hover .team-card__content {
	background: var(--theme-color);
}

.team-card:hover .team-card__content :is(h4, h5) {
	color: var(--white);
}

.team-card:hover .team-card__contentPlus {
	background: var(--white);
	color: var(--theme-color);
}

.team-card__content {
	width: 90%;
	position: absolute;
	bottom: 4%;
	left: 50%;
	transform: translateX(-50%);
	background: var(--white);
	border-radius: 1rem;
	text-align: center;
	padding: 1rem 0;
}

.team-card__contentPlus {
	width: 40px;
	height: 40px;
	background: var(--theme-color);
	color: var(--white);
	font-size: 1.25rem;
	position: absolute;
	top: -1.25rem;
	left: 0.5rem;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border-radius: 100%;
}

.team-card__content h4 {
	font-size: 1.375rem;
	margin-bottom: 0;
}

.team-card__content h5 {
	color: #1C3F39;
	margin: 0;
}

.chooseUs {
	position: relative;
	padding: 0;
}

.chooseUs .vectorImg {
	position: absolute;
	inset: 0;
	z-index: 1;
}

.chooseUs__tabs {
	background: #104B59;
	padding: 7rem 5rem 7rem 19rem;
}

.chooseUs__tabs .sub-heading {
	margin-bottom: 1rem;
	background: #74939C;
}

.chooseUs__tabs .nav-tabs {
	flex-direction: column;
	border: none;
	gap: 0.75rem 0;
	margin-top: 1rem;
}

.chooseUs__tabs .nav-tabs .nav-item.show .nav-link,
.chooseUs__tabs .nav-tabs .nav-link.active {
	background: var(--theme-color);
	border-color: transparent;
	border-radius: 50px 0 0 50px;
}

.chooseUs__tabs .nav-tabs .nav-link {
	color: var(--white) !important;
	border: none;
	border-bottom: 1px solid #ffffff50;
	display: flex;
	align-items: center;
	gap: 0.75rem;
	padding: 0.75rem 1.25rem;
}

.chooseUs__tabs .nav-tabs .nav-link i {
	font-size: 0.75rem;
}

.chooseUs__content {
	width: 100%;
	height: 100%;
	position: relative;
}

.chooseUs__contentImg {
	width: 100%;
	height: 610px;
}

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

.chooseUs__content .tab-content {
	position: absolute;
	bottom: 0;
	left: 0;
	margin-left: -5rem;
}

.chooseUs__content-card {
	background: var(--theme-color);
	padding: 3.75rem;
	position: relative;
}

.chooseUs__content-card::before {
	content: '';
	width: 75px;
	height: 65px;
	position: absolute;
	bottom: 0;
	left: 100%;
	background: #DE4F10;
	z-index: 1;
	clip-path: polygon(0 0, 100% 0%, 0% 100%, 0% 100%);
}

.chooseUs__content-card .title {
	font-size: 2.25rem;
	margin-bottom: 0.25rem;
}

.chooseUs__content-card :is(.title, p, ul li) {
	color: var(--white);
}

.chooseUs__content-card ul li:not(:last-child) {
	margin-bottom: 1rem;
}

.testimonials .row {
	gap: 15rem;
}

.testimonials__content {
	text-align: center;
}

.testimonials__content figure img {
	width: 113px;
	aspect-ratio: 1;
	border: 4px solid #99CAC9;
	border-radius: 100%;
	margin-bottom: 1rem;
}

.testimonials__content h4 {
	font-weight: 700;
	margin-bottom: 0;
}

.testimonials__content h5 {
	color: var(--theme-color);
	font-weight: 500;
}

.process {
	position: relative;
}

.process__img {
	position: absolute;
	bottom: 0;
	right: 0;
}

.process__line {
	position: absolute;
	top: 28%;
	left: 50%;
	transform: translateX(-50%);
}

.process-cardWrapper {
	counter-reset: process-counter;
}

.process-card {
	position: relative;
}

.process-card__dots {
	position: absolute;
	top: -2rem;
	right: 0;
}

.process-card figure {
	position: relative;
}

.process-card figure img {
	width: 80%;
	height: 230px;
	object-fit: cover;
	display: block;
	margin: 0 auto 2rem;
	border-radius: 1.25rem;
	position: relative;
}

.process-card__content .title {
	font-weight: 600;
	margin-bottom: 0.75rem;
}

.process-card figure::before {
	counter-increment: process-counter;
	content: counter(process-counter);
	width: 50px;
	height: 50px;
	position: absolute;
	bottom: -1rem;
	left: 0;
	background: var(--theme-color);
	color: var(--white);
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	font-size: 1.5rem;
	z-index: 1;
}

.process-cardWrapper .col-lg-3:first-child .process-card {
	margin-top: 10rem;
}

.process-cardWrapper .col-lg-3:last-child .process-card {
	margin-top: -12rem;
}

/* Contact Us Page */
.contact-card {
	border: 1px solid #EEEEEE;
	position: relative;
}

.contact-card__icon {
	width: 90px;
	aspect-ratio: 1;
	background: var(--theme-color);
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	display: inline-flex;
	justify-content: center;
	align-items: center;
	border-radius: 1rem;
	z-index: 1;
}

.contact-card__icon img {
	width: 45px;
}

.contact-card figure {
	overflow: hidden;
}

.contact-card figure img {
	width: 100%;
	aspect-ratio: 3/1.5;
	object-fit: cover;
	transition: all 300ms ease-in-out;
}

.contact-card__content {
	text-align: center;
	padding: 3rem 2rem;
}

.contact-card__content h4 {
	font-weight: 600;
}

.contact-card__content a {
	font-size: 1.125rem;
	display: block;
	line-height: 1.75;
}

.contact-card:hover figure img {
	transform: scale(1.1);
}

.contact__form--become>.row {
	gap: 1rem 0;
}

.contact__form label {
	margin-bottom: 0;
}

.contact__form :is(input, textarea, select) {
	width: 100%;
	border: 1px solid #E0E8F4;
	outline: none;
	resize: none;
	padding: 1rem;
	margin: 0.5rem 0;
	color: var(--black);
}

.contact__form .radioField {
	width: fit-content;
	display: flex;
	align-items: center;
	gap: 0.5rem;
}

.contact__form :is(input, textarea, select):focus {
	border-color: var(--theme-color);
}

.contact__form .themeBtn {
	border: none;
	padding: 1.32em 2.92em;
}

/* Careers Page */
.joinUs__filter {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 1rem;
}

.joinUs__filter label {
	font-weight: 500;
	user-select: none;
}

.joinUs__filter select {
	width: 120px;
	font-weight: 500;
	border: none;
	margin-left: 2rem;
}

.joinUs .heading-sm span {
	font-size: 1rem;
	background: #F5F6FA;
	color: var(--gary-color);
	padding: 0.5rem 0.75rem;
	border-radius: 100px;
}

.joinUs .row {
	gap: 1rem 0;
}

.joinUs-card {
	border: 1px solid #E5E9F3;
	padding: 1rem;
	border-radius: 0.5rem;
	transition: all 300ms ease-in-out;
	height: 100%;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	justify-content: center;
}

.joinUs-card h3 {
	font-size: 1.125rem;
	font-weight: 600;
	margin-bottom: 0.25rem;
}

.joinUs-card h4 {
	font-size: 1.5rem;
	font-weight: 600;
	color: var(--theme-color);
	margin-bottom: 0.25rem;
}

.joinUs-card h5 {
	font-size: 1.125rem;
	font-weight: 500;
	color: var(--black);
	margin: 0;
}

.joinUs-card:hover {
	background: var(--theme-color);
}

.joinUs-card:hover :is(h3, h4, h5) {
	color: var(--white);
}

/* Carriers */
.trust__img {
	width: 110px;
}

.trust__img img {
	width: 100%;
}

.benefitsBtn {
	display: flex;
	align-items: center;
	justify-content: end;
	gap: 1rem;
}

.benefitsBtn .themeBtn {
	padding: 1.32em 2.92em;
}

.benefitsBtn .themeBtn:nth-child(2) {
	background: var(--white);
	color: var(--black);
	border-color: #CED4DA;
}

.benefitsBtn .themeBtn:nth-child(2) i {
	font-size: 1.25rem;
	color: var(--theme-color);
	margin-right: 0.5rem;
}

.benefitsBtn .themeBtn:nth-child(2):hover {
	background-color: var(--primary-color);
	color: var(--white);
}

.benefitsBtn .themeBtn:nth-child(2):hover i {
	color: var(--white);
}

.benefits-cardWrapper {
	gap: 1rem 0;
}

.benefits-card {
	height: 100%;
	border: 1px solid #EAEDF0;
	padding: 2rem 2rem;
	display: flex;
	align-items: flex-start;
	gap: 1rem;
}

.benefits-card:hover {
	background: var(--theme-color);
}

.benefits-card:hover .benefits-card__img img {
	filter: brightness(0) invert(1);
}

.benefits-card:hover .benefits-card__content :is(h4, p) {
	color: var(--white);
}

.benefits-card__content h4 {
	font-size: 1.5rem;
}

.benefits-card__content p {
	font-size: 1.25rem;
	line-height: 1.25;
	margin: 0;
}

.benefits-card__img img {
	max-width: 40px;
	min-height: 40px;
	object-fit: contain;
}

.nextStepWrapper+.nextStepWrapper {
	margin-top: 8rem;
}

.nextStep .heading {
	font-size: 5.625rem;
}

.nextStep__content .number {
	font-size: 3rem;
	font-weight: 700;
	color: var(--theme-color);
}

.nextStep__content .subTitle {
	text-transform: capitalize;
	color: var(--theme-color);
}

.nextStep__content p {
	font-size: 1.125rem;
	font-weight: 500;
	color: var(--black);
	font-family: "Outfit", sans-serif;
}

/* Air Freight */
.airFreight__img {
	width: 100%;
	height: 450px;
	position: relative;
	border-radius: 1rem;
	overflow: hidden;
}

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

.airFreight__img::before {
	content: '';
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	background: linear-gradient(0deg, #076177f5 0%, #f8c50347 50%);
}

.airFreight__content ul {
	list-style: disc;
	margin-left: 1.25rem;
	color: #828282;
}

.airFreight__content ul li:not(:last-child) {
	margin-bottom: 0.5rem;
}

.choiceOption-card {
	text-align: center;
}

.choiceOption-card h4 {
	font-weight: 500;
	margin-bottom: 0.25rem;
}

/* privacy & terms page*/
.privacyContent :is(p, li) {
	font-size: 1.125rem;
	font-weight: 400;
	margin: 0 0 1rem;
	color: #828282;
}

.privacyContent p a {
	color: var(--theme-color);
	font-weight: 600;
}

.privacyContent h3 {
	font-size: 2.125rem;
	font-weight: 600;
	margin: 1.125rem 0;
}

.privacyContent .list li {
	position: relative;
	padding-left: 1.75rem;
}

.privacyContent .list li strong {
	display: block;
	color: var(--black);
}

.privacyContent .list li::before {
	content: "";
	width: 12px;
	aspect-ratio: 1;
	border-radius: 50%;
	background: var(--theme-color);
	position: absolute;
	top: 0.5rem;
	left: 0;
}

.faq-main-inner {
	padding: 5rem 0;
}

.error {
	color: #ff0000;
}

#contactformResult {
	width: fit-content;
	margin: 1rem 0 0;
}

#subscribeformResult {
	width: fit-content;
	position: absolute;
	bottom: -52px;
	margin: 0;
	padding: 0.5em 1.125em;
}

.list-link {
	font: inherit;
	color: var(--theme-color);
}