:root {
	/* ! Color init */
	--primary-bgColor: #f2f2f2;
	--primary-white: #ffffff;
	--primary-darkColor: #10141c;
	--light-txtColor: rgba(16, 20, 28, 0.3);
	--btnColor: #15ab99;
	--blueColor: #00a5db;
	--darkBlueColor: #163e6a;
	--darkBlueColor-v1: #0d3158;
	--yellowColor: #ffc409;

	/* ! font init */
	--primary-font: "Inter Tight", sans-serif;
	--font-16: 1.6rem;
	--font-18: 1.8rem;
	--font-20: 2rem;
	--font-24: 2.4rem;
	--font-30: 3rem;
	--font-40: 4rem;
	--font-50: 5rem;
	--font-55: 5.5rem;
	--font-65: 6.5rem;
	--font-85: 8.5rem;

	--transition-03: all 0.3s ease-in-out;
}

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

/* Works on Firefox */
* {
	scrollbar-width: thin;
	scrollbar-color: red;
}

/* Works on Chrome, Edge, and Safari */
*::-webkit-scrollbar {
	width: 8px;
	padding: 10px;
}

*::-webkit-scrollbar-track {
	background: red;
}

*::-webkit-scrollbar-thumb {
	background-color: #000;
}

::-moz-selection {
	color: #fff;
	background: #000;
	text-shadow: none;
}

::selection {
	color: #fff;
	background: #000;
	text-shadow: none;
}

html {
	font-size: 62.5%;
	line-height: 1.15;
	-webkit-text-size-adjust: 100%;
	scroll-behavior: smooth;
}

body {
	line-height: 1;
	font-family: var(--primary-font);
	background: var(--primary-white);
	font-weight: 400;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	font-weight: inherit;
	font-size: inherit;
	margin: 0;
}

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

a {
	outline: none;
	color: inherit;
	background-color: transparent;
	text-decoration: none;
	transition: var(--transition-03);
	-webkit-transition: var(--transition-03);
	-moz-transition: var(--transition-03);
	-ms-transition: var(--transition-03);
	-o-transition: var(--transition-03);
}

sub,
sup {
	font-size: 75%;
	line-height: 0;
	position: relative;
	vertical-align: baseline;
}

sub {
	bottom: -0.25em;
}

sup {
	top: -0.5em;
}

button,
input,
optgroup,
select,
textarea {
	font-family: inherit; /* 1 */
	font-size: 100%; /* 1 */
	line-height: 1.15; /* 1 */
	margin: 0; /* 2 */
}

main {
	display: block;
}

section {
	display: flex;
	flex-direction: column;
	width: 100%;
}

img {
	border-style: none;
}

.img-res {
	width: 100%;
	max-width: 100%;
	height: auto;
	border: 0;
	-ms-interpolation-mode: bicubic;
	vertical-align: bottom;
}

/* ! Global css */
.core {
	margin-top: 10.5rem;
}
.cnt {
	width: 100%;
	margin: 0 auto;
}

.swiper {
	width: 100%;
	height: 100%;
}

/* ! Header */
.header {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 10.5rem;
	border-bottom: 1px solid rgba(0, 0, 0, 0.2);
	display: flex;
	align-items: center;
	padding: 0 6%;
	z-index: 999;
	background: var(--primary-white);
}

.header_logo {
	width: 14rem;
}

.header_mainNav-listing {
	margin-left: 14rem;
	padding-left: 10rem;
	display: flex;
	height: 100%;
	align-items: center;
	position: relative;
}

.header_mainNav-listing::after {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 1px;
	height: 100%;
	border-left: 1px solid rgba(0, 0, 0, 0.2);
}

.header_mainNav-listing > ul {
	display: flex;
	gap: 5rem;
}

.header_mainNav-name {
	display: flex;
	gap: 0.8rem;
	align-items: center;
	color: var(--primary-darkColor);
	font-size: var(--font-16);
	font-weight: 500;
	line-height: normal;
}

.header_mainNav-name-arrow {
	width: 1rem;
}

.header_mainNav-name-arrow svg {
	width: 100%;
	height: 100%;
	display: block;
}

.menuArrow {
	fill: #8e9090;
	transition: var(--transition-03);
}

.header_mainNav-name:hover .menuArrow {
	fill: var(--primary-darkColor);
}

.header_mainNav-name-txt {
	display: inline-block;
	height: 24px;
	line-height: 24px;
	overflow: hidden;
	position: relative;
	text-align: center;
}

.label-up {
	display: block;
	height: 100%;
	position: relative;
	top: 0%;
	transition: all 0.5s ease-in-out;
}

.nBtn:hover .label-up {
	top: -100%;
}

/* First (default) label */
.label-up:not(.hover) {
	transform: translateY(0%);
	opacity: 1;
	filter: blur(0px);
}

/* Second (hidden by default) */
.label-up.hover {
	transform: translateY(100%);
	opacity: 0;
	filter: blur(8px);
}

/* On hover: slide up and blur the default one */
.nBtn:hover .label-up:not(.hover) {
	transform: translateY(-100%);
	opacity: 0;
	filter: blur(8px);
}

.nBtn:hover .label-up.hover {
	transform: translateY(0%);
	opacity: 1;
	filter: blur(0);
}

.header_mainBtn {
	margin-left: auto;
}

.header_mainBtn a {
	background: var(--primary-darkColor);
	border-radius: 8px;
	padding: 0 3rem;
	display: flex;
	overflow: hidden;
	position: relative;
	color: var(--primary-white);
	font-size: var(--font-16);
	font-weight: 500;
	height: 5rem;
	line-height: 5rem;
	gap: 2rem;
}

.btn-label-up {
	display: block;
	height: 100%;
	position: relative;
	top: 0%;
	transition: all 0.5s ease-in-out;
}

.btnStyle:hover .btn-label-up {
	top: -100%;
}

/* First (default) label */
.btn-label-up:not(.hover) {
	transform: translateY(0%);
	opacity: 1;
	filter: blur(0px);
}

/* Second (hidden by default) */
.btn-label-up.hover {
	transform: translateY(100%);
	opacity: 0;
	filter: blur(10px);
}

/* On hover: slide up and blur the default one */
.btnStyle:hover .btn-label-up:not(.hover) {
	transform: translateY(-100%);
	opacity: 0;
	filter: blur(10px);
}

.btnStyle:hover .btn-label-up.hover {
	transform: translateY(0%);
	opacity: 1;
	filter: blur(0);
}

.btn-label-up-arrow {
	transition: var(--transition-03);
}

.btnStyle:hover .btn-label-up-arrow {
	transform: rotate(45deg);
}

/* ! burger menu */
.header_burger {
	display: flex;
	color: var(--primary-darkColor);
	font-size: 1.6rem;
	font-style: normal;
	font-weight: 500;
	margin-left: 6rem;
	cursor: pointer;
	align-items: center;
	gap: 2rem;
	transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
	z-index: 1;
}

.header_dots {
	width: 3rem;
	height: 3rem;
	position: relative;
	-webkit-transform: rotate(0deg);
	-moz-transform: rotate(0deg);
	-o-transform: rotate(0deg);
	transform: rotate(0deg);
	transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.header_dots span {
	display: block;
	position: absolute;
	height: 0.4rem;
	width: 0.4rem;
	background: #000;
	opacity: 1;
	-webkit-transform: rotate(0deg);
	-moz-transform: rotate(0deg);
	-o-transform: rotate(0deg);
	transform: rotate(0deg);
	transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
	border-radius: 100%;
}

.header_dots span:nth-child(1),
.header_dots span:nth-child(2),
.header_dots span:nth-child(3) {
	top: 0px;
}

.header_dots span:nth-child(4),
.header_dots span:nth-child(6) {
	top: 50%;
	transform: translateY(-50%);
}

.header_dots span:nth-child(3),
.header_dots span:nth-child(6),
.header_dots span:nth-child(9) {
	left: auto;
	right: 0;
}

.header_dots span:nth-child(2),
.header_dots span:nth-child(8) {
	left: 50%;
	transform: translateX(-50%);
}

.header_dots span:nth-child(5) {
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}

.header_dots span:nth-child(7),
.header_dots span:nth-child(8),
.header_dots span:nth-child(9) {
	top: auto;
	bottom: 0;
}

.header_dots.open span:nth-child(1),
.header_dots.open span:nth-child(2),
.header_dots.open span:nth-child(3) {
	top: 20px;
}

.header_dots.open span:nth-child(7),
.header_dots.open span:nth-child(8),
.header_dots.open span:nth-child(9) {
	top: 20px;
}

/* hover to close */
.header_burger.active .header_dots span:nth-child(2) {
	left: 72%;
	top: 7px;
}

.header_burger.active .header_dots span:nth-child(6) {
	right: 7px;
	top: 71%;
}

.header_burger.active .header_dots span:nth-child(8) {
	bottom: 7px;
	left: 31%;
}

.header_burger.active .header_dots span:nth-child(4) {
	top: 31%;
	left: 7px;
}

.header_burger.active .header_dots {
	transform: rotate(180deg);
}

.header_burger:hover .header_dots span {
	background: var(--btnColor);
}

.header_burger:hover {
	color: var(--btnColor);
}

.header_burger.active .header_dots span {
	background: var(--primary-white);
}

.header_burger.active {
	color: var(--primary-white);
}

.has-sub-menu.nav_mob {
  display: none;   
}

/* ! menu dropdown */
.submenu {
	width: 100%;
	/*min-height: 45rem;*/
	height: auto;
	position: fixed;
	top: 10.5rem;
	left: 0;
	display: flex;
	justify-content: center;
	padding: 1rem 0;
	opacity: 0;
	visibility: hidden;
	transform: translateY(20px);
	pointer-events: none;
	transition: var(--transition-03);
}

.submenu_inner {
	background: var(--primary-darkColor);
	width: 95%;
	height: 100%;
	border-radius: 8px;
	color: #fff;
	filter: blur(10px);
	transition: filter 0.5s ease;
	padding: 2rem;
	display: flex;
}

.has-submenu.active .submenu {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
	pointer-events: auto;
}

.has-submenu.active .submenu_inner {
	filter: blur(0);
}

.has-submenu:nth-child(2) .submenu_info-list .submenu_info-listBox:last-child {
    margin-left: 10rem;
}

.has-submenu:nth-child(2) .submenu_info-list .submenu_info-listBox:nth-child(2) {
    padding-top: 4rem;
}

.submenu_img {
	width: 45%;
	border-radius: 8px;
	overflow: hidden;
}

.submenu_info {
	padding-top: 7rem;
	width: 50%;
	display: flex;
	flex-direction: column;
	margin-left: auto;
}

.submenu_info-title {
	color: var(--primary-white);
	font-size: var(--font-65);
	font-weight: 500;
}

.submenu_info-title span {
	font-size: var(--font-20);
}

.submenu_info-list {
	display: flex;
	width: 100%;
	margin-top: 5rem;
}

.submenu_info-listBox {
	width: 30%;
	display: flex;
	flex-direction: column;
	gap: 2rem;
}

.submenu_info-listBox-title {
	color: #fff;
	font-size: var(--font-20);
	font-style: normal;
	font-weight: 500;
}

.submenu_info-listBox-title:hover {
	color: var(--yellowColor);
}

.submenu_info-listBox ul {
	display: flex;
	flex-direction: column;
	gap: 2rem;
}

.submenu_info-listBox ul li a {
	color: #808080;
	font-size: var(--font-16);
	font-style: normal;
}

.submenu_info-listBox ul li a:hover {
	color: var(--blueColor);
}

/* ? burger menu listing */
.header_burger_menu {
	position: fixed;
	width: 45rem;
	height: 50rem;
	top: 1rem;
	right: 5%;
	display: flex;
	flex-direction: column;
	opacity: 0;
	visibility: hidden;
	transform: translateX(20px);
	pointer-events: none;
	transition: var(--transition-03);
}

.header_burger_menu.active {
	opacity: 1;
	visibility: visible;
	transform: translateX(0);
	pointer-events: auto;
}

.header_burger_menu-inner {
	width: 100%;
	height: 100%;
	display: flex;
	background: var(--primary-darkColor);
	border-radius: 8px;
	filter: blur(8px);
	padding: 3rem;
	transition: filter 0.5s ease;
	flex-direction: column;
}

.header_burger_menu.active .header_burger_menu-inner {
	filter: blur(0);
}

.header_burger_menu-top {
	display: flex;
	flex-direction: column;
	width: 100%;

	gap: 3rem;
}

.has-sub-menu {
	display: flex;
	flex-direction: column;
	gap: 1rem;
	cursor: pointer;
}

.has-sub-menu > a {
	color: var(--primary-white);
	font-size: var(--font-24);
	font-weight: 500;
	line-height: 3rem;
}

.has-sub-menu > a:hover {
	color: var(--yellowColor);
}

.has-dropdown {
	display: flex;
	flex-direction: column;
	gap: 1rem;
	overflow: hidden;
	max-height: 0;
	opacity: 0;
	visibility: hidden;
	transition: max-height 0.4s ease, opacity 0.3s ease;
}

.has-sub-menu.active .has-dropdown {
	max-height: 500px; /* Large enough for your content */
	opacity: 1;
	visibility: visible;
}

.has-dropdown a {
	color: var(--primary-white);
	font-size: 1.8rem;
	font-weight: 300;
	line-height: 2rem;
}

.has-dropdown a:hover {
	color: var(--blueColor);
}

.header_burger_menu-bot {
	display: flex;
	flex-direction: column;
	margin-top: auto;
}

.header_burger_menu-social {
	display: flex;
	gap: 2rem;
	width: 100%;
	align-items: flex-end;
	margin-bottom: 2rem;
	justify-content: flex-end;
}

.fillwhitetoyellow {
	fill: var(--primary-white);
	transition: var(--transition-03);
}

a:hover .fillwhitetoyellow {
	fill: var(--yellowColor);
}

.burger_contact {
	display: flex;
	width: 100%;
}

.burger_contact a {
	display: flex;
	overflow: hidden;
	border-radius: 8px;
	position: relative;
}

.burger_contact-txt {
	color: var(--primary-white);
	font-size: var(--font-20);
	font-style: normal;
	font-weight: 500;
	position: absolute;
	left: 5%;
	top: 5%;
}

.burger_arrow {
	position: absolute;
	right: 5%;
	bottom: 5%;
	width: 3.5rem;
	height: 3.5rem;
}

.burger_arrow svg {
	width: 100%;
	height: 100%;
	display: block;
}

.fillBlueToyellow {
	fill: #15ab99;
	transition: var(--transition-03);
}

a:hover .fillBlueToyellow {
	fill: var(--yellowColor);
}

/* ! Footer */
.Sticky__footer {
	min-height: calc(100vh - 65rem);
}

.footer {
	width: 100%;
	height: 65rem;
	display: flex;
	flex-direction: column;
	padding: 0 0.5%;
	position: relative;
	overflow: hidden;
}

.footer_shape1 {
	position: absolute;
	left: 0;
	z-index: 1;
}

.animate svg {
	width: 100%;
	height: 100%;
	display: block;
}

.footer_shape2 {
	position: absolute;
	right: 0;
	z-index: 1;
}
.footer_shape3 {
	position: absolute;
	right: 0;
	z-index: 1;
}

.footer_bot {
	width: 100%;
	height: 5rem;
	display: flex;
	padding: 0 6%;
	align-items: center;
}

.footer_copyright {
	color: var(--primary-darkColor);
	font-size: var(--font-16);
	font-weight: 500;
}

.footer_copyright strong {
	font-weight: 700;
}

.footer_bot-links {
	display: flex;
	margin-left: auto;
	gap: 0.3rem;
	z-index: 3;
}

.footer_bot-links li {
	color: var(--primary-darkColor);
	font-size: var(--font-16);
	font-weight: 500;
}

.footer_bot-links li a:hover {
	color: var(--blueColor);
}

.footer_top {
	width: 100%;
	height: 60rem;
	background: var(--primary-darkColor);
	border-radius: 8px;
	display: flex;
	flex-direction: column;
	position: relative;
	padding: 5rem 6%;
	align-items: center;
	justify-content: center;
}

.footer_newsletter {
	display: flex;
	flex-direction: column;
	max-width: 70rem;
}

.footer_newsletter-title {
	color: var(--primary-white);
	text-align: center;
	font-size: var(--font-40);
	line-height: 5rem;
}

.footer_newsletter-form {
	width: 100%;
	display: flex;
	flex-direction: column;
	margin-top: 4.5rem;
}

.footer_newsletter-form form {
	display: flex;
	flex-direction: column;
	width: 100%;
	position: relative;
}

.footer_newsletter-input {
	width: 100%;
	display: flex;
}

.footer_newsletter-input input {
	width: 100%;
	height: 6.6rem;
	border-radius: 8px;
	padding: 0 4rem;
	font-size: var(--font-16);
	color: var(--primary-darkColor);
	background: var(--primary-white);
	border: none;
	outline: none;
}

.footer_newsletter-input ::-webkit-input-placeholder {
	color: #163c45;
	font-size: var(--font-16);
	font-weight: 500;
	opacity: 0.3;
}
.footer_newsletter-input ::-moz-placeholder {
	color: #163c45;
	font-size: var(--font-16);
	font-weight: 500;
	opacity: 0.3;
}
.footer_newsletter-input :-ms-input-placeholder {
	color: #163c45;
	font-size: var(--font-16);
	font-weight: 500;
	opacity: 0.3;
}
.footer_newsletter-input :-moz-placeholder {
	color: #163c45;
	font-size: var(--font-16);
	font-weight: 500;
	opacity: 0.3;
}

.footer_newsletter-input input:focus {
	outline: 2px solid var(--btnColor); /* or use a color like #163c45 */
	outline-offset: 1px;
	box-shadow: 0 0 0 3px rgba(22, 60, 69, 0.2); /* optional glow effect */
}

.footer_newsletter-submit {
	width: 15.3rem;
	height: 5.1rem;
	display: flex;
	position: absolute;
	top: 50%;
	right: 1rem;
	transform: translateY(-50%);
	margin: 0;
}

.footer_newsletter-submit button {
	background: var(--btnColor);
	border-radius: 8px;
	padding: 0 3rem;
	display: flex;
	overflow: hidden;
	position: relative;
	color: var(--primary-white);
	font-size: var(--font-16);
	font-weight: 500;
	height: 100%;
	line-height: 5rem;
	gap: 2rem;
	border: none;
	cursor: pointer;
}

.btn-label-up {
	display: block;
	height: 100%;
	position: relative;
	top: 0%;
	transition: all 0.5s ease-in-out;
}

.footer_newsletter-submit button:hover .btn-label-up {
	top: -100%;
}

/* First (default) label */
.btn-label-up:not(.hover) {
	transform: translateY(0%);
	opacity: 1;
	filter: blur(0px);
}

/* Second (hidden by default) */
.btn-label-up.hover {
	transform: translateY(100%);
	opacity: 0;
	filter: blur(10px);
}

/* On hover: slide up and blur the default one */
.footer_newsletter-submit button:hover .btn-label-up:not(.hover) {
	transform: translateY(-100%);
	opacity: 0;
	filter: blur(10px);
}

.footer_newsletter-submit button:hover .btn-label-up.hover {
	transform: translateY(0%);
	opacity: 1;
	filter: blur(0);
}

.footer_newsletter-submit button:hover .btn-label-up-arrow {
	transform: rotate(45deg);
}

.footer_menu {
	display: flex;
	gap: 8rem;
	margin-top: 6rem;
}

.footer_menu li {
	padding-right: 8rem;
	position: relative;
}

.footer_menu li::after {
	content: "";
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	right: 0;
	width: 1px;
	height: 2rem;
	background: var(--primary-white);
}

.footer_menu li:last-child {
	padding-right: 0;
}

.footer_menu li:last-child:after {
	display: none;
}

.footer_menu li a {
	color: var(--primary-white);
	font-size: var(--font-18);
	font-style: normal;
	font-weight: 500;
	line-height: 2rem;
}

.footer_menu li a:hover {
	color: var(--yellowColor);
}

.footer_info {
	width: 100%;
	display: flex;
	margin-top: 5rem;
	border-top: 1px solid rgba(255, 255, 255, 0.2);
	justify-content: space-between;
	padding-top: 5rem;
	z-index: 3;
}

.footer_box {
	display: flex;
	flex-direction: column;
	gap: 1.5rem;
}

.footer_box-title {
	color: rgba(255, 255, 255, 0.6);
	font-size: 1.8rem;
	font-style: normal;
	line-height: 2rem;
}

.footer_box-links {
	display: flex;
	justify-content: center; 
	gap: 2rem;
}

.footer_box-links li a {
	color: var(--primary-white);
	font-size: 2.4rem;
	font-style: normal;
	font-weight: 500;
	line-height: 2.4rem;
}

.footer_box-links li a:hover {
	color: var(--btnColor);
}

.fillwhitetoblue {
	fill: var(--primary-white);
	transition: var(--transition-03);
}

a:hover .fillwhitetoblue {
	fill: var(--blueColor);
}

/* ! Homepage */
.banner {
	display: flex;
	flex-direction: column;
	padding: 0.5% 0.5%;
	/*height: calc(100vh - 12rem);*/
}

.banner.bannerHalf {
	height: calc(75vh - 12rem);
}

.banner_img {
	height: 100%;
	width: 100%;
	display: flex;
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	border-radius: 8px;
	position: relative;
	overflow: hidden;
}

.banner_img picture {
    width: 100%;
}

.banner_img::after {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(
		180deg,
		rgba(0, 0, 0, 0) -14.04%,
		rgba(0, 0, 0, 0.5) 110.66%
	);
	border-radius: 8px;
	z-index: 1;
}

.banner_content {
	position: absolute;
	width: 100%;
	height: 100%;
	padding: 0 6% 12rem 6%;
	left: 0;
	top: 0;
	display: flex;
	flex-direction: column;
	z-index: 2;
	justify-content: flex-end;
}

.banner.bannerHalf .banner_content {
	padding: 0 6% 6rem 6%;
	flex-direction: row;
	justify-content: flex-start;
	align-items: flex-end;
}

.banner.bannerHalf .banner_content-bot {
	width: 30%;
}

.banner_content-title {
	color: var(--primary-white);
	font-size: var(--font-85);
	font-style: normal;
	font-weight: 500;
	line-height: 9rem;
	letter-spacing: -0.85px;
	width: 70%;
}

.banner_content-bot {
	width: 100%;
	display: flex;
	margin-top: 5rem;
}

.banner_content-links {
	display: flex;
	gap: 2rem;
}

.btnNormal {
	background: var(--btnColor);
	border-radius: 8px;
	padding: 0 3rem;
	display: flex;
	overflow: hidden;
	position: relative;
	color: var(--primary-white);
	font-size: var(--font-16);
	font-weight: 500;
	height: 5rem;
	line-height: 5rem;
	gap: 2rem;
}

.btnNormal.btnGlass {
	background: rgba(255, 255, 255, 0.2);
	border: 1px solid #fff;
}

.banner_content-socialsLinks {
	display: flex;
	gap: 3rem;
	width: 100%;
	align-items: flex-end;
	justify-content: flex-end;
}

/* ! markee */
.markee_partners {
	padding: 1rem;
	overflow: hidden;
	white-space: nowrap;
	flex-direction: row;
	position: relative;
}

.markee_partners::before,
.markee_partners::after {
	content: "";
	position: absolute;
	width: 5rem;
	height: 100%;
	z-index: 1;
	top: 0;
}

.markee_partners::before {
	left: 0;
	background: linear-gradient(
		to left,
		rgba(255, 255, 255, 0),
		rgba(255, 255, 255, 1)
	);
}

.markee_partners::after {
	right: 0;
	background: linear-gradient(
		to right,
		rgba(255, 255, 255, 0),
		rgba(255, 255, 255, 1)
	);
}

.markee_track {
	display: inline-block;
	animation: 45s slide infinite linear;
}

.markee_track img {
    height: 4.5rem;
    margin: 0 5rem;
    filter: grayscale(1);
}

.markee_track img:hover {
    filter: grayscale(0);
}

.markee_partners:hover .markee_track {
	animation-play-state: paused;
}

@keyframes slide {
	from {
		transform: translateX(0);
	}
	to {
		transform: translateX(-100%);
	}
}

/* ! Intro */
.intro_block {
	padding: 1rem 6%;
}

.intro_block-wp {
	display: flex;
	width: 100%;
	height: 100%;
	flex-direction: column;
	border-bottom: 1px solid rgba(16, 20, 28, 0.15);
	padding: 13rem 0;
}

.intro_block-cnt {
	max-width: 108.4rem;
	width: 100%;
	margin: 0 auto;
	display: flex;
	flex-direction: column;
}

.intro_block-suptitle {
	color: rgba(16, 20, 28, 0.3);
	font-size: var(--font-16);
	font-style: normal;
	font-weight: 500;
	line-height: 2rem;
	margin-bottom: 8rem;
}

.intro_block-Maintitle {
	color: var(--primary-darkColor);
	font-size: 4rem;
	font-style: normal;
	font-weight: 600;
	line-height: 4.5rem;
	margin-bottom: 8rem;
}

.intro_block-txt {
	color: rgba(16, 20, 28, 0.3);
	font-size: var(--font-40);
	font-style: normal;
	font-weight: 600;
	line-height: 5rem;
}

/* .intro_block-txt strong {
	color: var(--primary-darkColor);
	
} */

.intro_block-txt strong {
	background: linear-gradient(
		90deg,
		var(--primary-darkColor) 50%,
		rgba(16, 20, 28, 0.3) 50%
	);
	background-size: 200% 100%;
	background-position: 100% 0;
	-webkit-background-clip: text;
	color: transparent;
	font-weight: 600;
}

.intro_block-btn {
	display: flex;
	margin-top: 5rem;
}

/* ! Homepage solutions */
.h_solutions {
	padding: 7rem 0%;
}

.h_solutions-wp-top {
	display: flex;
	padding: 0 6%;
	align-items: flex-end;
}

.h_solutions-wp-title {
	color: var(--primary-darkColor);
	font-size: var(--font-50);
	font-style: normal;
	font-weight: 500;
	line-height: 6rem;
	width: 60%;
}

.h_solutions-wp-suptitle {
	color: rgba(16, 20, 28, 0.3);
	font-size: var(--font-16);
	font-style: normal;
	font-weight: 500;
	line-height: 2rem;
	margin-bottom: 4rem;
}

.h_solutions-wp-top-btn {
	margin-left: auto;
}

.h_solutions-wp-slide {
	width: 100%;
	display: flex;
	margin-top: 7.5rem;
}

.spring-slider {
	width: 100%;
	height: 100%;
	position: relative;
}

.spring-slider .swiper {
	height: 100%;
	width: 100%;
	padding: 0 0rem;
}

.spring-slider .swiper-slide {
	transition-timing-function: cubic-bezier(0.76, 0.09, 0.215, 1);
}

.h_solutions-box-1 .h_solutions-box-top {
	background: var(--blueColor);
}

.h_solutions-box-2 .h_solutions-box-top {
	background: var(--yellowColor);
}

.h_solutions-box-3 .h_solutions-box-top {
	background: var(--btnColor);
	/* background: #e02b3c; */
}

.h_solutions-box {
	display: flex;
	flex-direction: column;
	width: 100%;
}

.h_solutions-box-top {
	width: 100%;
	height: 45rem;
	position: relative;
	display: flex;
}

.h_solutions-box-content {
	display: flex;
	flex-direction: column;
	padding: 6rem 10%;
}

.h_solutions-box-content-title {
	color: var(--primary-darkColor);
	font-size: var(--font-55);
	font-style: normal;
	font-weight: 500;
	margin-bottom: 2.5rem;
}

.h_solutions-box-content-title span {
	font-size: var(--font-20);
}

.h_solutions-box-content-txt {
	color: var(--font-18);
	font-size: 1.8rem;
	font-style: normal;
	line-height: 2.4rem;
	width: 80%;
}

.h_solutions-box-content-links {
	display: flex;
	margin-top: 5rem;
	width: 100%;
	flex-wrap: wrap;
	gap: 2rem 3rem;
}

.btnCircle {
	width: 300px;
	font-size: var(--font-16);
	color: var(--primary-darkColor);
	border: 1px solid var(--primary-darkColor);
	font-size: 1.8rem;
	font-style: normal;
	font-weight: 500;
	line-height: 2rem;
	display: flex;
	border-radius: 25px;
	padding: 0 3rem;
	display: flex;
	overflow: hidden;
	position: relative;
	height: 5rem;
	line-height: 5rem;
	gap: 2rem;
}

.btnCircle .btn-label-up-arrow {
	margin-left: auto;
	transition: var(--transition-03);
}

/* On hover: slide up and blur the default one */
.btnCircle:hover .btn-label-up:not(.hover) {
	transform: translateY(-100%);
	opacity: 0;
	filter: blur(10px);
}

.btnCircle:hover .btn-label-up.hover {
	transform: translateY(0%);
	opacity: 1;
	filter: blur(0);
}

.btnCircle:hover .btn-label-up-arrow {
	transform: rotate(45deg);
}

.btnCircle:hover .btn-label-up {
	top: -100%;
}

.btnCircle:hover .btn-label-up-arrow {
	transform: rotate(-45deg);
}

.h_solutions-box-1-img,
.h_solutions-box-3-img {
	position: absolute;
	right: 0;
	top: 0;
	width: 30%;
}

.h_solutions-box-2-img {
	position: absolute;
	left: 0;
	bottom: 0;
	width: 50%;
}

.spring-slider-nav {
	display: flex;
	position: relative;
	margin-left: auto;
	gap: 2rem;
}

.spring-slider-nav .swiper-button-next,
.spring-slider-nav .swiper-button-prev {
	width: 3.8rem;
	height: 3.8rem;
	position: inherit;
	left: inherit;
	right: inherit;
}

.spring-slider-nav .swiper-button-next svg,
.spring-slider-nav .swiper-button-prev svg {
	width: 100%;
	height: 100%;
	display: block;
}

.spring-slider-nav .swiper-button-next:after,
.spring-slider-nav .swiper-button-prev:after {
	display: none;
}

/* .spring-slider .swiper-slide {
	filter: blur(6px);
}

.spring-slider .swiper-slide-visible {
	filter: blur(0px);
} */

/* ! Homepage approach */
.h_approach {
	padding: 8rem 6%;
}

.h_approach-wp {
	display: flex;
	width: 100%;
}

.h_approach-left {
	width: 40%;
	display: flex;
	flex-direction: column;
}

.h_approach-img {
	border-radius: 8px;
	overflow: hidden;
}

.h_approach-right {
	width: 55%;
	display: flex;
	flex-direction: column;
	margin-left: auto;
}

.h_approach-right-top {
	display: flex;
	flex-direction: column;
	padding: 5rem 0 0 0;
}

.h_approach-right-suptitle {
	color: rgba(16, 20, 28, 0.3);
	font-size: var(--font-16);
	font-style: normal;
	font-weight: 500;
	line-height: 2rem;
	margin-bottom: 4rem;
}

.h_approach-right-title {
	color: var(--primary-darkColor);
	font-size: var(--font-50);
	font-style: normal;
	font-weight: 500;
	line-height: 6rem;
}

.h_approach-listing {
	display: flex;
	width: 100%;
	flex-wrap: wrap;
	margin-top: auto;
	justify-content: space-between;
}

.h_approach-listing li {
	width: 48%;
	margin-top: 2rem;
	padding-top: 1rem;
	border-top: 1px solid rgba(16, 20, 28, 0.15);
	display: flex;
	flex-direction: column;
}

.h_approach-listing-title {
	color: var(--light-txtColor);
	font-size: var(--font-30);
	font-style: normal;
	font-weight: 500;
	line-height: 4rem;
	margin-bottom: 1rem;
}

.h_approach-listing-txt {
	color: var(--primary-darkColor);
	font-size: var(--font-16);
	font-style: normal;
	line-height: 2.2rem;
	height: 8rem;
}

/* ! homepage life at frci */
.h_life {
	padding: 13rem 6% 15rem 6%;
	position: relative;
	overflow: hidden;
}

.h_life-wp {
	width: 100%;
	display: flex;
	position: relative;
	z-index: 1;
}

.h_life-left {
	width: 43%;
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	padding-bottom: 2rem;
}

.h_life-suptitle {
	color: rgba(16, 20, 28, 0.3);
	font-size: var(--font-16);
	font-style: normal;
	font-weight: 500;
	line-height: 2rem;
	margin-bottom: 8rem;
}

.h_life-title {
	color: var(--primary-darkColor);
	font-size: var(--font-50);
	font-style: normal;
	font-weight: 500;
	line-height: 6rem;
}

.h_life-txt {
	color: rgba(16, 20, 28, 0.6);
	font-size: var(--font-16);
	font-style: normal;
	line-height: 2.4rem;
	margin-top: 2rem;
	width: 70%;
}

.h_life-btn {
	display: flex;
	margin-top: 5rem;
}

.h_life-bot {
	display: flex;
	width: 100%;
	margin-top: 5rem;
}

.h_life-bot-num {
	color: rgba(16, 20, 28, 0.1);
	font-size: 30rem;
	font-style: normal;
	font-weight: 700;
	letter-spacing: -12px;
	position: relative;
}

.h_life-bot-num span {
	color: rgba(16, 20, 28, 0.1);
	font-size: 9rem;
	font-style: normal;
	font-weight: 700;
	letter-spacing: -3.664px;
	position: absolute;
	bottom: 3rem;
	right: -7rem;
}

.h_life-bot-txt {
	color: rgba(16, 20, 28, 0.1);
	font-size: 3rem;
	font-style: normal;
	font-weight: 500;
	line-height: 3.2rem;
	margin-left: auto;
	width: 35%;
	display: flex;
	align-items: flex-end;
	margin-bottom: 4rem;
}

.h_life-right {
	width: 53%;
	display: flex;
	margin-left: auto;
	justify-content: space-between;
}

.h_life-gbox {
	display: flex;
	flex-direction: column;
	gap: 2rem;
	justify-content: space-between;
}

.h_life-gbox > div {
	border-radius: 8px;
	overflow: hidden;
}

/*  ! shape animation */

.h_life-shape-1 {
	width: 40%;
	position: absolute;
	top: 0;
	right: 0;
}

.h_life-shape-2 {
	width: 45%;
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	right: 0;
}

.h_life-shape-2 svg {
	width: 100%;
	height: 100%;
	display: block;
}

.ZSIZYNPe_0 {
	stroke-dasharray: 2264 2266;
	stroke-dashoffset: 2265;
}
.start .ZSIZYNPe_0 {
	animation: ZSIZYNPe_draw_0 3900ms ease-in-out 0ms infinite,
		ZSIZYNPe_fade 3900ms linear 0ms infinite;
}
@keyframes ZSIZYNPe_draw {
	100% {
		stroke-dashoffset: 0;
	}
}
@keyframes ZSIZYNPe_fade {
	0% {
		stroke-opacity: 1;
	}
	94.87179487179488% {
		stroke-opacity: 1;
	}
	100% {
		stroke-opacity: 0;
	}
}
@keyframes ZSIZYNPe_draw_0 {
	12.82051282051282% {
		stroke-dashoffset: 2265;
	}
	57.264957264957275% {
		stroke-dashoffset: 0;
	}
	100% {
		stroke-dashoffset: 0;
	}
}

/* ! news */
.news {
	padding: 10rem 6%;
	margin-top: 5rem;
}

.news .h_solutions-wp-top {
	padding: 0;
}

.news-wp {
	display: flex;
	flex-direction: column;
	border-top: 1px solid rgba(16, 20, 28, 0.15);
	padding-top: 6rem;
}

.news_slide {
	width: 100%;
	display: flex;
	margin-top: 8rem;
}

.newsBox {
	display: flex;
	width: 100%;
}

.newsBox a {
	display: flex;
	flex-direction: column;
}

.newsBox-img {
	width: 100%;
	display: flex;
	overflow: hidden;
	border-radius: 8px;
	position: relative;
}

.newsBox-img img {
	transition: all 0.3s linear;
	transform: scale(1);
}

.newsBox a:hover .newsBox-img img {
	transform: scale(1.1);
	filter: blur(2px);
}

.newsBox-img::after {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(
		180deg,
		rgba(0, 0, 0, 0) -14.04%,
		rgba(0, 0, 0, 0.5) 110.66%
	);
	border-radius: 8px;
	z-index: 1;
}

.newsBox-img-content {
	display: flex;
	position: absolute;
	width: 100%;
	left: 0;
	bottom: 0;
	z-index: 2;
	padding: 3rem 3rem;
	align-items: center;
}

.newsBox-cat {
	color: var(--primary-darkColor);
	font-size: 1.3rem;
	font-style: normal;
	font-weight: 600;
	line-height: 2rem;
	background: #fff;
	padding: 0.7rem 1.6rem;
	border-radius: 8px;
}

.newsBox-date {
	color: #fff;
	font-size: 1.3rem;
	font-style: normal;
	font-weight: 500;
	line-height: 2rem;
	margin-left: auto;
}

.newsBox-content {
	padding: 3.5rem 0 2rem;
	display: flex;
	flex-direction: column;
}

.newsBox-content-title {
	color: var(--primary-darkColor);
	font-size: 2rem;
	font-style: normal;
	font-weight: 600;
	line-height: 2.4rem;
	margin-bottom: 1.5rem;
	height: 4rem;
}

.newsBox-content-txt {
	color: rgba(16, 20, 28, 0.6);
	font-size: var(--font-16);
	font-style: normal;
	line-height: 2.4rem;
	height: 10rem;
}

.newsBox-content-rm {
	margin-top: auto;
	color: var(--primary-darkColor);
	font-size: var(--font-16);
	font-style: normal;
	text-decoration: underline;
	text-underline-position: under;
	transition: var(--transition-03);
}

.newsBox a:hover .newsBox-content-rm {
	color: var(--blueColor);
}

/* ! About Page */
.intro_block.about_intro_block .intro_block-wp {
	border-bottom: none;
}

.inNumbers {
	padding: 8rem 6%;
	position: relative;
}

.inNumbers-shape-1 {
	position: absolute;
	top: 44%;
	left: -6%;
	width: 20%;
	transform: translateY(-50%);
}

.inNumbers-shape-1 img {
	transform: rotate(180deg);
}

.inNumbers-shape-2 {
	position: absolute;
	top: 25%;
	left: -10%;
	width: 22%;
}

.inNumbers-shape-2 img {
	transform: rotate(180deg);
}

.inNumbers-wp {
	display: flex;
	width: 100%;
	height: 100%;
	flex-direction: column;
	position: relative;
}

.inNumber-img {
	width: 30%;
	position: absolute;
	left: 0;
	bottom: 0;
	border-radius: 8px;
	overflow: hidden;
	z-index: 1;
}

.inNumbers-cnt {
	max-width: 108.4rem;
	width: 100%;
	margin: 0 auto;
	display: flex;
	position: relative;
}

.inNumbers-suptitle {
	color: var(--primary-darkColor);
	font-size: var(--font-16);
	font-style: normal;
	font-weight: 600;
	line-height: 2rem;
	width: 20%;
}

.inNumbers-list {
	width: 65%;
	margin-left: auto;
	display: flex;
	flex-direction: column;
}

.inNumbers-list li {
	display: flex;
	align-items: flex-end;
	margin-bottom: 10rem;
}

.inNumbers-list li:last-child {
	margin-bottom: 0;
}

.inNumbers-left {
	width: 50%;
	display: flex;
	flex-direction: column;
}

.inNumbers-num {
	color: var(--primary-darkColor);
	font-size: 13rem;
	font-style: normal;
	font-weight: 700;
	letter-spacing: -2.8px;
}

.inNumbers-num span {
	font-size: 5rem;
	position: relative;
	left: -1rem;
}

.inNumbers-title {
	color: var(--btnColor);
	font-size: var(--font-24);
	font-style: normal;
	font-weight: 400;
	line-height: 2.4rem;
}

.inNumbers-right {
	width: 45%;
	color: rgba(16, 20, 28, 0.6);
	font-size: 1.8rem;
	font-style: normal;
	font-weight: 400;
	line-height: 2.4rem;
	margin-left: auto;
}

.inNumbers-right strong {
	font-weight: 500;
	color: var(--btnColor);
	text-decoration: underline;
	text-underline-position: under;
}

/* ? our mission and values */
.aMission {
	padding: 8rem 6%;
	position: relative;
}

.aMission-wp {
	display: flex;
	width: 100%;
	height: 100%;
	position: relative;
}

.aMission-right {
	display: flex;
	margin-left: auto;
	width: 36%;
}

.aMission-img {
	width: 100%;
	display: flex;
	border-radius: 8px;
	overflow: hidden;
}

.aMission-left {
	width: 50%;
	display: flex;
	flex-direction: column;
}

.aMission-suptitle {
	color: rgba(16, 20, 28, 0.3);
	font-size: var(--font-16);
	font-style: normal;
	font-weight: 500;
	line-height: 2rem;
	margin-bottom: 8rem;
}

.aMission-title {
	color: rgba(16, 20, 28, 0.3);
	font-size: var(--font-40);
	font-style: normal;
	font-weight: 500;
	line-height: 5rem;
}

.aMission-title strong {
	background: linear-gradient(
		90deg,
		var(--primary-darkColor) 50%,
		rgba(16, 20, 28, 0.3) 50%
	);
	background-size: 200% 100%;
	background-position: 100% 0;
	-webkit-background-clip: text;
	color: transparent;
	font-weight: 500;

	background-position: 0% 0px;
}

.aMission-listing {
	display: flex;
	margin-top: auto;
	justify-content: space-between;
	padding-bottom: 2rem;
}

.aMission-box {
	width: 45%;
	display: flex;
	flex-direction: column;
	padding-top: 3rem;
	border-top: 1px solid rgba(16, 20, 28, 0.1);
}

.aMission-box-icn {
	width: 7.7rem;
	margin-bottom: 2rem;
}

.aMission-box-title {
	color: rgba(16, 20, 28, 0.3);
	font-size: 3rem;
	font-style: normal;
	font-weight: 500;
	line-height: 4rem;
	margin-bottom: 0.5rem;
}

.aMission-box-txt {
	color: var(--primary-darkColor);
	font-size: var(--font-16);
	font-style: normal;
	font-weight: 400;
	line-height: 2.2rem;
}

.ceoMessage {
	padding: 8rem 6%;
	position: relative;
}

.ceoMessage-wp {
	display: flex;
	width: 100%;
	position: relative;
	padding: 5rem 0;
	border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.ceoMessage-left {
	width: 36%;
	display: flex;
}

.ceoMessage-img {
	display: flex;
	width: 100%;
	border-radius: 8px;
	overflow: hidden;
}

.ceoMessage-right {
	width: 55%;
	display: flex;
	flex-direction: column;
	margin-left: auto;
	padding-right: 10%;
	padding-top: 2rem;
	padding-bottom: 2rem;
}

.ceoMessage-suptitle {
	color: rgba(16, 20, 28, 0.3);
	font-size: var(--font-16);
	font-style: normal;
	font-weight: 500;
	line-height: 2rem;
}

.ceoMessage-content {
	display: flex;
	margin-top: auto;
	flex-direction: column;
}

.ceoMessage-quote {
	width: 5.3rem;
	margin-bottom: 10rem;
}

.ceoMessage-title {
	color: rgba(16, 20, 28, 0.3);
	font-size: var(--font-30);
	font-style: normal;
	font-weight: 500;
	line-height: 4rem;
}

.ceoMessage-title strong {
	background: linear-gradient(
		90deg,
		var(--primary-darkColor) 50%,
		rgba(16, 20, 28, 0.3) 50%
	);
	background-size: 200% 100%;
	background-position: 100% 0;
	-webkit-background-clip: text;
	color: transparent;
	font-weight: 500;

	background-position: 0% 0px;
}

.ceoMessage-author {
	display: flex;
	margin-top: 4rem;
}

.ceoMessage-author-left {
	display: flex;
	flex-direction: column;
	font-size: var(--font-18);
	font-style: normal;
	font-weight: 500;
	line-height: 2.4rem;
}

.ceoMessage-author-name {
	color: var(--primary-darkColor);
}

.ceoMessage-author-title {
	color: rgba(16, 20, 28, 0.3);
}

.ceoMessage-author-right {
	display: flex;
	width: 4.7rem;
	margin-left: 4.5rem;
}

.ceoMessage-author-right a,
.ceoMessage-author-right svg {
	display: block;
	width: 100%;
	height: 100%;
}

.bluetoyellow {
	fill: #0077b7;
	transition: var(--transition-03);
}

.ceoMessage-author-right a:hover .bluetoyellow {
	fill: var(--yellowColor);
}

/* ! testimonials */
.news.testimonials {
}

.news.testimonials .h_solutions-wp-title {
	color: rgba(16, 20, 28, 0.3);
	font-weight: 500;
	font-size: var(--font-40);
	width: 50%;
}

.news.testimonials .h_solutions-wp-title strong {
	background: linear-gradient(
		90deg,
		var(--primary-darkColor) 50%,
		rgba(16, 20, 28, 0.3) 50%
	);
	background-size: 200% 100%;
	background-position: 100% 0;
	-webkit-background-clip: text;
	color: transparent;
	font-weight: 500;

	background-position: 0% 0;
}

.testimonials_box {
	width: 100%;
	height: 54rem;
	display: flex;
	flex-direction: column;
}

.testimonials_box a {
	display: flex;
	flex-direction: column;
	width: 100%;
	height: 100%;
	position: relative;
	overflow: hidden;
	border-radius: 8px;
	background: #f3f3f3;
	padding: 6rem 6rem 6rem 6rem;
}

.testimonials_box-quote {
	width: 4.5rem;
	margin-bottom: 5rem;
}

.testimonials_box-txt {
	color: var(--primary-darkColor);
	font-size: var(--font-16);
	font-style: normal;
	font-weight: 500;
	line-height: 2.6rem;
}

.testimonials_box-bot {
	margin-top: auto;
	display: flex;
	align-items: center;
}

.testimonials_box-img {
    width: 7rem;
    border-radius: 100%;
    height: 7rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    border: 1px solid rgba(0, 0, 0, 0.08);
}

.testimonials_box-name {
	display: flex;
	margin-left: 2rem;
	width: 70%;
	flex-direction: column;
	color: var(--light-txtColor);
	font-size: var(--font-18);
	font-style: normal;
	font-weight: 500;
	line-height: 2.3rem;
}

.testimonials_box-name span {
	color: var(--primary-darkColor);
}

/* ! bod */
.bod {
	padding: 5rem 6%;
	position: relative;
}

.bod-wp {
	display: flex;
	width: 100%;
	flex-wrap: wrap;
	gap: 2%;
}

.bod_box {
	width: 31.3333%;
	display: flex;
	flex-direction: column;
	margin-bottom: 8rem;
}

.bod_box-img {
	width: 100%;
	position: relative;
	border-radius: 8px;
	overflow: hidden;
}

.follow {
	width: 5.5rem;
	position: absolute;
	right: 2rem;
	bottom: 2rem;
}

.follow a,
.follow a svg {
	display: block;
	width: 100%;
	height: 100%;
}

.follow a:hover .bluetoyellow {
	fill: var(--yellowColor);
}

.bod_box-info {
	display: flex;
	flex-direction: column;
	margin-top: 2rem;
	padding: 2rem 1.5rem 0rem 1.5rem;
	height: 6rem;
	border-top: 1px solid rgba(16, 20, 28, 0.1);
}

.bod_box-name {
	color: var(--primary-darkColor);
	font-size: var(--font-20);
	font-style: normal;
	font-weight: 500;
	line-height: 2.5rem;
}

.bod_box-title {
	color: var(--light-txtColor);
	font-size: 2rem;
	font-style: normal;
	font-weight: 500;
	line-height: 2.5rem;
}

/* ! Tabbing section*/
.tabbing_block {
	padding: 8rem 6%;
	position: relative;
}

.tabbing_wp {
	display: flex;
	width: 100%;
	height: 100%;
	position: relative;
	flex-direction: column;
}

.tabbing_head {
	width: 100%;
	display: flex;
	border-bottom: 1px solid rgba(16, 20, 28, 0.1);
	justify-content: center;
	gap: 4rem;
}

.tabbing_head li {
	/* color: var(--light-txtColor); */
	font-size: var(--font-24);
	font-style: normal;
	font-weight: 500;
	line-height: 3rem;
	padding: 0 1rem 2rem 1rem;
	position: relative;
	cursor: pointer;

	background: linear-gradient(
		90deg,
		var(--primary-darkColor) 50%,
		rgba(16, 20, 28, 0.3) 50%
	);
	background-size: 200% 100%;
	background-position: 100% 0;
	-webkit-background-clip: text;
	color: transparent;
	transition: var(--transition-03);
}

.tabbing_head li::after {
	content: "";
	position: absolute;
	bottom: 0;
	right: 0;
	width: 0%;
	height: 2px;
	background: var(--primary-darkColor);
	transition: width 0.2s ease;
	-webkit-transition: width 0.2s ease;
}

.tabbing_head li:hover::after,
.tabbing_head li.active::after {
	width: 100%;
	left: 0;
}

.tabbing_head li:hover,
.tabbing_head li.active {
	background-position: 0% 0px;
}

.tabbing_inner {
	display: flex;
	width: 100%;
	height: 100%;
	flex-direction: column;
	padding-top: 8rem;
}

.tabbing_box {
	display: none;
}

.tabbing_box.active {
	display: block;
}

.tabbing_box-inner {
	display: flex;
	flex-direction: column;
	width: 100%;
}

.tabbing_box-content {
	transition: filter 0.5s ease, opacity 0.5s ease;
	width: 100%;
	display: flex;
	align-items: flex-start;
}

.blur-effect {
	filter: blur(2px);
	opacity: 0.7;
}

.tabbing_content-accTitle {
	display: none;
}

/*@media (max-width: 768px) {*/
/*	.tabbing_content-accTitle {*/
/*		display: flex;*/
/*	}*/

/*	.tabbing_head {*/
/*		display: none;*/
/*	}*/

/*	.tabbing_box {*/
/*		display: flex;*/
/*		padding: 1rem;*/
/*		border: 1px solid red;*/
/*	}*/

/*	.blur-effect {*/
/*		filter: blur(0);*/
/*		opacity: 1;*/
/*	}*/
/*}*/

.tabbing_box-left {
	width: 25%;
	display: flex;
	flex-direction: column;
	position: sticky;
	top: 12rem;
}

.filter_mob {
    display: none;
    width: 100%;
    text-align: center;
}

.filter_mob select {
    padding: 1rem;
    width: 100%;
    border: none;
    border-bottom: 1px solid rgba(16, 20, 28, 0.15);
    font-size: 1.5rem;
    line-height: 2.5rem;
    /*-webkit-appearance: none;*/
    display: block;
    border-radius : 0;
    background: transparent;
    color: #000;
}

.tabbing_filter {
	width: 100%;
	display: flex;
	padding: 4rem 0;
	flex-direction: column;
	border-radius: 8px;
	border: 1px solid rgba(16, 20, 28, 0.3);
}

.tabbing_filter-title {
	color: var(--primary-darkColor);
	font-size: var(--font-30);
	font-style: normal;
	font-weight: 500;
	line-height: 4rem;
	padding: 0 5rem;
}

.tabbing_filter ul {
	display: flex;
	flex-direction: column;
	gap: 2rem;
	margin-top: 4rem;
	overflow: hidden;
}

.tabbing_filter ul li {
	cursor: pointer;
	font-size: 1.8rem;
	font-style: normal;
	font-weight: 400;
	line-height: 2rem;
	padding: 0 5rem;
	position: relative;
	background: linear-gradient(
		90deg,
		var(--primary-darkColor) 50%,
		rgba(16, 20, 28, 0.3) 50%
	);
	background-size: 200% 100%;
	background-position: 100% 0;
	-webkit-background-clip: text;
	color: transparent;
	transition: all 0.8s ease-in-out;
}

.tabbing_filter ul li:hover,
.tabbing_filter ul li.active {
	background-position: 0% 0px;
}

.tabbing_filter ul li::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 6px;
	height: 100%;
	border-radius: 0px 4px 4px 0px;
	background: var(--primary-darkColor);
	transition: var(--transition-03);
	transform: translateX(-100%);
}

.tabbing_filter ul li:hover::before,
.tabbing_filter ul li.active::before {
	transform: translateX(0);
}

.tabbing_filter ul li::after {
	content: "";
	position: absolute;
	top: 0;
	right: 5rem;
	width: 1.2rem;
	height: 1.2rem;
	background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAACXBIWXMAAAsTAAALEwEAmpwYAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAADESURBVHgBnZOxDcIwEEXPGSChoHQ8AhJUVEhUVEg0TIGomAIapgAkaJAYgQBzxM4C9gLGCVBh3zl5kqvTf/L5y8w6AEFrA1mWBucJFt7u9jCZzkDKqpsgFxykqmC+WIYlluBwOtten9vBcGzLUv3NSQEliRJgkmhBSMLuxdOu1huIRWsN2hgQOYfb9QIJ1rFX4MIN7HvarHD8rTByK0jV7g184WhBKBwlwMKkgArXoH+heLxAiE9ddW0+WHMNorYsDVf9BoQ0Mb0GtOdhAAAAAElFTkSuQmCC);
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center;
	opacity: 0;
	transform: translateX(-100%);
	transition: var(--transition-03);
}

.tabbing_filter ul li:hover::after,
.tabbing_filter ul li.active::after {
	opacity: 1;
	transform: translateX(0);
}

.tabbing_btn {
	display: flex;
	width: 100%;
	margin-top: 3rem;
}

.btn_round {
	width: 100%;
	color: #fff;
	font-size: var(--font-18);
	font-style: normal;
	font-weight: 500;
	line-height: normal;
	border-radius: 99px;
	background: var(--btnColor);
	height: 7.4rem;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 3rem;
}

.btn_round:hover {
	background: var(--primary-darkColor);
}

.tabbing_box-right {
	width: 65%;
	display: flex;
	flex-direction: column;
	margin-left: auto;
}

.tabbing_filter-content {
	width: 100%;
	display: flex;
	flex-direction: column;
}

/* ? filter clients */
.tabbing_filter-clients {
	display: flex;
	flex-wrap: wrap;
	margin-top: -1%;
}

.tabbing_filter-clients li {
	width: 25%;
	height: 280px;
	display: flex;
	flex-direction: column;
	padding: 1%;
}

.tabbing_filter-clients li a {
    width: 100%;
    height: 100%;
    display: flex;
    border-radius: 8px;
    background: rgba(16, 20, 28, 0.03);
    cursor: pointer;
    align-items: center;
    justify-content: center;
}

.tabbing_filter-clients li a img {
    width: 100%;
    height: auto;
    max-width: 165px;
    /*filter: brightness(0) saturate(100%) invert(9%) sepia(10%) saturate(324%) hue-rotate(179deg) brightness(93%) contrast(97%);*/
    /*opacity: 0.3;*/
    /*transition: filter 0.3s ease, opacity 0.3s ease;*/
}

.tabbing_filter-clients li a:hover img {
    /*filter: none;*/
    /*opacity: 1; */
}

/*.tabbing_filter-clients li a:hover {*/
/*	background: var(--primary-darkColor);*/
/*}*/

/* ? filter testimonials */
.tabbing_filter-testimonials {
	display: flex;
	flex-wrap: wrap;
	margin-top: -1%;
}

.tabbing_filter-testimonials li {
	width: 50%;
	display: flex;
	flex-direction: column;
	padding: 1%;
}

.tabbing_filter-testimonials li a {
	width: 100%;
	height: 100%;
	display: flex;
	border-radius: 8px;
	background: rgba(16, 20, 28, 0.03);
	cursor: pointer;
}

/* ? filter case studies */
.tabbing_filter-caseStudies {
	display: flex;
	flex-wrap: wrap;
	margin-top: -1%;
}

.tabbing_filter-caseStudies li {
	width: 50%;
	height: 580px;
	display: flex;
	flex-direction: column;
	padding: 1%;
}

.caseStudies_box {
	display: flex;
	flex-direction: column;
	width: 100%;
	height: 100%;
	position: relative;
	overflow: hidden;
	border-radius: 8px;
	background: rgba(16, 20, 28, 0.03);
	transition: var(--transition-03);
}

.caseStudies_box a {
	width: 100%;
	height: 100%;
	display: flex;
	padding: 2rem;
	flex-direction: column;
}

.caseStudies_box-img {
	width: 100%;
	height: 35rem;
	border-radius: 8px;
	transition: var(--transition-03);
}

.caseStudies_box-img img {
    border-radius: 8px;
}

.caseStudies_box-content {
	display: flex;
	flex-direction: column;
	width: 100%;
	padding: 3rem 0.8rem 0 0.8rem;
}

.caseStudies_box-content-info {
	display: flex;
	width: 100%;
	align-items: center;
}

.caseStudies_box-content-title {
	color: var(--primary-darkColor);
	font-size: 2rem;
	font-style: normal;
	font-weight: 600;
	line-height: 3rem;
	text-transform: uppercase;
	transition: var(--transition-03);
}

.caseStudies_box-content-cat {
	margin-left: 2rem;
	padding: 0.4rem 2.4rem;
	border-radius: 99px;
	background: rgba(16, 16, 16, 0.05);
	color: var(--primary-darkColor);
	font-size: 1.4rem;
	font-style: normal;
	line-height: 2rem;
	transition: var(--transition-03);
}

.caseStudies_box-content-txt {
	color: var(--primary-darkColor);
	font-size: 1.6rem;
	font-style: normal;
	font-weight: 400;
	line-height: 2.4rem;
	margin-top: 2rem;
	transition: var(--transition-03);
}

.caseStudies_box:hover {
	background: var(--primary-darkColor);
}

.caseStudies_box a:hover .caseStudies_box-content-title,
.caseStudies_box a:hover .caseStudies_box-content-txt {
	color: #fff;
}
.caseStudies_box a:hover .caseStudies_box-content-cat {
	background: #fff;
}

/*.caseStudies_box a:hover .caseStudies_box-img {*/
/*	border: 1px solid #fff;*/
/*}*/

/* ! pagination filter */
.pagination {
	margin-top: 2rem;
	text-align: center;
	display: flex;
	justify-content: flex-end;
}

.pagination .page-num,
.pagination .prev-btn,
.pagination .next-btn {
	display: inline-block;
	margin: 0 5px;
	padding: 8px 12px;
	background: #f0f0f0;
	color: #333;
	cursor: pointer;
	border-radius: 4px;
	transition: background 0.3s ease, color 0.3s ease;
}

.pagination .page-num.active,
.pagination .page-num:hover,
.pagination .prev-btn:hover,
.pagination .next-btn:hover {
	background: var(--primary-darkColor);
	color: #fff;
}

.pagination .prev-btn.disabled,
.pagination .next-btn.disabled {
	opacity: 0.5;
	cursor: not-allowed;
}

/* ! Contact page */
.fits {
	padding: 8rem 6% 0 6%;
	position: relative;
}

.fits-wp {
	display: flex;
	flex-direction: column;
	width: 100%;
	position: relative;
	border-radius: 8px;
	border: 1px solid rgba(16, 20, 28, 0.1);
	background: var(--darkBlueColor);
	height: 80rem;
	padding: 10rem 17.5rem 5rem 17.5rem;
}

.fits-suptitle {
	color: rgba(255, 255, 255, 0.3);
	font-size: var(--font-16);
	font-style: normal;
	font-weight: 500;
	line-height: 2rem;
	margin-bottom: 4rem;
}
.fits-title {
	color: rgba(255, 255, 255, 0.3);
	font-size: var(--font-40);
	font-style: normal;
	font-weight: 500;
	line-height: 5rem;
	width: 60%;
}

.fits-title strong {
	background: linear-gradient(90deg, #fff 50%, rgba(255, 255, 255, 0.3) 50%);
	background-size: 200% 100%;
	background-position: 100% 0;
	-webkit-background-clip: text;
	color: transparent;
	font-weight: 500;

	background-position: 0% 0px;
}

.fits-slider {
	display: flex;
	margin-top: 5rem;
	width: 100%;
}

.fits-box {
	width: 100%;
	height: 35rem;
}

.fits-box a {
	width: 100%;
	height: 100%;
	display: flex;
	background: #14365b;
	border: 0.5px solid #6185ac;
	border-radius: 8px;
	flex-direction: column;
	padding: 4rem 4.5rem;
}

.fits-box a:hover {
	background: var(--primary-darkColor);
}

.fits-box-title {
	color: #fff;
	font-size: 2.4rem;
	font-style: normal;
	font-weight: 400;
	line-height: 3rem;
	margin-bottom: 2rem;
}

.fits-box-txt {
	color: #fff;
	font-size: var(--font-18);
	font-style: normal;
	font-weight: 300;
	line-height: 2.4rem;
}

.fits-box-btn {
	margin-top: auto;
}

.fits-box-btn .btnNormal {
	background: #fff;
	color: var(--primary-darkColor);
	justify-content: center;
}

/* ? contact */
.contact {
	padding: 0 6%;
	margin-bottom: 10rem;
}

.contact-wp {
	display: flex;
	width: 100%;
	height: 100%;
	position: relative;
	border-bottom: 1px solid rgba(16, 20, 28, 0.1);
}

.contact-left {
	width: 35%;
	display: flex;
	flex-direction: column;
	padding-top: 15rem;
	padding-right: 5rem;
	border-right: 1px solid rgba(16, 20, 28, 0.1);
	padding-bottom: 5rem;
}

.contact-left-title {
	color: var(--primary-darkColor);
	font-size: var(--font-40);
	font-style: normal;
	font-weight: 600;
	line-height: 5rem; /* 125% */
	margin-bottom: 2.5rem;
}

.contact-left-title span {
	color: var(--light-txtColor);
}

.contact-left-txt {
	color: var(--primary-darkColor);
	font-size: 2.4rem;
	font-style: normal;
	font-weight: 400;
	line-height: 3rem;
}

.contact-left-info {
	display: flex;
	flex-direction: column;
	margin-top: 5rem;
	width: 70%;
	gap: 3rem;
}

.contact-left-info > li {
	display: flex;
}

.ci-left {
	width: 50%;
	color: rgba(16, 20, 28, 0.3);
	font-size: var(--font-18);
	font-style: normal;
	font-weight: 400;
	line-height: 2rem;
}

.ci-right {
	width: 50%;
	display: flex;
}

.ci-right a {
	color: var(--primary-darkColor);
	font-family: "Inter Tight";
	font-size: var(--font-18);
	font-style: normal;
	font-weight: 400;
	line-height: 2rem; /* 133.333% */
}

.ci-icon {
	width: 50%;
	display: flex;
	gap: 2rem;
	align-items: flex-end;
}

.contact-left-map {
	width: 100%;
	height: 28rem;
	border-radius: 8px;
	overflow: hidden;
	margin-top: 10rem;
}

.contact-left-map a {
	display: block;
	width: 100%;
	height: 100%;
}

.contact-right {
	width: 62%;
	display: flex;
	flex-direction: column;
	margin-left: auto;
	padding-top: 8rem;
	padding-bottom: 5rem;
}

.contact-right-form {
	width: 100%;
	border-radius: 8px;
	background: #f3f3f3;
	height: 100%;
	display: flex;
	flex-direction: column;
	padding: 8rem 6.5rem;
}

.contact-right-form-title {
	color: var(--primary-darkColor);
	font-size: var(--font-24);
	font-style: normal;
	font-weight: 400;
	line-height: 3rem; /* 125% */
}

.forms_wp {
	width: 100%;
	display: flex;
	flex-direction: column;
}

.forms_wp .umbraco-forms-caption {
    display: none;
}

.forms_wp .umbraco-forms-fieldset {
    border: none;
}

.umbraco-forms-page {
    padding-top: 4.5rem;
}

.umbraco-forms-field.shortanswer,
.umbraco-forms-field.longanswer,
.umbraco-forms-field.requesttype {
    font-size: 1.8rem;
    font-weight: 500;
    line-height: 3rem;
    color: rgba(16, 20, 28, 0.3);
    margin-bottom: 4.2rem;
    width: 49%;
    display: inline-block;
}

.umbraco-forms-field.shortanswer.email,
.umbraco-forms-field.longanswer,
.umbraco-forms-field.requesttype {
    width: 100%;
}

.umbraco-forms-field.shortanswer label,
.umbraco-forms-field.longanswer  label {
    position: relative;
}

/*.umbraco-forms-field.shortanswer label::after,*/
/*.umbraco-forms-field.longanswer label::after {*/
/*    content: '*';*/
/*    font-size: 1.4rem;*/
/*    position: absolute;*/
/*    top: -7px;*/
/*    right: -7px;*/
/*    color: rgba(16, 20, 28, 0.3);*/
/*}*/

.umbraco-forms-field-wrapper input.text,
.umbraco-forms-field-wrapper textarea {
    border: none;
    border-bottom: 1px solid rgba(16, 20, 28, 0.1);
    width: 90%;
    background-color: transparent;
    padding: 1rem 0;
}

.umbraco-forms-field-wrapper textarea {
    width: 100%;
}


.umbraco-forms-field-wrapper textarea {
    height: 10rem;
}

.umbraco-forms-field.titleanddescription label {
    display: none;
}

.umbraco-forms-field.titleanddescription a {
    text-decoration: underline;
}

.umbraco-forms-field.titleanddescription,
.umbraco-forms-field.exclusiveoffers,
.umbraco-forms-field.dataconsent {
    font-size: 1.5rem;
    line-height: 2rem;
    margin-bottom: 2rem;
}

.umbraco-forms-field.dataconsent {
    margin-bottom: 2rem;
}

.umbraco-forms-field.exclusiveoffers {
    border: none;
}

.umbraco-forms-field.exclusiveoffers .radiobuttonlist {
    display: flex;
    align-items: center;
    gap: 6rem;
    margin-top: 1rem;
}

.umbraco-forms-field.dataconsent .umbraco-forms-field-wrapper {
    margin-top: 1rem;
}

.umbraco-forms-hidden {
    display: none;
}

.umbraco-forms-navigation input.btn {
    background: var(--btnColor);
    border-radius: 8px;
    padding: 0 3rem;
    display: flex;
    color: var(--primary-white);
    font-size: var(--font-16);
    font-weight: 500;
    height: 5rem;
    line-height: 5rem;
    gap: 2rem;
    margin-top: 2rem;
    outline: none;
    border: none;
    cursor: pointer;
    transition: var(--transition-03);
}

.umbraco-forms-navigation input.btn:hover {
    background: #0e897a;
}

.umbraco-forms-field-wrapper select {
    border: none;
    border-bottom: 1px solid rgba(16, 20, 28, 0.1);
    background: transparent;
    width: 100%;
}

.umbraco-forms-field-wrapper select option {
    font-size: 1.5rem;
    border-color: rgba(16, 20, 28, 0.1);
}

.field-validation-error {
    font-size: 1.3rem;
    color: #b10b0b;
    display: block;
}

.umbraco-forms-field.consenttick {
    border: none;
}

.umbraco-forms-field.consenttick .radiobuttonlist {
    display: flex;
    justify-content: flex-start;
    gap: 3rem;
} 

.umbraco-forms-field.consenttick .radiobuttonlist > div {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 1.3rem;
}

/* ! life at frci */
.galleryBlock {
	margin-top: 3rem;
}

.galleryBlock-wp {
	width: 100%;
	display: flex;
	overflow: hidden;
	white-space: nowrap;
	flex-direction: row;
	position: relative;
}

.galleryBlock-item {
	width: 100%;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
    gap: 1rem;
	/*display: inline-block;*/
	/*animation: 80s slideGalleryRighttoLeft infinite linear;*/
}

.galleryBlock-item-img {
	overflow: hidden;
	border-radius: 8px;
	display: inline-block;
}

.limg {
	width: 49%;
}

.simg {
	width: 24.1%;
}

.galleryBlock-item:hover {
	animation-play-state: paused;
}

@keyframes slideGalleryRighttoLeft {
	from {
		transform: translateX(0);
	}
	to {
		transform: translateX(-100%);
	}
}

.lefttorightAnimation {
	margin-top: 1rem;
}

.lefttorightAnimation .galleryBlock-item {
	width: 100%;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
    gap: 1rem;
	/*display: inline-block;*/
	/*animation: 80s slideGallerylefttoRight infinite linear;*/
}

.lefttorightAnimation:hover .galleryBlock-item {
	animation-play-state: paused;
}

@keyframes slideGallerylefttoRight {
	from {
		transform: translateX(-100%);
	}
	to {
		transform: translateX(-0);
	}
}

.umbraco-forms-field.title.singlechoice {
    border: none;
    font-size: 1.8rem;
    font-weight: 500;
    line-height: 3rem;
    color: rgba(16, 20, 28, 0.3);
    margin-bottom: 4.2rem;
} 

.umbraco-forms-field.jobapplication {
    font-size: 1.8rem;
    font-weight: 500;
    line-height: 3rem;
    color: rgba(16, 20, 28, 0.3);
    width: 100%;
    margin-bottom: 4.2rem;
}

.umbraco-forms-field.fileupload {
    font-size: 1.5rem;
    line-height: 2rem;
    margin-bottom: 2rem
}

.umbraco-forms-field.fileupload label {
    display: inline-block;
    margin-bottom: 1rem
} 

.umbraco-forms-field.title.singlechoice .radiobuttonlist {
    display: flex;
    gap: 3rem;
    align-items: center;
} 

/* ! Job listing */
.joblisting {
	padding: 8rem 6% 0;
	position: relative;
}

.joblisting-wp {
	border-radius: 8px;
	background: var(--darkBlueColor);
	padding-top: 10rem;
	display: flex;
	flex-direction: column;
	padding-bottom: 3rem;
}

.joblisting-top {
	display: flex;
	width: 100%;
	flex-direction: column;
	padding: 0 10% 3rem 10%;
}

.joblisting-top-suptitle {
	color: rgba(255, 255, 255, 0.3);

	font-size: var(--font-16);
	font-style: normal;
	font-weight: 500;
	line-height: 2rem;
	margin-bottom: 4rem;
}

.joblisting-top-txt {
	color: rgba(255, 255, 255, 0.3);

	font-size: var(--font-40);
	font-style: normal;
	font-weight: 500;
	line-height: 5rem;
}

.joblisting-top-txt strong {
	background: linear-gradient(90deg, #fff 50%, rgba(16, 20, 28, 0.3) 50%);
	background-size: 200% 100%;
	background-position: 100% 0;
	-webkit-background-clip: text;
	color: transparent;
	font-weight: 500;

	background-position: 0% 0;
}

.joblisting-top-head {
	display: flex;
	color: rgba(255, 255, 255, 0.3);
	font-size: var(--font-16);
	font-style: normal;
	font-weight: 500;
	line-height: 2rem; /* 312.5% */
	text-transform: uppercase;
	margin-top: 8rem;
}

.joblisting-top-head > div {
	width: 50%;
}

.joblisting-acc {
	width: 100%;
	display: flex;
	flex-direction: column;
}

.joblisting-acc-repeat {
	width: 100%;
	display: flex;
	flex-direction: column;
}

.joblisting-acc-repeat:first-child {
	border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.joblisting-acc-head {
	display: flex;
	color: #fff;
	font-size: var(--font-20);
	font-weight: 400;
	line-height: 3rem; /* 250% */
	padding: 4rem 10%;
	border-bottom: 1px solid rgba(255, 255, 255, 0.2);
	cursor: pointer;
}

.joblisting-acc-head-type {
	position: relative;
}

.joblisting-acc-head-type::after {
	content: "+";
	width: 5rem;
	height: 5rem;
	background-color: rgba(49, 86, 128, 1);
	border-radius: 50%;
	font-size: 3rem;
	transition: all 0.3s ease-in;
	position: absolute;
	right: 0;
	top: 50%;
	transform: translateY(-50%);
    text-align: center;
    line-height: 4.5rem;
	font-weight: 200;
	cursor: pointer;
	transition: var(--transition-03);
}

.joblisting-acc-head.active .joblisting-acc-head-type::after {
	content: "-";
}

.joblisting-acc-head:hover .joblisting-acc-head-type::after {
	background-color: var(--yellowColor);
}

.joblisting-acc-head-type.active::after {
	content: "-";
}

.joblisting-acc-head > div {
	width: 50%;
}

.joblisting-acc-body {
}

.joblisting-acc-body-content {
	display: flex;
	border-bottom: 1px solid rgba(255, 255, 255, 0.2);
	padding: 4rem 10%;
}

.joblisting-acc-body-content > div {
	width: 50%;
	display: flex;
	flex-direction: column;
	color: #fff;
	padding-right: 12%;
}

.joblisting-acc-body-content-left .joblisting-acc-body-content-box {
	position: sticky;
	top: 15rem;
}

.joblisting-acc-body-content-box {
	display: flex;
	flex-direction: column;
	width: 100%;
	margin-bottom: 4rem;
}

.joblisting-acc-body-content-box:last-child {
	margin-bottom: 0;
}

.joblisting-acc-body-content-box-title {
	font-size: var(--font-18);
	font-weight: 500;
	line-height: 3rem;
	margin-bottom: 2rem;
}

.joblisting-acc-body-content-box-txt {
	font-size: var(--font-18);
	font-weight: 300;
	line-height: 2.6rem;
}

.joblisting-acc-body-content-box-txt ul {
	display: flex;
	flex-direction: column;
	gap: 1rem;
}

.joblisting-acc-body-content-box-txt ul li {
	padding-left: 2rem;
	position: relative;
}

.joblisting-acc-body-content-box-txt ul li::before {
	content: "";
	position: absolute;
	left: 0;
	top: 0.5rem;
	width: 0.5rem;
	height: 0.5rem;
	border-radius: 50%;
	background: #fff;
	position: absolute;
	left: 0;
	top: 11px;
}

.joblisting-acc-body-content-description {
	font-size: var(--font-18);
	font-weight: 300;
	line-height: 2.6rem;
	display: flex;
	flex-direction: column;
	margin-top: 3rem;
	gap: 1rem;
}

.joblisting-acc-body-content-description strong {
	font-weight: 500;
}

.joblisting-apply-btn {
	display: flex;
	width: 100%;
	margin-top: 3rem;
}

.accordionSection {
	padding: 8rem 6% 15rem 6%;
	position: relative;
}

.accordionSection-wp {
	display: flex;
	width: 100%;
	height: 100%;
	position: relative;
}

.accordionSection-acc {
	gap: 2.5rem;
}

.accordionSection-acc .joblisting-acc-repeat {
	background: var(--darkBlueColor);
	border-radius: 8px;
	overflow: hidden;
}

.accordionSection-acc .joblisting-acc-head {
	color: #fff;
	font-size: 3rem;
	font-style: normal;
	font-weight: 500;
	line-height: 4rem;
	padding: 2.5rem 3%;
	transition: var(--transition-03);
	position: relative;
}

.accordionSection-acc .joblisting-acc-head:hover {
	background: var(--primary-darkColor);
}

.accordionSection-acc .joblisting-acc-head::after {
	content: "+";
	font-size: 4rem;
	transition: all 0.3s ease-in;
	position: absolute;
	right: 3%;
	top: 50%;
	transform: translateY(-50%);
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: 200;
	cursor: pointer;
	transition: var(--transition-03);
}

.accordionSection-acc .joblisting-acc-head.active::after {
	content: "-";
}

.accordionSection-Content {
	display: flex;
	width: 100%;
	background: var(--darkBlueColor-v1);
	padding: 5rem 3%;
}

.accordionSection-Content-left {
	width: 35%;
	height: 100%;
	/*background: #fff;*/
	border-radius: 8px;
	overflow: hidden;
}

.accordionSection-Content-right {
	width: 60%;
	margin-left: auto;
	display: flex;
	flex-direction: column;
	color: #fff;
	font-size: var(--font-18);
	font-style: normal;
	font-weight: 300;
	line-height: 2.6rem;
	margin-bottom: 1.5rem;
	padding-bottom: 5rem;
}

.accordionSection-Content-right strong {
	font-weight: 500;
}

.accordionSection-Content-intro {
	width: 100%;
	margin-bottom: 3rem;
	padding-top: 2rem;
}

.accordionSection-Content-list ul {
	display: flex;
	flex-direction: column;
	gap: 2rem;
	font-size: var(--font-16);
	margin-top: 2rem;
}

.accordionSection-Content-list ul strong {
	font-size: var(--font-18);
}

.accordionSection-Content-list ul li {
	display: flex;
	flex-direction: column;
	padding-left: 4rem;
	position: relative;
}

.accordionSection-Content-list ul li::before {
	content: "";
	position: absolute;
	left: 0;
	top: 5px;
	width: 1.7rem;
	height: 1.7rem;

	background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABEAAAARCAYAAAA7bUf6AAAACXBIWXMAAAsTAAALEwEAmpwYAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAFBSURBVHgBpZRNTsMwEIVnnB6gm8CWI3AD4AQg8SN2LRICsaI3oNygXaEWJNodIt30BJQb9AhsUYTUC3iGcahJYsdGoiNFtuPnz88zTgAisZU93qXZiLdfRr2YTsUmGXjftJTgYUzXsp10Nr6VVV1ANchPLqehBensqYOk+0gw/Dy/HtScILFY5l1gPTHCEMDMM8IOK+h4x2Gg+/IcPsgC7FgnNPw1UBO+PpjjPEM5uxJ6W3oredr2NSm6+Dq+mTRCGkFOuIACsk7oUU2JJjflzpUQR7isSQEXaO4BbBgtk1CEZO+/TuQuzf2cOFXwApOue49UFIBFVdYO7NZ++VUIYKoAbK1LyzIOgEonTL0qwC1jfibjKgh034NIgqbI8NEE8EG4ZIbmG+tGmo3foPiScZGfXh2EdH/9CuY/rX6P6b4BtQqkSl5dEpEAAAAASUVORK5CYII=);
	background-size: contain;
	background-position: center;
	background-repeat: no-repeat;
}

.accordionSection-Content-btns {
	display: flex;
	width: 100%;
	margin-top: 2rem;
	gap: 2em;
}

.btnNormal.btnTransparent {
	background: transparent;
	border: 1px solid #fff;
}

.IntroDivide .intro_block-cnt {
	flex-direction: row;
}

.IntroDivide .intro_block-left {
	width: 70%;
}

.intro_block-right {
	width: 18%;
	margin-left: auto;
}

.intro_block-right ul {
	display: flex;
	flex-direction: column;
	gap: 2rem;
	position: sticky;
	top: 12rem;
}

.intro_block-right ul li {
	color: var(--primary-darkColor);
	font-size: var(--font-20);
	font-style: normal;
	font-weight: 500;
	line-height: 2.2rem;
	display: flex;
	flex-direction: column;
}

.intro_block-right ul li span {
	color: rgba(16, 20, 28, 0.3);
	font-size: var(--font-18);
	font-style: normal;
	font-weight: 500;
	line-height: 2rem;
}

.caseStudy {
	padding: 8rem 0% 10rem 0%;
	position: relative;
}

.caseStudy-wp {
	display: flex;
	flex-direction: column;
	width: 100%;
}

.caseStudy-banner {
	width: 100%;
	padding: 0 1.5rem;
	margin-bottom: 4rem;
}

.caseStudy-banner img {
	border-radius: 8px;
}

.caseStudy-cnt {
	max-width: 108.4rem;
	width: 100%;
	margin: 0 auto;
	display: flex;
	flex-direction: column;
}

.caseStudy-boxText {
	display: flex;
	flex-direction: column;
	padding: 5rem 5% 8rem 5%;
	border-bottom: 1px solid rgba(16, 20, 28, 0.1);
	margin-bottom: 3rem;
}

.caseStudy-box-title {
	color: var(--light-txtColor);
	font-size: var(--font-40);
	font-weight: 500;
	line-height: 5.5rem;
	margin-bottom: 3rem;
}

.caseStudy-box-txt {
	display: block;
	color: var(--primary-darkColor);
	font-size: var(--font-18);
	font-style: normal;
	font-weight: 300;
	line-height: 2.4rem;
}

.caseStudy-box-txt strong {
	font-weight: 400;
	color: var(--btnColor);
}

.caseStudy-box-txt h3 {
	font-size: var(--font-24);
	font-weight: 500;
	line-height: 2.6rem;
	margin-bottom: 2rem;
}

.caseStudy-box-txt ul {
	display: flex;
	flex-direction: column;
	gap: 2rem;
	padding: 2rem 4% 5rem;
}

.caseStudy-box-txt ul li {
	position: relative;
	padding-left: 4rem;
	color: var(--light-txtColor);
	font-size: var(--font-24);
	font-style: normal;
	font-weight: 500;
	line-height: 3rem;
	border-bottom: 1px solid rgba(16, 20, 28, 0.1);
	padding-bottom: 2rem;
}

.caseStudy-box-txt ul li:last-child {
	border-bottom: none;
	padding-bottom: 0;
}

.caseStudy-box-txt ul li strong {
	color: var(--primary-darkColor);
	font-weight: 500;
}

.caseStudy-box-txt ul li::before {
	content: "";
	position: absolute;
	left: 0;
	top: 5px;
	width: 2rem;
	height: 2rem;
	background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABEAAAARCAYAAAA7bUf6AAAACXBIWXMAAAsTAAALEwEAmpwYAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAFBSURBVHgBpZRNTsMwEIVnnB6gm8CWI3AD4AQg8SN2LRICsaI3oNygXaEWJNodIt30BJQb9AhsUYTUC3iGcahJYsdGoiNFtuPnz88zTgAisZU93qXZiLdfRr2YTsUmGXjftJTgYUzXsp10Nr6VVV1ANchPLqehBensqYOk+0gw/Dy/HtScILFY5l1gPTHCEMDMM8IOK+h4x2Gg+/IcPsgC7FgnNPw1UBO+PpjjPEM5uxJ6W3oredr2NSm6+Dq+mTRCGkFOuIACsk7oUU2JJjflzpUQR7isSQEXaO4BbBgtk1CEZO+/TuQuzf2cOFXwApOue49UFIBFVdYO7NZ++VUIYKoAbK1LyzIOgEonTL0qwC1jfibjKgh034NIgqbI8NEE8EG4ZIbmG+tGmo3foPiScZGfXh2EdH/9CuY/rX6P6b4BtQqkSl5dEpEAAAAASUVORK5CYII=);
	background-size: contain;
	background-position: center;
	background-repeat: no-repeat;
}

.caseStudy-testimonials {
	border-radius: 8px;
	background: #f3f3f3;
	width: 100%;
	padding: 5rem 5% 5rem 5%;
	margin-top: 7rem;
	display: flex;
	flex-direction: column;
}

.caseStudy-testimonials-suptitle {
	color: var(--light-txtColor);
	font-size: var(--font-16);
	font-style: normal;
	font-weight: 500;
	line-height: 2rem;
	margin-bottom: 5rem;
}

.caseStudy-testimonials-icon {
	width: 5rem;
	margin-bottom: 3rem;
}

.caseStudy-testimonials-txt {
	color: var(--light-txtColor);
	font-size: var(--font-40);
	font-style: normal;
	font-weight: 500;
	line-height: 5rem;
	margin-bottom: 5rem;
}

.caseStudy-testimonials-txt strong {
	background: linear-gradient(
		90deg,
		var(--primary-darkColor) 50%,
		rgba(16, 20, 28, 0.3) 50%
	);
	background-size: 200% 100%;
	background-position: 100% 0;
	-webkit-background-clip: text;
	color: transparent;
	font-weight: 500;

	background-position: 0% 0px;
}

.caseStudies_box-bot {
	margin-top: auto;
	display: flex;
	align-items: center;
}

.caseStudies_box-bot-img {
	width: 7rem;
	border-radius: 100%;
    height: 7rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    border: 1px solid rgba(0, 0, 0, 0.08);
}

.caseStudies_box-bot-name {
	display: flex;
	margin-left: 2rem;
	width: 70%;
	flex-direction: column;
	color: var(--light-txtColor);
	font-size: var(--font-20);
	font-style: normal;
	font-weight: 500;
	line-height: 2.3rem;
}

.caseStudies_box-bot-name span {
	color: var(--primary-darkColor);
}

.accordionSection.accordionSection-learning {
    padding: 8rem 6% 0 6%;
}
 
.accordionSection.accordionSection-learning .accordionSection-Content-left {
    display: none;
}
 
.accordionSection.accordionSection-learning .accordionSection-Content-right {
    width: 100%;
}
 
.accordionSection.accordionSection-learning .accordionSection-wp {
    flex-direction: column;
}
 
.accordionSection-learning-title {
    color: var(--light-txtColor);
    font-size: var(--font-40);
    font-weight: 500;
    line-height: 5.5rem;
    margin-bottom: 3rem;
}
 
.caseStudy.caseStudy-learning {
    padding: 8rem 0% 0rem 0%;
}

.accordionSection-Content-right.no-image {
    width: 100%;
}

.accordionSection-Content-intro li {
    padding-left: 4rem;
    position: relative;
}

.accordionSection-Content-intro li::before {
    content: '';
    background-image: url("data:image/svg+xml,%3Csvg width='17' height='17' viewBox='0 0 17 17' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M15.7252 7.22574H11.5732L14.5088 4.29029C15.0056 3.79352 15.0056 2.98678 14.5088 2.48898C14.012 1.99221 13.2052 1.99221 12.7084 2.48898L9.77279 5.42444V1.27374C9.77279 0.57067 9.20312 0 8.49897 0C7.79483 0 7.22515 0.569643 7.22515 1.27374V5.42547L4.28952 2.49001C3.79272 1.99324 2.98593 1.99324 2.48913 2.49001C1.99233 2.98678 1.99233 3.79352 2.48913 4.29131L5.42477 7.22677H1.27382C0.570704 7.22677 0 7.79641 0 8.50051C0 9.20461 0.569678 9.77426 1.27382 9.77426H5.42579L2.49016 12.7097C1.99336 13.2065 1.99336 14.0132 2.49016 14.51C2.73856 14.7584 3.06497 14.8826 3.39035 14.8826C3.71573 14.8826 4.04214 14.7584 4.29054 14.51L7.22618 11.5745V15.7263C7.22618 16.4293 7.79586 17 8.5 17C9.20414 17 9.77382 16.4304 9.77382 15.7263V11.5745L12.7095 14.51C12.9579 14.7584 13.2843 14.8826 13.6096 14.8826C13.935 14.8826 14.2614 14.7584 14.5098 14.51C15.0066 14.0132 15.0066 13.2065 14.5098 12.7097L11.5742 9.77426H15.7262C16.4293 9.77426 17 9.20461 17 8.50051C17 7.79641 16.4303 7.22677 15.7262 7.22677L15.7252 7.22574Z' fill='%2315AB99'/%3E%3C/svg%3E%0A");
    display: inline-block;
    background-size: cover;
    background-repeat: no-repeat;
    width: 2rem;
    height: 2rem;
    position: absolute;
    top: 4px;
    left: 0;
}


/* !template */ 
.intro_block-txt.intro_block_template-txt {
    display: block;
    color: var(--primary-darkColor);
    font-size: var(--font-18);
    font-style: normal;
    font-weight: 300;
    line-height: 2.4rem;
}

.intro_block-txt.intro_block_template-txt h1 {
    color: rgba(16, 20, 28, 0.3);
    font-size: var(--font-40);
    font-style: normal;
    font-weight: 600;
    line-height: 5rem;
}

.intro_block-txt.intro_block_template-txt h3,
.intro_block-txt.intro_block_template-txt strong {
    color: var(--light-txtColor);
    font-size: var(--font-40);
    font-weight: 500;
    line-height: 5.5rem;
    margin-bottom: 3rem;
    display: block;
}

.intro_block-txt.intro_block_template-txt a {
    text-decoration: underline;
    line-break: anywhere;
    display: inline-block;
}

.intro_block-txt.intro_block_template-txt ul {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    padding: 3rem 4%;
}

.intro_block-txt.intro_block_template-txt ul li {
    position: relative;
    padding-left: 4rem;
    color: var(--light-txtColor);
    font-size: var(--font-24);
    font-style: normal;
    font-weight: 500;
    line-height: 3rem;
}

.intro_block-txt.intro_block_template-txt ul li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 5px;
    width: 2rem;
    height: 2rem;
    background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABEAAAARCAYAAAA7bUf6AAAACXBIWXMAAAsTAAALEwEAmpwYAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAFBSURBVHgBpZRNTsMwEIVnnB6gm8CWI3AD4AQg8SN2LRICsaI3oNygXaEWJNodIt30BJQb9AhsUYTUC3iGcahJYsdGoiNFtuPnz88zTgAisZU93qXZiLdfRr2YTsUmGXjftJTgYUzXsp10Nr6VVV1ANchPLqehBensqYOk+0gw/Dy/HtScILFY5l1gPTHCEMDMM8IOK+h4x2Gg+/IcPsgC7FgnNPw1UBO+PpjjPEM5uxJ6W3oredr2NSm6+Dq+mTRCGkFOuIACsk7oUU2JJjflzpUQR7isSQEXaO4BbBgtk1CEZO+/TuQuzf2cOFXwApOue49UFIBFVdYO7NZ++VUIYKoAbK1LyzIOgEonTL0qwC1jfibjKgh034NIgqbI8NEE8EG4ZIbmG+tGmo3foPiScZGfXh2EdH/9CuY/rX6P6b4BtQqkSl5dEpEAAAAASUVORK5CYII=);
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
}


/*error page */ 

.error-number {
    font-size: 47.5rem;
    font-weight: 600;
    line-height: 59.5rem;
    color: rgba(16, 20, 28, 0.1);
    margin-bottom: 5rem;
}

.error-mainTxt {
    font-size: 4rem;
    font-weight: 600;
    line-height: 5rem;
    color: rgba(16, 20, 28, 0.3)
    margin-bottom: 1.3rem;
}

.error-subTxt {
    font-size: 2.4rem;
    font-weight: 600;
    line-height: 2.6rem;
    color: rgba(16, 20, 28, 1);
    margin-bottom: 1.3rem;
}