body {
    font-family: 'Roboto', sans-serif;
    background-color: #fff;
    color: #ffffff;
    overflow-x: hidden;
    scroll-behavior: smooth;
}
.container {
    width: 100%;
    max-width: 100%;
}
 @media (max-width: 1440px) {
    .container {
        width: 100%;
    }
}
 @media (max-width: 1080px) {
    .container {
        width: 100%;
    }
}
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 1050;
    padding: 0;
}
.navbar .container {
    background-color: transparent;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    position: sticky;
    top: 0;
    z-index: 1020;
    transition: background-color 0.3s ease;
    padding-left: 50px;
    padding-right: 50px;
}
.navbar.navbar-scrolled .container {
    background-color: rgba(1, 58, 113, 0.9);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}
.navbar-brand img {
    height: 40px;
}
.navbar-brand.nav-desktop {
    margin-right: 30px;
}
.navbar-nav .nav-item {
    margin-right: 2rem;
}
.nav-link {
    font-size: 15px;
    color: #ffffff !important;
    font-weight: 400;
    padding: 0.5rem 0 !important;
    transition: color 0.3s ease, background-color 0.3s ease;
    height: 100%;
}
.nav-link:hover {
    border-bottom: 3px solid #fff;
}
.nav-link.active {
    border-bottom: 3px solid #fff;
}
.navbar-toggler {
    background-color: #fff;
}
.nav-mobile {
    display: none;
}
@media (max-width: 991px) {
    .nav-mobile {
        display: block;
        margin-left: auto;
    }
    .nav-desktop {
        display: none;
    }
}
@media (max-width: 768px) {
    .navbar .container {
        padding-left: 15px;
        padding-right: 15px;
    }
    .navbar-brand {
        margin-right: 0;
    }
    .navbar-collapse.show {
        background-color: rgba(255, 255, 255);
        padding-left: 15px;
        padding-right: 15px;
    }
    .nav-link {
        color: #013a71 !important;
    }
    .nav-link.active {
    border-bottom: 3px solid #013a71 !important;
    }
}
/* Section Hero START */
.hero-section .container {
    background: linear-gradient(to bottom, #0d1117, #1a2a3a);
    padding: 0;
    position: relative;
    overflow: hidden;
    height: 95vh;
}
.hero-section .container .hero-bg{
    background-image: url('../../assets/images/hero/cover_bg.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    width: 100%;
    height: 100%;
	z-index: 1;
    padding-left: 50px;
    padding-right: 50px;
}
.hero-box {
    height: 100%;
}
.annual-box {
    display: flex;
    align-items: center;
}
.annual-report-title {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1;
    text-align: left;
}
.annual-report-title .year {
	font-size: 6.5rem;
    font-weight: 700;
    line-height: 1;
    color: #fcb34d;
    display: inline-block;
    overflow: hidden;
    position: relative;
}

.annual-report-title .year:after {
    content: '';
    position: absolute;
    width: 100%;
    height: 2px;
    background: #fcb34d;
    left: 0;
    bottom: 0;
    transform: scaleX(0);
    transform-origin: left;
}
.hero-hexagon-box {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    justify-content: center;
    height: 100%;
}
.hero-hexagon-box .row {
    margin-bottom: 50px;
    width: 100%;
}
.hero-hexagon-box .row:nth-child(2) {
    margin-left: -100px;
}
.hero-hexagon-box .row:nth-child(3) {
    margin-left: -100px;
}
.hexagon-icon-box {
    position: relative;
    cursor: pointer;
    text-align: left;
}

.hexagon-icon-box p {
    opacity: 0;
    visibility: hidden;
    position: absolute;
    top: -20px;
    left: -150px;
    color: white;
    padding: 8px 12px;
    border-radius: 4px;
    white-space: nowrap;
    transition: all 0.3s ease;
    z-index: 2;
    overflow: visible;
    height: 88px;
    font-size: 15px;
}

.hexagon-icon-box p::after {
    content: '';
    position: absolute;
    left: 12px;
    bottom: 0px;
    width: 0;
    height: 1px;
    background: white;
    transform-origin: left center;
    transition: width 0.3s ease;
}

.hexagon-icon-box:hover p,
.hexagon-icon-box:active p,
.hexagon-icon-box:focus p {
    opacity: 1;
    visibility: visible;
}

.hexagon-icon-box:hover p::after,
.hexagon-icon-box:active p::after,
.hexagon-icon-box:focus p::after {
    width: 163px;
}
.hexagon-list {
    position: relative;
}
.hexagon-list img {
    position: relative;
    z-index: 2;
    transition: transform 0.3s ease;
    width: 130px;
}
.hexagon-list:after {
    content: "";
    position: absolute;
    top: 15px;
    left: 20px;
    height: 80px;
    aspect-ratio: cos(30deg);
    clip-path: polygon(-50% 50%,50% 100%,150% 50%,50% 0);
    background: #00aeef;
    opacity: 0.9;
    z-index: 1;
    filter: blur(2px);
    transform: scale(0.95) translateY(5px);
    transition: all 0.3s ease;
    animation: bounceAttention 2.5s infinite ease-in-out;
}

@keyframes bounceAttention {
  0%, 100% { transform: scale(0.95) translateY(5px); }
  50% { transform: scale(1.05) translateY(3px); }
}

.hexagon-icon-box:hover .hexagon-list:after {
    background: #0050bb;
    transform: scale(0.97) translateY(3px);
}
.hero-company-icon-box {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    justify-content: flex-end;
}

.hero-company-icon-box .row {
    margin-bottom: 50px;
    width: 100%;
}

.hero-company-icon-box .row .col-md-6:nth-child(2) {
    margin-top: -80px;
}

.hero-company-icon-box-list {
    position: relative;
    cursor: pointer;
    text-align: left;
}

.hero-company-icon-box-list p {
    opacity: 0;
    visibility: hidden;
    position: absolute;
    top: -20px;
    left: -150px;
    color: white;
    padding: 8px 12px;
    border-radius: 4px;
    white-space: nowrap;
    transition: all 0.3s ease;
    z-index: 2;
    overflow: visible;
    height: 88px;
    font-size: 15px;
}

.hero-company-icon-box-list p::after {
    content: '';
    position: absolute;
    left: 12px;
    bottom: 0px;
    width: 0;
    height: 1px;
    background: white;
    transform-origin: left center;
    transition: width 0.3s ease;
}

.hero-company-icon-box-list:hover p,
.hero-company-icon-box-list:active p,
.hero-company-icon-box-list:focus p {
    opacity: 1;
    visibility: visible;
}

.hero-company-icon-box-list:hover p::after,
.hero-company-icon-box-list:active p::after,
.hero-company-icon-box-list:focus p::after {
    width: 163px;
}
.hero-company-img {
    width: 100%;
    --color1: rgba(255, 255, 255, 0.2);
    --interval: 3s;
    animation: flicker steps(100) var(--interval) 1s infinite;
    filter: drop-shadow(0 0 5px var(--color1)) drop-shadow(0 0 10px var(--color1)) drop-shadow(0 0 20px var(--color1)) saturate(60%);
    transition: all 0.3s ease;
}
@keyframes flicker {
     50% {
        filter: drop-shadow(0 0 10px var(--color1)) drop-shadow(0 0 20px var(--color1)) drop-shadow(0 0 40px var(--color1)) saturate(200%) hue-rotate(20deg);
    }
}
.company-box {
    position: relative;
    height: 100%;
}
.company-registration-number {
    position: absolute;
    top: 0;
    right: 0;
    height: 10%;
    display: flex;
    align-items: self-start;
    justify-content: start;
    flex-direction: column;
    text-align: right;
    padding: 10px 20px;
    color: #fff;
    line-height: 1.2;
    font-size: 15px;
    font-weight: 400;
    margin-top: 54px;
}
.company-registration-number span {
    font-size: 13px;
    font-weight: 300;
}
.company-registration-mobile {
    display: none;
}
.hero-company-icon-box {
    position: absolute;
    bottom: 0;
    right: 0;
    height: 100%;
    flex-wrap: wrap;
    padding: 10px 20px;
}
.hero-company-icon-box img {
    width: 130px;
}
.section-title-white {
    font-size: 2.5rem;
    color: #fff;
    font-weight: 700;
    text-transform: uppercase;
    line-height: 1;
    margin-bottom: 40px;
	position: relative;
	z-index: 9;
}
.section-title-orange {
    color: #fcb34d;
    margin-left: 70px;
}

.hero-section-mobile {
    display: none;
}
@media (max-width: 768px) {
  .section-title-white {
    font-size: 1.3rem;
  }
}
@media (max-width: 991px) {
  .hero-section .container {
    height: auto;
    min-height: auto;
    padding-bottom: 0;
  }

  .hero-section .container .hero-bg {
    padding-left: 30px;
    padding-right: 30px;
  }

  .hexagon-icon-box p {
    left: -110px;
    font-size: 13px;
    height: auto;
    min-height: 70px;
    top: -15px;
    white-space: normal;
    padding: 6px 10px;
    border-radius: 6px;
  }

  .hexagon-icon-box p::after {
    left: 10px;
    bottom: -5px;
    height: 2px;
  }

  .hexagon-icon-box:hover p::after {
    width: 120px;
  }

  .hero-company-icon-box-list p {
    left: -110px;
    font-size: 13px;
    height: auto;
    min-height: 70px;
    top: -15px;
    white-space: normal;
    padding: 6px 10px;
    border-radius: 6px;
  }

  .hero-company-icon-box-list p::after {
    left: 10px;
    bottom: -5px;
    height: 2px;
  }

  .hero-company-icon-box-list:hover p::after {
    width: 120px;
  }

  .hexagon-list img,
  .hero-company-icon-box img {
    width: 90px;
  }

  .hexagon-list:after {
    height: 65px;
    top: 8px;
    left: 5px;
  }

  .company-box {
    width: 100%;
    height: auto;
    position: relative;
  }

  .company-registration-number {
    position: relative;
    text-align: center;
    margin-top: 30px;
    margin-bottom: 30px;
    right: auto;
    top: auto;
  }

  .hero-company-icon-box {
    position: relative;
    height: auto;
    right: auto;
    bottom: auto;
    margin-top: 20px;
  }

}
@media (max-width: 767px) {    
    .company-registration-number {
        font-size: 10px;
    }
    .company-registration-number span {
        font-size: 8px;
    }
    .company-registration-desktop {
        display: none;
    }
    .company-registration-mobile {
        display: block;
    }
    .company-registration-mobile {
    display: flex;
    justify-content: flex-end;
  }

  .company-registration-mobile .company-registration-number {
    text-align: left;
  }
  .hero-section .container .hero-bg {
    padding-left: 15px;
    padding-right: 15px;
  }

    .hero-hexagon-box .row:nth-child(2) {
        margin-left: 0;
    }
    .hero-hexagon-box .row:nth-child(3) {
        margin-left: 0;
    }
    .hexagon-icon-box {
        margin-left: 50px;
    }
  .hexagon-icon-box p {
    left: calc(-90px + 50px);
    font-size: 12px;
    min-height: 60px;
    top: -10px;
  }
  .hero-company-icon-box .row .col-md-6:nth-child(2) {
    margin-top: 0;
  }

  .hexagon-icon-box:hover p::after {
    width: 100px;
  }
  .hero-company-icon-box-list {
    margin-left: 50px;
  }
  .hero-company-icon-box-list p {
    left: calc(-90px + 50px);
    font-size: 12px;
    min-height: 60px;
    top: -10px;
  }

  .hero-company-icon-box-list:hover p::after {
    width: 100px;
  }

  .hexagon-list:after {
    display: none;
}

  .hexagon-list img,
  .hero-company-icon-box img {
    width: 80px;
  }

  .hexagon-list:after {
    height: 60px;
  }

  .annual-report-title {
    font-size: 2rem;
  }

  .annual-report-title .year {
    font-size: 3rem;
  }
}
@media (max-width: 480px) {
    .hero-section .container {
        height: auto;
        min-height: auto;
        padding-bottom: 0;
    }
    .hero-section .container .hero-bg {
        padding: 80px 15px 40px;
    }
    .annual-report-title {
        font-size: 1.5rem;
    }
    .annual-report-title .year {
        font-size: 2.5rem;
    }
    .section-title-white {
        font-size: 1.3rem;
    }
  .hexagon-icon-box p {
    left: -70px;
    font-size: 11px;
    min-height: 50px;
    top: -5px;
    padding: 4px 8px;
  }

  .hexagon-icon-box:hover p::after {
    width: 80px;
  }

  .hero-company-icon-box-list p {
    left: -70px;
    font-size: 11px;
    min-height: 50px;
    top: -5px;
    padding: 4px 8px;
  }

  .hero-company-icon-box-list:hover p::after {
    width: 80px;
  }

  .hexagon-list img,
  .hero-company-icon-box img {
    width: 70px;
  }

  .hexagon-list:after {
    height: 50px;
    top: 5px;
    left: 0;
  }
}
/* Hero Mobile */
@media (max-width: 767px) {
    .hero-section-mobile {
        display: block;
    }
    .hero-section {
        display: none;
    }
    .hero-section-mobile .container {
        background: linear-gradient(to bottom, #0d1117, #1a2a3a);
        padding: 0;
        position: relative;
        overflow: hidden;
        height: auto;
        width: 100%;
    }
    .hero-section-mobile .container .hero-bg {
        display: block;
        overflow: hidden;
        background-image: url(../../assets/images/hero/mobile-cover-bg.webp);
        background-size: cover;
        background-repeat: no-repeat;
        background-position: bottom right;
    }

    .hero-bg-mobile {
        display: block;
        clear: both;
        overflow: auto;
    }
    .company-registration-mobile .company-registration-number {
        margin-top: 45px;
    }
    .hero-section-mobile .container .annual-box {
        width: 100%;
        text-align: left;
        padding: 0 30px;
    }
    .hero-bg-mobile {
        background-image: url('../../assets/images/hero/mobile-icon-bg.webp');
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
        padding: 50px 15px 30px;
    }
    .hero-hexagon-box-mobile .grid-container {
        display: grid;
        justify-content: center;
        align-items: start;
        gap: 0px;
        grid-template-columns: repeat(5, 1fr);
    }
    .hexagon-icon-box-mobile p {
        font-size: 10px;
    }
}
/* Section Hero END */
/* Section Executive START */
.executive-section .container {
    padding: 80px 50px;
    background-color: #013a71;
}

.executive-card .executive-list {
    margin-bottom: 30px;
    position: relative;
}

.executive-content-wrapper {
    display: flex;
    flex-direction: column;
    position: relative;
}

.executive-card .executive-list p {
    width: 70%;
    line-height: 1.4;
    position: absolute;
    z-index: 2;
    top: -40px;
    left: 25%;
    margin-bottom: 0;
}

.executive-card .svg-container {
    width: 100%;
    margin-bottom: 0;
    order: 2;
}

.executive-card .svg-container img {
    width: 100%;
    height: auto;
    display: block;
}

.executive-card .list-unstyled .executive-list {
    padding-top: 30px;
}

.executive-card .list-unstyled .executive-list:nth-child(2) {
    padding-left: 30px;
}

.executive-card .list-unstyled .executive-list:nth-child(3) {
    padding-left: 60px;
}
.executive-card .list-unstyled .executive-list:nth-child(3) p {
    top: -70px;
}

.executive-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 30px;
}

.executive-item img {
    margin-right: 20px;
    flex-shrink: 0;
    width: 80px;
    height: 80px;
    object-fit: contain;
}

.executive-item .executive-content {
    position: relative;
    flex-grow: 1;
}

.executive-item .executive-content .executive-line {
    position: absolute;
    background-color: #fcb34d;
    height: 1px;
    width: 0;
    transform-origin: left center;
    z-index: 1;
}

.executive-item .executive-content .executive-line {
    width: 0;
}

.executive-item .executive-box-title {
    color: #fcb34d;
    margin-bottom: 0;
}

.executive-item .executive-box-subtitle {
    text-transform: uppercase;
    font-size: 14px;
    margin-bottom: 5px;
}

.executive-item .executive-content h3 {
    font-size: 28px;
    margin-bottom: 5px;
}

.executive-item .executive-content small {
    font-size: 13px;
    font-weight: 300;
}

.executive-item p {
    font-weight: 300;
    font-size: 14px;
    margin-bottom: 0;
}

.executive-img-infographic .executive-main-infographic {
    width: 100%;
    max-width: 100%;
    height: auto;
    margin-top: -50px;
}

@media (max-width: 991px) {
    .executive-img-infographic .executive-main-infographic {
        margin-top: 0;
        margin-bottom: 30px;
    }
}

@media (max-width: 768px) {
    .executive-section .container {
        padding: 30px 15px;
    }
    .executive-section .container h2 {
        padding-bottom: 70px;
        margin-bottom: 0;
    }
    .executive-card .list-unstyled .executive-list:nth-child(2),
    .executive-card .list-unstyled .executive-list:nth-child(3) {
        padding-left: 0;
    }
    
    .executive-card .executive-list p {
        font-size: 14px;
    }
}

@media (max-width: 576px) {    
    .executive-card .svg-container {
        margin-bottom: 15px;
    }
    
    .executive-card .list-unstyled .executive-list p {
        font-size: 14px;
    }
    
    .executive-item {
        margin-bottom: 25px;
    }
    
    .executive-item img {
        width: 50px;
        height: 50px;
        margin-right: 15px;
    }
    
    .executive-item .executive-content h3 {
        font-size: 20px;
    }
    
    .executive-item .executive-box-subtitle {
        font-size: 13px;
    }
    
    .executive-item p {
        font-size: 13px;
    }
}
/* Section Executive END */
/* Section Global START */
.global-footprint-section .container {
    padding: 0;
    background-color: #062141;
    position: relative;
}
.global-map {
    position: relative;
    width: 100%;
    padding: 80px 50px 0;
}
.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('../../assets/images/global/map_01.webp');
}
.background-animation .bg2 {
    background-image: url('../../assets/images/global/map_02.webp');
}
.background-animation .bg3 {
    background-image: url('../../assets/images/global/map_03.webp');
}
.background-animation .bg4 {
    background-image: url('../../assets/images/global/map_04.webp');
}
.background-animation .bg5 {
    background-image: url('../../assets/images/global/map_05.webp');
}
.global-list {
    position: absolute;
    bottom: 20px;
    left: 20px;
    width: 40%;
    z-index: 2;
}

.global-list .listimg01 {
    display: block;
    width: 80%;
    max-width: 100%;
    margin-bottom: 10px;
}
.global-list .listimg02 {
    display: block;
    width: 100%;
    max-width: 100%;
}

.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: 12px;
	font-weight: 300;
}

.global-map .americas-list {
    top: 88%;
    left: 19%;
    z-index: 3;
}

.global-map .africa-list {
    top: 88%;
    left: 3%;
    z-index: 3;
    width: 15%;
}

.global-map .europe-list {
    top: 88%;
    left: 31%;
    z-index: 3;
}

.global-map .asia-list {
    top: 52%;
    left: 3%;
    z-index: 3;
    width: 20%;
}

.global-map .oceania-list {
    top: 52%;
    left: 23%;
    z-index: 3;
}
.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 {
    position: absolute;
    top: 45%;
    right: 10%;
    z-index: 2;
}
.country-list h3 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #fcb34d;
    margin-bottom: 0;
    line-height: 1;
}
.country-list h5 {
    font-weight: 700;
    color: #fcb34d;
    margin-bottom: 0;
    line-height: 1;
}
.country-list p {
    font-size: 0.9rem;
    margin-bottom: 5px;
    color: #fff;
}
.data-point {
    position: absolute;
    top: 65%;
    right: 30%;
    z-index: 2;
}
.data-point h5 {
    font-weight: 700;
    color: #fcb34d;
    margin-bottom: 0;
    line-height: 1;
}
.data-point p {
    font-size: 0.9rem;
    color: #fff;
    margin-bottom: 0;
}
.world-map {
    position: absolute;
    bottom: 20px;
    right: 10%;
    z-index: 1;
    width: 450px;
    height: auto;
}
.world-map img {
    width: 100%;
    height: auto;
    display: block;
}
.global-footprint-section-mobile {
    display: none;
}
@media (max-width: 768px) {
    .global-map {
        padding: 30px 15px 10px;
    }
}
/* Mobile */
@media (max-width: 768px) {
    .global-footprint-section {
        display: none;
    }
    .global-footprint-section-mobile {
        display: block;
        overflow: hidden;
    }

    .global-footprint-section-mobile .container {
        background-color: #062141;
        position: relative;
        padding: 40px 0 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: hiddenf;
        --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/mobile_map_01.webp');
    }
    .background-animation-mobile .bg2-mobile {
        background-image: url('../../assets/images/global/mobile_map_02.webp');
    }
    .background-animation-mobile .bg3-mobile {
        background-image: url('../../assets/images/global/mobile_map_03.webp');
    }
    .background-animation-mobile .bg4-mobile {
        background-image: url('../../assets/images/global/mobile_map_04.webp');
    }
    .background-animation-mobile .bg5-mobile {
        background-image: url('../../assets/images/global/mobile_map_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;
        font-size: 9px;
        font-weight: 300;
    }
    .global-map-mobile h5 {
        font-size: 11px;
        color: #fdb24c;
    }

    .global-map-mobile .americas-list-mobile {
        top: 4%;
        left: 7%;
        z-index: 3;
    }

    .global-map-mobile .africa-list-mobile {
        top: 4%;
        left: 41%;
        z-index: 3;
    }

    .global-map-mobile .europe-list-mobile {
        top: 4%;
        left: 68%;
        z-index: 3;
    }

    .global-map-mobile .asia-list-mobile {
        top: 66%;
        left: 8%;
        z-index: 3;
    }

    .global-map-mobile .oceania-list-mobile {
        top: 83%;
        right: 7%;
        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 {
        width: 58%;
    }
    .global-map-mobile .africa-list-mobile .africa-list-country-mobile ul.country02 {
        width: 42%;
    }
    .sec3-count-country {
        padding: 30px 15px 0;
    }
    .animate-decimal {
        position: relative;
        color: #fdb24c;
    }
    .animate-decimal .text-decimal {
        font-size: 20px;
        font-weight: 300;
    }
    .animate-decimal .sec3-count-countries {
        color: #fdb24c;
        font-weight: 700;
        font-size: 3.5rem;
        margin-right: 10px;
    }
    .animate-decimal .text-country {
        font-weight: 500;
        font-size: 18px;
        text-transform: uppercase;
        color: #fdb24c;
    }
    .animate-decimal .text-country-month {
        font-weight: 500;
        font-size: 18px;
        color: #fdb24c;
    }
    .animate-decimal p {
        font-size: 13px;
        color: #fff;
    }
    .sec3-count {
        padding: 0 15px 30px;
    }
    .sec-border {
        padding: 20px 40px;
        border: 2px dotted #fdb24c;
        border-radius: 20px;
    }
    .animate-decimal .sec3-count-decimal {
        font-size: 30px;
        font-weight: 400;
    }
    .straight-line {
        display: flex;
        justify-content: center;
        align-items: center;
        width: 100%;
        height: 1px;
        background-color: #fdb24c;
        position: relative;
        margin: 10px 0 20px;
    }
    .straight-line:after {
        content: "";
        display: block;
        width: 5px;
        height: 5px;
        position: absolute;
        top: 0;
        right: 0;
        transform: translateY(-50%);
        border-radius: 100%;
        background-color: #fdb24c;
    }
    .animate-decimal .animate-percentage {
        position: absolute;
        top: 0;
        right: 0;
    }
    .animate-decimal .animate-percentage img {
        width: 60px;
    }
}
/* Section Global END */
/* Section Sustainability START */
.sustainability-section .container {
    padding: 80px 50px;
    background-color: #00376d;
}
.sustainability-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 30px;
}
.sustainability-item img {
    flex-shrink: 0;
    width: 125px;
}
.sustainability-item .sustainability-content {
    position: relative;
    flex-grow: 1;
}
.sustainability-item .sustainability-content .sustainability-line {
    position: absolute;
    background-color: #fcb34d;
    height: 1px;
    width: 0;
    transform-origin: left center;
    z-index: 1;
}
.sustainability-item .sustainability-content .sustainability-line {
    width: 0;
}
.sustainability-item .sustainability-box-title {
    color: #fcb34d;
    margin-bottom: 0;
}
.sustainability-item .sustainability-box-subtitle {

}
.sustainability-item p {
    font-weight: 300;
    font-size: 15px;
}
.sustainability-img-infographic {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}
.sustainability-img-infographic .main-infographic,
.sustainability-img-infographic .infographic-piece {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.sustainability-img-infographic .main-infographic {
    z-index: 1;
}

.sustainability-img-infographic .infographic-piece {
    z-index: 2;
    opacity: 0;
}

.infographic-piece.piece-sustainability02,
.infographic-piece.piece-sustainability03,
.infographic-piece.piece-sustainability04 {
    transform: translateX(-100%);
}

.infographic-piece.piece-sustainability05,
.infographic-piece.piece-sustainability06,
.infographic-piece.piece-sustainability07 {
    transform: translateX(100%);
}
@media (max-width: 768px) {
    .sustainability-section .container {
        padding: 30px 15px;
    }
}    
@media (max-width: 480px) {
    .sustainability-item .sustainability-box-title {
        font-size: 20px;
    }
    .sustainability-item .sustainability-box-subtitle {
        font-size: 15px;
    }
    .sustainability-item p {
        font-size: 14px;
    }
}
/* Section Sustainability END */
/* Section Download START */
.downloads-section .container {
    padding: 80px 50px;
    background-color: #0d1117;
    background-image: url('../../assets/images/download/bg_download.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}
.download-list {
    list-style: none;
    padding: 0;
}
.download-list li {
    margin-bottom: 15px;
}
.download-list a {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #fff;
  font-weight: 300;
  text-decoration: none;
  font-size: 1rem;
  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;
}

.download-list a:hover span {
  background-size: 100% 1px;
}

.download-book-wrapper {
    padding: 10px;
}
.download-book {
    width: 100%;
    --color1: rgba(255, 255, 255, 0.2);
    --interval: 3s;
    animation: flicker steps(100) var(--interval) 1s infinite;
    filter: drop-shadow(0 0 5px var(--color1)) drop-shadow(0 0 10px var(--color1)) drop-shadow(0 0 20px var(--color1)) saturate(60%);
    transition: all 0.3s ease;
}
@keyframes flicker {
     50% {
        filter: drop-shadow(0 0 10px var(--color1)) drop-shadow(0 0 20px var(--color1)) drop-shadow(0 0 40px var(--color1)) saturate(200%) hue-rotate(20deg);
    }
}
.download-blink-container {
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
}

.download-star-list {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	overflow: hidden;
	z-index: 1;
}

.download-star {
	position: absolute;
	background-color: #fff;
	border-radius: 50%;
	opacity: 0;
	animation: blink 2s infinite alternate;
	box-shadow: 0 0 10px 5px #0050bb;
}

@keyframes blink {
	0% { opacity: 0; }
	50% { opacity: 1; }
	100% { opacity: 0; }
}
@media (max-width: 768px) {
    .downloads-section .container {
        padding: 30px 15px;
    }
}    
@media (max-width: 480px) {
    .download-list a {
        font-size: 14px;
    }
}
/* Section Download END */
.footer .container {
    background-color: #0f2e5c;
}
.footer .container p {
    color: #fff;
    font-size: 14px;
    font-weight: 300;
    padding: 20px 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;
}