﻿:root {
  --keppel-red: #c8102e;
  --keppel-blue: #007c93;
  --keppel-grey: #7f7f7f;
}

html {
  overflow-x: hidden;
}

p {
  margin-top: 0;
  margin-bottom: 1rem;
  font-size: 20px;
}

.keppel-red-color {
  color: var(--keppel-red);
}

.keppel-blue-color {
  color: var(--keppel-blue);
}

.mw-550 {
  max-width: 550px;
}

.mw-700 {
  max-width: 700px;
}

.progress {
  height: 3px !important;
  background-color: #e9ecef !important;
}

.progress-bar {
  width: 25%;
}

.tdelay-500 {
  transition-delay: 0.5s;
}

.tdelay-1000 {
  transition-delay: 1s;
}

.chairman-section {
  background-color: #000000;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  display: flex;
  align-items: center;
}

.quoted-text {
  position: relative;
}

.quoted-text::before {
  content: "";
  background-image: url("../image/quote-end-light.svg");
  background-repeat: no-repeat;
  background-size: contain;
  display: block;
  position: absolute;
  width: clamp(69px, 5.6vw, 75px);
  height: clamp(53px, 4.64vw, 59px);
  top: -31px;
  left: -24px;
}

.full-quote-inner .quoted-text::before {
  content: "";
  background-image: url("../image/quote-end-light.svg");
  transform: rotate(180deg);
  background-repeat: no-repeat;
  background-size: contain;
  display: block;
  position: absolute;
  width: clamp(69px, 5.6vw, 75px);
  height: clamp(53px, 4.64vw, 59px);
  top: -31px;
  left: -24px;
}

.quoted-text::after {
  content: "";
  background-image: url("../image/quote-end-light.svg");
  background-repeat: no-repeat;
  background-size: contain;
  display: inline-block;
  position: absolute;
  width: clamp(69px, 5.6vw, 75px);
  height: clamp(53px, 4.64vw, 59px);
  margin-left: -65px;
  vertical-align: text-top;
}

.quoted-text.small {
  padding: 0.5em 1em 1em 1em;
  margin: 0 -1em 0 -1em;
  font-size: clamp(20px, 2.4vw, 22px);
  line-height: 130%;
}

.quoted-text.small::before {
  top: 0px;
  left: 0px;
}

.quoted-text.small::after {
  margin-left: -25px;
  bottom: 0;
}

.quoted-text.small::before,
.quoted-text.small::after {
  width: clamp(42px, 3.8vw, 57px);
  height: clamp(31px, 3vw, 36px);
}

.quoted-text.dark::before {
  background-image: url("../image/quote-start-dark-inner.svg");
}

.quoted-text.dark::after {
  background-image: url("../image/quote-end-dark.svg");
}

.quoted-text.blue {
  padding: 35px 0;
}

.quoted-text.blue::before {
  background-image: url("../image/quote-start-blue.svg");
  top: 0;
  left: 0;
  width: 35px;
  height: 41px;
}

.quoted-text.blue::after {
  background-image: url("../image/quote-end-blue.svg");
  right: 0;
  bottom: 0;
  width: 35px;
  height: 41px;
}

@media screen and (max-width: 768px) {
  .quoted-text::before {
    width: clamp(55.04px, 4.48vw, 60.16px);
    height: clamp(42.24px, 3.71vw, 47.36px);
    top: -19.84px;
    left: -15.36px;
  }

  .quoted-text::after {
    width: clamp(55.04px, 4.48vw, 60.16px);
    height: clamp(42.24px, 3.71vw, 47.36px);
    margin-left: -41.6px;
  }
}

/* Inner Pages Quote*/
.ease-wrapper.quote-block-section {
  overflow: visible;
}

.full-quote-block {
  background-color: #f8f6f6;
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  padding: 60px 24px;
  text-align: center;
}

.full-quote-inner {
  max-width: 950px;
  margin: 0 auto;
}

.full-quote-inner .quoted-text {
  font-size: 20px;
  line-height: 120%;
  color: #1a1a2e;
  padding-left: 48px;
  padding-right: 48px;
  font-weight: 400;
}


/* Override quote mark opacity + color */
.full-quote-inner .quoted-text::before,
.full-quote-inner .quoted-text::after {
  opacity: 0.3 !important;
  filter: brightness(0) saturate(100%) invert(30%) sepia(90%) saturate(800%)
    hue-rotate(155deg);
}

.full-quote-inner .quoted-text::before {
  left: 10px;
  top: -28px;
}

.full-quote-inner .quoted-text::after {
  margin-left: -30px;
  margin-bottom: -10px;
}

.full-quote-inner p.quoted-text {
  margin-bottom: 0 !important;
}

@media screen and (min-width: 1025px) and (max-width: 1440px) {
  .full-quote-inner .quoted-text::before {
    left: 16px;
  }
}

/* Laptop and above (30px) */
@media screen and (min-width: 1025px) {
  .full-quote-inner .quoted-text {
    font-size: 30px;
  }
}

@media screen and (max-width: 1024px) {
  .full-quote-block {
    padding: 60px 24px;
  }

  .full-quote-inner {
    max-width: 680px;
    margin: 0 auto;
  }
}

/* Tablet (28px) */
@media screen and (min-width: 768px) {
  .full-quote-inner .quoted-text {
    font-size: 28px;
  }
}

@media screen and (max-width: 767px) {
  .full-quote-block {
    padding: 50px 24px;
  }
  .full-quote-inner .quoted-text {
    font-size: 20px;
    padding-left: 20px;
    padding-right: 20px;
  }

  .full-quote-inner .quoted-text::before {
    left: 24px;
    top: -20px;
  }
}

/**/
.header-wrapper {
  padding: 40px 0;
  overflow: visible;
}

.header-wrapper .page-title {
  font-size: clamp(62px, 5vw, 72px);
}

.banner-quote p {
  font-size: 17px;
}

.banner-quote .quoted-text {
  font-size: 20px;
  line-height: 120%;
  padding-bottom: 24px;
}

/* Tablet (22px) */
@media screen and (min-width: 768px) {
  .banner-quote .quoted-text {
    font-size: 22px;
  }
}

/* Laptop and above only (1025) */
@media screen and (min-width: 1025px) {
  .banner-quote .quoted-text {
    font-size: 26px;
    padding-bottom: 24px;
    padding-left: clamp(40px, 3.5vw, 48px);
    padding-right: clamp(28px, 3vw, 34px);
  }

  .banner-quote > div > p:last-child {
    padding-left: clamp(40px, 3.5vw, 48px);
    font-size: 17px;
  }

  .banner-quote .quoted-text::before {
    left: 0px;
    top: -28px;
  }

  .banner-quote .quoted-text::after {
    margin-left: -30px;
    margin-bottom: -10px;
  }
}

/* Desktop (1440px+) */
@media screen and (min-width: 1440px) {
  .banner-quote .quoted-text {
    font-size: 32px;
  }

  .banner-quote > div > p:last-child {
    font-size: 22px;
  }
}

.end-container {
  background: #f5f5f5;
  padding-right: 0;
}

.end-container .mast-wrapper .text-wrapper {
  padding-left: clamp(80px, 7.5vw, 150px);
}

.end-wrapper {
  font-size: 17px;
}

.end-wrapper .page-title {
  font-size: 54px;
  margin-bottom: 26px;
}

/* Inner Page's hero section heading */
.gm-row {
  display: flex;
  align-items: center;
  position: relative;
}

.gm-row-1 {
  padding-left: clamp(110px, 8vw, 170px);
}

.gm-row-2 {
  padding-left: clamp(50px, 6vw, 100px);
}

.gm-row .page-title {
  margin: 0;
  line-height: 1.05;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.gm-lines-left,
.gm-lines-right {
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -webkit-transform: translateZ(0);
  will-change: transform, opacity;
}

/* ── Lines containers ── */
.gm-lines-left {
  position: absolute;
  top: 40%;
  width: 100vw;
  display: flex;
  flex-direction: column;
  gap: 5px;
  pointer-events: none;
  z-index: 0;
}

.gm-lines-right {
  position: absolute;
  top: 50%;
  width: 100vw;
  display: flex;
  flex-direction: column;
  gap: 5px;
  pointer-events: none;
  z-index: 0;
}

.gm-lines-left {
  right: calc(100% + 24px);
  opacity: 0;
  transform: translateY(-50%) translateX(-80px);
  transition:
    opacity 0.8s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

.gm-lines-right {
  left: calc(100% + 24px);
  opacity: 0;
  transform: translateY(-50%) translateX(80px);
  transition:
    opacity 0.8s cubic-bezier(0.22, 1, 0.36, 1) 0.1s,
    transform 0.8s cubic-bezier(0.22, 1, 0.36, 1) 0.1s;
}

#gmHeaderWrapper.gm-animated .gm-lines-left {
  opacity: 1;
  transform: translateY(-50%) translateX(0);
}

#gmHeaderWrapper.gm-animated .gm-lines-right {
  opacity: 1;
  transform: translateY(-50%) translateX(0);
}

/* ── Individual lines ── */

.gm-line {
  background-color: #da2128;
  width: 100%;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.gm-lines-left .gm-line-1 {
  height: 1px;
  clip-path: polygon(0 0, 100% 0, calc(100% - 1px) 100%, 0 100%);
  margin-left: 0;
  width: 100%;
  margin-right: 0;
}

.gm-lines-left .gm-line-2 {
  height: 2px;
  clip-path: polygon(0 0, 100% 0, calc(100% - 2px) 100%, 0 100%);
  margin-left: 20px;
  width: calc(100% - 20px - 4px);
  margin-right: 4px;
}

.gm-lines-left .gm-line-3 {
  height: 3px;
  clip-path: polygon(0 0, 100% 0, calc(100% - 3px) 100%, 0 100%);
  margin-left: 43px;
  width: calc(100% - 43px - 8px);
  margin-right: 8px;
}

/* RIGHT lines — taper on LEFT end (near "Momentum")
		   Line 1 furthest from text, line 3 closest. */

.gm-lines-right .gm-line-1 {
  height: 1px;
  clip-path: polygon(0.5px 0, 0 100%, 100% 100%, 100% 0);
  margin-left: 8px;
  width: calc(100% - 8px);
  margin-right: 0;
}

.gm-lines-right .gm-line-2 {
  height: 2px;
  clip-path: polygon(1.5px 0, 0 100%, 100% 100%, 100% 0);
  margin-left: 4px;
  width: calc(100% - 18px - 4px);
  margin-right: 18px;
}

.gm-lines-right .gm-line-3 {
  height: 3px;
  clip-path: polygon(2px 0, 0 100%, 100% 100%, 100% 0);
  margin-left: 0;
  width: calc(100% - 36px);
  margin-right: 36px;
}

/* Mobile: no side padding (full width) */
.hero-quote-row {
  padding: 0;
}

.hero-quote-row .text-wrapper {
  padding-left: 0 !important;
}

.hero-quote-row .banner-quote p {
  line-height: 120%;
}

/* ── Mobile ── */

/* Desktop and above (768px+) */
@media screen and (min-width: 768px) {
  .hero-quote-row {
    padding: 0 clamp(80px, 7.5vw, 150px);
    gap: clamp(20px, 3vw, 48px);
  }

  .hero-quote-row .text-wrapper {
    order: 1 !important;
  }
  .hero-quote-row .img-wrapper {
    order: 2 !important;
  }
}

/* Tablet only — override just the text, not the image */
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .hero-quote-row {
    padding: 0 clamp(40px, 5vw, 80px);
    gap: 16px;
  }

  .hero-quote-row .text-wrapper {
    padding: 16px !important;
  }

  .hero-quote-row .banner-quote .quoted-text,
  .hero-quote-row .banner-quote p {
    padding-bottom: 16px;
    padding-left: 32px;
    padding-right: 16px;
  }
}

/* Desktop (1200px+): match the rest of the page */
@media screen and (min-width: 1200px) {
  .hero-quote-row {
    padding: 0 clamp(80px, 7.5vw, 150px);
  }
}

@media screen and (max-width: 1024px) {
  .gm-row-1 {
    padding-left: 24px;
  }
  .gm-row-2 {
    padding-left: 0px;
  }
  .gm-lines-left {
    right: calc(100% + 8px);
  }
  .gm-lines-right {
    left: calc(100% + 8px);
  }

  .hero-quote-row .text-wrapper {
    padding: 24px !important;
  }

  /* Content takes full width on tablet */
  .mid .col-md-7,
  .mid .col-lg-8 {
    flex: 0 0 100%;
    max-width: 100%;
    padding-right: 0 !important;
  }
}

@media screen and (min-width: 769px) and (max-width: 1024px) {
  .end-container .page-title {
    font-size: clamp(28px, 3.5vw, 38px);
  }

  .end-container .end-wrapper {
    padding: 24px 0;
  }

  .end-container .cta-red-border {
    font-size: 14px;
    padding: 8px 16px;
  }

  .end-container .img-wrapper {
    align-self: stretch;
  }

  .end-container .img-wrapper img {
    max-height: 400px;
    height: auto;
    object-fit: cover;
    object-position: top center;
  }
}

@media screen and (max-width: 768px) {
  .header-wrapper {
    padding: 35px 16px 22px 16px;
  }

  .header-wrapper .page-title,
  .end-wrapper .page-title {
    font-size: 36px;
  }

  .banner-quote {
    font-size: 20px;
    margin-top: 18px;
  }

  .end-container {
    padding: 0;
  }

  .end-container .end-wrapper {
    padding: 24px 24px 24px 0;
  }

  .end-container .mast-wrapper .text-wrapper {
    padding: 24px;
  }
}

.img-wrapper img {
  width: 100%;
  height: auto;
  display: block;
}

.hero-quote-row .img-wrapper img {
  width: 100%;
  height: auto;
  object-fit: cover;
  object-position: top center;
}

.end-container .img-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
}

.end-container .img-wrapper img {
  width: auto;
  max-width: 100%;
  height: auto;
  max-height: 420px;
  object-fit: contain;
}

@media screen and (min-width: 1025px) and (max-width: 1440px) {
  .end-container .img-wrapper img {
    width: auto;
    max-width: 100%;
    height: auto;
    max-height: 350px;
    object-fit: cover;
  }
}

@media screen and (min-width: 1441px) {
}

.dm-serif {
  font-family: "DM Serif Display";
}

.fira-font {
  font-family: "Fira Sans";
  font-weight: 600;
}

.side-figure sup {
  /* This targets the 'th' */
  font-size: 0.55em; /* Makes it about half the size of the 4 */
  top: -0.8em; /* Moves it up */
  margin-left: 2px; /* IMPORTANT: This prevents the overlapping issue */
}

.row.no-gutters {
  --bs-gutter-x: 0;
}

.pr-0 {
  padding-right: 0 !important;
}

.banner-quote .caption {
  text-transform: uppercase;
  font-size: 20px;
}

.image-caption {
  color: var(--keppel-grey);
  font-size: 16px;
  line-height: 130%;
  margin-top: 12px;
}

.ipe-assets-figures .pt-0 {
  padding-top: 0 !important;
}

.ipe-assets-figures .mt-0 {
  margin-top: 0 !important;
}

.ipe-assets-figures {
  border-top: 2px solid var(--keppel-blue);
  padding-top: 8px;
  margin-top: 26px;
}

.ipe-assets-figures figure {
  font-size: clamp(48px, 2vw, 72px);
  line-height: 110%;
}

.ipe-assets-figures p {
  margin-top: 8px;
  font-size: clamp(24px, 2.2vw, 20px);
  line-height: 120%;
}

.side-wrapper-figures {
  max-width: 100%;
}

.side-wrapper-figures p,
.side-wrapper-figures figure {
  margin-bottom: 4px;
}

.side-wrapper-figures .side-figure {
  border-top: 1px solid var(--keppel-red);
  font-size: clamp(48px, 4vw, 64px);
  line-height: 110%;
  padding: 5px 0;
}

@media screen and (min-width: 768px) and (max-width: 1024px) {
  .side-wrapper-figures .side-figure {
    font-size: clamp(42px, 3.5vw, 56px);
  }

   .sidebar-stick .ease-wrapper,
  .sidebar-no-stick .ease-wrapper {
    max-width: 235px;
    margin-left: auto; 
  }
}

@media screen and (max-width: 900px) {
  .sidebar-stick,
  .sidebar-no-stick {
    margin-left: 20px;
  }

   .sidebar-stick .ease-wrapper,
  .sidebar-no-stick .ease-wrapper {
    max-width: 210px;
    margin-left: auto; 
  }
}


@media screen and (min-width: 1025px) {
  .sidebar-stick,
  .sidebar-no-stick {
    margin-left: 60px;
  }

  .sidebar-stick .ease-wrapper,
  .sidebar-no-stick .ease-wrapper {
    max-width: 245px;
    margin-left: auto;
  }
}

@media screen and (min-width: 1400px) {
  .sidebar-stick .ease-wrapper,
  .sidebar-no-stick .ease-wrapper {
    max-width: 270px;
  }
}

@media screen and (min-width: 1600px) {
  .sidebar-stick .ease-wrapper,
  .sidebar-no-stick .ease-wrapper {
    max-width: 300px;
  }
}


.mobile-text-spur .ease-wrapper {
  padding-top: 2.5em;
  padding-bottom: 3em;
}

.mobile-text-spur .ease-wrapper,
.sidebar-stick .ease-wrapper {
  overflow: visible;
}

@media screen and (max-width: 768px) {
  .side-wrapper-figures {
    max-width: 100%;
  }
}

.cio-swiper {
  background: #f5f5f5;
  padding: 48px 0 48px calc(clamp(80px, 7.5vw, 150px) / 2);
}

.cio-swiper .inner-cio-swiper {
  padding: 48px clamp(80px, 7.5vw, 150px) 48px
    calc(clamp(80px, 7.5vw, 150px) / 2);
  border: 4px solid #00a8bf;
  border-right: 0;
  max-height: 670px;
  max-width: 1920px;
  margin: 0 auto;
  gap: 48px;
}

.cio-right-border {
  border-right: 2px solid #00a8bf;
}

@media screen and (max-width: 768px) {
  .cio-right-border {
    border-right: none;
  }
}

.cio-swiper .swiper-item {
  height: 100%;
  width: 90%;
  padding-top: 24px;
}

.cio-swiper .img-wrapper {
  padding-right: 50px;
  padding-left: 50px;
}

.cio-swiper .img-wrapper img {
  max-height: 100%;
  width: 100%;
}

@media screen and (max-width: 768px) {
  .cio-swiper {
    background: #f5f5f5;
    padding: 14px 0 14px 16px;
  }

  .cio-swiper .inner-cio-swiper {
    padding: 14px 32px 14px 16px;
    max-height: unset;
    gap: 12px;
  }

  .cio-swiper .img-wrapper {
    padding-right: 0;
    padding-left: 0;
    height: 230px;
  }

  .cio-swiper .img-wrapper img {
    height: 100%;
    width: 100%;
    object-fit: cover;
  }

  .cio-swiper .swiper-item {
    width: 100%;
  }
}

.cio-swiper .page-title {
  font-size: clamp(32px, 2.8vw, 52px);
}

.cio-swiper .quoted-text {
  font-size: 17px;
}

.cio-swiper .carousel-item {
  background: #f5f5f5;
}

.cio-swiper .bg-primary {
  background-color: #00a8bf !important;
}

.cio-swiper .control-prev,
.cio-swiper .control-next {
  height: 100%;
}

.cio-swiper .control-prev-icon {
  content: "";
  width: 32px;
  height: 18px;
  display: inline-block;
  background: url("../image/blue-arr-left.svg");
}

.cio-swiper .control-next-icon {
  content: "";
  width: 32px;
  height: 18px;
  display: inline-block;
  background: url("../image/blue-arr-right.svg");
}

.footnote-wrapper {
  border-top: 1px solid #d9d5d5;
  padding-top: 25px;
  margin-top: 80px;
}

.footnote-wrapper p {
  font-style: italic;
  color: #767575;
  margin-bottom: 0.5em;
  text-indent: -9px;
}

@media screen and (max-width: 768px) {
  .footnote-wrapper {
    text-indent: -15px;
  }
}

/* Banner */
.banner {
  position: relative;
  width: 100%;
  margin: auto;
  max-width: 1920px;
}

.banner .wrapper {
  position: relative;
  height: 530px;
  z-index: 2;
}

.banner .wrapper .content-masthead {
  width: 100%;
  max-width: 90vw;
  margin: 72px auto 50px auto;
  position: relative;
  display: block;
}

.banner .overlay-text {
  width: 45vw;
  overflow: hidden;
  display: flex;
  align-items: center;
  position: absolute;
  top: 0;
  left: 0;
  margin: auto;
  z-index: 3;
}

.banner .overlay-text h1 {
  font-size: 50px !important;
}

.banner .overlay-img {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  width: 55vw;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: right;
}

.sub-pages-spur-container {
  position: relative;
}

.sub-pages-spur {
  width: 100%;
  max-width: 50%;
  height: 100%;
  top: 0;
  position: absolute;
  left: 49%;
  transform: translateX(-50%);
  background-image: url(../image/slanted-vector.png);
  background-repeat: no-repeat;
  background-size: cover;
  z-index: 1 !important;
}

.sub-pages-spur-smaller {
  width: 100%;
  height: 960px;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0px;
  background-image: url(../image/slanted-vector.png);
  background-repeat: no-repeat;
  background-size: cover;
  z-index: 1 !important;
}

.sub-title-text {
  font-weight: 600;
  font-size: 20px !important;
}

.sub-pages-spur-mobile {
  position: absolute;
  top: 0;
  left: -280px;
  width: 700px;
  height: auto;
}

.banner .overlay-text .text-wrapper {
  padding: 9rem 0rem 9rem 50px;
  width: 40vw;
  margin: 40px 0px !important;
}

.banner .overlay-text .sub-heading {
  font-size: 22px;
}

.header-adjustment {
  margin-top: 72px;
}

.mid article h3 {
  font-size: 30px;
  font-weight: 700;
}

.mid .red-divider {
  height: 1px;
  border-top: 1px solid #da2128;
  width: 100%;
  margin-top: 1.5vh;
  margin-bottom: 1.5vh;
}

/*Sub Pages Box */
.sub-page-wrap {
  width: 90vw;
  max-width: 1920px;
  padding: 0 50px 0 50px;
  margin: auto;

  width: 100%;
  padding: 0 clamp(80px, 7.5vw, 150px) 0 clamp(80px, 7.5vw, 150px);
}

.mid .sub-pages-box-wrapper {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}

.mid .sub-pages-box-wrapper .left-box-wadt,
.mid .sub-pages-box-wrapper .right-box-wadt {
  height: 270px;
  width: 660px;
  position: relative;
  background-color: #fff5e9;
  opacity: 0.9;
  clip-path: polygon(100% 0, 100% 90%, 95% 100%, 0 100%, 0 0);
  padding: 3%;
}

.mid .sub-pages-box-wrapper .left-box-ctd,
.mid .sub-pages-box-wrapper .right-box-ctd {
  height: 270px;
  width: 660px;
  position: relative;
  background-color: #fff5e9;
  opacity: 0.9;
  clip-path: polygon(100% 0, 100% 90%, 95% 100%, 0 100%, 0 0);
  padding: 3%;
}

/*Mast Wrapper  */
.mast-wrapper {
  max-width: 1920px;
  position: relative;
  margin: 0 auto;
}

.mast-wrapper.ease-wrapper.inner-hero-section {
  overflow: visible;
}

.mast-wrapper.ease-wrapper {
  overflow: hidden;
}

.mast-wrapper .header-wrapper {
  width: 100%;
  padding: 50px clamp(80px, 7.5vw, 150px) 0 clamp(80px, 7.5vw, 150px);
  margin: 0 auto;
}

.mast-wrapper .text-wrapper {
  padding-left: 90px;
}

.mast-wrapper .flex-md-row-reverse .text-wrapper {
  padding-left: clamp(80px, 7.5vw, 150px) !important;
}

.mast-wrapper .flex-md-row-reverse.gap-2 {
  gap: 0 !important;
}

@media (max-width: 768px) {
  .mast-wrapper .header-wrapper {
    width: 100%;
    padding: 30px 20px 0 20px;
    margin: 0 auto;
  }

  .mast-wrapper .text-wrapper,
  .mast-wrapper .flex-md-row-reverse .text-wrapper {
    padding-left: 20px !important;
    padding-right: 20px;
  }
}

.mast-text {
  padding-left: 9rem;
}

.half-width {
  max-width: 50% !important;
  z-index: 2;
}

/* Sub Page Image */

.image-wrapper {
  display: block;
}

.image-wrapper-mobile {
  display: none;
}

.image-wrapper img {
  width: 55%;
}

.image-wrapper img.w-auto {
  display: block;
  width: 100% !important;
  max-width: 50%;
  height: 100%;
  object-fit: cover;
  z-index: 2;
}

/* Subpage blockquotes */
.blockquote-section {
  width: 20px !important;
  margin: 5px auto 15px auto;
}

.blockquote-right {
  float: right;
  margin-top: -20px;
}

.blockquote-absolute-right {
  margin-top: -20px;
  position: absolute;
  right: 15px;
}

.blockquote-left {
  float: left;
}

/* .quote-padding{ padding-left: 3rem ; padding-right: 3rem;} */

/* Current image sizing and placement */
.banner .overlay-img {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  width: 55vw;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: right;
}

.banner .image-positioning {
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  background-repeat: no-repeat;
  background-size: contain;
}

.banner .image-positioning-chairman {
  display: block;
}

.banner .chairman-sub-mob-banner {
  display: none;
}

.banner .image-positioning-chairman {
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  background-repeat: no-repeat;
  background-size: contain;
}

/* Sub Page Spur */
.mobile-text-spur {
  display: none;
}

.vision-footnote-mob-hide {
  display: none;
}

.mid .sub-pages-box-wrapper .left-box-wadt {
  margin-right: 1.5rem;
}

.mid .sub-pages-box-wrapper .left-box-ctd {
  margin-right: 1.5rem;
}

.mid .sub-pages-box-wrapper .left-box-wadt .red-header,
.mid .sub-pages-box-wrapper .right-box-wadt .red-header {
  margin-bottom: 0;
}

.mid .sub-pages-box-wrapper .left-box-ctd .red-header,
.mid .sub-pages-box-wrapper .right-box-ctd .red-header {
  margin-bottom: 0;
}

.mid .sub-pages-box-wrapper .right-box-wadt {
  margin-left: 1.5rem;
}

.mid .sub-pages-box-wrapper .right-box-ctd {
  margin-left: 1.5rem;
}

.mid .sub-pages-black-list {
  list-style: none;
}

.mid .sub-pages-black-list ul li {
  padding-bottom: 0;
}

.mid .sub-pages-red-list {
  list-style: none;
}

/* .mid .sub-pages-red-list ul li{padding-bottom: 0;} */

.mid sup a {
  color: #000;
}

.mid sup a:hover {
  color: #da2128;
  text-decoration: underline;
  cursor: pointer;
}

.mid img {
  width: 100%;
}

/* Sub Pages Sticky Tab */
/* .tab-section{position:sticky;top:78px;margin:0 auto;z-index:7} */
.tab-section {
  position: sticky;
  top: 83.8px;
  max-width: 1440px;
  margin: 0 auto;
  z-index: 6;
  box-sizing: border-box;
  background-color: white;
}

.tab-buttons {
  display: flex;
  align-items: start;
  margin-bottom: 20px;
  padding: 16px 88px 16px 0px;
  justify-content: space-evenly;
}

.tab-button {
  border: none;
  cursor: pointer;
  font-size: 17px;
  text-align: center;
  transition: all 0.3s ease;
  color: #cfcfcf;
}

/* .tab-button:not(:first-child){padding-left:5vw;} */
.tab-button:hover {
  color: #000000;
}

.tab-button.active {
  color: #000000;
  font-weight: bold;
}

.tab-content .tab-item {
  display: none;
}

.tab-content .tab-item.active {
  display: block;
}

.tab-content h2 {
  font-size: 24px;
  margin-bottom: 10px;
}

.tab-section .arrow-container {
  display: none;
}

.tab-buttons.tabs-hidden .tab-button.hidden {
  display: none;
}

.tab-buttons.tabs-hidden .tab-item.hidden {
  display: none;
}

/* .mid{counter-reset:footnotes;}
.mid .black-footnote{ font-size:14px !important; line-height: 140%;}
.mid .black-footnote:before{content:counter(footnotes);counter-increment:footnotes;color:#000000;margin-right:10px; display: inline-block; width: 1.5em;} */
.mid .black-footnote {
  font-size: 14px !important;
  line-height: 140%;
}

/* Ceo */
.ceo-question-answer-left-spacing {
  margin-left: 10px;
}

/* .ceo-text-wrap{ padding-right: 30px; } */

.fade-in {
  opacity: 0;
  animation: fadeInAnimation 0.5s ease-in forwards;
}

@keyframes fadeInAnimation {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

/* ----- */

/* Heading */
.no-bnr-heading .ttl {
  font-size: 56px;
  font-weight: 900;
  padding: 100px 0;
  line-height: 120%;
}

/* ----- */

/* Footer */
.footer-adjustment {
  padding-bottom: 47px !important;
}
/* FOOTER — Download hover animation */
footer .download-ar::before {
  display: none !important;
}

footer .download-ar {
  overflow: visible;
  text-decoration: none;
}

/* ── Icon ── */
.dl-icon-wrap {
  position: relative;
  width: 34px;
  height: 47px;
  overflow: hidden;
  flex-shrink: 0;
  margin-right: 20px;
}

.dl-icon-base,
.dl-icon-hover {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}

/* Default state: base visible, hover hidden below */
.dl-icon-base {
  background-image: url("../image/download-icon-base.svg") !important;
  color: #9a8d91 !important;
  transform: translateY(0);
}

.dl-icon-hover {
  background-image: url("../image/download-icon-hover.svg") !important;
  transform: translateY(-100%);
}

/* Hover: base slides up, hover slides into view */
footer .download-ar:hover .dl-icon-base {
  transform: translateY(-100%);
}
footer .download-ar:hover .dl-icon-hover {
  transform: translateY(0);
}

/* Hover: base slides DOWN, white slides DOWN into view */
footer .download-ar:hover .dl-icon-base {
  transform: translateY(100%); /* was -100%, now slides DOWN */
}
footer .download-ar:hover .dl-icon-hover {
  transform: translateY(0); /* no change */
}

/* ── Text ── */
.dl-text-wrap {
  position: relative;
  overflow: hidden;
  line-height: 1.2;
  height: 1.2em;
}

.dl-text-base,
.dl-text-hover {
  display: block;
  white-space: nowrap;
  transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
  line-height: 1.2;
}

.dl-text-base {
  color: #9a8d91 !important;
  transform: translateY(0);
}

.dl-text-hover {
  color: #ffffff;
  /* Position directly on top of base text using negative margin
       instead of position:absolute — avoids alignment issues */
  margin-top: -1.2em;
  transform: translateY(100%);
}

/* Hover: base slides up, hover slides into place */
footer .download-ar:hover .dl-text-base {
  transform: translateY(-100%);
}
footer .download-ar:hover .dl-text-hover {
  transform: translateY(0);
}

@media screen and (max-width: 767px) {
  /* 1. 修正图标在垂直排列时的间距 */
  .download-ar.d-md-none .dl-icon-wrap {
    margin-right: 0 !important; /* 强制取消桌面版的右边距 */
    width: 35px;
    height: 45px;
    display: block;
    position: relative;
  }

  /* 2. 强制 Mobile 图标显示为白色版本（无动画） */
  .mobile-white-icon {
    background-image: url("../image/download-icon-hover.svg") !important; /* 假设 hover 版是白色的 */
    transform: none !important;
    position: relative;
    display: block;
    width: 100%;
    height: 100%;
    color: #ffffff !important;
  }

  /* 3. 匹配图片中的大号衬线体文字 */
  .dl-mobile-text {
    color: #ffffff;
    font-size: 26px; /* 调大字体以匹配设计图 */
    line-height: 1.1;
    margin-top: 5px;
  }
}

/* Sub Page Additional Contents */

/* Vision 2030 in Action */

.sub-page-vision-2030-in-action {
  display: block;
}

.sub-page-visio-2030-in-action-mobile {
  display: none;
}

.sub-page-vision-2030-in-action {
  height: 200vh;
}

.sub-page-vision-2030-in-action .two-column-wrapper {
  position: relative;
  margin: auto;
  display: flex;
  flex-direction: column;
  height: 150vh;
}

.sub-page-vision-2030-in-action .upper-column-wrapper {
  width: 100%;
  height: 50%;
  background-image: url(../image/public-data/vision-2030-in-action/windmill.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: top;
}

.sub-page-vision-2030-in-action .bottom-column-wrapper {
  width: 100%;
  height: 50%;
  background: #ffffff;
}

.sub-page-vision-2030-in-action .focus-area-white-box {
  position: absolute;
  top: 75%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 90%;
  height: 100%;
  background-color: white;
}

/* .sub-page-vision-2030-in-action .focus-area-white-box{position: absolute; top: 75%; left: 50%; transform: translate(-50%, -50%); width: 90%;max-width: 1680px; min-height:75%;background: rgb(110, 66, 66);} */

/* Sustainability Framework */
.vertical-box-polygon {
  clip-path: polygon(100% 0, 100% 95%, 90% 100%, 0 100%, 0 0);
}

.horizontal-box-polygon {
  clip-path: polygon(100% 0, 100% 90%, 95% 100%, 0 100%, 0 0);
}

.maxh-136 {
  max-height: 136px;
  max-width: 150px;
}

.z-index-adjustment {
  position: relative;
  z-index: 2;
}

.sustainability-header {
  padding: 10px 0px !important;
}

.sustainability-header h4 {
  color: #fff !important;
  text-align: center;
}

.sustainability-header-padding {
  text-align: center;
  color: #fff !important;
  padding: 10px 0px !important;
}

.sustainability-header-padding p {
  margin: 0;
}

.sdg-margin-right {
  margin-right: 200px;
}

/* Financial report page */
.download-financial-report-button-wrapper {
  display: flex;
  flex-direction: row;
}

.download-financial-report-button-wrapper .circle-download-btn {
  background-image: url(../image/icon-download-pdf-hover.svg);
  width: 41px;
  height: 41px;
  margin-left: 10px;
}

.download-financial-report-button-wrapper .circle-download-btn:hover {
  cursor: pointer;
  background-image: url(../image/icon-download-pdf.svg);
  width: 41px;
  height: 41px;
}

.pdf-link-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 0 0 15px;
}

.pdf-link-wrapper a {
  display: block;
  margin-bottom: 10px;
  width: 100%;
  text-indent: -15px;
}

.pdf-link-wrapper a::first-line {
  text-indent: 0;
}

.financial-min-h {
  min-height: 580px;
}

.financial-header {
  font-size: 50px;
}

.financial-report-padding-right {
  padding-right: 3rem !important;
}

/* Fund Management */
.fund-double-wrapper {
  display: flex;
  flex-wrap: nowrap;
  gap: 30px;
}

.blockquote-fund-left {
  max-width: 20px;
  position: absolute;
  left: 0;
}

.blockquote-fund-right {
  max-width: 20px;
  position: absolute;
  right: 0;
}

/* .banner  .pdf-text-wrapper { padding: 5rem 5rem 5rem 5rem; width: 47vw; }
.banner .overlay-text-sub { width: 45vw; overflow: hidden; display: flex; align-items: center; position: absolute; top: 0; bottom: 0; left: 0; margin: auto; z-index: 3; } */

/* Download pages */
.dl-h {
  border-bottom: 2px solid #565657;
  padding: 10px 0;
  font-weight: 900;
}

p.dl-pg {
  border-bottom: 2px solid #565657;
  margin: 0;
}

p.dl-pg a {
  color: #565657;
  text-decoration: none;
  display: block;
  padding: 10px 50px 10px 0;
  background-image: url("../image/icon-pdf-download.png");
  transition: all 0.25s;
  background-position: right center;
  background-repeat: no-repeat;
  background-size: 28px auto;
}

p.dl-pg a:hover {
  color: #da2128;
}

/* ----- */

.sticky-wrapper {
  position: relative;
  transition: all 0.3s;
}

.sticky-share {
  height: 300px;
  position: fixed;
  top: 15px;
  right: 5vw;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s;
  z-index: 2;
}

.sticky-share.active {
  opacity: 1;
  visibility: visible;
}

.sticky-share ul {
  list-style: none;
  padding: 0;
  width: 40px;
}

.sticky-share ul li {
  width: 40px;
  height: 40px;
  transition: all 0.3s;
}

.sticky-share ul li:hover {
  opacity: 0.5;
}

.sticky-share ul li a {
  display: block;
  width: 40px;
  height: 40px;
}

.sticky-share ul .icon-insta {
  background: url(../image/social-share-icons_black.png) no-repeat;
  background-position: 0 0px;
  background-size: 240px;
}

.sticky-share ul .icon-fb {
  background: url(../image/social-share-icons_black.png) no-repeat;
  background-position: -52px 0px;
  background-size: 240px;
}

.sticky-share ul .icon-li {
  background: url(../image/social-share-icons_black.png) no-repeat;
  background-position: -100px 0px;
  background-size: 240px;
}

.sticky-share ul .icon-wa {
  background: url(../image/social-share-icons_black.png) no-repeat;
  background-position: -195px 0px;
  background-size: 240px;
}

.sticky-share ul .icon-wc {
  background: url(../image/social-share-icons_black.png) no-repeat;
  background-position: -145px 0px;
  background-size: 240px;
}

.sticky-share .wechat-qr {
  text-align: center;
}

.sticky-share img.qr-img {
  max-width: 240px !important;
  width: 100%;
}

.sticky-share .wechat-heading {
  text-align: left;
}

.sticky-share .wechat-qr-instructions {
  text-align: left;
}

.page-wrap .arrows:before {
  content: "";
  display: block;
  width: 34px;
  height: 25px;
  background-image: url(../image/icon-arrows.png);
  background-repeat: no-repeat;
  background-size: contain;
  margin-bottom: 0.9rem;
}

.question {
  display: flex;
  color: #000000;
  font-weight: 700;
  padding: 1rem 0;
}

.question:before {
  content: "Q";
  font-weight: 700;
  color: #000000;
  margin-right: 1.5rem;
}

.answer {
  display: flex;
  padding: 1rem 1.5rem 0 0;
}

.answer:before {
  content: "A";
  font-weight: 700;
  margin-right: 1.5rem;
}

.answer-without-number {
  display: flex;
  padding: 1rem 1.5rem 0 1rem;
}

.sub-page-image-padding {
  padding: 1rem 1.5rem 0 2.4rem;
}

.answer-without-number:before {
  content: " ";
  font-weight: 700;
  margin-right: 1.5rem;
}

.sub-page-text-bg {
  background-color: #f3f4f4;
  padding: 1rem;
  line-height: 158%;
}

.spur-message {
  position: relative;
}

.left-small-spur {
  position: absolute;
  top: 0;
  left: 0;
}

.right-small-spur {
  position: absolute;
  bottom: 0;
  right: 0;
}

.spur-message {
  display: flex;
  padding: 1rem 1.5rem 0 3rem;
}

.ceo-spur-message {
  display: flex;
  padding: 1rem 0.5rem 0 1.5rem;
}

.chairman-spur-message {
  display: flex;
}

.spur-message:before {
  content: "";
  margin-right: 1.5rem;
}

.note {
  font-style: italic;
}

/*operating and marketing review*/
.overlay-text.operating-and-market {
  background-color: #0088c7;
}

.overlay-red-triangle.operating-and-market {
  background-color: #0088c7;
}

.operating-and-market-read-more {
  height: 215px;
}

.operating-cards {
  color: #fff;
}

.operating-cards > div {
  background: #2c4f78;
  padding: 30px;
}

.operating-cards > div > :nth-child(1) {
  font-weight: 600;
  line-height: 20px;
}

.operating-cards > div > :nth-child(2) {
  font-weight: 300 !important;
  font-size: 50px;
  line-height: 60px;
}

.operating-cards > div > :nth-child(3) {
  font-weight: 400;
  line-height: 23px;
}

.operating-grey-cards > div {
  background: #e1e5ec;
  padding: 30px;
  height: 300px;
}

.operating-grey-cards > div > div > :nth-child(1) {
  font-weight: 600;
  line-height: 23px;
  font-size: 22px;
  color: #2c4f78;
}

.operating-grey-cards > div > div > :nth-child(2) {
  font-weight: 400;
}

.operating-grey-cards > div > div > div > a {
  font-weight: 400;
  line-height: 23px;
  font-size: 17px;
}

.operating-min {
  min-height: 200px;
}

.operating-download-icon {
  height: 36px;
  width: 36px;
}

.operating-icon-text:hover img.operating-download-icon {
  animation: bounce 0.5s forwards;
}

.operating-icon-text:hover span {
  transition: transform 0.5s ease;
}

.operating-icon-text img.operating-download-icon {
  transition: transform 0.3s ease;
}

@keyframes bounce {
  0% {
    transform: translateY(0);
  }

  100% {
    transform: translateY(-10px);
  }
}

.round-bullet-wrapper {
  display: flex;
  align-items: flex-start;
}

.round-bullet-wrapper .bullet {
  width: 34px;
  min-width: 34px;
  height: 34px;
  margin-right: 1rem;
  border-radius: 50%;
  border: 1px solid #f7941d;
  background-color: #f7941d;
  color: #fff;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
}

.round-bullet-wrapper .bullet span {
  font-size: 24px;
  font-weight: 900;
}

.round-bullet-wrapper .bullet-cnt {
  font-size: 24px;
  color: #f7941d;
  font-weight: 900;
  padding-top: 3px;
}

.highlights-bullet-cnt-wrapper {
  display: flex;
  align-items: center;
}

.highlights-bullet-cnt-wrapper .highlights-bullet-wrapper .bullet {
  position: relative;
  width: 170px;
  height: 170px;
  border-radius: 50%;
  border: 3px solid #da2128;
  background-color: #d1d3d4;
  color: #da2128;
  text-align: center;
  margin-right: 1.5rem;
}

.highlights-bullet-cnt-wrapper .bullet span {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-weight: 900;
  font-size: 20px;
}

.highlights-bullet-cnt-wrapper ul li:last-child {
  padding: 0;
}

/*sustainability styles*/
.green-header {
  display: block;
  background-color: #00ab4e;
  color: #ffffff;
  font-weight: 700;
  padding: 1rem 1.5rem;
}

.green-subheader {
  display: block;
  background-color: #00ab4e;
  color: #ffffff;
  padding: 1rem 1.5rem;
}

.light-green-header {
  display: block;
  background-color: #60be7b;
  color: #ffffff;
  font-weight: 700;
  padding: 1rem 1.5rem;
}

.modal-gray-bg {
  background-color: #fafafa;
}

.blue-header {
  display: block;
  background-color: #0089c8;
  color: #ffffff;
  font-weight: 700;
  padding: 1rem 1.5rem;
}

/*Vision 2030 collaboration styles*/
.collab-onekep-teams-red {
  display: block;
  background-color: #da2128;
  color: #ffffff;
  font-weight: 700;
  padding: 1rem 1.5rem;
  text-align: center;
}

.collab-onekep-teams-red h4 {
  color: #ffffff;
}

.collab-onekep-teams-gray {
  display: block;
  background-color: #bcbec0;
  color: #ffffff;
  font-weight: 700;
  padding: 1rem 1.5rem;
  text-align: center;
}

.collab-onekep-teams-gray h4 {
  color: #da2128;
}

.collab-onekep-teams-gray h4:before {
  color: #da2128;
  content: url(../image/public-data/vision-2030/key-objectives-target-a.png);
  vertical-align: -135%;
}

.collab-col {
  position: relative;
  min-height: 1px;
  padding-right: 10px;
  padding-left: 10px;
}

.collab-col {
  width: 20%;
  float: left;
  flex: 0 0 18.6667%;
}

.collab-onekep-teams-beige {
  display: block;
  background-color: #fff1e2;
  color: #000000;
  font-weight: 900;
  padding: 1rem 1.5rem;
  text-align: center;
  border-top-width: 1px;
  border: solid #f7941d 2px;
  border-right: 0px solid transparent;
  border-left: 0px solid transparent;
}

.collab-red-divider {
  border-bottom: 1px solid #da2128;
}

/*Vision 2030 information and innovation*/
.vision-tech-ul ul {
  list-style: none;
  position: relative;
}

.vision-tech-ul ul li span {
  margin-right: 10px;
  border-radius: 50%;
  border: 1px #da2128;
  padding: 0px 10px;
  margin-right: 10px;
  background: #da2128;
  z-index: 2;
  position: relative;
}

.vision-tech-ul ul span {
  margin-right: 10px;
  border-radius: 50%;
  border: 1px #da2128;
  padding: 0px 10px;
  margin-right: 10px;
  background: #da2128;
  z-index: 2;
  position: relative;
}

.verticalLine {
  position: absolute;
  height: 78%;
  width: 1px;
  border-left: 1px solid black;
  left: 9px;
  top: 3.5px;
}

.vision-prev a {
  position: absolute;
  left: 0;
}

.vision-prev a h5:hover {
  color: #575756 !important;
}

.vision-prev a::before {
  content: "";
  background: url("../image/icon-prev.png") no-repeat;
  background-size: contain;
  background-position: center right;
  width: 60px;
  height: 56px;
  display: block;
  position: absolute;
  left: -30px;
  top: 40%;
  transform: translateY(-50%);
}

.vision-prev a:hover::before {
  content: "";
  background: url("../image/icon-prev-gray.png") no-repeat;
  background-size: contain;
  background-position: center right;
  width: 60px;
  height: 56px;
  display: block;
  position: absolute;
  left: -30px;
  top: 40%;
  transform: translateY(-50%);
}

.vision-next a {
  position: absolute;
  right: 0;
}

.vision-next a h5:hover {
  color: #575756 !important;
}

.vision-next a::after {
  content: "";
  background: url("../image/icon-next.png") no-repeat;
  background-size: contain;
  background-position: center right;
  width: 60px;
  height: 56px;
  display: block;
  position: absolute;
  right: -30px;
  top: 40%;
  transform: translateY(-50%);
}

.vision-next a:hover::after {
  content: "";
  background: url("../image/icon-next-gray.png") no-repeat;
  background-size: contain;
  background-position: center right;
  width: 60px;
  height: 56px;
  display: block;
  position: absolute;
  right: -30px;
  top: 40%;
  transform: translateY(-50%);
}

/* Content navi */
.page-nav {
  width: 100%;
  overflow: hidden;
  visibility: visible;
  opacity: 1;
  transition: all 0.3s;
}

.page-nav.hidden {
  visibility: hidden;
  opacity: 0;
}

.page-nav a.lft-nav {
  position: fixed;
  top: 50%;
  left: 4vw;
  transform: translateY(-50%);
}

.page-nav a.rgt-nav {
  position: fixed;
  top: 50%;
  right: 4vw;
  transform: translateY(-50%);
}

.page-nav a img {
  width: 40px;
}

.page-nav a .text-wrap {
  position: absolute;
  width: 290px;
  min-height: 60px;
  top: 50%;
  transform: translateY(-50%);
  right: -100vw;
  color: #ffffff;
  font-size: 14px;
  line-height: 130%;
  padding: 10px;
  background: #dd0a2a;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.5s;
}

.page-nav a:hover .text-wrap {
  right: 0;
}

.page-nav a.lft-nav .text-wrap {
  left: -100vw;
  right: unset;
}

.page-nav a.lft-nav:hover .text-wrap {
  left: 0;
  right: unset;
}

.page-nav a.lft-nav .text-wrap .nav-item {
  display: flex;
}

.page-nav a.lft-nav .text-wrap .nav-item:before {
  content: "Prev:";
  padding-right: 5px;
  align-self: flex-start;
}

.page-nav a.rgt-nav .text-wrap .nav-item:before {
  content: "Next:";
  padding-right: 5px;
  align-self: flex-start;
}

/* Chart */
.chart-1 {
  background-color: rgb(83, 137, 124);
}

.chart-2 {
  background-color: rgb(147, 149, 152);
}

.chart-3 {
  background-color: rgb(188, 190, 192);
}

.chart-4 {
  background-color: rgb(220, 102, 30);
}

.chart-5 {
  background-color: rgb(237, 170, 125);
}

#social-investment-spending {
  width: 65%;
  margin: auto;
}

.legend .legend-color {
  width: 17px;
  height: 17px;
  border-radius: 50%;
  display: inline-block !important;
  position: absolute;
  left: 0;
  top: calc(0.5rem + 2px);
}

.legend .legend-lbl {
  position: relative;
  padding: 0 0 0 25px;
}

.legend .ln {
  border-bottom: solid 1px #ccc;
  width: 100%;
}

/* ----- */

/* Operating Market Review Box */
.img-cnt-box {
  display: flex;
}

.img-cnt-box img {
  width: 360px;
}

.img-cnt-box .cnt-wrapper-subpage {
  width: 100%;
  display: flex;
  flex-direction: column;
}

.img-cnt-box .cnt {
  padding: 1rem 3rem;
  align-items: center;
}

/* ----- */

/* ---------------- GLOBAL ASSET MANAGER & OPERATOR ---------------- */
.page-gamo section p {
  margin: 0;
}

.section-gamo-1 .ease-wrapper.onload {
  overflow: unset;
  display: flex;
  flex-direction: column;
  gap: 50px;
}

.l-cnt-r-slide {
  border-top: 1px solid #2c4f78;
  border-bottom: 1px solid #2c4f78;
  margin: 0;
}

.l-cnt-r-slide:first-child {
  border-bottom: unset;
}

.l-cnt-r-slide:last-child {
  border-top: unset;
}

.l-cnt {
  margin: 24px 0;
  padding: 0 50px 0 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.triple-slider-col {
  position: relative;
  display: block;
  padding: 0;
  background-color: #2c4f78;
  border-bottom: 1px solid #ffffff;
}

.l-cnt-r-slide:last-child .triple-slider-col {
  border-bottom: unset;
}

.triple-slider-col .slider .slick-dots {
  bottom: 12px;
}

.triple-slider-col .slider .slick-dots li {
  width: 12px;
  height: 12px;
  margin: 0 10px;
}

.triple-slider-col .slider,
.triple-slider-col .slick-list,
.triple-slider-col .slick-track {
  height: 100%;
}

.triple-slider-col .slider .slick-prev {
  left: -24px;
  box-shadow: unset;
}

.triple-slider-col .slider .slick-next {
  right: -24px;
  box-shadow: unset;
}

.triple-slider-col .slider .slick-prev:before {
  content: " ";
  display: block;
  position: relative;
  opacity: 1;
  width: 100%;
  height: 100%;
  background-image: url(../image/arrow-left-grey.svg);
  background-repeat: no-repeat;
  background-size: contain;
}

.triple-slider-col .slider .slick-next:before {
  content: " ";
  display: block;
  position: relative;
  opacity: 1;
  width: 100%;
  height: 100%;
  background-image: url(../image/arrow-right-grey.svg);
  background-repeat: no-repeat;
  background-size: contain;
}

.triple-slider-col .slider .slick-prev.slick-disabled:before,
.triple-slider-col .slider .slick-next.slick-disabled:before {
  opacity: 0;
}

.triple-slider-col .slick-slide {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.triple-slider-col .slide-cnt {
  display: flex;
  flex-direction: column;
}

.triple-slider-col .slide-num {
  position: relative;
  width: 50px;
}

.triple-slider-col .slick-slide .slide-icon {
  display: flex;
  align-items: center;
  gap: 24px;
}

.triple-slider-col .slick-slide .slide-icon img {
  width: 50px;
  height: 50px;
  aspect-ratio: 1 / 1;
}

.slider-nav .tri-slide-1 *,
.slider-nav .tri-slide-2 *,
.slider-nav .tri-slide-3 * {
  width: 100%;
  max-width: 350px;
}

.slider-nav .slick-slide {
  padding: 24px;
  flex-direction: column;
}

.slider-nav .notation-wrapper {
  margin-top: 12px;
  display: flex;
  gap: 24px;
}

.slider-nav .notation-wrapper .icon-pf,
.slider-nav .notation-wrapper .icon-lv {
  font-size: 14px;
}

.slider-nav .notation-wrapper .icon-pf::before {
  width: 15px;
  height: 9px;
}

.slider-nav .notation-wrapper .icon-lv::before {
  width: 12px;
  height: 12px;
}

.slider-nav .icon-pf,
.slider-nav .icon-lv {
  display: flex;
  align-items: center;
  gap: 8px;
}

.slider-nav .icon-pf::before {
  content: " ";
  display: block;
  position: relative;
  width: 20px;
  height: 12px;
  background-image: url(../image/public-data/global-asset-manager-operator/icon-private-fund.svg);
  background-repeat: no-repeat;
  background-size: contain;
}

.slider-nav .icon-lv::before {
  content: " ";
  display: block;
  position: relative;
  width: 16px;
  height: 16px;
  margin: 0 2px;
  background-image: url(../image/public-data/global-asset-manager-operator/icon-listed-vehicle.svg);
  background-repeat: no-repeat;
  background-size: contain;
}

.triple-slider-col .pa-slider {
  align-items: flex-start;
  padding: 24px;
  gap: 24px;
}

.triple-slider-col .pa-slide {
  width: 100%;
  max-width: 300px;
  gap: 12px;
}

.pa-slide {
  display: flex;
  flex-direction: column;
}

.pa-slide img {
  width: 100%;
  max-height: 160px;
  object-fit: cover;
}

.core-values {
  position: relative;
  width: 100%;
  padding: 50px 0 80px 0;
  color: #ffffff;
  background-color: #2c4f78;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.core-values p.fs-30 {
  font-weight: 600;
}

.core-values p.core-values-heading {
  max-width: 850px;
  margin: 0 0 50px 0;
}

.core-values .act-cnt-wrapper {
  position: relative;
  width: 100%;
  max-width: 900px;
  display: flex;
  flex-direction: column;
  gap: 50px;
}

.core-values .act-cnt-wrapper .flc {
  font-size: 44px;
}

/* ---------------- GLOBAL ASSET MANAGER & OPERATOR ---------------- */
.sec-abt {
  position: relative;
  width: 100%;
  margin: 48px auto 0 auto;
}

.sec-points-wrapper {
  position: relative;
  width: 100%;
  padding: 24px 0 0 0;
  gap: 50px;
  display: flex;
}

.sec-points-wrapper:last-child {
  padding: 48px 0 0 0;
}

.sec-points-wrapper .sec-points-l,
.sec-points-wrapper .sec-points-r {
  padding: 12px 0 0 0;
  flex: auto;
  border-top: 1px solid #2c4f78;
}

.sec-points-wrapper .w-one-third {
  flex: unset !important;
  width: calc((100% - 100px) / 3);
}

.sec-points-wrapper .w-two-third {
  flex: unset !important;
  width: calc((100% - 100px) / 3 * 2 + 50px);
}

.sec-points-wrapper .sec-points-r.no-border-t,
.section-v2ia-2 .sec-points-wrapper .sec-points-r.no-border-t {
  position: relative;
  padding: 0;
  border-top: unset;
  display: flex;
  gap: 50px;
}

.sec-points-wrapper .sec-points-l p:first-child,
.sec-points-wrapper .sec-points-r p:first-child {
  margin: 0 0 24px 0;
}

.section-v2ia-2 {
  background-image: url(../image/public-data/vision-2030-in-action/section-bg-2.png);
  background-repeat: no-repeat;
  background-size: cover;
}

.sec-dfp,
.sec-fa24 {
  width: 90vw;
  max-width: 1920px;
  padding: 80px 50px;
  margin: auto;
}

.sec-dfp .sec-points-wrapper .sec-points-l p {
  margin: 0;
  position: relative;
}

.sec-dfp .sec-points-wrapper .sec-points-l p sup {
  position: absolute;
  font-size: 50%;
  top: 15%;
}

.section-v2ia-2 .sec-points-wrapper .sec-points-l,
.section-v2ia-2 .sec-points-wrapper .sec-points-r {
  padding: 12px 0 0 0;
  flex: auto;
  border-top: 1px solid #ffffff;
}

.sec-dhc,
.sec-egcrs,
.sec-cs {
  position: relative;
  width: 100%;
  margin: 32px auto 0 auto;
}

.sec-dhc .sec-points-wrapper:last-child,
.sec-egcrs .sec-points-wrapper:last-child,
.sec-cs .sec-points-wrapper:last-child {
  padding: 24px 0 0 0;
}

.section-v2ia-b {
  background-color: #2c4f78;
}

.section-v2ia-b .sec-banner-img {
  display: block;
  width: 100%;
  max-height: 600px;
  object-fit: cover;
  object-position: bottom;
}

.section-v2ia-b .sec-points-wrapper {
  padding: 0;
}

.section-v2ia-b .sec-points-wrapper:last-child {
  padding: 12px 0 0 0;
}

.section-v2ia-b .sec-points-wrapper .sec-points-l p {
  padding: 12px 0 24px 0;
  border-top: 1px solid #ffffff;
}

.section-v2ia-b .fa24-icons {
  max-width: 100px;
  margin: 0 0 12px 0;
  aspect-ratio: 1 /1;
}

.section-v2ia-b .fa24-col-2r {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 48px;
}

.section-v2ia-b .fa24-col-2r div {
  min-height: 330px;
  height: 100%;
}

@media screen and (max-width: 1366px) {
  .banner .overlay-text .text-wrapper {
    padding: 10rem 0rem 2rem 0rem;
  }

  .operating-grey-cards > div {
    padding: 30px;
    max-height: 400px;
    height: 100%;
    margin-bottom: 100px;
  }

  .sdg-margin-right {
    margin-right: 120px;
  }

  .mast-text {
    padding-left: 6rem;
  }

  .mast-text h1 {
    font-size: 40px;
    line-height: 50px;
  }

  .sub-pages-spur {
    left: 49%;
    transform: translateX(-51%);
  }

  .financial-rep-font a {
    font-size: 15px;
  }

  .financial-report-padding-right {
    padding-right: 0rem !important;
  }

  .quotes-header {
    font-size: 17px;
    line-height: normal;
  }
}

@media screen and (max-width: 1024px) {
  .banner .overlay-text h1 {
    font-size: 46px !important;
  }

  .banner .overlay-text .text-wrapper {
    padding: 5rem 5rem 0rem 2rem;
    width: 47vw;
  }

  .operating-grey-cards > div {
    background: #e1e5ec;
    padding: 30px 30px;
    max-height: 400px;
    height: 100%;
    margin-bottom: 100px;
  }

  .sdg-margin-right {
    margin-right: 100px;
  }

  .mast-text {
    padding-left: 3rem;
  }

  .mast-text h1 {
    font-size: 28px;
    line-height: normal;
  }
}

@media screen and (max-width: 900px) {
  .mast-text h1 {
    font-size: 44px;
  }

  .banner .wrapper {
    height: unset;
  }

  .banner .wrapper .content-masthead {
    max-width: 100vw;
  }

  .mast-text {
    min-height: 300px;
    max-height: 300px;
  }

  .half-width {
    max-width: 100% !important;
  }

  .banner .overlay-red-triangle-wrapper {
    position: absolute;
    top: 0;
    height: 440px;
  }

  .banner .overlay-red-triangle {
    left: 0;
    width: 30px;
    max-width: unset;
    height: 79px;
  }

  .banner .overlay-img {
    position: relative;
    width: 100%;
    background-position: center;
    height: 440px;
  }

  .banner .overlay-transparent {
    width: 100%;
    left: unset;
    right: -80vw;
    height: 440px;
    clip-path: polygon(100% 0, 100% 50%, 100% 100%, 0% 100%, 20% 50%, 0% 0%);
  }

  /* .banner .overlay-text { width: 100%; position: relative; clip-path: unset; min-height: 200px; max-height: 200px; } */
  .banner .overlay-text .text-wrapper {
    padding: 3rem 0;
    width: 85vw;
    margin: 0 auto !important;
  }

  .banner .wrapper .content-masthead {
    margin: auto;
    display: flex;
    flex-wrap: wrap-reverse;
  }

  .sustainability-ttl {
    font-size: 16px;
  }

  .banner {
    position: relative;
    width: 100%;
    margin: auto;
    padding-top: 115px;
    padding-bottom: 0;
  }

  .banner .wrapper {
    position: relative;
    height: unset;
    z-index: 1;
  }

  .banner .sub-pages-spur {
    display: none;
  }

  .image-wrapper {
    display: none;
  }

  .image-wrapper-mobile {
    display: block;
    width: 100%;
  }

  .banner .overlay-img {
    background-position: unset;
    width: 100%;
    position: relative;
    margin: unset;
  }

  .banner .image-positioning-chairman {
    display: none;
  }

  .banner .chairman-sub-mob-banner {
    display: block;
    width: 100%;
  }

  .banner .image-positioning-chairman {
    position: absolute;
    top: 54%;
    right: calc(100% - 85%);
    transform: translateY(-50%);
    background-repeat: no-repeat;
    background-size: contain;
  }

  .br-hide {
    display: none;
  }

  .banner .overlay-text {
    width: 90vw;
    position: relative;
    min-height: 300px;
    max-height: 300px;
    margin-top: 10px;
  }

  .banner .overlay-text .text-wrapper {
    padding: 1.5rem 0rem 0rem 2.4rem;
    width: 90vw;
    margin: auto;
  }

  .banner .overlay-text .text-wrapper h1 {
    font-size: 26px !important;
  }

  .banner .overlay-text .text-wrapper p {
    font-size: 22px !important;
  }

  .banner .overlay-text .name-pad {
    padding-top: 1.5rem;
  }

  article h3 {
    font-size: 26px !important;
  }

  article .left-small-spur img,
  article .right-small-spur img {
    width: auto;
  }

  article .left-small-spur img {
    padding-left: 20px;
  }

  article .right-small-spur img {
    padding-right: 20px;
  }

  article .mob-spur-wrapper {
    padding-bottom: 1rem !important;
  }

  article .mob-spur-secondary {
    padding-top: 0 !important;
  }

  .order-1 {
    order: 1 !important;
  }

  .order-2 {
    order: 2 !important;
  }

  .operating-grey-cards > div {
    padding: 15px;
  }

  .l-cnt-r-slide {
    flex-direction: column;
  }

  .l-cnt {
    width: 100%;
    max-width: 100%;
    padding: 0;
  }

  .triple-slider-col {
    max-width: 100%;
  }

  .triple-slider-col .slick-slide {
    min-height: 245px;
  }

  .triple-slider-col .slider .slick-dots {
    bottom: -15px;
  }

  .core-values p.core-values-heading,
  .core-values .act-cnt-wrapper {
    max-width: 85%;
  }

  .sec-points-wrapper {
    flex-direction: column;
  }

  .sec-points-wrapper .w-one-third,
  .sec-points-wrapper .w-two-third,
  .sec-points-wrapper .sec-points-l,
  .sec-points-wrapper .sec-points-r {
    width: 100%;
    max-width: 100%;
  }

  .section-v2ia-b .fa24-col-2r div {
    min-height: unset;
  }
}

@media screen and (max-width: 767px) {
  .mast-text h1 {
    font-size: 28px;
  }

  .sticky-share {
    display: none;
  }

  .mast-text {
    min-height: 180px;
    max-height: 180px;
    padding: 20px;
    margin-top: 20px;
  }

  /* Mobile */
  .sub-page-wrap {
    width: 90vw;
    padding: 0px;
    width: 100%;
    padding: 0 20px;
  }

  .mob-hide {
    display: none;
  }

  .mobile-text-spur {
    display: block;
  }

  .mob-section-margin {
    margin-top: 0rem !important;
  }

  .mob-section-no-margin {
    margin: 0 !important;
  }

  .mob-section-no-padding {
    padding: 0 !important;
  }

  .mob-section-padding-top {
    padding-top: 2rem !important;
  }

  .mob-section-padding-bottom {
    padding-bottom: 3rem !important;
  }

  .mob-section-padding {
    padding: 1rem 0rem !important;
  }

  .mob-section-padding-x2 {
    padding: 2rem 0rem !important;
  }

  .mob-section-padding-x3 {
    padding: 3rem 0rem !important;
  }

  .mobile-text-spur {
    display: block;
  }

  .mob-section-no-pad-top-but-btm {
    padding: 0 0 3rem 0 !important;
  }

  .mob-section-left-padding-x {
    padding: 0 1.5rem !important;
  }

  .mob-section-left-padding {
    padding: 0 1.3rem !important;
  }

  .mob-section-remove-padding-bottom {
    padding-bottom: 0 !important;
  }

  .mob-section-text-align-left {
    text-align: left !important;
  }

  .banner {
    position: relative;
    width: 100%;
    margin: auto;
    padding-top: 100px;
    padding-bottom: 0;
  }

  .banner .wrapper {
    position: relative;
    height: unset;
    z-index: 1;
  }

  .banner .sub-pages-spur {
    display: none;
  }

  .image-wrapper {
    display: none;
  }

  .image-wrapper-mobile {
    display: block;
    width: 100%;
  }

  .banner .overlay-img {
    background-position: unset;
    width: 100%;
    position: relative;
    margin: unset;
  }

  .banner .overlay-text {
    width: 90vw;
    position: relative;
    min-height: 180px;
    max-height: 180px;
  }

  .banner .overlay-text .text-wrapper {
    padding: 1rem 0rem 1rem 0rem;
    width: 90vw;
    margin: auto;
  }

  .banner .overlay-text .text-wrapper h1 {
    font-size: 26px !important;
    line-height: 1.5em;
  }

  .banner .overlay-text .text-wrapper p {
    font-size: 22px !important;
  }

  .banner .overlay-text .name-pad {
    padding-top: 1.5rem;
  }

  article h3 {
    font-size: 26px !important;
  }

  article .left-small-spur img,
  article .right-small-spur img {
    width: auto;
  }

  article .left-small-spur img {
    padding-left: 20px;
  }

  article .right-small-spur img {
    padding-right: 20px;
  }

  article .mob-spur-wrapper {
    padding-bottom: 0rem !important;
    margin: 0 !important;
  }

  article .mob-spur-secondary {
    padding-top: 0 !important;
  }

  article .sidebar-stick h1 {
    font-size: 50px !important;
  }

  /* CEO */
  .sub-page-image-padding {
    padding: 0;
  }

  /* Chairman Image */
  .banner .image-positioning-chairman {
    display: none;
  }

  .banner .chairman-sub-mob-banner {
    display: block;
    width: 100%;
    margin-top: 20px;
  }

  .banner .image-positioning-chairman {
    position: absolute;
    top: 54%;
    right: calc(100% - 85%);
    transform: translateY(-50%);
    background-repeat: no-repeat;
    background-size: contain;
  }

  .spur-message {
    padding: 0px;
  }

  .banner .overlay-text h1 {
    font-size: 50px !important;
  }

  .banner .overlay-text .sub-heading {
    font-size: 22px;
  }

  /* Sustainability Framework */

  article .for-mobile {
    padding: 0.5rem 2rem;
  }

  .maxh-136 {
    max-width: unset;
  }

  /* Operating and Market Review */
  .img-cnt-box .cnt-header {
    padding: 1rem 1.5rem 0.5rem 1.5rem !important;
  }

  .img-cnt-box .cnt {
    padding: 1.5rem !important;
  }

  .img-cnt-box .horizontal-box-polygon {
    clip-path: polygon(100% 0, 100% 87%, 90% 100%, 0 100%, 0 0);
  }

  .operating-grey-cards > div {
    height: unset;
    margin-bottom: 20px;
    padding: 30px 20px;
  }

  .operating-min {
    min-height: unset;
  }

  /* Fund Management */
  .fund-double-wrapper {
    flex-wrap: wrap;
  }
}

@media screen and (max-width: 430px) {
  .slider-nav .notation-wrapper {
    gap: 0;
  }

  .triple-slider-col .slider .slick-prev {
    width: 28px;
    height: 28px;
    left: -14px;
  }

  .triple-slider-col .slider .slick-next {
    width: 28px;
    height: 28px;
    right: -14px;
  }

  .triple-slider-col .pa-slider {
    flex-direction: column;
  }

  .sec-dfp,
  .sec-fa24 {
    padding: 40px 0;
  }

  .blockquote-right {
    margin-right: 25px;
  }

  .blockquote-left {
    margin-left: 10px;
  }

  .core-values {
    padding: 50px 0 95px 0;
  }

  .section-v2ia {
    padding-top: 24px !important;
    padding-bottom: 32px !important;
  }

  .section-v2ia .fs-30.semi-bold.dark-blue {
    margin-block-end: 0px;
  }

  .section-v2ia .normal-weight.pt-4 {
    padding-top: 18px !important;
  }

  .sec-abt {
    margin: 32px auto 0 auto;
  }

  .sec-points-wrapper .sec-points-l p:first-child,
  .sec-points-wrapper .sec-points-r p:first-child {
    margin: 0 0 12px 0;
  }

  .sec-points-wrapper,
  .section-v2ia-b .fa24-col-2r {
    gap: 8px;
  }

  .sec-points-wrapper:last-child {
    padding: 8px 0 0 0;
  }

  .sec-dhc,
  .sec-egcrs,
  .sec-cs {
    margin: 0 auto;
  }

  .sec-dhc {
    margin: 24px 0 0 0;
  }

  .section-v2ia-2 .sec-points-wrapper .sec-points-l,
  .section-v2ia-2 .sec-points-wrapper .sec-points-r {
    padding: 12px 0 24px 0;
  }

  .section-v2ia-b .fa24-icons {
    max-width: 80px;
  }

  .sec-dfp,
  .sec-fa24 p.fs-30.semi-bold {
    margin-bottom: 0;
  }

  .section-v2ia-b .sec-points-wrapper:last-child {
    padding: 0;
  }

  .section-v2ia-b .sec-points-wrapper .sec-points-l p {
    padding: 12px 0;
    margin-bottom: 0;
  }

  .section-v2ia-footnote {
    padding-top: 0 !important;
  }
}
