/* ==================== [ Root CSS Start ] ==================== */
/* ==================== [ Core Colors ] ==================== */
:root {
	--white: #ffffff;
	--black: #000000;
	--transparent: #0000;
}

/* ==================== [ Brand / Theme ] ==================== */
:root {
	--primary: #005288;
	--dark-primary: #003F68;

	--info: #2CA8C2;
	--dark-info: #23879B;

	--teal: #2FAF9E;
	--dark-teal: #258C7F;

	--success: #4CAF50;
	--dark-success: #3D8B40;

	--yellow: #F4B400;
	--dark-yellow: #C49000;

	--warning: #F97316;
	--dark-warning: #D65F0E;

	--danger: #EF4444;
	--dark-danger: #D73737;

	--purple: #7C3AED;
	--dark-purple: #652FD1;

	--secondary: #A7A9AC;
	--dark-secondary: #8A8C8F;
}

:root {
	--dark: #1F1F1F;
	--light: #F6FAFE;

	--body: var(--light);

	--box-shadow: 0 4px 24px rgba(196, 196, 196, 0.15);

	--border-20: rgba(117, 117, 117, 0.2);
	--border: rgba(117, 117, 117, 0.3);

	--border-primary-03: rgba(0, 82, 136, 0.03);
	--border-primary-08: rgba(0, 82, 136, 0.08);
	--border-primary-15: rgba(0, 82, 136, 0.15);
	--border-primary-25: rgba(0, 82, 136, 0.25);
	--border-primary-30: rgba(0, 82, 136, 0.30);
	--border-primary-45: rgba(0, 82, 136, 0.45);

	--border-info-25: rgba(44, 168, 194, 0.25);
	--border-info-45: rgba(44, 168, 194, 0.45);

	--border-teal-25: rgba(47, 175, 158, 0.25);
	--border-teal-45: rgba(47, 175, 158, 0.45);

	--border-success-25: rgba(76, 175, 80, 0.25);
	--border-success-45: rgba(76, 175, 80, 0.45);

	--border-yellow-25: rgba(244, 180, 0, 0.25);
	--border-yellow-45: rgba(244, 180, 0, 0.45);

	--border-warning-25: rgba(249, 115, 22, 0.25);
	--border-warning-45: rgba(249, 115, 22, 0.45);

	--border-danger-25: rgba(239, 68, 68, 0.25);
	--border-danger-45: rgba(239, 68, 68, 0.45);

	--border-purple-25: rgba(124, 58, 237, 0.25);
	--border-purple-45: rgba(124, 58, 237, 0.45);

	--border-secondary-25: rgba(167, 169, 172, 0.25);
	--border-secondary-45: rgba(167, 169, 172, 0.45);
}

/* ==================== [ Fonts ] ==================== */
:root {
	--font-primary: "Manrope", sans-serif;
	--font-secondary: "Archivo", sans-serif;
}

/* ==================== [ Layout / Container ] ==================== */
:root {
	--container: 1620px;
	--container-padding: 20px;
	--row-gutter-space: 24px;
}

/* ==================== [ Typography – Common ] ==================== */
:root {
	--a-color: var(--dark);
	--a-hover-color: var(--primary);

	--marker-color: var(--dark);

	--blockquote-bg: var(--border-primary-08);
	--blockquote-border-color: var(--primary);

	--pre-bg: var(--border-primary-08);
	--pre-color: var(--dark);
}

/* ==================== [ Table ] ==================== */
:root {
	--table-border: var(--border);

	--table-th-bg: rgba(27, 117, 187, 0.05);
	--table-th-color: var(--dark);

	--table-td-bg: var(--transparent);
	--table-td-color: var(--dark);
}

/* ==================== [ Headings ] ==================== */
:root {
	--heading-color: var(--dark);
	--heading-strong-color: var(--primary);
	--heading-font-family: var(--font-secondary);
	--heading-mb: 20px;
	--heading-fw: 500;

	--h1-fs: 64px;
	--h1-lh: 115%;
	--h1-ls: -1.28px;

	--h2-fs: 50px;
	--h2-lh: 115%;
	--h2-ls: -1px;

	--h3-fs: 40px;
	--h3-lh: 120%;
	--h3-ls: -0.8px;

	--h4-fs: 32px;
	--h4-lh: 125%;
	--h4-ls: -0.64px;

	--h5-fs: 24px;
	--h5-lh: 130%;
	--h5-ls: -0.48px;

	--h6-fs: 20px;
	--h6-lh: 135%;
	--h6-ls: -0.2px;
}

/* ==================== [ Root CSS End ] ==================== */

/* ==================== [ Brand Global CSS Start ] ==================== */
* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	scroll-behavior: smooth;
}

body {
	color: var(--secondary);
	font-family: var(--font-primary);
	font-size: 16px;
	font-style: normal;
	font-weight: 400;
	line-height: normal;
	background: var(--body);
	overflow-x: hidden;
	overscroll-behavior: none;
}

/* ==================== [ Brand Global CSS End ] ==================== */

/* ==================== [ Typography Start ] ==================== */
figure {
	margin: 0;
}

strong,
b {
	font-weight: 600 !important;
}

a,
input,
button,
textarea {
	outline: none;
}

input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
input:-webkit-autofill:active,
textarea:-webkit-autofill,
textarea:-webkit-autofill:hover,
textarea:-webkit-autofill:focus,
textarea:-webkit-autofill:active,
select:-webkit-autofill,
select:-webkit-autofill:hover,
select:-webkit-autofill:focus,
select:-webkit-autofill:active {
	-webkit-box-shadow: 0 0 0 1000px var(--transparent) inset !important;
	-webkit-text-fill-color: var(--secondary) !important;
	transition: background-color 5000s ease-in-out 0s;
}

input:autofill,
textarea:autofill,
select:autofill {
	background-color: var(--transparent) !important;
	color: var(--secondary) !important;
}

a {
	color: var(--a-color);
	word-break: break-word;
	transition: all 0.3s ease-in-out;
	text-underline-offset: 3px;
}

button {
	transition: all 0.3s ease-in-out;
}

a:hover {
	color: var(--a-hover-color);
}

p {
	color: inherit;
	font-family: inherit;
	font-size: inherit;
	font-style: inherit;
	font-weight: inherit;
	line-height: inherit;
	margin-bottom: 20px;
}

ol,
ul {
	margin-bottom: 20px;
	padding-left: 20px;
}

ol ol,
ol ul,
ul ol,
ul {
	margin-top: 10px;
	margin-bottom: 10px;
}

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(--marker-color);
}

ol.marker-white li::marker,
ul.marker-white li::marker {
	color: var(--white);
}

ul li:has(> ul),
ul li:has(> ol) {
	list-style-type: none;
}

blockquote {
	padding: 16px 16px 16px 24px;
	border-left: 5px solid var(--blockquote-border-color);
	margin-bottom: 20px;
	background-color: var(--blockquote-bg);
	font-size: inherit;
	line-height: inherit;
	color: inherit;
}

pre {
	background-color: var(--pre-bg);
	padding: 16px;
	overflow: auto;
	font-family: inherit;
	border-radius: 12px;
	position: relative;
	color: var(--pre-color);
}

pre code {
	font-size: inherit;
	font-weight: inherit;
	font-family: inherit;
	line-height: inherit;
}

table {
	width: 100%;
	border-collapse: collapse;
	margin-bottom: 16px;
	font-size: inherit;
}

th,
td {
	border: 1px solid var(--table-border);
	padding: 8px 12px;
	text-align: left;
}

th {
	background-color: var(--table-th-bg);
	font-weight: 600;
	font-size: inherit;
	color: var(--table-th-color);
}

td {
	background-color: var(--table-td-bg);
	font-weight: 400;
	font-size: inherit;
	color: var(--table-td-color);
}

.table-light-primary {
	background-color: var(--active-bg);
}

.table-light-primary>* {
	background: inherit !important;
}

:is(h1, h2, h3, h4, h5, h6) strong {
	color: var(--heading-strong-color);
	font-weight: 600 !important;
}

h1,
.h1>* {
	color: var(--heading-color);
	font-family: var(--heading-font-family);
	font-size: var(--h1-fs);
	line-height: var(--h1-lh);
	letter-spacing: var(--h1-ls);
	font-weight: var(--heading-fw);
	margin-bottom: var(--heading-mb);
}

h2,
.h2>* {
	color: var(--heading-color);
	font-family: var(--heading-font-family);
	font-size: var(--h2-fs);
	line-height: var(--h2-lh);
	letter-spacing: var(--h2-ls);
	font-weight: var(--heading-fw);
	margin-bottom: var(--heading-mb);
}

h3,
.h3>* {
	color: var(--heading-color);
	font-family: var(--heading-font-family);
	font-size: var(--h3-fs);
	line-height: var(--h3-lh);
	letter-spacing: var(--h3-ls);
	font-weight: var(--heading-fw);
	margin-bottom: var(--heading-mb);
}

h4,
.h4>* {
	color: var(--heading-color);
	font-family: var(--heading-font-family);
	font-size: var(--h4-fs);
	line-height: var(--h4-lh);
	letter-spacing: var(--h4-ls);
	font-weight: var(--heading-fw);
	margin-bottom: var(--heading-mb);
}

h5,
.h5>* {
	color: var(--heading-color);
	font-family: var(--heading-font-family);
	font-size: var(--h5-fs);
	line-height: var(--h5-lh);
	letter-spacing: var(--h5-ls);
	font-weight: var(--heading-fw);
	margin-bottom: var(--heading-mb);
}

h6,
.h6>* {
	color: var(--heading-color);
	font-family: var(--heading-font-family);
	font-size: var(--h6-fs);
	line-height: var(--h6-lh);
	letter-spacing: var(--h6-ls);
	font-weight: var(--heading-fw);
	margin-bottom: var(--heading-mb);
}

hr {
	margin-block: 20px;
}

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 {
	padding-block: 120px;
}

.typography img {
	max-width: 300px;
	width: 100%;
	height: auto;
	aspect-ratio: 1/1;
	object-fit: cover;
	object-position: center;
	margin-bottom: 20px;
}

.typography img.align-left {
	margin-right: 40px;
	float: left;
}

.typography img.align-right {
	margin-left: 40px;
	float: right;
}

.typography img.align-center {
	margin-inline: auto;
	display: block;
}

/* ==================== [ Typography End ] ==================== */

/* ==================== [ Common Start ] ==================== */
.row {
	margin-inline: calc(var(--row-gutter-space) / -2);
	row-gap: var(--row-gutter-space);
}

.row>* {
	padding-inline: calc(var(--row-gutter-space) / 2);
}

.img-cover * {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
}

.img-contain * {
	width: 100%;
	height: 100%;
	object-fit: contain;
	object-position: center;
}

/* ==================== [ Common End ] ==================== */

/* ==================== [ Common Heading Start ] ==================== */
/* ==================== [ Common Heading End ] ==================== */

/* ==================== [ Button Start ] ==================== */
.btn {
	position: relative;
	width: fit-content;
	padding: 12px calc(24px + 46px) 12px 24px;
	text-align: center;
	font-family: var(--font-primary);
	font-size: 16px;
	font-weight: 600;
	line-height: normal;
	border-radius: 0;
	overflow: hidden;
	border: 2px solid;
	text-decoration: none;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 6px;
	transition: all 0.3s ease-in-out;
	-webkit-border-radius: 0;
	-moz-border-radius: 0;
	-ms-border-radius: 0;
	-o-border-radius: 0;
	-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;
}

.btn-icon {
	width: 46px;
	height: 46px;
	padding: 12px 46px 12px 0;
}

.btn::after {
	position: absolute;
	content: "";
	right: 0;
	top: 0;
	width: 46px;
	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;
}

.btn::before {
	position: absolute;
	content: "";
	right: 0;
	top: 0;
	width: 46px;
	height: 100%;
	background-image: url('data:image/svg+xml,<svg width="36" height="36" viewBox="0 0 36 36" fill="none" xmlns="http://www.w3.org/2000/svg"> <path d="M12.6966 10.5754L25.4245 10.5754L25.4245 23.3033M25.4245 10.5754L10.5753 25.4246" stroke="white" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/> </svg> ');
	background-position: center;
	background-size: 30px;
	background-repeat: no-repeat;
	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;
	z-index: 1;
}

.btn.btn-sm {
	padding: 4px 10px;
	font-size: 13px;
	line-height: 18px;
	border-radius: 5px;
	gap: 4px;
}

.btn.btn-lg {
	padding: 10px 24px;
	font-size: 18px;
	line-height: 28px;
	border-radius: 8px;
}

.btn.btn-sm i {
	font-size: 16px;
}

.btn i {
	font-size: 18px;
}

.btn.btn-lg i {
	font-size: 22px;
}

.btn-primary {
	color: var(--primary);
	background: var(--white);
	border-color: var(--primary);
}

.btn-primary::after {
	background-color: var(--primary);
}

.btn-primary:is(:hover, :focus-visible, :active, .active) {
	color: var(--primary) !important;
	background: var(--white) !important;
	border-color: var(--primary) !important;
	box-shadow: 0 2px 10px rgba(27, 117, 187, 0.2) !important;
	outline: 0 !important;
}

.btn:hover::before {
	transform: rotate(45deg);
	-webkit-transform: rotate(45deg);
	-moz-transform: rotate(45deg);
	-ms-transform: rotate(45deg);
	-o-transform: rotate(45deg);
}

/* INFO */
.btn-info {
	color: var(--info);
	background: var(--white);
	border-color: var(--info);
}

.btn-info::after {
	background-color: var(--info);
}

.btn-info:is(:hover, :focus-visible, :active, .active) {
	color: var(--info) !important;
	background: var(--white) !important;
	border-color: var(--info) !important;
	box-shadow: 0 2px 10px rgba(44, 168, 194, 0.2) !important;
	outline: 0 !important;
}

/* TEAL */
.btn-teal {
	color: var(--teal);
	background: var(--white);
	border-color: var(--teal);
}

.btn-teal::after {
	background-color: var(--teal);
}

.btn-teal:is(:hover, :focus-visible, :active, .active) {
	color: var(--teal) !important;
	background: var(--white) !important;
	border-color: var(--teal) !important;
	box-shadow: 0 2px 10px rgba(47, 175, 158, 0.2) !important;
	outline: 0 !important;
}

/* SUCCESS */
.btn-success {
	color: var(--success);
	background: var(--white);
	border-color: var(--success);
}

.btn-success::after {
	background-color: var(--success);
}

.btn-success:is(:hover, :focus-visible, :active, .active) {
	color: var(--success) !important;
	background: var(--white) !important;
	border-color: var(--success) !important;
	box-shadow: 0 2px 10px rgba(76, 175, 80, 0.2) !important;
	outline: 0 !important;
}

/* YELLOW */
.btn-yellow {
	color: var(--yellow);
	background: var(--white);
	border-color: var(--yellow);
}

.btn-yellow::after {
	background-color: var(--yellow);
}

.btn-yellow:is(:hover, :focus-visible, :active, .active) {
	color: var(--yellow) !important;
	background: var(--white) !important;
	border-color: var(--yellow) !important;
	box-shadow: 0 2px 10px rgba(244, 180, 0, 0.2) !important;
	outline: 0 !important;
}

/* WARNING */
.btn-warning {
	color: var(--warning);
	background: var(--white);
	border-color: var(--warning);
}

.btn-warning::after {
	background-color: var(--warning);
}

.btn-warning:is(:hover, :focus-visible, :active, .active) {
	color: var(--warning) !important;
	background: var(--white) !important;
	border-color: var(--warning) !important;
	box-shadow: 0 2px 10px rgba(249, 115, 22, 0.2) !important;
	outline: 0 !important;
}

/* DANGER */
.btn-danger {
	color: var(--danger);
	background: var(--white);
	border-color: var(--danger);
}

.btn-danger::after {
	background-color: var(--danger);
}

.btn-danger:is(:hover, :focus-visible, :active, .active) {
	color: var(--danger) !important;
	background: var(--white) !important;
	border-color: var(--danger) !important;
	box-shadow: 0 2px 10px rgba(239, 68, 68, 0.2) !important;
	outline: 0 !important;
}

/* PURPLE */
.btn-purple {
	color: var(--purple);
	background: var(--white);
	border-color: var(--purple);
}

.btn-purple::after {
	background-color: var(--purple);
}

.btn-purple:is(:hover, :focus-visible, :active, .active) {
	color: var(--purple) !important;
	background: var(--white) !important;
	border-color: var(--purple) !important;
	box-shadow: 0 2px 10px rgba(124, 58, 237, 0.2) !important;
	outline: 0 !important;
}

/* SECONDARY */
.btn-secondary {
	color: var(--secondary);
	background: var(--white);
	border-color: var(--secondary);
}

.btn-secondary::after {
	background-color: var(--secondary);
}

.btn-secondary:is(:hover, :focus-visible, :active, .active) {
	color: var(--secondary) !important;
	background: var(--white) !important;
	border-color: var(--secondary) !important;
	box-shadow: 0 2px 10px rgba(146, 148, 151, 0.2) !important;
	outline: 0 !important;
}

.btn-check:checked+.btn {
	color: var(--white);
	background-color: var(--primary);
	border-color: var(--primary);
}

.btn-outline-primary {
	color: var(--primary);
	background-color: var(--white);
	border-color: var(--primary);
}

/* PRIMARY LIGHT */
.btn-primary-light {
	color: var(--primary);
	background: var(--white);
	border: none;
}

.btn-primary-light::after {
	background-color: rgba(27, 117, 187, 0.1);
}

.btn-primary-light::before {
	background-image: url('data:image/svg+xml,<svg width="36" height="36" viewBox="0 0 36 36" fill="none" xmlns="http://www.w3.org/2000/svg"> <path d="M12.6966 10.5754L25.4245 10.5754L25.4245 23.3033M25.4245 10.5754L10.5753 25.4246" stroke="%23005288" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/> </svg> ');
}

.btn-primary-light:is(:hover, :focus-visible, :active, .active) {
	color: var(--primary) !important;
	background: var(--white) !important;
	border-color: var(--primary) !important;
	box-shadow: 0 2px 10px rgba(27, 117, 187, 0.2) !important;
	outline: 0 !important;
}

.btn-primary-light:hover::before {
	transform: rotate(45deg);
	-webkit-transform: rotate(45deg);
	-moz-transform: rotate(45deg);
	-ms-transform: rotate(45deg);
	-o-transform: rotate(45deg);
}

/* ==================== [ Button End ] ==================== */

/* ==================== [ Link Start ] ==================== */
.link-primary {
	color: var(--primary) !important;
}

.link-primary:hover {
	color: var(--dark-primary) !important;
}

.link-info {
	color: var(--info) !important;
}

.link-info:hover {
	color: var(--dark-info) !important;
}

.link-teal {
	color: var(--teal) !important;
}

.link-teal:hover {
	color: var(--dark-teal) !important;
}

.link-success {
	color: var(--success) !important;
}

.link-success:hover {
	color: var(--dark-success) !important;
}

.link-yellow {
	color: var(--yellow) !important;
}

.link-yellow:hover {
	color: var(--dark-yellow) !important;
}

.link-warning {
	color: var(--warning) !important;
}

.link-warning:hover {
	color: var(--dark-warning) !important;
}

.link-danger {
	color: var(--danger) !important;
}

.link-danger:hover {
	color: var(--dark-danger) !important;
}

.link-purple {
	color: var(--purple) !important;
}

.link-purple:hover {
	color: var(--dark-purple) !important;
}

.link-secondary {
	color: var(--secondary) !important;
}

.link-secondary:hover {
	color: var(--dark-secondary) !important;
}

/* ==================== [ Link End ] ==================== */

/* ==================== [ Text, Background, Border Color Start ] ==================== */
.text-primary {
	color: var(--primary) !important;
}

.text-info {
	color: var(--info) !important;
}

.text-teal {
	color: var(--teal) !important;
}

.text-success {
	color: var(--success) !important;
}

.text-yellow {
	color: var(--yellow) !important;
}

.text-warning {
	color: var(--warning) !important;
}

.text-danger {
	color: var(--danger) !important;
}

.text-purple {
	color: var(--purple) !important;
}

.text-secondary {
	color: var(--secondary) !important;
}

.bg-primary {
	background-color: var(--primary);
}

.bg-info {
	background-color: var(--info);
}

.bg-teal {
	background-color: var(--teal);
}

.bg-success {
	background-color: var(--success);
}

.bg-yellow {
	background-color: var(--yellow);
}

.bg-warning {
	background-color: var(--warning);
}

.bg-danger {
	background-color: var(--danger);
}

.bg-purple {
	background-color: var(--purple);
}

.bg-secondary {
	background-color: var(--secondary);
}

.border-primary {
	border-color: var(--primary);
}

.border-info {
	border-color: var(--info);
}

.border-teal {
	border-color: var(--teal);
}

.border-success {
	border-color: var(--success);
}

.border-yellow {
	border-color: var(--yellow);
}

.border-warning {
	border-color: var(--warning);
}

.border-danger {
	border-color: var(--danger);
}

.border-purple {
	border-color: var(--purple);
}

.border-secondary {
	border-color: var(--secondary);
}

/* ==================== [ Text, Background, Border Color End ] ==================== */

/* ==================== [ Font Size Start ] ==================== */
.fs-18 {
	font-size: 18px;
}

.fs-20 {
	font-size: 20px;
}

.fs-28 {
	font-size: 28px;
}

.fs-36 {
	font-size: 36px;
}

/* ==================== [ Font Size 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: var(--container-padding);
	margin-inline: auto;
}

.swiper-linear .swiper-wrapper {
	transition-timing-function: linear !important;
}

.popover {
	border: 1px solid var(--border);
	outline: 0;
	box-shadow: 0px 2px 10px 0px rgba(0, 0, 0, 0.05);
}

.tooltip-inner {
	font-size: 12px;
	font-weight: 400;
	line-height: 120%;
}

.section-heading {
	display: flex;
	flex-direction: column;
	gap: 20px;
}

.seprator {
	width: 1px;
	height: 100%;
	background: url("../images/svgs/border-dash.svg");
	background-repeat: repeat-y;
	background-size: contain;
}

/* Animated Badge */
.animated-badge {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	border-radius: 100px;
	-webkit-border-radius: 100px;
	-moz-border-radius: 100px;
	-ms-border-radius: 100px;
	-o-border-radius: 100px;
	background-color: var(--white);
	padding: 10px 16px;
	border: 1px solid var(--border-20);
	font-weight: 500;
	font-size: 14px;
	width: fit-content;
	min-height: 42px;
}


.animated-badge span {
	position: relative;
	display: block;
	width: 12px;
	height: 12px;
	background: var(--primary);
	border-radius: 50%;
}

.animated-badge span::before,
.animated-badge span::after {
	content: "";
	position: absolute;
	top: 50%;
	left: 50%;
	width: 12px;
	height: 12px;
	border-radius: 50%;
	background: var(--primary);
	transform: translate(-50%, -50%);
	animation: ripple 2s infinite;
}

.animated-badge span::after {
	animation-delay: 1s;
}

@keyframes ripple {
	0% {
		transform: translate(-50%, -50%) scale(1);
		opacity: 0.7;
	}

	100% {
		transform: translate(-50%, -50%) scale(2);
		opacity: 0;
	}
}

@property --angle {
	syntax: "<angle>";
	initial-value: 0deg;
	inherits: false;
}

.animated-badge::before {
	content: '';
	position: absolute;
	height: 100%;
	width: 100%;
	background-image: conic-gradient(from var(--angle), #1B75BB, #2CA8C2, #2FAF9E, #4CAF50, #F4B400, #F97316, #EF4444, #7C3AED, #1B75BB);
	top: 50%;
	left: 50%;
	translate: -50% -50%;
	z-index: -1;
	animation: 4.5s spin linear infinite;
	-webkit-animation: 4.5s spin linear infinite;
	border-radius: 500px;
	-webkit-border-radius: 500px;
	-moz-border-radius: 500px;
	-ms-border-radius: 500px;
	-o-border-radius: 500px;
}

.animated-badge::before {
	filter: blur(22px);
	opacity: 0.7;
	-webkit-filter: blur(32px);
}

.animated-badge.op-100::before {
	opacity: 1;
}

.animated-badge.op-90::before {
	opacity: 0.9;
}

.animated-badge.op-80::before {
	opacity: 0.8;
}

.animated-badge.op-50::before {
	opacity: 0.5;
}

.animated-badge.op-25::before {
	opacity: 0.25;
}

@keyframes spin {
	from {
		--angle: 0deg;
	}

	to {
		--angle: 360deg;
	}
}

/* Offcanvas Settings */
.offcanvas-backdrop.show,
.offcanvas-backdrop {
	opacity: 1;
	background-color: rgba(0, 0, 0, 0.25);
	backdrop-filter: blur(5px);
}

.offcanvas.offcanvas-end {
	border-left: 1px solid var(--border);
}

.offcanvas-header {
	position: relative;
}

.offcanvas-header * {
	z-index: 1;
}

.offcanvas-header::before {
	position: absolute;
	content: "";
	top: 0;
	left: 0;
	width: 100%;
	height: 50%;
	z-index: -1;
	background: linear-gradient(90.00deg, #1B75BB 0%, #2CA8C2 14%, #2FAF9E 28%, #4CAF50 42%, #F4B400 56%, #F97316 70%, #EF4444 84%, #7C3AED 100%);
	filter: blur(32px);
	-webkit-filter: blur(32px);
	pointer-events: none;
	user-select: none;
	opacity: 0.8;
}

.offcanvas-header::after {
	position: absolute;
	content: "";
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: var(--white);
	pointer-events: none;
	user-select: none;
	opacity: 1;
}

.offcanvas-header .btn-close {
	outline: 0 !important;
	box-shadow: none !important;
}

/* Dropdown Settings */
.dropdown-toggle::after {
	display: none;
}

.dropdown-toggle i {
	transition: transform 0.3s ease;
}

.dropdown-toggle.show i {
	transform: rotate(180deg);
}

/* Accordion Settings */
.accordion-button {
	padding: 0px 8px;
	box-shadow: none !important;
}

.accordion-button::after {
	background-size: 14px;
	width: 14px;
	height: 14px;
}

.accordion-button:not(.collapsed) {
	background: var(--border-primary-08) !important;
}

/* ==================== [ Extra Common End ] ==================== */

/* ==================== [ Theme Extra Class Start ] ==================== */
.text-danger {
	color: var(--danger);
}

.text-warning {
	color: var(--warning);
}

.text-success {
	color: var(--success);
}

/* ==================== [ Theme Extra Class End ] ==================== */

/* ==================== [ Modal Setting Start ] ==================== */
.modal-backdrop.show,
.modal-backdrop {
	background-color: rgba(0, 0, 0, 0.25);
	backdrop-filter: blur(5px);
	opacity: 1;
}

.modal-content {
	overflow: hidden;
	border: 1px solid var(--border);
	box-shadow: 0px 2px 10px 0px rgba(0, 0, 0, 0.05);
	border-radius: 8px;
	-webkit-border-radius: 8px;
	-moz-border-radius: 8px;
	-ms-border-radius: 8px;
	-o-border-radius: 8px;
}

.modal-header {
	position: relative;
	padding: 12px 16px;
	border-bottom: 1px solid var(--border);
	z-index: 1;
	background-color: var(--white);
	box-shadow: 0 0 20px rgba(0, 0, 0, 0.05);
}

.modal-header>* {
	position: relative;
	z-index: 1;
}

.modal-header::after {
	position: absolute;
	content: "";
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: var(--white);
	pointer-events: none;
	user-select: none;
	opacity: 1;
}

.modal-header::before {
	position: absolute;
	content: "";
	top: 0;
	left: 0;
	width: 100%;
	height: 50%;
	z-index: -1;
	background: linear-gradient(90.00deg, #1B75BB 0%, #2CA8C2 14%, #2FAF9E 28%, #4CAF50 42%, #F4B400 56%, #F97316 70%, #EF4444 84%, #7C3AED 100%);
	filter: blur(32px);
	-webkit-filter: blur(32px);
	pointer-events: none;
	user-select: none;
	opacity: 0.8;
}

.modal-title {
	font-family: var(--font-secondary);
	font-weight: 500;
	font-size: 22px !important;
	line-height: 120%;
	color: var(--dark);
	margin-bottom: 0;
	letter-spacing: 0;
}

.modal-dialog {
	max-width: 600px;
}

.modal-body {
	padding: 12px 16px;
}

/* ==================== [ Modal Setting End ] ==================== */

/* ==================== [ Badge Setting Start ] ==================== */
.badge-sm {
	font-size: 10px !important;
	line-height: 120%;
	height: fit-content;
	font-weight: 400;
}

.badge {
	font-size: 13px;
	font-weight: 400;
	height: fit-content;
}

.badge-lg {
	font-size: 15px !important;
	line-height: 120%;
	height: fit-content;
	font-weight: 400;
}

.badge-primary {
	color: var(--white);
	background: var(--primary);
	border-color: var(--primary);
}

.badge-info {
	color: var(--white);
	background: var(--info);
	border-color: var(--info);
}

.badge-teal {
	color: var(--white);
	background: var(--teal);
	border-color: var(--teal);
}

.badge-success {
	color: var(--white);
	background: var(--success);
	border-color: var(--success);
}

.badge-yellow {
	color: var(--black);
	background: var(--yellow);
	border-color: var(--yellow);
}

.badge-warning {
	color: var(--white);
	background: var(--warning);
	border-color: var(--warning);
}

.badge-danger {
	color: var(--white);
	background: var(--danger);
	border-color: var(--danger);
}

.badge-purple {
	color: var(--white);
	background: var(--purple);
	border-color: var(--purple);
}

.badge-secondary {
	color: var(--white);
	background: var(--secondary);
	border-color: var(--secondary);
}

/* ==================== [ Badge Setting End ] ==================== */

/* ==================== [ Header Start ] ==================== */
.header {
	position: fixed;
	top: 0;
	z-index: 100;
	width: 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;
}

.header.scroll {
	background-color: rgba(255, 255, 255, 0.5);
	backdrop-filter: blur(12px);
}

.header .navbar {
	padding: 20px 0;
}

.header .navbar-brand {
	margin: 0;
	padding: 0;
}

.header .navbar .navbar-nav {
	display: flex;
	align-items: center;
	gap: 35px;
	margin: 0;
}

.header .navbar .nav-link {
	margin: 0;
	padding: 0;
	font-family: var(--font-secondary);
	font-weight: 500;
	font-size: 18px;
	transition: all 0.3 ease-in-out;
	-webkit-transition: all 0.3 ease-in-out;
	-moz-transition: all 0.3 ease-in-out;
	-ms-transition: all 0.3 ease-in-out;
	-o-transition: all 0.3 ease-in-out;
	display: flex;
	align-items: center;
	gap: 8px;
}

.header .navbar .nav-link i {
	font-size: 20px;
}

.header .navbar .nav-link:is(:hover, :focus-visible, :active, .active, .show) {
	color: var(--primary);
	box-shadow: none !important;
	outline: 0 !important;
}

.header .burger-menu {
	width: 46px;
	min-width: 46px;
	height: 46px;
	background: var(--primary);
	border-radius: 6px;
	border: 0;
	box-shadow: none;
	color: var(--white);
	font-size: 22px;
	-webkit-border-radius: 6px;
	-moz-border-radius: 6px;
	-ms-border-radius: 6px;
	-o-border-radius: 6px;
}

.header .burger-menu:is(:hover, :focus-visible, :active, .active) {
	background-color: var(--dark-primary);
}

@keyframes megaMenuIn {
	0% {
		visibility: hidden;
		opacity: 0;
		transform: translateY(20px);
	}

	10% {
		visibility: visible;
		opacity: 0;
		transform: translateY(20px);
	}

	100% {
		visibility: visible;
		opacity: 1;
		transform: translateY(0);
	}
}

@keyframes megaMenuOut {
	0% {
		visibility: visible;
		opacity: 1;
		transform: translateY(0px);
	}

	90% {
		visibility: visible;
		opacity: 0;
		transform: translateY(20px);
	}

	100% {
		visibility: hidden;
		opacity: 0;
		transform: translateY(20px);
	}
}

.header .mega-menu {
	background-color: var(--white);
	width: 100%;
	left: 0;
	right: 0;
	top: 100%;
	margin-top: 0 !important;
	padding: 40px 0;
	border-radius: 0;
	display: block;
	pointer-events: none;
	visibility: hidden;
	opacity: 0;
	transform: translateY(20px);
	-webkit-transform: translateY(20px);
	-moz-transform: translateY(20px);
	-ms-transform: translateY(20px);
	-o-transform: translateY(20px);
	animation: megaMenuOut 0.25s ease forwards;
	-webkit-animation: megaMenuOut 0.25s ease forwards;
}

.header .mega-dropdown.show .mega-menu,
.header .mega-dropdown .dropdown-menu.show {
	pointer-events: auto;
	animation: megaMenuIn 0.25s ease forwards;
}

.header .mega-menu-offcanvas .mega-subtitle *,
.header .mega-menu .mega-subtitle * {
	font-size: 18px;
	color: var(--dark);
	margin-bottom: 10px;
}

.header .mega-menu-offcanvas .mega-link,
.header .mega-menu .mega-link {
	font-size: 13px;
	display: block;
	text-decoration: none;
	color: var(--secondary);
	padding: 3px 0;
}

.header .mega-menu-offcanvas .mega-link:is(:hover, :focus-visible, :active, .active, .show),
.header .mega-menu .mega-link:is(:hover, :focus-visible, :active, .active, .show) {
	color: var(--primary);
}


.header .offcanvas,
.header .searchModal {
	height: 100dvh;
}

.header .searchModal .btn-outline-primary {
	border: 1px solid var(--border-primary-45);
	background-color: var(--border-primary-03);
	color: var(--primary);
	font-weight: 400 !important;
}

.header .searchModal .btn-outline-primary:is(:hover, :focus-visible, :active) {
	background-color: var(--border-primary-08);
}

.header .searchModal .btn-outline-primary::before,
.header .searchModal .btn-outline-primary::after {
	display: none;
}

.btn-check:checked+.btn:is(:hover, :focus-visible, :active),
.btn-check:checked+.btn {
	color: var(--white);
	background-color: var(--primary);
	border-color: var(--primary);
}

.header .searchModal .search-title {
	font-size: 16px;
	font-weight: 600;
	color: var(--dark);
}

.header .searchModal small {
	font-size: 13px;
	display: block;
}

.header .searchModal small strong {
	color: var(--primary);
}

.header .searchModal .search-title strong {
	color: var(--primary);
}

.header #searchModal .modal-dialog {
	max-width: 1100px;
}

.header #searchModal .search-thumb {
	flex-shrink: 0;
	width: 60px;
	height: 60px;
	object-fit: cover;
	border: 1px solid var(--border);
	overflow: hidden;
	border-radius: 6px;
	-webkit-border-radius: 6px;
	-moz-border-radius: 6px;
	-ms-border-radius: 6px;
	-o-border-radius: 6px;
}

.header #searchModal .section-title {
	background: var(--bs-tertiary-bg);
}

/* ==================== [ Header End ] ==================== */

/* ==================== [ Home Banner Start ] ==================== */
.home-banner {
	padding: 150px 0 40px;
}

.home-banner::before {
	position: absolute;
	content: "";
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(180deg, rgba(0, 82, 136, 0.08) 0%, rgba(0, 82, 136, 0) 100%);
	z-index: -1;
}

.home-banner .heading-disc {
	max-width: 360px;
}

.home-banner .banner-extra>* {
	flex-grow: 1;
	width: 100%;
}

/* ==================== [ Home Banner End ] ==================== */


/* ==================== [ Showreel Start ] ==================== */

.showreel-video {
	height: 607px;
	aspect-ratio: 1926 / 607;
}

.showreel-video::after {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: radial-gradient(circle, rgba(0, 0, 0, 0.20) 0%, rgba(0, 0, 0, 0.60) 100%);
}

.showreel-video video {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.showreel-content {
	bottom: 40px;
	z-index: 2;
}

.showreel-btn * {
	margin-bottom: 0;
	color: var(--white);
}

.showreel-btn span {
	font-size: 16px;
	opacity: 0.6;
}

.play-icon {
	width: 48px;
	height: 48px;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.9);
	backdrop-filter: blur(4px);
	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;
}

.play-icon * {
	color: var(--black);
	font-size: 24px;
}

.showreel-btn [class*="pause"] {
	display: none;
}

.showreel-btn.playing [class*="play"] {
	display: none;
}

.showreel-btn.playing [class*="pause"] {
	display: inline-block;
}

/* ==================== [ Showreel End ] ==================== */


/* ==================== [ Cooperation Start ] ==================== */

.py-100 {
	padding-block: 100px;
}

/* .heading .title span {
    color: var(--primary);
} */

.cooperation-steps .heading {
	width: 100%;
	max-width: 665px;
}

.cooperation-steps .heading .title * {
	margin-bottom: 0;
}

.cooperation-steps .heading .disc * {
	color: var(--secondary);
	margin-bottom: 0;
}

.cooperation-block-container .cooperation-block {
	position: relative;
}

.cooperation-block-container .cooperation-block::after {
	position: absolute;
	content: "";
	top: 0;
	right: 0;
	width: 1px;
	height: 100%;
	background: url("../images/svgs/border-dash.svg");
	background-repeat: repeat-y;
	background-size: contain;
}

.cooperation-block-container .cooperation-block:is(:last-child)::after {
	position: absolute;
	content: "";
	top: 0;
	right: 0;
	width: 1px;
	height: 100%;
	background: url("../images/svgs/border-dash.svg");
	background-repeat: repeat-y;
	background-size: contain;
	opacity: 0;
}

.cooperation-block .number * {
	font-family: 'Archivo';
	font-weight: 700;
	font-size: 100px;
	line-height: 115%;
	letter-spacing: -2px;
	color: var(--secondary);
	margin-bottom: 12px;
}

.cooperation-block .number .count {
	opacity: 0.3;
}

.cooperation-block .number .badge {
	font-size: 18px;
	font-weight: 600;
	line-height: 115%;
	letter-spacing: 1.44px;
	text-transform: uppercase;
	color: var(--primary);
	display: inline-block;
	padding: 2px;
	background: var(--light);
	left: 0;
	transform: translateY(-50%);
}

.cooperation-block .block-title * {
	color: var(--primary);
	margin-bottom: 12px;
}

.cooperation-block .disc {
	font-size: 18px;
	line-height: 150%;
	letter-spacing: -0.18px;
	color: var(--secondary);
}

/* ==================== [ Cooperation End ] ==================== */

/* ==================== [ Who-We-Are Start ] ==================== */
.who-we-are {
	background: var(--border-primary-08);
}

.who-we-are-video {
	width: 100%;
	max-width: 780px;
	height: 100%;
	aspect-ratio: 780/805;
	box-shadow: 0px 4px 24px 0px rgba(196, 196, 196, 0.15);
	border-radius: 16px;
	-webkit-border-radius: 16px;
	-moz-border-radius: 16px;
	-ms-border-radius: 16px;
	-o-border-radius: 16px;
	overflow: hidden;
}

.who-we-are-video:after {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: radial-gradient(circle, rgba(0, 0, 0, 0.20) 0%, rgba(0, 0, 0, 0.60) 100%);
}

.who-we-are-video video {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.video-btn {
	width: fit-content;
	right: 28px;
	bottom: 28px;
	color: var(--white);
	z-index: 1;
}

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

.pause-icon-btn {
	display: none;
}

.video-btn.playing .play-icon-btn {
	display: none;
}

.video-btn.playing .pause-icon-btn {
	display: inline-block;
}

.nav-pills .nav-link {
	font-family: var(--font-primary);
	font-weight: 600;
	font-size: 18px;
	line-height: 150%;
	letter-spacing: -0.18px;
	color: var(--dark);
	padding: 12px 20px;
	background: var(--white);
	border-radius: 80px;
	border: 2px solid #1B75BB;
	-webkit-border-radius: 80px;
	-moz-border-radius: 80px;
	-ms-border-radius: 80px;
	-o-border-radius: 80px;
}

.nav-pills .nav-link.active,
.nav-pills .show>.nav-link {
	color: var(--white);
	background: var(--primary);
	border: 2px solid var(--primary);
}

.tab-content .tab-content-wrapper .tab-img {
	width: 100%;
	max-width: 238px;
	/* height: 100%; */
	border-radius: 16px;
	overflow: hidden;
	-webkit-border-radius: 16px;
	-moz-border-radius: 16px;
	-ms-border-radius: 16px;
	-o-border-radius: 16px;
}

.tab-content .tab-content-wrapper .right-detail {
	width: 100%;
	max-width: 540px;
	height: 100%;
	gap: 42px;
}

.tab-content .tab-content-wrapper .disc {
	font-family: var(--font-primary);
	font-weight: 400;
	font-size: 18px;
	line-height: 150%;
	letter-spacing: -0.18px;
	text-align: justify;
	color: var(--secondary);
}

.tab-content .tab-content-wrapper .feature-list {
	list-style: none;
	padding: 0;
	margin: 0;
}

.tab-content .tab-content-wrapper .feature-list li {
	font-family: var(--font-primary);
	font-weight: 500;
	font-size: 18px;
	line-height: 150%;
	letter-spacing: -0.18px;
	text-align: justify;
	color: var(--dark);
}

.tab-content .tab-content-wrapper .tab-img * {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.who-we-are-link {
	margin-top: 75px;
	gap: 60px;
}

.who-we-are-link .call-icon {
	width: 59px;
	height: 59px;
	color: var(--white);
	background: var(--primary);
}

.who-we-are-link .call-us-link .content .title * {
	font-size: 22px;
	font-weight: 600;
	color: var(--primary);
	line-height: 170%;
	margin-bottom: 0;
}

/* ==================== [ Who-We-Are End ] ==================== */

/* ==================== [ Our Network Start ] ==================== */
.our-network {
	position: relative;
	overflow: hidden;
	min-height: 930px;
}

.our-network .video-bg {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: -1;
	background-color: red;
}

.our-network .video-bg .overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.30);
}

.our-network .video-bg::before {
	position: absolute;
	content: "";
	top: 0;
	left: 0;
	width: 100%;
	height: 64%;
	background: linear-gradient(0deg, rgba(0, 0, 0, 0) 0%, #000000 100%);
	z-index: 1;
}

.our-network .video-bg::after {
	position: absolute;
	content: "";
	bottom: 0;
	left: 0;
	width: 100%;
	height: 34%;
	background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, #000000 100%);
	z-index: 1;
}

.our-network .video-bg video {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: bottom;
}

.our-network .our-network-wrapper {
	display: flex;
	align-items: center;
	flex-direction: column;
	max-width: 800px;
	margin: 0 auto;
	z-index: 1;
	gap: 24px;
	text-align: center;
}

.our-network .our-network-wrapper .title * {
	margin-bottom: 0;
}

.our-network .country-group {
	list-style: none;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	flex-wrap: wrap;

}

.our-network .country-group li {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	color: var(--white);
	font-weight: 600;
	padding: 6px 12px;
	margin: 0;
	background-color: rgba(255, 255, 255, 0.15);
	border: 1px solid rgba(255, 255, 255, 0.20);
	border-radius: 50px;
	-webkit-border-radius: 50px;
	-moz-border-radius: 50px;
	-ms-border-radius: 50px;
	-o-border-radius: 50px;
	overflow: hidden;
	backdrop-filter: blur(12px);
	-webkit-backdrop-filter: blur(12px);
	font-size: 14px;
}

.our-network .flag {
	width: 20px;
	height: 20px;
	border-radius: 50%;
	overflow: hidden;
	display: inline-flex;
	align-items: center;
	justify-content: center;
}

.our-network .flag .fi {
	width: 20px;
	height: 20px;
	background-size: cover;
	background-position: center;
	flex-shrink: 0;
}

/* ==================== [ Our Network End ] ==================== */

/* ==================== [ Our Services Start ] ==================== */
.our-services .card-title * {
	margin-bottom: 0;
	font-family: var(--font-secondary);
	font-weight: 500;
	color: var(--dark);
}

.our-services .stack-card {
	padding: 20px;
	box-shadow: 0 3px 16px rgba(0, 0, 0, 0.05);
	border-radius: 16px;
	-webkit-border-radius: 16px;
	-moz-border-radius: 16px;
	-ms-border-radius: 16px;
	-o-border-radius: 16px;
	margin-bottom: 30px;
	border: 1px solid var(--border-20);
	position: sticky;
	top: 100px;
	background: var(--white);
}

.our-services .our-services-features ul {
	margin: 0;
	padding: 0;
	list-style: none;
	display: flex;
	flex-direction: column;
	gap: 6px;
}

.our-services .our-services-features ul li {
	position: relative;
	display: flex;
	align-items: center;
	gap: 8px;
}

.our-services .our-services-features ul li::before {
	position: relative;
	content: "";
	width: 20px;
	height: 20px;
	background-image: url('data:image/svg+xml,<svg width="20" height="20" viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg"> <g clip-path="url(%23clip0_333_315)"> <path d="M9.66825 11.4666L10.8449 12.6433L17.8995 5.58859L19.0781 6.76709L10.8449 15.0003L5.54159 9.69692L6.72009 8.51842L8.49075 10.2891L9.66825 11.4666ZM9.66967 9.11017L13.7968 4.98291L14.9721 6.15814L10.8449 10.2853L9.66967 9.11017ZM7.31407 13.8228L6.13655 15.0003L0.833252 9.69692L2.01176 8.51842L3.18928 9.696L3.18829 9.69692L7.31407 13.8228Z" fill="%234CAF50"/> </g> <defs> <clipPath id="clip0_333_315"> <rect width="20" height="20" fill="white"/> </clipPath> </defs> </svg> ');
	background-size: 20px;
	background-repeat: no-repeat;
	background-position: center;
}

.our-services .image {
	width: 100%;
	height: 100%;
}

.our-services .image img {
	width: 100%;
	height: 100%;
}

/* ==================== [ Our Services End ] ==================== */

/* ==================== [ Trusted Digital Partner Start ] ==================== */
.trusted-digital-partner {
	position: relative;
	padding: 150px 0;
}

.trusted-digital-partner .background-slider {
	position: absolute;
	content: "";
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: -1;
}

/* ==================== [ Trusted Digital Partner End ] ==================== */


/* ==================== [ Start-project Start ] ==================== */

.start-project-wrp {
	width: 100%;
	max-width: 1346px;
	padding: 50px;
	background: var(--primary);
	border-radius: 16px;
	background-image: url(../images/svgs/start-project-bg.svg);
	background-size: cover;
	background-repeat: no-repeat;
}

.start-project-wrp .section-heading * {
	color: var(--white);
	margin-bottom: 0px;
}

/* ==================== [ Start-project End ] ==================== */

/* ==================== Footer Start ==================== */

.footer .logo-image {
	padding: 0 50px;
	text-align: center;
	margin-bottom: -128px;
}

.footer .footer-container {
	position: relative;
	width: 100%;
	background-color: var(--white);
	/* overflow: hidden; */
}

.footer .footer-container::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 30px;
	filter: blur(30px);
	background: linear-gradient(90deg,
			#1B75BB,
			#2CA8C2,
			#2FAF9E,
			#4CAF50,
			#F4B400,
			#F97316,
			#EF4444,
			#7C3AED,
			#1B75BB);

	background-size: 300% 100%;
	animation: rgbLine 20s linear infinite;
	z-index: -1;
	opacity: 0.5;
}

@keyframes rgbLine {
	to {
		background-position: 300% 0;
	}
}

.footer .footer-container .footer-row {
	display: flex;
	align-items: stretch;
	position: relative;
}

.footer .footer-container .footer-row::before {
	position: absolute;
	content: "";
	bottom: 0;
	left: 0;
	width: 100%;
	height: 1px;
	background: url("../images/svgs/border-dash-mobile.svg");
	background-repeat: repeat-x;
	background-size: contain;
	background-position: center;
}

.footer .footer-container .footer-row:last-child {
	border-bottom: 1px dashed rgba(0, 0, 0, 0);
}

.footer .footer-container .footer-row .footer-column {
	display: flex;
	flex-grow: 1;
	width: 100%;
	padding: 40px 20px;
	position: relative;
}

.footer .footer-container .footer-row .footer-column a {
	display: inline-block;
	width: fit-content;
}

.footer .footer-container .footer-row:first-child .footer-column {
	text-align: center;
}

.footer .footer-container .footer-row .footer-column:first-child::before,
.footer .footer-container .footer-row .footer-column:nth-child(2)::before {
	/* border-right: 1px dashed rgba(0, 0, 0, 0.15); */
	position: absolute;
	content: "";
	top: 0;
	right: 0;
	width: 1px;
	height: 100%;
	background: url("../images/svgs/border-dash.svg");
	background-repeat: repeat-y;
	background-size: contain;
	background-position: center;
}

.footer .footer-container .footer-row .footer-column .data * {
	margin-bottom: 0;
	color: var(--black);
	font-size: var(--fs-16);
	font-style: normal;
	font-weight: 300;
	line-height: 16px;
}

.footer .footer-container .footer-row .footer-column .data a * {
	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;
}

.footer .footer-container .footer-row .footer-column .data a:hover * {
	color: var(--primary);
}

.footer .footer-container .footer-row .footer-column .data *:first-child {
	color: var(--secondary);
	margin-bottom: 6px;
}

.footer .footer-container .footer-row .footer-column .data *:last-child {
	text-decoration: none;
	color: var(--black);
	margin-bottom: 0px;
}

.footer .footer-container .footer-row .footer-column .data * a {
	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;
}

.footer .footer-container .footer-row .footer-column .data * a:hover {
	color: var(--primary);
}

.footer .footer-container .footer-row .footer-column .location.data *,
.footer .footer-container .footer-row .footer-column .email.data * {
	color: var(--dark);
}

.footer .footer-container .footer-row .footer-column .data strong {
	font-size: var(--fs-22);
	font-style: normal;
	font-weight: 700;
	line-height: 25px;
}

.footer .footer-container .footer-row .footer-column .data.page-link a {
	color: var(--primary);
	text-decoration: underline !important;
	text-underline-offset: 4px;
}

.footer .footer-container .footer-row .footer-column .heart {
	animation: pulse 1.2s infinite;
	-webkit-animation: pulse 1.2s infinite;
}

.footer .footer-container .footer-row .footer-column .dev-link {
	font-weight: 600;
}

@keyframes pulse {
	0% {
		transform: scale(1);
	}

	10% {
		transform: scale(1.2);
	}

	20% {
		transform: scale(1);
	}

	30% {
		transform: scale(1.2);
	}

	100% {
		transform: scale(1);
	}
}

/* ==================== Footer End ==================== */

/* ==================== Inner Banner Start ==================== */
.inner-banner .heading {
	max-width: 700px;
	margin-inline: auto;
}

/* ==================== Inner Banner End ==================== */

/* ==================== Form Wrapper Start ==================== */
.form-wrapper .left-heading {
	position: sticky;
	top: 110px;
}

.form-wrapper .left-heading .list-item {
	font-size: 18px;
	color: var(--dark);
	font-weight: 500;
}

.form-wrapper .left-heading .list-item a {
	text-decoration: none;
}

.form-wrapper .left-heading .icon {
	font-size: 20px;
	color: var(--primary);
}

.form-wrapper .left-heading .map {
	border: 1px solid var(--border);
	border-radius: 8px;
	overflow: hidden;
	-webkit-border-radius: 8px;
	-moz-border-radius: 8px;
	-ms-border-radius: 8px;
	-o-border-radius: 8px;
}

/* ==================== Form Wrapper End ==================== */

/* ==================== Contact Social Start ==================== */
.contact-social .disc {
	font-size: 16px;
}

.contact-social .social-link {
	color: var(--primary);
	font-size: 18px;
	font-weight: 500;
	text-underline-offset: 3px;
}

.contact-social .social-link:is(:hover, :focus-visible, :active, .active) {
	color: var(--dark);
}

/* ==================== Contact Social End ==================== */

/* @&@&@&@&@&@&@&@&@&@&@&@&@&@&@&@&@&@&@&@&@&@&@&@&@&@&@&@&@&@&@&@& */
/* @&@&@&@&@&@&@&@&@&@& Category Page @&@&@&@&@&@&@&@&@&@& */
/* @&@&@&@&@&@&@&@&@&@&@&@&@&@&@&@&@&@&@&@&@&@&@&@&@&@&@&@&@&@&@&@& */

/* ==================== Category Page Start ==================== */
.category-banner {
	position: relative;
	margin-top: 86px;
	padding: 120px 0;
}

.category-banner .category-image {
	position: absolute;
	content: "";
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: -1;
}

.category-banner .category-image .shadow {
	position: absolute;
	content: "";
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 1;
}

.category-banner .category-image {
	position: absolute;
	content: "";
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: -1;
}

.category-banner .category-image * {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
}

/* ==================== Category Page End ==================== */

/* ==================== Category Start ==================== */
.category-page {
	position: relative;
	border-bottom: 1px solid var(--border);
}

.category-page .category-layout {
	display: grid;
	grid-template-columns: 290px minmax(0, 1fr);
	align-items: start;
}

.category-page .filter-desktop-slot {
	min-width: 0;
}

.category-page .category-mobile-filter-bar {
	display: none;
}

.category-page .category-filter-offcanvas .offcanvas-body {
	padding: 0 24px 24px;
}

.category-page .filter-group {
	max-width: 290px;
	border-right: 1px solid var(--border);
	padding: 48px 24px 48px 0;
	height: 100%;
}

.category-page .filter-accordion .accordion-item {
	background: var(--transparent) !important;
	padding-bottom: 10px;
	margin-bottom: 10px;
}

.category-page .filter-accordion .accordion-button {
	line-height: normal;
	padding: 14px 0;
	background: var(--transparent) !important;
	font-size: 18px;
	font-weight: 500 !important;
	color: var(--primary);
	font-family: var(--font-secondary);
}

.category-page .filter-accordion .accordion-body {
	max-height: 260px;
	overflow-y: auto;
	overflow-x: hidden;
	padding-right: 10px !important;
}

.category-page .filter-accordion .form-check {
	padding-left: 0;
	align-items: flex-start;
}

.category-page .filter-accordion .form-check .form-check-input {
	float: unset;
	margin: 0;
	margin-top: 4px;
	border: 1px solid var(--border);
}

.category-page .filter-accordion .form-check .form-check-label {
	font-style: normal;
	font-weight: 500 !important;
	font-size: 14px;
	line-height: 150%;
	letter-spacing: -0.14px;
	color: var(--dark);
	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;
}

.category-page .filter-accordion .form-check:has(.form-check-input:checked) .form-check-label {
	font-style: normal;
	font-weight: 700 !important;
	font-size: 14px;
	line-height: 150%;
	letter-spacing: -0.14px;
	color: var(--primary);
}

.category-page .filter-accordion .form-check:has(.form-check-input[type="radio"]) {
	align-items: stretch;
}

.category-page .filter-accordion .form-check .form-check-input[type="radio"] {
	appearance: none;
	width: 5px;
	height: auto;
	border-radius: 10px;
	border: 0;
	margin-top: 0 !important;
	background: var(--transparent);
}

.category-page .filter-accordion .form-check .form-check-input[type="radio"]:checked {
	background: var(--primary);
}

.category-page .filter-accordion .form-check:has(.form-check-input[type="radio"]) .form-check-label {
	padding: 0 10px 0 0;
	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;
}

.category-page .filter-accordion .form-check:has(.form-check-input[type="radio"]:checked) .form-check-label {
	padding: 0 0px 0 10px;
}

.category-page .filter-accordion .select2-container {
	font-size: 14px;
}

.category-page .filter-accordion .filter-select-field .form-label {
	font-size: 13px;
	font-weight: 600;
	color: var(--dark);
}

.category-page .filter-accordion .select2-container--default .select2-selection--single {
	min-height: 42px;
	padding: 8px 36px 8px 12px;
}

.category-page .filter-accordion .select2-container--default .select2-selection--single .select2-selection__rendered {
	line-height: 24px;
	color: var(--dark);
}

.category-page .filter-accordion .select2-container--default .select2-selection--single .select2-selection__placeholder {
	color: var(--secondary);
}

.category-page .filter-accordion .select2-container--default .select2-selection--single .select2-selection__clear {
	margin-right: 4px;
}

.category-page .price-range-values {
	display: flex;
	align-items: center;
	gap: 8px;
	width: 100%;
	font-size: 14px;
	font-weight: 600;
	font-variant-numeric: tabular-nums;
	color: var(--primary);
}

.category-page .price-range-values #minPriceValue,
.category-page .price-range-values #maxPriceValue {
	flex: 1 1 0;
	min-width: 0;
}

.category-page .price-range-values #minPriceValue {
	text-align: left;
}

.category-page .price-range-values #maxPriceValue {
	text-align: right;
}

.category-page .price-range-values .price-separator {
	flex: 0 0 auto;
	font-size: 12px;
	font-weight: 500;
	color: var(--secondary);
}

.category-page .price-range-slider {
	position: relative;
	height: 20px;
}

.category-page .price-range-slider::before,
.category-page .price-range-progress {
	content: "";
	position: absolute;
	top: 50%;
	height: 4px;
	border-radius: 10px;
	transform: translateY(-50%);
}

.category-page .price-range-slider::before {
	left: 0;
	right: 0;
	background: var(--border);
}

.category-page .price-range-progress {
	left: 10%;
	right: 25%;
	background: var(--primary);
}

.category-page .price-range-input {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 20px;
	margin: 0;
	appearance: none;
	-webkit-appearance: none;
	background: transparent;
	pointer-events: none;
}

.category-page .price-range-input::-webkit-slider-thumb {
	width: 18px;
	height: 18px;
	border: 3px solid var(--white);
	border-radius: 50%;
	background: var(--primary);
	box-shadow: 0 0 0 1px var(--primary);
	-webkit-appearance: none;
	appearance: none;
	cursor: pointer;
	pointer-events: auto;
}

.category-page .price-range-input::-moz-range-thumb {
	width: 12px;
	height: 12px;
	border: 3px solid var(--white);
	border-radius: 50%;
	background: var(--primary);
	box-shadow: 0 0 0 1px var(--primary);
	cursor: pointer;
	pointer-events: auto;
}

.category-page .price-range-input:focus-visible::-webkit-slider-thumb {
	box-shadow: 0 0 0 1px var(--primary), 0 0 0 4px var(--border-primary-15);
}

.category-page .price-range-input:focus-visible::-moz-range-thumb {
	box-shadow: 0 0 0 1px var(--primary), 0 0 0 4px var(--border-primary-15);
}

.category-page .filter-accordion .boolean-filter .form-switch {
	display: flex;
	align-items: center;
	justify-content: flex-start;
	gap: 12px;
	padding-left: 0;
}

.category-page .filter-accordion .boolean-filter .form-switch .form-check-input {
	order: 1;
	flex: 0 0 auto;
	width: 42px;
	height: 22px;
	margin: 0;
	background-position: left center;
	cursor: pointer;
}

.category-page .filter-accordion .boolean-filter .form-switch .form-check-input:checked {
	border-color: var(--primary);
	background-color: var(--primary);
	background-position: right center;
}

.category-page .filter-accordion .boolean-filter .form-switch .form-check-label {
	order: 2;
	flex: 1 1 auto;
	cursor: pointer;
}

.category-page .color-filter-options {
	display: flex;
	flex-direction: column;
	align-items: stretch;
	gap: 12px;
}

.category-page .color-filter-option {
	display: flex;
	align-items: center;
	gap: 12px;
	width: 100%;
	font-size: 14px;
	font-weight: 500;
	line-height: 150%;
	color: var(--dark);
	cursor: pointer;
	transition: color 0.2s ease;
}

.category-page .color-filter-swatch {
	position: relative;
	display: block;
	flex: 0 0 30px;
	width: 30px;
	height: 30px;
	border: 3px solid var(--white);
	border-radius: 50%;
	box-shadow: 0 0 0 1px var(--border);
	cursor: pointer;
	transition: box-shadow 0.2s ease;
}

.category-page .color-filter-options .btn-check:focus-visible+.color-filter-option .color-filter-swatch,
.category-page .color-filter-options .btn-check:checked+.color-filter-option .color-filter-swatch {
	box-shadow: 0 0 0 2px var(--white), 0 0 0 3px var(--primary);
}

.category-page .color-filter-options .btn-check:checked+.color-filter-option {
	font-weight: 700;
	color: var(--primary);
}

.category-page .color-filter-swatch .ri-check-line {
	position: absolute;
	inset: 0;
	display: none;
	place-items: center;
	font-size: 16px;
	font-weight: 700;
	line-height: 1;
	color: var(--white);
}

.category-page .color-filter-options .btn-check:checked+.color-filter-option .color-filter-swatch .ri-check-line {
	display: grid;
}

.category-page .color-filter-swatch.color-black {
	background: #20242a;
}

.category-page .color-filter-swatch.color-blue {
	background: #1b75bb;
}

.category-page .color-filter-swatch.color-red {
	background: #dc3545;
}

.category-page .color-filter-swatch.color-green {
	background: #198754;
}

.category-page .color-filter-swatch.color-orange {
	background: #f28c28;
}

.category-page .color-filter-swatch.color-gray {
	background: #6c757d;
}

.category-page .color-filter-swatch.color-purple {
	background: #7b2cbf;
}

.category-page .color-filter-swatch.color-yellow {
	background: #f4c430;
}

.category-page .color-filter-swatch.color-brown {
	background: #8b5e3c;
}

.category-page .color-filter-swatch.color-white {
	background: #ffffff;
}

.category-page .color-filter-swatch.color-white .ri-check-line,
.category-page .color-filter-swatch.color-yellow .ri-check-line {
	color: var(--dark);
}

.category-page .category-products {
	min-width: 0;
	padding: 48px 0 48px 36px;
}

.category-page .category-products-description {
	max-width: 1220px;
}

.category-page .category-products-description p {
	margin-bottom: 0;
	overflow: hidden;
	font-size: 16px;
	line-height: 1.65;
	color: var(--secondary);
	transition: max-height 0.4s ease;
}

.category-page .category-products-description p.is-clamped {
	display: -webkit-box;
	overflow: hidden;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 3;
}

.category-page .category-read-more {
	display: none;
	align-items: center;
	gap: 6px;
	margin-top: 14px;
	padding: 0 0 2px;
	border: 0;
	background: var(--transparent);
	font-size: 16px;
	font-weight: 500;
	line-height: 1.4;
	color: var(--primary);
}

.category-page .category-read-more.is-visible {
	display: inline-flex;
}

.category-page .category-read-more i {
	font-size: 20px;
	line-height: 1;
	transition: transform 0.25s ease;
}

.category-page .category-read-more .read-less-text {
	display: none;
}

.category-page .category-read-more[aria-expanded="true"] .read-more-text {
	display: none;
}

.category-page .category-read-more[aria-expanded="true"] .read-less-text {
	display: inline;
}

.category-page .category-read-more[aria-expanded="true"] i {
	transform: rotate(180deg);
}

.category-page .category-product-list {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 16px;
}

.category-page .category-product-item {
	position: relative;
	isolation: isolate;
	min-width: 0;
	border-radius: 16px;
}

.category-page .category-product-item::before {
	position: absolute;
	content: "";
	inset: 6px;
	z-index: -1;
	border-radius: 16px;
	background-image: conic-gradient(from var(--angle), #1B75BB, #2CA8C2, #2FAF9E, #4CAF50, #F4B400, #F97316, #EF4444, #7C3AED, #1B75BB);
	filter: blur(22px);
	-webkit-filter: blur(22px);
	opacity: 0;
	pointer-events: none;
	animation: 4.5s spin linear infinite;
	-webkit-animation: 4.5s spin linear infinite;
	transition: opacity 0.3s ease;
}

.category-page .category-product-item:hover::before {
	opacity: 0.6;
}

.category-page .category-compare {
	position: absolute;
	top: 12px;
	left: 12px;
	z-index: 3;
	display: inline-flex;
	align-items: center;
	gap: 7px;
	min-height: 32px;
	margin: 0;
	padding: 5px 10px;
	border: 1px solid var(--border-primary-25);
	border-radius: 8px;
	background: rgba(255, 255, 255, 0.96);
	box-shadow: 0 4px 12px rgba(0, 82, 136, 0.10);
	backdrop-filter: blur(6px);
	-webkit-backdrop-filter: blur(6px);
	font-size: 12px;
	font-weight: 600;
	line-height: 1;
	color: var(--dark);
	cursor: pointer;
	opacity: 0;
	visibility: hidden;
	transform: translateY(-6px);
	transition: opacity 0.25s ease, visibility 0.25s ease, transform 0.25s ease,
		border-color 0.25s ease, background-color 0.25s ease, color 0.25s ease;
}

.category-page .category-compare .form-check-input {
	flex: 0 0 auto;
	width: 16px;
	height: 16px;
	margin: 0;
	border: 1px solid var(--primary);
	border-radius: 4px;
	box-shadow: none;
	cursor: pointer;
}

.category-page .category-compare .form-check-input:checked {
	border-color: var(--primary);
	background-color: var(--primary);
}

.category-page .category-compare:has(.form-check-input:checked) {
	border-color: var(--primary);
	background: var(--border-primary-08);
	color: var(--primary);
}

.category-page .category-product-item:hover .category-compare,
.category-page .category-product-item:focus-within .category-compare,
.category-page .category-product-item:has(.category-compare .form-check-input:checked) .category-compare {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}

.category-page .category-product-card {
	position: relative;
	z-index: 1;
	display: flex;
	flex-direction: column;
	height: 100%;
	min-width: 0;
	padding: 20px;
	border: 1px solid var(--border-primary-45);
	border-radius: 16px;
	background: var(--white);
	color: inherit;
	text-decoration: none;
	box-shadow: 0 4px 14px rgba(0, 82, 136, 0);
	overflow: hidden;
	transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.category-page .category-product-card:hover,
.category-page .category-product-card:focus-visible {
	border-color: var(--border-primary-45);
	box-shadow: 0 14px 32px rgba(0, 82, 136, 0.1);
}

.category-page .category-product-image {
	display: flex;
	align-items: center;
	justify-content: center;
	height: 220px;
	margin-bottom: 16px;
}

.category-page .category-product-image img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: contain;
}

.category-page .category-product-card-body {
	display: flex;
	flex: 1 1 auto;
	flex-direction: column;
}

.category-page .category-product-card p {
	display: -webkit-box;
	overflow: hidden;
	font-size: 13px;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 3;
}

.category-page .category-product-cta {
	display: inline-flex;
	align-items: center;
	align-self: flex-start;
	gap: 4px;
	margin-top: auto;
	padding-bottom: 2px;
	font-weight: 500;
	color: var(--primary);
}

.category-page .category-product-cta i {
	font-size: 22px;
	line-height: 1;
	transition: transform 0.2s ease;
}

.category-page .category-product-card:hover .category-product-cta i,
.category-page .category-product-card:focus-visible .category-product-cta i {
	transform: translateX(3px);
}

@media (prefers-reduced-motion: reduce) {
	.category-page .category-products-description p {
		transition: none;
	}

	.category-page .category-product-item::before {
		animation: none;
		-webkit-animation: none;
	}

	.category-page .category-compare {
		transition: none;
	}
}

@media (hover: none) {
	.category-page .category-compare {
		opacity: 1;
		visibility: visible;
		transform: none;
	}
}

/* ==================== Category End ==================== */
