/* ==================== [ Root CSS Start ] ==================== */
:root {
	/* Project Core */
	--white: #ffffff;
	--black: #000000;
	--transparent: #0000;

	/* Project Root */
	--violet: #6047C6;
	--violet-50: #EFECFB;
	--violet-300: #8893D1;
	--violet-400: #8167DF;
	--violet-500: #6047C6;
	--violet-600: #583BC4;
	--violet-700: #452E99;

	--blue: #396BFF;
	--blue-20: #D7E1FF;
	--blue-500: #396BFF;
	--blue-700: #434FDA;
	--blue-800: #2B2C9B;
	--blue-900: #131D56;

	--green: #35B5B0;
	--green-50: #EAFBF9;
	--green-500: #35B5B0;

	--netural: #000837;
	--netural-00: #FFFFFF;
	--netural-40: #F1F3FF;
	--netural-400: #131D56;
	--netural-500: #000837;

	--white-outline-disabled: #90929E;

	--gradient: linear-gradient(252.4deg, #91F3F3 -5.59%, #4648FF 41.5%, #000000 83.07%);

	--body: #FAFAEF;

	/* ======================================= */
	/* --- Global Font Families and Weights ---*/
	/* ======================================= */
	/* Font Weight Global Properties */
	--font-weight-300: 300;
	--font-weight-400: 400;
	--font-weight-500: 500;
	--font-weight-600: 600;
	--font-weight-700: 700;

	/* Font Italic Global Properties */
	--style-italic: italic;

	/* Merriweather Global Properties */
	--font-family-merriweather: 'Merriweather', sans-serif;

	/* Poppins Global Properties */
	--font-family-poppins: 'Poppins', sans-serif;

	/* Merriweather Global Font Properties */
	--merri-display-size: 58px;
	--merri-display-line-height: 73px;

	--merri-h1-size: 42px;
	--merri-h1-line-height: 53px;

	--merri-h2-size: 40px;
	--merri-h2-line-height: 50px;

	--merri-h3-size: 34px;
	--merri-h3-line-height: 48px;

	--merri-h4-size: 32px;
	--merri-h4-line-height: 40px;

	--merri-h5-size: 22px;
	--merri-h5-line-height: 33px;

	--merri-h6-size: 20px;
	--merri-h6-line-height: 25px;

	--merri-body-l-size: 20px;
	--merri-body-l-line-height: 25px;

	--merri-body-m-size: 18px;
	--merri-body-m-line-height: 23px;

	--merri-body-s-size: 16px;
	--merri-body-s-line-height: 20px;

	--merri-caption-size: 14px;
	--merri-caption-line-height: 18px;

	/* Poppins Global Font Properties */
	--poppins-display-xl-size: 86px;
	--poppins-display-xl-line-height: 64px;

	--poppins-display-l-size: 56px;
	--poppins-display-l-line-height: 64px;

	--poppins-h1-size: 48px;
	--poppins-h1-line-height: 56px;

	--poppins-display-s-size: 44px;
	--poppins-display-s-line-height: 54px;

	--poppins-h2-size: 40px;
	--poppins-h2-line-height: 48px;

	--poppins-h3-size: 32px;
	--poppins-h3-line-height: 40px;

	--poppins-h4-size: 24px;
	--poppins-h4-line-height: 32px;

	--poppins-h5-size: 22px;
	--poppins-h5-line-height: 32px;

	--poppins-h6-size: 20px;
	--poppins-h6-line-height: 34px;

	--poppins-body-l-size: 20px;
	--poppins-body-l-line-height: 34px;

	--poppins-body-m-size: 18px;
	--poppins-body-m-line-height: 24px;

	--poppins-body-s-size: 16px;
	--poppins-body-s-line-height: 24px;

	--poppins-caption-size: 12px;
	--poppins-caption-line-height: 20px;

	--poppins-overline-size: 10px;
	--poppins-overline-line-height: 16px;
}

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	scroll-behavior: smooth;
}

body {
	color: var(--white);
	font-family: var(--font-family-poppins);
	font-size: var(--poppins-body-l-size);
	font-style: normal;
	font-weight: var(--font-weight-400);
	line-height: var(--poppins-body-l-line-height);
	background: var(--netural-500);
	overflow-x: hidden;
}

/* ==================== [ Root CSS End ] ==================== */

/* ==================== [ Typography Start ] ==================== */
figure {
	margin: 0;
}

strong,
b {
	font-weight: var(--font-weight-700) !important;
}

a,
input,
button,
textarea {
	outline: none !important;
}

a {
	color: var(--netural-00);
	word-break: break-word;
	transition: all 0.3s ease-in-out;
	text-decoration: none;
}

a:hover {
	color: var(--violet-300);
}

p {
	color: inherit;
	font-family: inherit;
	font-size: inherit;
	font-style: inherit;
	font-weight: inherit;
	line-height: inherit;
	margin-bottom: 30px;
}

ol,
ul {
	margin-bottom: 30px;
	padding-left: 20px;
}

ol ol,
ol ul,
ul ol,
ul ul {
	margin-top: 20px;
	margin-bottom: 20px;
}

ol li,
ul li {
	font-family: inherit;
	font-weight: inherit;
	font-size: inherit;
	line-height: inherit;
	color: inherit;
}

ol li::marker,
ul li::marker {
	color: var(--violet-300);
}

ul li:has(> ul),
ul li:has(> ol) {
	list-style-type: none;
}

blockquote {
	font-family: var(--font-family-merriweather);
	font-style: var(--style-italic);
	padding: 25px 25px 25px 44px;
	border-left: 1px solid var(--netural-500);
	margin-bottom: 20px;
	background-color: transparent;
	font-size: var(--merri-h2-size);
	line-height: var(--merri-h2-line-height);
	color: var(--netural-500);
}

pre {
	background-color: var(--netural-400);
	padding: 20px;
	overflow: auto;
	font-family: inherit;
	border-radius: 10px;
	position: relative;
	color: var(--netural-00);
	-webkit-border-radius: 10px;
	-moz-border-radius: 10px;
	-ms-border-radius: 10px;
	-o-border-radius: 10px;
}

pre code {
	font-size: inherit;
	font-weight: inherit;
	font-family: inherit;
	line-height: inherit;
}

table {
	width: 100%;
	border-collapse: collapse;
	margin-bottom: 30px;
	font-size: inherit;
}

th,
td {
	border: 1px solid var(--violet-300);
	padding: 8px 12px;
	text-align: left;
}

th {
	background-color: var(--netural-400);
	font-weight: var(--font-weight-500);
	font-size: inherit;
	color: var(--netural-00);
}

td {
	background-color: var(--transparent);
	font-weight: var(--font-weight-400);
	font-size: inherit;
	color: var(--netural-00);
}

h1 {
	color: var(--netural-00);
	font-size: var(--poppins-display-l-size);
	line-height: var(--poppins-display-l-line-height);
	font-weight: var(--font-weight-400);
	margin-bottom: 30px;
}

h1 span {
	font-family: var(--font-family-merriweather);
	font-size: var(--merri-display-size);
	line-height: var(--merri-display-line-height);
	font-weight: var(--font-weight-300) !important;
	font-style: var(--style-italic);
}

h1 strong {
	font-weight: var(--font-weight-500) !important;
}


h2 {
	color: var(--netural-00);
	font-size: var(--poppins-display-s-size);
	line-height: var(--poppins-display-s-line-height);
	font-weight: var(--font-weight-400);
	margin-bottom: 30px;
}

h2 span {
	font-family: var(--font-family-merriweather);
	font-size: var(--merri-h1-size);
	line-height: var(--merri-h1-line-height);
	font-weight: var(--font-weight-300) !important;
	font-style: var(--style-italic);
}

h2 strong {
	font-weight: var(--font-weight-500) !important;
}


h3 {
	color: var(--netural-00);
	font-size: var(--poppins-h2-size);
	line-height: var(--poppins-h2-line-height);
	font-weight: var(--font-weight-400);
	margin-bottom: 30px;
}

h4 {
	color: var(--netural-00);
	font-size: var(--poppins-h3-size);
	line-height: var(--poppins-h3-line-height);
	font-weight: var(--font-weight-300);
	margin-bottom: 30px;
}

h5 {
	color: var(--netural-00);
	font-size: var(--poppins-h4-size);
	line-height: var(--poppins-h4-line-height);
	font-weight: var(--font-weight-400);
	margin-bottom: 30px;
}

h6 {
	color: var(--netural-00);
	font-size: var(--poppins-h5-size);
	line-height: var(--poppins-h5-line-height);
	font-weight: var(--font-weight-400);
	margin-bottom: 30px;
}

hr {
	margin-block: 30px;
}

input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	margin: 0;
}

textarea {
	resize: none;
}

.typography .image { aspect-ratio: 886 / 537; }
.typography iframe { max-width: 100%; }
/* ==================== [ Typography End ] ==================== */

/* ==================== [ Common Start ] ==================== */
.row {
	margin-inline: -5px;
	row-gap: 10px;
}

.row>* {
	padding-inline: 5px;
}

.img-cover * {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
}

/* ==================== [ Common End ] ==================== */

/* ==================== [ Common Heading Start ] ==================== */
/* ==================== [ Common Heading End ] ==================== */

/* ==================== [ Button Start ] ==================== */
.btn {
	width: fit-content;
	padding: 12px 26px;
	text-align: center;
	font-size: var(--poppins-body-m-size);
	line-height: var(--poppins-body-m-line-height);
	font-style: normal;
	font-weight: var(--font-weight-400);
	border-radius: 10px;
	border: 1px solid;
	text-decoration: none;
	-webkit-border-radius: 10px;
	-moz-border-radius: 10px;
	-ms-border-radius: 10px;
	-o-border-radius: 10px;
}

.btn-white-outline {
	color: var(--netural-00);
	background: var(--transparent);
	border-color: var(--netural-00);
}

.btn-white-outline:focus,
.btn-white-outline:hover,
.btn-white-outline:active,
.btn-white-outline:focus-within,
.btn-white-outline:focus-visible {
	color: var(--netural-00);
	background-color: var(--violet-300);
	border-color: var(--violet-300);
	box-shadow: none;
	outline: 0;
}

.btn-white-outline[disabled],
.btn-white-outline.disabled,
.btn-white-outline:disabled {
	cursor: not-allowed !important;
	color: var(--white-outline-disabled);
	background-color: var(--transparent);
	border-color: var(--white-outline-disabled);
	box-shadow: none;
	outline: 0;
}



.btn-white {
	color: var(--netural-500);
	background: var(--netural-00);
	border-color: var(--netural-00);
}

.btn-white:focus,
.btn-white:hover,
.btn-white:active,
.btn-white:focus-within,
.btn-white:focus-visible {
	color: var(--netural-00);
	background-color: var(--violet-300);
	border-color: var(--violet-300);
	box-shadow: none;
	outline: 0;
}

.btn-white[disabled],
.btn-white.disabled,
.btn-white:disabled {
	cursor: not-allowed !important;
	color: var(--white-outline-disabled);
	background-color: var(--transparent);
	border-color: var(--white-outline-disabled);
	box-shadow: none;
	outline: 0;
}



.btn-dark {
	color: var(--netural-00);
	background: var(--netural-400);
	border-color: var(--netural-500);
}

.btn-dark:focus,
.btn-dark:hover,
.btn-dark:active,
.btn-dark:focus-within,
.btn-dark:focus-visible {
	color: var(--netural-00);
	background-color: var(--violet-300);
	border-color: var(--violet-300);
	box-shadow: none;
	outline: 0;
}

.btn-dark[disabled],
.btn-dark.disabled,
.btn-dark:disabled {
	cursor: not-allowed !important;
	color: var(--netural-00);
	background-color: var(--white-outline-disabled);
	border-color: var(--white-outline-disabled);
	box-shadow: none;
	outline: 0;
}



.btn-dark-outline {
	color: var(--netural-500);
	background: var(--transparent);
	border-color: var(--netural-500);
}

.btn-dark-outline:focus,
.btn-dark-outline:hover,
.btn-dark-outline:active,
.btn-dark-outline:focus-within,
.btn-dark-outline:focus-visible {
	color: var(--netural-00) !important;
	background-color: var(--violet-300);
	border-color: var(--violet-300);
	box-shadow: none;
	outline: 0;
}

.btn-dark-outline[disabled],
.btn-dark-outline.disabled,
.btn-dark-outline:disabled {
	cursor: not-allowed !important;
	color: var(--white-outline-disabled);
	background-color: var(--transparent);
	border-color: var(--white-outline-disabled);
	box-shadow: none;
	outline: 0;
}


/* Common Arrow Buttons */
.btn-arrow {
	position: relative;
	height: 48px;
	width: 48px;
	display: flex;
	align-items: center;
	justify-content: center;
	border: 1px solid;
	flex-shrink: 0;
	border-radius: 10px;
	-webkit-border-radius: 10px;
	-moz-border-radius: 10px;
	-ms-border-radius: 10px;
	-o-border-radius: 10px;
}

.btn-arrow::before {
	position: absolute;
	content: "";
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	-webkit-transform: translate(-50%, -50%);
	-moz-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	-o-transform: translate(-50%, -50%);
	width: 50%;
	height: 50%;
	background-image: url('data:image/svg+xml,<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg"> <path d="M19 12H5" stroke="white" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/> <path d="M14 17L19 12" stroke="white" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/> <path d="M14 7L19 12" stroke="white" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/> </svg> ');
	background-repeat: no-repeat;
	background-size: 100%;
	background-position: center;
}

.btn-arrow:hover {
	background-color: var(--violet-300);
	border-color: var(--violet-300);
}

.btn-arrow-dark {
	background-color: var(--netural-400);
	border-color: var(--netural-400);
}

.btn-arrow-dark-outline:hover:before,
.btn-arrow-dark:hover:before {
	filter: brightness(0) invert(1);
	-webkit-filter: brightness(0) invert(1);
}

.btn-arrow-white {
	background-color: var(--netural-00);
	border-color: var(--netural-00);
}

.btn-arrow-white::before,
.btn-arrow-white:hover::before {
	filter: brightness(0) saturate(100%) invert(11%) sepia(13%) saturate(5749%) hue-rotate(203deg) brightness(92%) contrast(121%);
	-webkit-filter: brightness(0) saturate(100%) invert(11%) sepia(13%) saturate(5749%) hue-rotate(203deg) brightness(92%) contrast(121%);
}

.btn-arrow-white-outline {
	background-color: var(--transparent);
	border-color: var(--netural-00);
}

.btn-arrow-white-outline::before {
	filter: brightness(0) invert(1);
	-webkit-filter: brightness(0) invert(1);
}
.btn-arrow-white-outline:hover::before {
	filter: brightness(0) saturate(100%) invert(11%) sepia(13%) saturate(5749%) hue-rotate(203deg) brightness(92%) contrast(121%);
	-webkit-filter: brightness(0) saturate(100%) invert(11%) sepia(13%) saturate(5749%) hue-rotate(203deg) brightness(92%) contrast(121%);
}

.btn-arrow-dark-outline {
	background-color: var(--transparent);
	border-color: var(--netural-400);
}

.btn-arrow-dark-outline::before {
	filter: brightness(0) saturate(100%) invert(11%) sepia(13%) saturate(5749%) hue-rotate(203deg) brightness(92%) contrast(121%);
	-webkit-filter: brightness(0) saturate(100%) invert(11%) sepia(13%) saturate(5749%) hue-rotate(203deg) brightness(92%) contrast(121%);
}

/* ==================== [ Button End ] ==================== */

/* ==================== [ Text Color Start ] ==================== */
.text-black {
	color: var(--netural-500) !important;
}

/* ==================== [ Text Color End ] ==================== */

/* ==================== [ Error 404 Start ] ==================== */
.error-404 {
	padding: 80px 0;
	display: flex;
	align-items: center;
	justify-content: center;
	height: 100dvh;
}

.error-404 .heading {
	text-align: center;
}

.error-404 .action * {
	width: fit-content;
	margin: 0 auto;
}

/* ==================== [ Error 404 End ] ==================== */

/* ==================== [ Extra Common Start ] ==================== */
.container-fluid,
.container {
	padding-inline: 16px;
	margin: 0 auto;
}

.swiper-linear .swiper-wrapper {
	transition-timing-function: linear !important;
}

/* Progress Start */

.progress {
	background: var(--netural-40);
	border-radius: 0;
	-webkit-border-radius: 0;
	-moz-border-radius: 0;
	-ms-border-radius: 0;
	-o-border-radius: 0;
	height: 8px;
}

.progress-bar {
	background-color: var(--netural-500);
}

.progress-content {
	background-color: var(--netural-40);
}

.progress-content .typography h1,
.progress-content .typography h2,
.progress-content .typography h3,
.progress-content .typography h4,
.progress-content .typography h5,
.progress-content .typography h6,
.progress-content .typography h1 *,
.progress-content .typography h2 *,
.progress-content .typography h3 *,
.progress-content .typography h4 *,
.progress-content .typography h5 *,
.progress-content .typography h6 *,
.progress-content .typography ul,
.progress-content .typography ul li,
.progress-content .typography ol li,
.progress-content .typography ul li a,
.progress-content .typography ol li a,
.progress-content .typography strong,
.progress-content .typography b,
.progress-content .typography em,
.progress-content .typography span,
.progress-content .typography i,
.progress-content .typography p,
.progress-content .typography a,
.progress-content .typography u {
	color: var(--netural-500);
}

.progress-content .typography h1,
.progress-content .typography h2,
.progress-content .typography h3,
.progress-content .typography h4,
.progress-content .typography h5,
.progress-content .typography h6,
.progress-content .typography p {
	margin-bottom: 20px;
	font-weight: var(--font-weight-400);
}

.progress-content .typography a ,
.progress-content .typography a * {
	font-weight: 400 !important;
	transition: all .3s ease-in-out;
	-webkit-transition: all .3s ease-in-out;
	-moz-transition: all .3s ease-in-out;
	-ms-transition: all .3s ease-in-out;
	-o-transition: all .3s ease-in-out;
	text-decoration: underline !important;
}

.progress-content .typography a:hover *,
.progress-content .typography a:hover {
	color: var(--violet) !important;
}

.progress-content .typography img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	margin-bottom: 20px;
	border-radius: 10px;
	-webkit-border-radius: 10px;
	-moz-border-radius: 10px;
	-ms-border-radius: 10px;
	-o-border-radius: 10px;
}

.progress-content .typography ul li {
	margin-bottom: 10px;
}

.progress-content .social-icons ul {
	list-style: none;
	padding: 0;
	margin: 0;
	display: flex;
	align-items: flex-end;
	justify-content: center;
	flex-direction: column;
	gap: 10px;
}

.progress-content .social-icons ul li a {
	width: 48px;
	height: 48px;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 12px;
	background: var(--netural-400);
	border-radius: 10px;
	-webkit-border-radius: 10px;
	-moz-border-radius: 10px;
	-ms-border-radius: 10px;
	-o-border-radius: 10px;
}

.progress-content .social-icons ul li a:hover {
	background: var(--violet-300);
}

.progress-content .date-time ul {
	list-style: none;
	padding: 0;
	margin: 0 0 30px 0;
	display: flex;
	align-items: center;
}

.progress-content .date-time ul li {
	font-weight: var(--font-weight-300);
	color: var(--netural-500);
	display: flex;
    align-items: baseline;
	margin-right: 10px;
}

.progress-content .date-time ul li:last-child {
	margin-right: 0px;
}

.progress-content .date-time ul li img {
	margin-right: 8px;
}


.progress-content .typography table {
	width: fit-content;
}

.progress-content .typography td img {
	height: 70px;
	width: 70px;
	min-width: 70px;
	object-fit: cover;
	object-position: center;
	border-radius: 50%;
	-webkit-border-radius: 50%;
	-moz-border-radius: 50%;
	-ms-border-radius: 50%;
	-o-border-radius: 50%;
	margin-bottom: 0;
}

.progress-content table td {
	color: var(--netural-500);
}

.progress-content table th, td {
	border: none;
	padding: 0;
}
/* Progress Content End */


/* ==================== [ Extra Common End ] ==================== */


/* ==================== [ Header Start ] ==================== */

/* ==================== [ Header End ] ==================== */

/* ==================== [ Common Spacing Start ] ==================== */
.py-60 {
	padding-block: 60px;
}

.py-70 {
	padding-block: 70px;
}

.py-80 {
	padding-block: 80px;
}

.py-90 {
	padding-block: 90px;
}

.py-100 {
	padding-block: 100px;
}

/* ==================== [ Common Spacing End ] ==================== */

















/* ==================== [ Header Start ] ==================== */
.header {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	z-index: 12;
	pointer-events: auto;
	transition: all .3s ease-in-out;
	-webkit-transition: all .3s ease-in-out;
	-moz-transition: all .3s ease-in-out;
	-ms-transition: all .3s ease-in-out;
	-o-transition: all .3s ease-in-out;
}


.header .navbar {
    padding: 30px 0;
}

.header .navbar .navbar-brand {
    padding: 0;
}

/* Header Scroll */
.header.scroll {
	opacity: 0;
	pointer-events: none;
}

.header.scroll-reverse {
    background-color: var(--netural-00);
}

.header.scroll-reverse .navbar .navbar-brand * {
    filter: brightness(0) saturate(100%) invert(11%) sepia(65%) saturate(3188%) hue-rotate(245deg) brightness(94%) contrast(93%);
    -webkit-filter: brightness(0) saturate(100%) invert(11%) sepia(65%) saturate(3188%) hue-rotate(245deg) brightness(94%) contrast(93%);
}



.navbar-toggler {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    padding: 0;
    box-shadow: none !important;
    background-color: var(--netural-400);
    border-radius: 10px;
    border: none;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
}

.navbar-toggler .hamburger {
    width: 100%;
    height: 100%;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    flex-direction: column;
    justify-content: space-between;
}

.navbar-toggler .hamburger-toggle {
    width: 13px;
    height: 14px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.navbar-toggler .hamburger span {
    width: 100%;
    height: 2px;
    border-radius: 5px;
    background-color: var(--netural-00);
    position: relative;
    transition: 0.4s;
    -webkit-transition: 0.4s;
    -moz-transition: 0.4s;
    -ms-transition: 0.4s;
    -o-transition: 0.4s;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
}

.navbar-toggler .hamburger span:first-child {
    top: 6px;
    transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    -o-transform: rotate(45deg);
}

.navbar-toggler .hamburger span:nth-child(2) {
    opacity: 0;
}

.navbar-toggler .hamburger span:last-child {
    margin: 0;
    top: -6px;
    transform: rotate(-45deg);
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    -o-transform: rotate(-45deg);
}

.navbar-toggler.collapsed .hamburger span {
    opacity: 1 !important;
    top: auto !important;
    transform: none !important;
    -webkit-transform: none !important;
    -moz-transform: none !important;
    -ms-transform: none !important;
    -o-transform: none !important;
}

.header .navbar-collapse {
    overflow: auto;
    background-color: var(--netural-500);
    position: fixed;
    z-index: 1;
    top: -100%;
    left: 0;
    height: 100dvh !important;
    padding-top: 0;
    width: 100%;
    padding: 30px 16px;
    display: block !important;
    transition: top 0.8s cubic-bezier(0.16, 1, 0.3, 1), height 0s !important;
    -webkit-transition: top 0.8s cubic-bezier(0.16, 1, 0.3, 1), height 0s !important;
    -moz-transition: top 0.8s cubic-bezier(0.16, 1, 0.3, 1), height 0s !important;
    -ms-transition: top 0.8s cubic-bezier(0.16, 1, 0.3, 1), height 0s !important;
    -o-transition: top 0.8s cubic-bezier(0.16, 1, 0.3, 1), height 0s !important;
}

.header .navbar:has(.navbar-toggler:not(.collapsed)) .navbar-collapse {
    top: 0;
}

body:has(.navbar-toggler:not(.collapsed)) {
    overflow: hidden;
}

.header .header-menu-group {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: calc(100dvh - 60px);
}

.header .header-navbar-close-group {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    margin-bottom: 40px;
}

.header .menu-container {
    padding: 0 120px;
}

.header .menu-container .navbar-nav {
    max-width: calc(368px + 81px);
    padding-right: 80px;
    border-right: 1px solid var(--violet-300);
    position: relative;
}

.header .menu-container .nav-item {
    width: 100%;
    margin-bottom: 35px;
    position: unset;
}

.header .menu-container .nav-item:last-child {
    margin-bottom: 0;
}

.header .menu-container .nav-link-item {
    padding: 6px 0;
    position: relative;
    font-size: var(--poppins-h2-size);
    line-height: var(--poppins-h2-line-height);
    color: var(--netural-00);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* .header .menu-container .nav-link-item:not(.dropdown-toggle).active, */
.header .menu-container .nav-link-item.active,
.header .menu-container .nav-link-item:hover,
.header .menu-container .nav-link-item.show {
    color: var(--violet-300);
}

.header .menu-container .nav-link-item.dropdown-toggle:after {
    position: relative;
    width: 36px;
    height: 36px;
    background-color: var(--netural-400);
    background-image: url('data:image/svg+xml,<svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg"> <path d="M8.00022 2.6665V13.3332" stroke="white" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/> <path d="M13.3337 8.00022H2.66699" stroke="white" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/> </svg> ');
    background-size: 16px;
    background-position: center;
    background-repeat: no-repeat;
    border: 0;
    border-radius: 10px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
    transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
}

.header .menu-container .nav-link-item.dropdown-toggle.show:after {
    background-color: var(--violet-300);
    background-image: url('data:image/svg+xml,<svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg"> <path d="M13.3337 8.00022H2.66699" stroke="black" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/> </svg> ');
}

.header .navbar-nav .dropdown-menu {
    margin: 0;
    padding: 0;
    position: absolute;
    left: calc(100% + 80px);
    top: 0;
    background-color: var(--transparent);
    border-radius: 0;
    border: 0;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    -ms-border-radius: 0;
    -o-border-radius: 0;
}

.header .navbar-nav .dropdown-menu li:not(:last-child) {
    margin-bottom: 30px;
}

.header .navbar-nav .dropdown-menu .dropdown-item {
    padding: 0;
    background-color: var(--transparent);
    color: var(--netural-00);
    font-size: var(--poppins-h3-size);
    line-height: var(--poppins-h3-line-height);
    font-weight: var(--font-weight-300);
}


.header .navbar-nav .dropdown-menu .dropdown-item.active,
.header .navbar-nav .dropdown-menu .dropdown-item:hover {
    background-color: var(--transparent);
    color: var(--violet-300);
}


/* .header .navbar-nav .dropdown-menu:has(.dropdown-item.active) {
	display: block;
}

.header .menu-container .dropdown:has(.dropdown-item.active) .nav-link-item.dropdown-toggle:after {
    background-color: var(--violet-300);
    background-image: url('data:image/svg+xml,<svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg"> <path d="M13.3337 8.00022H2.66699" stroke="black" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/> </svg> ');
}

.header .navbar-nav .dropdown:has(.dropdown-item.active) .nav-link-item {
    color: var(--violet-300);
} */

.header .lang-change ul {
    margin: 0;
    padding: 0;
    margin-top: 40px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    list-style: none;
    position: relative;
}

.header .lang-change ul li {
    position: relative;
    padding: 12px;
}

.header .lang-change ul li:last-child {
    padding-right: 0;
}

.header .lang-change ul li::before {
    position: absolute;
    content: "";
    top: 50%;
    right: -0.5px;
    background: var(--netural-00);
    width: 1px;
    height: calc(100% - 24px);
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
}

.header .lang-change ul li:last-child:before {
    display: none;
}

.header .lang-change ul li a {
    color: var(--violet-300);
    font-size: var(--poppins-body-m-size);
    line-height: var(--poppins-body-m-line-height);
}

.header .lang-change ul li.wpml-ls-current-language a,
.header .lang-change ul li a.active,
.header .lang-change ul li a:focus,
.header .lang-change ul li a:focus-within,
.header .lang-change ul li a:focus-visible,
.header .lang-change ul li a:hover {
    color: var(--violet-400);
}


/* ==================== [ Header End ] ==================== */

/* ==================== [ Home Banner Start ] ==================== */
.home-banner {
    position: relative;
    padding: 250px 0 210px;
}

.home-banner .image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 0;
}

.home-banner .image * {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.home-banner::before {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient);
    z-index: -1;
}

.home-banner::after {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(148.71% 61.4% at 50% 35.67%, rgba(0, 8, 55, 0) 62.67%, var(--netural) 100%);
    z-index: 1;
}

.home-banner .heading {
    position: relative;
    z-index: 2;
    max-width: 806px;
    margin: 0 auto;
    text-align: center;
}

/* ==================== [ Home Banner End ] ==================== */

/* ==================== [ Inner Banner Start ] ==================== */
.inner-banner {
    position: relative;
    padding: 225px 0 60px;
    overflow: hidden;
}

.inner-banner.gradient-noice-bg::before {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient);
}

.inner-banner.gradient-noice-bg::after {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url("../images/thumb/home-bg-noice.webp");
    background-size: 50px;
    background-repeat: repeat;
    background-position: top left;
    mix-blend-mode: multiply;
    z-index: 1;
}

.inner-banner.gradient-noice-bg .heading {
    position: relative;
    z-index: 2;
}

.inner-banner .heading .subtitle * {
    font-size: var(--poppins-body-l-size);
    line-height: var(--poppins-body-l-line-height);
    font-weight: var(--font-weight-300);
    margin-bottom: 10px;
    text-transform: uppercase;
}

.inner-banner .heading .badge {
    padding: 8px 16px;
    border-radius: 50px;
    -webkit-border-radius: 50px;
    -moz-border-radius: 50px;
    -ms-border-radius: 50px;
    -o-border-radius: 50px;
    margin-bottom: 10px;
}

.inner-banner .heading .badge * {
    font-size: 14px;
    line-height: 24px;
    color: inherit;
    margin-bottom: 0 !important;
    letter-spacing: 1.26px;
}

.inner-banner .heading .title * {
    max-width: 1000px;
    width: 100%;
    margin-bottom: 60px;
}

.inner-banner .heading .disc * {
    max-width: 1006px;
    margin-left: auto;
    font-size: var(--poppins-h3-size);
    line-height: var(--poppins-h3-line-height);
    font-weight: var(--font-weight-300);
    margin-bottom: 0;
}

.inner-banner .heading .disc *:not(:last-child) {
	margin-bottom: 40px;
}

.inner-banner .heading .action {
    max-width: 1006px;
    margin-left: auto;
    margin-top: 30px;
}

/* what-we-do-banner Start */
.inner-banner.what-we-do-banner {
    padding-bottom: 150px;
}

.blog-details-banner { padding-bottom: 160px !important; }
.blog-progress .progress-bar { background-color: var(--blue); border-top-right-radius: 9999px; border-bottom-right-radius: 9999px; }
/* what-we-do-banner End */

/* ==================== [ Inner Banner End ] ==================== */

/* ==================== [ Technology With Intention Start ] ==================== */
.technology-intention {
    position: relative;
}

.technology-intention .heading {
    text-align: center;
}

.technology-intention .heading .subtitle * {
    font-size: var(--poppins-body-l-size);
    line-height: var(--poppins-body-l-line-height);
    font-weight: var(--font-weight-300);
    margin-bottom: 50px;
}

.technology-intention .disc * {
    font-size: var(--poppins-h2-size);
    line-height: var(--poppins-h2-line-height);
    font-weight: var(--font-weight-300);
    margin-bottom: 0;
}

/* ==================== [ Technology With Intention End ] ==================== */

/* ==================== [ Customers Start ] ==================== */
.customers {
    position: relative;
}

.customers .heading {
    text-align: center;
    margin-bottom: 100px;
}

.customers .heading .subtitle * {
    font-size: var(--poppins-body-l-size);
    line-height: var(--poppins-body-l-line-height);
    font-weight: var(--font-weight-300);
    margin-bottom: 10px;
}

.customers .heading .title * {
    margin-bottom: 10px;
}

.customers .heading .disc * {
    margin-bottom: 0;
}

.customers-icon-group {
    list-style: none;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 60px;
    margin: 0;
    padding: 0;
}

.customers-icon-group li {
    max-width: 295px;
    max-height: 77px;
}

.customers-icon-group img {
    object-fit: contain;
    max-width: 100%;
    max-height: 100%;
    opacity: 0.4;
}

/* ==================== [ Customers End ] ==================== */

/* ==================== [ Growing Together End ] ==================== */
.growing-together {
    position: relative;
}

.growing-together .heading {
    text-align: center;
    margin-bottom: 60px;
}

.growing-together .heading .title * {
    margin-bottom: 0;
}

.growing-together .heading .title * {
    margin-bottom: 0;
}

.growing-together .grid-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: 10px;
    margin: 0 auto;
}

.growing-together .card {
    padding: 30px 24px 70px 24px;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
}

.growing-together .card:has(.sub-disc) {
    padding: 30px 24px;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
}

/* Have 5 Card */
.growing-together .card:nth-child(1) {
    grid-area: 1 / 1 / 2 / 2;
}

.growing-together .card:nth-child(2) {
    grid-area: 1 / 2 / 3 / 3;
}

.growing-together .card:nth-child(3) {
    grid-area: 1 / 3 / 2 / 4;
}

.growing-together .card:nth-child(4) {
    grid-area: 2 / 1 / 3 / 2;
}

.growing-together .card:nth-child(5) {
    grid-area: 2 / 3 / 3 / 4;
}



/* Have 4 Card */
.growing-together:has(.card:nth-child(4)):not(:has(.card:nth-child(5))) .card:nth-child(3) {
    grid-area: 1 / 3 / 3 / 4;
}


/* Have 3 Card */
.growing-together:has(.card:nth-child(3)):not(:has(.card:nth-child(4))) .grid-container {
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(1, 1fr);
}

.growing-together:has(.card:nth-child(3)):not(:has(.card:nth-child(4))) .card {
    min-height: 574px;
}

.growing-together:has(.card:nth-child(3)):not(:has(.card:nth-child(4))) .card:nth-child(1) {
    grid-area: 1 / 1 / 3 / 2;
}

.growing-together:has(.card:nth-child(3)):not(:has(.card:nth-child(4))) .card:nth-child(3) {
    grid-area: 1 / 3 / 3 / 4;
}



/* Have 2 Card */
.growing-together:has(.card:nth-child(2)):not(:has(.card:nth-child(3))) .grid-container {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(1, 1fr);
}

.growing-together:has(.card:nth-child(2)):not(:has(.card:nth-child(3))) .card:nth-child(1) {
    grid-area: 1 / 1;
}

.growing-together:has(.card:nth-child(2)):not(:has(.card:nth-child(3))) .card:nth-child(2) {
    grid-area: 1 / 2;
}


/* Have 1 Card */
.growing-together:has(.card:nth-child(1)):not(:has(.card:nth-child(2))) .grid-container {
    grid-template-columns: repeat(1, 1fr);
    grid-template-rows: repeat(1, 1fr);
}



.growing-together .card .title * {
    color: inherit;
    font-size: var(--poppins-display-xl-size);
    line-height: var(--poppins-display-xl-line-height);
    font-weight: var(--font-weight-700);
    margin-bottom: 20px;
}

.growing-together .card.short .title * {
    color: inherit;
    font-size: var(--poppins-h2-size);
    line-height: var(--poppins-h2-line-height);
    font-weight: var(--font-weight-300);
    margin-bottom: 20px;
}

.growing-together .card .disc * {
    color: inherit;
    font-size: var(--poppins-h2-size);
    line-height: var(--poppins-h2-line-height);
    font-weight: var(--font-weight-300);
    margin-bottom: 20px;
    margin-bottom: 0;
}

.growing-together .card.short .disc * {
    font-size: var(--poppins-body-l-size);
    line-height: var(--merri-body-l-line-height);
    margin-bottom: 20px;
    margin-bottom: 0;
}

.growing-together .card .sub-disc * {
    font-size: var(--poppins-body-l-size);
    line-height: var(--poppins-body-l-line-height);
    margin-bottom: 0;
    margin-top: 20px;
}

/* ==================== [ Growing Together End ] ==================== */

/* @&@&@&@&@&@&@&@&@&@&@&@&@&@&@&@&@&@ */
/* What We Do Page */
/* @&@&@&@&@&@&@&@&@&@&@&@&@&@&@&@&@&@ */
/* ==================== [ What We Do Cards Start ] ==================== */
.what-we-do-cards {
    position: relative;
    overflow-x: clip;
}

.what-we-do-cards .heading {
    text-align: center;
    max-width: 772px;
    margin-inline: auto;
    margin-bottom: 60px;
}

.what-we-do-cards .heading .disc * {
    margin-bottom: 0;
}

.what-we-do-cards .card {
    padding: 60px 95px;
    border: 0;
    border-radius: 10px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-direction: row;
    gap: 60px;
    margin-bottom: 20px;
}

.what-we-do-cards .card:last-child {
    margin-bottom: 0;
}

.what-we-do-cards .card .card-image {
    width: 220px;
    height: 220px;
    flex-shrink: 0;
}

.what-we-do-cards .card .card-image * {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.what-we-do-cards .card .card-content {
    display: flex;
    gap: 56px;
}

.what-we-do-cards .card .card-content .title {
    max-width: 300px;
    width: 100%;
    flex-shrink: 0;
}

.what-we-do-cards .card .card-content .title * {
    font-weight: var(--font-family-merriweather);
    font-size: var(--merri-h3-size);
    line-height: var(--merri-h3-line-height);
    font-weight: var(--font-weight-300);
    font-style: var(--style-italic);
}

.what-we-do-cards .card .card-content .disc * {
    color: var(--netural-00);
    margin-bottom: 50px;
}

/* ==================== [ What We Do Cards End ] ==================== */


/* @&@&@&@&@&@&@&@&@&@&@&@&@&@&@&@&@&@ */
/* Salesforce What We Do Page */
/* @&@&@&@&@&@&@&@&@&@&@&@&@&@&@&@&@&@ */
/* ==================== [ Salesforce What We Do Banner Start ] ==================== */
.salesforce-what-we-do-banner {
    position: relative;
    padding-bottom: 60px;
    overflow: hidden;
}

.salesforce-what-we-do-banner .banner-bg-img {
    position: absolute;
    bottom: 0;
    right: -42px;
    width: clamp(308px, 211.95px + 30.02vw, 673px);
    /* 308px, viewport: 320px -> 673px, viewport: 1536px */
    aspect-ratio: 1;
    z-index: -1;
}

.salesforce-what-we-do-banner .banner-bg-img img { object-fit: cover; object-position: center; height: 100%; width: 100%; opacity: .4; }

.inner-banner.salesforce-what-we-do-banner .heading .title * {
    max-width: 100%;
}

/* ==================== [ Salesforce What We Do Banner End ] ==================== */



/* @&@&@&@&@&@&@&@&@&@&@&@&@&@&@&@&@&@ */
/* Industry What We Do Page */
/* @&@&@&@&@&@&@&@&@&@&@&@&@&@&@&@&@&@ */
/* ==================== [ Industry What We Do Banner Start ] ==================== */
.industry-what-we-do-banner {
    position: relative;
    padding-bottom: 60px !important;
}

.inner-banner.industry-what-we-do-banner .heading .title * {
    max-width: 100%;
}

/* ==================== [ Industry What We Do Banner End ] ==================== */

/* ==================== [ Salesforce Logo Group Start ] ==================== */
.salesforce-logo-group {
    position: relative;
    padding: 30px 0;
}

.salesforce-logo-group ul {
    margin-bottom: 20px;
}

/* ==================== [ Salesforce Logo Group End ] ==================== */



/* @&@&@&@&@&@&@&@&@&@&@&@&@&@&@&@&@&@ */
/* Industry What We Do Page */
/* @&@&@&@&@&@&@&@&@&@&@&@&@&@&@&@&@&@ */
/* ==================== [ Our Work Banner Start ] ==================== */
.our-work-banner {
    padding-bottom: 105px;
}

/* ==================== [ Our Work Banner End ] ==================== */



/* @&@&@&@&@&@&@&@&@&@&@&@&@&@&@&@&@&@ */
/* How We Work Page */
/* @&@&@&@&@&@&@&@&@&@&@&@&@&@&@&@&@&@ */
/* ==================== [ How We Work Banner Start ] ==================== */
.how-we-work-banner {
    padding-bottom: 108px;
}

.inner-banner.how-we-work-banner .heading .title * {
    max-width: 768px;
}

/* ==================== [ How We Work Banner End ] ==================== */




/* @&@&@&@&@&@&@&@&@&@&@&@&@&@&@&@&@&@ */
/* Case Studies Page */
/* @&@&@&@&@&@&@&@&@&@&@&@&@&@&@&@&@&@ */
/* ==================== [ Case Studies Banner Start ] ==================== */
.case-studies-banner {
    padding-bottom: 100px;
}

/* ==================== [ Case Studies Banner End ] ==================== */




/* @&@&@&@&@&@&@&@&@&@&@&@&@&@&@&@&@&@ */
/* Luxaviation Our Work Page */
/* @&@&@&@&@&@&@&@&@&@&@&@&@&@&@&@&@&@ */
/* ==================== [ luxaviation Our Work Banner Start ] ==================== */
.luxaviation-our-work-banner {
    padding-bottom: 132px;
    background-repeat: no-repeat;
    background-position: center;
    position: relative;
    margin-bottom: 60px;
}

.luxaviation-our-work-banner .image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: -1;
}

.luxaviation-our-work-banner .image * {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.luxaviation-our-work-banner::before {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.4);
}

.luxaviation-our-work-banner .heading {
    position: relative;
    z-index: 2;
}

.luxaviation-our-work-banner .heading .disc * {
    max-width: 883px;
}

/* ==================== [ luxaviation Our Work Banner End ] ==================== */

/* ==================== [ Scroll Sectoin Start ] ==================== */
.scroll-sectoin {
    position: sticky;
    top: 108px;
    z-index: 9;
    padding: 20px 0;
    background-color: var(--netural-500);
}

body:has(.header.scroll) .scroll-sectoin {
    top: 0;
}

.tabs-group {
    height: fit-content;
    overflow-x: auto;
    overflow-y: clip;
}

.tabs-group ul {
    list-style: none;
    margin: 0;
    padding: 8px 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    min-width: max-content;
}

.tabs-group ul li a.active {
    color: var(--violet-300);
}

.tabs-group ul li a {
    padding: 8px 0;
    text-wrap: nowrap;
    text-transform: uppercase;
    font-size: var(--poppins-body-l-size);
    line-height: var(--poppins-body-l-line-height);
    color: var(--netural-00);
    border-bottom: 4px solid var(--transparent);
}

.tabs-group ul li a:hover,
.tabs-group ul li a.active {
    color: var(--violet-300);
    border-bottom: 4px solid var(--violet-300);
}


.tabs-group.full ul li a.active {
    color: var(--violet-300);
}

.tabs-group.full ul {
    gap: 16px;
}

.tabs-group.full ul li a {
    padding: 10px 16px;
    border-bottom: 0px;
}

.tabs-group.full ul li a:hover,
.tabs-group.full ul li a:focus,
.tabs-group.full ul li a:focus-visible,
.tabs-group.full ul li a:focus-within,
.tabs-group.full ul li a.active {
    color: var(--netural-500);
    border-bottom: 0px;
    background-color: var(--violet-300);
    border-radius: 8px;
    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    -ms-border-radius: 8px;
    -o-border-radius: 8px;
}

/* ==================== [ Scroll Sectoin End ] ==================== */

/* ==================== [ The Luxaviation Journey Start ] ==================== */
.the-luxaviation-journey {
    position: relative;
    padding: 40px 0 80px;
}

.the-luxaviation-journey .heading {
    text-align: center;
    max-width: 885px;
    margin: 0 auto;
}

.the-luxaviation-journey .heading .disc * {
    margin-bottom: 0;
}

/* ==================== [ The Luxaviation Journey End ] ==================== */

/* ==================== [ The Challenge Start ] ==================== */
.the-challenge {
    position: relative;
}

.the-challenge .heading .subtitle * {
    text-transform: uppercase;
}

.the-challenge .disc {
	max-width: 920px;
	width: 100%;
}
/* ==================== [ The Challenge End ] ==================== */




/* @&@&@&@&@&@&@&@&@&@&@&@&@&@&@&@&@&@ */
/* About Us Page */
/* @&@&@&@&@&@&@&@&@&@&@&@&@&@&@&@&@&@ */
/* ==================== [ Our Impact Start ] ==================== */
.our-impact {
    position: relative;
}

.our-impact .heading {
    text-align: center;
    margin-bottom: 60px;
}

.our-impact .heading .title * {
    margin-bottom: 0;
}

.our-impact .card {
    position: relative;
    padding: 30px;
    border-radius: 10px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    margin-bottom: 10px;
    overflow: hidden;
}

.our-impact .card.bg-image::before {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    background: rgba(0, 0, 0, 0.4);
}

.our-impact .card.bg-image>* {
    position: relative;
    z-index: 2;
}

.our-impact .card .title * {
    font-size: var(--poppins-h2-size);
    line-height: var(--poppins-h2-line-height);
    margin-bottom: 10px;
}

.our-impact .card .disc * {
    margin-bottom: 0;
}

/* First Column */
.our-impact .row>*:nth-child(1)>.card:nth-child(2n + 1) {
    min-height: 338px;
}

.our-impact .row>*:nth-child(1)>.card:nth-child(2n) {
    min-height: 496px;
}

/* Second Column */
.our-impact .row>*:nth-child(2)>.card:nth-child(2n + 1) {
    min-height: 496px;
}

.our-impact .row>*:nth-child(2)>.card:nth-child(2n) {
    min-height: 270px;
}

/* Third Column */
.our-impact .row>*:nth-child(3)>.card:nth-child(2n + 1) {
    min-height: 496px;
}

.our-impact .row>*:nth-child(3)>.card:nth-child(2n) {
    min-height: 338px;
}

/* ==================== [ Our Impact End ] ==================== */




/* @&@&@&@&@&@&@&@&@&@&@&@&@&@&@&@&@&@ */
/* Life Career Page */
/* @&@&@&@&@&@&@&@&@&@&@&@&@&@&@&@&@&@ */
/* ==================== [ Life Career Banner End ] ==================== */
.life-career-banner {
    position: relative;
    padding-bottom: 100px;
}

/* ==================== [ Life Career Banner End ] ==================== */

/* ==================== [ Happy People Start ] ==================== */
.happy-people {
    position: relative;
}

.happy-people .heading .subtitle * {
    font-weight: var(--font-weight-300);
    margin-bottom: 10px;
}

.our-impact.happy-people .row>*:nth-child(1)>.card:nth-child(3n + 1),
.our-impact.happy-people .row>*:nth-child(1)>.card:nth-child(3n + 2),
.our-impact.happy-people .row>*:nth-child(2)>.card:nth-child(3n + 2),
.our-impact.happy-people .row>*:nth-child(3)>.card:nth-child(3n + 2),
.our-impact.happy-people .row>*:nth-child(3)>.card:nth-child(3n) {
    min-height: 496px;
}

.our-impact.happy-people .row>*:nth-child(1)>.card:nth-child(3n),
.our-impact.happy-people .row>*:nth-child(2)>.card:nth-child(3n + 1),
.our-impact.happy-people .row>*:nth-child(2)>.card:nth-child(3n),
.our-impact.happy-people .row>*:nth-child(3)>.card:nth-child(3n + 1) {
    min-height: 338px;
}

/* ==================== [ Happy People End ] ==================== */


/* ==================== [ Meet The Team Start ] ==================== */

.meet-the-team .meet-the-team-block {
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.meet-the-team .heading-block {
    text-align: center;
}

.meet-the-team .heading-block .title * {
    margin-bottom: 0;
}

.meet-the-team .tabbing-block .tabs-group {
    display: flex;
    align-items: center;
    gap: 16px;
}

.meet-the-team .load-more-action {
    text-align: center;
}

.meet-the-team .meet-the-team-block .tabs-group a {
    position: relative;
    overflow: hidden;
    z-index: 1;
    background: var(--transparent) !important;
    color: unset;
    border-radius: 8px;
    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    -ms-border-radius: 8px;
    -o-border-radius: 8px;
}

/* .meet-the-team .meet-the-team-block .tabs-group a span {
    opacity: 0;
    z-index: -1;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transition: all 0.3s ease-in-out;
    border-radius: 8px !important;
    -webkit-border-radius: 8px !important;
    -moz-border-radius: 8px !important;
    -ms-border-radius: 8px !important;
    -o-border-radius: 8px !important;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
} */


/* .meet-the-team .meet-the-team-block .tabs-group a:hover span,
.meet-the-team .meet-the-team-block .tabs-group a:focus span,
.meet-the-team .meet-the-team-block .tabs-group a:focus-visible span,
.meet-the-team .meet-the-team-block .tabs-group a:focus-within span,
.meet-the-team .meet-the-team-block .tabs-group a.active span {
    opacity: 1;
	} */


.meet-the-team .meet-the-team-block .content-block {
    display: flex;
    gap: 20px;
    row-gap: 60px;
    flex-wrap: wrap;
}

.meet-the-team .meet-the-team-block .content-block>* {
    flex: 0 0 calc(25% - 15px);
}

.meet-the-team .meet-the-team-block .image-content {
    position: relative;
    border-radius: 10px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
    overflow: hidden;
    margin-bottom: 10px;
}

.meet-the-team .meet-the-team-block .image-content .hover-image {
    opacity: 0;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    width: 100%;
    height: 100%;
    transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
}

.meet-the-team .meet-the-team-block .image-content .main-image {
    transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
}

.meet-the-team .meet-the-team-block .image-content::before {
    opacity: 0;
    position: absolute;
    content: "";
    bottom: 22px;
    left: 34px;
    width: 20px;
    height: 20px;
    border-left: 2px solid var(--netural-00);
    border-bottom: 2px solid var(--netural-00);
    z-index: 2;
    transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
}

.meet-the-team .meet-the-team-block .image-content::after {
    opacity: 0;
    position: absolute;
    content: "";
    top: 28px;
    right: 35px;
    width: 20px;
    height: 20px;
    border-right: 2px solid var(--netural-00);
    border-top: 2px solid var(--netural-00);
    z-index: 2;
    transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
}

.meet-the-team .meet-the-team-block .image-content:hover::before,
.meet-the-team .meet-the-team-block .image-content:hover::after {
    opacity: 1;
}

.meet-the-team .meet-the-team-block .image-content:hover .hover-image {
    opacity: 1;
}

.meet-the-team .meet-the-team-block .image-content:hover .main-image {
    opacity: 0;
}

.meet-the-team .meet-the-team-block .text-content .name * {
    margin-bottom: 10px;
    font-size: 22px;
    line-height: 32px;
}

.meet-the-team .meet-the-team-block .text-content .location * {
    margin-bottom: 0;
	font-size: 20px;
	line-height: 34px;
}

/* ==================== [ Meet The Team End ] ==================== */



/* @&@&@&@&@&@&@&@&@&@&@&@&@&@&@&@&@&@ */
/* Life Career Page */
/* @&@&@&@&@&@&@&@&@&@&@&@&@&@&@&@&@&@ */
/* ==================== [ Positions Details Careers Banner Start ] ==================== */
.positions-details-careers-banner {
    position: relative;
    padding-bottom: 100px;
}

/* ==================== [ Positions Details Careers Banner End ] ==================== */

/* ==================== [ Careers Apply Bar Start ] ==================== */
.careers-apply-group {
    position: sticky;
    top: 108px;
    z-index: 2;
}

body:has(.header.scroll) .careers-apply-group {
    top: 0;
}

.careers-apply-bar {
    padding: 20px 0;
    background-color: var(--netural-400);
}

.careers-apply-bar .apply-bar-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.careers-apply-bar .apply-bar-content ul {
    display: flex;
    align-items: center;
    gap: 11px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.careers-apply-bar .apply-bar-content ul li {
    display: flex;
    align-items: center;
    gap: 10px;
}

/* ==================== [ Careers Apply Bar End ] ==================== */



/* @&@&@&@&@&@&@&@&@&@&@&@&@&@&@&@&@&@ */
/* Insights Details Page */
/* @&@&@&@&@&@&@&@&@&@&@&@&@&@&@&@&@&@ */
/* ==================== [ Insights Details Banner Start ] ==================== */
.insights-details-banner {
    padding-bottom: 233px;
    margin-bottom: 0;
}

.insights-details-banner::before {
    background: var(--netural-500);
    opacity: 0.4;
}

.insights-details-banner .heading .title * {
    margin-bottom: 0;
}

/* ==================== [ Insights Details Banner End ] ==================== */


/* @&@&@&@&@&@&@&@&@&@&@&@&@&@&@&@&@&@ */
/* Insights Details Page */
/* @&@&@&@&@&@&@&@&@&@&@&@&@&@&@&@&@&@ */
/* ==================== [ Error 404 Banner Start ] ==================== */
.error-404-banner {
    margin-bottom: 0;
    text-align: center;
    padding-bottom: 154px;
}

.inner-banner.error-404-banner .heading .title * {
    margin-inline: auto;
}

.error-404-banner .heading .disc * {
    max-width: 1006px;
    margin-inline: auto;
}

.error-404-banner .heading .action {
    max-width: 1006px;
    margin-top: 60px;
    margin-inline: auto;
}

/* ==================== [ Error 404 Banner End ] ==================== */



/* @&@&@&@&@&@&@&@&@&@&@&@&@&@&@&@&@&@ */
/* Whistleblower Channel Page */
/* @&@&@&@&@&@&@&@&@&@&@&@&@&@&@&@&@&@ */
/* ==================== [ Whistleblower Channel Banner Start ] ==================== */
.whistleblower-channel-banner {
    position: relative;
    padding-bottom: 123px;
}

/* ==================== [ Whistleblower Channel Banner End ] ==================== */


/* @&@&@&@&@&@&@&@&@&@&@&@&@&@&@&@&@&@ */
/* Privacy Policy Page */
/* @&@&@&@&@&@&@&@&@&@&@&@&@&@&@&@&@&@ */
/* ==================== [ Privacy Policy Banner Start ] ==================== */
.privacy-policy-banner {
    padding-bottom: 80px;
    min-height: 700px;
}

/* ==================== [ Privacy Policy Banner End ] ==================== */


/* @&@&@&@&@&@&@&@&@&@&@&@&@&@&@&@&@&@ */
/* Contact Page */
/* @&@&@&@&@&@&@&@&@&@&@&@&@&@&@&@&@&@ */
/* ==================== [ Contact Banner Start ] ==================== */
.contact-banner {
    min-height: 700px;
    padding-bottom: 80px;
}

/* ==================== [ Contact Banner End ] ==================== */





















































/* ==================== [ Contact Page CSS Start ] ==================== */


/* ==================== [ Global-presence CSS Start ] ==================== */

.global-presence {
	padding: 120px 0;
}

.global-presence-wrp .heading {
	width: 100%;
	max-width: 755px;
	margin: 0 auto 60px ;
	text-align: center;
}

.global-presence-wrp .heading .title * {
	margin-bottom: 10px;
}

.global-presence-wrp .global-presence-bottom {
	width: 100%;
	display: flex;
	align-items: stretch;
	justify-content: center;
}

.global-presence-wrp .global-presence-bottom .global-presence-accordion {
	width: 100%;
    max-width: 546px;
    margin-right: 25px;
}

.global-presence-accordion .accordion .accordion-item .accordion-button {
	font-size: var(--poppins-h3-size);
	line-height: var(--poppins-h3-line-height);
	color: var(--netural-00);
}

.global-presence-accordion .accordion-button::after {
	width: 48px;
	height: 48px;
	background-color: transparent;
	border: 1px solid var(--netural-00);
}

.global-presence-accordion .accordion-button:not(.collapsed)::after {
	background-color: transparent;
}

.global-presence-accordion .accordion .accordion-body {
	max-width: 100%;
}

.global-presence-accordion .accordion .accordion-body .accordion-detail {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	margin-bottom: 20px;
}

.global-presence-accordion .accordion .accordion-detail .accordion-address {
	width: 100%;
	max-width: fit-content;
	margin-right: 15px;
	color: var(--netural-00);
	opacity: 0.8;
}

.global-presence-accordion .accordion .accordion-detail .accordion-address * {
	margin-bottom: 0px;
}

.global-presence-accordion .accordion .accordion-detail .accordion-contact-info {
	width: 100%;
	max-width: 47%;
}

.global-presence-accordion .accordion .accordion-detail .accordion-contact-info a{ 
	display: block;
}

.global-presence-accordion .accordion .view-address-btn  {
	margin-top: 10px;
}

.global-presence-accordion .accordion .view-address-btn .btn.btn-link{
	display: flex;
	align-items: center;
	padding: 12px 0;
    border: none;
    color: var(--violet-300);
}

.global-presence-accordion .accordion .view-address-btn .btn.btn-link:hover {
	color: var(--netural-00);
	text-decoration: underline;
}

.global-presence-accordion .accordion .view-address-btn .btn.btn-link img {
	margin-left: 4px;
	filter: brightness(0) saturate(100%) invert(61%) sepia(14%) saturate(1055%) hue-rotate(194deg) brightness(94%) contrast(90%);
	transition: all 0.15s ease-in-out;
	-webkit-transition: all 0.15s ease-in-out;
	-moz-transition: all 0.15s ease-in-out;
	-ms-transition: all 0.15s ease-in-out;
	-o-transition: all 0.15s ease-in-out;
	-webkit-filter: brightness(0) saturate(100%) invert(61%) sepia(14%) saturate(1055%) hue-rotate(194deg) brightness(94%) contrast(90%);
}

.global-presence-accordion .accordion .view-address-btn .btn.btn-link:hover img {
	filter: brightness(0) saturate(100%) invert(100%) sepia(0%) saturate(0%) hue-rotate(5deg) brightness(102%) contrast(102%);
}

.global-presence-wrp .global-presence-bottom .global-presence-map {
	width: 100%;
	height: 735px;
	background: var(--violet-300);
	overflow: hidden;
	border-radius: 20px;
}

.global-presence-wrp .global-presence-bottom .global-presence-map .box { height: 100% !important; }

.global-presence-wrp .global-presence-bottom .global-presence-map .box .gm-style-iw { padding: 0 !important; }

.global-presence-wrp .global-presence-bottom .global-presence-map .box .gm-style-iw .gm-style-iw-chr { display: none !important; }

.global-presence-wrp .global-presence-bottom .global-presence-map .box .gm-style-iw .gm-style-iw-d * { font-weight: 400 !important; }
.global-presence-wrp .global-presence-bottom .global-presence-map .box .gm-style-iw .gm-style-iw-d { font-family: var(--font-family-poppins);
font-style: normal;
font-size: 16px;
font-weight: 400 !important;
line-height: 24px;
white-space: nowrap;
color: var(--netural-500); padding: 6px 15px 8px !important; overflow: hidden !important; }

.global-presence-wrp .global-presence-bottom .global-presence-map .gm-style .gm-style-iw-tc::after {
    height: 8px;
    left: 50%;
    width: 16px;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
}

.global-presence-wrp .global-presence-bottom .global-presence-map .gm-control-active>img {
	height: 16px !important;
	width: 16px !important;
	filter: brightness(0) !important;
	-webkit-filter: brightness(0) !important;
}

.global-presence-wrp .global-presence-bottom .global-presence-map .gm-control-active {
	height: 36px !important;
	width: 36px !important;
	background-color: var(--netural-00) !important;
	margin-bottom: 10px !important;
	border-radius: 10px !important;
	-webkit-border-radius: 10px !important;
	-moz-border-radius: 10px !important;
	-ms-border-radius: 10px !important;
	-o-border-radius: 10px !important;
}
.global-presence-wrp .global-presence-bottom .global-presence-map .gmnoprint > div {
	background-color: var(--transparent) !important;
	box-shadow: none !important;
}

.global-presence-wrp .global-presence-bottom .global-presence-map .gmnoprint > div .gm-control-active + div {
	background-color: var(--transparent) !important;
}


.global-presence-wrp .global-presence-bottom .global-presence-map .gm-control-active:hover {
	background-color: var(--violet-300) !important;
}

.global-presence-wrp .global-presence-bottom .global-presence-map .gm-control-active:hover > img {
	filter: brightness(0) invert(1) !important;
	-webkit-filter: brightness(0) invert(1) !important;
}

/* ==================== [ Global-presence CSS End ] ==================== */






/* ==================== [ Contact CSS End ] ==================== */


/* ==================== [ Hiring-process CSS End ] ==================== */

.hiring-process .how-we-make-wrp .heading{
	max-width: 885px;
	text-align: left;
	margin: 0 0 48px 0;
}

.hiring-process .how-we-make-wrp .short-title *{
	font-size: var(--poppins-h3-size);
	line-height: var(--poppins-h3-line-height);
	font-weight: var(--font-weight-300);
	margin-bottom: 48px;
}

.hiring-process .how-we-make-block-group .how-we-make-block .block-title *{
	font-size: var(--merri-h1-size);
	line-height: var(--merri-h2-line-height);
}

.hiring-process .how-we-make-block-group .how-we-make-block .block-title span {
	font-size: 56px;
	line-height: 64px;
}

.hiring-process .how-we-make-block-group .how-we-make-block {
	padding: 37px 110px;
}
/* ==================== [ Hiring-process CSS End ] ==================== */


/* ==================== [ Position-Career Page CSS End ] ==================== */

/* ==================== [ About-US Page CSS Start ] ==================== */

/* ==================== [ Employee-Review CSS Start ] ==================== */

.employee-review {
	background: #396BFF;
}

.employee-review .employee-review-wrp {
	width: 100%;
	max-width: 1266px;
	margin: 0 auto;
	display: flex;
	align-items: center;
	justify-content: center;
}

.employee-review-wrp .employee-review-left {
	width: 100%;
	max-width: 216px;
	margin: 0 30px 0 0;
}

.employee-review-wrp .employee-review-left .employee-img{
	width: 100%;
	max-width: 120px;
	aspect-ratio: 120/120;
	margin-bottom: 12px;
	overflow: hidden;
	border-radius: 10px;
	-webkit-border-radius: 10px;
	-moz-border-radius: 10px;
	-ms-border-radius: 10px;
	-o-border-radius: 10px;
}

.employee-review-wrp .employee-review-left .employee-img * {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.employee-review-wrp .employee-review-left .employee-details *{
	margin-bottom: 0;
}

.employee-review-wrp .employee-review-content {
	width: 100%;
	max-width: 1023px;
	margin-bottom: 20px;
	position: relative;
	z-index: 1;
}

.employee-review-wrp .employee-review-content::before {
	content: "";
	position: absolute;
	right: 52px;
	bottom: -41px;
	width: 109px;
	height: 82px;
	background: url(../images/svgs/double-quotes-light.svg);
	background-repeat: no-repeat;
    background-size: contain;
	z-index: -1;
}

.employee-review-wrp .employee-review-content .short-title *{
	font-size: var(--poppins-body-l-size);
	line-height: var(--poppins-body-l-line-height);
	text-transform: uppercase;
}

.employee-review-wrp .employee-review-content .title * {
	font-family: var(--font-family-merriweather);
    font-size: var(--merri-h3-size);
    font-weight: var(--font-weight-300);
    line-height: var(--merri-h3-line-height);
    font-style: var(--style-italic);
}

.employee-review .employee-review-main-title {
	padding-left: 300px;
}

.employee-review-carousel {
	opacity: 0;
}

.employee-review-carousel.swiper-initialized {
	opacity: 1;
}

.employee-review-carousel .swiper-pagination {
	position: relative;
	left: auto;
	right: auto;
	bottom: auto;
	margin-top: 30px;
}

.employee-review-carousel .swiper-pagination .swiper-pagination-bullet {
	width: 12px;
	height: 12px;
	background: var(--white);
}

.employee-review-carousel .employee-review-block {
	display: flex;
	flex-wrap: wrap;
	flex-direction: row-reverse;
	gap: 30px;
}

.employee-review-carousel .employee-review-block > * {
	flex: 1 0 0;
	max-width: 100%;
}

.employee-review-carousel .employee-review-block .employee-review-main-detail .quote-detail {
	position: relative;
	padding-bottom: 30px;
	font-family: var(--font-family-merriweather);
    font-size: var(--merri-h3-size);
    font-weight: var(--font-weight-300);
    line-height: var(--merri-h3-line-height);
    font-style: var(--style-italic);
}

.employee-review-carousel .employee-review-block .employee-review-main-detail .quote-detail *:last-child {
	margin-bottom: 0;
}

.employee-review-carousel .employee-review-block .employee-review-main-detail .quote-detail:before {
	position: absolute;
	content: "";
	right: 52px;
	bottom: 0;
    width: 109px;
    height: 82px;
    background: url("../images/svgs/double-quotes-light.svg");
    background-repeat: no-repeat;
    background-size: 100% 100%;
    z-index: -1;
}

.employee-review-carousel .employee-review-block .employee-review-profile {
	flex: 0 0 auto;
	width: 270px;
	display: flex;
	flex-wrap: wrap;
	flex-direction: column;
	gap: 12px;
}

.employee-review-carousel .employee-review-block .employee-review-profile .employee-image {
	width: 120px;
	height: 120px;
	overflow: hidden;
	border-radius: 10px;
	-webkit-border-radius: 10px;
	-moz-border-radius: 10px;
	-ms-border-radius: 10px;
	-o-border-radius: 10px;
}

.employee-review-carousel .employee-review-block .employee-review-profile .employee-image * {
	width: 100%;
	height: 100%;
	object-fit: cover;
	font-family: 'object-fit: cover';
}

.employee-review-carousel .employee-review-block .employee-review-profile .detail * {
	margin-bottom: 0;
}
/* ==================== [ Employee-Review CSS End ] ==================== */

/* ==================== [ Our-actions CSS Start ] ==================== */

.our-actions-top-content {
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	margin-bottom: 60px;
}

.our-actions-top-content .heading{
	width: 100%;
	max-width: 654px;
	margin-right: 20px;
}

.our-actions-top-content .heading .details *:last-child {
	margin-bottom: 0px;
}

.our-actions-wrp .our-actions-card-group {
	display: flex ; 
	align-items: center;
	flex-direction: column;
	gap: 20px;
}

.our-actions-wrp .our-actions-card {
	display: flex;
	align-items: center;
	padding: 30px;
	border-radius: 10px;
	-webkit-border-radius: 10px;
	-moz-border-radius: 10px;
	-ms-border-radius: 10px;
	-o-border-radius: 10px;
}

.our-actions-wrp .our-actions-card .our-actions-img {
	width: 100%;
	max-width: 474px;
	aspect-ratio: 474/474;
	margin-right: 150px;
	position: relative;
	overflow: hidden;
	border-radius: 10px;
	-webkit-border-radius: 10px;
	-moz-border-radius: 10px;
	-ms-border-radius: 10px;
	-o-border-radius: 10px;
}

.our-actions-wrp .our-actions-card .our-actions-img *{
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.our-actions-wrp .our-actions-card .our-actions-img::before {
	position: absolute;
    content: "";
    height: 28px;
    width: 28px;
    border: 2px solid var(--netural-00);
    border-bottom: unset;
    border-left: unset;
    top: 28px;
    right: 30px;
    pointer-events: none;
}

.our-actions-wrp .our-actions-card .our-actions-img::after {
    position: absolute;
    content: "";
    height: 28px;
    width: 28px;
    border: 2px solid var(--netural-00);
    border-top: unset;
    border-right: unset;
    bottom: 30px;
    left: 28px;
    pointer-events: none;
}

.our-actions-wrp .our-actions-card .our-actions-content .title * { word-break: break-word; }

.our-actions-wrp .our-actions-card .our-actions-content .our-actions-card-btn { margin-top: auto; margin-bottom: 0; }
.our-actions-wrp .our-actions-card .our-actions-content {
	width: 100%;
	max-width: 656px;
	display: flex;
	flex-direction: column;
	flex-grow: 1;
}

.our-actions-wrp .our-actions-card .our-actions-content .disc {
	font-size: var(--poppins-body-m-size);
	line-height: var(--poppins-body-m-line-height);
}

.our-actions-wrp .our-actions-card {
	height: 100%;
}

/* ==================== [ Our-actions CSS End ] ==================== */

/* ==================== [ About-US Page CSS End ] ==================== */


/* ==================== [ Our luxavation Page CSS Start ] ==================== */

/* ==================== [ Our solution CSS Start ] ==================== */
.our-solution {
	padding: 110px 0;
}

.our-solution-wrp .our-solution-card{
	display: flex;
	align-items: flex-start;
	justify-content: center;
}

.our-solution-wrp .card-image {
	width: 100%;
	max-width: 540px;
	aspect-ratio: 540/540;
	margin: 0 148px 0 0;
	position: relative;
	overflow: hidden;
	border-radius: 10px;
	-webkit-border-radius: 10px;
	-moz-border-radius: 10px;
	-ms-border-radius: 10px;
	-o-border-radius: 10px;
}

.our-solution-wrp .card-image * {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.our-solution-wrp .our-solution-card .card-content {
	width: 100%;
	max-width: 656px;
}

.our-solution-wrp .our-solution-card .card-content .short-title *{
	font-size: var(--poppins-body-l-size);
	line-height: var(--poppins-body-l-line-height);
	font-weight: var(--font-weight-300);
	text-transform: uppercase;
}

.our-solution-wrp .our-solution-card .card-content .card-details h3 {
	font-size: var(--poppins-h3-size);
	line-height: var(--poppins-h3-line-height);
	font-weight: var(--font-weight-300);
}

.our-solution-wrp .our-solution-card .card-content .card-details *:last-child {
	margin-bottom: 0px;
}

.our-solution-wrp .card-image::before {
    position: absolute;
    content: "";
    height: 28px;
    width: 28px;
    border: 2px solid var(--netural-500);
    border-bottom: unset;
    border-left: unset;
    top: 28px;
    right: 30px;
    pointer-events: none;
}

.our-solution-wrp .card-image::after {
    position: absolute;
    content: "";
    height: 28px;
    width: 28px;
    border: 2px solid var(--netural-500);
    border-top: unset;
    border-right: unset;
    bottom: 30px;
    left: 28px;
    pointer-events: none;
}
/* ==================== [ Our solution CSS End ] ==================== */

/* ==================== [ Operation-modules CSS Start ] ==================== */

.operations-modules {
	padding: 110px 0;
}

.operations-modules-wrp .operations-modules-card{
	display: flex;
	align-items: flex-start;
	justify-content: center;
}

.operations-modules-wrp .operations-modules-image{
	width: 100%;
	max-width: 540px;
	aspect-ratio: 540/540;
	margin: 0 0 0 148px;
	position: relative;
	overflow: hidden;
	border-radius: 10px;
	-webkit-border-radius: 10px;
	-moz-border-radius: 10px;
	-ms-border-radius: 10px;
	-o-border-radius: 10px;
}

.operations-modules-wrp .operations-modules-image * {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.operations-modules-wrp .operations-modules-card .operations-modules-content {
	width: 100%;
	max-width: 656px;
}

.operations-modules-wrp .operations-modules-card .operations-modules-content .short-title *{
	font-size: var(--poppins-body-l-size);
	line-height: var(--poppins-body-l-line-height);
	font-weight: var(--font-weight-300);
	text-transform: uppercase;
}

.operations-modules-wrp .operations-modules-card .operations-modules-content .card-content *:last-child {
	margin-bottom: 0px;
}

.operations-modules-wrp .operations-modules-image::before {
    position: absolute;
    content: "";
    height: 28px;
    width: 28px;
    border: 2px solid var(--netural-500);
    border-bottom: unset;
    border-left: unset;
    top: 28px;
    right: 30px;
    pointer-events: none;
}

.operations-modules-wrp .operations-modules-image::after {
    position: absolute;
    content: "";
    height: 28px;
    width: 28px;
    border: 2px solid var(--netural-500);
    border-top: unset;
    border-right: unset;
    bottom: 30px;
    left: 28px;
    pointer-events: none;
}

/* ==================== [ Operation-modules CSS End ] ==================== */

/* ==================== [ client-voices CSS Start ] ==================== */

.client-voices {
	background: #6047C6;
}

.client-voices .heading {
	width: 100%;
	max-width: 1266px;
	margin: 0 auto;
	text-align: center;
	position: relative;
}

.client-voices .heading::before {
	content: "";
	position: absolute;
	bottom: -12px;
	right: 50px;
	width: 109px;
	height: 82px;
	background: url(../images/svgs/double-quotes.svg);
	background-repeat: no-repeat;
	background-size: contain;
}

.client-voices .heading .subtitle {
	text-transform: uppercase;
	font-weight: var(--font-weight-300);
}

.client-voices .heading .title *{
	font-family: var(--font-family-merriweather);
	font-size: var(--merri-h3-size);
	font-weight: var(--font-weight-300);
	line-height: var(--merri-h3-line-height);
	font-style: var(--style-italic);
}

.client-voices .heading .disc * {
	margin-bottom: 0px;
} 

.client-voice-carousel {
	opacity: 0;
}

.client-voice-carousel.swiper-initialized {
	opacity: 1;
}

.client-voice-carousel::before {
	content: "";
	position: absolute;
	bottom: 30px;
	right: 50px;
	width: 109px;
	height: 82px;
	background: url(../images/svgs/double-quotes.svg);
	background-repeat: no-repeat;
	background-size: contain;
}

.client-voice-carousel .swiper-pagination {
	position: relative;
	left: auto;
	right: auto;
	bottom: auto;
	margin-top: 30px;
}

.client-voice-carousel .swiper-pagination .swiper-pagination-bullet {
	width: 12px;
	height: 12px;
	background: var(--white);
}

.client-voice-carousel .client-voice-block {
	width: 100%;
	max-width: 1266px;
	margin: 0 auto;
	text-align: center;
	position: relative;
}

.client-voice-carousel .client-voice-block .detail {
	font-family: var(--font-family-merriweather);
	font-size: var(--merri-h3-size);
	font-weight: var(--font-weight-300);
	line-height: var(--merri-h3-line-height);
	font-style: var(--style-italic);
	margin-bottom: 30px;
}

.client-voice-carousel .client-voice-block .client-profile *:last-child {
	margin-bottom: 0;
}

/* ==================== [ client-voices CSS End ] ==================== */

/* ==================== [ Our luxavation Page CSS End ] ==================== */



/* ==================== [ Our Work Page CSS Start ] ==================== */

/* ==================== [ How-we-do CSS Start ] ==================== */

.how-we-do-wrp .heading {
	margin-bottom: 0;
}

.how-we-do-wrp .heading .title {
	text-align: center;
}

.how-we-do-wrp .how-we-do-block-group {
	display: flex;
	align-items: stretch;
	justify-content: center;
	gap: 10px;
}

.how-we-do-wrp .how-we-do-block {
	width: 33%;
	padding: 482px 30px 40px;
	position: relative;
	border-radius: 10px;
	overflow: hidden;
	-webkit-border-radius: 10px;
	-moz-border-radius: 10px;
	-ms-border-radius: 10px;
	-o-border-radius: 10px;
	transition: all 0.3s ease-in-out;
	-webkit-transition: all 0.3s ease-in-out;
	-moz-transition: all 0.3s ease-in-out;
	-ms-transition: all 0.3s ease-in-out;
	-o-transition: all 0.3s ease-in-out;
}

.how-we-do-wrp .how-we-do-block.active {
	width: 65%;
}

.how-we-do-wrp .how-we-do-block .how-we-do-btn {
	width: fit-content;
	margin: 0 0 0 auto;
}

.how-we-do-wrp .how-we-do-block .how-we-do-btn .btn-arrow::before {
	background-image: url(../images/svgs/plus-icon.svg);
}

.how-we-do-wrp .how-we-do-block .block-bg-content {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	gap: 20px;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	padding: 40px 30px;
	background: var(--blue-20);
	color: var(--netural-500);
	opacity: 0;
	pointer-events: none;
	transition: unset;
	-webkit-transition: unset;
	-moz-transition: unset;
	-ms-transition: unset;
	-o-transition: unset;
}

.how-we-do-wrp .how-we-do-block.active .block-bg-content {
	opacity: 1;
	overflow-y: auto;
	pointer-events: auto;
	transition: opacity 0.2s ease-in-out 0.3s !important;
	-webkit-transition: opacity 0.2s ease-in-out 0.3s !important;
	-moz-transition: opacity 0.2s ease-in-out 0.3s !important;
	-ms-transition: opacity 0.2s ease-in-out 0.3s !important;
	-o-transition: opacity 0.2s ease-in-out 0.3s !important;
}


.how-we-do-wrp .how-we-do-block .block-bg-content .heading .title *{
	text-align: left;
	color: var(--netural-500);
}

.how-we-do-wrp .how-we-do-block .block-bg-content .heading .disc * { margin-bottom: 0; }

.how-we-do-wrp .how-we-do-block .block-bg-content .heading .disc {
	font-size: var(--poppins-h4-size);
	line-height: var(--poppins-h4-line-height);
	font-weight: var(--font-weight-300);
}

.how-we-do-wrp .how-we-do-block .block-bg-content .bottom-content .block-detail {
	margin-bottom: 30px;
}

.how-we-do-wrp .how-we-do-block .block-bg-content .bottom-content .block-detail * ,
.how-we-do-wrp .how-we-do-block .block-bg-content .bottom-content .short-title * { font-size: 18px; line-height: 24px; margin-bottom: 0; }

.how-we-do-wrp .how-we-do-block .block-bg-content .bottom-content ul {
	list-style: none;
	padding: 0;
	margin: 0;
	margin: 30px 0 0 0;
}

.how-we-do-wrp .how-we-do-block .block-bg-content .bottom-content ul li {
	display: flex;
	align-items: center;
	justify-content: flex-start;
	padding: 15px 0;
	border-bottom: 1px solid rgba(19, 29, 86, 0.1);
}

.how-we-do-wrp .how-we-do-block .block-bg-content .bottom-content ul li:first-child {
	padding-top: 0px;
}

.how-we-do-wrp .how-we-do-block .block-bg-content .bottom-content ul li:last-child {
	padding-bottom: 0px;
	border-bottom: none;
}

.how-we-do-wrp .how-we-do-block .block-bg-content .bottom-content ul li img {
	width: 52px;
	height: 52px;
	margin-right: 33px;
}

/* ==================== [ How-we-do CSS End ] ==================== */

/* ==================== [ Technology-power CSS Start ] ==================== */

.technology-power .technology-power-wrp .heading{
	width: 100%;
	max-width: 885px;
	margin: 0 auto 80px;
	text-align: center;
}

.technology-power .technology-power-wrp .heading .title * {
	margin-bottom: 10px;
}

.technology-power-wrp .nav-tabs {
	justify-content: center;
	border-bottom: none;
	margin-bottom: 80px;
}

.technology-power-wrp .nav-tabs .nav-item {
	margin-right: 16px;
}

.technology-power-wrp .nav-tabs .nav-item:last-child {
	margin-right: 0px;
}

.technology-power-wrp .nav-tabs .nav-link {
	text-transform: uppercase;
	color: var(--netural-00);
	padding: 8px 15px;
	border: none;
	border-radius: 8px;
	-webkit-border-radius: 8px;
	-moz-border-radius: 8px;
	-ms-border-radius: 8px;
	-o-border-radius: 8px;
	transition: all 0.3s ease-in-out;
	-webkit-transition: all 0.3s ease-in-out;
	-moz-transition: all 0.3s ease-in-out;
	-ms-transition: all 0.3s ease-in-out;
	-o-transition: all 0.3s ease-in-out;
}

.technology-power-wrp .nav-tabs .nav-item.show .nav-link, 
.technology-power-wrp .nav-tabs .nav-link.active {
	color: var(--netural-500);
	background: var(--violet-300);
}

.technology-power-wrp .tab-content .technology-logo-group {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-wrap: wrap;
	gap: 86px;
	row-gap: 30px;
}

.technology-power-wrp .tab-content .technology-logo-group .logo-item {
	width: 100%;
	max-width: 200px;
	height: auto;
	aspect-ratio: 200 / 130;
	opacity: 0.6;
	display: flex;
	align-items: center;
}

.technology-power-wrp .tab-content .technology-logo-group .logo-item img { height: auto; height: 100%; width: 100%; object-fit: contain; object-position: center; }

.technology-power-wrp .tab-content .technology-logo-group .logo-item:last-child {
	margin-right: 0px;
}

/*==================== [ Technology-power CSS End ] ==================== */

/* ==================== [ Services CSS Start ] ==================== */

.services-wrp .row {
	margin: 0 -5px;
}

.services-wrp .row >{
	padding: 0 5px
}

.services-wrp .service-card {
	width: 100%;
	height: 100%;
	padding: 290px 40px 40px 40px;
	background: var(--netural-400);
	position: relative;
	overflow: hidden;
	border-radius: 10px;
	-webkit-border-radius: 10px;
	-moz-border-radius: 10px;
	-ms-border-radius: 10px;
	-o-border-radius: 10px;
}

.services-wrp .service-card .heading {
	position: relative;
	z-index: 1;
}

.services-wrp .service-card .heading .title * {
	margin-bottom: 68px;
}

.services-wrp .service-card .heading .disc {
	width: 100%;
	max-width: 502px;
}

.services-wrp .service-card .heading .disc * {
	margin-bottom: 0px;
}


.services-wrp .service-card.left .card-bg-img{
	position: absolute;
	top: -170px;
    right: -177px;
    width: 700px;
    height: 778px;
	z-index: 0;
}

.services-wrp .service-card.right .card-bg-img{
	position: absolute;
	top: -160px;
    right: -165px;
    width: 700px;
    height: 778px;
	z-index: 0;
}

.services-wrp .service-card .card-bg-img *{
	width: 100%;
	height: 100%;
}

/* ==================== [ Services CSS End ] ==================== */

/* ==================== [ Success-project CSS End ] ==================== */

.success-project .accordion .accordion-body .accordion-detail *{
	margin-bottom: 0px;
}
/* ==================== [ Success-project CSS End ] ==================== */


/* ==================== [ Our Work Page CSS Start ] ==================== */



/* ==================== [ Salesforce Page CSS Start ] ==================== */

/* ==================== [ How-we-can Help CSS Start ] ==================== */

.how-we-make-wrp .heading{
	width: 100%;
	max-width: 870px;
	margin: 0 auto 48px;
	text-align: center;
}

.how-we-make-block-group .how-we-make-block {
	padding: 48px 110px;
	margin-bottom: 10px;
	border-radius: 10px;
	-webkit-border-radius: 10px;
	-moz-border-radius: 10px;
	-ms-border-radius: 10px;
	-o-border-radius: 10px;
}

.how-we-make-block-group .how-we-make-block:last-child {
	margin-bottom: 0px;
}

.how-we-make-block-group .how-we-make-block .block-title * {
	font-family: var(--font-family-merriweather);
	font-size: var(--merri-h1-size);
	font-weight: var(--font-weight-300);
	font-style: var(--style-italic);
}

.how-we-make-block-group .how-we-make-block .block-title span {
	font-family: var(--font-family-poppins);
	font-size: var(--poppins-display-l-size);
	font-weight: var(--font-weight-400);
	line-height: var(--poppins-display-l-line-height);
	font-style: normal;
}

.how-we-make-block-group .how-we-make-block .block-right .disc * {
	font-size: var(--poppins-body-l-size);
	line-height: var(--poppins-body-l-line-height);
}

.how-we-make-block-group .how-we-make-block .block-title *,
.how-we-make-block-group .how-we-make-block .block-right .disc * {
	margin-bottom: 0;
}
/* ==================== [ How-we-can Help CSS End ] ==================== */

/* ==================== [ Consultancy CSS Start ] ==================== */

.consultancy {
	padding: 120px 0;
}

.consultancy .consultancy-left .heading{
	width: 100%;
	max-width: 540px;
}

.consultancy-right ul {
	list-style: none;
	padding: 0;
	margin: 0;
}

.consultancy-right ul li {
	font-size: var(--poppins-h4-size);
	line-height: var(--poppins-h4-line-height);
	font-weight: var(--font-weight-300);
	letter-spacing: 0.48px;
	color: var(--blue-20);
	display: flex;
	align-items: center;
	padding: 15px 0;
	border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.consultancy-right ul li img {
	width: 52px;
	height: 52px;
	margin-right: 33px;
}

.consultancy-right ul li:first-child{
	padding-top: 0;
}

.consultancy-right ul li:last-child{
	padding-bottom: 0;
	border-bottom: none;
}
/* ==================== [ Consultancy CSS End ] ==================== */

/* ==================== [ Salesforce Page CSS End ] ==================== */



/* ==================== [ What-We-Do Page CSS Start ] ==================== */

/* ==================== [ FAQS CSS Start ] ==================== */

.faq-wrp {
	width: 100%;
	max-width: 818px;
	margin: 0 auto;
}

.faq-wrp .title {
	text-align: center;
	margin-bottom: 60px;
}

.faq-wrp .accordion .accordion-item .accordion-button {
	font-size: var(--poppins-h4-size);
	line-height: var(--poppins-h4-line-height);
	font-weight: var(--font-weight-400);
	color: var(--violet-300) ;
}

.faq-wrp .accordion .accordion-item .accordion-button.collapsed {
	color: var(--netural-00) ;
}

.faq-wrp .accordion .accordion-body {
	max-width: 662px;
}

.faq-wrp .accordion .accordion-body .accordion-detail{
	margin-bottom: 0px;
}

.faq-wrp .accordion .accordion-body .accordion-detail * {
	margin-bottom: 0;
}

.faq-wrp .accordion-button::after {
	margin-left: 20px;
}

.faq .faq-wrp .accordion .accordion-item .accordion-button { gap: 58px; }
/* ==================== [ FAQS CSS End ] ==================== */




/* ==================== [ Industry-leading CSS Start ] ==================== */

.industry-leading {
	padding: 110px 0;
}

.industry-leading-accordion {
	width: 100%;
	max-width: 654px;
	margin: 0 0 0 auto;
}

.accordion .accordion-item {
	padding: 26px 0;
	background: transparent;
	border: none;
	border-bottom: 1px solid rgba(255, 255, 255, 0.4);
}

.accordion .accordion-item:first-child  {
	padding-top: 0;
}

.accordion .accordion-item:last-child {
	padding-bottom: 0;
	border-bottom: none;
}

.accordion .accordion-item .accordion-button {
	background: transparent !important;
	color: var(--blue-20);
	padding: 0;
	box-shadow: none !important;
	position: relative;
}

.industry-leading-wrp .accordion .accordion-item .accordion-button { gap: 20px; }

.industry-leading-wrp .accordion .accordion-item .accordion-button.collapsed {
	color: var(--blue-20);
}

.industry-leading-wrp .accordion .accordion-item .accordion-button {
	color: var(--violet-300);
}

.accordion .accordion-button {
	font-size: var(--poppins-h2-size);
	line-height: var(--poppins-h2-line-height);
	font-weight: var(--font-weight-300);
}

.accordion-button::after {
	position: relative;
	width: 36px;
	height: 36px;
	background-color: var(--netural-400);
	background-image: url('data:image/svg+xml,<svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg"> <path d="M8.00022 2.6665V13.3332" stroke="white" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/> <path d="M13.3337 8.00022H2.66699" stroke="white" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/> </svg> ');
	background-size: 16px;
	background-position: center;
	background-repeat: no-repeat;
	border: 0;
	border-radius: 10px;
	-webkit-border-radius: 10px;
	-moz-border-radius: 10px;
	-ms-border-radius: 10px;
	-o-border-radius: 10px;
	transition: all 0.3s ease-in-out, transform 0s !important;
	-webkit-transition: all 0.3s ease-in-out, transform 0s !important;
	-moz-transition: all 0.3s ease-in-out, transform 0s !important;
	-ms-transition: all 0.3s ease-in-out, transform 0s !important;
	-o-transition: all 0.3s ease-in-out, transform 0s !important;
}

.accordion-button:not(.collapsed)::after {
	background-color: var(--violet-300);
	background-image: url('data:image/svg+xml,<svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg"> <path d="M13.3337 8.00022H2.66699" stroke="white" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/> </svg> ');
}

.accordion .accordion-body {
	width: 100%;
	max-width: 536px;
	padding: 26px 0 0 0;
}

.accordion .accordion-body .accordion-detail {
	margin-bottom: 30px;
	color: var(--netural-00);
}

.accordion .accordion-body .accordion-detail {
	margin-bottom: 0px;
}

/* ==================== [ Industry-leading CSS End ] ==================== */

/* ==================== [ What-We-Do Page CSS End ] ==================== */


/* ==================== [ Global-design CSS Start ] ==================== */

.global-design-wrp {
	margin-top: 67px;
}

.global-design-content {
	width: 100%;
	max-width: 656px;
	margin-top: 45px;
}

.global-img {
	width: 100%;
	max-width: 440px;
	margin: 0 0 0 auto;
	position: relative;
}

/* .global-img::before {
	content: "";
	position: absolute;
	top: 0;
	right: 0;
	width: 200px;
	height: 200px;
	mix-blend-mode: screen;
	background: url(../images/svgs/world-img-bg.svg);
	z-index: -1;
	opacity: 0.6;
} */

.global-img::before {
	content: "";
	position: absolute;
	top: 0;
	right: 0;
	width: 270px;
	height: 270px;
	mix-blend-mode: screen;
	background: url(../images/svgs/world-img-bg.svg);
	background-size: 100%;
	background-repeat: no-repeat;
	background-position: center;
	z-index: -1;
	opacity: 0.5;
}

/* ==================== [ Global-design CSS End ] ==================== */



/* ==================== [ Footer-contact CSS Start ] ==================== */

.footer-contact-wrp {
	display: flex;
	gap: 10px;
}

.footer-contact-block {
	min-height: 498px;
	padding: 40px;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	justify-content: space-between;
	border-radius: 10px;
	-webkit-border-radius: 10px;
	-moz-border-radius: 10px;
	-ms-border-radius: 10px;
	-o-border-radius: 10px;
}

.footer-contact-block.left {
	width: 100%;
	max-width: 808px;
}

.footer-contact-block.right {
	width: 100%;
	max-width: 526px;
}

.footer-contact-block .heading .title * {
	font-weight: var(--font-weight-700);
	margin-bottom: 13px;
}

.footer-contact-block .heading .disc {
	width: 100%;
	max-width: 480px;
}

/* ==================== [ Footer-contact CSS End ] ==================== */


/* ==================== [ Footer CSS Start ] ==================== */

.footer {
	background: var(--blue-900);
}

.footer-wrp {
	width: 100%;
	text-align: center;
}

.f-top {
	padding-bottom: 50px;
	border-bottom: 1px solid rgba(255, 255, 255, 0.40);
}

.f-top .f-logo {
	width: 100%;
	max-width: 222px;
	margin: 0 auto 30px;
}

.f-top .f-logo a {
	display: block;
}

.f-top ul {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	align-items: center;
	justify-content: center;
}

.f-top .f-block {
	margin-bottom: 50px;
}

.f-top .f-block ul li {
	font-size: var(--poppins-body-s-size);
	line-height: var(--poppins-body-s-line-height);
	font-weight: var(--font-weight-700);
	padding: 0 15px;
}

.footer-wrp ul li a {
	text-decoration: none;
}

.f-top .social-icons {
	margin-bottom: 50px;
}

.f-top .social-icons ul li {
	margin-right: 12px;
}

.f-top .social-icons ul li:last-child {
	margin-right: 0px;
}

.f-top .social-icons ul li a {
	width: 50px;
	height: 50px;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 12px;
	background: var(--netural-500);
	border-radius: 12px;
	-webkit-border-radius: 12px;
	-moz-border-radius: 12px;
	-ms-border-radius: 12px;
	-o-border-radius: 12px;
}

.f-top .social-icons ul li a:hover {
	background: var(--violet-300);
}

.f-top .f-links-container ul li {
	padding: 0 25px;
	font-family: var(--font-family-merriweather);
	font-size: var(--merri-body-m-size);
	line-height: var(--merri-body-m-line-height);
	font-style: var(--style-italic);
}

.f-bottom {
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 33px 0 0 0;
}

.f-bottom ul {
	list-style: none;
}

.f-bottom ul li a {
	text-decoration: none;
}

.f-bottom .f-left {
	text-align: left;
	margin-right: 20px;
}

.f-bottom .f-left ul {
	display: flex;
	align-items: center;
	justify-content: flex-start;
	margin: 0;
	padding: 0 0 30px 0;
}

.f-bottom .f-left ul li {
	padding: 0 7px;
	font-size: var(--poppins-body-s-size);
	line-height: var(--poppins-body-s-line-height);
	font-weight: var(--font-weight-300);
	position: relative;
}

.f-bottom .f-left ul li::before {
	content: "";
	position: absolute;
	top: 50%;
	right: 0;
	width: 1px;
	height: 50%;
	background: var(--netural-00);
	transform: translateY(-50%);
	-webkit-transform: translateY(-50%);
	-moz-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	-o-transform: translateY(-50%);
}

.f-bottom .f-left ul li:first-child {
	padding-left: 0;
}

.f-bottom .f-left ul li:last-child {
	padding-right: 0;
}

.f-bottom .f-left ul li:last-child::before {
	display: none;
}

.f-bottom .f-left ul li a:hover{
	text-decoration: underline;
}

.f-bottom .copyright * {
	font-size: var(--poppins-body-s-size);
	line-height: var(--poppins-body-s-line-height);
	font-weight: var(--font-weight-300);
	margin-bottom: 0;
}

.f-bottom .f-right {
	display: flex;
	align-items: center;
	justify-content: flex-end;
}

.f-bottom .f-right .f-partener-img {
	margin-right: 51px;
}

.f-bottom .f-right .f-partener-img:last-child {
	margin-right: 0;
}

/* ==================== [ Footer CSS End ] ==================== */




























/* ======================================================= */
/* ==================== [ Home Page ] ==================== */
/* ======================================================= */

/* ==================== [ What We Do Start ] ==================== */

.what-we-do { overflow: hidden; }
/* Heading Block */
.what-we-do .heading-block { margin-bottom: 60px; }
.what-we-do .heading-block { display: flex; align-items: end; justify-content: space-between; gap: 20px; }

.what-we-do .heading-block .title * { margin-bottom: 20px; }
.what-we-do .heading-block .disc * { font-size: var(--poppins-body-m-size); line-height: var(--poppins-body-m-line-height); margin-bottom: 0; }
.what-we-do .heading-block .action { flex-shrink: 0; }

/* Services Card */
.what-we-do .services-card { width: 465px; padding: 40px; display: flex; flex-direction: column; gap: 58px; border-radius: 10px; -webkit-border-radius: 10px; -moz-border-radius: 10px; -ms-border-radius: 10px; -o-border-radius: 10px; transition: all .3s ease-in-out; -webkit-transition: all .3s ease-in-out; -moz-transition: all .3s ease-in-out; -ms-transition: all .3s ease-in-out; -o-transition: all .3s ease-in-out; }

.what-we-do .services-card .title * { font-size: var(--merri-h4-size); font-family: var(--font-family-merriweather); font-style: var(--style-italic); font-weight: var(--font-weight-300); margin-bottom: 0; line-height: var(--merri-h4-line-height); }
.what-we-do .services-card .disc * { color: var(--white); font-size: var(--poppins-body-m-size); line-height: var(--poppins-body-m-line-height); margin-bottom: 0; font-weight: var(--font-weight-400); margin-bottom: 0;display: -webkit-box; line-clamp: 3; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; }

.what-we-do .services-card .disc-block { display: flex; align-items: center; gap: 20px; margin-block: auto 0; }

.what-we-do .services-card .btn-arrow { flex-shrink: 0; pointer-events: none; opacity: 0;transition: all .3s ease-in-out; -webkit-transition: all .3s ease-in-out; -moz-transition: all .3s ease-in-out; -ms-transition: all .3s ease-in-out; -o-transition: all .3s ease-in-out; }

/* Services Card Hover */
.what-we-do .services-card:hover { transform: translateY(-40px); -webkit-transform: translateY(-40px); -moz-transform: translateY(-40px); -ms-transform: translateY(-40px); -o-transform: translateY(-40px); }
.what-we-do .services-card:hover .btn-arrow { pointer-events: auto; opacity: 1; }

.what-we-do .services-card .icon { height: 240px; width: 240px; }

.what-we-do #horizontal-scroll { position: relative; }
.what-we-do .services-card-wrapper { height: 100%; display: flex; align-items: center; }
.what-we-do .horizontal { display: flex; height: auto; gap: 10px; }
/* ==================== [ What We Do End ] ==================== */

/* ==================== [ Success Stories Start ] ==================== */
.success-stories { position: relative; }
.success-stories-block { position: relative; background-size: cover !important; background-position: center !important; height: 725px; display: flex; align-items: center; justify-content: center; border-radius: 10px; -webkit-border-radius: 10px; -moz-border-radius: 10px; -ms-border-radius: 10px; -o-border-radius: 10px; overflow: hidden; padding: 30px; }
.success-stories-block::after { content: ""; position: absolute; height: 100%; width: 100%; top: 0; left: 0; background: radial-gradient(circle, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0) 100% ); opacity: .4; z-index: 1; pointer-events: none; }

.success-stories-block .success-stories-content { position: relative; z-index: 2; max-width: 630px; width: 100%; display: flex; flex-direction: column; align-items: center; text-align: center; padding-inline: 30px; padding-block: 20px 40px; }
.success-stories-block .success-stories-content::before { position: absolute; content: ""; height: 44px; width: 44px; border: 2px solid var(--netural-00); border-bottom: unset; border-left: unset; top: 0; right: 0; pointer-events: none; }
.success-stories-block .success-stories-content::after { position: absolute; content: ""; height: 44px; width: 44px; border: 2px solid var(--netural-00); border-top: unset; border-right: unset; bottom: 0; left: 0; pointer-events: none; }

.success-stories-block .subtitle * { font-size: var(--poppins-body-l-size); line-height: var(--poppins-body-l-line-height); text-transform: uppercase; margin-bottom: 0; }
.success-stories-block .title * { font-style: var(--style-italic); font-family: var(--font-family-merriweather); font-size: var(--merri-h1-size); line-height: var(--merri-h1-line-height); font-weight: var(--font-weight-300); margin-bottom: 40px; }
.success-stories-block .disc * { font-size: var(--poppins-h4-size); line-height: var(--poppins-h4-line-height); margin-bottom: 40px; }

.success-stories-block .action .btn { font-size: 18px; }
/* ==================== [ Success Stories End ] ==================== */

/* ==================== [ Innovation Insights End ] ==================== */
.innovation-insights .heading-block { display: flex; align-items: center; justify-content: space-between; gap: 20px; margin-bottom: 60px; }
.innovation-insights .heading-block .title * { margin-bottom: 0; }

.innovation-insights { overflow: hidden; }
.innovation-insights .swiper { overflow: visible; }
.innovation-insights .innovation-slider { margin-bottom: 60px; }

.innovation-insights .swiper-slide { transition: all .3s ease-in-out; -webkit-transition: all .3s ease-in-out; -moz-transition: all .3s ease-in-out; -ms-transition: all .3s ease-in-out; -o-transition: all .3s ease-in-out; }
.innovation-insights .swiper-slide-next + .swiper-slide ~ .swiper-slide { transform: scaleY(.9); -webkit-transform: scaleY(.9); -moz-transform: scaleY(.9); -ms-transform: scaleY(.9); -o-transform: scaleY(.9); }

.innovation-insights .mobile-action { margin-top: 30px; }
.innovation-insights .mobile-action .btn { font-size: 18px; width: 100%; }


/* Insights Card */
.swiper-slide { height: auto; }
.insights-card { display: flex; flex-direction: column; padding: 20px 20px 40px 20px; border-radius: 10px; -webkit-border-radius: 10px; -moz-border-radius: 10px; -ms-border-radius: 10px; -o-border-radius: 10px; background-color: var(--netural-400); gap: 30px; transition: all .3s ease-in-out; -webkit-transition: all .3s ease-in-out; -moz-transition: all .3s ease-in-out; -ms-transition: all .3s ease-in-out; -o-transition: all .3s ease-in-out; height: 100%; }
.insights-card:hover { background-color: rgba(19, 29, 86, 0.4); }

.insights-card .btn-arrow { opacity: 0; pointer-events: none; }
.insights-card:hover .btn-arrow { opacity: 1; pointer-events: auto; }

.insights-card .image-block { width: 100%; height: auto; aspect-ratio: 387 / 240; border-radius: 10px; overflow: hidden; -webkit-border-radius: 10px; -moz-border-radius: 10px; -ms-border-radius: 10px; -o-border-radius: 10px; user-select: none; max-height: 370px; min-height: 189px; }
.insights-card .insights-badge { background-color: var(--blue-700); border-radius: 50px; -webkit-border-radius: 50px; -moz-border-radius: 50px; -ms-border-radius: 50px; -o-border-radius: 50px; padding: 8px 16px; width: fit-content; }
.insights-card .insights-badge * { text-transform: uppercase; color: var(--netural-00); font-size: 14px; line-height: 24px; margin-bottom: 0; letter-spacing: 1.4px; }

.insights-card .text-block { display: flex; flex-direction: column; gap: 20px; flex-grow: 1; }
.insights-card .title * { font-size: var(--poppins-h4-size); line-height: var(--poppins-h4-line-height); font-weight: var(--font-weight-400); margin-bottom: 0; }

.insights-card .details-block { display: flex; align-items: center; justify-content: space-between; gap: 20px; margin-block: auto 0; }
.insights-card .details { display: flex; align-items: center; gap: 10px; }

.insights-card .details .date { position: relative; display: flex; align-items: center; gap: 10px; }
.insights-card .details .date::after { content: ""; height: 1px; width: 14px; background-color: var(--netural-00); }

.insights-card .details .time { display: flex; align-items: center; gap: 10px; }
.insights-card .details .time img { filter: brightness(0) invert(1); height: 16px; width: 16px; -webkit-filter: brightness(0) invert(1); }

.insights-card .details * { font-size: var(--poppins-body-l-size); line-height: 100%; margin-bottom: 0; font-weight: var(--font-weight-300); }

/* Insights Card (Light) */
.insights-card.light-theme { padding: 16px 16px 30px 16px; gap: 15px; background-color: var(--violet-50); height: 100%; }
.insights-card.light-theme:hover { background-color: #E6E0FF; }

.insights-card.light-theme .title * { color: var(--netural-500); }
.insights-card.light-theme .details * { color: var(--netural-500); }

.insights-card.light-theme .details-block { margin-block: auto 0; }

.insights-card.light-theme .details .time img { filter: brightness(0) saturate(100%) invert(4%) sepia(46%) saturate(7492%) hue-rotate(230deg) brightness(91%) contrast(109%); -webkit-filter: brightness(0) saturate(100%) invert(4%) sepia(46%) saturate(7492%) hue-rotate(230deg) brightness(91%) contrast(109%); }

.insights-card.light-theme .details .date::after { background-color: var(--netural-500); }

/* Swiper Common Styling */
.common-pagination-dots ,
.common-pagination-progress { position: relative; top: unset !important; left: unset !important; right: unset !important; bottom: unset !important; }

.common-pagination-progress { height: 8px !important; background-color: var(--netural-400) !important; border-radius: 50px; -webkit-border-radius: 50px; -moz-border-radius: 50px; -ms-border-radius: 50px; -o-border-radius: 50px; overflow: hidden; }
.common-pagination-progress .swiper-pagination-progressbar-fill { background-color: var(--violet-300) !important; border-radius: 20px; -webkit-border-radius: 20px; -moz-border-radius: 20px; -ms-border-radius: 20px; -o-border-radius: 20px; }

.common-pagination-dots { display: flex; align-items: center; justify-content: center; gap: 6px; }

.common-pagination-dots .swiper-pagination-bullet { margin: 0 !important; border-radius: 50px; -webkit-border-radius: 50px; -moz-border-radius: 50px; -ms-border-radius: 50px; -o-border-radius: 50px; width: 37px; height: 3px; background-color: var(--netural-400); transition: all .3s ease-in-out; -webkit-transition: all .3s ease-in-out; -moz-transition: all .3s ease-in-out; -ms-transition: all .3s ease-in-out; -o-transition: all .3s ease-in-out; transform-origin: center; }
.common-pagination-dots .swiper-pagination-bullet-active { width: 60px; background-color: var(--violet-300); }
/* ==================== [ Innovation Insights End ] ==================== */

/* ==================== [ How we work Start ] ==================== */
.how-we-work { padding-bottom: 160px; }
.how-we-work.ourWork-how-we-work { padding-bottom: 80px; }
.how-we-work .heading-block { display: flex; align-items: end; justify-content: space-between; gap: 20px; margin-bottom: 78px; }
.how-we-work .heading-block .title-block { display: flex; flex-direction: column; max-width: 654px; width: 100%; }


.how-we-work .heading-block .action { flex-shrink: 0; }
.how-we-work .heading-block .disc * { margin-bottom: 0; }

.how-we-work .swiper-wrapper { display: flex; align-items: center; justify-content: space-between; gap: 30px; }

.how-we-work .swiper-slide { max-width: 371px; width: 100%; flex-shrink: 1; }
.how-we-work .card-block { display: flex; align-items: center; justify-content: center; position: relative; width: 100%; text-align: center; height: auto; border-radius: 50%; -webkit-border-radius: 50%; -moz-border-radius: 50%; -ms-border-radius: 50%; -o-border-radius: 50%; overflow: hidden; aspect-ratio: 1 / 1; }

/* Normal State */
.how-we-work .normal-state { display: flex; flex-direction: column; align-items: center; gap: 30px; }
.how-we-work .normal-state .title * { color: var(--violet-300); margin-bottom: 0; }
.how-we-work .normal-state .circle { position: relative; display: block; height: 50px; width: 50px; border-radius: 50%; background-color: var(--violet-300); -webkit-border-radius: 50%; -moz-border-radius: 50%; -ms-border-radius: 50%; -o-border-radius: 50%; overflow: hidden; }

.how-we-work .normal-state .circle::after { content: ""; position: absolute; top: 0; left: 0; background: url('../images/thumb/home-bg-noice.webp'); height: 100%; width: 100%; background-size: 50px; background-repeat: repeat; background-position: top left; mix-blend-mode: multiply; border-radius: 50%; -webkit-border-radius: 50%; -moz-border-radius: 50%; -ms-border-radius: 50%; -o-border-radius: 50%; user-select: none; pointer-events: none; z-index: 1; }

/* Detail State */

.how-we-work .card-block .detail-state { top: 50%; left: 50%; transform: translate(-50%,-50%); position: absolute; background: linear-gradient(259.18deg, #65ACBB 11.4%, #3134C3 68.6%, #000211 119.09%); height: 100%; width: 100%; border-radius: 50%; -webkit-border-radius: 50%; -moz-border-radius: 50%; -ms-border-radius: 50%; -o-border-radius: 50%; overflow: hidden; padding: 30px; display: flex; flex-direction: column; align-items: center; justify-content: center; -webkit-transform: translate(-50%,-50%); -moz-transform: translate(-50%,-50%); -ms-transform: translate(-50%,-50%); -o-transform: translate(-50%,-50%); opacity: 0; transition: all .3s ease-in-out; -webkit-transition: all .3s ease-in-out; -moz-transition: all .3s ease-in-out; -ms-transition: all .3s ease-in-out; -o-transition: all .3s ease-in-out; pointer-events: none; cursor: pointer;  z-index: 3; }

.how-we-work .card-block .detail-state::after { content: ""; position: absolute; top: 0; left: 0; background: url('../images/thumb/home-bg-noice.webp'); height: 100%; width: 100%; background-size: 50px; background-repeat: repeat; background-position: top left; mix-blend-mode: multiply; border-radius: 50%; -webkit-border-radius: 50%; -moz-border-radius: 50%; -ms-border-radius: 50%; -o-border-radius: 50%; user-select: none; pointer-events: none; z-index: 1; }
.how-we-work .card-block .detail-state >* { position: relative; z-index: 2; }

.how-we-work .card-block .title { max-width: 238px; width: 100%; }
.how-we-work .card-block .detail-state .disc { max-width: 283px; width: 100%; }

.how-we-work .card-block .detail-state .title * { margin-bottom: 16px; }
.how-we-work .card-block .detail-state .disc * { font-size: var(--poppins-body-m-size); line-height: var(--poppins-body-m-line-height); margin-bottom: 0; font-weight: var(--font-weight-400); }

.how-we-work .card-block:hover .detail-state { opacity: 1; pointer-events: auto; }

.how-we-work .how-we-work-pagination { margin-top: 50px; }

.how-we-work .card-block .title * { font-size: var(--poppins-h2-size); line-height: var(--poppins-h2-line-height); }
/* ==================== [ How we work End ] ==================== */

/* ==================== [ Work That Speaks Start ] ==================== */
.work-that-speaks { overflow: hidden; }
.work-that-speaks .swiper { overflow: visible; }
.work-that-speaks .heading-block { display: flex; align-items: center; justify-content: space-between; }

.work-that-speaks .heading-block { margin-bottom: 60px; }
.work-that-speaks .heading-block .title * { margin-bottom: 0; }

.work-that-speaks .mobile-action { text-align: center; margin-top: 30px; }
.work-that-speaks .mobile-action .btn { max-width: 343px; width: 100%; }

.work-that-speaks .common-pagination-progress { margin-top: 60px; }

/* Case Study Card */
.case-study-card { position: relative; overflow: hidden; border-radius: 10px; -webkit-border-radius: 10px; -moz-border-radius: 10px; -ms-border-radius: 10px; -o-border-radius: 10px; aspect-ratio: 442 / 458; min-height: 355px; max-height: 458px; height: auto; width: 100%; }

.case-study-card .image-block { position: absolute; height: 100%; width: 100%; top: 0; left: 0; z-index: 1; }
.case-study-card .image-block::after { content: ""; position: absolute; height: 100%; width: 100%; top: 0; left: 0; background-color: #000000; opacity: .4; }
.case-study-card .card-block { position: relative; z-index: 2; }

.case-study-card .hover-block { position: absolute; top: 0; left: 0; height: 100%; width: 100%; background-color: var(--blue-800); padding: 20px; display: flex; flex-direction: column; overflow-y: auto; justify-content: space-between; gap: 20px; opacity: 0; pointer-events: none; transition: all .3s ease-in-out; -webkit-transition: all .3s ease-in-out; -moz-transition: all .3s ease-in-out; -ms-transition: all .3s ease-in-out; -o-transition: all .3s ease-in-out; z-index: 3; }
.case-study-card:hover .hover-block { pointer-events: auto; opacity: 1; }

.case-study-card .visible-block { padding: 20px 20px 30px 20px; display: flex; flex-direction: column; justify-content: space-between; height: 100%; }
.case-study-card .visible-block .bottom-block { display: flex; align-items: end; justify-content: space-between; gap: 20px; }
.case-study-card .hover-block .top-block { display: flex; flex-direction: column; gap: 40px; }
.case-study-card .hover-block .bottom-block { display: flex; justify-content: end; }

.case-study-card .title * { font-size: var(--poppins-h2-size); line-height: var(--poppins-h2-line-height); font-weight: var(--font-weight-400); color: var(--netural-00); margin-bottom: 0; }

.case-study-card .disc { max-height: 160px; overflow: auto; }
.case-study-card .disc * { font-size: var(--poppins-body-l-size); line-height: var(--poppins-body-l-line-height); color: var(--netural-00); font-weight: var(--font-weight-400); margin-bottom: 0; }

.case-study-card .disc-sm * { font-size: var(--poppins-body-m-size); line-height: var(--poppins-body-m-line-height); color: var(--netural-00); font-weight: var(--font-weight-400); margin-bottom: 0; }

.case-study-card .tag { padding: 8px 16px; border-radius: 50px; -webkit-border-radius: 50px; -moz-border-radius: 50px; -ms-border-radius: 50px; -o-border-radius: 50px; background-color: var(--blue-500); width: fit-content; }
.case-study-card .tag * { font-size: 14px; line-height: 24px; color: var(--netural-00); text-transform: uppercase; margin-bottom: 0; font-weight: var(--font-weight-400); }
/* ==================== [ Work That Speaks End ] ==================== */

/* ==================== [ Aviation Impact Start ] ==================== */
.aviation-impact .heading-block { margin-bottom: 60px; text-align: center; }
.aviation-impact .heading-block .title * { margin-bottom: 0; }

.common-flex-card-block { display: flex; flex-wrap: wrap; gap: 10px; }
.common-flex-card-block >* { flex: 1 0 calc(33% - 6px); }
/* ==================== [ Aviation Impact End ] ==================== */

/* ==================== [ Custom Pagination Start ] ==================== */

.custom-pagination { display: flex; align-items: center; justify-content: center; gap: 10px; margin-top: 60px; }
.custom-pagination ul { list-style: none; padding: 0; margin: 0; display: flex; align-items: center; justify-content: center; gap: 1px; }	

.custom-pagination .prev-btn { transform: scaleX(-1); -webkit-transform: scaleX(-1); -moz-transform: scaleX(-1); -ms-transform: scaleX(-1); -o-transform: scaleX(-1); }
.custom-pagination .btn-arrow { height: 36px; width: 36px; }	
.custom-pagination .btn-arrow:hover { background-color: var(--violet-500); border-color: var(--violet-500); }	
.custom-pagination .btn-arrow:hover::before { filter: brightness(0) invert(1); -webkit-filter: brightness(0) invert(1); }	

.custom-pagination .dots ,
.custom-pagination .custom-page-link { display: flex; align-items: center; justify-content: center; height: 32px; width: 32px; border-radius: 10px; -webkit-border-radius: 10px; -moz-border-radius: 10px; -ms-border-radius: 10px; -o-border-radius: 10px; font-size: 16px; font-weight: var(--font-weight-300); line-height: 100%; }

.custom-pagination .dots:hover { color: var(--netural-00); }

.custom-pagination .custom-page-link.active { color: var(--black); background-color: var(--violet-300); }

/* ==================== [ Custom Pagination End ] ==================== */

/* ==================== [ Case Study Filter Start ] ==================== */
.case-study-filter .tabbing-block { margin-bottom: 60px; max-width: fit-content; margin-inline: auto; }
/* ==================== [ Case Study Filter End ] ==================== */

/* ==================== [ Behind The System End ] ==================== */
.behind-the-system { margin-bottom: 20px; overflow: hidden; }
.behind-the-system .swiper { overflow: visible; }
.behind-the-system .swiper-slide { height: auto; }
.behind-the-system .heading-block { margin-bottom: 30px; text-align: center; }
.behind-the-system .heading-block .title * { margin-bottom: 0; }

.behind-system-slider .swiper-wrapper { justify-content: center; }

.behind-the-system .behind-system-card { display: flex; flex-direction: column; align-items: center; border: 1px solid rgba(255, 255, 255, .2); border-radius: 10px; padding: 40px 20px; -webkit-border-radius: 10px; -moz-border-radius: 10px; -ms-border-radius: 10px; -o-border-radius: 10px; gap: 10px; height: 100%; }
.behind-the-system .behind-system-card .image-block { max-width: 200px; width: 100%; aspect-ratio: 200 / 150; height: auto; opacity: .4; }

.behind-the-system .behind-system-card .details * { font-size: var(--poppins-body-m-size); line-height: var(--poppins-body-m-line-height); font-weight: var(--font-weight-400); color: var(--netural-00); text-align: center; margin-bottom: 0; }

.behind-the-system .common-pagination-dots { margin-top: 30px; }
/* ==================== [ Behind The System End ] ==================== */

/* ==================== [ Life At Nuvolar Start ] ==================== */
.life-at-nuvolar .life-at-nuvolar-block { display: flex; align-items: center; justify-content: center; position: relative; overflow: hidden; border-radius: 10px; -webkit-border-radius: 10px; -moz-border-radius: 10px; -ms-border-radius: 10px; -o-border-radius: 10px; aspect-ratio: 1370 / 725; min-height: 610px; max-width: 100%; width: 100%; max-height: 725px; }
.life-at-nuvolar .life-at-nuvolar-block::after { position: absolute; content: ""; height: 100%; width: 100%; background: radial-gradient(rgba(0, 8, 55,1), rgba(0, 8, 55,0)); opacity: .4; z-index: 1; pointer-events: none; }

.life-at-nuvolar .content-block { position: relative; z-index: 2; padding: 40px; display: flex; flex-direction: column; align-items: center; gap: 47px; max-width: 500px; width: 100%; text-align: center; }
.life-at-nuvolar .content-block .title * { margin-bottom: 0; }

.life-at-nuvolar .video-block ,
.life-at-nuvolar .video-thumbnail { position: absolute; top: 0; left: 0; height: 100%; width: 100%; transition: all .3s ease-in-out; -webkit-transition: all .3s ease-in-out; -moz-transition: all .3s ease-in-out; -ms-transition: all .3s ease-in-out; -o-transition: all .3s ease-in-out; }

.life-at-nuvolar-block .video-block { opacity: 0; pointer-events: auto; }
.life-at-nuvolar-block .video-thumbnail { opacity: 1; pointer-events: auto; }
/* Playing state */
.life-at-nuvolar-block.is-playing .video-thumbnail { opacity: 0; pointer-events: none; }
.life-at-nuvolar-block.is-playing .video-block { opacity: 1; pointer-events: auto; }

/* Playing state [Pause Button at End & Title Hidden] */
.life-at-nuvolar-block.is-playing .content-block { position: static; }
.life-at-nuvolar-block.is-playing .content-block .title { opacity: 0; }
.life-at-nuvolar-block.is-playing .content-block .action { position: absolute; left: 20px; bottom: 20px; }


/* ==================== [ Life At Nuvolar End ] ==================== */


/* ==================== [ We Are Building Start ] ==================== */
.we-are-building .we-are-building-block { display: flex; flex-direction: column; gap: 60px; }
.we-are-building .tabbing-block { display: flex; }
.we-are-building .tabbing-block .tabs-group { display: inline-flex; align-items: center; margin-inline: auto; }
.we-are-building .tabbing-block .btn-arrow { height: 36px; width: 36px; }

.we-are-building .heading-block { text-align: center; max-width: 885px; width: 100%; margin-inline: auto; }
.we-are-building .heading-block .title * { margin-bottom: 10px; }
.we-are-building .heading-block .disc * { margin-bottom: 0; }

.we-are-building .row { row-gap: 5px; margin-inline: -2.5px; }
.we-are-building .row >* { padding-inline: 2.5px; }
/* ==================== [ We Are Building End ] ==================== */

/* ==================== [ Building Card Start ] ==================== */
.building-card { display: flex; gap: 40px; flex-direction: column; padding: 40px 40px 54px 40px; border-radius: 10px; -webkit-border-radius: 10px; -moz-border-radius: 10px; -ms-border-radius: 10px; -o-border-radius: 10px; height: 100%; background-color: var(--blue-800); }

.building-card .top-block { display: flex; flex-direction: column; gap: 26px; }

.building-card .tag { padding: 8px 16px; width: fit-content; background-color: var(--blue-700); border-radius: 50px; -webkit-border-radius: 50px; -moz-border-radius: 50px; -ms-border-radius: 50px; -o-border-radius: 50px; }
.building-card .tag * { font-size: 16px; line-height: 24px; letter-spacing: 0; color: var(--netural-00); margin-bottom: 0; font-weight: var(--font-weight-300); }
.building-card .title * { font-size: var(--poppins-h3-size); line-height: var(--poppins-h3-line-height); margin-bottom: 0; font-weight: var(--font-weight-400); }
.building-card .disc * { font-size: var(--poppins-body-m-size); font-weight: var(--font-weight-400); line-height: 24px; margin-bottom: 0; }

.building-card .bottom-block { height: 100%; display: flex; flex-direction: column; justify-content: space-between; }
.building-card .bottom-block .action { margin-inline: auto 0; margin-block: auto 0; }
.building-card .bottom-block .btn-arrow { height: 48px !important; width: 48px !important; }
.building-card .bottom-block .btn-arrow::before { background-image: url('data:image/svg+xml,<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg"> <path d="M16.9508 7.0498L7.05078 16.9498" stroke="white" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/> <path d="M10 7L16.95 7.049L17 14" stroke="white" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/> </svg> '); }
/* ==================== [ Building Card End ] ==================== */

/* ==================== [ Your Perfect Role Start ] ==================== */
.your-perfect-role .your-perfect-role-block { padding: 50px; display: flex; align-items: start; justify-content: space-between; gap: 30px; background-color: var(--violet-600); border-radius: 10px; -webkit-border-radius: 10px; -moz-border-radius: 10px; -ms-border-radius: 10px; -o-border-radius: 10px; }

.your-perfect-role .your-perfect-role-block .left-block { max-width: 480px; width: 100%; }
.your-perfect-role .your-perfect-role-block .title * { font-weight: 700; margin-bottom: 20px; }
.your-perfect-role .your-perfect-role-block .disc * { margin-bottom: 0; }
.your-perfect-role .your-perfect-role-block .right-block { max-width: 655px; width: 100%; }

.your-perfect-role .form-block { display: flex; flex-direction: column; }

.checkbox-block .wpcf7-list-item { margin-left: 0; }
/* ==================== [ Your Perfect Role End ] ==================== */

/* ==================== [ Common Form Styling Start ] ==================== */
.form-block .input-block { position: relative; }
.form-block .input-block .form-control { border: unset; border-bottom: 1px solid #c1c4d7; padding: 0 0 10px 0; color: var(--violet-700); font-weight: var(--font-weight-400); font-size: 24px; line-height: 32px; letter-spacing: 0.48px; background-color: var(--transparent); border-radius: 0; -webkit-border-radius: 0; -moz-border-radius: 0; -ms-border-radius: 0; -o-border-radius: 0; transition: all .15s ease-in-out; -webkit-transition: all .15s ease-in-out; -moz-transition: all .15s ease-in-out; -ms-transition: all .15s ease-in-out; -o-transition: all .15s ease-in-out; }

.form-block .input-block .form-label { font-weight: var(--font-weight-300); margin-bottom: 0; color: var(--netural-500); position: absolute; bottom: 10px; font-size: 24px; line-height: 32px; transition: all .15s ease-in-out; -webkit-transition: all .15s ease-in-out; -moz-transition: all .15s ease-in-out; -ms-transition: all .15s ease-in-out; -o-transition: all .15s ease-in-out; }

.select-block .form-label,
.select-block .form-label { pointer-events: none !important; }

.form-block .input-block:has(.wpcf7-not-valid) .form-label, 
.form-block .input-block:has(textarea:focus) .form-label,
.form-block .input-block:has(textarea:not(:placeholder-shown)) .form-label,
.form-block .select-block:has(select:focus) .form-label,
.form-block .select-block:has(select:valid) .form-label,
.form-block .select-block:has(select option[value=""]:not(:checked)) .form-label,
.form-block .input-block:has(.form-control:not(:placeholder-shown)) .form-label,
.form-block .input-block:has(.form-control:focus) .form-label { bottom: calc(100% + 2px); color: var(--violet-700); font-size: 16px; line-height: 24px; }

.form-block .select-block:has(.wpcf7-not-valid-tip)::after { top: calc(50% - 24px); }


.form-block .input-block .form-control:focus { box-shadow: none; border-color: var(--violet-700); }

.form-block .input-parent-block { display: flex; flex-direction: column; gap: 35px; }

.form-block .wpcf7-not-valid-tip { font-size: 16px; line-height: 28px; margin-bottom: 10px; }

.form-block .upload-block .wpcf7-not-valid-tip { position: absolute; top: calc(100% + 16px); }

.mc4wp-success * { font-size: 16px; line-height: 28px; border: none !important; color: #46b450; text-align: start; margin: 0 !important; padding: 0 !important; }
.mc4wp-error * { font-size: 16px; line-height: 28px; border: none !important; color: #dc3232; text-align: start; margin: 0 !important; padding: 0 !important; }

.wpcf7-response-output { font-size: 16px; line-height: 28px; border: none !important; color: #dc3232; text-align: start; margin: 14px 0 0 !important; padding: 0 !important; }
.wpcf7 form.sent .wpcf7-response-output { font-size: 16px; line-height: 28px; border: none !important; color: #46b450 !important; text-align: start; margin: 0 !important; padding: 0 !important; }

.form-block .textarea-block { height: 43px !important; }
.form-block .textarea-block textarea { height: 43px !important; border: unset; border-bottom: 1px solid #c1c4d7; padding: 0 0 10px 0; color: var(--violet-700); font-weight: var(--font-weight-400); font-size: 24px; line-height: 32px; letter-spacing: 0.48px; background-color: var(--transparent); border-radius: 0; -webkit-border-radius: 0; -moz-border-radius: 0; -ms-border-radius: 0; -o-border-radius: 0; transition: all .3s ease-in-out; -webkit-transition: all .3s ease-in-out; -moz-transition: all .3s ease-in-out; -ms-transition: all .3s ease-in-out; -o-transition: all .3s ease-in-out; width: 100%; }
.form-block .textarea-block textarea::placeholder { color: var(--netural-500); font-weight: var(--font-weight-300); }

.form-block .checkbox-block { display: flex; align-items: center; gap: 20px; }


.form-block .checkbox-block .wpcf7-list-item label { display: flex; align-items: center; gap: 20px; }

.form-block .checkbox-block .wpcf7-list-item-label ,
.form-block .checkbox-block .form-label { position: relative; bottom: unset; color: var(--netural-500); font-size: var(--poppins-body-s-size); line-height: var(--poppins-body-s-line-height); font-weight: var(--font-weight-400); cursor: pointer; user-select: none; margin-bottom: 0; }
.form-block input[type="checkbox"] { cursor: pointer; position: relative; flex-shrink: 0; appearance: none; border: 1px solid var(--netural-500); border-radius: 4px; height: 15px; width: 15px; background-color: var(--transparent); -webkit-border-radius: 4px; -moz-border-radius: 4px; -ms-border-radius: 4px; -o-border-radius: 4px; }

.form-block input[type="checkbox"]:checked { background-image: url('data:image/svg+xml,<svg width="10" height="7" viewBox="0 0 10 7" fill="none" xmlns="http://www.w3.org/2000/svg"> <path d="M8.75 0.75L3.7491 5.75L0.75 2.74964" stroke="white" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/> </svg> '); background-repeat: no-repeat; background-position: center; background-size: 9px; background-color: var(--violet-500); border-color: var(--violet-500); } 

.form-block .select-block select { background-color: var(--transparent); padding: 0 20px 10px 0; border: none; border-bottom: 1px solid #c1c4d7; width: 100%; appearance: none; border: unset; border-bottom: 1px solid #c1c4d7; color: var(--netural-500); font-weight: var(--font-weight-300); font-size: 24px; line-height: 32px; letter-spacing: 0.48px; background-color: var(--transparent); border-radius: 0; -webkit-border-radius: 0; -moz-border-radius: 0; -ms-border-radius: 0; -o-border-radius: 0; transition: all .3s ease-in-out; -webkit-transition: all .3s ease-in-out; -moz-transition: all .3s ease-in-out; -ms-transition: all .3s ease-in-out; -o-transition: all .3s ease-in-out; } 
.form-block .select-block select:focus-visible { outline: none; } 

.form-block .select-block { position: relative; }

.form-block .select-block::after { position: absolute; content: ""; display: block; height: 8px; width: 14px; top: calc(50% - 5px); right: 0; transform: translateY(-50%); background-repeat: no-repeat; -webkit-transform: translateY(-50%); -moz-transform: translateY(-50%); -ms-transform: translateY(-50%); -o-transform: translateY(-50%); background-image: url('data:image/svg+xml,<svg width="14" height="8" viewBox="0 0 14 8" fill="none" xmlns="http://www.w3.org/2000/svg"> <path d="M6.43265 7.31778L0.182908 1.06752C0.124841 1.00944 0.0787817 0.940504 0.0473585 0.864633C0.0159353 0.788761 -0.000237564 0.707442 -0.00023412 0.62532C-0.000230677 0.543198 0.015949 0.461881 0.0473786 0.386012C0.0788082 0.310143 0.124874 0.241207 0.182945 0.18314C0.241016 0.125074 0.309956 0.0790139 0.385828 0.0475904C0.4617 0.016167 0.543018 -4.44462e-06 0.62514 -1.00143e-06C0.707262 2.44177e-06 0.788579 0.0161807 0.864448 0.0476105C0.940318 0.0790403 1.00925 0.125106 1.06732 0.183177L6.87489 5.99202L12.6829 0.183664C12.8002 0.0663938 12.9593 0.000516142 13.1251 0.000523097C13.291 0.000530052 13.4501 0.066421 13.5673 0.183701C13.6846 0.300982 13.7505 0.460044 13.7505 0.625897C13.7505 0.791749 13.6846 0.950806 13.5673 1.06808L7.31702 7.31781C7.25897 7.37592 7.19004 7.42202 7.11417 7.45347C7.03829 7.48492 6.95696 7.5011 6.87483 7.5011C6.79269 7.5011 6.71136 7.4849 6.63549 7.45345C6.55962 7.42199 6.49069 7.37589 6.43265 7.31778Z" fill="%23000837"/> </svg> '); } 

.form-block .select-block::after { transition: all .2s ease-in-out; -webkit-transition: all .2s ease-in-out; -moz-transition: all .2s ease-in-out; -ms-transition: all .2s ease-in-out; -o-transition: all .2s ease-in-out; }

.form-block .select-block:has(select:open)::after { transform: scaleY(-1); -webkit-transform: scaleY(-1); -moz-transform: scaleY(-1); -ms-transform: scaleY(-1); -o-transform: scaleY(-1); }
.form-block .select-block:has(select:focus)::after ,
.form-block .select-block:has(select option[value=""]:not(:checked))::after { background-image: url('data:image/svg+xml,<svg width="14" height="8" viewBox="0 0 14 8" fill="none" xmlns="http://www.w3.org/2000/svg"> <path d="M6.43265 7.31778L0.182908 1.06752C0.124841 1.00944 0.0787817 0.940504 0.0473585 0.864633C0.0159353 0.788761 -0.000237564 0.707442 -0.00023412 0.62532C-0.000230677 0.543198 0.015949 0.461881 0.0473786 0.386012C0.0788082 0.310143 0.124874 0.241207 0.182945 0.18314C0.241016 0.125074 0.309956 0.0790139 0.385828 0.0475904C0.4617 0.016167 0.543018 -4.44462e-06 0.62514 -1.00143e-06C0.707262 2.44177e-06 0.788579 0.0161807 0.864448 0.0476105C0.940318 0.0790403 1.00925 0.125106 1.06732 0.183177L6.87489 5.99202L12.6829 0.183664C12.8002 0.0663938 12.9593 0.000516142 13.1251 0.000523097C13.291 0.000530052 13.4501 0.066421 13.5673 0.183701C13.6846 0.300982 13.7505 0.460044 13.7505 0.625897C13.7505 0.791749 13.6846 0.950806 13.5673 1.06808L7.31702 7.31781C7.25897 7.37592 7.19004 7.42202 7.11417 7.45347C7.03829 7.48492 6.95696 7.5011 6.87483 7.5011C6.79269 7.5011 6.71136 7.4849 6.63549 7.45345C6.55962 7.42199 6.49069 7.37589 6.43265 7.31778Z" fill="%23452E99"/> </svg> '); }

.form-block .select-block select option { color: var(--netural-500) !important; font-weight: var(--font-weight-300); }

.form-block .select-block select:has(option[value=""]:not(:checked)) { color: var(--violet-700) !important; font-weight: var(--font-weight-400); }

.form-block .action { margin-top: 30px; }

.form-block .upload-block { position: relative; border-bottom: 1px solid #c1c4d7; padding-bottom: 10px; }
.form-block .upload-block .form-label { font-size: 24px; line-height: 32px; font-weight: var(--font-weight-300); color: var(--netural-500); padding-right: 40px; cursor: pointer; width: 100%; margin-bottom: 0; }
.form-block .upload-block .upload-file-icon { position: absolute; top: 0; right: 0; height: 36px; width: 36px; pointer-events: none; user-select: none; filter: brightness(0) saturate(100%) invert(9%) sepia(17%) saturate(7499%) hue-rotate(215deg) brightness(90%) contrast(115%); }

/* Dark Theme */
.form-block.dark-theme .upload-block .upload-file-icon { filter: none; -webkit-filter: none; }
.form-block.dark-theme .select-block::after { filter: brightness(0) invert(1); -webkit-filter: brightness(0) invert(1); }

.form-block.dark-theme .checkbox-block .wpcf7-list-item-label ,
.form-block.dark-theme .select-block select ,
.form-block.dark-theme .textarea-block textarea ,
.form-block.dark-theme .input-block .form-control ,
.form-block.dark-theme .input-block .form-label ,
.form-block.dark-theme .upload-block .form-label ,
.form-block.dark-theme .checkbox-block .form-label ,
.form-block.dark-theme .textarea-block textarea::placeholder { color: var(--netural-00); border-color: rgba(255, 255, 255, .2); }

.form-block.dark-theme .select-block select:has(option[value=""]:not(:checked)) { color: var(--netural-00) !important; font-weight: var(--font-weight-400); }

.form-block.dark-theme .upload-block { border-color: rgba(255, 255, 255, .2); }

.form-block.dark-theme input[type="checkbox"] { border-color: var(--netural-00); }
.form-block.dark-theme input[type="checkbox"]:checked { background-image: url('data:image/svg+xml,<svg width="10" height="7" viewBox="0 0 10 7" fill="none" xmlns="http://www.w3.org/2000/svg"> <path d="M8.75 0.75L3.7491 5.75L0.75 2.74964" stroke="%236047C6" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/> </svg> '); background-repeat: no-repeat; background-position: center; background-size: 9px; background-color: var(--netural-00); border-color: var(--netural-00); } 

.form-block.dark-theme .select-block:has(select:focus) .form-label,
.form-block.dark-theme .select-block:has(select option[value=""]:not(:checked)) .form-label,
.form-block.dark-theme .input-block:has(.form-control:not(:placeholder-shown)) .form-label,
.form-block.dark-theme .input-block:has(.form-control:focus) .form-label { color: var(--netural-00); }
/* ==================== [ Common Form Styling End ] ==================== */

/* ==================== [ Get In Touch Start ] ==================== */
.get-in-touch .get-in-touch-block { display: flex; align-items: start; gap: 30px; justify-content: space-between; }
.get-in-touch .left-block { max-width: 428px; width: 100%; }
.get-in-touch .right-block { max-width: 655px; width: 100%; }

.get-in-touch .left-block .title * { font-size: var(--poppins-display-s-size); line-height: var(--poppins-display-s-line-height); margin-bottom: 60px; color: var(--netural-500); }
.get-in-touch .left-block .disc * { color: var(--netural-500); }
.get-in-touch .left-block .disc *:last-child { margin-bottom: 0; }
/* ==================== [ Get In Touch End ] ==================== */


/* ==================== [ Insights Footer Contact Start ] ==================== */
.insights-footer-contact .form-block { flex-wrap: wrap; display: flex; gap: 30px; align-items: end; }
.insights-footer-contact .form-block .input-block { max-width: 376px; width: 100%; }
.insights-footer-contact .form-block.dark-theme .input-block { border-color: var(--netural-00); }
.insights-footer-contact .bottom-block { width: 100%; }
/* ==================== [ Insights Footer Contact End ] ==================== */

/* ==================== [ You May Also Like Start ] ==================== */
.you-may-also-like { overflow: hidden; }
.you-may-also-like .swiper { overflow: visible; }

.you-may-also-like .common-pagination-dots { margin-top: 30px; }
.you-may-also-like .common-pagination-dots.swiper-pagination-lock { margin-top: 0; }

.you-may-also-like .heading-block { margin-bottom: 60px; text-align: center; }
.you-may-also-like .heading-block .title * { margin-bottom: 0; }
/* ==================== [ You May Also Like End ] ==================== */

/* ==================== [ Latest Insights Start ] ==================== */
.latest-insights .tabbing-block { display: flex; margin-bottom: 60px; }
.latest-insights .tabbing-block .tabs-group { display: inline-flex; align-items: center; margin-inline: auto; gap: 16px; }
.latest-insights .tabbing-block .btn-arrow { height: 36px; width: 36px; }
.latest-insights .tabbing-block ul { padding-inline: 0; }

.latest-insights .top-block { display: flex; flex-direction: column; }

.latest-insights .heading-block { display: flex; flex-direction: column; align-items: center; text-align: center; margin-bottom: 60px; }

.latest-insights .heading-block .title * { margin-bottom: 10px; }
.latest-insights .heading-block .disc * { margin-bottom: 0; }

.latest-insights .small-cards-block .row { margin-inline: -16px; row-gap: 60px; }
.latest-insights .small-cards-block .row >* { padding-inline: 16px; }

.latest-insights .bottom-block { padding-block: 60px; }

.latest-insights .custom-pagination { margin-top: 60px; }

.latest-insights { overflow: hidden; }
.big-cards-block .latest-insights .swiper { overflow: visible; }

.latest-insights .common-pagination-dots { margin-top: 30px; }

/* ==================== [ Latest Insights End ] ==================== */



/* ==================== [ Tabbing Slider Start ] ==================== */


.tabbing-slider a.active {
    color: var(--violet-300);
}


.tabbing-slider a {
	display: block;
	height: 100%;
    padding: 8px 0;
    text-wrap: nowrap;
    text-transform: uppercase;
    font-size: var(--poppins-body-l-size);
    line-height: var(--poppins-body-l-line-height);
    color: var(--netural-00);
    border-bottom: 4px solid var(--transparent);
}

.tabbing-slider a:hover,
.tabbing-slider a.active {
    color: var(--violet-300);
    border-bottom: 4px solid var(--violet-300);
}


.tabbing-slider a.active {
    color: var(--violet-300);
}

.tabbing-slider a {
	padding: 10px 16px;
    border-bottom: 0px;
}

.tabbing-slider .swiper-slide { width: fit-content; } 
.tabbing-slider a { padding: 7px 15px; } 

.tabbing-slider a:hover,
.tabbing-slider a:focus,
.tabbing-slider a:focus-visible,
.tabbing-slider a:focus-within,
.tabbing-slider a.active {
    color: var(----job-tab-text-color);
    border-bottom: 0px;
    background-color: var(--job-tab-hover-color);
    border-radius: 8px;
    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    -ms-border-radius: 8px;
    -o-border-radius: 8px;
}

.tabbing-slider.normal-hover a:hover,
.tabbing-slider.normal-hover a:focus,
.tabbing-slider.normal-hover a:focus-visible,
.tabbing-slider.normal-hover a:focus-within,
.tabbing-slider.normal-hover a.active {
    color: var(--netural-500);
    border-bottom: 0px;
    background-color: var(--violet-300);
    border-radius: 8px;
    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    -ms-border-radius: 8px;
    -o-border-radius: 8px;
}

.meet-the-team .meet-the-team-block .tabbing-slider a {
    position: relative;
    overflow: hidden;
    z-index: 1;
    background: var(--transparent) !important;
    color: unset;
    border-radius: 8px;
    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    -ms-border-radius: 8px;
    -o-border-radius: 8px;
}

.meet-the-team .meet-the-team-block .tabbing-slider a span {
	opacity: 0;
	z-index: -1;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	transition: all 0.3s ease-in-out;
	border-radius: 8px !important;
	-webkit-border-radius: 8px !important;
	-moz-border-radius: 8px !important;
	-ms-border-radius: 8px !important;
	-o-border-radius: 8px !important;
	-webkit-transition: all 0.3s ease-in-out;
	-moz-transition: all 0.3s ease-in-out;
	-ms-transition: all 0.3s ease-in-out;
	-o-transition: all 0.3s ease-in-out;
}

.meet-the-team .meet-the-team-block .tabbing-slider a:hover span,
.meet-the-team .meet-the-team-block .tabbing-slider a:focus span,
.meet-the-team .meet-the-team-block .tabbing-slider a:focus-visible span,
.meet-the-team .meet-the-team-block .tabbing-slider a:focus-within span,
.meet-the-team .meet-the-team-block .tabbing-slider a.active span {
    opacity: 1;
}

.tabbing-block .prev-tab::before { left: unset; right: 50%; transform: scaleX(-1) translate(-50%,-50%); -webkit-transform: scaleX(-1) translate(-50%,-50%); -moz-transform: scaleX(-1) translate(-50%,-50%); -ms-transform: scaleX(-1) translate(-50%,-50%); -o-transform: scaleX(-1) translate(-50%,-50%); }

.tabbing-block .prev-tab.swiper-button-disabled { display: none !important; }
.tabbing-block .next-tab.swiper-button-disabled { display: none !important; }

.tabbing-block { display: flex; align-items: center; gap: 16px; }
.tabbing-block .btn-arrow { height: 36px; width: 36px; }
/* ==================== [ Tabbing Slider End ] ==================== */


#job-card-block {
	row-gap: 0;
	margin-inline:0;
	margin: 0 -2.5px;
}

#job-card-block .job-item {
	padding-inline: 0;
	padding: 0 2.5px;
	margin-bottom: 5px;
}

.progress-content .heading * { font-family: var(--font-family-poppins); font-style: normal; font-size: 18px; font-weight: 250; line-height: 24px; white-space: nowrap; color: #000837; margin-bottom: 20px; }


.job-item {
	width: 100%;
}

@media (min-width: 992px) {
	.job-item { width: 50%; }
}

@media (min-width: 1200px) {
	.job-item { width: 33.3333%; }
}





/* ================================================ [ Landing Page CSS Start ] ================================================ */
/* Root */
:root {
	--fs-32: 32px;
	--lh-40: 40px;

	--fs-42: 42px;
	--fs-44: 44px;
	--lh-53: 53px;

	--fs-58: 58px;
	--lh-73: 73px;
	
	--fs-56: 56px;
}

/* Common */
.py-30 { padding-block: 30px; }
.py-120 { padding-block: 120px; }
.py-120.pt-60 { padding-top: 60px; }

.mb-60 { margin-bottom: 60px; }
.mb-80 { margin-bottom: 80px; }
.mb-120 { margin-bottom: 120px; }

.title-44 * { font-size: var(--fs-44); line-height: var(--lh-53); color: var(--netural-00); margin-bottom: 0; }
.title-44 span { font-size: var(--fs-42); }
.title-42 * { font-family: var(--font-family-merriweather); font-style: var(--style-italic); font-weight: var(--font-weight-300); font-size: var(--fs-42); line-height: var(--lh-53); color: var(--netural-00); margin-bottom: 0; }

.title-44.text-black * { color: var(--netural-500) !important; }	
.text-center { width: 100%; }	

.landing-heading .disc * { margin-bottom: 0; }
.landing-heading .disc { max-width: 657px; width: 100%; flex-shrink: 1.5; }

.landing-heading { display: flex; align-items: start; gap: 30px; }


/* Footer */
.landing-page .footer .f-top .f-block { margin-bottom: 0; }

/* Banner CTA */
.landing-page .banner-cta .title * { font-weight: var(--font-weight-400); color: var(--netural-500); margin-bottom: 0; font-size: var(--fs-32); line-height: var(--lh-40); }
.landing-page .banner-cta-block { display: flex; align-items: center; justify-content: space-between; gap: 30px; }

/* Text Animation */
.landing-page .text-animation .disc * { font-size: var(--poppins-h2-size); line-height: var(--poppins-h2-line-height); font-weight: var(--font-weight-300); margin-bottom: 0; }

/* Growing Together */
.landing-page .growing-together .card .disc * { font-size: var(--fs-32); line-height: var(--lh-40); letter-spacing: 0.64px; }


/* Our Impact */
.landing-page .our-impact .card { border: unset; }
.landing-page .our-impact .card .title * { font-size: var(--fs-32); line-height: var(--lh-40); font-weight: var(--font-weight-400); }
.landing-page .our-impact .card { min-height: 338px !important; margin-bottom: 0; }
/* .landing-page .our-impact .row > *:nth-child(2) .card { margin-bottom: 60px; } */
.landing-page .our-impact .card .icon { width: 82px; height: auto; aspect-ratio: 1 / 1; margin-bottom: 10px; }

/* .landing-page .our-impact:not(.our-impact-bottom) .row >*:nth-child(3n + 2) { margin-bottom: 60px !important; } */
.landing-page .our-impact:not(.our-impact-bottom) .row { margin-top: -60px !important; margin-bottom: 60px !important; }

.landing-page .our-impact:not(.our-impact-bottom) .row >*:nth-child(3n + 1) { margin-top: 60px !important; margin-bottom: -60px !important; }
.landing-page .our-impact:not(.our-impact-bottom) .row >*:nth-child(3n + 2) { margin-top: 0 !important; }
.landing-page .our-impact:not(.our-impact-bottom) .row >*:nth-child(3n + 3) { margin-top: 60px !important; margin-bottom: -60px !important; }
.landing-page .our-impact:not(.our-impact-bottom) .row >*:nth-child(1) { margin-top: 0 !important; margin-bottom: -60px !important; }
.landing-page .our-impact:not(.our-impact-bottom) .row >*:nth-child(2) { margin-top: 60px !important; }
.landing-page .our-impact:not(.our-impact-bottom) .row >*:nth-child(3) { margin-top: 0 !important; margin-bottom: -60px !important; }

.landing-page .our-impact.our-impact-bottom .row >*:nth-child(3n + 1) { margin-top: -60px !important; margin-bottom: 60px !important; }
.landing-page .our-impact.our-impact-bottom .row >*:nth-child(3n + 2) { margin-top: 0 !important; }
.landing-page .our-impact.our-impact-bottom .row >*:nth-child(3n + 3) { margin-top: -60px !important; margin-bottom: 60px !important; }
.landing-page .our-impact.our-impact-bottom .row >*:nth-child(1) { margin-top: 0 !important; margin-bottom: 60px !important; }
.landing-page .our-impact.our-impact-bottom .row >*:nth-child(2) { margin-top: 60px !important; }
.landing-page .our-impact.our-impact-bottom .row >*:nth-child(3) { margin-top: 0 !important; margin-bottom: 60px !important; }


/* Services */
.landing-page .services-wrp .service-card  { display: flex; align-items: end; min-height: 564px; }
.landing-page .services-wrp .service-card .heading .title * { margin-bottom: 0; }
.landing-page .services .title-44 { width: 100%; }
.landing-page .services-wrp .service-card .heading .disc { margin-top: 12px; }

/* How We Make */
.landing-page .how-we-make-block .block-title * { font-size: var(--fs-58); line-height: var(--lh-73); }
.landing-page .how-we-make-block .block-title span { font-size: var(--fs-56); line-height: var(--lh-73); }
.landing-page .how-we-make-block-group .how-we-make-block .block-right .disc * { font-size: var(--fs-32); line-height: var(--lh-40); }

/* What We Do */
.landing-page .what-we-do .services-card { width: 328px; gap: 20px; padding: 20px; }
.landing-page .what-we-do .services-card .disc-block { justify-content: end; }
.landing-page .what-we-do .services-card .icon { width: 200px; height: 200px; }
.landing-page .what-we-do .title * { margin-bottom: 0; }


/* Success Stories */
.landing-page .success-stories-block .title * { font-family: var(--font-family-poppins); font-style: normal; }
.landing-page .success-stories-block .title span { font-family: var(--font-family-merriweather); font-style: var(--style-italic); }
.landing-page .success-stories-block .disc ul { list-style: none; padding-left: 0; margin-block: 0; }
.landing-page .success-stories-block .disc * { margin-bottom: 4px; }
.landing-page .success-stories-block .disc ul li { gap: 10px; display: flex; justify-content: center; align-items: center; position: relative; }

.success-and-logos { display: flex; flex-direction: column; gap: 30px; }

/* Landing CTA */
.landing-cta .landing-cta-block { background-color: #434FDA; padding: 40px; border-radius: 10px; -webkit-border-radius: 10px; -moz-border-radius: 10px; -ms-border-radius: 10px; -o-border-radius: 10px; position: relative; overflow: hidden; }
.landing-cta .landing-cta-content { margin-inline: auto; max-width: 910px; width: 100%; display: flex; align-items: end; justify-content: space-between; gap: 50px; position: relative; z-index: 2; }

.landing-cta .title-block { max-width: 550px; width: 100%; display: flex; flex-direction: column; gap: 60px; }
.landing-cta .title-block .title-44 * { font-weight: var(--font-weight-700); }
.landing-cta .landing-cta-img { user-select: none; pointer-events: none; opacity: .5; position: absolute; top: -50px; right: -50px; width: 538px; aspect-ratio: 538 / 498; height: auto; }


/* Landing Header */
.landing-header .navbar-brand { aspect-ratio: 126 / 47; width: 126px; height: auto; }
.landing-header.scroll { opacity: 1; pointer-events: auto; background-color: #2b2c9b; }
.landing-header.scroll .navbar { padding-block: 20px; }
.landing-header.scroll-reverse { background-color: #2b2c9b; }
.landing-header.scroll-reverse .navbar { padding-block: 20px; }
.landing-header.scroll-reverse .navbar .navbar-brand * { filter: unset; -webkit-filter: unset; }

.landing-header .navbar { padding-block: 50px; transition: all .3s ease-in-out; -webkit-transition: all .3s ease-in-out; -moz-transition: all .3s ease-in-out; -ms-transition: all .3s ease-in-out; -o-transition: all .3s ease-in-out; }

/* Landing Banner */
.landing-banner { margin-bottom: 0 !important; min-height: 760px; padding-block: 270px 60px; }
.landing-banner .heading .badge { margin-bottom: 30px; }
.landing-banner .heading { max-width: 1200px; width: 100%; margin-inline: auto; }
.landing-banner .heading .title * { margin-bottom: 30px; max-width: 100%; width: 100%; }
.landing-banner .heading .title span { font-size: var(--fs-56); }

.landing-page .industry-leading { padding: 80px 0; }

/* Landing Popup */
.landing-popup { padding: 30px; background-color: var(--netural-40); height: 100dvh; width: 100%; position: fixed; z-index: 99; bottom: 100%; left: 0; transition: all .3s ease-in-out; -webkit-transition: all .3s ease-in-out; -moz-transition: all .3s ease-in-out; -ms-transition: all .3s ease-in-out; -o-transition: all .3s ease-in-out; opacity: 0; pointer-events: none; }
.landing-popup.show { bottom: 0; opacity: 1; pointer-events: auto; }

.landing-popup .heading span { display: block; }
.landing-popup .landing-popup-block { padding-block: 40px; max-height: calc(100dvh - 180px); overflow: auto; position: relative; gap: 40px; display: flex; align-items: start; justify-content: space-between; }

.landing-popup .popup-left { max-width: 430px; width: 100%; }
.landing-popup .popup-right { max-width: 655px; width: 100%; }
.landing-popup .disc * { margin-bottom: 0; }

.popup-close-btn { margin-inline: auto 0; width: fit-content; margin-bottom: 100px; }
.popup-close-btn .btn { height: 48px; width: 48px; display: flex; align-items: center; justify-content: center; padding: 0; }

body:has(.landing-popup.show) { overflow: hidden; }

.landing-page .success-stories-block .trusted-bg-img { position: absolute; top: 50%; transform: translate(-50%,-50%); left: 50%; height: 100%; width: 100%; background-size: cover !important; background-position: center !important; opacity: .6; z-index: 1; -webkit-transform: translate(-50%,-50%); -moz-transform: translate(-50%,-50%); -ms-transform: translate(-50%,-50%); -o-transform: translate(-50%,-50%);  }
.landing-page .success-stories-block::after { z-index: 2; }
.landing-page .success-stories-block .success-stories-content { z-index: 3; }

/* Landing Page Brand List */
.landing-page-brand-list { margin-top: 150px; }
.landing-page-brand-list ul { list-style: none; justify-content: center; gap: 50px; width: fit-content; margin-inline: auto; display: flex; padding-left: 0; margin-block: 0; }
.landing-page-brand-list ul li { display: flex; align-items: center; }
.landing-page-brand-list ul li .img-content { display: flex; align-items: center; justify-content: center; height: 100px; width: auto; }
.landing-page-brand-list ul li .img-content img { height: 100%; width: 100%; object-fit: contain; object-position: center; }

.landing-page-brand-list ul li .img-content.h-70px { height: 70px; }
.landing-page-brand-list ul li .img-content.h-100px { height: 100px; }
/* ================================================ [ Landing Page CSS End ] ================================================ */
