body {
	font-family: "Open Sans", sans-serif;
	font-size: clamp(14px, 0.9vw, 16px);
	font-weight: 300;
	background-color: #fff;
	color: #ffffff;
	overflow-x: hidden;
	scroll-behavior: smooth;
}

.container {
	max-width: 100%;
}

.navbar {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	width: 100%;
	z-index: 1050;
	padding: 0;
	transition: transform 0.35s ease;
}

/* Hide navbar */
.navbar.navbar-hidden {
	transform: translateY(-100%) !important;
}

.navbar .container {
	background-color: transparent;
	transition: background-color 0.3s ease;
	padding-left: 50px;
	padding-right: 50px;
}

.navbar.navbar-scrolled .container {
	background-color: rgba(255, 255, 255, 0.9);
	box-shadow: 0 2px 10px rgba(0, 0, 0, .3);
}

.navbar-brand img {
	height: 35px;
}

.navbar-brand.nav-desktop {
	margin-right: 30px;
}

.navbar-nav {
	gap: 8px;
}

.nav-item {
	display: flex;
}

/* Style the navigation links */
.navbar-nav .nav-link {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	margin-top: 20px;
	margin-bottom: 10px;
	padding: 3px 15px;
	font-size: clamp(12px, 0.8vw, 15px);
	color: #0f2c58 !important;
	font-weight: 400;
	text-decoration: none;
	
	/* Angled cut on the top-right corner */
	clip-path: polygon(
		0 0, 
		calc(100% - 15px) 0, 
		100% 15px, 
		100% 100%, 
		0 100%
	);
}

.navbar-nav .nav-link::before {
  content: "";
  position: absolute;
  top: 0px;
  left: 0px;
  right: 0px;
  bottom: 0px;
  border: 2px solid #ffffff;
  pointer-events: none;
  clip-path: polygon(
    0 0, 
    calc(100% - 13px) 0, 
    100% 13px, 
    100% 100%, 
    0 100%
  );
}

.navbar-nav .nav-link::after {
	content: "";
	position: absolute;
	top: 14px;
	right: 0px;
	width: 21px;
	height: 2px;
	background: #fff;
	transform: rotate(45deg);
	transform-origin: right center;
}

.navbar-nav .nav-link:hover {
  	background-color: rgba(255, 255, 255, 0.5);
}

.navbar-nav .nav-link.active {
	background-color: rgba(255, 255, 255, 0.5);
}

.navbar-scrolled .navbar-nav .nav-link {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	margin-top: 20px;
	margin-bottom: 10px;
	padding: 3px 15px;
	font-size: clamp(13px, 0.8vw, 15px);
	color: #0f2c58 !important;
	font-weight: 400;
	text-decoration: none;
	clip-path: polygon(
		0 0, 
		calc(100% - 15px) 0, 
		100% 15px, 
		100% 100%, 
		0 100%
	);
}

.navbar-scrolled .navbar-nav .nav-link::before {
  content: "";
  position: absolute;
  top: 0px;
  left: 0px;
  right: 0px;
  bottom: 0px;
  border: 2px solid #0f2c58 !important;
  pointer-events: none;
  clip-path: polygon(
    0 0, 
    calc(100% - 13px) 0, 
    100% 13px, 
    100% 100%, 
    0 100%
  );
}

.navbar-scrolled .navbar-nav .nav-link::after {
	content: "";
	position: absolute;
	top: 14px;
	right: 0px;
	width: 21px;
	height: 2px;
	background: #0f2c58 !important;
	transform: rotate(45deg);
	transform-origin: right center;
}

.navbar-scrolled .navbar-nav .nav-link:hover {
  	color: #fff !important;
	background-color: rgba(23, 61, 110, 1) !important;
}

.navbar-scrolled .navbar-nav .nav-link.active {
	color: #fff !important;
	background-color: rgba(23, 61, 110, 1) !important;
}

.navbar-toggler {
	background-color: #fff;
}

.navbar-toggler-icon {
	width: 1em;
	height: 1em;
}
/* Navigation START */
@media (max-width: 991.98px) {
    .navbar .container {
        padding: 10px 0;
    }

	.navbar-brand.nav-desktop {
		padding-left: 25px;
	}

    .navbar-brand img {
        height: 30px;
    }

    .navbar-toggler {
		background: #fff;
		border-radius: 8px;
		height: 30px;
		margin-right: 25px;
	}

	.navbar-toggler-icon {
		background-image: none;
		position: relative;
		width: 22px;
		height: 2px;
		background: #173d6e;
		display: block;
	}

	.navbar-toggler-icon::before,
	.navbar-toggler-icon::after {
		content: "";
		position: absolute;
		left: 0;
		width: 22px;
		height: 2px;
		background: #173d6e;
	}

	.navbar-toggler-icon::before {
		top: -7px;
	}

	.navbar-toggler-icon::after {
		top: 7px;
	}


    /* dropdown menu */
    .navbar-collapse {
        margin-top: 15px;
        background: transparent;
    }

    .navbar-nav {
        gap: 0;
		float: none;
    }

    .nav-item {
        width: 100%;
    }

	.navbar:has(.navbar-collapse.show) .container {
        background-color: rgba(255, 255, 255, 0.9);
        box-shadow: 0 2px 10px rgba(0,0,0,.3);
    }

    .navbar-nav .nav-link,
    .navbar-scrolled .navbar-nav .nav-link {
        margin: 0;
        padding: 14px 18px;
        display: flex;
        justify-content: flex-start;
        align-items: center;
        text-align: left;
        font-size: 15px;
        line-height: 1.4;
        clip-path: none;
        border-radius: 0;
		width: 100%;
    }

    /* remove desktop border */
    .navbar-nav .nav-link::before,
    .navbar-nav .nav-link::after,
    .navbar-scrolled .navbar-nav .nav-link::before,
    .navbar-scrolled .navbar-nav .nav-link::after {
        display: none;
    }

    .navbar-nav .nav-link:hover,
    .navbar-nav .nav-link.active {
        background: #173d6e;
        color: #fff !important;
    }
}

/* Navigation END */
/* Section Hero START */
.hero-section .container {
	position: relative;
	padding: clamp(40px, 6vh, 80px) clamp(25px, 3vw, 50px) 0;
	background-color: #0d1117;
	background-image: url(../images/hero/cover-bg.webp);
	background-size: 100% 100%;
  	background-position: bottom;
	background-repeat: no-repeat;
	overflow: hidden;
	height: 100vh;
}

.hero-section .container:before {
	content: "";
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-image: url("../images/hero/img01.webp");
	background-size: 100% 100%;
	background-repeat: no-repeat;
	pointer-events: none;
}

.hero-box {
	display: flex;
	align-items: center;
	height: 100%;
}

.annual-box {
	display: flex;
}

.annual-report-img img {
	display: flex;
	align-items: start;
	width: 90%;
  	margin-left: -20%;
}
.annual-report-img-mobile {
	display: none;
}

.company-box {
	position: relative;
	height: 100%;
}

.company-registration-number {
	position: absolute;
	top: 0;
	height: 10%;
	display: flex;
	align-items: self-start;
	justify-content: start;
	flex-direction: column;
	text-align: right;
	padding-top: 10px;
	padding-right: 20px;
	padding-bottom: 10px;
	color: #1B3C6E;
	font-size: clamp(11px, 1vw, 15px);
	line-height: 1.5;
	font-weight: 400;
	margin-top: 54px;
}

.company-registration-number span {
	font-size: clamp(9px, 0.8vw, 13px);
	font-weight: 400;
}

.company-registration-number,
.annual-report-img {
    opacity: 0;
}

.section-title-white {
	font-size: clamp(26px, 2.8vw, 40px);
	color: #fff;
	font-weight: 700;
	text-transform: uppercase;
	line-height: 1.15;
	margin-bottom: clamp(20px, 3vh, 40px);
	position: relative;
	z-index: 9;
	text-align: right;
}

.section-title-blue {
	font-size: clamp(32px, 2.8vw, 40px);
	color: #173d6e;
	font-weight: 700;
	text-transform: uppercase;
	line-height: 1.15;
	margin-bottom: clamp(20px, 3vh, 40px);
	position: relative;
	z-index: 9;
	text-align: right;
}

.section-title-orange {
	color: #fcb34d;
	margin-left: 70px;
	text-align: right;
}

/* Tablet */
@media (max-width: 1024px) {
	.hero-section .container {
		height: 65vh;
	}	
	.annual-report-img {
		margin-top: -20px;
	}
	.annual-report-img img {
		width: 80%;
	}
}
@media (max-width: 991.98px) {
	.hero-section .container {
		height: 50vh;
	}
}
@media (max-width: 767.98px) {
	.hero-section .container {
		height: 50vh;
	}
	.hero-section .container {
		height: 90%;
		background-image: url("../images/hero/cover-bg_mobile.webp");
	}
	.hero-section .container::before {
		background-image: url("../images/hero/cover-box_mobile.webp");
	}
	.annual-report-img {
		display: none;
	}
	.annual-report-img-mobile {
		display: block;
		margin-top: 0;
		margin-left: -10%;
	}
	.annual-report-img-mobile img {
		display: flex;
		align-items: start;
		width: 80%;
	}
}
@media (max-width: 550px) {
  .annual-report-img-mobile {
    display: block;
    margin-top: 0;
    margin-left: 0;
  }
}
/* Mobile */
@media (max-width: 480px) {
	.hero-section .container {
		height: 50vh;
	}
	.hero-section .container::before {
		height: 80%;
	}
	 .annual-report-img img {
		width: 50%;
	}

	.annual-report-img-mobile img {
		width: 70%;
	}
}
/* Section Hero END */
/* Section Executive START */
.executive-section .container {
	position: relative;
	padding:
		clamp(40px, 6vh, 80px) clamp(25px, 3vw, 50px) clamp(40px, 6vh, 80px) clamp(40px, 4vw, 77px);
	background-color: #173d6e;
	width: 100%;
	min-height: 100vh;
	max-width: 100%;
	overflow: hidden;
}

.executive-section .container:before {
	content: "";
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-image: url(../images/executive/analysis_img.webp);
	background-size: 100% 100%;
	background-repeat: no-repeat;
	pointer-events: none;
}

.executive-content-img {
	position: relative;
	display: flex;
	justify-content: flex-end;
	margin-top: clamp(-60px, -4vh, -30px);
	margin-right: clamp(-40px, -3vw, -20px);
}

.executive-content-img img {
    width: 90%;
    animation: lightGlow 2.5s infinite;
}

@keyframes lightGlow {

    0%, 100% {
        filter: drop-shadow(0 0 0 rgba(249, 181, 76, 0));
    }

    50% {
        filter: drop-shadow(0 0 10px rgba(249, 181, 76, 0.5));
    }

}
.yellow-box {
	position: absolute;
	bottom: 8%;
	background: #f9b54c;
	clip-path: polygon(40px 0, calc(100% - 20px) 0, 100% 20px, 100% calc(100% - 40px), calc(100% - 30px) 100%, 20px 100%, 20px calc(100% - 20px), 0 calc(100% - 20px), 0 40px);
	padding: clamp(15px, 2vw, 30px);
	width: 42%;
}

.yellow-box .list-unstyled {
    display: flex;
    flex-wrap: wrap;
    padding: 0 !important;
    margin: 0 !important;
}

.yellow-box .list {
    width: 33.333%;
}

.yellow-box .svg-container {
	width: 40%;
	margin-bottom: 0;
}

.executive-item {
	display: flex;
	align-items: flex-start;
	padding-left: 20px;
	margin-bottom: 30px;
	width: 100%;
}

.executive-item .executive-content {
	position: relative;
	flex-grow: 1;
	color: #173d6e;
}

.executive-item .executive-box-title {
	color: #fcb34d;
	margin-bottom: 0;
}

.executive-item .executive-box-subtitle {
	font-size: clamp(9px, 0.8vw, 13px);
	font-weight: 500;
}

.executive-item .executive-content h3 {
	font-size: clamp(20px, 2vw, 35px);
	white-space: nowrap;
	line-height: 1;
	margin-bottom: 0;
	font-weight: 700;
}

.executive-item .executive-content small {
	font-size: clamp(9px, 0.8vw, 13px);
	font-weight: 500;
}

.executive-item p {
	font-weight: 400;
	font-size: clamp(9px, 0.8vw, 13px);
	white-space: nowrap;
	margin-bottom: 0;
	color: #173d6e;
}

.executive-text {
	width: 100%;
	max-width: 100%;
	height: auto;
	position: relative;
	padding-top: clamp(30px, 8vh, 10%);
	padding-right: clamp(20px, 3vw, 40px);
}

.executive-text .executive-content p {
	font-size: clamp(11px, 1vw, 15px);
	line-height: 1.5;
	font-weight: 400;
}

/* Executive Tablet START */
@media (max-width: 1100px) {
	.executive-section .container {
		min-height: auto;
	}
}
@media (min-width: 768px) and (max-width: 900px) {
	.yellow-box {
		width: 52%;
	}
}
/* Executive Tablet END */

/* Executive Mobile START */
@media (min-width: 480.98px) and (max-width: 767.98px) {
    .yellow-box .list {
        width: 33.33%;
    }
}
@media (max-width: 767.98px) {
	.executive-section .container {
        overflow: visible;
        min-height: auto;
    }

    .executive-section .container:before {
        display: none;
    }

	.executive-globe-box {
        position: relative;
        overflow: visible;
        padding-bottom: 30px;
    }

	.executive-globe-box::before {
        content: "";
		position: absolute;
		top: 0;
		left: 0;
		right: 0;
		bottom: 0;
		background-image: url(../images/executive/analysis_img_box.webp);
		background-size: 100% 100%;
		background-position: top center;
		background-repeat: no-repeat;
		z-index: 0;
		pointer-events: none;
    }

	.executive-content-img {
		margin: 0 !important;
	}

    .executive-text {
        display: flex;
        justify-content: center;
        padding: 20px 0 0 50px;
    }

    .executive-text .executive-content {
        width: 80%;
    }

    .yellow-box {
        position: relative;
        bottom: auto;
        width: 100%;
        margin-top: 30px;
    }

	.executive-item .executive-box-subtitle {
		font-size: clamp(10px, 0.8vw, 13px);
	}

	.executive-item .executive-content h3 {
		font-size: clamp(20px, 2vw, 35px);
	}

	.executive-item .executive-content small {
		font-size: clamp(10px, 0.8vw, 13px);
	}

	.executive-item p {
		font-size: clamp(10px, 0.8vw, 13px);
	}
}
@media (max-width: 480px) {
	.yellow-box {
		padding-top: 30px;
	} 
	.yellow-box .list-unstyled {
        display: block;
    }
	
	.yellow-box .list {
		display: flex;
        width: 100%;
        margin-bottom: 20px;
    }

	.executive-item .executive-box-subtitle {
		font-size: clamp(11px, 0.8vw, 13px);
	}

	.executive-item .executive-content h3 {
		font-size: clamp(25px, 2vw, 35px);
	}

	.executive-item .executive-content small {
		font-size: clamp(11px, 0.8vw, 13px);
	}

	.executive-item p {
		font-size: clamp(11px, 0.8vw, 13px);
	}
}
/* Executive Mobile END */
/* Section Executive END */
/* Section Global START */
.global-footprint-section .container {
	padding: 0;
	background-color: #173d6e;
	position: relative;
}

.global-footprint-mobile {
	display: none;
}

.global-map {
	position: relative;
	width: 100%;
	padding:
		clamp(40px, 6vh, 80px) clamp(25px, 3vw, 50px) 0;
	border-bottom: 1px solid #fff;
}

.global-map .global-map-img {
	width: 100%;
	height: auto;
	display: block;
	position: absolute;
	top: 0;
	left: 0;
}

.background-animation .bg1,
.background-animation .bg2,
.background-animation .bg3,
.background-animation .bg4,
.background-animation .bg5 {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-size: 100%;
	background-repeat: no-repeat;
	background-position: center;
	opacity: 0;
	transform: translateX(-50px);
	transition: opacity 1s;
	z-index: 1;
}

.background-animation .bg1 {
	background-image: url(../images/global/01.webp);
}

.background-animation .bg2 {
	background-image: url(../images/global/02.webp);
}

.background-animation .bg3 {
	background-image: url(../images/global/03.webp);
}

.background-animation .bg4 {
	background-image: url(../images/global/04.webp);
}

.background-animation .bg5 {
	background-image: url(../images/global/05.webp);
}

.global-list {
	position: absolute;
	bottom: 20px;
	left: 60px;
	width: 47%;
	z-index: 2;
}

.global-list-box {
	position: relative;
	overflow: hidden;
	padding: 30px 20px 0 50px;
}

.global-list-box:before {
	content: "";
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	background-image: url(../images/global/img03.webp);
	background-size: 100% 100%;
	background-position: center;
	background-repeat: no-repeat;
	z-index: 0;
}

.global-list-box .content {
	position: relative;
	z-index: 1;
}

.global-list-box .list-unstyled {
	padding: 0 !important;
	margin: 0 !important;
}

.global-list-box .list {
	position: relative;
	float: left;
	width: 25%;
}

.global-list-box .list:last-child {
	margin-left: -5%;
}

.global-list-box .list:first-child:after {
	content: "";
	position: absolute;
	height: 2px;
	width: 40%;
	background-color: #fff;
	top: 20%;
	right: 8px;
}

.global-list-box .list:nth-child(2):after {
	content: "";
	position: absolute;
	height: 2px;
	width: 40%;
	background-color: #fff;
	top: 20%;
	right: 8px;
}

.global-list-box .svg-container {
	width: 50%;
	margin-bottom: 10px;
}

.global-item {
	display: flex;
	align-items: flex-start;
	margin-bottom: 30px;
	width: 100%;
}

.global-item .global-content {
	position: relative;
	flex-grow: 1;
	color: #173d6e;
}

.global-item .global-content h3 {
	font-size: clamp(20px, 2vw, 35px);
	line-height: 1;
	margin-bottom: 0;
	font-weight: 700;
}

.global-item .global-box-subtitle {
	font-size: clamp(9px, 0.8vw, 13px);
	font-weight: 500;
	text-align: center;
	margin-bottom: 10px;
	margin-left: -40%;
}

.global-item p {
	font-weight: 400;
	font-size: clamp(9px, 0.8vw, 13px);
	margin-top: -5px;
	margin-bottom: 0;
	color: #173d6e;
	text-align: center;
	margin-left: -40%;
}

.global-map ul {
	list-style: none;
	padding-left: 0;
}

.global-map .americas-list,
.global-map .africa-list,
.global-map .europe-list,
.global-map .asia-list,
.global-map .oceania-list {
	position: absolute;
	opacity: 0;
	font-size: clamp(11px, 0.65vw, 12px);
	font-weight: 400;
}

.global-map .americas-list {
	top: 28%;
	left: 33%;
	z-index: 3;
}

.global-map .africa-list {
	top: 6%;
	left: 57.5%;
	z-index: 3;
}

.global-map .europe-list {
	top: 26%;
	left: 60%;
	z-index: 3;
}

.global-map .asia-list {
	top: 7%;
	left: 73.5%;
	z-index: 3;
	width: 20%;
}

.global-map .oceania-list {
	top: 53%;
	left: 81%;
	z-index: 3;
}

.global-map .americas-list ul li,
.global-map .africa-list ul li,
.global-map .europe-list ul li,
.global-map .asia-list ul li,
.global-map .oceania-list ul li {
	text-shadow: -1px -1px 2px rgba(0,0,0,1), 1px 1px 2px rgba(0,0,0,1), 0 3px 8px rgba(0,0,0,1);
}

.global-map .americas-list h5,
.global-map .africa-list h5,
.global-map .europe-list h5,
.global-map .asia-list h5,
.global-map .oceania-list h5 {
	font-size: clamp(11px, 1vw, 15px);
	line-height: 1.5;
	font-weight: 700;
	color: #fff;
	text-transform: uppercase;
	text-shadow: 2px 5px 7px #000;
	display: flex;
	align-items: center;
	margin-left: -20px;
}

.global-map .americas-list h5 span,
.global-map .africa-list h5 span,
.global-map .europe-list h5 span,
.global-map .asia-list h5 span,
.global-map .oceania-list h5 span {
	font-family: "Doto", sans-serif;
	font-size: 30px;
	font-weight: 700;
	color: #fcb34d;
	text-transform: uppercase;
	text-shadow: 2px 5px 7px #000;
}

.global-map .asia-list .asia-list-country {
	display: flex;
}

.global-map .asia-list .asia-list-country ul {
	width: 50%;
}

.global-map .africa-list .africa-list-country {
	display: flex;
}

.global-map .africa-list .africa-list-country ul.country01 {
	width: 58%;
}

.global-map .africa-list .africa-list-country ul.country02 {
	width: 42%;
}

.country-list h3 {
	font-family: "Doto", sans-serif;
	font-size: clamp(55px, 7vw, 104px);
	font-weight: 700;
	color: #fcb34d;
	margin-bottom: 0;
	line-height: 1;
	text-shadow: 2px 5px 7px #000;
}

.country-list h5 {
	font-weight: 700;
	color: #173d6e;
	margin-bottom: 0;
	line-height: 1;
}

.country-list p {
	font-size: 14px;
	font-weight: 600;
	margin-bottom: 5px;
	color: #173d6e;
}

/* Mobile Global START */
@media (max-width: 991px) {
    .global-footprint-desktop {
        display: none;
    }
    .global-footprint-mobile {
        display: block;
        overflow: hidden;
    }

    .global-footprint-mobile {
        background-color: #fab24c;
        position: relative;
        padding: 0;
    }
	.global-main-title {
		position: relative;
	}
	.global-main-title h2 {
		position: absolute;
		top: 20px;
		left: 10%;
		margin-bottom: 0;
	}
    .global-footprint-section-mobile .container .section-title-white {
        padding-left: 15px;
        padding-right: 15px;
    }
    .global-map-mobile {
        position: relative;
        min-height: auto;
        width: 100%;
        padding: 30px 0 0;
        overflow: hidden;
        --bs-gutter-x: 0;
        --bs-gutter-y: 0;
    }
    .global-map-mobile .global-map-img-mobile {
        width: 100%;
        height: auto;
        display: block;
        position: absolute;
        top: 0;
        left: 0;
        overflow: hidden;
    }

    .background-animation-mobile .bg1-mobile,
    .background-animation-mobile .bg2-mobile,
    .background-animation-mobile .bg3-mobile,
    .background-animation-mobile .bg4-mobile,
    .background-animation-mobile .bg5-mobile {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-size: 100%;
        background-repeat: no-repeat;
        background-position: center;
        opacity: 0;
        transform: translateX(-50px);
        transition: opacity 1s;
        z-index: 1;
    }
    .background-animation-mobile .bg1-mobile {
        background-image: url('../../assets/images/global/gf_mobile_01.webp');
    }
    .background-animation-mobile .bg2-mobile {
        background-image: url('../../assets/images/global/gf_mobile_02.webp');
    }
    .background-animation-mobile .bg3-mobile {
        background-image: url('../../assets/images/global/gf_mobile_03.webp');
    }
    .background-animation-mobile .bg4-mobile {
        background-image: url('../../assets/images/global/gf_mobile_04.webp');
    }
    .background-animation-mobile .bg5-mobile {
        background-image: url('../../assets/images/global/gf_mobile_05.webp');
    }

    .global-map-mobile ul {
        list-style: none;
        padding-left: 0;
        margin-bottom: 0;
    }
    .global-map-mobile .americas-list-mobile,
    .global-map-mobile .africa-list-mobile,
    .global-map-mobile .europe-list-mobile,
    .global-map-mobile .asia-list-mobile,
    .global-map-mobile .oceania-list-mobile {
        position: absolute;
        opacity: 0;
    }

	.global-map-mobile .americas-list-mobile ul li,
	.global-map-mobile .africa-list-mobile ul li,
	.global-map-mobile .europe-list-mobile ul li,
	.global-map-mobile .asia-list-mobile ul li,
	.global-map-mobile .oceania-list-mobile ul li {
		font-size: 11px;
        font-weight: 300;
		text-shadow: -1px -1px 2px rgba(0,0,0,1), 1px 1px 2px rgba(0,0,0,1), 0 3px 8px rgba(0,0,0,1);
	}

	.global-map-mobile .americas-list-mobile h5,
	.global-map-mobile .africa-list-mobile h5,
	.global-map-mobile .europe-list-mobile h5,
	.global-map-mobile .asia-list-mobile h5,
	.global-map-mobile .oceania-list-mobile h5 {
		font-size: clamp(12px, 1vw, 15px);
		line-height: 1.5;
		font-weight: 700;
		color: #fff;
		text-transform: uppercase;
		text-shadow: 2px 5px 7px #000;
		display: flex;
		align-items: center;
		margin-left: -20px;
		margin-bottom: 0 !important;
	}

	.global-map-mobile .americas-list-mobile h5 span,
	.global-map-mobile .africa-list-mobile h5 span,
	.global-map-mobile .europe-list-mobile h5 span,
	.global-map-mobile .asia-list-mobile h5 span,
	.global-map-mobile .oceania-list-mobile h5 span {
		font-family: "Doto", sans-serif;
		font-size: 15px;
		font-weight: 900;
		color: #fcb34d;
		text-transform: uppercase;
		text-shadow: 2px 5px 7px #000;
	}

    .global-map-mobile .americas-list-mobile {
        top: 37%;
    	left: 12%;
        z-index: 3;
    }

    .global-map-mobile .africa-list-mobile {
        top: 25%;
    	left: 48%;
        z-index: 3;
    }

    .global-map-mobile .europe-list-mobile {
        top: 36%;
    	left: 51%;
        z-index: 3;
    }

    .global-map-mobile .asia-list-mobile {
        top: 60%;
    	left: 40%;
        z-index: 3;
    }

    .global-map-mobile .oceania-list-mobile {
        top: 48%;
    	right: 9%;
        z-index: 3;
    }
    .global-map-mobile .asia-list-mobile .asia-list-country-mobile {
        display: flex;
    }
    .global-map-mobile .asia-list-mobile .asia-list-country-mobile ul {
        width: 50%;
    }
    .global-map-mobile .africa-list-mobile .africa-list-country-mobile {
        display: flex;
    }
	
    .global-map-mobile .africa-list-mobile .africa-list-country-mobile ul.country01-mobile {
        width: 58%;
    }
    .global-map-mobile .africa-list-mobile .africa-list-country-mobile ul.country02-mobile {
        width: 42%;
    }
    .global-list {
		position: relative;
		width: 100%;
		left: auto;
	}
	.global-item .global-box-subtitle {
		font-size: clamp(12px, 0.8vw, 13px);
	}
	.global-item p {
		font-size: clamp(12px, 0.8vw, 13px);
	}
	.global-country-first {
		display: none;
	}

	.global-list-box .list:nth-child(3)::after {
		content: "";
		position: absolute;
		height: 2px;
		width: 40%;
		background-color: #fff;
		top: 20%;
		right: 8px;
	}
	.global-item .global-content h3 {
		margin-left: 13%;
	}
	.country-list-mobile-first {
		margin: 20px auto 0;
	}

	.country-list-mobile-first h3 {
		font-family: "Doto", sans-serif;
		font-size: clamp(75px, 7vw, 104px);
		font-weight: 700;
		color: #fcb34d;
		margin-bottom: 0;
		line-height: 1;
		text-shadow: 2px 5px 7px #000;
	}

	.country-list-mobile-first h5 {
		font-weight: 700;
		color: #173d6e;
		margin-bottom: 0;
		line-height: 1;
	}

	.country-list-mobile-first p {
		font-size: 14px;
		font-weight: 600;
		margin-bottom: 5px;
		color: #173d6e;
	}

	.country-list-mobile-last h3 {
		font-family: "Doto", sans-serif;
		font-size: clamp(55px, 7vw, 104px);
		font-weight: 700;
		color: #fcb34d;
		margin-bottom: 0;
		line-height: 1;
		text-shadow: 2px 5px 7px #000;
	}

	.country-list-mobile-last h5 {
		font-weight: 700;
		color: #173d6e;
		margin-bottom: 0;
		line-height: 1;
	}

	.country-list-mobile-last p {
		font-size: 14px;
		font-weight: 600;
		margin-bottom: 5px;
		color: #173d6e;
	}
}
@media (max-width: 768px) {
	.global-map-mobile .africa-list-mobile {
		top: 26%;
		left: 48%;
		z-index: 3;
	}
	.global-map-mobile .asia-list-mobile {
		top: 63%;
    	left: 33%;
		z-index: 3;
	}
}
@media (max-width: 550px) {
	.global-map-mobile .americas-list-mobile {
		top: 35%;
		left: 13%;
		z-index: 3;
	}
	
	.global-map-mobile .africa-list-mobile {
		top: 21%;
		left: 49%;
		z-index: 3;
	}
	.global-map-mobile .europe-list-mobile {
		top: 36%;
		left: 55%;
		z-index: 3;
	}
	 .global-map-mobile .asia-list-mobile {
		top: 63%;
		left: 21%;
		z-index: 3;
	}

	.global-map-mobile .oceania-list-mobile {
		top: 45%;
		right: 3%;
		z-index: 3;
	}

	.country-list {
		display: block;
  		margin: 0 auto;
	}
	.country-list h3 {
		font-size: clamp(75px, 7vw, 104px);
	}
	.global-list {
		width: 80%;
		left: 0;
		right: 0;
		margin: 0 auto;
	}
	.global-list-box .list {
		float: none;
		display: flex;
		width: 100%;
		margin-bottom: 20px;
	}

	.global-list-box .svg-container {
		width: 40%;
	}

	.global-country-first {
		display: block;
	}

	.global-country-last {
		display: none !important;
	}

	.global-list-box .list:first-child::after {
		display: none !important;
	}

	.global-list-box .list:nth-child(2)::after {
		height: 35%;
		width: 2px;
		top: auto;
		right: auto;
		bottom: -17px;
		left: 15%;
	}

	.global-list-box .list:nth-child(3)::after {
		content: "";
  		position: absolute;
		height: 35%;
		width: 2px;
		top: auto;
		right: auto;
		bottom: -17px;
		left: 15%;
		background-color: #fff;
	}
}
@media (max-width: 480px) {
	.global-main-title h2 {
		position: absolute;
		top: 0px;
		left: -15%;
		margin-bottom: 0;
	}

	.global-map-mobile .africa-list-mobile {
		top: 20%;
		left: 48%;
		z-index: 3;
	}

	.global-map-mobile .europe-list-mobile {
		top: 39%;
		left: 55%;
		z-index: 3;
	}

	.global-map-mobile .asia-list-mobile {
		top: 64%;
		left: 11%;
		z-index: 3;
	}

	.global-map-mobile .oceania-list-mobile {
		top: 55%;
		right: 2%;
		z-index: 3;
	}
}
/* Mobile Global END */
/* Section Global END */
/* Section Sustainability START */
.sustainability-section .container {
	position: relative;
	/*background-image: url(../images/sustainability/img-sustainability.webp);
	background-repeat: no-repeat;
	background-position: center center;
	background-size: 100% auto;*/
	overflow: hidden;
	padding:
		clamp(40px, 6vh, 80px) clamp(25px, 3vw, 50px);
	background-color: #00376d;
	min-height: 100vh;
}

.bg-tree {
	filter: drop-shadow(0 0 10px rgba(249, 181, 76, 0.8));
    width: 100%;
    display: block;
    transform: scale(1.1);
    transform-origin: center center;
}
/* Matric Animation START */
.binary-bg {
    position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.binary-bg-mobile {
	display: none;
}
/* Matric Animation END */
.sustainability-item {
	display: flex;
	align-items: flex-start;
	margin-bottom: 30px;
	vertical-align: middle;
}

.sustainability-item img {
	flex-shrink: 0;
  width: clamp(50px, 6vw, 90px);
}

.sustainability-item .sustainability-content {
	position: relative;
	flex-grow: 1;
	vertical-align: middle;
}

.sustainability-item .sustainability-content .sustainability-line {
	position: absolute;
	background-color: #fcb34d;
	height: 2px;
	width: 0;
	transform-origin: left center;
	z-index: 1;
}

.sustainability-item .sustainability-content .sustainability-line {
	width: 0;
}

.sustainability-item .sustainability-box-title {
	font-size: clamp(16px, 1.3vw, 20px);
	font-weight: 700;
	color: #fcb34d;
	margin-left: 20px;
	margin-bottom: 10px;
}

.sustainability-item .sustainability-content.right-title .sustainability-box-title {
	margin-left: 0;
	margin-right: 20px;
}

.sustainability-item p {
	font-size: clamp(13px, 1vw, 15px);
	font-weight: 300;
	padding-top: 10px;
	margin-left: 20px;
}

.sustainability-item .sustainability-content.right-title p {
	margin-left: 0;
	margin-right: 20px;
}

/* Sustainability Tablet START */
@media (max-width: 1100px) {
	.sustainability-section .container {
		min-height: auto;
	}
}
/* Sustainability Tablet End */

/* Sustainability Mobile Start */
@media (max-width: 767.98px) {
	.sustainability-item .sustainability-content.right-title .sustainability-box-title {
		margin-left: 20px;
		margin-right: 0;
	}
	.sustainability-item.item-right img {
		order: -1;
	}
	.binary-bg {
		display: none;
	}
	.bg-tree-box {
		position: relative;
    }
	.bg-tree {
		width: 70%;
		margin: 0 auto;
	}
	.binary-bg-mobile {
		display: block;
		position: absolute;
		top: 0;
		bottom: 0;
		left: 0;
		right: 0;
		width: 100%;
		height: 100%;
		object-fit: contain;
	}
}
/* Sustainability Mobile End */
/* Section Sustainability END */
/* Section Download START */
.downloads-section .container {
	position: relative;
	padding: 80px 50px 0;
	background-color: #0d1117;
	background-image: url(../images/download/bg-download2.webp);
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	overflow: hidden;
}

.downloads-section .container:before {
	content: "";
	position: absolute;
	bottom: -10px;
	left: 0;
	width: 100%;
	height: 100%;
	background-image: url("../images/download/bg-download3.webp");
	background-size: 100% 100%;
	background-repeat: no-repeat;
	pointer-events: none;
}

.download-box {
	padding: 50px;
}

.download-box .download-content-box {
	align-items: center;
}

.download-img {
	margin-left: -20px;
}

.download-img img {
	width: 115%;
}

.download-list {
	list-style: none;
	padding-top: 50px;
	padding-right: 30px;
	padding-left: 30px;
	padding-bottom: 0;
	color: #173d6e;
}

.download-list li {
	margin-bottom: 15px;
}

.download-list a {
	display: flex;
	align-items: center;
	gap: 8px;
	color: #fff;
	font-weight: 400;
	text-decoration: none;
	font-size: clamp(11px, 1vw, 15px);
	line-height: 1.5;
	transition: color 0.3s ease;
}

.download-list i {
	flex-shrink: 0;
	width: 1.25rem;
	text-align: center;
}

.download-list a span {
	background-image: linear-gradient(currentColor, currentColor);
	background-size: 0% 1px;
	background-repeat: no-repeat;
	background-position: 0 100%;
	transition: background-size 0.3s ease;
	color: #173d6e;
	font-weight: 400;
}

.download-list a:hover span {
	background-size: 100% 1px;
}

/* Download Tablet Start */
@media (max-width: 991.98px) {

	.downloads-section .container {
		padding: 60px 30px;
	}

	.download-box {
		padding: 30px;
	}

	.download-content-box {
		align-items: center;
	}

	.title-download {
		text-align: center;
		margin-bottom: 30px;
	}

	.download-list {
		padding: 30px 0 0;
	}

	.download-list a {
		font-size: clamp(11px, 1vw, 15px);
		line-height: 1.5;
	}
}

/* Download Tablet End */
/* Download Mobile Start */
@media (max-width: 767.98px) {

	.downloads-section .container {
		padding: 40px 20px;
	}

	.downloads-section .container::before {
		display: none;
	}

	.download-box {
		padding: 0;
	}

	.title-download {
		text-align: center;
		margin-bottom: 25px;
	}

	.download-img {
		margin: 0 0 30px;
		text-align: center;
	}

	.download-img img {
		width: 100%;
		max-width: 320px;
	}

	.download-list {
		padding: 0;
	}

	.download-list li {
		margin-bottom: 18px;
	}

	.download-list a {
		font-size: 14px;
		line-height: 1.5;
		align-items: flex-start;
	}

	.download-list i {
		width: 20px;
		margin-top: 3px;
	}

	.download-list img {
		width: 14px;
	}
}

/* Download Mobile End */
/* Section Download END */
.footer .container {
	background-color: #5dcff4;
}

.footer .container p {
	color: #173d6e;
	font-size: 14px;
	font-weight: 400;
	padding: 10px 0;
	margin-bottom: 0;
	text-align: center;
}

/* Back to Top Button START */
.back-to-top {
	position: fixed;
	bottom: 20px;
	right: 20px;
	display: none;
	width: 40px;
	height: 40px;
	background-color: #f8b644;
	color: #fff;
	text-align: center;
	line-height: 40px;
	border-radius: 50%;
	box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
	font-size: 24px;
	text-decoration: none;
	z-index: 1000;
}

.back-to-top:hover {
	background-color: #e59b23;
}