:root {
	--title-font: "Be Vietnam Pro", sans-serif;
	--body-font: "Raleway", sans-serif;
	--transition-03s: all 0.3s ease-in-out;
	--primary-green-cl: #70755f;
	--body-cl: #494343;
	--dark-puple-cl: #37374e;
	--yellow-cl: #dac556;
	--lightblue-cl: #b5c5d1;
	--orange-cl: #e96852;
	--lightBrown-cl: #d4b9a8;

	--finance-cl: #37374e;
	--technology-cl: #e96852;
	--commerce-cl: #d4b9a8;
	--logistics-cl: #8f6c95;
	--realestate-cl: #dac556;
	--hospitality-cl: #b7c7d3;
	--agri-cl: #3d441e;
}

*,
*::before,
*::after {
	box-sizing: border-box;
	padding: 0;
	margin: 0;
	outline: none;
	box-shadow: 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;
	scroll-behavior: smooth;
	-webkit-text-size-adjust: 100%;
	-webkit-tap-highlight-color: transparent;
	overflow-y: scroll;
}

body {
	font-family: var(--body-font);
	font-size: 1.6rem;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

/* Firefox */
* {
	scrollbar-width: none;
}

/* Chrome, Edge, Safari */
*::-webkit-scrollbar {
	width: 0;
	background: transparent;
}

.fp-overflow {
	overflow-y: scroll !important;
	scrollbar-width: none; /* Firefox */
}

.fp-overflow::-webkit-scrollbar {
	width: 0px;
	background: transparent; /* Chrome/Safari/Edge */
}

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-03s);
	-webkit-transition: var(--transition-03s);
	-moz-transition: var(--transition-03s);
	-ms-transition: var(--transition-03s);
	-o-transition: var(--transition-03s);
}

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;
	font-weight: inherit;
	font-size: 100%;
	line-height: 1.15;
	margin: 0;
	background: none;
	border: none;
	color: inherit;
}

input:focus,
textarea:focus,
select:focus,
button:focus {
	outline: none;
}

fieldset,
legend {
	border: none;
	padding: 0;
	margin: 0;
}

main {
	display: block;
}

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

img {
	border-style: none;
}

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

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

/* ! Global css */
.core {
	position: relative;
}

.cnt {
	width: 100%;
	margin: 0 auto;
}

/* ! Header */
.header {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	z-index: 9;
	padding: 4rem 5% 1rem 5%;
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	transition: var(--transition-03s);
	/* display: none; */
}

.header_logo {
	width: 13.8rem;
	position: absolute;
	left: 50%;
	transform: translateX(-50%);
	top: 4rem;
}

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

.filllogo {
	fill: #fff;
	transition: var(--transition-03s);
}

.header_right {
	display: flex;
	align-items: center;
	gap: 2rem;
}

.header_shareprice {
	display: flex;
	flex-direction: column;
	font-size: 1.6rem;
	color: #fff;
	font-weight: 300;
	font-family: var(--title-font);
}

.header_search {
	width: 4rem;
	display: none;
}

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

.header.panel2-active {
	background: rgba(255, 255, 255, 0.5);
	height: 10rem;
	padding: 2rem 5% 2rem 5%;
	align-items: center;
}

.header_burger {
	cursor: pointer;
	position: relative;
	z-index: 1;
	left: -2rem;
	top: -3rem;
}

.header .header_burger {
	cursor: pointer;
	position: relative;
	z-index: 1;
	left: -2rem;
	top: 0rem;
}

.menu_btn {
	background-color: transparent;
	border: none;
	cursor: pointer;
	display: flex;
	padding: 0;
	width: 8rem;
	position: relative;
}

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

.line {
	fill: none;
	stroke: #fff;
	stroke-width: 6;
	transition: stroke-dasharray 600ms cubic-bezier(0.4, 0, 0.2, 1),
		stroke-dashoffset 600ms cubic-bezier(0.4, 0, 0.2, 1);
}
.line1 {
	stroke-dasharray: 60 207;
	stroke-width: 2;
}
.line2 {
	stroke-dasharray: 60 60;
	stroke-width: 2;
}
.line3 {
	stroke-dasharray: 60 207;
	stroke-width: 2;
}
.opened .line1 {
	stroke-dasharray: 90 207;
	stroke-dashoffset: -134;
	stroke-width: 2;
}
.opened .line2 {
	stroke-dasharray: 1 60;
	stroke-dashoffset: -30;
	stroke-width: 2;
}
.opened .line3 {
	stroke-dasharray: 90 207;
	stroke-dashoffset: -134;
	stroke-width: 2;
}

/* close end */
.header.panel2-active .header_burger .header_burgerstroke {
	stroke: var(--primary-green-cl);
}

.header.panel2-active .header_shareprice {
	color: var(--primary-green-cl);
}

.header.panel2-active .header_logo {
	width: 7.8rem;
	left: 50%;
	transform: translate(-50%, -50%);
	top: 50%;
}

.header.panel2-active .filllogo {
	fill: var(--primary-green-cl);
}

.header_nav {
	width: 21%;
	/* height: 70rem; */
	position: fixed;
	top: 0;
	left: 5rem;
	display: flex;
	flex-direction: column;
	opacity: 0;
	transition: var(--transition-03s);
	pointer-events: none;
	visibility: hidden;
}

.header_nav.active {
	opacity: 1;
	transition: var(--transition-03s);
	pointer-events: auto;
	visibility: visible;
}

.header_nav nav {
	width: 100%;
	background: var(--primary-green-cl);
	padding: 13rem 4rem 0 4rem;
	/* height: 66%; */
}

.header.panel2-active .header_nav nav {
	padding: 10rem 4rem;
}

.header_nav ul {
	display: flex;
	flex-direction: column;
	gap: 2rem;
	position: relative;
	z-index: 1;
}

.header_nav ul > li > a {
	color: #fff;
	font-family: var(--title-font);
	font-size: 4rem;
	font-style: normal;
	font-weight: 300;
	line-height: 4.2rem;
}
.header_nav ul > li > a:hover {
	color: var(--yellow-cl);
}

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

/* Collapse by default */
.dropdown_menu,
.has-dropdown > ul {
	display: none;
	padding: 0;
	margin: 0;
}

.dropdown_menu {
	gap: 2rem;
	position: relative;
	top: 1rem;
}

.header_nav .dropdown_menu li {
	position: relative;
	padding-left: 2rem;
}

.header_nav .dropdown_menu li::after {
	content: "";
	position: absolute;
	width: 5px;
	height: 5px;
	background: #fff;
	border-radius: 100%;
	top: 9px;
	left: 0;
}

.header_nav .dropdown_menu li a {
	color: #fff;
	font-family: var(--title-font);
	font-size: 2.4rem;
	font-style: normal;
	font-weight: 300;
	line-height: 3rem;
}

.header_nav .dropdown_menu li.active a {
	font-weight: 500;
}

.header_nav .dropdown_menu li a:hover {
}

.header.panel2-active .line {
	stroke: var(--primary-green-cl);
}

.header.panel2-active .menu_btn.opened .line {
	stroke: #fff;
}

/* Desktop hover - expand content */
@media (min-width: 992px) {
	.has-dropdown.open > .dropdown_menu,
	.has-dropdown.open > ul {
		display: block;
	}
}

/* ! Footer */
.footer {
	display: flex;
	width: 100%;
}

.footer_left {
	width: 43.23%;
	background: var(--dark-puple-cl);
	height: 35rem;
	display: flex;
	flex-direction: column;
	padding-left: 5%;
	padding-top: 6rem;
	padding-bottom: 1rem;
	padding-right: 4%;
}

.footer_left_title {
	color: #fff;
	font-family: var(--title-font);
	font-size: 3rem;
	font-style: normal;
	font-weight: 900;
	line-height: normal;
}

.footer_left_txt {
	color: #fff;
	font-size: 1.8rem;
	font-weight: 500;
	line-height: 2.5rem;
	margin-top: 2rem;
}

.footer_left_copywrite {
	color: #fff;
	font-size: 1.2rem;
	font-weight: 300;
	line-height: normal;
	margin-top: auto;
}

.footer_mid {
	width: 38.02%;
	background: var(--yellow-cl);
	height: 35rem;
	display: flex;
	padding-left: 5%;
	padding-top: 6rem;
	padding-bottom: 1rem;
	padding-right: 4%;
}

.footer_mid_links {
	display: flex;
	flex-direction: column;
	width: 48%;
}

.footer_mid_title {
	color: #fff;
	font-family: var(--title-font);
	font-size: 3rem;
	font-style: normal;
	font-weight: 900;
	line-height: normal;
	margin-bottom: 2rem;
}

.footer_mid_links > ul {
	display: flex;
	flex-direction: column;
	gap: 2rem;
}

.footer_mid_links > ul > li > a {
	color: #fff;
	font-size: 2rem;
	font-style: normal;
	font-weight: 500;
	line-height: normal;
}

.footer_mid_txt {
	color: #fff;
	font-size: 2rem;
	font-style: normal;
	font-weight: 500;
	line-height: normal;
}

.footer_mid_links > ul > li > a:hover {
	color: #000;
}

.footer_socials ul {
	display: flex;
	gap: 3rem;
	align-items: center;
	margin-top: 5rem;
}

.footer_right {
	width: 18.75%;
	background: var(--primary-green-cl);
	height: 35rem;
	display: flex;
	align-items: center;
	justify-content: center;
}

.footer_right a {
	background: #fff;
}

/*  !  newsletter */
.newsletter {
	background: var(--primary-green-cl);
	position: relative;
}

.newsletter_wp {
	width: 100%;
	height: 100%;
	display: flex;
	border-top-right-radius: 25rem;
	background: var(--dark-puple-cl);
	padding: 2rem 10% 5rem;
	align-items: flex-end;
	justify-content: center;
}

.newsletter_title {
	color: #fff;
	font-family: var(--title-font);
	font-size: 6.9rem;
	font-weight: 800;
	line-height: 7.5rem;
	padding-top: 3rem;
	width: 50%;
}

.newsletter_btn {
	display: flex;
	margin-left: 7rem;
	position: relative;
	top: -1rem;
}

.newsletter_btn a {
	color: #fff;
	border-color: #fff;
}

/* ! Brands */
.segment_brands {
	padding: 20rem 5% 10rem 5%;
	background: rgb(228 228 225);
}

.segment_brands_wp {
	display: flex;
	width: 100%;
	gap: 1%;
}

.segment_brands_items {
	width: 12.5%;
	display: flex;
	flex-direction: column;
}

.segment_brands_title {
	color: #6f7061;
	font-family: var(--title-font);
	font-size: 2rem;
	font-weight: 800;
	line-height: 3rem;
	text-transform: uppercase;
	height: 7rem;
	display: flex;
	width: 100%;
}

.segment_brands_items ul {
	display: flex;
	flex-direction: column;
	gap: 1rem;
	width: 100%;
	margin-top: 2rem;
}

.segment_brands_items ul li {
}

.segment_brands_items ul li a {
	color: #6f7061;
	font-size: 1.8rem;
	font-style: normal;
	font-weight: 600;
	line-height: 3rem;
}

.segment_brands_items ul li a:hover {
	color: #e86852;
}

/* ! Homepage */

/* ! masking */
.hiding_svg {
	height: 0;
	width: 0;
	position: absolute;
}
/* Actual video masking */
.video-mask-wrapper {
	position: fixed;
	z-index: 1;
	background: transparent;
	height: 100vh;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	opacity: 0;
	transition: opacity 0.2s ease-in-out;
	pointer-events: none;
	z-index: 2;
	top: -2px;
}

.video-mask-wrapper.active {
	opacity: 1;
}

.mask-target-slot {
	position: relative;
}

.mask-target-slot .video-mask-wrapper {
	position: absolute;
}

.video-mask-item {
	width: 28%;
	height: 100vh;
	clip-path: url(#clip-path-video);
	-webkit-clip-path: url(#clip-path-video);
	overflow: hidden;
}

.video-mask-item video {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	transform: scale(1.15);
}

video {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

/*  ? homepage section 1 */
.fullscreenvideo video {
	object-fit: cover;
	display: block;
	position: absolute;
	top: 0;
	left: 0;
}

.fp-bg {
	position: absolute;
	width: 100%;
	height: 100%;
	background-size: cover;
	background-position: center;
	z-index: 0;
	top: 0;
	left: 0;
}

.banner_btn {
	position: absolute;
	right: 5%;
	bottom: 5%;
}

.banner_btn .btn_courbe {
	border: 1px solid #fff;
	color: #fff;
}

/*  ? homepage section 2 */
.hm_second_panel {
	height: 100vh;
	background: #fff;
	display: flex;
	position: relative;
}

.second_panel_wp {
	width: 100%;
	height: 100%;
	position: relative;
	display: flex;
}

.second_panel_wp.hidden {
	opacity: 0;
	transition: opacity 0.3s ease-in-out;
}

.second_panel_left {
	width: 36%;
	height: 100%;
	position: relative;
}

.second_panel_mid {
	width: 28%;
	height: 100%;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	position: relative;
}

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

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

/* ! masking container second panel */
.second_panel_maskingsvg {
	width: 27%;
	height: 100%;
	position: absolute;
	left: 50%;
	bottom: 0;
	transform: translateX(-50%);
	overflow: hidden;
	opacity: 0;
}

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

/* ! second elements */
.second_panel_shape_one {
	position: absolute;
	width: 62.5%;
	right: 0;
	top: 0;
	z-index: 1;
	overflow: hidden;
}

.square_element {
	width: 35.5%;
	position: absolute;
	right: -2px;
	bottom: 54.08%;
	z-index: 1;
}

/* ! content panel two */
.panel_content {
	height: 82.08%;
	margin-top: auto;
	display: flex;
	flex-direction: column;
}

.hompage_intro {
	display: flex;
	flex-direction: column;
	width: 90%;
	padding: 3rem;
}

.hompage_intro_title {
	color: var(--primary-green-cl);
	font-family: var(--title-font);
	font-size: 5.9rem;
	font-weight: 800;
	line-height: 6.5rem;
	width: 80%;
}

.hompage_intro_txt {
	color: var(--body-cl);
	font-size: 1.8rem;
	font-weight: 500;
	line-height: 2.6rem;
	margin-top: 3rem;
	overflow: hidden;
	position: relative;
}

.hompage_intro_title .line,
.hompage_intro_txt .line {
	display: block;
	will-change: transform;
	transform: translate3d(0, 0, 0);
	backface-visibility: hidden;
}

.hompage_intro_btn {
	display: flex;
	margin-top: 4.5rem;
}

.btn_courbe {
	padding: 0rem 2rem 0rem 2rem;
	border: 1px solid #707161;
	color: #707161;
	font-family: var(--title-font);
	font-size: 2.4rem;
	font-weight: 300;
	border-top-right-radius: 6rem;
	height: 4rem;
	display: flex;
	align-items: center;
}

.btn_courbe:hover {
	border-top-right-radius: 0rem;
}

.btn_courbe_white {
	border: 1px solid #fff;
	color: #fff;
}

/* ! key value boxes */
.second_panel_key {
	position: absolute;
	left: 0;
	bottom: -8rem;
	width: 100%;
	height: 25rem;
	overflow: hidden;
	display: flex;
	align-items: center;
	padding-bottom: 5rem;
}

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

.keyvalue_left ul {
	display: flex;
	gap: 8rem;
	/* transform: translateX(-100%); */
}

.keyvalue_left ul li {
	display: flex;
	flex-direction: column;
	font-family: var(--title-font);
	color: var(--primary-green-cl);
	white-space: nowrap;
	min-width: 15rem;
}

.keyvalue_right ul li {
	display: flex;
	flex-direction: column;
	font-family: var(--title-font);
	color: var(--primary-green-cl);
	white-space: nowrap;
	min-width: 15rem;
}

.keyvalue_num {
	font-size: 5.5rem;
	font-weight: 800;
	line-height: 6rem;
}

.keyvalue_title {
	font-size: 3rem;
	font-weight: 300;
	line-height: 3rem;
}

.keyvalue_title span {
	font-size: 2rem;
	font-weight: 300;
	line-height: 3rem;
}

.growline-wp {
	width: 100%;
	position: absolute;
	top: 20%;
	left: 50%;
	transform: translateX(-50%);
	display: flex;
	flex-direction: column;
	opacity: 0;
	z-index: 1;
}

.growline-wp.active {
	opacity: 1;
}

.growline {
	width: 99.8%;
	height: 0%;
	display: flex;
	background: var(--primary-green-cl);
	position: relative;
}

.cls-1 {
	fill: var(--primary-green-cl);
}

.growline-shape {
	display: flex;
	width: 99.9%;
	position: relative;
	top: -15rem;
}

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

/*  ? homepage section 3 */
.third_panel {
	height: 100vh;
	padding: 10rem 0;
	background: #fff;
	display: flex;
	position: relative;
}

.third_panel_wp {
	display: flex;
	width: 100%;
	height: 100%;
	position: relative;
	align-items: center;
}

.third_pane_map {
	position: absolute;
	width: 35%;
	left: 12%;
	top: 50%;
	transform: translateY(-50%);
	z-index: 1;
	/* opacity: 0;
	transform-origin: center center;
	will-change: transform, opacity; */
}

.third_panel-right {
	margin-left: auto;
	width: 36%;
	height: 100%;
	margin-left: auto;
	display: flex;
	flex-direction: column;
	padding-left: 3rem;
	/* padding-top: 15rem; */
	justify-content: center;
}

.maps_content_title {
	color: var(--primary-green-cl);
	font-family: var(--title-font);
	font-size: 5.9rem;
	font-weight: 800;
	line-height: 6.5rem;
	width: 90%;
}

.maps_content_txt {
	color: var(--body-cl);
	font-size: 2rem;
	font-weight: 500;
	line-height: 2.6rem;
	margin-top: 3rem;
	width: 65%;
}

.maps_content_title .line,
.maps_content_txt .line {
	display: block;
	will-change: transform;
}

/*  ? homepage section 4 */
.fourth_panel {
	min-height: 100vh;
	padding: 5rem 0;
}

.fourth_panel_wp {
	display: flex;
	height: 100%;
	width: 100%;
	position: relative;
	padding-top: 20rem;
}

.fourth_panel_left {
	width: 36%;
	height: 100%;
	position: relative;
	display: flex;
	flex-direction: column;
	padding-left: 10%;
	padding-right: 1.5rem;
}

.fourth_panel_left_title {
	color: var(--primary-green-cl);
	font-family: var(--title-font);
	font-size: 5.9rem;
	font-weight: 800;
	line-height: 6.5rem;
}

.fourth_panel_left_dls {
	display: flex;
	flex-direction: column;
	margin-top: 7rem;
	gap: 5rem;
}

.fourth_panel_left_dls li a {
	display: flex;
	color: var(--primary-green-cl);
	font-weight: 300;
	align-items: flex-start;
}

.dls_icn {
	width: 3.8rem;
}

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

.fill_dls {
	fill: #6f7062;
	transition: var(--transition-03s);
}

.fourth_panel_left_dls li a:hover .fill_dls {
	fill: #e86852;
}

.fourth_panel_left_dls li a:hover {
	color: #e86852;
}

.dls_info {
	width: 80%;
	margin-left: 2rem;
	display: flex;
	flex-direction: column;
}

.dls_title {
	font-family: var(--title-font);
	font-size: 3rem;
	line-height: 3rem;
}

.dls_txt {
	font-size: 2rem;
	line-height: 2.6rem;
	margin-top: 1.2rem;
}

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

.fourth_panel_mid {
	width: 27%;
	position: absolute;
	left: 50%;
	transform: translateX(-50%);
	display: flex;
	top: 0%;
	flex-direction: column;
	z-index: 1;
}

.fourth_panel_mid-line {
	width: 100%;
	height: 0%;
	display: flex;
	background: var(--primary-green-cl);
}

.fourth-growline-shape {
	display: flex;
	width: 100%;
}

.fourth-growline-shape svg {
	width: 100%;
	height: 100%;
	display: block;
}

.fourth_panel_mid_wp {
	display: flex;
	flex-direction: column;
	width: 100%;
	padding: 40rem 5rem 0 5rem;
}

.fourth_panel_mid_title {
	font-family: var(--title-font);
	color: #fff;
	font-size: 6.6rem;
	font-weight: 800;
	line-height: 7rem;
}

.fourth_panel_mid_price {
	font-family: var(--title-font);
	color: #d9c454;
	font-size: 6.6rem;
	font-weight: 800;
	line-height: 7rem;
}

.fourth_panel_mid_date {
	font-family: var(--title-font);
	color: #fff;
	font-size: 3rem;
	font-weight: 800;
	line-height: 4rem;
}

.fourth_panel_right {
	width: 36%;
	height: 100%;
	margin-left: auto;
	display: flex;
	padding: 20rem 3rem 0 3rem;
}

.fourth_panel_value ul {
	display: flex;
	flex-wrap: wrap;
	gap: 2%;
	width: 100%;
}

.fourth_panel_value li {
	display: flex;
	flex-direction: column;
	font-family: var(--title-font);
	color: var(--primary-green-cl);
	white-space: nowrap;
	width: 48%;
	margin-bottom: 6rem;
}
/*  ? homepage section 5 */
.fifth_panel {
	height: 100vh;
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center center;
}

.fifth_panel_wp {
	width: 100%;
	height: 100%;
	display: flex;
	position: relative;
}

.fifth_panel_mid {
	width: 27%;
	height: 100%;
	/* background: #6f7060; */
	position: absolute;
	left: 50%;
	transform: translateX(-50%);
	display: flex;
	top: 0;
	display: flex;
	z-index: 1;
}

.fifth_panel_mid_info {
	display: flex;
	flex-direction: column;
	padding: 15rem 5rem 0 5rem;
}

.fifth_panel_mid_title {
	color: #fff;
	font-family: var(--title-font);
	font-size: 5.5rem;
	font-weight: 800;
	line-height: 6rem;
}

.fifth_panel_mid_txt {
	color: #fff;
	font-size: 2rem;
	font-weight: 500;
	line-height: 2.6rem;
	margin-top: 3rem;
}

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

.fifth_panel_mid_title .line,
.fifth_panel_mid_txt .line {
	display: block;
	will-change: transform;
}

.fifth_panel_bg_overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: #fff; /* or white/green if preferred */
	z-index: 0;
	pointer-events: none;
	opacity: 1;
}

/*  ? homepage section 6 */
.sixth_panel {
	height: 100vh;
	display: flex;
	position: relative;
	z-index: 2;
	background: #fff;
}

.sixth_panel_wp {
	width: 100%;
	height: 100%;
	position: relative;
	display: flex;
}

.sixth_panel_left {
	width: 36%;
	height: 100%;
	position: relative;
	display: flex;
	flex-direction: column;
	padding-left: 10%;
	padding-right: 1.5rem;
	padding-top: 20rem;
}

.sixth_panel_title {
	color: var(--primary-green-cl);
	font-family: var(--title-font);
	font-size: 6.9rem;
	font-weight: 800;
	line-height: 7.5rem;
}
.sixth_panel_txt {
	color: var(--primary-green-cl);
	font-size: 2rem;
	font-weight: 500;
	line-height: 2.6rem;
	margin-top: 4rem;
}

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

.sixth_panel_mid {
	position: relative;
	z-index: 2;
}

.sixth_panel_right {
	width: 36%;
	height: 100%;
	margin-left: auto;
	display: flex;
	padding: 20rem 3rem 0 3rem;
}

.sixth_panel_value ul {
	display: flex;
	flex-wrap: wrap;
	gap: 2%;
}

.sixth_panel_value li {
	display: flex;
	flex-direction: column;
	font-family: var(--title-font);
	color: var(--primary-green-cl);
	width: 48%;
	margin-bottom: 6rem;
}

.sixth_panel_mid {
	width: 28%;
	height: 100%;
	position: absolute;
	left: 50%;
	transform: translateX(-50%);
	display: flex;
	z-index: -1;
	top: 0;
	display: flex;
	overflow: hidden;
}

.sixth_panel_mid-img {
	width: 100%;
	position: relative;
	display: flex;
	overflow: overlay;
}

.sixth_panel_mid-img-shape {
	position: absolute;
	width: 100%;
	right: -0.1rem;
	bottom: -0.1rem;
}

/* .masked-image {
	width: 101%;
	height: 100%;

	background-size: cover;
	background-repeat: no-repeat;
	background-position: center;
	clip-path: url(#clip-path-video);
	-webkit-clip-path: url(#clip-path-video);
	position: relative;
	top: -15rem;
} */

/*  ? homepage section 7 */
.seventh_panel {
	padding: 2rem 0 5rem 0;
}

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

.seventh_panel_title {
	color: var(--primary-green-cl);
	font-family: var(--title-font);
	font-size: 6.9rem;
	font-weight: 800;
	line-height: 7.5rem;
	padding-left: 10%;
}

.segments_listing {
	margin-top: 7rem;
	width: 100%;
	display: flex;
	flex-wrap: wrap;
	padding: 0 3%;
}

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

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

.segments_item_img {
	display: flex;
	justify-content: center;
	width: 75%;
	margin: 0 auto;
	margin-bottom: 1rem;
	position: relative;
}

.segment-logo-hover {
	position: absolute;
	left: 0;
	top: 0;
	opacity: 0;
	visibility: hidden;
	transition: var(--transition-03s);
	display: block !important;
}

.segments_item a:hover .segment-logo-hover {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}

.segments_item_name {
	color: var(--primary-green-cl);
	text-align: center;
	font-family: var(--title-font);
	font-size: 2.8rem;
	font-weight: 300;
	line-height: normal;
}

/*  ? homepage section 8 */
.eigth_panel {
	padding: 10rem 0;
	position: relative;
	z-index: 1;
	background: #fff;
}

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

.eigth_panel_top {
	display: flex;
	width: 100%;
	padding: 0 10%;
	align-items: center;
	justify-content: space-between;
}

.eigth_panel_title {
	color: var(--primary-green-cl);
	font-family: var(--title-font);
	font-size: 6.9rem;
	font-weight: 800;
	line-height: 7.5rem;
}

.eigth_panel_bot {
	width: 100%;
	display: flex;
	margin-top: 4rem;
	flex-direction: column;
}

.news_item {
	width: 100%;
	display: flex;
	height: 40rem;
}

.news_item a {
	display: flex;
	width: 100%;
	height: 100%;
}

.news_item_img {
	width: 50%;
}

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

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

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

.news_item_cat {
	color: #fff;
	font-size: 2rem;
	font-weight: 500;
	line-height: 2.5rem;
}

.news_item_date {
	margin-left: auto;
	color: #fff;
	font-size: 2rem;
	font-weight: 500;
	line-height: 2.5rem;
}

.news_item_title {
	color: #fff;
	font-family: var(--title-font);
	font-size: 2.5rem;
	font-weight: 800;
	line-height: 3rem;
	margin-top: 2rem;
}

.news_item_txt {
	color: #fff;
	font-size: 2rem;
	font-weight: 500;
	line-height: 2.5rem;
	margin-top: 3rem;
}

.news_item_readmore {
	margin-top: auto;
	color: #fff;
	font-family: var(--title-font);
	font-size: 2.4rem;
	font-weight: 800;
	text-decoration: underline;
	text-underline-position: under;
	margin-bottom: 3rem;
}

.news_item.cat-sustainability {
	background: var(--primary-green-cl);
}

.news_item.cat-corporate {
	background: var(--orange-cl);
}

.news_nav {
	display: flex;
	width: 100%;
	justify-content: flex-end;
	gap: 2rem;
	margin-top: 2rem;
	padding: 0 10%;
}

.news_nav .swiper-button-next,
.news_nav .swiper-button-prev {
	position: inherit;
	top: inherit;
	width: 5.5rem;
	height: 5.5rem;
	margin-top: 0;
}

.news_nav .swiper-button-next:after,
.news_nav .swiper-button-prev:after {
	display: none;
}

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

.seg_nav {
	display: flex;
	width: 100%;
	justify-content: flex-end;
	gap: 2rem;
	margin-top: 2rem;
	padding: 0 10%;
}

.seg_nav .swiper-button-next,
.seg_nav .swiper-button-prev {
	position: inherit;
	top: inherit;
	width: 5.5rem;
	height: 5.5rem;
	margin-top: 0;
}

.seg_nav .swiper-button-next:after,
.seg_nav .swiper-button-prev:after {
	display: none;
}

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

/* Preloader Base */
/* Preloader Base */
#preloader {
	overflow: hidden;
	height: 100vh;
	width: 100%;
	position: fixed;
	z-index: 99999999999999999;
}

/* Panels */
.preloader-panel {
	position: fixed;
	top: 0;
	width: 50%;
	height: 100vh;
	background: var(--primary-green-cl);
	z-index: 1;
}

/* Position panels using transform-ready base */
.preloader-panel.left {
	left: 0;
	transform: translateX(0%);
}

.preloader-panel.right {
	right: 0;
	transform: translateX(0%);
}

/* Logo with Pulse Animation */
.preloader-logo {
	width: 15rem;
	z-index: 2;
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
}

.preloader-logo svg {
	width: 100%;
	height: 100%;
	display: block;
	animation: pulse 1.5s infinite ease-in-out;
}

@keyframes pulse {
	0%,
	100% {
		transform: scale(1);
		opacity: 1;
	}
	50% {
		transform: scale(1.1);
		opacity: 0.7;
	}
}

.midtest {
	position: fixed;
	height: 100vh;
	width: 28%;
	top: 0;
	left: 50%;
	transform: translateX(-50%);
	z-index: 1;
}

/* ! Glance */
.svg-mask-wrapper-Glance .video-mask-wrapper,
.second_panelAtGlance .video-mask-wrapper {
	width: 58%;
	left: 50%;
	transform: translateX(-50%);
}

.svg-mask-wrapper-Glance .video-mask-item,
.second_panelAtGlance .video-mask-item {
	clip-path: url(#clip-path-video_glance);
	-webkit-clip-path: url(#clip-path-video_glance);
	width: 100%;
}

.svg-mask-wrapper-Glance .video-mask-wrapper .video-mask-item video,
.second_panelAtGlance .video-mask-wrapper .video-mask-item video {
	/* width: 100%;
	height: 100%;
	object-fit: cover;
	display: block; */
	/* transform: scale(1.2); */
}

.gl_secondpanel {
	min-height: 100vh;
	background: #fff;
	display: flex;
	position: relative;
}

.gl_secondpanel .mask-target-slot {
	position: sticky;
	top: 0;
	z-index: 1;
}

.gl_secondpanel_wp {
	width: 100%;
	height: 100%;
	position: relative;
	display: flex;
}

.gl_secondpanel_wp.hidden {
	opacity: 0;
	transition: opacity 0.3s ease-in-out;
}

.gl_secondpanel_left {
	width: 35.5%;
	height: 100%;
	position: relative;
	display: flex;
	flex-direction: column;
	padding-left: 10%;
	padding-right: 5%;
	padding-top: 20rem;
}

.gl_secondpanel_left-top {
	display: flex;
	flex-direction: column;
}

.gl_secondpanel_title {
	color: var(--primary-green-cl);
	font-family: var(--title-font);
	font-size: 6.9rem;
	font-weight: 800;
	line-height: 7.5rem;
}

.gl_secondpanel_txt {
	color: var(--primary-green-cl);
	font-size: 2rem;
	font-weight: 500;
	line-height: 2.6rem;
	margin-top: 4rem;
}

.gl_secondpanel_txt strong {
	font-weight: 800;
}

.gl_secondpanel_left-bot {
	display: flex;
	flex-direction: column;
	margin-top: 12rem;
}

.gl_thirdpanel {
	background: transparent;
	display: flex;
	position: relative;
}

.gl_thirdpanel_wp {
	width: 100%;
	height: 100%;
	position: relative;
	display: flex;
}

.gl_thirdpanel_wp .gl_secondpanel_left {
	padding-top: 5rem;
}

.gl_fourthpanel {
	padding: 15rem 0 5rem;
	overflow: hidden;
}

.gl_secondpanel_mid {
	width: 29%;
	height: 150vh;
	position: absolute;
	left: 50%;
	transform: translateX(-50%);
	bottom: 0;
}

.testsvg {
	width: 100%;
	height: 100%;
	display: block;
	position: absolute;
	left: 0;
	top: 0;
	background: var(--yellow-cl);
	z-index: 1;
}

.appear_at_end {
	width: 100%;
	position: absolute;
	left: -0.1rem;
	bottom: -0.1rem;
	z-index: 1;
	pointer-events: none;
}

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

.gl_fifthpanel {
	height: auto;
}

.gl_fifthpanel_wp {
	display: flex;
	width: 100%;
	height: 100%;
	position: relative;
}

.gl_fifthpanel_right {
	width: 35%;
	margin-left: auto;
	display: flex;
	flex-direction: column;
	padding-left: 2%;
	padding-top: 10rem;
}

.gl_fifthpanel_title {
	color: var(--primary-green-cl);
	font-family: var(--title-font);
	font-size: 6rem;
	font-weight: 800;
	line-height: 6.5rem;
}

.gl_fifthpanel_quote {
	color: var(--primary-green-cl);
	font-family: var(--title-font);
	font-size: 4rem;
	font-style: normal;
	font-weight: 800;
	line-height: 4.5rem;
	margin-top: 4rem;
	margin-bottom: 5rem;
}

.gl_fifthpanel_author {
	display: flex;
	flex-direction: column;
	gap: 0.5rem;
	color: var(--body-cl);
	font-family: var(--title-font);
	font-size: 2.5rem;
	line-height: 3.5rem;
	font-weight: 100;
	margin-top: auto;
}

.gl_fifthpanel_author strong {
	font-weight: 800;
}

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

.gl_testimonials_video {
	width: 100%;
	position: absolute;
	left: 0;
	bottom: 0;
	overflow: hidden;
}

.playvideo {
	width: 9.4rem;
	display: flex;
	position: absolute;
	z-index: 1;
	left: 50%;
	transform: translate(-50%, -50%);
	top: 75%;
}

.playvideo a {
	display: flex;
	cursor: pointer;
}

.playvideo a svg {
	width: 100%;
	height: 100%;
}

.filllogo_play {
	transition: var(--transition-03s);
	fill: var(--primary-green-cl);
}

.playvideo a:hover .filllogo_play {
	fill: var(--yellow-cl);
}

.gl_secondpanel_mid-triangleshape {
	width: 80%;
	position: absolute;
	left: -50%;
	top: 55%;
	transform: translateY(-50%);
}

.gl_sixthpanel {
	min-height: auto;
}

.spacer_panel {
	height: 20rem;
}

.gl_sixthpanel_wp {
	display: flex;
	width: 100%;
	height: 100%;
	position: relative;
}

.gl_sixthpanel_left {
	width: 35.5%;
	height: 100%;
	position: relative;
	display: flex;
	flex-direction: column;
	padding-left: 10%;
	padding-right: 5%;
}

.gl_sixthpanel_title {
	color: var(--primary-green-cl);
	font-family: var(--title-font);
	font-size: 6.9rem;
	font-weight: 800;
	line-height: 7.5rem;
}

.gl_sixthpanel_txt {
	color: var(--primary-green-cl);
	font-size: 2rem;
	font-weight: 500;
	line-height: 2.6rem;
	margin-top: 4rem;
}

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

.gl_sixthpanel_mid {
	background: #8f6c95;
	width: 29%;
	height: 100%;
	position: absolute;
	left: 50%;
	transform: translateX(-50%);
	top: 0;
	z-index: 1;
}

.gl_sixthpanel_mid_imgTop {
	position: absolute;
	width: 100%;
	top: 0;
	left: -0.1rem;
}

.gl_sixthpanel_mid_imgBot {
	position: absolute;
	width: 100%;
	bottom: 0;
	right: -0.1rem;
	display: none;
}

.gl_sixthpanel_right {
	margin-left: auto;
	width: 35.5%;
}

.gl_sixthpanel_right_img {
	width: 80%;
	position: sticky;
	top: 0rem;
}

.gl_seventhpanel {
	/* height: 250vh; */
	display: flex;
	position: relative;
	height: auto;
}

.gl_seventhpanel_wp {
	width: 100%;
	height: 100%;
	position: relative;
	display: flex;
	padding: 5rem 0;
	flex-direction: column;
}

.gl_seventhpanel_left {
	width: 100%;
	height: 100vh;
	display: flex;
}

.gl_seventhpanel_right {
	width: 100%;
	height: 100vh;
	margin-left: auto;
	display: flex;
	position: relative;
	justify-content: flex-end;
}

.gl_seventhpanel_mid {
	width: 29%;
	height: 100%;
	position: absolute;
	left: 50%;
	transform: translateX(-50%);
	display: flex;
	top: 0;
	z-index: 1;
	background: #8f6c95;
}

.gl_seventhpanel_mid ul {
	display: flex;
	flex-direction: column;
	width: 100%;

	padding: 20rem 8% 0;
}

.gl_seventhpanel_mid ul li {
	font-family: var(--title-font);
	font-size: 6rem;
	font-style: normal;
	font-weight: 800;
	line-height: normal;
	cursor: pointer;
	transition: var(--transition-03s);
	display: flex;
	width: 100%;
	gap: 1rem;
}

.gl_seventhpanel_mid ul li span {
	width: 3rem;
}

.gl_seventhpanel_mid ul li svg {
	width: 100%;
	height: 100%;
	display: block;
}

.gl_seventhpanel_mid ul li:first-child .gl_seventhpanel_midfill {
	fill: var(--yellow-cl);
	transition: var(--transition-03s);
}

.gl_seventhpanel_mid ul li:nth-child(2) .gl_seventhpanel_midfill {
	fill: var(--orange-cl);
	transition: var(--transition-03s);
}

.gl_seventhpanel_mid ul li:first-child {
	color: var(--yellow-cl);
}

.gl_seventhpanel_mid ul li:nth-child(2) {
	color: var(--orange-cl);
}

.gl_seventhpanel_mid ul li:hover {
	color: #fff;
}

.gl_seventhpanel_mid ul li:hover .gl_seventhpanel_midfill {
	fill: #fff;
}

.gl_seventhpanel_tableft {
	width: 35.5%;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: flex-end;
	padding: 0px 0px;
	display: flex;
	margin-top: 12rem;
}

.gl_seventhpanel_tabMid {
	display: flex;
	width: 29%;
	position: relative;
	z-index: 2;
}

.gl_seventhpanel_tabMid ul {
	width: 100%;
	display: flex;
	flex-direction: column;
	justify-content: center;
	padding: 0 10%;
}

.gl_seventhpanel_tableft-Box {
	width: 75%;
	background: var(--yellow-cl);
	height: 100%;
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 0 10%;
}

.gl_seventhpanel_imgTop {
	width: 100%;
	position: absolute;
	top: -0.1rem;
	left: -0.1rem;
}

.gl_seventhpanel_imgBot {
	width: 100%;
	position: absolute;
	bottom: -0.1rem;
	right: -0.1rem;
}

.gl_seventhpanel_tableft_txt {
	color: #fff;
	font-family: var(--body-font);
	font-size: 5rem;
	font-weight: 500;
	line-height: 6rem;
	margin-top: 3rem;
}

.gl_seventhpanel_tabright {
	width: 35.5%;
	height: 100%;
	display: flex;
	align-items: center;
	padding: 0px 0px;
	display: flex;
	margin-top: -35rem;
}

.gl_seventhpanel_tabright-Box {
	width: 75%;
	background: var(--orange-cl);
	height: 100%;
	position: relative;
	display: flex;
	align-items: center;
	padding: 0 5%;
}

.gl_seventhpanel_tabright_txt {
	color: #fff;
	font-family: var(--body-font);
	font-size: 4rem;
	font-weight: 500;
	line-height: 5rem;
}

.gl_eigthpanel {
	height: 100vh;
}

.gl_eigthpanel_wp {
	display: flex;
	width: 100%;
	height: 100%;
	position: relative;
}

.gl_eigthpanel_left {
	width: 35.5%;
	height: 100%;
	position: relative;
	display: flex;
	flex-direction: column;
	padding-left: 10%;
	padding-right: 2%;
	justify-content: center;
}

.gl_eigthpanel_title {
	color: var(--primary-green-cl);
	font-family: var(--title-font);
	font-size: 6.9rem;
	font-weight: 800;
	line-height: 7.5rem;
}

.gl_eigthpanel_right {
	width: 35.5%;
	margin-left: auto;
	display: flex;
	flex-direction: column;
	padding-left: 5%;
	color: var(--primary-green-cl);
	padding-right: 10%;
	justify-content: center;
}

.gl_eigthpanel_right .accordion-title {
	font-family: var(--title-font);
	font-size: 5rem;
	font-style: normal;
	font-weight: 800;
	line-height: normal;
}

.gl_eigthpanel_right .accordion-content {
	color: var(--body-font);
	font-size: 2.4rem;
	font-weight: 500;
	line-height: 3.5rem;
}

.accordion {
	display: flex;
	flex-direction: column;
}

.accordion-header {
	cursor: pointer;
}

.accordion-content {
	display: none;
	padding-left: 2rem;
	padding-top: 1rem;
	padding-bottom: 1rem;
}

.accordion-item.active .accordion-content {
	display: block;
}

.accordion-title {
	position: relative;
	padding-left: 2rem;
}

.accordion-title::before {
	content: "+";
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	left: -3rem;
	transition: var(--transition-03s);
	font-size: 6rem;
	font-weight: 400;
	line-height: 0;
}

.accordion-item.active .accordion-title::before {
	content: "-";
}

.gl_eigthpanel_mid {
	width: 29%;
	height: 100%;
	position: absolute;
	left: 50%;
	transform: translateX(-50%);
	display: flex;
	top: -35rem;
	z-index: 1;
}

.gl_eigthpanel_mid_img {
	width: 100%;
}

.gl_map {
	width: 100%;
	height: auto;
	background: #e2e2df;
	margin-top: 20rem;
	margin-bottom: 10rem;
	padding-bottom: 8rem;
}

.gl_map_wp {
	display: flex;
	width: 100%;
	height: 100%;
	position: relative;
	align-items: center;
}

.gl_map_right {
	width: 35.5%;
	height: 100%;
	margin-left: auto;
	display: flex;
	flex-direction: column;
	padding-right: 5%;
	justify-content: center;
}

.gl_map_right_title {
	color: var(--primary-green-cl);
	font-family: var(--title-font);
	font-size: 6.9rem;
	font-weight: 800;
	line-height: 7.5rem;
}

.gl_map_right_txt {
	color: var(--body-cl);
	font-size: 2rem;
	font-weight: 500;
	line-height: 2.6rem;
	margin-top: 4rem;
	width: 80%;
}

/* ! tabbing shape */
.tabbing_wshape {
	margin-top: 10rem;
	padding-bottom: 10rem;
}

.tabbing_wshape_wp {
	display: flex;
	width: 100%;
	height: 100%;
	position: relative;
	align-items: flex-start;
}

.tabbing_wshape_left {
	width: 35.5%;
	height: 100%;
	position: relative;
	display: flex;
	flex-direction: column;
	padding-left: 10%;
	padding-right: 3%;
}

.tabbing_wshape_left_title {
	color: var(--primary-green-cl);
	font-family: var(--title-font);
	font-size: 6.9rem;
	font-weight: 800;
	line-height: 7.5rem;
}

.tabbing_wshape_left_txt {
	color: var(--primary-green-cl);
	font-size: 2rem;
	font-weight: 500;
	line-height: 2.6rem;
	margin-top: 4rem;
}

.tabbing_wshape_tabbing_listing {
	display: flex;
	flex-direction: column;
	width: 100%;
	margin-top: 4rem;
}

.tabbing_wshape_tabbing_listing ul {
	flex-direction: column;
	width: 100%;
	display: flex;
	gap: 1rem;
}

.tabbing_wshape_tabbing_listing ul li {
	display: flex;
	cursor: pointer;
	color: var(--primary-green-cl);
	font-family: var(--title-font);
	font-size: 3rem;
	font-weight: 300;
	align-items: center;
	gap: 2rem;
}

.tabbing_wshape_listing-icon {
	width: 31px;
	height: 44px;
}

.tabbing_wshape_listing-icon svg {
	width: 100%;
	height: 100%;
	display: block;
}

.wshape_listing-icon-fill {
	stroke: var(--primary-green-cl);
	transition: var(--transition-03s);
}

.tabbing_wshape_tabbing_listing ul li.active .wshape_listing-icon-fill,
.tabbing_wshape_tabbing_listing ul li:hover .wshape_listing-icon-fill {
	fill: var(--primary-green-cl);
	stroke: var(--primary-green-cl);
	font-weight: 800;
}

.tabbing_wshape_tabbing_listing ul li.active {
	font-weight: 800;
}

.tabbing_wshape_right {
	width: 55%;
	margin-left: auto;
	display: flex;
	flex-direction: column;
	padding-right: 7%;
	justify-content: center;
	/* margin-top: 20rem; */
	/* padding-top: 20rem; */
	position: sticky;
	top: 2rem;
}

.tabbing_wshape_right_wp {
	width: 100%;
	height: 100%;
	position: relative;
	display: flex;
}

.tabbing_wshape_listing-contentbox {
	display: flex;
	position: absolute;
	width: 100%;
	opacity: 0;
	pointer-events: none;
	transition: var(--transition-03s);
	overflow: hidden;
}

.tabbing_wshape_listing-contentbox.active {
	opacity: 1;
	pointer-events: all;
	position: relative;
	display: flex;
}

.tabbing_wshape_listing-shape {
	position: absolute;
	width: 100%;
	left: 0;
	bottom: 0;
}

.shape-overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 60%; /* adjust for how much left coverage you want */
	height: 100%;
	z-index: 2;
}

.tabbing_wshape_left_txtbox {
	width: 60%;
	position: absolute;
	height: 100%;
	display: flex;
	flex-direction: column;
	padding-top: 22rem;
	padding-left: 4rem;
	padding-right: 20rem;
}

.tabbing_wshape_left_txtbox-title {
	color: #fff;
	font-family: var(--title-font);
	font-size: 3rem;
	font-weight: 800;
	line-height: 3.5rem;
}

.tabbing_wshape_left_txtbox-txt {
	color: #fff;
	font-size: 1.6rem;
	font-weight: 500;
	line-height: 2.2rem;
	margin-top: 1.5rem;
}

.tabbing_wshape_left_txtbox-btn {
	display: flex;
	margin-top: 2rem;
}

.tabbing_wshape_left_txtbox-btn a {
	font-size: 1.8rem;
}

/* ! discover more */
.discovermore {
	padding: 10rem 0;
}

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

.discovermore_title {
	color: var(--primary-green-cl);
	font-family: var(--title-font);
	font-size: 6.9rem;
	font-weight: 800;
	line-height: 7.5rem;
	padding-left: 10%;
}

.discovermore_wp {
	display: flex;
	width: 100%;
	padding: 0 5%;
	margin-top: 5rem;
}

.discovermore_box {
	width: 100%;
}

.discovermore_box a {
	display: flex;
	width: 100%;
	height: 100%;
	flex-direction: column;
}

.discovermore_box-img {
	width: 100%;
	border-radius: 1.2rem;
	overflow: hidden;
	height: 45rem;
	position: relative;
}

.discovermore_box-name {
	color: var(--primary-green-cl);
	text-align: center;
	font-family: var(--title-font);
	font-size: 3rem;
	font-weight: 800;
	line-height: normal;
	margin-top: 2rem;
}

.discovermore_box-shape {
	position: absolute;
	bottom: 0;
	left: 0;
	display: flex;
	width: 100%;
	color: #fff;
	font-size: 2.4rem;
	font-weight: 500;
	transform: translateY(100%);
	transition: all 0.8s ease-in-out;
}

.discovermore_box-shape span {
	position: absolute;
	bottom: 2rem;
	text-align: center;
	width: 100%;
}

.discovermore_box a:hover .discovermore_box-shape {
	transform: translateY(0);
	transition: var(--transition-03s);
}

/* ! publications */
.fp-sliderBanner {
	width: 100%;
	height: 100vh;
	position: absolute;
	left: 0;
	top: 0;
}

.sliderBanner_img {
	width: 100%;
	height: 100%;
	position: relative;
	background-position: center center;
	background-repeat: no-repeat;
	background-size: cover;
}

.blockListing {
	padding: 20rem 0 10rem;
	min-height: 100vh;
}

.blockListing_wp {
	display: flex;
	flex-direction: column;
	padding: 0 5%;
}

.blockListing_title {
	color: var(--primary-green-cl);
	font-family: var(--title-font);
	font-size: 6.9rem;
	font-weight: 800;
	line-height: 7.5rem;
	padding: 0 5%;
}

.blockListing_filter {
	display: flex;
	width: 100%;
	margin-top: 5rem;
	align-items: center;
}

.blockListing_filter_title {
	color: var(--primary-green-cl);
	font-size: 2.5rem;
	line-height: 3rem;
	margin-right: 2rem;
}

.blockListing_filter_dropdown {
	display: flex;
	gap: 4rem;
	align-items: center;
}

.blockListing_filter_dropdown select {
	color: var(--primary-green-cl);
	font-size: 2.5rem;
	font-weight: 700;
	line-height: 3rem;
	appearance: none;
	cursor: pointer;
	padding: 0rem 3rem 0 1rem;
	background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAA8AAAAcCAYAAAC+lOV/AAAACXBIWXMAAAsTAAALEwEAmpwYAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAFISURBVHgBpdSvb8JQEAfw66ticzA1MoEg+w8QMyAmwCBQS3CbBgW+mQSJR0HAAAEBCAQKwX9AgiM4ggQBSeEKr9DrryucaNImn++7174edDotvVj804fDvh601FjsXTseD7BcLgArHv8EbolU6tu8GY8HMBoN2FhtNFqaooC5cpAOBF7S6SxkMllLB9PphIedAnq9NsznMx6WAcnk7R00m3XPAEEf5HI/kEh8sQKE08N8/tcS0O22Yb1e8TAN2O93UKtVbQGuGK5biEY/XAM8cSj0AoVC2Raw3W6MewXPKPgUXTUcfjuHlnhYBlQq/+aqGCDgiWJhulfZtuBCud/LSyzx2rbDsgF928ajSaH8bJ6YnmkKXTGFeFQpdMQ4hii8/0lcMUKcIhxowRTiVPGCJnaCOFX8SjwKsdRI5FV7BBory4EXFGKdAL3R6i0FoYNwAAAAAElFTkSuQmCC);
	background-repeat: no-repeat;
	background-position: right center;
	background-size: 13px;
}

.blockListing_filter-list {
	display: flex;
	width: 100%;
	margin-top: 6rem;
	flex-wrap: wrap;
	gap: 6%;
}

.blockListing_filter-item {
	height: 434px;
	width: 29.3333%;
	margin-bottom: 5rem;
	display: flex;
}

.blockListing_filter-item a {
	width: 100%;
	height: 100%;
	display: flex;
	flex-direction: column;
	padding: 6rem 3rem;
	border-radius: 5px;
	background: #3d441e;
}

.p_listing_top {
	display: flex;
	width: 100%;
	flex-direction: column;
	height: 10rem;
}

.p_listing_date {
	color: #fff;
	font-size: 2rem;
	font-weight: 500;
	line-height: 2.5rem;
}

.p_listing_cat {
	color: #fff;
	font-family: var(--title-font);
	font-size: 3rem;
	font-weight: 800;
	line-height: 3.5rem;
	margin-top: 0.5rem;
}

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

.p_listing_title {
	color: #fff;
	font-size: 2.5rem;
	font-weight: 900;
	line-height: 3rem;
}

.p_listing_subtitle {
	color: #fff;

	font-size: 1.6rem;
	font-style: normal;
	font-weight: 500;
	line-height: 2.5rem;
}

.p_listing_btn {
	color: #fff;
	font-family: var(--title-font);
	font-size: 2rem;
	font-style: normal;
	font-weight: 300;
	line-height: 2.6rem;
	display: flex;
	margin-top: auto;
	gap: 1rem;
}

.blockListing_filter-item.cat_1 a {
	background: var(--primary-green-cl);
}
.blockListing_filter-item.cat_2 a {
	background: #b7c7d3;
}
.blockListing_filter-item.cat_3 a {
	background: var(--dark-puple-cl);
}
.blockListing_filter-item.cat_4 a {
	background: #8f6c95;
}

.blockListing_filter-item a:hover {
	background: var(--body-cl);
}

/* get in touch */

.git_block {
	width: 100%;
	height: 48rem;
	background: var(--primary-green-cl);
	display: flex;
}

.git_block_wp {
	width: 100%;
	height: 100%;
	display: flex;
	position: relative;
	padding: 0 10%;
	align-items: center;
}

.git_block_left {
	display: flex;
	flex-direction: column;
	width: 33%;
}

.git_block_title {
	color: #fff;
	font-family: var(--title-font);
	font-size: 6.9rem;
	font-style: normal;
	font-weight: 800;
	line-height: 7.5rem;
}

.git_block_txt {
	color: #fff;
	font-size: 2rem;
	font-style: normal;
	font-weight: 500;
	line-height: 2.6rem;
	margin-top: 2rem;
}

.git_block_right {
	display: flex;
	flex-direction: column;
	width: 33%;
	margin-left: 8.5rem;
	position: relative;
	z-index: 1;
}
.git_block_right ul {
	display: flex;
	flex-direction: column;
}

.git_block_right li {
	color: #fff;
	font-family: var(--title-font);
	font-size: 4rem;
	font-style: normal;
	font-weight: 300;
	line-height: 5rem;
}

.git_block_right li a:hover {
	color: #d9c454;
}

.git_blockshape {
	width: 45%;
	height: 100%;
	position: absolute;
	right: 0;
	top: 0;
	overflow: hidden;
}

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

.git_blockshape-one {
	position: absolute;
	right: 0;
	bottom: -0.1rem;
}

.git_blockshape-two {
	position: absolute;
	left: 0;
	top: 0;
}

/* ! Job item */
.blockListing_filter-jobitem {
	width: 29.3333%;
	margin-bottom: 5rem;
	display: flex;
}

.blockListing_filter-jobitem a {
	width: 100%;
	display: flex;
	flex-direction: column;
}

.blockListing_filter-jobitem-top {
	display: flex;
	font-size: 3rem;
	font-style: normal;
	font-weight: 800;
	line-height: 3rem;
	padding: 0px 3rem 2rem 3rem;
}

.blockListing_filter-jobitem-bot {
	display: flex;
	height: 50rem;
	padding: 3rem 3rem 10rem 3rem;
	border-radius: 5px;
	display: flex;
	flex-direction: column;
	position: relative;
}

.blockListing_img {
	position: absolute;
	right: 0;
	bottom: 0;
	pointer-events: none;
}

.blockListing_filter-jobitem-title {
	color: #fff;
	font-family: var(--title-font);
	font-size: 4rem;
	font-style: normal;
	font-weight: 800;
	line-height: 5rem;
	width: 80%;
}

.blockListing_filter-jobitem-date {
	color: #fff;
	font-size: 2.4rem;
	font-style: normal;
	font-weight: 500;
	line-height: 3rem;
	margin-top: auto;
	display: flex;
	flex-direction: column;
}

.blockListing_filter-jobitem-btn {
	display: flex;
	margin-top: 2rem;
}

.blockListing_filter-jobitem.hospitality--\&-travel
	.blockListing_filter-jobitem-bot {
	background: var(--hospitality-cl);
}

.blockListing_filter-jobitem.agribusiness .blockListing_filter-jobitem-bot {
	background: var(--agri-cl);
}

.blockListing_filter-jobitem.finance .blockListing_filter-jobitem-bot {
	background: var(--finance-cl);
}

.blockListing_filter-jobitem.logistics .blockListing_filter-jobitem-bot {
	background: var(--logistics-cl);
}

.blockListing_filter-jobitem.real-estate .blockListing_filter-jobitem-bot {
	background: var(--realestate-cl);
}

.blockListing_filter-jobitem.technology-\&-energy
	.blockListing_filter-jobitem-bot {
	background: var(--technology-cl);
}

.blockListing_filter-jobitem.commerce-\&-manufacturing
	.blockListing_filter-jobitem-bot {
	background: var(--commerce-cl);
}

.blockListing_filter-jobitem.hospitality--\&-travel
	.blockListing_filter-jobitem-top {
	color: var(--hospitality-cl);
}
.blockListing_filter-jobitem.agribusiness .blockListing_filter-jobitem-top {
	color: var(--agri-cl);
}
.blockListing_filter-jobitem.finance .blockListing_filter-jobitem-top {
	color: var(--finance-cl);
}
.blockListing_filter-jobitem.logistics .blockListing_filter-jobitem-top {
	color: var(--logistics-cl);
}

.blockListing_filter-jobitem.real-estate .blockListing_filter-jobitem-top {
	color: var(--realestate-cl);
}
.blockListing_filter-jobitem.technology-\&-energy
	.blockListing_filter-jobitem-top {
	color: var(--technology-cl);
}

.blockListing_filter-jobitem.commerce-\&-manufacturing
	.blockListing_filter-jobitem-top {
	color: var(--commerce-cl);
}

.hospitality--\&-travel .blockListing_subtitle {
	color: var(--hospitality-cl);
}
.agribusiness .blockListing_subtitle {
	color: var(--agri-cl);
}
.finance .blockListing_subtitle {
	color: var(--finance-cl);
}
.logistics .blockListing_subtitle {
	color: var(--logistics-cl);
}

.real-estate .blockListing_subtitle {
	color: var(--realestate-cl);
}
.technology-\&-energy .blockListing_subtitle {
	color: var(--technology-cl);
}

.commerce-\&-manufacturing .blockListing_subtitle {
	color: var(--commerce-cl);
}

/* ! sp forms */
.sp_form {
	margin: 5rem 0;
}

.sp_form_wp {
	width: 100%;
	height: 120rem;
	display: flex;
}

.sp_form_left {
	width: 50%;
	height: 100%;
	background: #b7c7d3;
	position: relative;
	display: flex;
}

.sp_form_left-shape {
	width: 100%;
	position: absolute;
	right: 0;
	bottom: 0;
	pointer-events: none;
}

.sp_form_left-desc {
	display: flex;
	flex-direction: column;
	padding: 5rem 20%;
}

.sp_form_left-title {
	color: #fff;
	font-family: var(--title-font);
	font-size: 6.9rem;
	font-style: normal;
	font-weight: 800;
	line-height: 7.5rem;
}

.sp_form_left-txt {
	color: #fff;
	font-size: 2rem;
	font-style: normal;
	font-weight: 500;
	line-height: 2.6rem;
	margin-top: 2.5rem;
	width: 85%;
}

.sp_form_right {
	width: 50%;
	height: 100%;
	background: var(--dark-puple-cl);
	position: relative;
}

.sp_form_right-shape {
	width: 100%;
	position: absolute;
	right: 0;
	top: 0;
	pointer-events: none;
}

.life_aqua {
	padding: 10rem 0 18rem 0;
}

.life_aqua_wp {
	display: flex;
	width: 100%;
	position: relative;
	align-items: flex-end;
}

.life_aqua_left {
	width: 60%;
	background: var(--orange-cl);
	height: 66.5rem;
	display: flex;
	flex-direction: column;
	padding: 0 10%;
	justify-content: center;
}

.life_aqua_title {
	color: #fff;
	font-family: var(--title-font);
	font-size: 6.9rem;
	font-weight: 800;
	line-height: 7.5rem;
}

.life_aqua_txt {
	color: #fff;
	font-size: 2rem;
	font-weight: 500;
	line-height: 2.6rem;
	margin-top: 4rem;
}

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

.life_aqua_right {
	width: 45%;
	right: 0;
	position: relative;
}

.life_aqua_shapeone {
	position: absolute;
	top: 0;
	left: -0.1rem;
	width: 100%;
}

.life_aqua_shapetwo {
	position: absolute;
	bottom: 0;
	left: -0.1rem;
}

.blockSp_details {
	height: auto;
	min-height: auto;
}

.blockListing_subtitle {
	padding: 0 5%;
	font-size: 3rem;
	font-weight: 900;
	line-height: 3rem;
	margin-bottom: 8rem;
}

.blockListing_mainDate {
	color: var(--primary-green-cl);
	font-size: 3rem;
	font-weight: 500;
	line-height: 3.5rem;
	padding: 0 5%;
	margin-top: 3rem;
}

.sp_details-left {
	width: 50%;
	height: 100%;
	position: relative;
	display: flex;
	flex-direction: column;
	padding-left: 10%;
	padding-right: 5rem;
	padding-top: 5rem;
}

.sp_details-info-repeatable {
	display: flex;
	flex-direction: column;
	gap: 3rem;
	margin-bottom: 6rem;
}

.sp_details-info-repeatable:last-child {
	margin-bottom: 0;
}

.sp_details-info-repeatable-title {
	font-family: var(--title-font);
	font-size: 6.9rem;
	font-weight: 800;
	line-height: 7.5rem;
	color: var(--primary-green-cl);
}

.sp_details-info-repeatable-txt {
	font-size: 2rem;
	font-weight: 500;
	line-height: 2.6rem;
	color: var(--body-cl);
	margin-top: 1.5rem;
}

.sp_form-details {
	height: auto;
}

.sp_form-details .sp_form_right {
	position: sticky;
	top: 2rem;
	height: 120rem;
}

.blockBrands {
	min-height: auto;
	padding-bottom: 15rem;
}

.blockBrands_txt {
	padding: 0 5%;
	color: var(--primary-green-cl);
	font-size: 3rem;
	font-weight: 500;
	line-height: 4rem;
	margin-top: 4rem;
	width: 40%;
}

.brandsListing {
	padding-bottom: 18rem;
}

.brandsListing_wp {
	display: flex;
	width: 100%;
	padding: 0 5%;
	flex-direction: column;
}

.brandsListing_views {
	display: flex;
	flex-wrap: wrap;
	margin-top: 8rem;
	width: 100%;
	gap: 2.66%;
}

.brandsListing_box {
	width: 23%;
	margin-bottom: 3rem;
}

.brandsListing_box a {
	width: 100%;
	height: 100%;
	display: flex;
	flex-direction: column;
}

.brandsListing_img {
	width: 100%;
	height: 356px;
	background: red;
}

.brandsListing_img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.brandsListing_logo {
	width: 100%;
	height: 10rem;
	display: flex;
	align-items: center;
	justify-content: center;
	background: #fff;
	padding: 1rem 0;
}

.brandsListing_btn {
	display: flex;
	justify-content: center;
	margin-top: 10px;
	opacity: 0;
	transition: var(--transition-03s);
}

.brandsListing_btn .btn_courbe {
	background: var(--primary-green-cl);
	color: #fff;
}

.brandsListing_box a:hover .brandsListing_btn {
	opacity: 1;
	transition: var(--transition-03s);
}

/* ! Teams */
.Banner {
	height: 100vh;
	position: relative;
	overflow: hidden;
}

.Banner_video-bg {
	position: absolute;
	top: 50%;
	left: 50%;
	min-width: 100%;
	min-height: 100%;
	width: auto;
	height: auto;
	z-index: 1;
	transform: translate(-50%, -50%);
	object-fit: cover;
}

.banner-overlay {
	position: relative;
	z-index: 1;
	color: white;
	text-align: center;
	top: 50%;
	transform: translateY(-50%);
}

.bod {
	width: 100%;
}

.bod_wp {
	display: flex;
	width: 100%;
	height: 100%;
	position: relative;
	padding: 7.5rem 5% 0;
	flex-wrap: wrap;
	gap: 1%;
}

.bod_listing {
	width: 68%;
}

.bod_tab {
	display: none;
	opacity: 0;
	transition: opacity 0.4s ease;
}

.bod_tab.active {
	display: flex;
	gap: 3%;
	flex-wrap: wrap;
	opacity: 1;
}

.bod_box {
	width: 31.3333%;
	margin-bottom: 5rem;
	transition: var(--transition-03s);
	cursor: pointer;
	display: flex;
	flex-direction: column;
	overflow: hidden;
}

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

.bod_box-img {
	padding: 0 10%;
	position: relative;
	z-index: 1;
	height: 328px;
	background: #d9d9d9;
	display: flex;
	align-items: flex-end;
	overflow: hidden;
	transition: var(--transition-03s);
}

.bod_box-img .bod_box-linkdin {
	width: 2.5rem;
	position: absolute;
	right: 2rem;
	top: 2rem;
	opacity: 0;
	visibility: hidden;
	transition: var(--transition-03s);
	pointer-events: none;
}

.bod_box a:hover .bod_box-img .bod_box-linkdin {
	opacity: 1;
	visibility: visible;
	transition: var(--transition-03s);
}

.bod_box-imgshape {
	width: 100%;
	position: absolute;
	left: 0;
	top: 0;
	transition: var(--transition-03s);
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
	z-index: -1;
}

.bod_box:hover .bod_box-img {
	background: transparent;
}

.bod_box:hover .bod_box-imgshape {
	opacity: 1;
	visibility: visible;
}

.bod_box-desc {
	display: flex;
	flex-direction: column;
	width: 100%;
	align-items: center;
	padding: 15px 5px;
}

.bod_box-title {
	color: var(--body-cl);
	font-family: var(--title-font);
	font-size: 1.8rem;
	font-weight: 800;
	line-height: 2rem;
	text-align: center;
}

.bod_box-position {
	color: var(--body-cl);
	font-size: 1.6rem;
	font-style: normal;
	font-weight: 300;
	line-height: normal;
	margin-top: 0.8rem;
}

.bod_box-btn {
	display: flex;
	justify-content: center;
}

.bod_box-btn .btn_courbe {
	background: var(--primary-green-cl);
	color: #fff;
	font-size: 1.6rem;
	font-weight: 300;
	line-height: 2rem;
	transition: var(--transition-03s);
	transform: translateY(100%);
	opacity: 0;
}

.bod_box:hover .bod_box-btn .btn_courbe {
	transform: translateY(0);
	opacity: 1;
	transition: var(--transition-03s);
}

.bod_right {
	width: 30%;
	margin-left: auto;
	display: flex;
	flex-direction: column;
	margin-top: -30rem;
	position: relative;
	z-index: 2;
}

.bod_right-rest {
	background: var(--primary-green-cl);
	display: flex;
	flex-direction: column;
	height: 100%;
	padding: 1rem 7rem;
}

.bod_right-top {
	display: flex;
	flex-direction: column;
}

.bod_right-top-title {
	color: #fff;
	font-family: var(--title-font);
	font-size: 6.5rem;
	font-style: normal;
	font-weight: 800;
	line-height: normal;
}

.bod_right-top-txt {
	color: #fff;
	font-size: 2.8rem;
	font-style: normal;
	font-weight: 500;
	line-height: 3.4rem;
	margin-top: 5rem;
}

.bod_right-top-links {
	display: flex;
	margin-top: 5rem;
	flex-direction: column;
	gap: 4rem;
}

.bod_right-top-links a {
	display: flex;
	color: #fff;
	font-family: var(--title-font);
	font-size: 3rem;
	font-style: normal;
	font-weight: 300;
	line-height: 3rem;
	align-items: center;
	gap: 2rem;
}

.links_dl-icn {
	width: 3.8rem;
}

.links_dl_txt {
	width: 80%;
}

.links_dl-icn svg {
	display: block;
	width: 100%;
	height: 100%;
}

.filltoyellow {
	fill: #fff;
	transition: var(--transition-03s);
}

.bod_right-top-links a:hover {
	color: var(--yellow-cl);
}

.bod_right-top-links a:hover .filltoyellow {
	fill: var(--yellow-cl);
}

.filtericnSvg {
	stroke: #d9d9d9;
	transition: var(--transition-03s);
}

.bod_right-filter {
	width: 100%;
	display: flex;
	margin-top: 10rem;
	position: sticky;
	top: 5rem;
	padding-bottom: 10rem;
}

.bod_right-filter ul {
	display: flex;
	flex-direction: column;
	gap: 1rem;
}

.bod_right-filter ul li a {
	color: #fff;
	font-family: var(--title-font);
	font-size: 3rem;
	font-style: normal;
	font-weight: 300;
	line-height: 3.5rem;
	cursor: pointer;
	display: flex;
	align-items: center;
	gap: 1rem;
}

.filter_icn {
	width: 3rem;
}

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

.bod_right-filter ul li a:hover {
	color: var(--yellow-cl);
}

.bod_right-filter ul li.active {
	pointer-events: none;
}

.bod_right-filter ul li.active a .filtericnSvg {
	fill: #d9d9d9;
	stroke: #d9d9d9;
}

.bod_right-filter ul li a:hover .filtericnSvg {
	fill: var(--yellow-cl);
	stroke: var(--yellow-cl);
}

.bod_right-filter ul li.active a {
	font-weight: 800;
}

.bod_box-txt {
	display: none;
}

.bod_pop {
	position: fixed;
	height: 100vh;
	background: rgba(217, 217, 217, 1);
	width: 100%;
	left: 0;
	top: 0;
	z-index: 999;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: var(--transition-03s);
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
}

.bod_pop.active {
	opacity: 1;
	visibility: visible;
	pointer-events: auto;
}

.bod_pop_cnt {
	width: 80%;
	height: 100%;
	display: flex;
	position: relative;
}

.bod_popup_wp {
	display: flex;
	width: 100%;
	padding: 0 3%;
}

.bod_pop_close {
	position: absolute;
	top: 2rem;
	right: 2rem;
	width: 10rem;
	height: 10rem;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	z-index: 2;
}

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

.bod_popup-left {
	display: flex;
	align-items: center;
	padding-right: 10%;
}

.bod_popup-right {
	margin-left: auto;
	width: 33.333%;
	background: var(--yellow-cl);
	height: 100%;
	display: flex;
	flex-direction: column;
	padding-top: 20rem;
	position: relative;
}

.bod_popup-right-shape {
	width: 50%;
	position: absolute;
	right: -0.1rem;
	top: 0;
}

.bod_popup-img {
	width: 100%;
	display: flex;
	flex-direction: column;
	position: relative;
	justify-content: flex-end;
	isolation: isolate;
}

.bod_popup-imgshape {
	position: absolute;
	left: 0;
	width: 100%;
	z-index: -1;
}

.bod_popup-name {
	color: #fff;
	text-align: center;
	font-family: var(--title-font);
	font-size: 3rem;
	font-style: normal;
	font-weight: 800;
	line-height: normal;
	margin-top: 2rem;
}

.bod_popup-position {
	color: #fff;
	text-align: center;
	font-size: 2rem;
	font-style: normal;
	font-weight: 500;
	line-height: 2.4rem;
}

.bod_popup-txt {
	display: flex;
	flex-direction: column;
	color: var(--primary-green-cl);
	font-size: 2rem;
	font-style: normal;
	font-weight: 500;
	line-height: 4rem;
}

.bod_popup-txt h3 {
	color: var(--primary-green-cl);
	font-family: var(--title-font);
	font-size: 4rem;
	font-style: normal;
	font-weight: 800;
	line-height: 5.5rem;
	width: 80%;
	margin-bottom: 2rem;
}

.bod_popup-txt ul {
	padding-left: 0;
}

.bod_popup-txt ul li {
	display: flex;
	align-items: flex-start;
	gap: 0.5em;
	position: relative;
	padding-left: 0;
}

.bod_popup-txt ul li::before {
	content: "•";
	color: var(--primary-green-cl);
	font-size: 1.6rem;
}

.bod_intro {
}

.bod_intro_wp {
	display: flex;
	width: 100%;
	height: 100%;
	position: relative;
	padding: 0 5% 7.5rem;
	flex-wrap: wrap;
	gap: 1%;
}

.bod_intro_left {
	width: 68%;
	display: flex;
	flex-direction: column;
	padding-left: 5%;
}

.bod_intro_right {
	width: 30%;
	margin-left: auto;
	display: flex;
	flex-direction: column;
	position: relative;
}

.bod_intro_shape {
	position: absolute;
	width: 100%;
	right: 0;
	bottom: -0.1rem;
}

.bod_intro_title {
	color: var(--primary-green-cl);
	font-family: var(--title-font);
	font-size: 6.9rem;
	font-weight: 800;
	line-height: 7.5rem;
}

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

.bod_intro_inner-left {
	width: 43%;
	flex-direction: column;
}

.bod_intro_inner-txt {
	color: var(--primary-green-cl);
	font-size: 2rem;
	font-style: normal;
	font-weight: 500;
	line-height: 2.6rem;
}

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

.bod_intro_inner-right {
	display: flex;
	width: 48%;
	margin-left: auto;
}

.bod_intro_inner-right ul {
	display: flex;
	flex-wrap: wrap;
	gap: 2%;
}

.bod_intro_inner-right li {
	display: flex;
	flex-direction: column;
	font-family: var(--title-font);
	color: var(--primary-green-cl);
	white-space: nowrap;
	width: 48%;
	margin-bottom: 4rem;
}

#management .bod_box-btn {
	display: none;
}

/* ! History */
.history_intro {
	position: relative;
	z-index: 1;
}

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

.history_intro-left {
	width: 36%;
	height: 100vh;
	padding-left: 5%;
	display: flex;
	position: relative;
}

.history_intro-shape {
	position: absolute;
	left: 0;
	bottom: 0;
	width: 100%;
}

.history_intro-img {
	width: 100%;
	height: 100%;
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center center;
}

.history_intro-mid {
	width: 28%;
	min-height: 100vh;
	display: flex;
	flex-direction: column;
	position: relative;
}

.history_intro-mid-shapetop {
	display: flex;
	flex-direction: column;
	min-height: 50vh;
	position: absolute;
	top: -50%;
	left: 0;
}

.history_intro-mid-topcontent {
	display: flex;
	width: 100%;
	height: 100%;
	background: var(--lightblue-cl);
	flex-direction: column;
	padding: 1rem 5rem 1rem 5rem;
	justify-content: center;
}

.history_intro-mid-shape {
	position: relative;
	bottom: -0.1rem;
}

.history_intro-mid-inner {
	display: flex;
	width: 100%;
	height: 100%;
	background: var(--lightblue-cl);
	flex-direction: column;
	padding: 10rem 5rem 10rem 5rem;
	justify-content: center;
}

.history_intro-mid-topcontent {
	display: flex;
	width: 100%;
	flex-direction: column;
	position: relative;
}

.history_intro-mid-topcontent-title {
	color: #fff;
	font-family: var(--title-font);
	font-size: 6.5rem;
	font-weight: 800;
	line-height: 6rem;
}

.history_intro-mid-topcontent-txt {
	color: #fff;
	font-size: 2rem;
	font-style: normal;
	font-weight: 500;
	line-height: 2.6rem;
	margin-top: 5rem;
}

.history_intro-tabbing {
	display: flex;
	width: 100%;
}

.history_intro-tabbing ul {
	display: flex;
	flex-direction: column;
	gap: 3.5rem;
}

.history_intro-tabbing ul li {
	cursor: pointer;
	display: flex;
	gap: 2rem;
}

.history_intro-tabbing-icn {
	width: 3.2rem;
}

.history_intro-tabbing-icn svg {
	display: block;
	width: 100%;
	height: 100%;
}

.history_intro-tabbing-txt {
	color: #fff;
	font-family: var(--title-font);
	font-size: 6.5rem;
	font-style: normal;
	font-weight: 300;
	line-height: normal;
	transition: var(--transition-03s);
}
.tofillHover-white {
	fill: none;
	transition: var(--transition-03s);
}

.history_intro-tabbing ul li:hover .tofillHover-white,
.history_intro-tabbing ul li.active .tofillHover-white {
	fill: #fff;
}

.history_intro-tabbing ul li.active .history_intro-tabbing-txt {
	font-weight: 600;
}

.history_intro-right {
	width: 36%;
	padding-right: 10%;
	padding-left: 5rem;
	padding-top: 10rem;
	padding-bottom: 5rem;
}

.notvisible {
	display: none;
}

.history_intro-right-content {
	color: var(--primary-green-cl);
	font-size: 2rem;
	font-style: normal;
	font-weight: 500;
	line-height: 2.6rem; /* 130% */
}

.history_intro-right-content li {
	transition: var(--transition-03s);
}

.history_Timeline {
	height: 100vh;
	width: 100%;
	background: #e6e6e6;
	position: relative;
}

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

.history_Timeline-left {
	width: 36%;
	height: 100vh;
	display: flex;
}
.history_Timeline-left-img,
.history_Timeline-right-img {
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	height: 100%;
	width: 100%;
}

.history_Timeline-right {
	width: 36%;
	height: 100%;
}

.history_Timeline-mid {
	width: 28%;
	height: 100vh;
	display: flex;
	position: relative;
	z-index: 2;
}

.history_Timeline-mid-content {
	width: 100%;
	height: 100%;
	background: var(--lightblue-cl);
	padding: 10rem 5rem 0 5rem;
}

.timeLine_box-content-date {
	color: #fff;
	font-family: var(--title-font);
	font-size: 6.5rem;
	font-style: normal;
	font-weight: 800;
	line-height: 7.5rem;
	margin-bottom: 2rem;
}

.history_Timeline-mid-contentappear {
	display: flex;
	flex-direction: column;
	color: #fff;
	font-size: 2rem;
	font-style: normal;
	font-weight: 500;
	line-height: 2rem; /* 130% */
	gap: 4rem;
}

.history_Timeline-mid-contentappear h2 {
	font-size: 2.2rem;
	font-weight: 900;
	margin-bottom: 1rem;
}

.timeLine_box-content-repeat {
	display: flex;
	flex-direction: column;
}

.history_Timeline-bot {
	width: 100%;
	position: absolute;
	left: 0;
	bottom: 0;
	z-index: 1;
}

.history_Timeline-dates-wrapper {
	overflow: hidden;
	width: 100%;
	display: flex;
	position: relative;
}

.history_Timeline-dates {
	width: 100%;
	height: 25rem;
	background: #8d6c94;
	display: flex;
}

.dates-left,
.dates-right {
	height: 100%;
	display: flex;
	width: 36%;
	display: flex;
	align-items: center;
	height: 100%;
}

.dates-mid {
	display: flex;
	width: 28%;
	background: yellow;
	height: 100%;
	position: relative;
	z-index: 999;
}

.alldates {
	display: none;
}

.history_Timeline-dates ul li {
	color: #fff;
	font-family: var(--title-font);
	font-size: 6.5rem;
	font-style: normal;
	font-weight: 800;
	line-height: normal;
	text-transform: uppercase;
	width: 33.3333%;
	cursor: pointer;
	transition: var(--transition-03s);
	padding: 0 4%;
}

.history_Timeline-dates ul li.active {
	display: none;
}

.history_Timeline-dates ul li:hover {
	color: var(--yellow-cl);
}

.history_Timeline-dates ul li:nth-child(4) {
	margin-left: auto;
}

.timeLine_box {
	display: flex;
	flex-direction: column;
}
.timeLine_box-content {
	display: none;
}

.history_Timeline-controls {
	position: absolute;
	right: 5%;
	bottom: 2rem;
	display: flex;
	gap: 2rem;
}

.history_Timeline-controls button {
	background: transparent;
	border: transparent;
	width: 4rem;
	height: 4rem;
	cursor: pointer;
}

.history_Timeline-controls button svg {
	width: 100%;
	height: 100%;
	display: block;
}

.whitestroketoyellow {
	stroke: #fff;
	transition: var(--transition-03s);
}

.history_Timeline-controls button:hover .whitestroketoyellow {
	stroke: var(--yellow-cl);
}

/* ! Group performance */
.groupPerformance {
	width: 100%;
	min-height: 100vh;
}

.groupPerformance_wp {
	display: flex;
	width: 100%;
	height: 100%;
	position: relative;
	padding: 7.5rem 5% 0;
	flex-wrap: wrap;
	gap: 1%;
}

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

.groupPerformance_right {
	width: 30%;
	margin-left: auto;
	display: flex;
	flex-direction: column;
	/* margin-top: -30rem; */
	position: relative;
	z-index: 2;
	position: absolute;
	right: 0;
	height: 120%;
	top: -20%;
}

.groupPerformance_right-bot {
	display: flex;
	flex-direction: column;
	background: var(--primary-green-cl);
	display: flex;
	flex-direction: column;
	height: 100%;
	padding: 1rem 5rem;
}

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

.groupPerformance_left-inner {
	width: 100%;
	display: flex;
}

.left--innerAlign {
	width: 68%;
	display: flex;
	flex-direction: column;
	padding-left: 5%;
	padding-right: 6%;
}

.groupPerformance-intro {
	display: flex;
	flex-direction: column;
}

.groupPerformance-intro-title {
	color: var(--primary-green-cl);
	font-family: var(--title-font);
	font-size: 6.9rem;
	font-weight: 800;
	line-height: 7.5rem;
}

.groupPerformance-intro-txt {
	color: var(--primary-green-cl);
	font-size: 2rem;
	font-style: normal;
	font-weight: 500;
	line-height: 2.6rem;
	margin-top: 2.5rem;
}

#shareprice_spline {
	width: 100%;
}

.groupdPerformace_keyhighlights {
	display: flex;
	flex-direction: column;
	margin-top: 10rem;
}

.groupdPerformace_keyhighlights-top {
	display: flex;
	width: 100%;
}

.groupdPerformace_keyhighlights-title {
	display: flex;
	flex-direction: column;
	gap: 2rem;
	width: 60%;
}

.groupdPerformace_keyhighlights-title h3 {
	color: var(--primary-green-cl);
	font-family: var(--title-font);
	font-size: 6.9rem;
	font-weight: 800;
	line-height: 7.5rem;
}

.groupdPerformace_keyhighlights-title span {
	color: var(--primary-green-cl);
	font-family: var(--title-font);
	font-size: 4rem;
	font-style: normal;
	font-weight: 300;
	line-height: 4rem;
}

.groupdPerformance_keyhighlight-btn {
	display: flex;
	width: 40%;
	margin-left: auto;
	padding-top: 3rem;
	justify-content: flex-end;
}

.groupdPerformance_keyhighlight-btn a {
	display: flex;
	color: var(--primary-green-cl);
	font-weight: 300;
	align-items: flex-start;
}

.groupdPerformance_keyhighlight-btn .dls_info {
	width: 90%;
}

.groupdPerformace_keyhighlights-bot {
	display: flex;
	justify-content: space-between;
	width: 100%;
	margin-top: 10rem;
	display: none;
}

.groupdPerformace_keyhighlights-images {
	display: flex;
	justify-content: space-between;
	width: 100%;
	margin-top: 10rem;
	display: flex;
	align-items: center;
}

.groupdPerformace_keyhighlights-images-left {
	display: 50%;
}

.groupdPerformace_keyhighlights-images-right {
	width: 50%;
	display: flex;
	padding-left: 10%;
}

.groupdPerformace_keyhighlights-images-right ul {
	display: flex;
	flex-direction: column;
	gap: 2rem;
}

.groupdPerformace_keyhighlights-images-right li {
	display: flex;
	color: var(--primary-green-cl);
	font-family: var(--title-font);
	font-size: 2.2rem;
	font-style: normal;
	font-weight: 300;
	line-height: 3rem;
	gap: 2rem;
	align-items: center;
}

.groupdPerformace_keyhighlights-images-right li strong {
	font-weight: 700;
}

.highlight_icn {
	width: 2.5rem;
}

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

.fillArgi {
	fill: var(--agri-cl);
}

.fillRealestate {
	fill: var(--realestate-cl);
}

.fillHospitality {
	fill: var(--hospitality-cl);
}

.fillLogistics {
	fill: var(--logistics-cl);
}

.fillFinance {
	fill: var(--finance-cl);
}

.fillCommerce {
	fill: var(--commerce-cl);
}

.fillTechnology {
	fill: var(--technology-cl);
}

.graph {
	width: 47%;
}

.highcharts-figure {
	display: flex;
	flex-direction: column;
}

.highcharts-figure .tit {
	color: var(--primary-green-cl);
	font-size: 1.8rem;
	font-style: normal;
	font-weight: 700;
	line-height: 2.6rem;
	margin-bottom: 3rem;
}

.groupPerformance_keynumber {
	display: flex;
	flex-direction: column;
	width: 100%;
	margin-top: 10rem;
}

.groupPerformance_keynumber-title {
	color: var(--primary-green-cl);
	font-family: var(--title-font);
	font-size: 40px;
	font-style: normal;
	font-weight: 300;
	line-height: 4rem;
	padding-left: 5%;
	margin-bottom: 4rem;
}

.groupPerformance_keynumber-list {
	display: flex;
	width: 68%;
	gap: 7%;
}

.groupPerformance_keynumber-list li {
	display: flex;
	flex-direction: column;
	font-family: var(--title-font);
	color: var(--primary-green-cl);
	white-space: nowrap;
	margin-bottom: 6rem;
}

.groupPerformance_keynumber-list li .keyvalue_title {
	font-size: 2rem;
	font-weight: 300;
	line-height: 3rem;
}

.groupPerformance_left--inner {
	display: flex;
	margin-top: 10rem;
}

.groupPerformance_right--inner {
	width: 30%;
	position: relative;
	z-index: 5;
	margin-left: auto;
	padding: 0rem 5rem;
	display: flex;
	flex-direction: column;
}

.shareprice_performance {
	display: flex;
	flex-direction: column;
}

.shareprice_performance_title {
	font-family: var(--title-font);
	color: #fff;
	font-size: 6.6rem;
	font-weight: 800;
	line-height: 7rem;
}

.shareprice_performance_price {
	font-family: var(--title-font);
	color: #d9c454;
	font-size: 6.6rem;
	font-weight: 800;
	line-height: 7rem;
}

.shareprice_performance_date {
	font-family: var(--title-font);
	color: #fff;
	font-size: 3rem;
	font-weight: 800;
	line-height: 4rem;
}

.calculatePortfolio {
	display: flex;
	flex-direction: column;
	margin-top: 10rem;
	display: none;
}

.calculatePortfolio_title {
	color: #fff;
	font-family: var(--title-font);
	font-size: 4rem;
	font-style: normal;
	font-weight: 800;
	line-height: 5rem;
}

.gp_performance_title {
	color: #fff;
	font-family: var(--title-font);
	font-size: 4rem;
	font-style: normal;
	font-weight: 300;
	line-height: 4rem; /* 65% */
}

.gp_performance_listing {
	display: flex;
	flex-direction: column;
	color: #fff;
	gap: 5rem;
	margin-top: 5rem;
}

.gp_performance_listing--num {
	font-size: 5.5rem;
	font-weight: 800;
	line-height: 6rem;
	font-family: var(--title-font);
}

.gp_performance_listing--title {
	font-size: 2rem;
	font-weight: 300;
	line-height: 3rem;
	font-family: var(--title-font);
}

.gpPerformaceBlock {
	margin-top: 20rem;
	align-items: flex-start;
}

.gpPerformaceBlock-right {
	position: sticky;
	top: 2rem;
	padding-bottom: 2rem;
}

/* ! value creation */
.gp_valueCreation {
	height: 100vh;
	width: 100%;
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center center;
	position: relative;
	overflow: hidden;
}
.gp_valueCreation-shape {
	width: 100%;
	position: absolute;
	bottom: 0;
	z-index: 2;
	display: none;
}

.gp_valueCreation_wp {
	display: flex;
	width: 100%;
	height: 100%;
	position: relative;
	padding: 0 5%;
}

.gp_valueCreation_right {
	width: 30%;
	margin-left: auto;
	display: flex;
	flex-direction: column;
	position: relative;
	z-index: 2;
	background: #b7c7d3;
	height: 100%;
	padding: 8rem 5rem;
}

.gp_valueCreation_title {
	color: #fff;
	font-family: var(--title-font);
	font-size: 6.9rem;
	font-style: normal;
	font-weight: 800;
	line-height: 7.5rem;
}

.gp_valueCreation_txt {
	color: #fff;
	font-size: 2rem;
	font-style: normal;
	font-weight: 500;
	line-height: 2.6rem;
	margin-top: 2.5rem;
}

/* ! publication block */
.publication_block {
	padding-bottom: 15rem;
}

.publication_wp {
	display: flex;
	width: 100%;
	height: 100%;
	position: relative;
	padding: 0 0% 0;
}

.publication_left {
	width: 36%;
	position: relative;
	display: flex;
	flex-direction: column;
	padding-left: 10%;
	padding-right: 1.5rem;
	padding-top: 10rem;
	padding-bottom: 10rem;
}

.publication_pdfBoxes-title {
	color: var(--primary-green-cl);
	font-family: var(--title-font);
	font-size: 6.9rem;
	font-weight: 800;
	line-height: 7.5rem;
	margin-bottom: 4rem;
}

.publication_pdfBoxes-wp {
	display: flex;
	gap: 15rem;
	flex-direction: column;
}

.publication_pdfBoxes {
	display: flex;
	flex-direction: column;
}

.publication_pdfBoxes-subtitle {
	color: var(--primary-green-cl);
	font-family: var(--primary-green-cl);
	font-size: 2.6rem;
	font-style: normal;
	font-weight: 900;
	line-height: 3rem;
	text-transform: uppercase;
}

.publication_pdfBoxes-list {
	display: flex;
	flex-direction: column;
	margin-top: 7rem;
	gap: 5rem;
}

.publication_pdfBoxes-list li a {
	display: flex;
	color: var(--primary-green-cl);
	font-weight: 300;
	align-items: flex-start;
}

.publication_pdfBoxes-list li a:hover .fill_dls {
	fill: #e86852;
}

.publication_pdfBoxes-list li a:hover {
	color: #e86852;
}

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

.publication_mid {
	width: 28%;
	height: 100%;
	background: #b7c7d3;
	display: flex;
	position: absolute;
	left: 50%;
	transform: translateX(-50%);
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center center;
}

.publication_mid-shape {
	width: 100%;
	position: absolute;
	right: -0.1rem;
	bottom: 0;
}

.publication_right {
	width: 36%;
	height: 100%;
	margin-left: auto;
	display: flex;
	padding: 10rem 5rem 10rem 5rem;
	flex-direction: column;
	justify-content: flex-start;
	position: sticky;
	top: 2rem;
}

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

.publication_right-title {
	color: var(--primary-green-cl);
	font-family: var(--title-font);
	font-size: 6.9rem;
	font-weight: 800;
	line-height: 7.5rem;
	margin-bottom: 4rem;
}

.publication_keydate {
	display: flex;
	flex-direction: column;
	gap: 5rem;
	margin-top: 5rem;
}

.publication_keydate li {
	display: flex;
	flex-direction: column;
	gap: 1rem;
}

.publication_keydate-title {
	color: var(--primary-green-cl);
	font-family: var(--title-font);
	font-size: 2.6rem;
	font-style: normal;
	font-weight: 900;
	line-height: 3rem;
	text-transform: uppercase;
}

.publication_keydate-txt {
	color: var(--primary-green-cl);
	font-family: var(--title-font);
	font-size: 2rem;
	font-style: normal;
	font-weight: 300;
	line-height: 2.6rem;
}

.tabbingInner {
	padding-bottom: 10rem;
}

.tabbingInner .tabbing_wshape_left {
	width: 40%;
}

/* ! faq block */
.faq_block {
	width: 100%;
	height: 48rem;
	background: var(--primary-green-cl);
	display: flex;
	margin-bottom: 20rem;
}

.faq_block-wp {
	width: 100%;
	height: 100%;
	display: flex;
	position: relative;
	padding: 0 10%;
	align-items: center;
}

.faq_block-left {
	display: flex;
	flex-direction: column;
	width: 45%;
}

.faq_block-title {
	color: #fff;
	font-family: var(--title-font);
	font-size: 6.9rem;
	font-style: normal;
	font-weight: 800;
	line-height: 7.5rem;
}

.faq_block-right {
	margin-left: auto;
	width: 45%;
	height: 100%;
	position: absolute;
	right: 0;
	top: 0;
	overflow: hidden;
}

.faq_block-right-img {
	height: 100%;
	display: flex;
}

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

.faq_block-right-shape {
	position: absolute;
	left: 0;
	top: 0;
}

/* ! gogreen block */
.go_green_block {
	width: 100%;
	height: 48rem;
	background: var(--primary-green-cl);
	display: flex;
	margin-bottom: 20rem;
}

.go_green_block-wp {
	width: 100%;
	height: 100%;
	display: flex;
	position: relative;
	align-items: center;
}

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

.go_green_block-left-img {
	height: 100%;
	display: flex;
	width: 100%;
}

.go_green_block-left-img img {
	height: 100%;
	object-fit: cover;
}

.go_green_block-left-shape {
	position: absolute;
	left: 0;
	bottom: 0;
	width: 100%;
}

.go_green_block-right {
	width: 45%;
	height: 100%;
	display: flex;
	flex-direction: column;
	padding: 0 8%;
	justify-content: center;
}

.go_green_block-title {
	color: #fff;
	font-family: var(--title-font);
	font-size: 4.5rem;
	font-style: normal;
	font-weight: 300;
	line-height: 5.5rem; /* 122.222% */
}

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

.faq_block,
.go_green_block,
.git_block {
	overflow: hidden;
	position: relative;
}

.faq_block img,
.go_green_block img,
.git_block img {
	will-change: transform;
	transition: transform 0.3s ease-out;
}

/* ! Corporate govenance */
.coperateGovernance {
	width: 100%;
	min-height: 100vh;
	position: relative;
}

.coperateGovernance-wp {
	display: flex;
	width: 100%;
	height: 100%;
	position: relative;
	padding: 7.5rem 5% 0;
	flex-wrap: wrap;
	gap: 1%;
}

.coperateGovernance-wp-sidebar {
	width: 27%;
	margin-left: auto;
	display: flex;
	flex-direction: column;
	position: relative;
	z-index: 2;
	position: absolute;
	right: 5%;
	height: 120%;
	/* top: -20%; */
}

.coperateGovernance-wp-rightShape {
	display: flex;
	flex-direction: column;
}

.coperateGovernance-wp-rightShape-rest {
	display: flex;
	flex-direction: column;
	background: #b7c7d3;
	display: flex;
	flex-direction: column;
	height: 100%;
	padding: 1rem 5rem;
}

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

.coperateGovernance-boxes {
	display: flex;
	width: 100%;
	margin-bottom: 15rem;
}

.coperateGovernance-boxes:last-child {
	margin-bottom: 0;
}

.coperateGovernance-boxes-left {
	width: 67%;
	display: flex;
	flex-direction: column;
	padding-left: 5%;
	padding-right: 6%;
}

.coperateGovernance-boxes-title {
	color: var(--primary-green-cl);
	font-family: var(--title-font);
	font-size: 6.9rem;
	font-weight: 800;
	line-height: 7.5rem;
}

.coperateGovernance-boxes-txt {
	color: var(--primary-green-cl);
	font-size: 2rem;
	font-style: normal;
	font-weight: 500;
	line-height: 2.6rem;
	margin-top: 2.5rem;
}

.coperateGovernance-boxes-right {
	width: 30%;
	position: relative;
	z-index: 5;
	margin-left: auto;
	display: flex;
	flex-direction: column;
}

.coperateGovernance-boxes-mainRight-top {
	color: var(--primary-green-cl);
	font-family: var(--title-font);
	font-size: 5rem;
	font-style: normal;
	font-weight: 800;
	line-height: 6rem;
	position: relative;
	top: -28rem;
	padding: 0rem 5rem;
}

.coperateGovernance-boxes-shape-right {
	background: var(--dark-puple-cl);
}

.coperateGovernance-boxes-shape-right-img {
	width: 100%;
	position: relative;
	top: -10rem;
}

.coperateGovernance-boxes-shape-right-imgShape {
	position: absolute;
	left: 0;
	bottom: 0;
}

.coperateGovernance-boxes.nomargin {
	margin-bottom: 0;
}

.coperateGovernance_discover {
	margin: 0;
	padding: 0;
}

.coperateGovernance_discover-wp {
	display: flex;
	width: 100%;
	height: 100%;
	position: relative;
	padding: 0rem 5% 0;
	flex-wrap: wrap;
	gap: 1%;
}

.coperateGovernance_discover-sidebar {
	width: 27%;
	margin-left: auto;
	display: flex;
	flex-direction: column;
	position: relative;
	z-index: 2;
	position: absolute;
	right: 5%;
	height: 120%;
	top: 0%;
	background: var(--dark-puple-cl);
}

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

.coperateGovernance_discover-boxes {
	width: 100%;
	display: flex;
}

.coperateGovernance_discover-boxes-title {
	color: var(--primary-green-cl);
	font-family: var(--title-font);
	font-size: 6.9rem;
	font-weight: 800;
	line-height: 7.5rem;
	padding-left: 5%;
	margin-bottom: 5rem;
}

.coperateGovernance_discover-boxes .tabbing_wshape_right {
	width: 71%;
	display: flex;
	flex-direction: column;
	padding-left: 5%;
	padding-right: 0%;
	margin-left: 0;
}

.coperateGovernance_discover-boxes .tabbing_wshape_left_txtbox {
	width: 54%;
}

.coperateGovernance_discover-boxes .tabbing_wshape_left {
	width: 30%;
	height: 100%;
	position: relative;
	display: flex;
	flex-direction: column;
	padding-left: 5%;
	z-index: 4;
	justify-content: center;
}

.coperateGovernance_discover-boxes .tabbing_wshape_tabbing_listing ul li {
	color: #fff;
}

.coperateGovernance_discover-boxes .wshape_listing-icon-fill {
	stroke: #fff;
	transition: var(--transition-03s);
}

.coperateGovernance_discover-boxes
	.tabbing_wshape_tabbing_listing
	ul
	li.active
	.wshape_listing-icon-fill,
.coperateGovernance_discover-boxes
	.tabbing_wshape_tabbing_listing
	ul
	li:hover
	.wshape_listing-icon-fill {
	fill: #fff;
	stroke: #fff;
	font-weight: 800;
}

.coperateGovernance_discover-boxes .tabbing_wshape_tabbing_listing ul {
	gap: 2rem;
}

.grayBlock {
	background: #d9d9d9;
	/* height: 100vh; */
	position: relative;
	z-index: 2;
	margin-top: 10rem;
}

.grayBlock_wp {
	display: flex;
	width: 100%;
	height: 100%;
	position: relative;
	padding: 0rem 5% 0;
	flex-wrap: wrap;
}

.grayBlock_wp-inner {
	width: 100%;
	display: flex;
}

.grayBlock_wp-sidebar {
	width: 27%;
	margin-left: auto;
	display: flex;
	flex-direction: column;
	position: relative;
	z-index: 2;
	position: absolute;
	right: 5%;
	height: 100%;
	background: var(--dark-puple-cl);
}

.grayBlock_wp-left {
	width: 67%;
	display: flex;
	flex-direction: column;
	padding-left: 5%;
	padding-right: 6%;
	padding-top: 10rem;
	padding-bottom: 13rem;
}

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

.grayBlock_wp-left-title {
	color: var(--primary-green-cl);
	font-family: var(--title-font);
	font-size: 6.9rem;
	font-weight: 800;
	line-height: 7.5rem;
}

.grayBlock_wp-left-maintxt {
	color: var(--primary-green-cl);
	font-size: 2.6rem;
	font-style: normal;
	font-weight: 700;
	line-height: 3rem;
	margin-top: 3rem;
}

.grayBlock_wp-left-txt {
	color: var(--primary-green-cl);
	font-size: 2rem;
	font-style: normal;
	font-weight: 500;
	line-height: 2.6rem;
	margin-top: 3rem;
}

.grayBlock_wp-boxes {
	display: flex;
	flex-direction: column;
	margin-top: 10rem;
}

.grayBlock_wp-boxes-title {
	color: var(--primary-green-cl);
	font-size: 4rem;
	font-style: normal;
	font-weight: 900;
	line-height: 4rem;
}

.grayBlock_wp-boxes-info {
	display: flex;
	flex-direction: column;
	width: 100%;
	margin-top: 1rem;
}

.grayBlock_wp-boxes-info ul {
	display: flex;
	flex-direction: column;
	color: var(--primary-green-cl);
	font-size: 2.8rem;
	font-style: normal;
	font-weight: 400;
	line-height: 3rem;
	gap: 0.5rem;
}

.grayBlock_wp-right {
	width: 30%;
	position: relative;
	z-index: 5;
	margin-left: auto;
	display: flex;
	flex-direction: column;
	height: 100%;
}

.grayBlock-tab-head {
	display: flex;
	flex-direction: column;
	padding: 5rem 3rem;
	gap: 2rem;
	position: sticky;
	top: 2rem;
}

.grayBlock-tab-head li {
	display: flex;
	cursor: pointer;
	font-family: var(--title-font);
	font-size: 3rem;
	font-weight: 300;
	align-items: center;
	gap: 2rem;
	color: #fff;
}

.grayBlock-tab-head li.active {
	font-weight: 800;
}

.grayBlock-tab-head li .grayBlock-tab-head-icon {
	width: 31px;
	height: 44px;
}

.grayBlock-tab-head li .grayBlock-tab-head-icon svg {
	width: 100%;
	height: 100%;
	display: block;
}

.grayBlock-tab-head-title {
	width: 75%;
}

.grayBlock-tab-head li .wshape_listing-icon-fill {
	stroke: #fff;
	transition: var(--transition-03s);
}

.grayBlock-tab-head li.active .wshape_listing-icon-fill,
.grayBlock-tab-head li:hover .wshape_listing-icon-fill {
	fill: #fff;
	stroke: #fff;
	font-weight: 800;
}

.grayBlock_tabBody-box {
	display: flex;
	flex-direction: column;
	position: absolute;
	width: 100%;
	opacity: 0;
	pointer-events: none;
	transition: var(--transition-03s);
	left: 0;
	top: 0;
}

.grayBlock_tabBody-box.active {
	opacity: 1;
	pointer-events: all;
	position: relative;
	display: flex;
}

/* ! code of ethics */
.codeEthics {
	width: 100%;
	min-height: 100vh;
	position: relative;
}

.codeEthics-wp {
	display: flex;
	width: 100%;
	height: 100%;
	position: relative;
	padding: 0rem 5% 0;
	flex-wrap: wrap;
	gap: 1%;
}

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

.codeEthics-inner .coperateGovernance-boxes-left {
	padding-top: 10rem;
}

.codeEthics-inner .publication_pdfBoxes-list {
	margin-bottom: 3rem;
}

.codeEthics-sidebar {
	width: 27%;
	margin-left: auto;
	display: flex;
	flex-direction: column;
	z-index: 2;
	position: absolute;
	right: 5%;
	height: 120%;
	top: -20%;
}

.codeEthics .coperateGovernance-boxes-shape-right-img {
	top: 0rem;
}

/* ! policies block */
.policies_block {
	padding: 15rem 0;
	background: #70755f;
	margin-top: 5rem;
}

.policies_block-wp {
	padding: 0rem 5% 0;
	display: flex;
	width: 100%;
}

.policies_block-right {
	width: 45%;
	margin-left: auto;
	position: relative;
}

.policies_block-right-img {
	width: 100%;
}

.policies_block-right-shapeimg {
	position: absolute;
	left: 0;
	bottom: 0;
	width: 100%;
}

.policies_block-left {
	width: 50%;
	display: flex;
	flex-direction: column;
	padding: 0 5%;
}

.policies_block-suptitle {
	color: #fff;
	font-size: 2rem;
	font-style: normal;
	font-weight: 500;
	line-height: 2.5rem;
	margin-bottom: 3rem;
}

.policies_block-title {
	color: #fff;
	font-family: var(--title-font);
	font-size: 6.5rem;
	font-style: normal;
	font-weight: 800;
	line-height: 7.5rem;
}

.policies_block-txt {
	color: #fff;
	font-size: 2rem;
	font-style: normal;
	font-weight: 500;
	line-height: 2.6rem; /* 130% */
	margin-top: 2.5rem;
}

.policies_block-btn {
	display: flex;
	width: 100%;
	margin-top: 5rem;
}

.policies_block-scrolllist {
	display: flex;
	width: 100%;
	margin-top: 5rem;
}

.my-scroll-box {
	max-height: 35rem;
	overflow: auto;
	padding: 2rem 0;
	width: 100%;
}

/* Force the track to always be visible */
.my-scroll-box .simplebar-track {
	opacity: 1 !important; /* Always visible */
	visibility: visible !important; /* Prevent hiding */
	transition: none !important; /* No fading */
	border-radius: 0;
}

/* Optional: Style the track */
.my-scroll-box .simplebar-track.simplebar-vertical {
	width: 4px;
	background: #eee;
	border-radius: 0;
	right: 10px;
	overflow: auto;
}

/* Optional: Style the thumb (the draggable part) */
.my-scroll-box .simplebar-scrollbar::before {
	background: #333; /* Dark thumb */
	border-radius: 2px;
	width: 100%;
	left: 0;
	border-radius: 20px;
	top: 0;
	bottom: 0;
}

.policies_block-scrolllist ul {
	display: flex;
	flex-direction: column;
	gap: 3rem;
}

.policies_block-scrolllist-dl a {
	display: flex;
	color: #fff;
	font-family: var(--title-font);
	gap: 2rem;
	align-items: flex-end;
}

.policies_block-scrolllist-dl-icn {
	width: 3.8rem;
}

.policies_block-scrolllist-dl-icn svg {
	width: 100%;
	height: 100%;
	display: block;
}

.fill_dls-white {
	fill: #fff;
	transition: var(--transition-03s);
}

.policies_block-scrolllist-dl-txt {
	width: 80%;
	display: flex;
	flex-direction: column;
	font-size: 3rem;
	font-style: normal;
	font-weight: 300;
	line-height: 3rem;
}

.policies_block-scrolllist-dl-date {
	font-size: 1.4rem;
	font-style: normal;
	font-weight: 300;
	line-height: 3rem;
}

.policies_block-scrolllist-dl a:hover .fill_dls-white {
	fill: #e86852;
}

.policies_block-scrolllist-dl a:hover {
	color: #e86852;
}

/* ! Academy */
.academy_intro {
	width: 100%;
	min-height: 100vh;
	position: relative;
}

.academy_intro-wp {
	display: flex;
	width: 100%;
	height: 100%;
	position: relative;
	padding: 7.5rem 5% 0;
	flex-wrap: wrap;
	gap: 1%;
}

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

.academy_intro-Inner-boxes {
	display: flex;
	width: 100%;
	margin-bottom: 0rem;
}

.academy_intro-Inner-boxes.wnomargin {
	margin-bottom: 0;
}

.academy_intro-sidebar {
	width: 27%;
	margin-left: auto;
	display: flex;
	flex-direction: column;
	position: relative;
	z-index: 2;
	position: absolute;
	right: 5%;
	height: 120%;
	top: -20%;
}

.academy_intro-sidebar-rightShape {
	display: flex;
	flex-direction: column;
}

.academy_intro-sidebar-rightShape-rest {
	/* display: flex;
	flex-direction: column; */
	background: var(--lightBrown-cl);
	display: flex;
	flex-direction: column;
	height: 100%;
	padding: 1rem 5rem;
}

.academy_intro-Inner-left {
	width: 67%;
	display: flex;
	flex-direction: column;
	padding-left: 5%;
	padding-right: 6%;
}

.academy_intro-title {
	color: var(--primary-green-cl);
	font-family: var(--title-font);
	font-size: 6.9rem;
	font-weight: 800;
	line-height: 7.5rem;
}

.academy_intro-txt {
	color: var(--primary-green-cl);
	font-size: 2rem;
	font-style: normal;
	font-weight: 500;
	line-height: 2.6rem;
	margin-top: 2.5rem;
}

.academy_intro-Inner-right {
	width: 30%;
	position: relative;
	z-index: 5;
	margin-left: auto;
	display: flex;
	flex-direction: column;
}

.academy_intro-Inner-right-top {
	position: relative;
	top: -23rem;
	padding: 0rem 5rem;
}

.academy_intro-Inner-right-top-title {
	color: #fff;
	font-family: var(--title-font);
	font-size: 6.9rem;
	font-style: normal;
	font-weight: 800;
	line-height: 6rem;
}

.academy_intro-Inner-right-top-key {
	width: 100%;
	display: flex;
	flex-wrap: wrap;
	margin-top: 5rem;
}

.academy_intro-Inner-right-top-key li {
	display: flex;
	width: 48%;
	flex-direction: column;
	color: #fff;
	justify-content: space-between;
	margin-top: 5rem;
}

.academy_intro-key-num {
	font-family: var(--title-font);
	font-size: 5.5rem;
	font-style: normal;
	font-weight: 800;
	line-height: 7rem;
}

.academy_intro-key-title {
	font-size: 3.5rem;
	font-weight: 300;
	line-height: 4rem;
	display: flex;
	flex-direction: column;
}

.academy_intro-key-title span {
	font-size: 2rem;
	font-weight: 600;
	line-height: 3rem;
}

.hr_content {
	display: flex;
	flex-direction: column;
}

.hr_content-title {
	color: var(--primary-green-cl);
	font-family: var(--title-font);
	font-size: 6.9rem;
	font-weight: 800;
	line-height: 7.5rem;
}

.hr_content-txt {
	color: var(--primary-green-cl);
	font-family: var(--title-font);
	font-size: 5rem;
	font-style: normal;
	font-weight: 800;
	line-height: 6rem;
	margin-top: 5rem;
}

.hr_content-author {
	display: flex;
	flex-direction: column;
	color: var(--body-cl);
	font-family: var(--title-font);
	font-size: 2.5rem;
	font-style: normal;
	font-weight: 100;
	line-height: 3.5rem;
	margin-top: 5rem;
}

.hr_content-author strong {
	font-weight: 800;
}

.hr_shape {
	width: 100%;
	position: absolute;
	left: -0.1rem;
	bottom: -0.1rem;
}

.academy_intro-Inner-boxes.wnomargin .academy_intro-Inner-right {
	justify-content: flex-end;
}

.academy_intro-Inner-boxes.wnomargin .academy_intro-Inner-left {
	margin-top: 9rem;
}

.policies_block-inner .policies_block-wp {
	align-items: center;
}

/* course listing */
.course_listing {
	padding: 10rem 0;
}

.course-listing-wp {
	display: flex;
	width: 100%;
	height: 100%;
	position: relative;
	padding: 0rem 5% 0rem;
	flex-wrap: wrap;
	gap: 1%;
}

.course-listing-left {
	width: 67%;
	display: flex;
	flex-direction: column;
	padding-left: 5%;
	padding-right: 6%;
}

.course-listing-title {
	color: var(--primary-green-cl);
	font-family: var(--title-font);
	font-size: 6.9rem;
	font-weight: 800;
	line-height: 7.5rem;
}
.course-listing-txt {
	color: var(--primary-green-cl);
	font-size: 2rem;
	font-style: normal;
	font-weight: 500;
	line-height: 2.6rem;
	margin-top: 2.5rem;
}

.course-listing-slider {
	margin-top: 7rem;
	width: 100%;
	display: flex;
	flex-wrap: wrap;
	padding: 0 3%;
}

.course_box {
	width: 100%;
	height: 43rem;
	border-radius: 5px;
	overflow: hidden;
}

.course_box a {
	display: flex;
	width: 100%;
	height: 100%;
	flex-direction: column;
	padding: 4rem 3rem;
	color: #fff;
	text-decoration: none;
	background: #8f6c95;
}

.course_box a:hover {
	background: var(--dark-puple-cl);
}

.course_box-date {
	color: #fff;
	font-size: 2rem;
	font-style: normal;
	font-weight: 500;
	line-height: 2.5rem;
}

.course_box-title {
	color: #fff;
	font-family: var(--title-font);
	font-size: 3rem;
	font-style: normal;
	font-weight: 800;
	line-height: 3.5rem;
	height: 5rem;
	margin-top: 2rem;
}

.course_box-txt {
	color: #fff;
	font-size: 1.6rem;
	font-style: normal;
	font-weight: 500;
	line-height: 2.5rem;
}

.course-btn {
	display: flex;
	margin-top: auto;
}

.course-listing-slider-nav {
	display: flex;
	gap: 2rem;
	margin-top: 3rem;
	width: 100%;
	justify-content: flex-end;
}

.course-listing-slider-nav .swiper-button-next,
.course-listing-slider-nav .swiper-button-prev {
	position: inherit;
	top: inherit;
	width: 5.6rem;
	height: 5.6rem;
	margin-top: 0;
	left: inherit;
	right: inherit;
}

.course-listing-slider-nav svg {
	width: 100%;
	height: 100%;
	display: block;
}

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

/* ! Segment finance */
.video-mask-wrapper-finance {
	position: fixed;
	z-index: 1;
	background: transparent;
	/* background: red; */
	height: 100vh;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	opacity: 0;
	transition: opacity 0.2s ease-in-out;
	pointer-events: none;
	z-index: 2;
	top: 0;
	/* left: 5.5%; */
}

.video-mask-wrapper-finance.active {
	opacity: 1;
}

.mask-target-slot-finance {
	position: relative;
}

.mask-target-slot-finance .video-mask-wrapper-finance {
	position: absolute;
}

.video-mask-item-finance {
	width: 38.5%;
	height: 100vh;
	clip-path: url(#clip-path-video-finance);
	-webkit-clip-path: url(#clip-path-video-finance);
	overflow: hidden;
	position: relative;
}

.video-mask-item-finance video {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	transform: scale(1.15);
}

/*  ? homepage section 2 */
.hm_second_panel_finance {
	height: 100vh;
	background: #37374e;
	display: flex;
	position: relative;
	overflow: hidden;
}

.hm_second_panel_finance_wp {
	width: 100%;
	height: 100%;
	position: relative;
	display: flex;
}

.hm_second_panel_finance_wp.hidden {
	opacity: 0;
	transition: opacity 0.3s ease-in-out;
}

.hm_second_panel_finance_mid {
	/* width: 28.9%; */
	width: 28%;
	height: 100%;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	position: relative;
	position: absolute;
	left: 50%;
	transform: translateX(-50%);
	/* overflow: hidden; */
}

.hm_second_panel_finance_mid-yellow {
	position: absolute;
	right: -37%;
	top: 0;
	background: var(--yellow-cl);
	width: 45%;
	height: 25rem;
}

.hm_second_panel_finance_mid-blue {
	position: absolute;
	right: 1%;
	bottom: 0;
	background: #b7c7d3;
	width: 99%;
	height: 44%;
}

.hm_second_panel_finance_left {
	width: 30%;
	padding-left: 10%;
	height: 100%;
	display: flex;
	flex-direction: column;
	justify-content: center;
	padding-right: 2%;
	padding-bottom: 10rem;
}

.hm_second_panel_finance_title {
	color: #fff;
	font-family: var(--title-font);
	font-size: 6.9rem;
	font-style: normal;
	font-weight: 800;
	line-height: 7.5rem;
}

.hm_second_panel_finance_txt {
	color: #fff;
	font-size: 2rem;
	font-style: normal;
	font-weight: 500;
	line-height: 2.6rem;
	margin-top: 4rem;
}

.second_panel_finance_key {
	position: absolute;
	left: 0;
	bottom: 0;
	width: 100%;
	height: 25rem;
	overflow: hidden;
	display: flex;
	align-items: center;
	padding-bottom: 2rem;
}

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

.second_panel_finance_left ul {
	display: flex;
	gap: 8rem;
	/* transform: translateX(-100%); */
}

.second_panel_finance_left ul li {
	display: flex;
	flex-direction: column;
	font-family: var(--title-font);
	color: #fff;
	white-space: nowrap;
	min-width: 15rem;
}

.second_panel_finance-keyvalue_num {
	font-size: 5.5rem;
	font-weight: 800;
	line-height: 6rem;
}

.second_panel_finance-keyvalue_title {
	font-size: 3.5rem;
	font-weight: 300;
	line-height: 4rem;
}

.second_panel_finance-keyvalue_title span {
	font-size: 2rem;
	font-weight: 600;
	line-height: 3rem;
}

/* ! Third panel finance cluster */
.third_panel_finance_cluster {
	height: 100vh;
	width: 100%;
}

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

.third_panel_finance_cluster-left {
	width: 36%;
	padding-left: 10%;
	height: auto;
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	padding-right: 3%;
	padding-top: 14rem;
	padding-bottom: 4rem;
}

.third_panel_finance_cluster-txt {
	color: var(--primary-green-cl);
	font-size: 2rem;
	font-style: normal;
	font-weight: 500;
	line-height: 2.6rem;
}

.third_panel_finance_cluster-mid {
	width: 28%;
	height: 100%;
	background: #b7c7d3;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	position: relative;
	/* padding-top: 12rem; */
	padding: 0 6rem;
}

.cluster_tabbing-head-title {
	width: 80%;
}

.third_panel_finance_cluster-right {
	width: 36%;
	height: 100%;
	background: yellow;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	position: relative;
}

.third_panel_finance_cluster-keyvalue {
	display: flex;
	flex-wrap: wrap;
	gap: 2%;
	margin-top: 4rem;
	justify-content: space-between;
}

.third_panel_finance_cluster-keyvalue li {
	display: flex;
	flex-direction: column;
	font-family: var(--title-font);
	color: var(--primary-green-cl);
	width: 48%;
	margin-bottom: 4rem;
}

.third_panel_finance-keyvalue_num {
	font-size: 4.4rem;
	font-weight: 800;
	line-height: 6rem;
}

.third_panel_finance-keyvalue_title {
	font-size: 2.8rem;
	font-weight: 300;
	line-height: 3rem;
}

.third_panel_finance-keyvalue_title span {
	font-size: 1.6rem;
	font-weight: 600;
	line-height: 2rem;
}

.third_panel_finance-keyvalue_btn {
	display: flex;
	margin-top: 3rem;
}

.cluster_tabbing-head {
	display: flex;
	flex-direction: column;
	gap: 2.5rem;
}

.cluster_tabbing-head li {
	display: flex;
	color: #fff;
	font-family: var(--title-font);
	font-size: 5rem;
	font-weight: 300;
	line-height: normal;
	align-items: center;
	gap: 2rem;
	cursor: pointer;
	transition: var(--transition-03s);
}

.cluster_tabbing-head-icon {
	width: 31px;
	height: 44px;
}

.cluster_tabbing-head-icon svg {
	width: 100%;
	height: 100%;
	display: block;
}

.cluster_tabbing-head--fill {
	stroke: #fff;
	transition: var(--transition-03s);
}

.cluster_tabbing-head li.active .cluster_tabbing-head--fill,
.cluster_tabbing-head li:hover .cluster_tabbing-head--fill {
	fill: #fff;
	stroke: #fff;
}

/* .cluster_tabbing-head li.active {
	font-weight: 800;
} */

.cluster_tabbing-img {
	background-position: center;
	background-size: cover;
	background-repeat: no-repeat;
	width: 100%;
	height: 100%;
}

.imgtobeinTab {
	display: none;
}

.cluster_tabbing-body {
	display: flex;
	flex-direction: column;
}

.cluster_tabbing-box {
	display: flex;
	width: 100%;
	flex-direction: column;
	position: absolute;
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
}

.cluster_tabbing-box.active {
	position: relative;
	opacity: 1;
	visibility: visible;
	pointer-events: auto;
}

/* ! cluster brands */
.cluster_brands {
	background: #d9d9d9;
	padding: 8rem 0 12rem;
}

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

.cluster_brands-title {
	color: var(--primary-green-cl);
	font-family: var(--title-font);
	font-size: 6.9rem;
	font-weight: 800;
	line-height: 7.5rem;
	padding-left: 10%;
}

.cluster_brands-wp {
	display: flex;
	width: 100%;
	padding: 0 5%;
	margin-top: 5rem;
	flex-direction: column;
}

.cluster_brands-wp .brandsListing_box {
	width: 100%;
	margin: 0;
}

.cluster_brands-wp .brandsListing_box .brandsListing_btn {
	margin-top: 24px;
}

.cluster_brands-wp .news_nav {
	margin-top: 5rem;
	padding: 0 0%;
}

/* ! Cluster map */
.clusterMap {
	height: auto;
	overflow: hidden;
}

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

.clusterMap-mid {
	width: 28%;
	height: 100%;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	margin-left: auto;
	position: absolute;
	left: 50%;
	transform: translateX(-50%);
}

.clusterMap-mid-shape {
	min-height: 100vh;
	height: 100%;
	background: #b7c7d3;
	display: flex;
	width: 100%;
	position: relative;
}

.clusterMap-mid-shape-img {
	position: absolute;
	width: 100%;
	bottom: -0.1rem;
	right: -0.1rem;
}

.clusterMap-right {
	width: 36%;
	height: 100%;
	display: flex;
	flex-direction: column;
	justify-content: center;
	padding-top: 8rem;
	padding-left: 3%;
	padding-right: 2%;
}

.clusterMap-title {
	color: var(--primary-green-cl);
	font-family: var(--title-font);
	font-size: 5.5rem;
	font-style: normal;
	font-weight: 800;
	line-height: 6.5rem;
	margin-bottom: 5.5rem;
}

.clusterMap-subtitle {
	color: var(--primary-green-cl);
	font-family: var(--title-font);
	font-size: 4rem;
	font-style: normal;
	font-weight: 300;
	line-height: 4rem;
}

.clusterMap-list {
	display: flex;
	flex-direction: column;
	gap: 2rem;
	width: 80%;
	margin-top: 5rem;
}

.clusterMap-list li {
	display: flex;
	flex-direction: column;
	width: 100%;
	color: var(--primary-green-cl);
	font-family: var(--title-font);
}

.clusterMap-listtitle {
	font-size: 4.5rem;
	font-style: normal;
	font-weight: 800;
	line-height: 6rem;
}

.clusterMap-listtitle span {
	font-size: 3rem;
	margin-left: 1rem;
}

.clusterMap-listsubtitle {
	font-size: 3rem;
	font-style: normal;
	font-weight: 300;
	line-height: 3.8rem;
}

.clusterMap-listtxt {
	font-size: 2rem;
	font-style: normal;
	font-weight: 600;
	line-height: 3rem;
}

.clusterMap-txt {
	display: flex;
	flex-direction: column;
	margin-top: 3rem;
	color: var(--primary-green-cl);
	font-size: 2rem;
	font-style: normal;
	font-weight: 500;
	line-height: 2.6rem;
}

.clusterMap-txt strong {
	font-size: 3rem;
	font-style: normal;
	font-weight: 900;
	font-family: var(--title-font);
}

/* ! cluster leader */
.cluster_leader {
	padding: 10rem 0 12rem;
}

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

.cluster_leader_title {
	color: var(--primary-green-cl);
	font-family: var(--title-font);
	font-size: 6.9rem;
	font-weight: 800;
	line-height: 7.5rem;
	padding-left: 10%;
}

.cluster_leader_txt {
	color: var(--primary-green-cl);
	font-size: 2rem;
	font-style: normal;
	font-weight: 500;
	line-height: 2.6rem;
	margin-top: 2rem;
	padding: 0 10%;
}

.cluster_leader-wp {
	display: flex;
	width: 100%;
	padding: 0 5%;
	margin-top: 8rem;
	flex-direction: column;
}

.cluster_leader-wp .bod_box {
	width: 100%;
	margin-bottom: 0;
}

.cluster_leader-wp .news_nav {
	margin-top: 5rem;
	padding: 0 0%;
}

/* ! Segment technology */
.video-mask-wrapper-technology {
	position: fixed;
	z-index: 1;
	background: transparent;
	height: 100vh;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 64.42708333%;
	/* width: 100%; */
	opacity: 0;
	transition: opacity 0.2s ease-in-out;
	pointer-events: none;
	z-index: 2;
	top: 0;
}

.video-mask-wrapper-technology.active {
	opacity: 1;
}

.mask-target-slot-technology {
	position: relative;
}

.mask-target-slot-technology .video-mask-wrapper-technology {
	position: absolute;
}

.video-mask-item-technology {
	width: 100%;
	height: 100vh;
	clip-path: url(#clip-path-video-technology);
	-webkit-clip-path: url(#clip-path-video-technology);
	overflow: hidden;
	position: relative;
}

.video-mask-item-technology video {
	width: 155%;
	height: 100%;
	object-fit: cover;
	display: block;
	transform: scale(1.15);
}

/*  ? homepage section 2 */
.hm_second_panel_technology {
	height: 100vh;
	background: #e96852;
	display: flex;
	position: relative;
	overflow: hidden;
}

.hm_second_panel_technology_wp {
	width: 100%;
	height: 100%;
	position: relative;
	display: flex;
}

.hm_second_panel_technology_wp.hidden {
	opacity: 0;
	transition: opacity 0.3s ease-in-out;
}

.hm_second_panel_technology_mid {
	width: 28.9%;
	/* width: 28%; */
	height: 100%;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	/* position: relative; */
	position: absolute;
	left: 50%;
	transform: translateX(-50%);
	/* overflow: hidden; */
}

.hm_second_panel_technology_img2 {
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
}

.hm_second_panel_technology_left {
	width: 36%;
	padding-left: 10%;
	height: 100%;
	display: flex;
	flex-direction: column;
	justify-content: center;
	padding-right: 2%;
	padding-bottom: 10rem;
}

.hm_second_panel_technology_right {
	width: 35.62%;
	height: 100%;
	display: flex;
	flex-direction: column;
	justify-content: center;
	margin-left: auto;
	overflow: hidden;
	position: relative;
}

.hm_second_panel_technology-img1 {
	position: absolute;
	width: 70%;
	left: 0;
	top: 0;
}

.hm_second_panel_technology_title {
	color: #fff;
	font-family: var(--title-font);
	font-size: 6.9rem;
	font-style: normal;
	font-weight: 800;
	line-height: 7.5rem;
}

.hm_second_panel_technology_txt {
	color: #fff;
	font-size: 2rem;
	font-style: normal;
	font-weight: 500;
	line-height: 2.6rem;
	margin-top: 4rem;
}

.second_panel_technology_key {
	position: absolute;
	left: 0;
	bottom: 0;
	width: 100%;
	height: 25rem;
	overflow: hidden;
	display: flex;
	align-items: center;
	padding-bottom: 2rem;
}

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

.second_panel_technology_left ul {
	display: flex;
	gap: 8rem;
	/* transform: translateX(-100%); */
}

.second_panel_technology_left ul li {
	display: flex;
	flex-direction: column;
	font-family: var(--title-font);
	color: #fff;
	white-space: nowrap;
	min-width: 15rem;
}

.second_panel_technology-keyvalue_num {
	font-size: 5.5rem;
	font-weight: 800;
	line-height: 6rem;
}

.second_panel_technology-keyvalue_title {
	font-size: 3.5rem;
	font-weight: 300;
	line-height: 4rem;
}

.second_panel_technology-keyvalue_title span {
	font-size: 2rem;
	font-weight: 600;
	line-height: 3rem;
}

.third_panel_finance_cluster.third_panel_technology_cluster
	.third_panel_finance_cluster-mid {
	background: #d4b9a8;
	width: 29.13%;
}

.clusterMap.clusterMap-technology .clusterMap-mid-shape {
	background: #d4b9a8;
}

/* ! Segment commerce */
.video-mask-wrapper-commerce {
	position: fixed;
	z-index: 1;
	background: transparent;
	height: 100vh;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	opacity: 0;
	transition: opacity 0.2s ease-in-out;
	pointer-events: none;
	z-index: 2;
	top: 0;
}

.video-mask-wrapper-commerce.active {
	opacity: 1;
}

.mask-target-slot-commerce {
	position: relative;
}

.mask-target-slot-commerce .video-mask-wrapper-commerce {
	position: absolute;
}

.video-mask-item-commerce {
	width: 56%;
	height: 100vh;
	clip-path: url(#clip-path-video-commerce);
	-webkit-clip-path: url(#clip-path-video-commerce);
	overflow: hidden;
	position: relative;
}

.video-mask-item-commerce video {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	transform: scale(1.15);
}

/*  ? homepage section 2 */
.hm_second_panel_commerce {
	height: 100vh;
	background: #d4b9a8;
	display: flex;
	position: relative;
	overflow: hidden;
}

.hm_second_panel_commerce_wp {
	width: 100%;
	height: 100%;
	position: relative;
	display: flex;
}

.hm_second_panel_commerce_wp.hidden {
	opacity: 0;
	transition: opacity 0.3s ease-in-out;
}

.hm_second_panel_commerce_mid {
	width: 28%;
	height: 100%;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	/* position: relative; */
	position: absolute;
	left: 50%;
	transform: translateX(-50%);
	/* overflow: hidden; */
}

.hm_second_panel_commerce_left {
	width: 36%;
	padding-left: 5%;
	height: 100%;
	display: flex;
	flex-direction: column;
	justify-content: center;
	padding-right: 2%;
	padding-bottom: 10rem;
	position: relative;
	z-index: 3;
}

.hm_second_panel_commerce_right {
	width: 35.62%;
	height: 100%;
	display: flex;
	flex-direction: column;
	justify-content: center;
	margin-left: auto;
	overflow: hidden;
	position: relative;
}

.hm_second_panel_commerce-img1 {
	position: absolute;
	width: 69%;
	left: 0;
	top: 0;
}

.hm_second_panel_commerce_title {
	color: #fff;
	font-family: var(--title-font);
	font-size: 5.8rem;
	font-style: normal;
	font-weight: 800;
	line-height: 6.5rem;
}

.hm_second_panel_commerce_txt {
	color: #fff;
	font-size: 2rem;
	font-style: normal;
	font-weight: 500;
	line-height: 2.6rem;
	margin-top: 4rem;
}

.second_panel_commerce_key {
	position: absolute;
	left: 0;
	bottom: 0;
	width: 100%;
	height: 25rem;
	overflow: hidden;
	display: flex;
	align-items: center;
	padding-bottom: 2rem;
}

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

.second_panel_commerce_left ul {
	display: flex;
	gap: 8rem;
	/* transform: translateX(-100%); */
}

.second_panel_commerce_left ul li {
	display: flex;
	flex-direction: column;
	font-family: var(--title-font);
	color: #fff;
	white-space: nowrap;
	min-width: 15rem;
}

.second_panel_commerce-keyvalue_num {
	font-size: 5.5rem;
	font-weight: 800;
	line-height: 6rem;
}

.second_panel_commerce-keyvalue_title {
	font-size: 3.5rem;
	font-weight: 300;
	line-height: 4rem;
}

.second_panel_commerce-keyvalue_title span {
	font-size: 2rem;
	font-weight: 600;
	line-height: 3rem;
}

.third_panel_finance_cluster.third_panel_commerce_cluster
	.third_panel_finance_cluster-left {
	width: 36.5%;
}

.third_panel_finance_cluster.third_panel_commerce_cluster
	.third_panel_finance_cluster-mid {
	background: #37374e;
	width: 28.5%;
}

.clusterMap.clusterMap-commerce .clusterMap-mid-shape {
	background: #8f6c95;
}

/* ! Segment logistic */
.video-mask-wrapper-logistics {
	position: fixed;
	z-index: 1;
	background: transparent;
	height: 100vh;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	opacity: 0;
	transition: opacity 0.2s ease-in-out;
	pointer-events: none;
	z-index: 2;
	top: 0;
}

.video-mask-wrapper-logistics.active {
	opacity: 1;
}

.mask-target-slot-logistics {
	position: relative;
}

.mask-target-slot-logistics .video-mask-wrapper-logistics {
	position: absolute;
}

.video-mask-item-logistics {
	width: 28%;
	height: 100vh;
	clip-path: url(#clip-path-video-logistics);
	-webkit-clip-path: url(#clip-path-video-logistics);
	overflow: hidden;
	position: relative;
}

.video-mask-item-logistics video {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	transform: scale(1.15);
}

/*  ? homepage section 2 */
.hm_second_panel_logistics {
	height: 100vh;
	background: #8f6c95;
	display: flex;
	position: relative;
	overflow: hidden;
}

.hm_second_panel_logistics_wp {
	width: 100%;
	height: 100%;
	position: relative;
	display: flex;
}

.hm_second_panel_logistics_wp.hidden {
	opacity: 0;
	transition: opacity 0.3s ease-in-out;
}

.hm_second_panel_logistics_mid {
	width: 28%;
	height: 100%;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	position: absolute;
	left: 50%;
	transform: translateX(-50%);
	overflow: hidden;
}

.hm_second_panel_logistics_left {
	width: 36%;
	padding-left: 10%;
	height: 100%;
	display: flex;
	flex-direction: column;
	justify-content: center;
	padding-right: 2%;
	padding-bottom: 10rem;
	position: relative;
	z-index: 2;
}

.hm_second_panel_logistics_right {
	width: 36%;
	height: 100%;
	display: flex;
	flex-direction: column;
	justify-content: center;
	margin-left: auto;
	overflow: hidden;
	position: relative;
}

.hm_second_panel_logistics-img1 {
	position: absolute;
	width: 100%;
	bottom: 0;
	left: 0;
}

.hm_second_panel_logistics-img2 {
	position: absolute;
	width: 40%;
	top: 0;
	left: 0;
}

.hm_second_panel_logistics_title {
	color: #fff;
	font-family: var(--title-font);
	font-size: 6.9rem;
	font-style: normal;
	font-weight: 800;
	line-height: 7.5rem;
}

.hm_second_panel_logistics_txt {
	color: #fff;
	font-size: 2rem;
	font-style: normal;
	font-weight: 500;
	line-height: 2.6rem;
	margin-top: 4rem;
}

.second_panel_logistics_key {
	position: absolute;
	left: 0;
	bottom: 0;
	width: 100%;
	height: 25rem;
	overflow: hidden;
	display: flex;
	align-items: center;
	padding-bottom: 2rem;
}

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

.second_panel_logistics_left ul {
	display: flex;
	gap: 8rem;
	/* transform: translateX(-100%); */
}

.second_panel_logistics_left ul li {
	display: flex;
	flex-direction: column;
	font-family: var(--title-font);
	color: #fff;
	white-space: nowrap;
	min-width: 15rem;
}

.second_panel_logistics-keyvalue_num {
	font-size: 5.5rem;
	font-weight: 800;
	line-height: 6rem;
}

.second_panel_logistics-keyvalue_title {
	font-size: 3.5rem;
	font-weight: 300;
	line-height: 4rem;
}

.second_panel_logistics-keyvalue_title span {
	font-size: 2rem;
	font-weight: 600;
	line-height: 3rem;
}

.third_panel_finance_cluster.third_panel_logistics_cluster
	.third_panel_finance_cluster-mid {
	background: #b7c7d3;
}

.clusterMap.clusterMap-logistics .clusterMap-mid-shape {
	background: #b7c7d3;
}

/* ! Segment realestate */
.video-mask-wrapper-realestate {
	position: fixed;
	z-index: 1;
	background: transparent;
	height: 100vh;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	opacity: 0;
	transition: opacity 0.2s ease-in-out;
	pointer-events: none;
	z-index: 2;
	top: 0;
}

.video-mask-wrapper-realestate.active {
	opacity: 1;
}

.mask-target-slot-realestate {
	position: relative;
}

.mask-target-slot-realestate .video-mask-wrapper-realestate {
	position: absolute;
}

.video-mask-item-realestate {
	width: 40%;
	height: 100vh;
	clip-path: url(#clip-path-video-realestate);
	-webkit-clip-path: url(#clip-path-video-realestate);
	overflow: hidden;
	position: relative;
}

.video-mask-item-realestate video {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	transform: scale(1.15);
}

/*  ? homepage section 2 */
.hm_second_panel_realestate {
	height: 100vh;
	background: #dac556;
	display: flex;
	position: relative;
	overflow: hidden;
}

.hm_second_panel_realestate_wp {
	width: 100%;
	height: 100%;
	position: relative;
	display: flex;
}

.hm_second_panel_realestate_wp.hidden {
	opacity: 0;
	transition: opacity 0.3s ease-in-out;
}

.hm_second_panel_realestate_mid {
	width: 28%;
	height: 100%;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	position: absolute;
	left: 50%;
	transform: translateX(-50%);
	overflow: hidden;
}

.hm_second_panel_realestate-img1 {
	position: absolute;
	width: 100%;
	top: 0;
	left: 0;
}

.hm_second_panel_realestate-img2 {
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 56.5%;
	overflow: hidden;
}

.hm_second_panel_realestate-img2-cl {
	background: #3b2517;
	width: 100%;
	height: 100%;
}

.hm_second_panel_realestate_left {
	width: 36%;
	padding-left: 10%;
	height: 100%;
	display: flex;
	flex-direction: column;
	justify-content: center;
	padding-right: 2%;
	padding-bottom: 10rem;
	position: relative;
	z-index: 2;
}

.hm_second_panel_realestate_right {
	width: 36%;
	height: 100%;
	display: flex;
	flex-direction: column;
	justify-content: center;
	margin-left: auto;
	overflow: hidden;
	position: relative;
}

.hm_second_panel_realestate_title {
	color: #fff;
	font-family: var(--title-font);
	font-size: 6.9rem;
	font-style: normal;
	font-weight: 800;
	line-height: 7.5rem;
}

.hm_second_panel_realestate_txt {
	color: #fff;
	font-size: 2rem;
	font-style: normal;
	font-weight: 500;
	line-height: 2.6rem;
	margin-top: 4rem;
}

.second_panel_realestate_key {
	position: absolute;
	left: 0;
	bottom: 0;
	width: 100%;
	height: 25rem;
	overflow: hidden;
	display: flex;
	align-items: center;
	padding-bottom: 2rem;
}

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

.second_panel_realestate_left ul {
	display: flex;
	gap: 8rem;
	/* transform: translateX(-100%); */
}

.second_panel_realestate_left ul li {
	display: flex;
	flex-direction: column;
	font-family: var(--title-font);
	color: #fff;
	white-space: nowrap;
	min-width: 15rem;
}

.second_panel_realestate-keyvalue_num {
	font-size: 5.5rem;
	font-weight: 800;
	line-height: 6rem;
}

.second_panel_realestate-keyvalue_title {
	font-size: 3.5rem;
	font-weight: 300;
	line-height: 4rem;
}

.second_panel_realestate-keyvalue_title span {
	font-size: 2rem;
	font-weight: 600;
	line-height: 3rem;
}

.third_panel_finance_cluster.third_panel_realestate_cluster
	.third_panel_finance_cluster-mid {
	background: #3b2517;
}

.clusterMap.clusterMap-realestate .clusterMap-mid-shape {
	background: #3b2517;
}

/* ! Segment hospitality */
.video-mask-wrapper-hospitality {
	position: fixed;
	z-index: 1;
	background: transparent;
	height: 100vh;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	opacity: 0;
	transition: opacity 0.2s ease-in-out;
	pointer-events: none;
	z-index: 2;
	top: 0;
}

.video-mask-wrapper-hospitality.active {
	opacity: 1;
}

.mask-target-slot-hospitality {
	position: relative;
}

.mask-target-slot-hospitality .video-mask-wrapper-hospitality {
	position: absolute;
}

.video-mask-item-hospitality {
	width: 28%;
	height: 100vh;
	clip-path: url(#clip-path-video-hospitality);
	-webkit-clip-path: url(#clip-path-video-hospitality);
	overflow: hidden;
	position: relative;
}

.video-mask-item-hospitality video {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	transform: scale(1.15);
}

/*  ? homepage section 2 */
.hm_second_panel_hospitality {
	height: 100vh;
	background: #b7c7d3;
	display: flex;
	position: relative;
	overflow: hidden;
}

.hm_second_panel_hospitality_wp {
	width: 100%;
	height: 100%;
	position: relative;
	display: flex;
}

.hm_second_panel_hospitality_wp.hidden {
	opacity: 0;
	transition: opacity 0.3s ease-in-out;
}

.hm_second_panel_hospitality_mid {
	width: 27.9%;
	height: 100%;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	position: absolute;
	left: 50%;
	transform: translateX(-50%);
	overflow: hidden;
}

.hm_second_panel_hospitality_mid-shape {
	background: #37374e;
	width: 100%;
	height: 55%;
	position: absolute;
	left: 0;
	bottom: 0;
}

.hm_second_panel_hospitality_left {
	width: 36%;
	height: 100%;
	display: flex;
	flex-direction: column;
	justify-content: center;
	padding-left: 10%;
	padding-right: 2%;
	padding-bottom: 10rem;
	position: relative;
	z-index: 2;
	overflow: hidden;
}

.hm_second_panel_hospitality_left-img {
	position: absolute;
	right: 0;
	top: 0;
	width: 60%;
	z-index: 1;
}

.hm_second_panel_hospitality_right {
	width: 36%;
	height: 100%;
	display: flex;
	flex-direction: column;
	justify-content: center;
	padding-left: 2%;
	padding-right: 4%;
	padding-bottom: 12rem;
	position: relative;
	z-index: 2;
	margin-left: auto;
}

.hm_second_panel_hospitality_title {
	color: #fff;
	font-family: var(--title-font);
	font-size: 6.9rem;
	font-style: normal;
	font-weight: 800;
	line-height: 7.5rem;
}

.hm_second_panel_hospitality_txt {
	color: #fff;
	font-size: 2rem;
	font-style: normal;
	font-weight: 500;
	line-height: 2.6rem;
	margin-top: 4rem;
}

.second_panel_hospitality_key {
	position: absolute;
	left: 0;
	bottom: 0;
	width: 100%;
	height: 25rem;
	overflow: hidden;
	display: flex;
	align-items: center;
	padding-bottom: 2rem;
}

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

.second_panel_hospitality_left ul {
	display: flex;
	gap: 8rem;
	/* transform: translateX(-100%); */
}

.second_panel_hospitality_left ul li {
	display: flex;
	flex-direction: column;
	font-family: var(--title-font);
	color: #fff;
	white-space: nowrap;
	min-width: 15rem;
}

.second_panel_hospitality-keyvalue_num {
	font-size: 5.5rem;
	font-weight: 800;
	line-height: 6rem;
}

.second_panel_hospitality-keyvalue_title {
	font-size: 3.5rem;
	font-weight: 300;
	line-height: 4rem;
}

.second_panel_hospitality-keyvalue_title span {
	font-size: 2rem;
	font-weight: 600;
	line-height: 3rem;
}

.third_panel_finance_cluster.third_panel_hospitality_cluster
	.third_panel_finance_cluster-mid {
	background: #37374e;
}

.clusterMap.clusterMap-hospitality .clusterMap-mid-shape {
	background: #37374e;
}

/* ! Segment agri */
.video-mask-wrapper-agri {
	position: fixed;
	z-index: 1;
	background: transparent;
	height: 100vh;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	opacity: 0;
	transition: opacity 0.2s ease-in-out;
	pointer-events: none;
	z-index: 2;
	top: 0;
}

.video-mask-wrapper-agri.active {
	opacity: 1;
}

.mask-target-slot-agri {
	position: relative;
}

.mask-target-slot-agri .video-mask-wrapper-agri {
	position: absolute;
}

.video-mask-item-agri {
	width: 28%;
	height: 100vh;
	clip-path: url(#clip-path-video-agri);
	-webkit-clip-path: url(#clip-path-video-agri);
	overflow: hidden;
	position: relative;
}

.video-mask-item-agri video {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	transform: scale(1.15);
}

/*  ? homepage section 2 */
.hm_second_panel_agri {
	height: 100vh;
	background: #3d441e;
	display: flex;
	position: relative;
	overflow: hidden;
}

.hm_second_panel_agri_wp {
	width: 100%;
	height: 100%;
	position: relative;
	display: flex;
}

.hm_second_panel_agri_wp.hidden {
	opacity: 0;
	transition: opacity 0.3s ease-in-out;
}

.hm_second_panel_agri_mid {
	width: 27.9%;
	height: 100%;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	position: absolute;
	left: 50%;
	transform: translateX(-50%);
	overflow: hidden;
}

.hm_second_panel_agri_mid-shape {
	background: #dac556;
	width: 100%;
	height: 55%;
	position: absolute;
	left: 0;
	bottom: 0;
}

.hm_second_panel_agri_left {
	width: 36%;
	height: 100%;
	display: flex;
	flex-direction: column;
	justify-content: center;
	padding-left: 10%;
	padding-right: 2%;
	padding-bottom: 10rem;
	position: relative;
	z-index: 2;
	overflow: hidden;
}

.hm_second_panel_agri_left-img {
	position: absolute;
	right: 0;
	top: 0;
	width: 50%;
	z-index: 1;
}

.hm_second_panel_agri_right-img {
	position: absolute;
	left: 0;
	top: 0;
	width: 60%;
	z-index: 1;
}

.hm_second_panel_agri_right {
	width: 36%;
	height: 100%;
	display: flex;
	flex-direction: column;
	justify-content: center;
	padding-left: 2%;
	padding-right: 4%;
	/* padding-bottom: 12rem; */
	position: relative;
	z-index: 2;
	margin-left: auto;
	overflow: hidden;
}

.hm_second_panel_agri_title {
	color: #fff;
	font-family: var(--title-font);
	font-size: 6.9rem;
	font-style: normal;
	font-weight: 800;
	line-height: 7.5rem;
}

.hm_second_panel_agri_txt {
	color: #fff;
	font-size: 2rem;
	font-style: normal;
	font-weight: 500;
	line-height: 2.6rem;
	margin-top: 4rem;
}

.second_panel_agri_key {
	position: absolute;
	left: 0;
	bottom: 0;
	width: 100%;
	height: 25rem;
	overflow: hidden;
	display: flex;
	align-items: center;
	padding-bottom: 2rem;
}

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

.second_panel_agri_left ul {
	display: flex;
	gap: 8rem;
	/* transform: translateX(-100%); */
}

.second_panel_agri_left ul li {
	display: flex;
	flex-direction: column;
	font-family: var(--title-font);
	color: #fff;
	white-space: nowrap;
	min-width: 15rem;
}

.second_panel_agri-keyvalue_num {
	font-size: 5.5rem;
	font-weight: 800;
	line-height: 6rem;
}

.second_panel_agri-keyvalue_title {
	font-size: 3.5rem;
	font-weight: 300;
	line-height: 4rem;
}

.second_panel_agri-keyvalue_title span {
	font-size: 2rem;
	font-weight: 600;
	line-height: 3rem;
}

.third_panel_finance_cluster.third_panel_agri_cluster
	.third_panel_finance_cluster-mid {
	background: #dac556;
}

.clusterMap.clusterMap-agri .clusterMap-mid-shape {
	background: #dac556;
}

/* ! newsletter page */
.newsletterSection {
}

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

.newsletterSection-left {
	width: 36%;
	padding-top: 20rem;
}

.newsletterSection-mid {
	width: 28%;
	display: flex;
	flex-direction: column;
	position: relative;
	padding-top: 20rem;
}

.newsletterSection-mid-content {
	display: flex;
	flex-direction: column;
	padding: 0 5%;
	position: relative;
	z-index: 1;
}

.newsletterSection-mid-title {
	color: #fff;
	font-family: var(--transition-03s);
	font-size: 6.5rem;
	font-style: normal;
	font-weight: 800;
	line-height: 7.5rem; /* 108.696% */
}

.newsletterSection-mid-txt {
	color: #fff;
	font-size: 2rem;
	font-style: normal;
	font-weight: 500;
	line-height: 2.5rem;
	margin-top: 2rem;
}

.newsletterSection-mid-shape {
	height: 100%;
	width: 100%;
	background: #8f6c95;
	position: absolute;
	top: 0;
	left: 0;
}

.newsletterSection-mid-shape-obj {
	position: absolute;
	width: 100%;
	bottom: -0.1rem;
	right: 0;
	z-index: 1;
}

.newsletterSection-right {
	width: 36%;
	padding-top: 20rem;
}

.normalIntro {
	padding: 13rem 10% 12rem 10%;
}

.normalIntro-wp {
	width: 50%;
	display: flex;
	flex-direction: column;
}

.normalIntro-title {
	color: var(--primary-green-cl);
	font-family: var(--title-font);
	font-size: 6.9rem;
	font-weight: 800;
	line-height: 7.5rem;
}

.normalIntro-txt {
	color: var(--primary-green-cl);
	font-size: 2rem;
	font-style: normal;
	font-weight: 500;
	line-height: 2.6rem;
	margin-top: 2.5rem;
}

.normalIntro-btn {
	display: flex;
}

.sp_form_left-img {
	width: 100%;
	background-position: center;
	background-size: cover;
	background-repeat: no-repeat;
	height: 100%;
}

/*  ! Commitment */
.commitmentsSection {
	width: 100%;
	min-height: 100vh;
}

.commitmentsSection-wp {
	display: flex;
	width: 100%;
	height: 100%;
	position: relative;
	padding: 0rem 5% 0;
	flex-wrap: wrap;
	gap: 1%;
}

.commitmentsSection-wp-sidebar {
	width: 27%;
	margin-left: auto;
	display: flex;
	flex-direction: column;
	position: relative;
	z-index: 2;
	position: absolute;
	right: 5%;
	height: 100%;
}

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

.commitmentsSection-boxes {
	display: flex;
	width: 100%;
}

.commitmentsSection-boxes-left {
	width: 67%;
	display: flex;
	flex-direction: column;
	padding-left: 5%;
	padding-right: 6%;
	padding-top: 15rem;
}

.commitmentsSection-boxes-left-top {
	display: flex;
	flex-direction: column;
	width: 100%;
}

.commitmentsSection-boxes-title {
	color: var(--primary-green-cl);
	font-family: var(--title-font);
	font-size: 6.9rem;
	font-weight: 800;
	line-height: 7.5rem;
}

.commitmentsSection-boxes-txt {
	color: var(--primary-green-cl);
	font-size: 2rem;
	font-style: normal;
	font-weight: 500;
	line-height: 2.6rem;
	margin-top: 2.5rem;
}

.commitmentsSection-boxes-left-mid {
	display: flex;
	flex-direction: column;
	margin-top: 14rem;
}

.commitmentsSection-boxes-left-mid-suptitle {
	color: var(--primary-green-cl);
	font-family: var(--title-font);
	font-size: 4rem;
	font-style: normal;
	font-weight: 300;
	line-height: 4rem; /* 65% */
}

.commitmentsSection-boxes-left-mid-list {
	display: flex;
	flex-wrap: wrap;
	gap: 4.5%;
	margin-top: 7rem;
}

.commitmentsSection-boxes-left-mid-list li {
	display: flex;
	width: 28%;
	flex-direction: column;
	color: var(--primary-green-cl);
	font-family: var(--title-font);
	margin-bottom: 3rem;
	padding-right: 2%;
}

.comitKey-list-num {
	font-size: 5.5rem;
	font-style: normal;
	font-weight: 800;
	line-height: 7rem;
}

.comitKey-list-txt {
	font-size: 3.5rem;
	font-style: normal;
	font-weight: 300;
	line-height: 3.9rem;
}

.comitKey-list-stxt {
	font-size: 2rem;
	font-style: normal;
	font-weight: 300;
	line-height: 3rem;
}

.commitmentsSection-boxes-right {
	width: 30%;
	position: relative;
	z-index: 5;
	margin-left: auto;
	display: flex;
	flex-direction: column;
}

.sidebarShape-topimg {
	width: 100%;
	position: absolute;
	top: 0;
	left: 0;
}

.sidebarShape-botimg {
	width: 100%;
	position: absolute;
	bottom: 0;
	left: 0;
}

.commitmentsSection-wp-sidebar-rest {
	width: 100%;
	background: var(--primary-green-cl);
	display: flex;
	flex-direction: column;
	height: 100%;
	padding: 1rem 5rem;
	position: relative;
	z-index: 1;
}

.comit_tabHead {
	display: flex;
	flex-direction: column;
	padding: 5rem 3rem;
	gap: 2rem;
	position: sticky;
	top: 2rem;
}

.comit_tabHead li {
	display: flex;
	cursor: pointer;
	font-family: var(--title-font);
	font-size: 3rem;
	font-weight: 300;
	align-items: center;
	gap: 2rem;
	color: #fff;
}

.comit_tabHead li.active {
	font-weight: 800;
}

.comit_tabHead li .comit_tabHead-icon {
	width: 31px;
	height: 44px;
}

.comit_tabHead li .comit_tabHead-icon svg {
	width: 100%;
	height: 100%;
	display: block;
}

.comit_tabHead-title {
	width: 75%;
}

.comit_tabHead li .wshape_listing-icon-fill {
	stroke: #fff;
	transition: var(--transition-03s);
}

.comit_tabHead li.active .wshape_listing-icon-fill,
.comit_tabHead li:hover .wshape_listing-icon-fill {
	fill: #fff;
	stroke: #fff;
	font-weight: 800;
}

.comit_tab-box {
	display: flex;
	flex-direction: column;
	position: absolute;
	width: 100%;
	opacity: 0;
	pointer-events: none;
	transition: var(--transition-03s);
	left: 0;
	top: 0;
}

.comit_tab-box.active {
	opacity: 1;
	pointer-events: all;
	position: relative;
	display: flex;
}

.commitmentsSection-boxes.commitmentsSection-boxes-Tabs
	.commitmentsSection-boxes-left {
	padding-top: 0;
}

.commitmentsSection-boxes-txt ul {
	display: flex;
	flex-direction: column;
	gap: 1rem;
	font-weight: 800;
}

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

.commitmentsSection-boxes.commitmentsSection-boxes-Tabs {
	padding-bottom: 15rem;
}

.approachSection-wp {
	display: flex;
	width: 100%;
	height: 100%;
	position: relative;
	padding: 0rem 5% 0 0%;
	flex-wrap: wrap;
	gap: 1%;
}

.approachSection-inner {
	width: 100%;
	display: flex;
}

.approachSection-left {
	width: 71.6%;
	display: flex;
	flex-direction: column;
	background: #3d441e;
	padding: 15rem 5% 15rem 10%;
}

.approachSection-title {
	color: #fff;
	font-family: var(--title-font);
	font-size: 6.9rem;
	font-style: normal;
	font-weight: 800;
	line-height: 7.5rem;
	width: 80%;
}

.approachSection-txt {
	color: #fff;
	font-size: 2rem;
	font-style: normal;
	font-weight: 500;
	line-height: 2.6rem;
	margin-top: 4.5rem;
}

.approachSection-list {
	display: flex;
	flex-direction: column;
	color: #fff;
	font-size: 2rem;
	font-style: normal;
	font-weight: 500;
	line-height: 2.6rem;
	margin-top: 7.5rem;
	gap: 3rem;
}

.approachSection-list li {
	display: flex;
	flex-direction: column;
	gap: 1rem;
}

.approachSection-list strong {
	font-size: 4rem;
	font-weight: 900;
	line-height: 4rem;
}

.approachSection-right {
	width: 28.4%;
	position: relative;
	z-index: 5;
	display: flex;
	flex-direction: column;
	height: 100%;
	background: var(--primary-green-cl);
}

.approachSection-right-bg {
	height: 100%;
	width: 100%;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
}

.fArea {
	height: 100vh;
}

.fArea-wp {
	display: flex;
	width: 100%;
	height: 100%;
	position: relative;
	padding: 0rem 5% 0;
	flex-wrap: wrap;
	gap: 1%;
}

.fArea-inner {
	width: 100%;
	display: flex;
}

.fArea-left {
	width: 67%;
	display: flex;
	padding-left: 5%;
	color: var(--primary-green-cl);
	align-items: center;
}

.fArea-content {
	width: 45%;
	display: flex;
	flex-direction: column;
}

.fArea-content-title {
	font-family: var(--title-font);
	font-size: 6.9rem;
	font-style: normal;
	font-weight: 800;
	line-height: 7.5rem;
}
.fArea-content-subtitle {
	font-family: var(--body-cl);
	font-size: 4rem;
	font-style: normal;
	font-weight: 900;
	line-height: 4.5rem;
	margin-top: 3rem;
}
.fArea-content-txt {
	font-size: 2rem;
	font-style: normal;
	font-weight: 500;
	line-height: 2.6rem;
	margin-top: 3rem;
}

.fArea-map {
	width: 49%;
	margin-left: auto;
}

.fArea-right {
	width: 30%;
	position: relative;
	z-index: 5;
	margin-left: auto;
	display: flex;
	flex-direction: column;
	background: var(--primary-green-cl);
	justify-content: center;
	padding-left: 5%;
}

.fArea-right ul {
	display: flex;
	flex-direction: column;
	gap: 2rem;
	color: #fff;
	font-family: var(--title-font);
	font-size: 5rem;
	font-style: normal;
	font-weight: 300;
	line-height: normal;
}

.fArea-right ul li {
	position: relative;
	padding-left: 3rem;
}

.fArea-right ul li::before {
	content: "";
	position: absolute;
	left: 0rem;
	width: 1.5rem;
	height: 1.5rem;
	top: 50%;
	transform: translateY(-50%);
	border-radius: 100%;
	background: #37374e;
}

.fArea-right ul li:nth-child(2):before {
	background: var(--yellow-cl);
}

.fArea-right ul li:nth-child(3):before {
	background: #3b2517;
}

.fArea-right ul li:nth-child(4):before {
	background: var(--orange-cl);
}

.fArea-shape {
	width: 100%;
	left: 0;
	bottom: 0;
	position: absolute;
}

/* ! Standards */
.sStandards {
	background: #e6e6e6;
}

.sStandards-wp {
	display: flex;
	width: 100%;
	height: 100%;
	position: relative;
	padding: 10rem 10% 10rem 10%;
	flex-wrap: wrap;
	gap: 1%;
}

.sStandards-top {
	display: flex;
	flex-direction: column;
	width: 60%;
}

.sStandards-title {
	color: var(--primary-green-cl);
	font-family: var(--title-font);
	font-size: 6.9rem;
	font-style: normal;
	font-weight: 800;
	line-height: 7.5rem;
}

.sStandards-txt {
	color: var(--primary-green-cl);
	font-size: 2rem;
	font-style: normal;
	font-weight: 500;
	line-height: 2.6rem;
	margin-top: 2rem;
}

.sStandards-slider {
	width: 100%;
	display: flex;
	flex-direction: column;
	margin-top: 10rem;
}

.standarsSwiper-img {
	width: 70%;
	margin: 0 auto;
}

.sStandards-slider .news_nav {
	gap: 2rem;
	margin-top: 5rem;
	padding: 0;
}

.clusterSus .cluster_leader-wp {
	padding: 0 10%;
}

.susJourney .history_Timeline-mid-content {
	background: #3b2517;
}

.susJourney .history_Timeline-dates {
	background: #3d441e;
}

.reportingSus {
	height: 100vh;
}

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

.reportingSus-left {
	width: 36%;
	position: relative;
	display: flex;
	flex-direction: column;
	padding-left: 10%;
	padding-right: 1.5rem;
	padding-top: 15rem;
	padding-bottom: 10rem;
}

.reportingSus-title {
	color: var(--primary-green-cl);
	font-family: var(--title-font);
	font-size: 6.9rem;
	font-style: normal;
	font-weight: 800;
	line-height: 7.5rem;
}

.reportingSus-txt {
	color: var(--primary-green-cl);
	font-size: 2rem;
	font-style: normal;
	font-weight: 500;
	line-height: 2.6rem;
	margin-top: 2.5rem;
}

.reportingSus-mid {
	width: 28%;
	height: 100%;
	background: #b7c7d3;
	display: flex;
	position: absolute;
	left: 50%;
	transform: translateX(-50%);
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center center;
}

.reportingSus-right {
	width: 36%;
	height: 100%;
	margin-left: auto;
	display: flex;
	padding: 30rem 5rem 10rem 5rem;
	flex-direction: column;
	justify-content: flex-start;
	position: sticky;
	top: 2rem;
}

.reportingSus-right .policies_block-scrolllist {
	margin-top: 8rem;
}

.reportingSus-right .fill_dls-white {
	fill: var(--primary-green-cl);
}

.reportingSus-right .policies_block-scrolllist-dl a {
	display: flex;
	color: var(--primary-green-cl);
	font-family: var(--title-font);
	gap: 2rem;
	align-items: flex-end;
}

.reportingSus-right .policies_block-scrolllist-dl a:hover {
	color: var(--orange-cl);
}

/* ! take part journey */
.pjourney {
	height: 100vh;
}

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

.pjourney-left {
	width: 36%;
	position: relative;
	display: flex;
	flex-direction: column;
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center;
}

.pjourney-mid {
	width: 28%;
	height: 100%;
	background: #3b2517;
	display: flex;
	position: absolute;
	left: 50%;
	transform: translateX(-50%);
}

.pjourney-mid-shape {
	position: absolute;
	right: -0.1rem;
	bottom: -0.1rem;
	width: 100%;
	pointer-events: none;
}

.pjourney-mid-content {
	width: 100%;
	display: flex;
	flex-direction: column;
	padding: 5rem 5%;
}

.pjourney-mid-content-title {
	color: #fff;
	font-family: var(--title-font);
	font-size: 6.5rem;
	font-style: normal;
	font-weight: 800;
	line-height: 7.5rem;
}

.pjourney-mid-content-txt {
	color: #fff;
	font-size: 2rem;
	font-style: normal;
	font-weight: 500;
	line-height: 2.6rem;
	margin-top: 4rem;
}

.pjourney-form {
	display: flex;
	width: 100%;
}
.header {
	transition: transform 0.3s ease, opacity 0.3s ease;
}

.header.panel2-active.hide-header,
.header.hide-header {
	transform: translateY(-100%);
	opacity: 0;
	pointer-events: none;
}

.blockListing_filter_dropdown-select {
	width: 30rem;
	display: flex;
}

.blockListing_filter_dropdown select {
	width: 100%;
}

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

/* ! forms */
.sp_form_right-form {
	width: 75%;
	display: flex;
	padding: 20rem 10rem;
}

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

.js-form-item {
	display: flex;
	width: 100%;
	margin-bottom: 5rem;
}

.form-type-textfield input,
.form-type-email input,
.form-type-number input {
	border-bottom: 1px solid #fff;
	color: #fff;
	font-family: var(--body-font);
	font-size: 3rem;
	font-style: normal;
	font-weight: 500;
	line-height: normal;
	width: 100%;
}

.select2-container--default .select2-selection--single {
	border: none;
	border-bottom: 1px solid #fff;
	color: #fff;
	font-family: var(--body-font);
	font-size: 3rem;
	font-style: normal;
	font-weight: 500;
	line-height: normal;
	width: 100%;
	background: transparent;
	border-radius: 0;
	padding-bottom: 4px;
	height: auto;
}

.select2-container--default
	.select2-selection--single
	.select2-selection__rendered {
	color: #fff;
	font-family: var(--body-font);
	font-size: 3rem;
	font-style: normal;
	font-weight: 500;
	line-height: normal;
}

.sp_form_right-form ::-webkit-input-placeholder {
	color: #fff;
	font-family: var(--body-font);
	font-size: 3rem;
	font-style: normal;
	font-weight: 500;
	line-height: normal;
}
.sp_form_right-form ::-moz-placeholder {
	color: #fff;
	font-family: var(--body-font);
	font-size: 3rem;
	font-style: normal;
	font-weight: 500;
	line-height: normal;
}
.sp_form_right-form :-ms-input-placeholder {
	color: #fff;
	font-family: var(--body-font);
	font-size: 3rem;
	font-style: normal;
	font-weight: 500;
	line-height: normal;
}

.sp_form_right-form :-moz-placeholder {
	color: #fff;
	font-family: var(--body-font);
	font-size: 3rem;
	font-style: normal;
	font-weight: 500;
	line-height: normal;
}

.form-type-managed-file {
	display: flex;
	position: relative;
	margin-bottom: 9rem;
}

.form-type-managed-file label {
	color: #fff;
	font-family: var(--body-font);
	font-size: 3rem;
	font-weight: 500;
	line-height: normal;
}

/* Wrap styling */
.form-managed-file {
	display: flex;
	flex-direction: column;
	gap: 0.5rem;
	/* position: relative; */
	font-family: var(--title-font);
	max-width: 230px;
	margin-left: auto;
}

/* Label styling */
.form-managed-file label {
	font-weight: 600;
	margin-bottom: 0.3rem;
	color: #333;
	font-size: 1rem;
}

/* File upload wrapper */
.file-upload-wrapper {
	position: absolute;
	display: inline-block;
	width: 100%;
	width: 100%;
	right: 0;
}

/* Hide ugly default input */
.file-upload-wrapper input[type="file"] {
	opacity: 0;
	width: 100%;
	height: 3rem;
	position: absolute;
	top: 0;
	left: 0;
	cursor: pointer;
	z-index: 2;
	background: transparent;
}

/* Custom button */
.file-upload-wrapper::before {
	content: attr(data-text);
	display: block;
	width: 100%;
	background: transparent;
	border: 1px solid #fff;
	border-radius: 6px;
	padding: 1rem;
	text-align: center;
	color: #ffff;
	font-size: 0.95rem;
	cursor: pointer;
	transition: all 0.3s ease;
	font-size: 2rem;
	font-style: normal;
	font-weight: 300;
	line-height: 0px;
	border-top-right-radius: 6rem;
	height: 4rem;
	display: flex;
	align-items: center;
	padding: 0 30px;
	max-width: 22rem;
	position: absolute;
	right: 0;
}

/* Hover effect */
.file-upload-wrapper:hover::before {
	background: var(--technology-cl);
}

/* When a file is selected */
.file-upload-wrapper.file-selected::before {
	content: attr(data-filename);
	color: #333;
	background: #e0ffe0;
	border-color: #34a853;
}

/* Upload button (hidden by Drupal but style in case visible) */
.upload-button {
	display: none;
}

/* Uploaded file container */
.form-managed-file .file {
	display: flex;
	align-items: center;
	background: transparent;
	border: transparent;
	border-radius: 0px;
	padding: 0;
	margin-top: 0;
	color: #fff;
	font-family: var(--body-font);
	font-size: 1.6rem;
	line-height: 1.4;
	margin-top: 5rem;
	width: auto;
}

/* File link (name) */
.form-managed-file .file a {
	color: #fff;
	text-decoration: none;
	font-weight: 500;
	transition: color 0.3s ease;
}

.form-managed-file .file a:hover {
	color: var(--technology-cl); /* or your accent color */
	text-decoration: underline;
}

/* File size */
.form-managed-file .file__size {
	margin-left: 1rem;
	font-size: 1.4rem;
	color: #ccc;
}

/* Remove button */
.form-managed-file .remove-button {
	background: transparent;
	border: none;
	border-radius: 4px;
	color: #fff;
	padding: 0.4rem 1rem;
	font-size: 1.4rem;
	cursor: pointer;
	transition: all 0.3s ease;
	position: absolute;
	right: inherit;
	top: 50px;
	color: red;
}

.form-managed-file .remove-button:hover {
	background: var(--technology-cl);
	color: #fff;
	border-color: var(--technology-cl);
}

.form-type-checkbox [type="checkbox"] {
	appearance: none;
	width: 4rem;
	height: 4rem;
	background-color: #fff;
	cursor: pointer;
	transition: var(--transition-03s);
}

.form-type-checkbox [type="checkbox"]:checked {
	background-color: var(--technology-cl);
}

.form-type-checkbox .description {
	width: 85%;
	margin-left: auto;
	color: #fff;
	font-size: 2rem;
	font-style: normal;
	font-weight: 400;
	line-height: normal;
}

.select2-container--default
	.select2-selection--single
	.select2-selection__arrow
	b {
	background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACIAAAAbCAYAAAAZMl2nAAAACXBIWXMAAAsTAAALEwEAmpwYAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAPKSURBVHgBxVdLTxpRFJ4Z3i8fSGtKawoEtRGqJrRaXbHp0m4s20aNmhjThcvGjYl/wH+AJq504z/ANOm61ag7U60N4IrGREYcZm6/M9whiI+CQHqSkzvDvfecb77zuBdRqFEYYyIEAxvGK+kQtKNiyR/oKfQH1u1inYBRaKaQ9zh0DZpjtQmtS9I+oVEhBjiAFGtMUsQiMUT6GBBrrLlC9jprBiHLchAbvrPWyE9o4F8MiCsrK5KmabushUL24VKCitUgdCA0GY/HzcfHx32qqp6yFgjZ3dvb6yc/5I/7FW8wkkgkTHi0Qj3r6+sxRVHOWBOF7JFdr9fbFg6HbQSGlSKhYyDnVO/S0dGRVCwWzRcXF7adnR3FZDJ9HRsbe282mz1Cg1IoFNKrq6uflpeXf+NVlSRJtVqt2vz8vFbuNYznRiwWs+DV5Xa7n9rt9iAWRhcWFj7k8/kMa0BoP9mBvddkF/afQNyc/Vt5IhIQv9/v9Hg8Pmx4iY0Ri8Xydm5ubvKxYGjfzMzMJOy8IXtwFSD79MFQCxHAKnsLKyWNKRAI2DF2OJ3OZxjDQqmNj0xPT3+sFwytp30AMQId4vb8HRDyQznJ/d4AIlSEx9nW1uZ1OBzP8dxLRsjY7OxszWAMENg/Ch222Wx9sPcCz15iPRKJUFikW8nEeB+hSQNMe3t7J4EhI/WAqWBiFDqMkLyCnR6EpKu7u9vFQRhslBnRUdGpStlLhiYmJlSAUVwuVwGGZGT8JbJcRvkVNjY2fi0uLn5G980Kdwj9TvObm5tntB4qo/ouUXl5hPsKYIoDAwMq3FC1UHLcf/gYzHDk5TCBmV583SAxQwlYzUwFE+94OPo5Ez6DCQq/UKeIfJNeSRRbaDlMeL4BhsapqakEgRRKd5V+aA9Ur5CKcNzr0HTfRCqV0kOWTqeZETo4FHBWCHAo7e/vX2az2W/j4+O9S0tLX5LJ5BnmrgFWBnN5NMc8+kUhGAwqFI7Dw0PtoYvSg1coVrplUQKbMpmMBaDsoNsBh07MOaA2LJOQCwzgrikn8J6HylwVlKm6vb2tCQ/lQ42i54xQESaeM2HqvkKp1wzyEi1XB36z3tkrGpHq0qYExuinlk2AMIZ43+mCuqtKtCYx17KIX5rpsRiNRsVcLneFw1FDWSr4XaJ5lKkCgNc+n4/CUTw4ONDquTzXRRsr3eRFHOHSycmJGX3DhHwR0WfY+fm5BsaKoVBI29raMvpE68Q4Dij+/IJj4SHTLztCnR9nyKM28dizqv36e8uZuAtM1XnR3H9T/0v+Ahbl+PXqP4laAAAAAElFTkSuQmCC);

	border-color: transparent;
	border-style: none;
	border-width: none;
	left: 50%;
	margin-left: -15px;
	margin-top: -2px;
	position: absolute;
	top: 50%;
	width: 23px;
	height: 23px;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
}

.form-actions {
	display: flex;
}

.form-actions input {
	padding: 0rem 2rem 0rem 2rem;
	border: 1px solid #fff;
	color: #fff;
	font-family: var(--title-font);
	font-size: 2.4rem;
	font-weight: 300;
	border-top-right-radius: 6rem;
	height: 4rem;
	display: flex;
	align-items: center;
}

.user-logged-in .header {
	top: 15rem;
}

.user-logged-in .header_nav {
	top: 16rem;
}

.form-type-webform-markup p {
	color: #fff;
	font-size: 2rem;
	line-height: 2.4rem;
	font-style: normal;
	font-weight: 400;
}

/* ! Newsletter Form */

.newsletterSection-right_form {
	display: flex;
	width: 100%;
	padding: 8rem 5rem 0rem 5rem;
}
.newsletterSection-right_form .form-actions input {
	border: 1px solid var(--primary-green-cl);
	color: var(--primary-green-cl);
}

.newsletterSection-right_form .form-type-textfield input,
.newsletterSection-right_form .form-type-email input,
.newsletterSection-right_form .form-type-number input {
	border-bottom: 1px solid var(--primary-green-cl);
}

.newsletterSection-right_form .form-type-webform-markup p {
	color: var(--primary-green-cl);
}

.newsletterSection-right_form .form-type-checkbox [type="checkbox"] {
	appearance: none;
	width: 4rem;
	height: 4rem;
	background-color: var(--primary-green-cl);
	cursor: pointer;
	transition: var(--transition-03s);
}

.newsletterSection-right_form .form-type-checkbox .description {
	width: 88%;
	margin-left: auto;
	color: var(--primary-green-cl);
}

.newsletterSection-right_form .form-type-checkbox [type="checkbox"]:checked {
	background-color: var(--technology-cl);
}

.newsletterSection {
	padding-bottom: 15rem;
}

.hm_map-list {
	display: flex;
	margin-top: 4rem;
	padding-right: 5rem;
}

.hm_map-list ul {
	display: flex;
	flex-wrap: wrap;
	gap: 1.5rem;
}

.hm_map-list ul li {
	font-size: 1.8rem;
	color: var(--primary-green-cl);
	font-family: var(--title-font);
	font-weight: 500;
	display: flex;
	gap: 1rem;
	align-items: center;
}

.hm_map-list ul li span {
	width: 1.5rem;
	height: 1.5rem;
	border-radius: 100%;
}

.hm_map-list ul li:nth-child(1) span {
	background: var(--agri-cl);
}
.hm_map-list ul li:nth-child(2) span {
	background: var(--realestate-cl);
}
.hm_map-list ul li:nth-child(3) span {
	background: var(--hospitality-cl);
}
.hm_map-list ul li:nth-child(4) span {
	background: var(--logistics-cl);
}
.hm_map-list ul li:nth-child(5) span {
	background: var(--finance-cl);
}
.hm_map-list ul li:nth-child(6) span {
	background: var(--commerce-cl);
}
.hm_map-list ul li:nth-child(7) span {
	background: var(--technology-cl);
}
.hm_map-list ul li:nth-child(8) span {
	background: var(--primary-green-cl);
}

/* ! map at a glance */
.gl_map_left {
	height: 100%;
	width: 62%;
	position: relative;
	padding-left: 5%;
}

.gl_map_left-tabhead {
	display: flex;
	flex-direction: column;
	gap: 2rem;
	position: relative;
	top: 8rem;
}

.gl_map_left-tabitem {
	display: flex;
	gap: 1rem;
	color: var(--dark-puple-cl);
	font-family: var(--title-font);
	font-size: 5rem;
	font-style: normal;
	font-weight: 300;
	line-height: 5rem;
	cursor: pointer;
	transition: var(--transition-03s);
}

.gl_map_left-tabitem:hover {
	color: var(--primary-green-cl);
}

.mapfill-icn {
	stroke: #323e48;
	fill: transparent;
}

.gl_map_left-tabitem.active .mapfill-icn {
	stroke: #323e48;
	fill: #323e48;
}

.gl_map_left-tabitem.active {
	font-weight: 800;
}

.gl_map_left-tabitem-icon {
	width: 3.1rem;
}

.gl_map_left-tabitem-icon svg {
	width: 100%;
	height: 100%;
	display: block;
}
.gl_map_left-map {
	display: flex;
	width: 90%;
	margin-top: 10rem;
	position: relative;
	left: 8rem;
	top: -2rem;
}

.segmap {
	position: absolute;
	left: 0;
	top: 0;
	opacity: 0;
	pointer-events: none;
	transition: var(--transition-03s);
	visibility: hidden;
}

.segmap.active {
	display: flex;
	width: 100%;
	position: inherit;
	opacity: 1;
	pointer-events: all;
	visibility: visible;
}

.gl_map_right-list {
	display: flex;
	margin-top: 4rem;
	padding-right: 5rem;
}

.gl_map_right-list ul {
	display: flex;
	flex-wrap: wrap;
	gap: 1.5rem;
}

.gl_map_right-list ul li {
	font-size: 1.8rem;
	color: var(--primary-green-cl);
	font-family: var(--title-font);
	font-weight: 500;
	display: flex;
	gap: 1rem;
	align-items: center;
}

.gl_map_right-list ul li span {
	width: 1.5rem;
	height: 1.5rem;
	border-radius: 100%;
}

#segments_list li:nth-child(1) span {
	background: var(--agri-cl);
}
#segments_list li:nth-child(2) span {
	background: var(--realestate-cl);
}
#segments_list li:nth-child(3) span {
	background: var(--hospitality-cl);
}
#segments_list li:nth-child(4) span {
	background: var(--logistics-cl);
}
#segments_list li:nth-child(5) span {
	background: var(--finance-cl);
}
#segments_list li:nth-child(6) span {
	background: var(--commerce-cl);
}
#segments_list li:nth-child(7) span {
	background: var(--technology-cl);
}
#segments_list li:nth-child(8) span {
	background: var(--primary-green-cl);
}

#investments_list li:nth-child(1) span {
	background: #78bf26;
}
#investments_list li:nth-child(2) span {
	background: #8f6c95;
}
#investments_list li:nth-child(3) span {
	background: #b7c7d3;
}
#investments_list li:nth-child(4) span {
	background: #dac556;
}
#investments_list li:nth-child(5) span {
	background: #37374e;
}
#investments_list li:nth-child(6) span {
	background: #d4b9a8;
}

.gl_map_right-list ul {
	display: none;
	width: 100%;
}

.gl_map_right-list ul.active {
	display: flex;
}

#investments_list {
	padding-right: 8rem;
}

.clusterMap-left {
	width: 62%;
	padding: 7rem 6rem;
	position: relative;
	z-index: 1;
}

.clusterMap-left ul {
	display: flex;
	gap: 1.5rem;
	font-size: 1.8rem;
	color: var(--primary-green-cl);
	font-family: var(--title-font);
	font-weight: 500;
	display: flex;
	gap: 1rem;
	flex-direction: column;
	padding-left: 4rem;
}

.clusterMap-left ul li span {
	width: 1.5rem;
	height: 1.5rem;
	border-radius: 100%;
}

.clusterMap-left ul li {
	display: flex;
	gap: 1rem;
	align-items: center;
}

/* ! clusterMap_finance */
.clusterMap_finance .clusterMap-left ul li:nth-child(1) span {
	background: var(--finance-cl);
	border-radius: 0%;
}

.clusterMap_finance .clusterMap-left ul li:nth-child(2) span {
	background: var(--primary-green-cl);
}

/* !  clusterMap-technology */
.clusterMap-technology .clusterMap-left ul li:nth-child(1) span {
	background: #9a9a9a;
	border-radius: 0%;
}

.clusterMap-technology .clusterMap-left ul li:nth-child(2) span {
	background: #dac556;
	border-radius: 0%;
}

.clusterMap-technology .clusterMap-left ul li:nth-child(3) span {
	background: #e96852;
}

.clusterMap-technology .clusterMap-left ul li:nth-child(4) span {
	background: #b7c7d3;
}

/* ! clusterMap-commerce */
.clusterMap-commerce .clusterMap-left ul li:nth-child(1) span {
	background: #d4b9a8;
	border-radius: 0%;
}

/* ! clusterMap-logistics */
.clusterMap-logistics .clusterMap-left ul li:nth-child(1) span {
	background: #8f6c95;
	border-radius: 0%;
}

/* ! clusterMap-realestate */
.clusterMap-realestate .clusterMap-left ul li:nth-child(1) span {
	background: #3b2517;
	border-radius: 0%;
}
.clusterMap-realestate .clusterMap-left ul li:nth-child(2) span {
	background: #3b2517;
	border-radius: 0%;
}
.clusterMap-realestate .clusterMap-left ul li:nth-child(3) span {
	background: #3b2517;
	border-radius: 0%;
}
.clusterMap-realestate .clusterMap-left ul li:nth-child(4) span {
	background: #dac556;
}

/* ! clusterMap-hospitality */
.clusterMap-hospitality .clusterMap-left ul li:nth-child(1) span {
	background: #dac556;
	border-radius: 0%;
}
.clusterMap-hospitality .clusterMap-left ul li:nth-child(2) span {
	background: #37374e;
	border-radius: 0%;
}
.clusterMap-hospitality .clusterMap-left ul li:nth-child(3) span {
	background: #b7c7d3;
}

/* ! clusterMap-agri */
.clusterMap-agri .clusterMap-left ul li:nth-child(1) span {
	background: #3d441e;
	border-radius: 0%;
}
.clusterMap-agri .clusterMap-left ul li:nth-child(2) span {
	background: #78bf26;
}

/* ! Contact details */
.contactDetails-box {
	display: flex;
	width: 100%;
}

.contactDetails .blockListing_filter-jobitem {
	width: 29.3333%;
	margin-bottom: 5rem;
	display: flex;
	flex-direction: column;
}

.companyContact .blockListing_filter-jobitem-bot {
	background: var(--primary-green-cl);
}

.companyContact .blockListing_filter-jobitem-top {
	color: var(--primary-green-cl);
}

.PressrelationsContact .blockListing_filter-jobitem-bot {
	background: #3d441e;
}
.PressrelationsContact .blockListing_filter-jobitem-top {
	color: #3d441e;
}

.investorsRelationsContact .blockListing_filter-jobitem-bot {
	background: #8f6c95;
}

.investorsRelationsContact .blockListing_filter-jobitem-top {
	color: #8f6c95;
}

.contactDetails-box-title {
	color: #fff;
	font-size: 3rem;
	font-style: normal;
	font-weight: 500;
	line-height: 3.5rem;
	padding-right: 5%;
	height: 15rem;
}

.contactDetails-box {
	display: flex;
	flex-direction: column;
}

.contactDetails-box-details {
	display: flex;
	flex-direction: column;
	gap: 2rem;
	margin-top: 3rem;
}

.contactDetails-box-details li {
	display: flex;
}

.contactDetails-box-details li a {
	display: flex;
	flex-direction: row;
	gap: 1.5rem;
	align-items: center;

	color: #fff;
	font-size: 2rem;
	font-style: normal;
	font-weight: 500;
	line-height: 3.5rem;
	text-decoration: underline;
	text-underline-position: under;
}

.contactDetails-box-details li a:hover {
	color: var(--yellow-cl);
}

.contactDetails-box-details li span {
	width: 3.5rem;
}

.contactDetails-box-details li span svg {
	width: 100%;
	height: 100%;
	display: block;
}

.fillwhitetoyellow {
	fill: #fff;
	transition: var(--transition-03s);
}

.contactDetails-box-details li a:hover .fillwhitetoyellow {
	fill: var(--yellow-cl);
}

/* ! Contact Maps */
.contactMaps {
	height: 45rem;
	background: var(--primary-green-cl);
	flex-direction: row;
	margin: 5rem 0 10rem 0;
}

.contactMaps-left {
	width: 60%;
	display: flex;
	padding: 5rem 15% 5rem 10%;
	flex-direction: column;
	justify-content: center;
}

.contactMaps-title {
	color: #fff;
	font-family: var(--title-font);
	font-size: 6.5rem;
	font-style: normal;
	font-weight: 800;
	line-height: 7.5rem; /* 108.696% */
}

.contactMaps-txt {
	color: #fff;
	font-size: 2rem;
	font-style: normal;
	font-weight: 500;
	line-height: 2.6rem;
	margin-top: 3rem;
}

.contactMaps-right {
	width: 40%;
	display: flex;
}

.contactMaps-right iframe {
	width: 100%;
	height: 100%;
	border: none;
}

.contactForm .sp_form_right {
	background: var(--primary-green-cl);
}

.newsroom {
	display: flex;
	flex-wrap: wrap;
	width: 100%;
	margin-top: 10rem;
	gap: 4%;
}

.newsroom .news_item {
	width: 48%;
	margin-bottom: 8rem;
}

.newsroom .news_item img {
	height: 100%;
	object-fit: cover;
}

.gitNewsroom {
	margin-bottom: 8rem;
}

/* ! Main release */
.mainRelease {
	padding: 5rem 10% 5rem 10%;
}

.mainRelease-wp {
	display: flex;
	width: 100%;
	align-items: center;
}

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

.mainRelease-title {
	color: var(--primary-green-cl);
	font-family: var(--title-font);
	font-size: 6.9rem;
	font-weight: 800;
	line-height: 7.5rem;
}

.mainRelease-content {
	color: var(--primary-green-cl);
	font-size: 2rem;
	font-style: normal;
	font-weight: 500;
	line-height: 2.6rem;
	margin-top: 2.5rem;
}

.mainRelease-right {
	width: 30%;
	display: flex;
	flex-direction: column;
	justify-content: center;
	margin-left: auto;
}

/* ! newsdetails */
.header.darkHeader {
	background: var(--primary-green-cl);
}

.header.darkHeader.panel2-active .line {
	stroke: #fff;
}

.header.darkHeader.panel2-active .header_logo {
	width: 7.8rem;
	left: 50%;
	transform: translate(-50%, -50%);
	top: 50%;
}

.header.darkHeader .header_logo {
	width: 7.8rem;
}

.header.darkHeader.panel2-active .filllogo {
	fill: #fff;
}

.header.darkHeader.panel2-active .header_shareprice {
	color: #fff;
}

.newsDetails {
	width: 100%;
	display: flex;
	padding-left: 10%;
	margin-top: 22rem;
}

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

.newsDetails-top {
	display: flex;
	width: 100%;
	flex-direction: column;
	position: relative;
}

.newsDetails-title {
	color: var(--primary-green-cl);
	font-family: var(--title-font);
	font-size: 6.5rem;
	font-style: normal;
	font-weight: 800;
	line-height: 7.5rem;
	width: 70%;
}

.newsDetails-date {
	display: flex;
	flex-direction: column;
	color: var(--primary-green-cl);
	font-size: 2rem;
	font-style: normal;
	font-weight: 500;
	line-height: 2.5rem;
	gap: 2rem;
	margin-top: 5rem;
}

.newsDetails-gallery {
	display: flex;
	width: 100%;
	flex-direction: column;
	margin-top: 8rem;
}

.newsDetails-Content {
	display: flex;
	width: 100%;
	flex-direction: column;
	margin-top: 5rem;

	color: var(--primary-green-cl);
	font-family: var(--body-font);
	font-size: 2.2rem;
	font-style: normal;
	font-weight: 500;
	line-height: 2.8rem;
	padding-right: 10%;
}

.newsDetails-Content h2 {
	font-family: var(--title-font);
	font-size: 5.5rem;
	font-style: normal;
	font-weight: 700;
	line-height: 6.5rem;
	color: var(--primary-green-cl);
}

.newsDetails-Content h3 {
	color: var(--primary-green-cl);
	font-family: var(--title-font);
	font-size: 4.5rem;
	font-style: normal;
	font-weight: 700;
	line-height: 5.5rem;
}

.newsDetails-Content h4 {
	color: var(--primary-green-cl);
	font-family: var(--title-font);
	font-size: 4rem;
	font-style: normal;
	font-weight: 300;
	line-height: 5rem;
}

.newsDetails-Content strong {
	font-weight: 800;
}

.newsDetails-Content ul {
	display: flex;
	flex-direction: column;
	gap: 1rem;
	margin-top: 2rem;
}

.newsDetails-Content li {
	position: relative;
	padding-left: 3rem;
}

.newsDetails-Content li::before {
	content: "";
	width: 1.5rem;
	height: 1.5rem;
	position: absolute;
	left: 0;
	top: 7px;
	background: var(--primary-green-cl);
}

.newsDetails-Content-img {
	margin: 5rem 0;
	display: block;
	width: 100%;
}

.newsDetails-Content-imgBox {
	width: 50%;
	position: relative;
}

.playvideoWhite {
	width: 10rem;
	height: 10rem;
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
}

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

.playvideoWhite .filllogo_play {
	fill: #fff;
}

.newsDetails-Quote {
	width: 100%;
	display: flex;
	padding-right: 10%;
	color: #8f6c95;
	font-family: var(--title-font);
	font-size: 5rem;
	font-style: normal;
	font-weight: 800;
	line-height: 6rem; /* 120% */
	padding: 5rem 10% 5rem 0%;
}

.shareit {
	position: absolute;
	right: 10%;
	top: 0;
}

.shareit-icn {
	width: 6.5rem;
	height: 6.5rem;
}
.shareit-icn svg {
	width: 100%;
	height: 100%;
	display: block;
}

.gl_seventhpanel_tableft_title {
	display: none;
}

.mobAccordion {
	display: none;
}

.mobImg {
	display: none;
}

.thirdPanel_mobileAccordion,
.historyAccordion,
.history_Timeline-Mobile,
.history_Timeline-Mobile-bg {
	display: none;
}
