@charset "UTF-8";
/******************************************************************
Site Name:
Author:

Stylesheet: Variables

Here is where we declare all our variables like colors, fonts,
base values, and defaults. We want to make sure this file ONLY
contains variables that way our files don't get all messy.
No one likes a mess.

******************************************************************/
/*********************
COLORS
Need help w/ choosing your colors? Try this site out:
http://0to255.com/
*********************/
/* per E */
/* per E */
/* per E */
/*
Here's a great tutorial on how to
use color variables properly:
http://sachagreif.com/sass-color-variables/
*/
:root {
  --theme-colour-navy: #0A1F2E;
  --theme-colour-darkblue: #1f638A;
  --theme-colour-green: #26A3A5;
  --theme-colour-stream: #3099d5;
  --theme-colour-brand-green: #0B726E;
  --theme-colour-yellow: #D79D12;
  --theme-colour-white: #ffffff;
  --theme-colour-black: #404040;
  --theme-colour-offwhite: #F8F8F8;
  --theme-colour-muted: #878785;
  --theme-colour-beige: #f5f0e8;
}

.bg-navy {
  background-color: var(--theme-colour-navy);
}

.text-navy {
  color: var(--theme-colour-navy);
}

.theme-colour--navy {
  --impact-card-colour: var(--theme-colour-navy);
}

.bg-darkblue {
  background-color: var(--theme-colour-darkblue);
}

.text-darkblue {
  color: var(--theme-colour-darkblue);
}

.theme-colour--darkblue {
  --impact-card-colour: var(--theme-colour-darkblue);
}

.bg-green {
  background-color: var(--theme-colour-green);
}

.text-green {
  color: var(--theme-colour-green);
}

.theme-colour--green {
  --impact-card-colour: var(--theme-colour-green);
}

.bg-stream {
  background-color: var(--theme-colour-stream);
}

.text-stream {
  color: var(--theme-colour-stream);
}

.theme-colour--stream {
  --impact-card-colour: var(--theme-colour-stream);
}

.bg-brand-green {
  background-color: var(--theme-colour-brand-green);
}

.text-brand-green {
  color: var(--theme-colour-brand-green);
}

.theme-colour--brand-green {
  --impact-card-colour: var(--theme-colour-brand-green);
}

.bg-yellow {
  background-color: var(--theme-colour-yellow);
}

.text-yellow {
  color: var(--theme-colour-yellow);
}

.theme-colour--yellow {
  --impact-card-colour: var(--theme-colour-yellow);
}

.text-white {
  color: #ffffff;
}

.text-offwhite {
  color: #F8F8F8;
}

.bg-blue {
  background-color: var(--theme-colour-navy);
}

/******************************************************************
Site Name:
Author:

Stylesheet: Typography

Need to import a font or set of icons for your site? Drop them in
here or just use this to establish your typographical grid. Or not.
Do whatever you want to...GOSH!

Helpful Articles:
http://trentwalton.com/2012/06/19/fluid-type/
http://ia.net/blog/responsive-typography-the-basics/
http://alistapart.com/column/responsive-typography-is-a-physical-discipline

******************************************************************/
/*
The following is based of Typebase:
https://github.com/devinhunt/typebase.css
I've edited it a bit, but it's a nice starting point.
*/
.hero-updated {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
}
.hero-updated__left {
  width: 50%;
  padding: 100px 55px;
}
@media (max-width: 768px) {
  .hero-updated__left {
    width: 100%;
    padding: 48px 24px;
  }
}
.hero-updated__left.bg-blue, .hero-updated__left.bg-navy {
  background-color: var(--theme-colour-navy);
}
.hero-updated__top-title {
  color: #ffffff;
  margin: 0 0 30px;
  font-family: "Oswald", sans-serif;
  font-size: clamp(1.125rem, 2vw, 1.5rem);
  font-weight: 400;
  text-transform: uppercase;
  opacity: 0.5;
}
.hero-updated__title {
  color: #ffffff;
  margin: 0 0 20px;
  font-family: "Oswald", sans-serif;
  font-size: clamp(2.5rem, 5vw, 3.75rem);
  line-height: 1.07;
  font-weight: 400;
  text-transform: uppercase;
}
.hero-updated__content {
  color: #ffffff;
  margin: 0;
  font-size: clamp(1.125rem, 2vw, 1.875rem);
  line-height: 1.35;
}
.hero-updated__right {
  position: relative;
  width: 50%;
}
@media (max-width: 768px) {
  .hero-updated__right {
    width: 100%;
  }
}
.hero-updated__image {
  display: block;
  height: 100%;
  width: 100%;
  object-fit: cover;
  aspect-ratio: 7/4;
}
.hero-updated__caption {
  background-color: rgba(0, 0, 0, 0.3803921569);
  color: #ffffff;
  font-size: 1rem;
  line-height: 1.4;
  margin: 0;
  border-radius: 3px;
  padding: 6px 12px;
  position: absolute;
  bottom: 20px;
  left: 20px;
  max-width: calc(100% - 40px);
}

@media only screen and (min-width: 1240px) {
  .impact.section {
    padding: 60px;
  }
}
.impact__content {
  margin-bottom: 35px;
}
.impact__items {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  width: 100%;
}
@media (max-width: 992px) {
  .impact__items {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 768px) {
  .impact__items {
    grid-template-columns: minmax(0, 1fr);
  }
}
.impact__item {
  background-color: #ffffff;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  min-height: 320px;
  padding: 0;
  border: 1px solid #E5E5E5;
  border-radius: 10px;
  overflow: hidden;
}
.impact__item.impact-card {
  padding: 0;
}
.impact__item .impact-bars {
  padding: 0 20px 20px;
  width: 100%;
}

.two-columns-section {
  display: flex;
  flex-direction: column;
  gap: 40px;
  padding: 60px 24px;
  width: 100%;
}
@media (min-width: 1240px) {
  .two-columns-section {
    padding: 80px 55px;
  }
}
.two-columns-section__top-text {
  width: 100%;
}
.two-columns-section__section-title {
  margin: 0;
  width: 100%;
}
.two-columns-section > .two-columns {
  width: 100%;
}
.two-columns-section > .two-columns .left-column__image {
  width: 100%;
}
.two-columns-section > .two-columns .left-column__image-el {
  aspect-ratio: 6/5;
  display: block;
  height: auto;
  object-fit: cover;
  width: 100%;
}
.two-columns-section__rows {
  display: flex;
  flex-direction: column;
  gap: 40px;
  width: 100%;
}
.two-columns-section__divider {
  border: 0;
  border-top: 1px solid rgba(0, 0, 0, 0.15);
  margin: 0;
  width: 100%;
}

.two-columns {
  display: grid;
  gap: 24px;
  grid-template-columns: minmax(0, 1fr);
  width: 100%;
}
@media (min-width: 768px) {
  .two-columns {
    column-gap: 100px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    row-gap: 20px;
  }
}
.two-columns--stacked-row {
  align-items: center;
}
@media (min-width: 768px) {
  .two-columns--stacked-row {
    grid-template-columns: minmax(0, 2fr) minmax(0, 3fr);
  }
}
.two-columns > .impact-eyebrow {
  grid-column: 1/-1;
}
.two-columns .left-column,
.two-columns .right-column {
  display: flex;
  flex-direction: column;
  min-width: 0;
  padding: 0;
  width: 100%;
}
.two-columns blockquote {
  border-left: 6px solid #3099d5;
  color: #3099d5;
  padding: 1px 18px;
  margin: 40px 0;
  font-weight: 700;
}
.two-columns blockquote cite {
  font-weight: normal;
}
.two-columns .left-column__title {
  margin-bottom: 34px;
}
.two-columns .left-column__stat-bar {
  align-items: center;
  border-radius: 10px;
  color: #ffffff;
  display: flex;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.35;
  margin-top: 2rem;
  min-height: 48px;
  padding: 14px 16px 14px 50px;
  position: relative;
  width: 100%;
}
.two-columns .left-column__stat-bar.bg-navy {
  background-color: var(--theme-colour-navy);
}
.two-columns .left-column__stat-bar.bg-darkblue {
  background-color: var(--theme-colour-darkblue);
}
.two-columns .left-column__stat-bar.bg-green {
  background-color: var(--theme-colour-green);
}
.two-columns .left-column__stat-bar.bg-stream {
  background-color: var(--theme-colour-stream);
}
.two-columns .left-column__stat-bar.bg-brand-green {
  background-color: var(--theme-colour-brand-green);
}
.two-columns .left-column__stat-bar.bg-yellow {
  background-color: var(--theme-colour-yellow);
}
.two-columns .left-column__stat-bar:before {
  background-color: #ffffff;
  content: "";
  height: 20px;
  left: 16px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 20px;
}
.two-columns .left-column__stats {
  display: flex;
  flex-direction: column;
  gap: 24px;
  width: 100%;
}
.two-columns .left-column__stat {
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 100%;
}
.two-columns .left-column__stat-label {
  line-height: 1.2;
  margin: 0;
  display: inline-block;
}
.two-columns .left-column__stat-label.bg-navy {
  font-size: 1rem;
  text-transform: uppercase;
  text-align: center;
  border-radius: 10px;
  padding: 12px;
  max-width: 270px;
  width: 100%;
  background-color: var(--theme-colour-navy);
  color: #ffffff;
}
.two-columns .left-column__stat-label.bg-darkblue {
  font-size: 1rem;
  text-transform: uppercase;
  text-align: center;
  border-radius: 10px;
  padding: 12px;
  max-width: 270px;
  width: 100%;
  background-color: var(--theme-colour-darkblue);
  color: #ffffff;
}
.two-columns .left-column__stat-label.bg-green {
  font-size: 1rem;
  text-transform: uppercase;
  text-align: center;
  border-radius: 10px;
  padding: 12px;
  max-width: 270px;
  width: 100%;
  background-color: var(--theme-colour-green);
  color: #ffffff;
}
.two-columns .left-column__stat-label.bg-stream {
  font-size: 1rem;
  text-transform: uppercase;
  text-align: center;
  border-radius: 10px;
  padding: 12px;
  max-width: 270px;
  width: 100%;
  background-color: var(--theme-colour-stream);
  color: #ffffff;
}
.two-columns .left-column__stat-label.bg-brand-green {
  font-size: 1rem;
  text-transform: uppercase;
  text-align: center;
  border-radius: 10px;
  padding: 12px;
  max-width: 270px;
  width: 100%;
  background-color: var(--theme-colour-brand-green);
  color: #ffffff;
}
.two-columns .left-column__stat-label.bg-yellow {
  font-size: 1rem;
  text-transform: uppercase;
  text-align: center;
  border-radius: 10px;
  padding: 12px;
  max-width: 270px;
  width: 100%;
  background-color: var(--theme-colour-yellow);
  color: #ffffff;
}
.two-columns .left-column__learn-more {
  color: rgba(0, 0, 0, 0.5);
  font-family: "Oswald", sans-serif;
  font-size: 18px;
  font-weight: 400;
  margin-top: 42px;
  margin-bottom: 18px;
  opacity: 0.5;
  text-transform: uppercase;
}
.two-columns .left-column__content {
  color: #404040;
}
.two-columns .left-column__read-more {
  margin-top: 1rem;
  width: 100%;
}
.two-columns .left-column__read-more[open] {
  display: flex;
  flex-direction: column-reverse;
  align-items: flex-start;
  gap: 1rem;
}
.two-columns .left-column__read-more-toggle {
  background-color: transparent;
  border: 1px solid #1f638A;
  border-radius: 10px;
  color: #1f638A;
  cursor: pointer;
  display: inline-block;
  line-height: 1.4;
  list-style: none;
  margin: 0;
  padding: 10px 24px;
  transition: background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease;
  width: fit-content;
}
.two-columns .left-column__read-more-toggle:hover {
  background-color: #1f638A;
  color: #ffffff;
}
.two-columns .left-column__read-more-toggle::-webkit-details-marker {
  display: none;
}
.two-columns .left-column__read-more-toggle::marker {
  content: "";
}
.two-columns .left-column__read-more-toggle::after {
  color: currentColor;
  content: "∨";
  display: inline;
  margin-left: 0.25em;
  font-weight: 700;
}
.two-columns .left-column__read-more-label--less {
  display: none;
}
.two-columns .left-column__read-more[open] .left-column__read-more-toggle {
  background-color: #1f638A;
  color: #ffffff;
}
.two-columns .left-column__read-more[open] .left-column__read-more-toggle::after {
  content: "∧";
}
.two-columns .left-column__read-more[open] .left-column__read-more-label--more {
  display: none;
}
.two-columns .left-column__read-more[open] .left-column__read-more-label--less {
  display: inline;
}
.two-columns .left-column__read-more-content {
  color: #404040;
}
.two-columns .left-column__read-more-content > :last-child {
  margin-bottom: 0;
}
.two-columns .left-column__link {
  border-radius: 10px;
  color: #ffffff;
  display: inline-block;
  font-size: 14px;
  padding: 10px 24px;
  margin-bottom: 8px;
  margin-right: 8px;
  border: 1px solid currentColor;
}
.two-columns .left-column__link:first-of-type {
  background-color: #0B726E;
}
.two-columns .left-column__link:first-of-type:hover {
  background-color: #ffffff;
  color: #0B726E;
  border: 1px solid #0B726E;
}
.two-columns .left-column__link:nth-of-type(2) {
  background-color: #1f638A;
}
.two-columns .left-column__link:nth-of-type(2):hover {
  background-color: #ffffff;
  color: #1f638A;
  border: 1px solid #1f638A;
}
.two-columns .left-column__link:nth-of-type(3) {
  background-color: #3099D5;
}
.two-columns .left-column__link:nth-of-type(3):hover {
  background-color: #ffffff;
  color: #3099D5;
  border: 1px solid #3099D5;
}
.two-columns .left-column__quote {
  border-left: 6px solid #3099d5;
  color: #3099d5;
  padding-left: 18px;
}
.two-columns .left-column__image {
  margin-top: 24px;
  width: 100%;
  border-radius: 10px;
  overflow: hidden;
}
.two-columns .left-column__image-el {
  aspect-ratio: 6/4;
  display: block;
  height: auto;
  max-width: 100%;
  width: 100%;
}
.two-columns .right-column__links {
  display: flex;
  flex-direction: column;
  gap: 8px;
  width: 100%;
}
.two-columns .right-column__links .left-column__link {
  font-size: 1.2rem;
  text-align: center;
  width: 100%;
}
.two-columns .right-column__video {
  max-width: 100%;
  width: 100%;
}
.two-columns .right-column__video--facade {
  border-radius: 10px;
  overflow: hidden;
  width: 100%;
}
.two-columns .right-column__video-poster {
  background: none;
  border: 0;
  border-radius: 10px;
  cursor: pointer;
  display: block;
  overflow: hidden;
  padding: 0;
  position: relative;
  width: 100%;
}
.two-columns .right-column__video-poster-image {
  border-radius: 10px;
  display: block;
  height: auto;
  width: 100%;
}
.two-columns .right-column__video-play {
  display: block;
  height: 60px;
  left: 50%;
  pointer-events: none;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 60px;
}
.two-columns .right-column__video-poster:hover .right-column__video-play, .two-columns .right-column__video-poster:focus-visible .right-column__video-play {
  transform: translate(-50%, -50%) scale(1.05);
}
.two-columns .right-column__video-embed-wrap {
  aspect-ratio: 16/9;
  border-radius: 10px;
  overflow: hidden;
  position: relative;
  width: 100%;
}
.two-columns .right-column__video-embed-wrap iframe {
  border: 0;
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
}
.two-columns .right-column__image {
  width: 100%;
  border-radius: 10px;
  overflow: hidden;
}
.two-columns .right-column__logos {
  align-items: center;
  display: flex;
  justify-content: center;
  width: 100%;
}
.two-columns .right-column__logos-el {
  display: block;
  height: auto;
  margin: 0 auto;
  max-width: 100%;
  object-fit: contain;
  width: 100%;
}
.two-columns .right-column__panel {
  background-color: #ffffff;
  border-radius: 10px;
  border: 1px solid #E5E5E5;
  padding: 24px;
  width: 100%;
}
.two-columns .right-column__image-el {
  display: block;
  height: auto;
  margin: 0;
  object-fit: contain;
  width: auto;
}
.two-columns .right-column__content {
  color: #404040;
  font-size: 1rem;
  line-height: 1.5;
}
.two-columns .right-column__content > :last-child {
  margin-bottom: 0;
}
.impact-integrity .two-columns .two-columns-stats__bar {
  margin-top: 2rem;
}
.impact-integrity .two-columns .right-column__panel {
  overflow: visible;
  padding: 30px;
}
@media (min-width: 768px) {
  .impact-integrity .two-columns .right-column__panel {
    padding: 50px 60px;
  }
}
.impact-integrity .two-columns .right-column__panel .left-column__stats {
  gap: 40px;
}
.impact-integrity .two-columns .right-column__panel .left-column__stat {
  display: grid;
  gap: 16px;
  grid-template-columns: minmax(0, 1fr);
  grid-template-rows: auto auto;
}
.impact-integrity .two-columns .right-column__panel .left-column__stat::before {
  align-self: center;
  border-top: 1px solid rgba(0, 0, 0, 0.25);
  content: "";
  grid-column: 1;
  grid-row: 1;
  margin-left: -30px;
  margin-right: -30px;
  width: calc(100% + 60px);
  z-index: 0;
}
@media (min-width: 768px) {
  .impact-integrity .two-columns .right-column__panel .left-column__stat::before {
    margin-left: -60px;
    margin-right: -60px;
    width: calc(100% + 120px);
  }
}
.impact-integrity .two-columns .right-column__panel .left-column__stat-label {
  grid-column: 1;
  grid-row: 1;
  justify-self: start;
  position: relative;
  z-index: 1;
}
.impact-integrity .two-columns .right-column__panel .left-column__content {
  grid-column: 1;
  grid-row: 2;
  margin: 0;
}

.map {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.map__title, .map__text {
  margin: 0;
}
.map__map {
  background-color: #ffffff;
  border-radius: 10px;
  overflow: hidden;
  position: relative;
  width: 100%;
  aspect-ratio: 981/511;
}
@media (max-width: 768px) {
  .map__map {
    display: none;
  }
}
.map__map .impact-map,
.map__map .impact-map__stage {
  height: 100%;
  width: 100%;
}
.map__map .impact-map__mount {
  position: absolute;
  inset: 0;
}
.map__map .impact-map__portfolio-legend {
  z-index: 3;
}
.map__map .impact-map-preview {
  z-index: 4;
}
.map__ctas {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 30px;
}
@media (min-width: 768px) {
  .map__ctas {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (min-width: 1240px) {
  .map__ctas {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}
.map__cta {
  background-color: #ffffff;
  border-radius: 10px;
  opacity: 90%;
  padding: 12px 16px;
  width: auto;
  margin: 0;
}
.map__cta-title {
  color: #1f638A;
  font-weight: 900;
  margin: 0 0 7px;
}

.country__accordions {
  display: none;
  background-color: var(--theme-colour-brand-green);
}
@media (max-width: 768px) {
  .country__accordions {
    display: flex;
    width: 100%;
    flex-wrap: wrap;
    align-items: flex-start;
    flex-direction: column;
    padding: 0 30px 30px;
    gap: 12px;
  }
}
.country__accordion {
  width: 100%;
  border-radius: 10px;
  background-color: #ffffff;
  overflow: hidden;
}
.country__accordion-title {
  margin: 0;
}
.country__accordion-content[hidden] {
  display: none;
}
.country__accordion-button {
  appearance: none;
  background-color: transparent;
  border: 0;
  cursor: pointer;
  text-align: left;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 18px;
  font-family: "Oswald", sans-serif;
  font-size: clamp(1rem, 2vw, 1.125rem);
  color: #1f638A;
}
.country__accordion-button:focus-visible {
  outline: 3px solid #ffffff;
  outline-offset: -3px;
}
.country__accordion-count {
  font-family: "Lato", sans-serif;
  font-size: 0.8125rem;
  color: #878785;
  white-space: nowrap;
}
.country__accordion-summary {
  margin: 0 0 12px;
  padding: 0 18px;
  font-size: 0.875rem;
  line-height: 1.45;
  color: #404040;
}
.country__outline-key {
  margin: 0 18px 16px;
}
.country__companies {
  margin: 0;
  padding: 0 12px 16px;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.country__company-link {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 6px;
  border-radius: 8px;
}
.country__company-link:hover, .country__company-link:focus-visible {
  background-color: #F8F8F8;
}
.country__company-logo, .country__company-placeholder {
  flex: 0 0 40px;
  width: 40px;
  height: 40px;
  border-radius: 8px;
  object-fit: contain;
  background: #ffffff;
}
.country__company-placeholder {
  display: grid;
  place-items: center;
  font-family: "Oswald", sans-serif;
  font-size: 0.9375rem;
  background: #F8F8F8;
}
.country__company-name {
  font-weight: 700;
  position: relative;
  width: 100%;
}
.country__company-name.successful_exit::before {
  font-size: 0.5rem;
  right: 0;
  top: 0;
  font-weight: normal;
}

.full-width-image {
  margin: 0;
  position: relative;
  width: 100%;
  aspect-ratio: 7/4;
  overflow: hidden;
}
@media (min-width: 768px) {
  .full-width-image {
    aspect-ratio: 14/5;
  }
}
.full-width-image__image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.full-width-image__caption {
  background-color: rgba(0, 0, 0, 0.3803921569);
  color: #ffffff;
  font-size: 1rem;
  line-height: 1.4;
  margin: 0;
  border-radius: 3px;
  padding: 6px 12px;
  position: absolute;
  bottom: 20px;
  left: 20px;
  max-width: calc(100% - 40px);
}

.two-columns-stats {
  display: flex;
  flex-direction: column;
  gap: 40px;
  padding: 60px 24px;
  width: 100%;
}
@media (min-width: 1240px) {
  .two-columns-stats {
    padding: 80px 55px;
  }
}
.two-columns-stats__header {
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 100%;
  width: 100%;
}
.two-columns-stats__intro {
  color: #404040;
  font-size: 1rem;
  line-height: 1.5;
  margin: 0;
  max-width: 100%;
}
.two-columns-stats__intro > :last-child {
  margin-bottom: 0;
}
.two-columns-stats__cards {
  display: grid;
  gap: 24px;
  grid-template-columns: minmax(0, 1fr);
  width: 100%;
}
@media (min-width: 768px) {
  .two-columns-stats__cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (min-width: 992px) {
  .two-columns-stats__cards {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
.two-columns-stats__cards--stacked {
  grid-template-columns: minmax(0, 1fr);
}
.two-columns-stats__card {
  border-radius: 10px;
  color: #ffffff;
  display: flex;
  flex-direction: column;
  gap: 8px;
  justify-content: flex-end;
  padding: 20px;
}
.two-columns-stats__card.bg-navy {
  background-color: var(--theme-colour-navy);
}
.two-columns-stats__card.bg-darkblue {
  background-color: var(--theme-colour-darkblue);
}
.two-columns-stats__card.bg-green {
  background-color: var(--theme-colour-green);
}
.two-columns-stats__card.bg-stream {
  background-color: var(--theme-colour-stream);
}
.two-columns-stats__card.bg-brand-green {
  background-color: var(--theme-colour-brand-green);
}
.two-columns-stats__card.bg-yellow {
  background-color: var(--theme-colour-yellow);
}
.two-columns-stats__card-value {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 900;
  line-height: 1.15;
  margin: 0;
}
.two-columns-stats__card-label {
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.35;
  margin: 0;
  opacity: 0.95;
}
.two-columns-stats__bars-block {
  display: flex;
  flex-direction: column;
  gap: 24px;
  width: 100%;
}
.two-columns-stats__bars {
  display: flex;
  flex-direction: column;
  gap: 24px;
  width: 100%;
}
.two-columns-stats__bar {
  align-items: center;
  background-color: var(--theme-colour-green);
  border-radius: 10px;
  color: #ffffff;
  display: flex;
  gap: 24px;
  min-height: 48px;
  padding: 24px;
  width: 100%;
}
.two-columns-stats__bar.bg-navy {
  background-color: var(--theme-colour-navy);
}
.two-columns-stats__bar.bg-darkblue {
  background-color: var(--theme-colour-darkblue);
}
.two-columns-stats__bar.bg-green {
  background-color: var(--theme-colour-green);
}
.two-columns-stats__bar.bg-stream {
  background-color: var(--theme-colour-stream);
}
.two-columns-stats__bar.bg-brand-green {
  background-color: var(--theme-colour-brand-green);
}
.two-columns-stats__bar.bg-yellow {
  background-color: var(--theme-colour-yellow);
}
.two-columns-stats__bar-value {
  flex-shrink: 0;
  font-size: 30px;
  font-weight: 900;
  line-height: 1.15;
  margin: 0;
}
.two-columns-stats__bar-text {
  color: #ffffff;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.35;
  margin: 0;
}
.two-columns-stats__divider {
  border: 0;
  border-top: 2px solid var(--theme-colour-stream);
  margin: 0;
  width: 100%;
}

.two-columns-small-stats {
  display: flex;
  flex-direction: column;
  gap: 60px;
  padding: 60px 24px;
  width: 100%;
}
@media (min-width: 1240px) {
  .two-columns-small-stats {
    gap: 80px;
    padding: 80px 55px;
  }
}
.two-columns-small-stats:has(.two-columns-small-stats__financial) {
  padding-bottom: 0;
}
.two-columns-small-stats__pillar {
  width: 100%;
}
.two-columns-small-stats__impact {
  display: flex;
  flex-direction: column;
  gap: 40px;
  width: 100%;
}
.two-columns-small-stats__impact-intro {
  display: flex;
  flex-direction: column;
  gap: 24px;
  width: 100%;
}
@media (min-width: 992px) {
  .two-columns-small-stats__impact-intro {
    flex-direction: row;
    gap: 40px;
  }
}
@media (min-width: 992px) {
  .two-columns-small-stats__impact-intro > :only-child {
    width: 100%;
  }
}
.two-columns-small-stats__impact-copy {
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 100%;
}
@media (min-width: 992px) {
  .two-columns-small-stats__impact-copy {
    flex: 0 0 50%;
    width: 50%;
  }
}
.two-columns-small-stats__impact-text {
  color: #ffffff;
  line-height: 1.5;
  margin: 0;
}
.two-columns-small-stats__impact-stat-pill {
  background-color: #ffffff;
  border-radius: 10px;
  color: #404040;
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin: 0;
  padding: 20px 24px;
  width: 100%;
}
@media (min-width: 992px) {
  .two-columns-small-stats__impact-stat-pill {
    width: 50%;
  }
}
.two-columns-small-stats__impact-stat-value {
  color: #1f638A;
  font-size: 30px;
  font-weight: 900;
  line-height: 1.15;
  margin: 0;
}
.two-columns-small-stats__impact-stat-text {
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.35;
  margin: 0;
}
.two-columns-small-stats__cards {
  display: grid;
  gap: 24px;
  grid-template-columns: minmax(0, 1fr);
  width: 100%;
}
@media (min-width: 768px) {
  .two-columns-small-stats__cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (min-width: 992px) {
  .two-columns-small-stats__cards {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
.two-columns-small-stats__card {
  border-radius: 10px;
  box-shadow: 0 0 0 0.5px #D9D9D9;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  width: 100%;
}
.two-columns-small-stats__card-media {
  aspect-ratio: 410/170;
  background-color: #D9D9D9;
  overflow: hidden;
  width: 100%;
}
.two-columns-small-stats__card-image {
  display: block;
  height: 100%;
  object-fit: cover;
  width: 100%;
}
.two-columns-small-stats__card-body {
  background-color: rgba(255, 255, 255, 0.2);
  display: flex;
  flex: 1;
  flex-direction: column;
  gap: 12px;
  padding: 20px;
}
.two-columns-small-stats__card-title {
  color: #ffffff;
}
.two-columns-small-stats__card-highlight {
  color: #ffffff;
  font-family: "Lato", sans-serif;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.35;
  margin: 0;
}
.two-columns-small-stats__card-summary {
  color: #ffffff;
  font-size: 1rem;
  line-height: 1.5;
  margin: 0;
}
.two-columns-small-stats__expand-toggle {
  color: #ffffff;
  cursor: pointer;
  font-size: 1rem;
  font-style: italic;
  line-height: 1.4;
  list-style: none;
  margin: 0;
  width: fit-content;
}
.two-columns-small-stats__expand-toggle::-webkit-details-marker {
  display: none;
}
.two-columns-small-stats__expand-toggle::marker {
  content: "";
}
.two-columns-small-stats__expand-content {
  color: #ffffff;
  font-size: 1rem;
  line-height: 1.5;
  margin-top: 12px;
}
.two-columns-small-stats__divider {
  border: 0;
  border-top: 2px solid #ffffff;
  margin: 0;
  width: 100%;
}
.two-columns-small-stats__financial {
  background-color: #ffffff;
  display: grid;
  gap: 24px;
  grid-template-columns: minmax(0, 1fr);
  margin-left: -24px;
  margin-right: -24px;
  padding: 60px 24px;
  width: calc(100% + 48px);
}
@media (min-width: 992px) {
  .two-columns-small-stats__financial {
    column-gap: 40px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (min-width: 1240px) {
  .two-columns-small-stats__financial {
    margin-left: -55px;
    margin-right: -55px;
    padding: 80px 55px;
    width: calc(100% + 110px);
  }
}
.two-columns-small-stats__financial-copy {
  display: flex;
  flex-direction: column;
  gap: 24px;
  width: 100%;
}
.two-columns-small-stats__financial-heading {
  color: #404040;
  margin: 0;
  width: 100%;
}
.two-columns-small-stats__financial-intro {
  color: #404040;
  font-size: 1rem;
  line-height: 1.5;
  margin: 0;
  width: 100%;
}
.two-columns-small-stats__financial-intro > :last-child {
  margin-bottom: 0;
}
.two-columns-small-stats__financial-stats {
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 100%;
}
.two-columns-small-stats__financial-stat {
  background-color: var(--theme-colour-stream);
  border-radius: 10px;
  color: #ffffff;
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 20px 24px;
  width: 100%;
}
.two-columns-small-stats__financial-stat.bg-navy {
  background-color: var(--theme-colour-navy);
}
.two-columns-small-stats__financial-stat.bg-darkblue {
  background-color: var(--theme-colour-darkblue);
}
.two-columns-small-stats__financial-stat.bg-green {
  background-color: var(--theme-colour-green);
}
.two-columns-small-stats__financial-stat.bg-stream {
  background-color: var(--theme-colour-stream);
}
.two-columns-small-stats__financial-stat.bg-brand-green {
  background-color: var(--theme-colour-brand-green);
}
.two-columns-small-stats__financial-stat.bg-yellow {
  background-color: var(--theme-colour-yellow);
}
.two-columns-small-stats__financial-stat-value {
  font-size: 30px;
  font-weight: 900;
  line-height: 1.15;
  margin: 0;
}
.two-columns-small-stats__financial-stat-text {
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.35;
  margin: 0;
}
.two-columns-small-stats__financial-media {
  border-radius: 10px;
  overflow: hidden;
  width: 100%;
}
.two-columns-small-stats__financial-image {
  aspect-ratio: 6/5;
  display: block;
  height: auto;
  object-fit: cover;
  width: 100%;
}

.exit-scenarios {
  --exit-scenario-peek: 10vw;
  width: 100vw;
  max-width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  padding: 0;
  overflow: hidden;
}
.exit-scenarios.section, .exit-scenarios.theme-section {
  padding: 0;
}
.exit-scenarios__header {
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 100%;
  padding: 40px 20px;
  width: 100%;
  background: #F8F8F8;
}
@media (min-width: 1240px) {
  .exit-scenarios__header {
    padding: 60px 55px;
  }
}
.exit-scenarios__heading {
  margin: 0;
}
.exit-scenarios__intro {
  color: #404040;
  font-size: 1rem;
  line-height: 1.5;
  margin: 0;
}
.exit-scenarios__intro > :last-child {
  margin-bottom: 0;
}
.exit-scenarios .slider {
  position: relative;
  width: 100%;
}
.exit-scenarios .slick-list {
  overflow: hidden;
  width: 100%;
}
.exit-scenarios .slick-slide {
  height: auto;
}
.exit-scenarios .slick-slide > div {
  height: 100%;
  width: 100%;
}
.exit-scenarios .exit-scenario__item,
.exit-scenarios .exit-scenario__slide {
  width: 100%;
}
.exit-scenarios .slick-prev,
.exit-scenarios .slick-next {
  z-index: 5;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 50%;
  background: rgba(10, 31, 46, 0.5490196078) url("../images/icon-arrow-right-white.svg") no-repeat center/24px 24px;
  box-shadow: none;
  top: 50%;
  transform: translateY(-50%);
  transition: background-color 180ms ease, border-color 180ms ease;
}
.exit-scenarios .slick-prev::before,
.exit-scenarios .slick-next::before {
  content: none !important;
  display: none !important;
  opacity: 0 !important;
}
.exit-scenarios .slick-prev:hover, .exit-scenarios .slick-prev:focus, .exit-scenarios .slick-prev:focus-visible, .exit-scenarios .slick-prev:active,
.exit-scenarios .slick-next:hover,
.exit-scenarios .slick-next:focus,
.exit-scenarios .slick-next:focus-visible,
.exit-scenarios .slick-next:active {
  background: rgba(38, 163, 165, 0.5) url("../images/icon-arrow-right-white.svg") no-repeat center/24px 24px;
  border-color: rgba(38, 163, 165, 0.8);
  outline: none;
}
.exit-scenarios .slick-prev {
  left: 16px;
  transform: translateY(-50%) rotate(180deg);
}
.exit-scenarios .slick-prev:hover, .exit-scenarios .slick-prev:focus, .exit-scenarios .slick-prev:focus-visible, .exit-scenarios .slick-prev:active {
  transform: translateY(-50%) rotate(180deg);
}
.exit-scenarios .slick-next {
  left: auto;
  right: 16px;
}

.exit-scenario__item {
  height: 100%;
}
.exit-scenario__slide {
  display: grid;
  grid-template-columns: 3fr 2fr;
  align-items: stretch;
  overflow: hidden;
}
.exit-scenario__visual {
  position: relative;
  width: 100%;
  aspect-ratio: 8/5;
  align-self: start;
  overflow: hidden;
  background: #D9D9D9;
}
.exit-scenario__image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.exit-scenario__caption {
  background-color: rgba(0, 0, 0, 0.3803921569);
  color: #ffffff;
  font-size: 1rem;
  line-height: 1.4;
  margin: 0;
  border-radius: 3px;
  padding: 6px 12px;
  position: absolute;
  bottom: 20px;
  left: 20px;
  max-width: calc(100% - 40px);
}
.exit-scenario__panel {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 0;
  padding: 60px 50px;
  background: #0A1F2E;
  color: #ffffff;
}
.exit-scenario__panel-label {
  margin: 0 0 36px;
  color: #26A3A5;
  font-family: "Oswald", sans-serif;
  letter-spacing: 0.08em;
  line-height: 1.3;
  text-transform: uppercase;
}
.exit-scenario__panel-title {
  color: #ffffff;
  margin: 0;
}
.exit-scenario__panel-title::after {
  content: "";
  display: block;
  width: 100%;
  height: 4px;
  margin-top: 20px;
  margin-bottom: 28px;
  background: #26A3A5;
}
.exit-scenario__list {
  margin: 0;
  padding: 0 0 0 1.25rem;
  list-style: disc;
  display: grid;
  gap: 16px;
}
.exit-scenario__list-item {
  font-size: 1rem;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.7);
}
.exit-scenario__list-item strong,
.exit-scenario__list-item b {
  font-weight: 700;
  color: #ffffff;
}
.exit-scenario__list-item p {
  margin: 0;
}

@media (max-width: 992px) {
  .exit-scenario__slide {
    grid-template-columns: 1fr;
  }
  .exit-scenario__panel {
    padding: 32px 24px 40px;
  }
}
@media (min-width: 993px) {
  .exit-scenarios .slick-list {
    overflow: visible;
  }
  .exit-scenarios .slick-slide {
    width: calc(100vw - var(--exit-scenario-peek)) !important;
  }
  .exit-scenarios .slick-prev {
    left: 24px;
  }
  .exit-scenarios .slick-next {
    left: auto;
    right: calc(var(--exit-scenario-peek) + 24px);
  }
}
@media (min-width: 1240px) {
  .exit-scenarios.section,
  .exit-scenarios.theme-section {
    padding: 0;
  }
}
.portfolio-snapshot {
  display: flex;
  flex-direction: column;
  gap: 35px;
  padding: 60px 24px;
  width: 100%;
}
@media (min-width: 1240px) {
  .portfolio-snapshot {
    padding: 80px 55px;
  }
}
.portfolio-snapshot__header {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 900px;
}
.portfolio-snapshot__grid {
  display: grid;
  gap: 24px;
  grid-template-columns: minmax(0, 1fr);
  width: 100%;
}
@media (min-width: 768px) {
  .portfolio-snapshot__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (min-width: 1240px) {
  .portfolio-snapshot__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
.portfolio-snapshot__card {
  background-color: #F8F8F8;
  border-radius: 10px;
  color: inherit;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  text-decoration: none;
  transition: box-shadow 180ms ease, transform 180ms ease;
}
.portfolio-snapshot__card:hover, .portfolio-snapshot__card:focus-visible {
  box-shadow: 0 8px 24px rgba(10, 31, 46, 0.12);
  outline: none;
  transform: translateY(-2px);
}
.portfolio-snapshot__card:hover .portfolio-snapshot__cta, .portfolio-snapshot__card:focus-visible .portfolio-snapshot__cta {
  background-color: #3099d5;
  border-color: #3099d5;
}
.portfolio-snapshot__media {
  aspect-ratio: 410/170;
  background-color: #D9D9D9;
  overflow: hidden;
  width: 100%;
}
.portfolio-snapshot__image {
  display: block;
  height: 100%;
  object-fit: cover;
  width: 100%;
}
.portfolio-snapshot__body {
  align-items: center;
  display: flex;
  gap: 16px;
  justify-content: space-between;
  padding: 20px 20px 22px;
}
.portfolio-snapshot__text {
  display: flex;
  flex: 1;
  flex-direction: column;
  gap: 8px;
  min-width: 0;
}
.portfolio-snapshot__name {
  color: #1f638A;
}
.portfolio-snapshot__summary {
  color: #404040;
  font-size: clamp(0.875rem, 1.5vw, 1rem);
  line-height: 1.4;
  margin: 0;
}
.portfolio-snapshot__cta {
  background: rgba(48, 153, 213, 0.15) url("../images/icon-arrow-right-darkblue.svg") no-repeat center/20px 20px;
  border: 1px solid rgba(48, 153, 213, 0.35);
  border-radius: 50%;
  flex-shrink: 0;
  height: 44px;
  transition: background-color 180ms ease, border-color 180ms ease;
  width: 44px;
}

.theme-section[id],
.hero-updated[id],
.full-width-image[id],
.two-columns-small-stats__financial[id] {
  scroll-margin-top: 0px;
}

.bg-white {
  background-color: #ffffff;
}

.bg-offwhite {
  background-color: #F8F8F8;
}

.theme-section.bg-navy {
  background-color: var(--theme-colour-navy);
}

.theme-section.bg-darkblue {
  background-color: var(--theme-colour-darkblue);
}

.theme-section.bg-green {
  background-color: var(--theme-colour-green);
}

.theme-section.bg-stream {
  background-color: var(--theme-colour-stream);
}

.theme-section.bg-brand-green {
  background-color: var(--theme-colour-brand-green);
}

.theme-section.bg-yellow {
  background-color: var(--theme-colour-yellow);
}

.theme-section--text-light.impact .impact-eyebrow {
  color: rgba(255, 255, 255, 0.5);
}
.theme-section--text-light.impact .impact__heading {
  color: #ffffff;
}
.theme-section--text-light.impact .impact__text {
  color: rgba(255, 255, 255, 0.85);
}
.theme-section--text-light.two-columns .impact-eyebrow:not([class*=text-]), .theme-section--text-light.two-columns-section .impact-eyebrow:not([class*=text-]) {
  color: rgba(255, 255, 255, 0.5);
}
.theme-section--text-light.two-columns .left-column__content,
.theme-section--text-light.two-columns .left-column__stat-label:not([class*=bg-]),
.theme-section--text-light.two-columns .right-column__content,
.theme-section--text-light.two-columns .two-columns-section__section-title:not([class*=text-]),
.theme-section--text-light.two-columns .two-columns-stats__heading,
.theme-section--text-light.two-columns .two-columns-stats__subheading,
.theme-section--text-light.two-columns .two-columns-stats__intro, .theme-section--text-light.two-columns-section .left-column__content,
.theme-section--text-light.two-columns-section .left-column__stat-label:not([class*=bg-]),
.theme-section--text-light.two-columns-section .right-column__content,
.theme-section--text-light.two-columns-section .two-columns-section__section-title:not([class*=text-]),
.theme-section--text-light.two-columns-section .two-columns-stats__heading,
.theme-section--text-light.two-columns-section .two-columns-stats__subheading,
.theme-section--text-light.two-columns-section .two-columns-stats__intro {
  color: #ffffff;
}
.theme-section--text-light.two-columns .left-column__learn-more, .theme-section--text-light.two-columns-section .left-column__learn-more {
  color: rgba(255, 255, 255, 0.5);
}
.theme-section--text-light.two-columns .left-column__read-more-toggle, .theme-section--text-light.two-columns-section .left-column__read-more-toggle {
  border-color: #ffffff;
  color: #ffffff;
}
.theme-section--text-light.two-columns .left-column__read-more-toggle:hover, .theme-section--text-light.two-columns-section .left-column__read-more-toggle:hover {
  background-color: #ffffff;
  border-color: #ffffff;
  color: #1f638A;
}
.theme-section--text-light.two-columns .left-column__read-more[open] .left-column__read-more-toggle, .theme-section--text-light.two-columns-section .left-column__read-more[open] .left-column__read-more-toggle {
  background-color: #ffffff;
  border-color: #ffffff;
  color: #1f638A;
}
.theme-section--text-light.two-columns .two-columns-stats__divider, .theme-section--text-light.two-columns-section .two-columns-stats__divider {
  border-top-color: #ffffff;
}
.theme-section--text-light.two-columns .two-columns-section__divider, .theme-section--text-light.two-columns-section .two-columns-section__divider {
  border-top-color: rgba(255, 255, 255, 0.35);
}
.theme-section--text-light.two-columns-stats .two-columns-stats__heading,
.theme-section--text-light.two-columns-stats .two-columns-stats__subheading,
.theme-section--text-light.two-columns-stats .two-columns-stats__intro,
.theme-section--text-light.two-columns-stats .two-columns-stats__bars-heading,
.theme-section--text-light.two-columns-stats .two-columns-stats__footer-heading {
  color: #ffffff;
}
.theme-section--text-light.two-columns-stats .two-columns-stats__divider {
  border-top-color: rgba(255, 255, 255, 0.2);
}
.theme-section--text-light.two-columns-small-stats .two-columns-small-stats__pillar,
.theme-section--text-light.two-columns-small-stats .two-columns-small-stats__impact-heading,
.theme-section--text-light.two-columns-small-stats .two-columns-small-stats__impact-text,
.theme-section--text-light.two-columns-small-stats .two-columns-small-stats__card-title,
.theme-section--text-light.two-columns-small-stats .two-columns-small-stats__card-highlight,
.theme-section--text-light.two-columns-small-stats .two-columns-small-stats__card-summary,
.theme-section--text-light.two-columns-small-stats .two-columns-small-stats__expand-toggle,
.theme-section--text-light.two-columns-small-stats .two-columns-small-stats__expand-content {
  color: #ffffff;
}
.theme-section--text-light.two-columns-small-stats .two-columns-small-stats__financial-heading,
.theme-section--text-light.two-columns-small-stats .two-columns-small-stats__financial-intro {
  color: #404040;
}
.theme-section--text-light.two-columns-small-stats .two-columns-small-stats__divider {
  border-top-color: #ffffff;
}
.theme-section--text-light.map .map__title,
.theme-section--text-light.map .map__text {
  color: #ffffff;
}
.theme-section--text-light.portfolio-snapshot .impact-eyebrow {
  color: rgba(255, 255, 255, 0.5);
}
.theme-section--text-light.portfolio-snapshot .portfolio-snapshot__heading {
  color: #ffffff;
}
.theme-section--text-light.more-information .more-information__content {
  color: #ffffff;
}

.theme-section--text-dark.impact .impact-eyebrow {
  color: #999999;
}
.theme-section--text-dark.impact .impact__heading,
.theme-section--text-dark.impact .impact__text {
  color: #404040;
}
.theme-section--text-dark.two-columns-small-stats .two-columns-small-stats__pillar,
.theme-section--text-dark.two-columns-small-stats .two-columns-small-stats__impact-heading,
.theme-section--text-dark.two-columns-small-stats .two-columns-small-stats__impact-text,
.theme-section--text-dark.two-columns-small-stats .two-columns-small-stats__card-title,
.theme-section--text-dark.two-columns-small-stats .two-columns-small-stats__card-highlight,
.theme-section--text-dark.two-columns-small-stats .two-columns-small-stats__card-summary,
.theme-section--text-dark.two-columns-small-stats .two-columns-small-stats__expand-toggle,
.theme-section--text-dark.two-columns-small-stats .two-columns-small-stats__expand-content {
  color: #404040;
}
.theme-section--text-dark.two-columns-small-stats .two-columns-small-stats__financial-heading,
.theme-section--text-dark.two-columns-small-stats .two-columns-small-stats__financial-intro {
  color: #404040;
}
.theme-section--text-dark.two-columns-small-stats .two-columns-small-stats__card-body {
  background-color: rgba(64, 64, 64, 0.05);
}
.theme-section--text-dark.two-columns-small-stats .two-columns-small-stats__divider {
  border-top-color: rgba(64, 64, 64, 0.12);
}
.theme-section--text-dark.map .map__title,
.theme-section--text-dark.map .map__text {
  color: #404040;
}
.theme-section--text-dark.portfolio-snapshot .impact-eyebrow {
  color: #999999;
}
.theme-section--text-dark.portfolio-snapshot .portfolio-snapshot__heading {
  color: #404040;
}
.theme-section--text-dark.exit-scenarios .exit-scenarios__heading,
.theme-section--text-dark.exit-scenarios .exit-scenarios__intro {
  color: #404040;
}
.theme-section--text-dark.two-columns-stats .two-columns-stats__heading:not([class*=text-]),
.theme-section--text-dark.two-columns-stats .two-columns-stats__subheading,
.theme-section--text-dark.two-columns-stats .two-columns-stats__intro,
.theme-section--text-dark.two-columns-stats .two-columns-stats__bars-heading,
.theme-section--text-dark.two-columns-stats .two-columns-stats__footer-heading {
  color: #404040;
}
.theme-section--text-dark.two-columns-stats .two-columns-stats__divider {
  border-top-color: rgba(38, 163, 165, 0.45);
}
.theme-section--text-dark.two-columns .impact-eyebrow:not([class*=text-]), .theme-section--text-dark.two-columns-section .impact-eyebrow:not([class*=text-]) {
  color: #999999;
}
.theme-section--text-dark.two-columns .left-column__content,
.theme-section--text-dark.two-columns .left-column__quote,
.theme-section--text-dark.two-columns .left-column__stat-label:not([class*=bg-]),
.theme-section--text-dark.two-columns .right-column__content,
.theme-section--text-dark.two-columns .two-columns-section__section-title:not([class*=text-]),
.theme-section--text-dark.two-columns .two-columns-stats__heading,
.theme-section--text-dark.two-columns .two-columns-stats__subheading,
.theme-section--text-dark.two-columns .two-columns-stats__intro, .theme-section--text-dark.two-columns-section .left-column__content,
.theme-section--text-dark.two-columns-section .left-column__quote,
.theme-section--text-dark.two-columns-section .left-column__stat-label:not([class*=bg-]),
.theme-section--text-dark.two-columns-section .right-column__content,
.theme-section--text-dark.two-columns-section .two-columns-section__section-title:not([class*=text-]),
.theme-section--text-dark.two-columns-section .two-columns-stats__heading,
.theme-section--text-dark.two-columns-section .two-columns-stats__subheading,
.theme-section--text-dark.two-columns-section .two-columns-stats__intro {
  color: #404040;
}
.theme-section--text-dark.more-information .more-information__content {
  color: #404040;
}

.impact-card {
  --impact-card-colour: var(--theme-colour-darkblue);
  --impact-bars-max-height: 160px;
  --impact-bars-axis: #404040;
  --impact-bars-radius: 10px;
}

.impact-card.theme-colour--navy {
  --impact-card-colour: var(--theme-colour-navy);
}

.impact-card.theme-colour--darkblue {
  --impact-card-colour: var(--theme-colour-darkblue);
}

.impact-card.theme-colour--green {
  --impact-card-colour: var(--theme-colour-green);
}

.impact-card.theme-colour--stream {
  --impact-card-colour: var(--theme-colour-stream);
}

.impact-card.theme-colour--brand-green {
  --impact-card-colour: var(--theme-colour-brand-green);
}

.impact-card.theme-colour--yellow {
  --impact-card-colour: var(--theme-colour-yellow);
}

.impact-card__heading {
  color: var(--theme-colour-muted);
  font-family: "Oswald", sans-serif;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  letter-spacing: 0.08em;
  line-height: 1;
  margin: 0;
  padding: 20px 20px 12px;
  text-transform: uppercase;
}

.impact-bars {
  flex: 1;
  padding: 0 20px 20px;
}

.impact-bars__plot {
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 28px;
  min-height: calc(var(--impact-bars-max-height) + 72px);
  padding-top: 8px;
}
.impact-bars__plot::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: calc(0.975rem + 12px);
  border-bottom: 2px solid var(--impact-bars-axis);
  pointer-events: none;
}

.impact-bars__group {
  display: flex;
  flex: 0 0 40%;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.impact-bars__track {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  width: 100%;
  height: var(--impact-bars-max-height);
}

.impact-bars__bar-column {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  width: 100%;
}

.impact-bars__value {
  margin: 0 0 15px;
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
  white-space: nowrap;
  color: var(--impact-card-colour);
}

.impact-bars__bar {
  width: 100%;
  height: calc(var(--impact-bars-max-height) * var(--bar-scale, 1));
  background: var(--impact-card-colour);
}

.js-impact-bars .impact-bars__bar {
  height: 0;
  transition: height 900ms cubic-bezier(0.22, 1, 0.36, 1);
}

.js-impact-bars .impact-bars__bar.is-animated,
.js-impact-bars .impact-bars.is-animated .impact-bars__bar {
  height: calc(var(--impact-bars-max-height) * var(--bar-scale, 0));
}

.impact-bars__year {
  margin: 0;
  font-size: 0.8125rem;
  color: var(--impact-card-colour);
}

.impact-card__milestone {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  margin: 0 20px 20px;
  padding: 24px 16px;
  border: 2px solid var(--impact-card-colour);
  border-radius: var(--impact-bars-radius);
  text-align: center;
}

.impact-card__milestone-label {
  margin: 0;
  font-size: 0.9rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.impact-card__milestone-value {
  margin: 0;
  font-family: "Oswald", sans-serif;
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  line-height: 1;
  color: var(--impact-card-colour);
}

.impact-card__milestone-copy {
  margin: 0;
}
.impact-card__milestone-copy p {
  margin: 0;
  line-height: 1;
}

.impact-card__cumulative {
  margin: 0 20px 20px;
  padding: 20px;
  background: var(--theme-colour-offwhite);
  border-radius: var(--impact-bars-radius);
}

.impact-card__cumulative-label {
  font-family: "Oswald", sans-serif;
  margin: 0 0 6px;
  font-size: 14px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--theme-colour-muted);
}

.impact-card__cumulative-value {
  margin: 0 0 12px;
  font-family: "Lato", sans-serif;
  font-size: clamp(1.375rem, 2.5vw, 1.75rem);
  line-height: 1.1;
  font-weight: 900;
  color: var(--impact-card-colour);
}

.impact-card__equivalent {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0;
  font-size: 0.8125rem;
  line-height: 1.45;
  color: var(--theme-colour-black);
}

.impact-card__icon-wrap {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

.impact-card__equivalent-copy {
  flex: 1;
  min-width: 0;
  margin: 0;
}
.impact-card__equivalent-copy p {
  line-height: 1;
  margin: 0;
}

.impact-card__icon {
  display: block;
  height: 50px;
  object-fit: contain;
}

@media (max-width: 960px) {
  .cumulative-impact__cards {
    grid-template-columns: 1fr;
  }
}
@media (prefers-reduced-motion: reduce) {
  .js-impact-bars .impact-bars__bar {
    height: calc(var(--impact-bars-max-height) * var(--bar-scale, 1));
    transition: none;
  }
  .js-impact-bars .impact-bars__bar.is-animated {
    height: calc(var(--impact-bars-max-height) * var(--bar-scale, 1));
  }
}
:root {
  --impact-map-green: var(--theme-colour-brand-green);
  --impact-map-teal: var(--theme-colour-green);
  --impact-map-lake: var(--theme-colour-darkblue);
  --impact-map-stream: var(--theme-colour-stream);
  --impact-map-rollover: #14425e;
  --impact-map-black: var(--theme-colour-black);
  --impact-map-offwhite: var(--theme-colour-offwhite);
  --impact-map-white: var(--theme-colour-white);
  --impact-map-shadow: 0 18px 50px rgba($brand-green, 0.18);
  --impact-map-radius: 10px;
}

.impact-map {
  position: relative;
}

.impact-map__stage {
  position: relative;
  width: 100%;
  aspect-ratio: 981/511;
  overflow: hidden;
  background: var(--impact-map-white);
  isolation: isolate;
}

.impact-map__mount,
.impact-map__svg {
  display: block;
  width: 100%;
  height: 100%;
}

.impact-map__svg #labels {
  display: none;
}

.impact-map__mount {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.impact-map__portfolio-legend {
  position: absolute;
  z-index: 3;
  left: 20px;
  bottom: 16px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  max-width: min(240px, 100% - 40px);
  padding: 12px 14px;
  border-radius: var(--impact-map-radius);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 8px 24px rgba(31, 99, 138, 0.08);
  pointer-events: none;
}

.impact-map__portfolio-legend-heading {
  margin: 0;
  font-family: "Oswald", sans-serif;
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--impact-map-lake);
}

.impact-map__portfolio-legend-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  width: 100%;
}

.impact-map__portfolio-legend-subheading {
  margin: 0;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--impact-map-black);
}

.impact-map__portfolio-legend-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.8125rem;
  line-height: 1.2;
  color: var(--impact-map-black);
}

.impact-map__portfolio-swatch {
  flex: 0 0 18px;
  width: 18px;
  height: 18px;
  border-radius: 4px;
}

.impact-map__portfolio-swatch--recycling-prior {
  background: var(--impact-map-green);
}

.impact-map__portfolio-swatch--recycling-new {
  background: var(--impact-map-teal);
}

.impact-map__portfolio-swatch--disrupt-americas {
  background: var(--impact-map-lake);
}

.impact-map__portfolio-swatch--disrupt-europe {
  background: var(--impact-map-stream);
}

.impact-map__stage--static .impact-map-preview {
  display: none;
}

.impact-map__stage--static .impact-map__region {
  cursor: default;
  pointer-events: none;
}

.impact-map__stage--interactive .impact-map__region {
  cursor: pointer;
  transition: fill 180ms ease, filter 180ms ease;
}

.impact-map__region--recycling-prior {
  fill: var(--impact-map-green) !important;
}

.impact-map__region--recycling-new {
  fill: var(--impact-map-teal) !important;
}

.impact-map__region--disrupt-americas {
  fill: var(--impact-map-lake) !important;
}

.impact-map__region--disrupt-europe {
  fill: var(--impact-map-stream) !important;
}

.impact-map__region.is-hovered,
.impact-map__region.is-selected {
  fill: var(--impact-map-rollover) !important;
  filter: drop-shadow(0 0 10px rgba(20, 66, 94, 0.45));
}

.impact-map-preview {
  position: absolute;
  z-index: 4;
  width: min(280px, 100vw - 48px);
  padding: 16px 18px;
  border-radius: var(--impact-map-radius);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: var(--impact-map-shadow);
  pointer-events: none;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 160ms ease, transform 160ms ease;
}
.impact-map-preview.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.impact-map-preview__label {
  margin: 0 0 8px;
  font-family: "Oswald", sans-serif;
  font-size: 1.125rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--impact-map-lake);
}
.impact-map-preview__stat {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin: 0 0 6px;
  font-size: 0.875rem;
}
.impact-map-preview__stat strong {
  color: var(--impact-map-teal);
}
.impact-map-preview__summary {
  margin: 10px 0 0;
  font-size: 0.8125rem;
  color: rgba(64, 64, 64, 0.82);
}
.impact-map-preview__hint {
  margin: 12px 0 0;
  font-size: 0.75rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--impact-map-stream);
}

html.impact-map-modal-open {
  overflow: hidden;
}

.impact-map-modal {
  width: min(640px, 100vw - 32px);
  max-height: calc(100vh - 32px);
  padding: 0;
  border: 0;
  border-radius: calc(var(--impact-map-radius) + 2px);
  background: transparent;
  overflow: visible;
}
.impact-map-modal::backdrop {
  background: rgba(11, 114, 110, 0.55);
  backdrop-filter: blur(3px);
}
.impact-map-modal__panel {
  display: flex;
  flex-direction: column;
  max-height: calc(100vh - 32px);
  border-radius: calc(var(--impact-map-radius) + 2px);
  background: var(--impact-map-white);
  box-shadow: var(--impact-map-shadow);
  overflow: hidden;
  animation: impact-map-modal-in 220ms ease;
}
.impact-map-modal__header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  padding: 24px 24px 16px;
  background: linear-gradient(135deg, rgba(38, 163, 165, 0.08), rgba(31, 99, 138, 0.08));
}
.impact-map-modal__title {
  margin: 0;
  font-family: "Oswald", sans-serif;
  font-size: 1.75rem;
  text-transform: uppercase;
  color: var(--impact-map-lake);
  font-weight: 400;
}
.impact-map-modal__subtitle {
  margin: 6px 0 0;
  font-size: 0.9375rem;
  color: rgba(64, 64, 64, 0.82);
}
.impact-map-modal__close {
  flex: 0 0 auto;
  width: 40px;
  height: 40px;
  border: 0;
  border-radius: 999px;
  background: rgba(31, 99, 138, 0.08);
  color: var(--impact-map-lake);
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
}
.impact-map-modal__close:hover, .impact-map-modal__close:focus-visible {
  background: rgba(31, 99, 138, 0.16);
  outline: none;
}
.impact-map-modal__stats {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 12px;
  padding: 24px 16px;
}
.impact-map-modal__stat-card {
  padding: 14px 16px;
  border-radius: var(--impact-map-radius);
  background: var(--impact-map-offwhite);
}
.impact-map-modal__stat-label {
  display: block;
  margin-bottom: 4px;
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(64, 64, 64, 0.65);
}
.impact-map-modal__stat-value {
  font-family: "Oswald", sans-serif;
  font-size: 1.375rem;
  color: var(--impact-map-teal);
}
.impact-map-modal__body {
  padding: 8px 24px 24px;
  overflow: auto;
}
.impact-map-modal__outline-key[hidden] {
  display: none;
}
.impact-map-modal__outline-legend {
  margin: 0 0 8px;
  font-size: 0.8125rem;
  line-height: 1.35;
  color: rgba(64, 64, 64, 0.82);
}
.impact-map-modal__outline-legend-items {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin: 0 0 16px;
  padding: 0;
  list-style: none;
}
.impact-map-modal__outline-legend-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.8125rem;
  line-height: 1.2;
  color: rgba(64, 64, 64, 0.82);
}
.impact-map-modal__outline-swatch {
  flex: 0 0 30px;
  width: 30px;
  height: 30px;
  border-radius: 4px;
  background: var(--impact-map-offwhite);
  box-shadow: inset 0 0 0 3px var(--impact-map-teal);
}
.impact-map-modal__outline-swatch--recycling {
  box-shadow: inset 0 0 0 3px var(--impact-map-teal);
}
.impact-map-modal__outline-swatch--disrupt {
  box-shadow: inset 0 0 0 3px var(--impact-map-stream);
}
.impact-map-modal__list-heading {
  margin: 0 0 12px;
  font-family: "Oswald", sans-serif;
  font-size: 0.875rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--impact-map-lake);
  font-weight: 400;
}
.impact-map-modal__companies {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.impact-map-modal__company {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 16px;
  border-radius: var(--impact-map-radius);
  background: var(--impact-map-offwhite);
  transition: transform 160ms ease, box-shadow 160ms ease;
}
.impact-map-modal__company:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(31, 99, 138, 0.08);
}
.impact-map-modal__company--outlined {
  box-shadow: inset 0 0 0 3px var(--company-outline-color);
}
.impact-map-modal__company--outlined:hover {
  box-shadow: inset 0 0 0 3px var(--company-outline-color), 0 8px 24px rgba(31, 99, 138, 0.08);
}
.impact-map-modal__company-link {
  display: flex;
  align-items: center;
  gap: 14px;
  width: 100%;
}
.impact-map-modal__company-logo, .impact-map-modal__company-placeholder {
  flex: 0 0 48px;
  width: 48px;
  height: 48px;
  border-radius: 8px;
  object-fit: contain;
  background: var(--impact-map-white);
  mix-blend-mode: darken;
}
.impact-map-modal__company-placeholder {
  display: grid;
  place-items: center;
  font-family: "Oswald", sans-serif;
  font-size: 1rem;
  color: var(--impact-map-lake);
}
.impact-map-modal__company-name {
  font-weight: 700;
  color: var(--impact-map-lake);
  position: relative;
  width: 100%;
}
.impact-map-modal__company-name.successful_exit::before {
  font-size: 0.5rem;
  right: 0;
  top: 0;
  font-weight: normal;
}
.impact-map-modal__company-exited {
  font-size: 0.75rem;
  color: #878785;
}
.impact-map-modal__empty {
  margin: 0;
  padding: 18px 16px;
  border-radius: var(--impact-map-radius);
  background: var(--impact-map-offwhite);
  color: rgba(64, 64, 64, 0.75);
}

@keyframes impact-map-modal-in {
  from {
    opacity: 0;
    transform: translateY(12px) scale(0.98);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}
@media (max-width: 960px) {
  .impact-map__stage {
    aspect-ratio: auto;
    display: flex;
    flex-direction: column;
  }
  .impact-map__mount {
    position: relative;
    aspect-ratio: 981/511;
  }
  .impact-map__stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .impact-map__stat--wide {
    grid-column: span 2;
  }
}
@media (max-width: 720px) {
  .impact-map-preview {
    left: 16px !important;
    right: 16px;
    top: auto !important;
    bottom: 16px;
    width: auto;
  }
  .impact-map-modal__stats {
    grid-template-columns: 1fr;
  }
  .impact-map__stats {
    grid-template-columns: 1fr;
  }
  .impact-map__stat--wide {
    grid-column: span 1;
  }
}
@media (prefers-reduced-motion: reduce) {
  .impact-map__region,
  .impact-map-preview,
  .impact-map-modal__panel,
  .impact-map-modal__company {
    transition: none;
    animation: none;
  }
}
.impact-eyebrow {
  color: #999999;
  font-family: "Oswald", sans-serif;
  font-size: clamp(1.25rem, 2.5vw, 1.5rem);
  font-weight: 400;
  margin: 0;
  text-transform: uppercase;
}

.impact__title {
  margin-bottom: 35px;
}

.left-column__section-title {
  margin-bottom: 34px;
  width: 100%;
}

h2, .h2 {
  letter-spacing: 0;
}

h2, .h2 {
  font-size: clamp(2rem, 4vw, 2.5rem);
  line-height: 1.1;
  margin: 0;
}

h3, .h3 {
  font-size: clamp(1.25rem, 2.5vw, 1.9rem);
  line-height: 1.2;
  margin: 0;
}

h4, .h4 {
  font-size: clamp(1rem, 2vw, 24px);
  line-height: 1.5;
  margin: 0;
}

.more-information__content a {
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 0.15em;
}
.more-information__content a:hover, .more-information__content a:focus {
  opacity: 0.85;
}
.more-information__disclaimer p {
  font-size: 0.8125rem;
  line-height: 1.5;
  margin-top: 1em;
}
