@charset "UTF-8";
/**
  Nation Media Group — 2025 Integrated Report microsite
  Design language: "the front page" — a newsroom masthead brought to the screen.
  Built on the fullpage.js single-scroll template.
**/
html, body {
  overflow-x: hidden;
}

body {
  font-family: "Inter", sans-serif;
  font-size: 16px;
  color: #1C1B19;
  background: #EFE7D6;
}

body::-webkit-scrollbar {
  width: 0.5em;
}

body::-webkit-scrollbar-track {
  background: #EFE7D6;
}

body::-webkit-scrollbar-thumb {
  background-color: #215eac;
}

::-moz-selection {
  background: #215eac;
  color: #EFE7D6;
}

::selection {
  background: #215eac;
  color: #EFE7D6;
}

a, button {
  text-decoration: none !important;
  cursor: pointer;
}

p {
  color: #1C1B19;
  line-height: 1.7;
  margin-bottom: 18px;
}

#fullpage {
  background: #EFE7D6;
}

.preloader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: #1C1B19;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}
.preloader .preloader-mark {
  display: flex;
  align-items: baseline;
  gap: 14px;
  margin-bottom: 26px;
}
.preloader .preloader-mark .preloader-kicker {
  font-family: "IBM Plex Mono", monospace;
  letter-spacing: 3px;
  font-size: 12px;
  color: rgba(239, 231, 214, 0.7);
}
.preloader .preloader-mark .preloader-year {
  font-family: "Fraunces", serif;
  font-size: 22px;
  color: #EFE7D6;
}
.preloader .preloader-rule {
  width: 220px;
  height: 2px;
  background: rgba(239, 231, 214, 0.15);
  position: relative;
  overflow: hidden;
}
.preloader .preloader-rule i {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 0%;
  background: #215eac;
  animation: preloader-fill 1.6s ease-in-out infinite;
}
.preloader .preloader-status {
  margin-top: 16px;
  font-family: "IBM Plex Mono", monospace;
  font-size: 11px;
  letter-spacing: 1.5px;
  color: rgba(239, 231, 214, 0.5);
  text-transform: uppercase;
}
.preloader.is-done {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

@keyframes preloader-fill {
  0% {
    width: 0%;
    left: 0;
  }
  50% {
    width: 100%;
    left: 0;
  }
  51% {
    width: 100%;
    left: 0;
  }
  100% {
    width: 0%;
    left: 100%;
  }
}
@media (prefers-reduced-motion: reduce) {
  .preloader-rule i {
    animation: none;
    width: 60%;
  }
}
.masthead {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 99;
  background: rgba(239, 231, 214, 0.96);
  backdrop-filter: blur(4px);
}
.masthead .masthead-rule {
  height: 3px;
  background: #1C1B19;
}
.masthead .masthead-rule.masthead-rule--bottom {
  height: 1px;
  opacity: 0.5;
}
.masthead nav {
  width: 92%;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
}
.masthead nav .logo-wrapper {
  max-width: 190px;
}
.masthead nav .logo-wrapper img {
  width: 100%;
  height: auto;
  display: block;
}
.masthead nav .masthead-dateline {
  font-family: "IBM Plex Mono", monospace;
  font-size: 11px;
  letter-spacing: 1.5px;
  color: rgba(28, 27, 25, 0.55);
}
.masthead nav .masthead-actions {
  display: flex;
  align-items: center;
  gap: 18px;
}

.btn-outline-report {
  font-family: "IBM Plex Mono", monospace;
  font-size: 12px;
  letter-spacing: 0.5px;
  border: 1px solid #1C1B19;
  color: #1C1B19;
  padding: 8px 18px;
  border-radius: 2px;
  transition-duration: 250ms;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.btn-outline-report:hover {
  background: #1C1B19;
  color: #EFE7D6;
}

.navbar-toggler {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(28, 27, 25, 0.2);
}
.navbar-toggler .animated-icon3 span {
  background: #1C1B19;
  display: block;
  height: 2px;
  width: 20px;
  margin: 3px auto;
  border-radius: 2px;
}

.modal-content {
  background: #EFE7D6;
  border: none;
  border-radius: 0;
}

.close {
  cursor: pointer;
  text-align: right;
  display: block;
  padding: 20px 30px 0 0;
  font-family: "IBM Plex Mono", monospace;
  font-size: 13px;
  letter-spacing: 1px;
  color: #1C1B19;
}

.frame-kicker {
  font-family: "IBM Plex Mono", monospace;
  font-size: 12px;
  letter-spacing: 2px;
  color: #215eac;
  text-transform: uppercase;
}

.modal-body {
  padding: 10px 40px 50px;
}
.modal-body h1 {
  font-family: "Fraunces", serif;
  font-weight: 600;
  color: #1C1B19;
}
.modal-body .frame {
  border-top: 1px solid rgba(28, 27, 25, 0.2);
  padding-top: 10px;
}
.modal-body .frame ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.modal-body .frame li {
  display: flex;
  align-items: baseline;
  gap: 18px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(28, 27, 25, 0.1);
}
.modal-body .frame li .folio {
  font-family: "IBM Plex Mono", monospace;
  color: rgba(28, 27, 25, 0.4);
  font-size: 13px;
}
.modal-body .frame li a {
  font-family: "Fraunces", serif;
  font-size: 22px;
  color: #1C1B19;
  transition-duration: 200ms;
}
.modal-body .frame li:hover a {
  color: #215eac;
  padding-left: 6px;
}

.btn {
  background: #215eac;
  color: #EFE7D6 !important;
  border-radius: 2px;
  font-family: "IBM Plex Mono", monospace;
  font-size: 13px;
  letter-spacing: 0.5px;
  padding: 12px 26px;
  transition-duration: 250ms;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.btn i {
  transition-duration: 250ms;
}
.btn:hover {
  background: #1C1B19;
}
.btn:hover i {
  transform: translateX(4px);
}
.btn.large-btn {
  padding: 14px 40px;
  margin-top: 10px;
}
.btn.btn-ghost {
  background: transparent;
  border: 1px solid rgba(239, 231, 214, 0.6);
  color: #EFE7D6 !important;
}
.btn.btn-ghost:hover {
  background: rgba(239, 231, 214, 0.12);
}

.buttons {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  padding-top: 10px;
}

.page-wrapper {
  height: 100%;
  display: flex;
  align-items: center;
  position: relative;
  text-align: left;
}
.page-wrapper .content {
  position: relative;
  width: 82%;
  margin: auto;
  z-index: 5;
}

.kicker {
  display: inline-block;
  font-family: "IBM Plex Mono", monospace;
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #215eac;
  margin-bottom: 14px;
}
.kicker.kicker--light {
  color: #B8872B;
}

h2.title {
  font-family: "Fraunces", serif;
  font-weight: 600;
  font-size: 44px;
  color: #1C1B19;
  margin-bottom: 26px;
}
h2.title span {
  font-style: italic;
  font-weight: 500;
  color: #215eac;
}
h2.title.title--light {
  color: #EFE7D6;
}
h2.title.title--light span {
  color: #B8872B;
}

.folio-tab {
  position: absolute;
  top: 110px;
  right: 6%;
  font-family: "IBM Plex Mono", monospace;
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(28, 27, 25, 0.45);
  z-index: 5;
}
.folio-tab.folio-tab--light {
  color: rgba(239, 231, 214, 0.45);
}

.landing-section {
  position: relative;
  overflow: hidden;
  background: #1C1B19;
}
.landing-section .landing-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  opacity: 0.55;
}
.landing-section .landing-scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(28, 27, 25, 0.55) 0%, rgba(28, 27, 25, 0.35) 40%, rgba(28, 27, 25, 0.85) 100%);
}
.landing-section .page-wrapper {
  height: 100vh;
}
.landing-section .landing-content {
  max-width: 720px;
  text-align: center;
  margin: auto;
}
.landing-section .landing-content .kicker {
  color: #B8872B;
}
.landing-section .landing-content .masthead-headline {
  font-family: "Fraunces", serif;
  font-weight: 600;
  font-size: 84px;
  line-height: 1;
  color: #EFE7D6;
  margin-bottom: 26px;
}
.landing-section .landing-content .deck {
  font-size: 19px;
  color: rgba(239, 231, 214, 0.85);
  max-width: 650px;
  margin: 10px auto 20px auto;
}
.landing-section .landing-content .buttons {
  justify-content: center;
}

.scroll-down span {
  position: absolute;
  bottom: 5%;
  left: 50%;
  width: 40px;
  height: 66px;
  margin-left: -20px;
  border: 1px solid rgba(239, 231, 214, 0.6);
  border-radius: 40px;
  z-index: 20;
}
.scroll-down span:before {
  position: absolute;
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  font-size: 18px;
  content: "\f103";
  top: 8px;
  left: 12px;
  color: #EFE7D6;
  animation: sdb 1.4s infinite;
}

@keyframes sdb {
  0% {
    transform: translate(0, 0);
    opacity: 0;
  }
  40% {
    opacity: 1;
  }
  80% {
    transform: translate(0, 20px);
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}
.back-top {
  position: fixed;
  bottom: 3%;
  right: 3%;
  z-index: 20;
  width: 44px;
  height: 44px;
  background: #1C1B19;
  color: #EFE7D6;
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  opacity: 0.6;
  transition-duration: 250ms;
}
.back-top:hover {
  opacity: 1;
  background: #215eac;
}

body.fp-viewing-section1 .back-top {
  display: none;
}

.vision-card {
  background: #E4DAC2;
  border-left: 3px solid #215eac;
  padding: 30px 34px;
}
.vision-card .vision-row {
  padding: 14px 0;
  border-bottom: 1px solid rgba(28, 27, 25, 0.12);
}
.vision-card .vision-row:last-child {
  border-bottom: none;
}
.vision-card .vision-label {
  font-family: "IBM Plex Mono", monospace;
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #215eac;
}
.vision-card p {
  margin: 6px 0 0;
  font-family: "Fraunces", serif;
  font-size: 19px;
}
.vision-card .value-list {
  list-style: none;
  padding: 0;
  margin: 6px 0 0;
}
.vision-card .value-list li {
  font-size: 14px;
  padding: 4px 0;
}
.vision-card .value-list li:before {
  content: "— ";
  color: #215eac;
}

.footprint-country h4 {
  font-family: "Fraunces", serif;
  font-size: 20px;
  color: #215eac;
  border-bottom: 2px solid #1C1B19;
  padding-bottom: 8px;
  margin-bottom: 14px;
}
.footprint-country ul {
  list-style: none;
  padding: 0;
}
.footprint-country li {
  font-size: 14px;
  padding: 6px 0;
  border-bottom: 1px dotted rgba(28, 27, 25, 0.25);
}

.digital-stats {
  margin-top: 20px;
}
.digital-stats .dstat {
  text-align: center;
  padding: 20px 10px;
  border: 1px solid rgba(28, 27, 25, 0.15);
  margin-bottom: 14px;
}
.digital-stats .dstat h3 {
  font-family: "Fraunces", serif;
  color: #215eac;
  font-size: 30px;
  margin-bottom: 4px;
}
.digital-stats .dstat p {
  font-family: "IBM Plex Mono", monospace;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin: 0;
}
.digital-stats .dstat.dstat--total {
  background: #1C1B19;
  border-color: #1C1B19;
}
.digital-stats .dstat.dstat--total h3 {
  color: #B8872B;
}
.digital-stats .dstat.dstat--total p {
  color: #EFE7D6;
}

.performance-section {
  background: #12253A;
}
.performance-section .stat-grid {
  margin-top: 10px;
}
.performance-section .sbox {
  padding: 22px 16px;
  border: 1px solid rgba(239, 231, 214, 0.15);
  margin-bottom: 16px;
  text-align: center;
}
.performance-section .sbox h2 {
  font-family: "Fraunces", serif;
  font-size: 32px;
  color: #B8872B;
  margin-bottom: 6px;
}
.performance-section .sbox h4 {
  font-family: "IBM Plex Mono", monospace;
  font-size: 11px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: rgba(239, 231, 214, 0.8);
  font-weight: 500;
}

.monogram {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #1C1B19;
  color: #EFE7D6;
  font-family: "Fraunces", serif;
  font-size: 18px;
  margin-bottom: 14px;
}
.monogram.monogram--lg {
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
  border-radius: 0;
  font-size: 46px;
  display: none;
}

.board-card {
  padding: 24px;
  border: 1px solid rgba(28, 27, 25, 0.15);
}
.board-card.board-card--chair h3 {
  font-family: "Fraunces", serif;
  font-size: 22px;
  margin: 0 0 4px;
}
.board-card p {
  font-family: "IBM Plex Mono", monospace;
  font-size: 12px;
  margin: 0;
  color: rgba(28, 27, 25, 0.6);
}

.board-lead {
  margin-bottom: 24px;
}

.board-list {
  list-style: none;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 10px 26px;
}
.board-list li {
  font-family: "Fraunces", serif;
  font-size: 16px;
}
.board-list li span {
  color: #215eac;
  font-weight: 600;
}

.board-note {
  margin-top: 20px;
  font-family: "IBM Plex Mono", monospace;
  font-size: 12px;
  color: rgba(28, 27, 25, 0.55);
}

.statements {
  background: #12253A;
  color: #EFE7D6;
}
.statements p {
  color: rgba(239, 231, 214, 0.88);
  font-size: 17px;
}
.statements .page-wrapper {
  width: 84%;
  margin: auto;
  height: auto;
}
.statements .prof-pic .img-wrapper {
  position: relative;
  width: 78%;
  margin: auto;
  aspect-ratio: 3/4;
  background: #1C3A57;
  border: 1px solid rgba(239, 231, 214, 0.2);
  overflow: hidden;
}
.statements .prof-pic .img-wrapper img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
.statements .prof-pic .img-wrapper.img-fallback .monogram--lg {
  display: flex;
}

.exec-grid {
  margin-top: 10px;
}

.exec-card {
  padding: 18px 10px;
  text-align: center;
  margin-bottom: 24px;
}
.exec-card h4 {
  font-family: "Fraunces", serif;
  font-size: 16px;
  margin: 0 0 4px;
}
.exec-card p {
  font-family: "IBM Plex Mono", monospace;
  font-size: 11px;
  color: rgba(28, 27, 25, 0.6);
  margin: 0;
}

.esg-section {
  background: #12253A;
}
.esg-section .esg-lead {
  color: rgba(239, 231, 214, 0.88);
  font-size: 18px;
  max-width: 820px;
}
.esg-section .pillar {
  text-align: center;
  padding: 30px 18px;
  border: 1px solid rgba(239, 231, 214, 0.15);
  margin-bottom: 20px;
}
.esg-section .pillar i {
  font-size: 26px;
  color: #B8872B;
  margin-bottom: 14px;
}
.esg-section .pillar h4 {
  font-family: "Fraunces", serif;
  color: #EFE7D6;
  margin-bottom: 8px;
}
.esg-section .pillar p {
  color: rgba(239, 231, 214, 0.75);
  font-size: 14px;
  margin: 0;
}

@media (max-width: 991px) {
  .masthead-headline {
    font-size: 56px !important;
  }
  h2.title {
    font-size: 32px;
  }
  .page-wrapper .content {
    width: 90%;
  }
  .folio-tab {
    top: 90px;
    right: 5%;
  }
}
@media (max-width: 767px) {
  .masthead-headline {
    font-size: 40px !important;
  }
  .landing-content .deck {
    font-size: 16px;
  }
  .buttons {
    flex-direction: column;
  }
  .digital-stats .dstat {
    margin-bottom: 12px;
  }
  .statements .page-wrapper {
    width: 90%;
  }
  .prof-pic {
    margin-bottom: 20px;
  }
}/*# sourceMappingURL=style.css.map */