@charset "UTF-8";
/* stylelint-disable scss/at-import-partial-extension */
/**
 * Import stylesheet partials
*/
/*
* A Modern CSS Reset
* https://piccalil.li/blog/a-modern-css-reset/
*/
/* Box sizing rules */
*,
*::before,
*::after {
  box-sizing: border-box;
}

/* Remove default margin */
body,
h1,
h2,
h3,
h4,
p,
figure,
blockquote,
dl,
dd {
  margin: 0;
}

/* Remove list styles on ul, ol elements with a list role, which suggests default styling will be removed */
ul[role=list],
ol[role=list] {
  list-style: none;
}

ul,
ol {
  list-style: none;
  margin: 0;
  padding: 0;
}

/* Set core root defaults */
html:focus-within {
  scroll-behavior: smooth;
}

/* Set core body defaults */
body {
  line-height: 1.5;
  min-height: 100vh;
  text-rendering: optimizespeed;
}

/* A elements that don't have a class get default styles */
a:not([class]) {
  text-decoration-skip-ink: auto;
}

/* Make images easier to work with */
img,
picture {
  display: block;
  max-width: 100%;
}

/* Inherit fonts for inputs and buttons */
input,
button,
textarea,
select {
  font: inherit;
}

/* Remove all animations, transitions and smooth scroll for people that prefer not to see them */
@media (prefers-reduced-motion: reduce) {
  html:focus-within {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation-duration: 0 !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0 !important;
  }
}
:root {
  --blue: #355890;
  --dark-blue: #245796;
  --green: #658060;
  --dark-green: #30454c;
  --dark-green-rgb: 48,69,76;
  --yellow: #f2c45c;
  --yellow-light: #F7E3B0;
  --pomegranate: #ee3124;
  --red: #dc0500;
  --rose: #EA6966;
  --orange: #e39144;
  --purple: #6659a1;
  --slate: #57727f;
  --slate-rgb: 87,114,127;
  --limed-spruce: #2b3e44;
  --lt-grey: #b8bfc6;
  --dark-grey: #3f3f3f;
  --black: #000;
  --black-rgb: 0, 0, 0;
  --text-black: #0E0F0F;
  --white: #fff;
  --white-rgb: 255, 255, 255;
  --map-country-color: #d7ded6;
  --divider-color: #B6BDC3;
}

:root {
  --header-height: 60px;
  --site-gutter: 20px;
  --section-padding-top: 30px;
  --section-padding-bottom: 30px;
}
@media (min-width: 768px) {
  :root {
    --header-height: 80px;
    --site-gutter: 30px;
    --section-padding-top: 50px;
    --section-padding-bottom: 50px;
  }
}
@media (min-width: 992px) {
  :root {
    --site-gutter: 48px;
    --section-padding-top: 70px;
    --section-padding-bottom: 70px;
  }
}
@media (min-width: 576px) and (max-width: 991px) and (orientation: landscape) {
  :root {
    --header-height: 60px;
  }
}

/**
 * clamp-calc from https://dev.to/christianmay21/easy-css-clamp-scss-mixin-1225.
 * To use: font-size: clamp-calc(480px, 640px, 12px, 16px);
 *
 */
/* Usage Examples
    .my-level-1-heading-class {
        @include text-crop; // Will use default line height of 1.3
        font-size: 48px;
        margin: 0 0 0 16px;
    }

    .my-level-2-heading-class {
        @include text-crop; // Will use default line height of 1.3
        font-size: 32px; // Don't need to change any settings, will work with any font size automatically
        margin: 0 0 0 16px;
    }

    .my-body-copy-class {
        @include text-crop($line-height: 2); // Larger line height desired, set the line height via the mixin
        font-size: 16px;
    }

    // Sometimes depending on the font-size, the rendering, the browser, etc. you may need to tweak the output.
    // You can adjust the top and bottom cropping when invoking the component using the $top-adjustment and $bottom-adjustment settings

    .slight-adjustment-needed {
        @include text-crop($top-adjustment: -0.5px, $bottom-adjustment: 2px);
        font-size: 17px;
    }

    .dont-do-this {
        @include text-crop;
        font-size: 16px;
        line-height: 3; // DO NOT set line height outside of the mixin, the mixin needs the line height value to calculate the crop correctly
    }
*/
.two-col-text-block--our-communities-4::before, .two-col-text-block--our-communities-2::before, .two-col-text-block--our-people-3::before, .two-col-text-block--our-people-2::before, .two-col-text-block--our-people-1::after, .section--logo-marquee::before,
.section--logo-marquee::after {
  background-color: rgba(var(--dark-green-rgb), 0.5);
  content: "";
  display: block;
  height: 1px;
  left: 50%;
  position: absolute;
  transform: translateX(-50%);
  width: calc(100% - var(--site-gutter) * 2);
}
@media (min-width: 768px) {
  .two-col-text-block--our-communities-4::before, .two-col-text-block--our-communities-2::before, .two-col-text-block--our-people-3::before, .two-col-text-block--our-people-2::before, .two-col-text-block--our-people-1::after, .section--logo-marquee::before,
  .section--logo-marquee::after {
    width: calc(100% - var(--site-gutter) * 4);
  }
}

@keyframes fade-slide-up {
  from {
    opacity: 0;
    transform: translate3d(0, 20px, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}
body {
  /* stylelint-disable-line */
  font-family: neue-haas-grotesk-display, sans-serif;
  font-style: normal;
  font-weight: 400; /* stylelint-disable-line */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img {
  height: auto;
  max-width: 100%;
}

.visually-hidden {
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  height: 1px;
  overflow: hidden;
  position: absolute;
  white-space: nowrap;
  width: 1px;
}

svg {
  pointer-events: none;
}

.sticky-container {
  position: sticky;
  top: 0;
  z-index: 1;
}

:root {
  --blue: #355890;
  --dark-blue: #245796;
  --green: #658060;
  --dark-green: #30454c;
  --dark-green-rgb: 48,69,76;
  --yellow: #f2c45c;
  --yellow-light: #F7E3B0;
  --pomegranate: #ee3124;
  --red: #dc0500;
  --rose: #EA6966;
  --orange: #e39144;
  --purple: #6659a1;
  --slate: #57727f;
  --slate-rgb: 87,114,127;
  --limed-spruce: #2b3e44;
  --lt-grey: #b8bfc6;
  --dark-grey: #3f3f3f;
  --black: #000;
  --black-rgb: 0, 0, 0;
  --text-black: #0E0F0F;
  --white: #fff;
  --white-rgb: 255, 255, 255;
  --map-country-color: #d7ded6;
  --divider-color: #B6BDC3;
}

body {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

#main {
  flex: 1;
}

.site-footer {
  margin-top: auto;
}

.skip-link {
  transition: background-color 0.4s ease-out, color 0.4s ease-out;
}

.skip-link:focus {
  background-color: rgb(220, 5, 0);
  clip: unset;
  clip-path: unset;
  color: white;
  font-weight: 500;
  height: auto;
  left: var(--site-gutter);
  outline: 2px dotted white;
  padding: 4px 8px;
  text-decoration: none;
  top: 24px;
  width: auto;
  z-index: 101;
}

.container {
  margin-inline: max(var(--site-gutter), 50% - 670px);
}

@media (min-width: 768px) {
  .container.is-narrow {
    margin-inline: max(var(--site-gutter) * 2, 50% - 615px);
  }
}

.container-grid {
  max-width: 1364px;
  padding-left: var(--site-gutter);
  padding-right: var(--site-gutter);
}
@media (min-width: 768px) {
  .container-grid {
    column-gap: 24px;
    display: grid;
    grid-template-columns: minmax(0, 1fr) repeat(12, minmax(0, calc((1364px/ 12) - 24px))) minmax(0, 1fr);
    max-width: initial;
    padding-left: 0;
    padding-right: 0;
  }
}

.grid {
  column-gap: 24px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-auto-flow: column;
}
@media (min-width: 768px) {
  .grid {
    grid-template-columns: repeat(12, minmax(0, 1fr));
  }
}

/**
 * Swiper 10.2.0
 * Most modern mobile touch slider and framework with hardware accelerated transitions
 * https://swiperjs.com
 *
 * Copyright 2014-2023 Vladimir Kharlampidi
 *
 * Released under the MIT License
 *
 * Released on: August 17, 2023
 */
@font-face {
  font-family: "swiper-icons";
  src: url("data:application/font-woff;charset=utf-8;base64, d09GRgABAAAAAAZgABAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABGRlRNAAAGRAAAABoAAAAci6qHkUdERUYAAAWgAAAAIwAAACQAYABXR1BPUwAABhQAAAAuAAAANuAY7+xHU1VCAAAFxAAAAFAAAABm2fPczU9TLzIAAAHcAAAASgAAAGBP9V5RY21hcAAAAkQAAACIAAABYt6F0cBjdnQgAAACzAAAAAQAAAAEABEBRGdhc3AAAAWYAAAACAAAAAj//wADZ2x5ZgAAAywAAADMAAAD2MHtryVoZWFkAAABbAAAADAAAAA2E2+eoWhoZWEAAAGcAAAAHwAAACQC9gDzaG10eAAAAigAAAAZAAAArgJkABFsb2NhAAAC0AAAAFoAAABaFQAUGG1heHAAAAG8AAAAHwAAACAAcABAbmFtZQAAA/gAAAE5AAACXvFdBwlwb3N0AAAFNAAAAGIAAACE5s74hXjaY2BkYGAAYpf5Hu/j+W2+MnAzMYDAzaX6QjD6/4//Bxj5GA8AuRwMYGkAPywL13jaY2BkYGA88P8Agx4j+/8fQDYfA1AEBWgDAIB2BOoAeNpjYGRgYNBh4GdgYgABEMnIABJzYNADCQAACWgAsQB42mNgYfzCOIGBlYGB0YcxjYGBwR1Kf2WQZGhhYGBiYGVmgAFGBiQQkOaawtDAoMBQxXjg/wEGPcYDDA4wNUA2CCgwsAAAO4EL6gAAeNpj2M0gyAACqxgGNWBkZ2D4/wMA+xkDdgAAAHjaY2BgYGaAYBkGRgYQiAHyGMF8FgYHIM3DwMHABGQrMOgyWDLEM1T9/w8UBfEMgLzE////P/5//f/V/xv+r4eaAAeMbAxwIUYmIMHEgKYAYjUcsDAwsLKxc3BycfPw8jEQA/gZBASFhEVExcQlJKWkZWTl5BUUlZRVVNXUNTQZBgMAAMR+E+gAEQFEAAAAKgAqACoANAA+AEgAUgBcAGYAcAB6AIQAjgCYAKIArAC2AMAAygDUAN4A6ADyAPwBBgEQARoBJAEuATgBQgFMAVYBYAFqAXQBfgGIAZIBnAGmAbIBzgHsAAB42u2NMQ6CUAyGW568x9AneYYgm4MJbhKFaExIOAVX8ApewSt4Bic4AfeAid3VOBixDxfPYEza5O+Xfi04YADggiUIULCuEJK8VhO4bSvpdnktHI5QCYtdi2sl8ZnXaHlqUrNKzdKcT8cjlq+rwZSvIVczNiezsfnP/uznmfPFBNODM2K7MTQ45YEAZqGP81AmGGcF3iPqOop0r1SPTaTbVkfUe4HXj97wYE+yNwWYxwWu4v1ugWHgo3S1XdZEVqWM7ET0cfnLGxWfkgR42o2PvWrDMBSFj/IHLaF0zKjRgdiVMwScNRAoWUoH78Y2icB/yIY09An6AH2Bdu/UB+yxopYshQiEvnvu0dURgDt8QeC8PDw7Fpji3fEA4z/PEJ6YOB5hKh4dj3EvXhxPqH/SKUY3rJ7srZ4FZnh1PMAtPhwP6fl2PMJMPDgeQ4rY8YT6Gzao0eAEA409DuggmTnFnOcSCiEiLMgxCiTI6Cq5DZUd3Qmp10vO0LaLTd2cjN4fOumlc7lUYbSQcZFkutRG7g6JKZKy0RmdLY680CDnEJ+UMkpFFe1RN7nxdVpXrC4aTtnaurOnYercZg2YVmLN/d/gczfEimrE/fs/bOuq29Zmn8tloORaXgZgGa78yO9/cnXm2BpaGvq25Dv9S4E9+5SIc9PqupJKhYFSSl47+Qcr1mYNAAAAeNptw0cKwkAAAMDZJA8Q7OUJvkLsPfZ6zFVERPy8qHh2YER+3i/BP83vIBLLySsoKimrqKqpa2hp6+jq6RsYGhmbmJqZSy0sraxtbO3sHRydnEMU4uR6yx7JJXveP7WrDycAAAAAAAH//wACeNpjYGRgYOABYhkgZgJCZgZNBkYGLQZtIJsFLMYAAAw3ALgAeNolizEKgDAQBCchRbC2sFER0YD6qVQiBCv/H9ezGI6Z5XBAw8CBK/m5iQQVauVbXLnOrMZv2oLdKFa8Pjuru2hJzGabmOSLzNMzvutpB3N42mNgZGBg4GKQYzBhYMxJLMlj4GBgAYow/P/PAJJhLM6sSoWKfWCAAwDAjgbRAAB42mNgYGBkAIIbCZo5IPrmUn0hGA0AO8EFTQAA") format("woff");
  font-weight: 400;
  font-style: normal;
}
:root {
  --swiper-theme-color: #007aff;
  /*
  --swiper-preloader-color: var(--swiper-theme-color);
  --swiper-wrapper-transition-timing-function: initial;
  */
}

:host {
  position: relative;
  display: block;
  margin-left: auto;
  margin-right: auto;
  z-index: 1;
}

.swiper {
  margin-left: auto;
  margin-right: auto;
  position: relative;
  overflow: hidden;
  overflow: clip;
  list-style: none;
  padding: 0;
  /* Fix of Webkit flickering */
  z-index: 1;
  display: block;
}

.swiper-vertical > .swiper-wrapper {
  flex-direction: column;
}

.swiper-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 1;
  display: flex;
  transition-property: transform;
  transition-timing-function: var(--swiper-wrapper-transition-timing-function, initial);
  box-sizing: content-box;
}

.swiper-android .swiper-slide,
.swiper-ios .swiper-slide,
.swiper-wrapper {
  transform: translate3d(0px, 0, 0);
}

.swiper-horizontal {
  touch-action: pan-y;
}

.swiper-vertical {
  touch-action: pan-x;
}

.swiper-slide {
  flex-shrink: 0;
  width: 100%;
  height: 100%;
  position: relative;
  transition-property: transform;
  display: block;
}

.swiper-slide-invisible-blank {
  visibility: hidden;
}

/* Auto Height */
.swiper-autoheight,
.swiper-autoheight .swiper-slide {
  height: auto;
}

.swiper-autoheight .swiper-wrapper {
  align-items: flex-start;
  transition-property: transform, height;
}

.swiper-backface-hidden .swiper-slide {
  transform: translateZ(0);
  backface-visibility: hidden;
}

/* 3D Effects */
.swiper-3d.swiper-css-mode .swiper-wrapper {
  perspective: 1200px;
}

.swiper-3d .swiper-wrapper {
  transform-style: preserve-3d;
}

.swiper-3d {
  perspective: 1200px;
}
.swiper-3d .swiper-slide,
.swiper-3d .swiper-cube-shadow {
  transform-style: preserve-3d;
}

/* CSS Mode */
.swiper-css-mode > .swiper-wrapper {
  overflow: auto;
  scrollbar-width: none; /* For Firefox */
  -ms-overflow-style: none; /* For Internet Explorer and Edge */
}
.swiper-css-mode > .swiper-wrapper::-webkit-scrollbar {
  display: none;
}
.swiper-css-mode > .swiper-wrapper > .swiper-slide {
  scroll-snap-align: start start;
}
.swiper-css-mode.swiper-horizontal > .swiper-wrapper {
  scroll-snap-type: x mandatory;
}
.swiper-css-mode.swiper-vertical > .swiper-wrapper {
  scroll-snap-type: y mandatory;
}
.swiper-css-mode.swiper-free-mode > .swiper-wrapper {
  scroll-snap-type: none;
}
.swiper-css-mode.swiper-free-mode > .swiper-wrapper > .swiper-slide {
  scroll-snap-align: none;
}
.swiper-css-mode.swiper-centered > .swiper-wrapper::before {
  content: "";
  flex-shrink: 0;
  order: 9999;
}
.swiper-css-mode.swiper-centered > .swiper-wrapper > .swiper-slide {
  scroll-snap-align: center center;
  scroll-snap-stop: always;
}
.swiper-css-mode.swiper-centered.swiper-horizontal > .swiper-wrapper > .swiper-slide:first-child {
  margin-inline-start: var(--swiper-centered-offset-before);
}
.swiper-css-mode.swiper-centered.swiper-horizontal > .swiper-wrapper::before {
  height: 100%;
  min-height: 1px;
  width: var(--swiper-centered-offset-after);
}
.swiper-css-mode.swiper-centered.swiper-vertical > .swiper-wrapper > .swiper-slide:first-child {
  margin-block-start: var(--swiper-centered-offset-before);
}
.swiper-css-mode.swiper-centered.swiper-vertical > .swiper-wrapper::before {
  width: 100%;
  min-width: 1px;
  height: var(--swiper-centered-offset-after);
}

/* Slide styles start */
/* 3D Shadows */
.swiper-3d .swiper-slide-shadow,
.swiper-3d .swiper-slide-shadow-left,
.swiper-3d .swiper-slide-shadow-right,
.swiper-3d .swiper-slide-shadow-top,
.swiper-3d .swiper-slide-shadow-bottom,
.swiper-3d .swiper-slide-shadow,
.swiper-3d .swiper-slide-shadow-left,
.swiper-3d .swiper-slide-shadow-right,
.swiper-3d .swiper-slide-shadow-top,
.swiper-3d .swiper-slide-shadow-bottom {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 10;
}
.swiper-3d .swiper-slide-shadow {
  background: rgba(0, 0, 0, 0.15);
}
.swiper-3d .swiper-slide-shadow-left {
  background-image: linear-gradient(to left, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}
.swiper-3d .swiper-slide-shadow-right {
  background-image: linear-gradient(to right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}
.swiper-3d .swiper-slide-shadow-top {
  background-image: linear-gradient(to top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}
.swiper-3d .swiper-slide-shadow-bottom {
  background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

.swiper-lazy-preloader {
  width: 42px;
  height: 42px;
  position: absolute;
  left: 50%;
  top: 50%;
  margin-left: -21px;
  margin-top: -21px;
  z-index: 10;
  transform-origin: 50%;
  box-sizing: border-box;
  border: 4px solid var(--swiper-preloader-color, var(--swiper-theme-color));
  border-radius: 50%;
  border-top-color: transparent;
}

.swiper:not(.swiper-watch-progress) .swiper-lazy-preloader,
.swiper-watch-progress .swiper-slide-visible .swiper-lazy-preloader {
  animation: swiper-preloader-spin 1s infinite linear;
}

.swiper-lazy-preloader-white {
  --swiper-preloader-color: #fff;
}

.swiper-lazy-preloader-black {
  --swiper-preloader-color: #000;
}

@keyframes swiper-preloader-spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
/* Slide styles end */
.swiper-fade.swiper-free-mode .swiper-slide {
  transition-timing-function: ease-out;
}
.swiper-fade .swiper-slide {
  pointer-events: none;
  transition-property: opacity;
}
.swiper-fade .swiper-slide .swiper-slide {
  pointer-events: none;
}
.swiper-fade .swiper-slide-active, .swiper-fade .swiper-slide-active .swiper-slide-active {
  pointer-events: auto;
}

:root {
  --headline-color: var(--dark-green);
  --text-color: var(--dark-green);
}

h2 {
  /* stylelint-disable-line */
  font-family: neue-haas-grotesk-display, sans-serif;
  font-style: normal;
  font-weight: 400; /* stylelint-disable-line */
  color: var(--headline-color);
  font-size: clamp(28px, 4px + 0.05 * 100vw, 64px);
  line-height: 1.1;
  margin-bottom: 33px;
}

h3 {
  /* stylelint-disable-line */
  font-family: neue-haas-grotesk-display, sans-serif;
  font-style: normal;
  font-weight: 400; /* stylelint-disable-line */
  color: var(--headline-color);
  font-size: clamp(18px, 14px + 0.0083333333 * 100vw, 24px);
  line-height: 1.5;
  margin: 0 0 10px 0;
}
@media (min-width: 768px) {
  h3 {
    margin-bottom: 20px;
  }
}

p {
  color: var(--text-color);
  font-size: clamp(16px, 13.3333333333px + 0.0055555556 * 100vw, 20px);
  letter-spacing: 0.2px;
  line-height: 1.5;
}

p a {
  color: var(--dark-green);
}

p + p {
  margin-top: 35px;
}

p strong {
  /* stylelint-disable-line */
  font-family: neue-haas-grotesk-display, sans-serif;
  font-style: normal;
  font-weight: 700; /* stylelint-disable-line */
}

p + h3 {
  margin-top: 48px;
}

:root {
  --animate-duration: 1s;
  --animate-delay: 1s;
  --animate-repeat: 1;
}

.animate {
  animation-duration: var(--animate-duration);
  animation-fill-mode: both;
}
@media print, (prefers-reduced-motion: reduce) {
  .animate {
    animation-duration: 1ms;
    animation-iteration-count: 1;
    transition-duration: 1ms;
  }
}

.animate[class*=Out] {
  opacity: 0;
}
@media (prefers-reduced-motion: reduce) {
  .animate[class*=Out] {
    opacity: 1;
  }
}
@media (prefers-reduced-motion: no-preference) {
  .animate[class*=Out] {
    opacity: 1;
  }
}

.fade-slide-up {
  opacity: 0;
}
@media (prefers-reduced-motion: reduce) {
  .fade-slide-up {
    opacity: 1;
  }
}
@media (prefers-reduced-motion: no-preference) {
  .fade-slide-up {
    opacity: 1;
  }
}

.is-visible .fade-slide-up {
  animation-name: fade-slide-up;
}

.animate-delay-250 {
  animation-delay: 250ms;
}
@media (prefers-reduced-motion: reduce) {
  .animate-delay-250 {
    animation-delay: 0ms;
  }
}
@media (prefers-reduced-motion: no-preference) {
  .animate-delay-250 {
    animation-delay: 0ms;
  }
}

.animate-delay-500 {
  animation-delay: 500ms;
}
@media (prefers-reduced-motion: reduce) {
  .animate-delay-500 {
    animation-delay: 0ms;
  }
}
@media (prefers-reduced-motion: no-preference) {
  .animate-delay-500 {
    animation-delay: 0ms;
  }
}

.animate-delay-750 {
  animation-delay: 750ms;
}
@media (prefers-reduced-motion: reduce) {
  .animate-delay-750 {
    animation-delay: 0ms;
  }
}
@media (prefers-reduced-motion: no-preference) {
  .animate-delay-750 {
    animation-delay: 0ms;
  }
}

.animate-delay-1000 {
  animation-delay: 1000ms;
}
@media (prefers-reduced-motion: reduce) {
  .animate-delay-1000 {
    animation-delay: 0ms;
  }
}
@media (prefers-reduced-motion: no-preference) {
  .animate-delay-1000 {
    animation-delay: 0ms;
  }
}

.animate-delay-1250 {
  animation-delay: 1250ms;
}
@media (prefers-reduced-motion: reduce) {
  .animate-delay-1250 {
    animation-delay: 0ms;
  }
}
@media (prefers-reduced-motion: no-preference) {
  .animate-delay-1250 {
    animation-delay: 0ms;
  }
}

.animate-delay-1500 {
  animation-delay: 1500ms;
}
@media (prefers-reduced-motion: reduce) {
  .animate-delay-1500 {
    animation-delay: 0ms;
  }
}
@media (prefers-reduced-motion: no-preference) {
  .animate-delay-1500 {
    animation-delay: 0ms;
  }
}

.animate-delay-1750 {
  animation-delay: 1750ms;
}
@media (prefers-reduced-motion: reduce) {
  .animate-delay-1750 {
    animation-delay: 0ms;
  }
}
@media (prefers-reduced-motion: no-preference) {
  .animate-delay-1750 {
    animation-delay: 0ms;
  }
}

.animate-delay-2000 {
  animation-delay: 2000ms;
}
@media (prefers-reduced-motion: reduce) {
  .animate-delay-2000 {
    animation-delay: 0ms;
  }
}
@media (prefers-reduced-motion: no-preference) {
  .animate-delay-2000 {
    animation-delay: 0ms;
  }
}

.animate-delay-2250 {
  animation-delay: 2250ms;
}
@media (prefers-reduced-motion: reduce) {
  .animate-delay-2250 {
    animation-delay: 0ms;
  }
}
@media (prefers-reduced-motion: no-preference) {
  .animate-delay-2250 {
    animation-delay: 0ms;
  }
}

.animate-delay-2500 {
  animation-delay: 2500ms;
}
@media (prefers-reduced-motion: reduce) {
  .animate-delay-2500 {
    animation-delay: 0ms;
  }
}
@media (prefers-reduced-motion: no-preference) {
  .animate-delay-2500 {
    animation-delay: 0ms;
  }
}

.kicker {
  --kicker-color: var(--headline-color);
  /* stylelint-disable-line */
  font-family: neue-haas-grotesk-display, sans-serif;
  font-style: normal;
  font-weight: 500; /* stylelint-disable-line */
  color: var(--kicker-color);
  font-size: clamp(18px, 14px + 0.0083333333 * 100vw, 24px);
  line-height: 1.5;
  margin-bottom: 18px;
}

.responsive-embed {
  display: block;
  overflow: hidden;
  padding: 0;
  position: relative;
  width: 100%;
}

.responsive-embed::before {
  content: "";
  display: block;
}

.responsive-embed .responsive-embed-item,
.responsive-embed iframe,
.responsive-embed embed,
.responsive-embed object,
.responsive-embed video {
  border: 0;
  bottom: 0;
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
}

.responsive-embed--21x9::before {
  padding-top: 42.857143%;
}

.responsive-embed--16x9::before {
  padding-top: 56.25%;
}

.responsive-embed--4x3::before {
  padding-top: 75%;
}

.responsive-embed--1x1::before {
  padding-top: 100%;
}

/*!
 * OverlayScrollbars
 * Version: 2.2.1
 *
 * Copyright (c) Rene Haas | KingSora.
 * https://github.com/KingSora
 *
 * Released under the MIT license.
 */
.os-size-observer,
.os-size-observer-listener {
  box-sizing: border-box;
  direction: inherit;
  overflow: hidden;
  pointer-events: none;
  visibility: hidden;
}

.os-size-observer,
.os-size-observer-listener,
.os-size-observer-listener-item,
.os-size-observer-listener-item-final {
  left: 0;
  position: absolute;
  top: 0;
  writing-mode: horizontal-tb;
}

.os-size-observer {
  border: inherit;
  bottom: 0;
  box-sizing: inherit;
  contain: strict;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  left: 0;
  margin: -133px;
  padding: inherit;
  right: 0;
  top: 0;
  transform: scale(0.1);
  z-index: -1;
}

.os-size-observer::before {
  box-sizing: inherit;
  content: "";
  flex: none;
  height: 10px;
  padding: 10px;
  width: 10px;
}

.os-size-observer-appear {
  animation: os-size-observer-appear-animation 1ms forwards;
}

.os-size-observer-listener {
  border: inherit;
  box-sizing: border-box;
  flex: auto;
  margin: -133px;
  padding: inherit;
  position: relative;
  transform: scale(10);
}

.os-size-observer-listener.ltr {
  margin-left: 0;
  margin-right: -266px;
}

.os-size-observer-listener.rtl {
  margin-left: -266px;
  margin-right: 0;
}

.os-size-observer-listener:empty::before {
  content: "";
  height: 100%;
  width: 100%;
}

.os-size-observer-listener:empty::before,
.os-size-observer-listener > .os-size-observer-listener-item {
  border: inherit;
  box-sizing: content-box;
  display: block;
  flex: auto;
  padding: inherit;
  position: relative;
}

.os-size-observer-listener-scroll {
  box-sizing: border-box;
  display: flex;
}

.os-size-observer-listener-item {
  bottom: 0;
  direction: ltr;
  flex: none;
  overflow: hidden;
  right: 0;
}

.os-size-observer-listener-item-final {
  transition: none;
}

@keyframes os-size-observer-appear-animation {
  from {
    cursor: auto;
  }
  to {
    cursor: none;
  }
}
.os-trinsic-observer {
  border: none;
  box-sizing: border-box;
  contain: strict;
  flex: none;
  height: 0;
  margin: 0;
  max-height: 1px;
  max-width: 0;
  overflow: hidden;
  padding: 0;
  position: relative;
  top: calc(100% + 1px);
  z-index: -1;
}

.os-trinsic-observer:not(:empty) {
  height: calc(100% + 1px);
  top: -1px;
}

.os-trinsic-observer:not(:empty) > .os-size-observer {
  height: 1000%;
  min-height: 1px;
  min-width: 1px;
  width: 1000%;
}

/**
   * environment setup
   */
.os-environment {
  --os-custom-prop: -1;
  height: 200px;
  opacity: 0;
  overflow: scroll;
  position: fixed;
  visibility: hidden;
  width: 200px;
  z-index: var(--os-custom-prop);
}

.os-environment div {
  height: 200%;
  margin: 10px 0;
  width: 200%;
}

.os-environment.os-environment-flexbox-glue {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  height: auto;
  min-height: 200px;
  min-width: 200px;
  width: auto;
}

.os-environment.os-environment-flexbox-glue div {
  flex: auto;
  height: auto;
  margin: 0;
  max-height: 100%;
  max-width: 100%;
  width: auto;
}

.os-environment.os-environment-flexbox-glue-max {
  max-height: 200px;
}

.os-environment.os-environment-flexbox-glue-max div {
  overflow: visible;
}

.os-environment.os-environment-flexbox-glue-max div::before {
  content: "";
  display: block;
  height: 999px;
  width: 999px;
}

/**
   * hide native scrollbars
   */
.os-environment,
[data-overlayscrollbars-viewport] {
  -ms-overflow-style: scrollbar !important;
}

[data-overlayscrollbars-initialize],
[data-overlayscrollbars~=scrollbarHidden],
[data-overlayscrollbars-viewport~=scrollbarHidden],
.os-scrollbar-hidden.os-environment {
  scrollbar-width: none !important;
}

[data-overlayscrollbars-initialize]::-webkit-scrollbar,
[data-overlayscrollbars-initialize]::-webkit-scrollbar-corner,
[data-overlayscrollbars~=scrollbarHidden]::-webkit-scrollbar,
[data-overlayscrollbars~=scrollbarHidden]::-webkit-scrollbar-corner,
[data-overlayscrollbars-viewport~=scrollbarHidden]::-webkit-scrollbar,
[data-overlayscrollbars-viewport~=scrollbarHidden]::-webkit-scrollbar-corner,
.os-scrollbar-hidden.os-environment::-webkit-scrollbar,
.os-scrollbar-hidden.os-environment::-webkit-scrollbar-corner {
  appearance: none !important;
  display: none !important;
  height: 0 !important;
  width: 0 !important;
}

/**
   * elements wont suddenly crop after initialization is done
   */
[data-overlayscrollbars-initialize] {
  overflow: auto;
}

/**
   * applied to body
   */
html[data-overlayscrollbars],
html.os-scrollbar-hidden,
html.os-scrollbar-hidden > body {
  box-sizing: border-box;
  height: 100%;
  margin: 0;
  width: 100%;
}

html[data-overlayscrollbars] > body {
  overflow: visible;
}

/**
   * structure setup
   */
[data-overlayscrollbars~=host] {
  position: relative;
}

[data-overlayscrollbars~=host],
[data-overlayscrollbars-padding] {
  display: flex;
  flex-direction: row !important;
  flex-wrap: nowrap !important;
}

[data-overlayscrollbars-padding],
[data-overlayscrollbars-viewport] {
  border: none;
  box-sizing: inherit;
  flex: auto !important;
  height: auto;
  margin: 0;
  min-width: 0;
  padding: 0;
  position: relative;
  width: 100%;
  z-index: 0;
}

[data-overlayscrollbars-viewport] {
  --os-vaw: 0;
  --os-vah: 0;
}

[data-overlayscrollbars-viewport][data-overlayscrollbars-viewport~=arrange]::before {
  content: "";
  height: var(--os-vah);
  min-height: 1px;
  min-width: 1px;
  pointer-events: none;
  position: absolute;
  width: var(--os-vaw);
  z-index: -1;
}

[data-overlayscrollbars-padding],
[data-overlayscrollbars-viewport] {
  overflow: hidden;
}

[data-overlayscrollbars~=host],
[data-overlayscrollbars~=viewport] {
  overflow: hidden;
}

[data-overlayscrollbars~=overflowVisible],
[data-overlayscrollbars-padding~=overflowVisible],
[data-overlayscrollbars-viewport~=overflowVisible] {
  overflow: visible;
}

[data-overlayscrollbars-overflow-x=hidden] {
  overflow-x: hidden;
}

[data-overlayscrollbars-overflow-x=scroll] {
  overflow-x: scroll;
}

[data-overlayscrollbars-overflow-x=hidden] {
  overflow-y: hidden;
}

[data-overlayscrollbars-overflow-y=scroll] {
  overflow-y: scroll;
}

[data-overlayscrollbars~=scrollbarPressed],
[data-overlayscrollbars~=scrollbarPressed] [data-overlayscrollbars-viewport] {
  scroll-behavior: auto !important;
}

[data-overlayscrollbars-content] {
  box-sizing: inherit;
}

/**
   * optional & experimental grid mode
   */
[data-overlayscrollbars-grid],
[data-overlayscrollbars-grid] [data-overlayscrollbars-padding] {
  display: grid;
  grid-template: 1fr/1fr;
}

[data-overlayscrollbars-grid] > [data-overlayscrollbars-padding],
[data-overlayscrollbars-grid] > [data-overlayscrollbars-viewport],
[data-overlayscrollbars-grid] > [data-overlayscrollbars-padding] > [data-overlayscrollbars-viewport] {
  height: auto !important;
  width: auto !important;
}

.os-scrollbar {
  contain: size layout;
  contain: size layout style;
  opacity: 0;
  pointer-events: none;
  position: absolute;
  transition: opacity 0.15s, visibility 0.15s, top 0.15s, right 0.15s, bottom 0.15s, left 0.15s;
  visibility: hidden;
}

body > .os-scrollbar {
  position: fixed;
  z-index: 99999;
}

.os-scrollbar-transitionless {
  transition: none;
}

.os-scrollbar-track {
  border: none !important;
  direction: ltr !important;
  padding: 0 !important;
  position: relative;
}

.os-scrollbar-handle {
  position: absolute;
}

.os-scrollbar-track,
.os-scrollbar-handle {
  height: 100%;
  pointer-events: none;
  width: 100%;
}

.os-scrollbar.os-scrollbar-track-interactive .os-scrollbar-track,
.os-scrollbar.os-scrollbar-handle-interactive .os-scrollbar-handle {
  pointer-events: auto;
  touch-action: none;
}

.os-scrollbar-horizontal {
  bottom: 0;
  left: 0;
}

.os-scrollbar-vertical {
  right: 0;
  top: 0;
}

.os-scrollbar-rtl.os-scrollbar-horizontal {
  right: 0;
}

.os-scrollbar-rtl.os-scrollbar-vertical {
  left: 0;
  right: auto;
}

.os-scrollbar-visible,
.os-scrollbar-interaction.os-scrollbar-visible {
  opacity: 1;
  visibility: visible;
}

.os-scrollbar-auto-hidden {
  opacity: 0;
  visibility: hidden;
}

.os-scrollbar-unusable,
.os-scrollbar-unusable *,
.os-scrollbar-wheel,
.os-scrollbar-wheel * {
  pointer-events: none !important;
}

.os-scrollbar-unusable .os-scrollbar-handle {
  opacity: 0 !important;
}

.os-scrollbar-horizontal .os-scrollbar-handle {
  bottom: 0;
}

.os-scrollbar-vertical .os-scrollbar-handle {
  right: 0;
}

.os-scrollbar-rtl.os-scrollbar-vertical .os-scrollbar-handle {
  left: 0;
  right: auto;
}

.os-scrollbar.os-scrollbar-horizontal.os-scrollbar-cornerless,
.os-scrollbar.os-scrollbar-horizontal.os-scrollbar-cornerless.os-scrollbar-rtl {
  left: 0;
  right: 0;
}

.os-scrollbar.os-scrollbar-vertical.os-scrollbar-cornerless,
.os-scrollbar.os-scrollbar-vertical.os-scrollbar-cornerless.os-scrollbar-rtl {
  bottom: 0;
  top: 0;
}

.os-scrollbar {
  --os-size: 0;
  --os-padding-perpendicular: 0;
  --os-padding-axis: 0;
  --os-track-border-radius: 0;
  --os-track-bg: none;
  --os-track-bg-hover: none;
  --os-track-bg-active: none;
  --os-track-border: none;
  --os-track-border-hover: none;
  --os-track-border-active: none;
  --os-handle-border-radius: 0;
  --os-handle-bg: none;
  --os-handle-bg-hover: none;
  --os-handle-bg-active: none;
  --os-handle-border: none;
  --os-handle-border-hover: none;
  --os-handle-border-active: none;
  --os-handle-min-size: 33px;
  --os-handle-max-size: none;
  --os-handle-perpendicular-size: 100%;
  --os-handle-perpendicular-size-hover: 100%;
  --os-handle-perpendicular-size-active: 100%;
  --os-handle-interactive-area-offset: 0;
}

.os-scrollbar .os-scrollbar-track {
  background: var(--os-track-bg);
  border: var(--os-track-border);
  border-radius: var(--os-track-border-radius);
  transition: opacity 0.15s, background-color 0.15s, border-color 0.15s;
}

.os-scrollbar .os-scrollbar-track:hover {
  background: var(--os-track-bg-hover);
  border: var(--os-track-border-hover);
}

.os-scrollbar .os-scrollbar-track:active {
  background: var(--os-track-bg-active);
  border: var(--os-track-border-active);
}

.os-scrollbar .os-scrollbar-handle {
  background: var(--os-handle-bg);
  border: var(--os-handle-border);
  border-radius: var(--os-handle-border-radius);
}

.os-scrollbar .os-scrollbar-handle::before {
  bottom: 0;
  content: "";
  display: block;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
}

.os-scrollbar .os-scrollbar-handle:hover {
  background: var(--os-handle-bg-hover);
  border: var(--os-handle-border-hover);
}

.os-scrollbar .os-scrollbar-handle:active {
  background: var(--os-handle-bg-active);
  border: var(--os-handle-border-active);
}

.os-scrollbar-horizontal {
  height: var(--os-size);
  padding: var(--os-padding-perpendicular) var(--os-padding-axis);
  right: var(--os-size);
}

.os-scrollbar-horizontal.os-scrollbar-rtl {
  left: var(--os-size);
  right: 0;
}

.os-scrollbar-horizontal .os-scrollbar-handle {
  height: var(--os-handle-perpendicular-size);
  max-width: var(--os-handle-max-size);
  min-width: var(--os-handle-min-size);
  transition: opacity 0.15s, background-color 0.15s, border-color 0.15s, height 0.15s;
}

.os-scrollbar-horizontal .os-scrollbar-handle::before {
  bottom: calc(var(--os-padding-perpendicular) * -1);
  top: calc((var(--os-padding-perpendicular) + var(--os-handle-interactive-area-offset)) * -1);
}

.os-scrollbar-horizontal:hover .os-scrollbar-handle {
  height: var(--os-handle-perpendicular-size-hover);
}

.os-scrollbar-horizontal:active .os-scrollbar-handle {
  height: var(--os-handle-perpendicular-size-active);
}

.os-scrollbar-vertical {
  bottom: var(--os-size);
  padding: var(--os-padding-axis) var(--os-padding-perpendicular);
  width: var(--os-size);
}

.os-scrollbar-vertical .os-scrollbar-handle {
  max-height: var(--os-handle-max-size);
  min-height: var(--os-handle-min-size);
  transition: opacity 0.15s, background-color 0.15s, border-color 0.15s, width 0.15s;
  width: var(--os-handle-perpendicular-size);
}

.os-scrollbar-vertical .os-scrollbar-handle::before {
  left: calc((var(--os-padding-perpendicular) + var(--os-handle-interactive-area-offset)) * -1);
  right: calc(var(--os-padding-perpendicular) * -1);
}

.os-scrollbar-vertical.os-scrollbar-rtl .os-scrollbar-handle::before {
  left: calc(var(--os-padding-perpendicular) * -1);
  right: calc((var(--os-padding-perpendicular) + var(--os-handle-interactive-area-offset)) * -1);
}

.os-scrollbar-vertical:hover .os-scrollbar-handle {
  width: var(--os-handle-perpendicular-size-hover);
}

.os-scrollbar-vertical:active .os-scrollbar-handle {
  width: var(--os-handle-perpendicular-size-active);
}

/* NONE THEME: */
[data-overlayscrollbars~=updating] > .os-scrollbar,
.os-theme-none.os-scrollbar {
  display: none !important;
}

/* DARK & LIGHT THEME: */
.os-theme-dark,
.os-theme-light {
  box-sizing: border-box;
  --os-size: 10px;
  --os-padding-perpendicular: 2px;
  --os-padding-axis: 2px;
  --os-track-border-radius: 10px;
  --os-handle-interactive-area-offset: 4px;
  --os-handle-border-radius: 10px;
}

.os-theme-dark {
  --os-handle-bg: rgba(0, 0, 0, 0.44);
  --os-handle-bg-hover: rgba(0, 0, 0, 0.55);
  --os-handle-bg-active: rgba(0, 0, 0, 0.66);
}

.os-theme-light {
  --os-handle-bg: rgba(255, 255, 255, 0.44);
  --os-handle-bg-hover: rgba(255, 255, 255, 0.55);
  --os-handle-bg-active: rgba(255, 255, 255, 0.66);
}

.os-no-css-vars.os-theme-dark.os-scrollbar .os-scrollbar-handle,
.os-no-css-vars.os-theme-light.os-scrollbar .os-scrollbar-handle {
  border-radius: 10px;
}

.os-no-css-vars.os-theme-dark.os-scrollbar .os-scrollbar-track,
.os-no-css-vars.os-theme-light.os-scrollbar .os-scrollbar-track {
  border-radius: 10px;
}

.os-no-css-vars.os-theme-dark.os-scrollbar .os-scrollbar-handle,
.os-no-css-vars.os-theme-light.os-scrollbar .os-scrollbar-handle {
  border-radius: 10px;
}

.os-no-css-vars.os-theme-dark.os-scrollbar-horizontal,
.os-no-css-vars.os-theme-light.os-scrollbar-horizontal {
  height: 10px;
  padding: 2px;
  right: 10px;
}

.os-no-css-vars.os-theme-dark.os-scrollbar-horizontal.os-scrollbar-rtl,
.os-no-css-vars.os-theme-light.os-scrollbar-horizontal.os-scrollbar-rtl {
  left: 10px;
  right: 0;
}

.os-no-css-vars.os-theme-dark.os-scrollbar-horizontal .os-scrollbar-handle,
.os-no-css-vars.os-theme-light.os-scrollbar-horizontal .os-scrollbar-handle {
  max-width: none;
  min-width: 33px;
}

.os-no-css-vars.os-theme-dark.os-scrollbar-horizontal .os-scrollbar-handle::before,
.os-no-css-vars.os-theme-light.os-scrollbar-horizontal .os-scrollbar-handle::before {
  bottom: -2px;
  top: -6px;
}

.os-no-css-vars.os-theme-dark.os-scrollbar-vertical,
.os-no-css-vars.os-theme-light.os-scrollbar-vertical {
  bottom: 10px;
  padding: 2px;
  width: 10px;
}

.os-no-css-vars.os-theme-dark.os-scrollbar-vertical .os-scrollbar-handle,
.os-no-css-vars.os-theme-light.os-scrollbar-vertical .os-scrollbar-handle {
  max-height: none;
  min-height: 33px;
}

.os-no-css-vars.os-theme-dark.os-scrollbar-vertical .os-scrollbar-handle::before,
.os-no-css-vars.os-theme-light.os-scrollbar-vertical .os-scrollbar-handle::before {
  left: -6px;
  right: -2px;
}

.os-no-css-vars.os-theme-dark.os-scrollbar-vertical.os-scrollbar-rtl .os-scrollbar-handle::before,
.os-no-css-vars.os-theme-light.os-scrollbar-vertical.os-scrollbar-rtl .os-scrollbar-handle::before {
  left: -2px;
  right: -6px;
}

.os-no-css-vars.os-theme-dark .os-scrollbar-handle {
  background: rgba(0, 0, 0, 0.44);
}

.os-no-css-vars.os-theme-dark:hover .os-scrollbar-handle {
  background: rgba(0, 0, 0, 0.55);
}

.os-no-css-vars.os-theme-dark:active .os-scrollbar-handle {
  background: rgba(0, 0, 0, 0.66);
}

.os-no-css-vars.os-theme-light .os-scrollbar-handle {
  background: rgba(255, 255, 255, 0.44);
}

.os-no-css-vars.os-theme-light:hover .os-scrollbar-handle {
  background: rgba(255, 255, 255, 0.55);
}

.os-no-css-vars.os-theme-light:active .os-scrollbar-handle {
  background: rgba(255, 255, 255, 0.66);
}

.section {
  padding-bottom: var(--section-padding-bottom);
  padding-top: var(--section-padding-top);
  position: relative;
}

.page-pillar .section-header {
  position: relative;
}

.no-bottom-padding {
  padding-bottom: 0;
}

.no-top-padding {
  padding-top: 0;
}

.show-for-medium {
  display: none;
}
@media (min-width: 768px) {
  .show-for-medium {
    display: block;
  }
}

@media (min-width: 768px) {
  .hide-for-medium {
    display: none;
  }
}

.section-header__title span {
  display: inline-block;
}

.page-pillar .section-header__kicker {
  /* stylelint-disable-line */
  font-family: garamond-premier-pro-display, serif;
  font-style: normal;
  font-weight: 500; /* stylelint-disable-line */
  color: var(--yellow);
  font-size: clamp(24px, 16px + 0.0166666667 * 100vw, 36px);
  margin-bottom: 2px;
}

.page-pillar .section-header__title {
  line-height: 1.5;
  margin-bottom: 26px;
}

.section-header__project-cat {
  --color: var(--dark-green);
  align-items: flex-start;
  display: flex;
}

.text-light .section-header__project-cat {
  --color: var(--white);
}

.section-header__project-cat .cat {
  /* stylelint-disable-line */
  font-family: neue-haas-grotesk-display, sans-serif;
  font-style: normal;
  font-weight: 700; /* stylelint-disable-line */
  align-items: center;
  border-radius: 20px;
  border-style: solid;
  border-width: 1px;
  cursor: pointer;
  display: inline-block;
  gap: 8px;
  justify-content: center;
  line-height: 1.1;
  padding: 12px;
  position: relative;
  text-align: center;
  text-decoration: none;
  transition: all 250ms ease;
  background-color: transparent;
  border-color: var(--color);
  color: var(--button-color);
  padding: 0.75em 1.5em;
  font-size: 12px;
  align-self: flex-start;
  display: flex;
}
.section-header__project-cat .cat .icon {
  display: inline;
  margin-left: 15px;
  position: relative;
  transition: all 250ms ease;
  vertical-align: middle;
}
.section-header__project-cat .cat .icon use {
  transition: all 250ms ease;
}
.section-header__project-cat .cat .indicator {
  background-color: currentcolor;
  border: 1px solid transparent;
  border-radius: 50%;
  display: block;
  height: 14px;
  width: 14px;
}
.section-header__project-cat .cat:not(a[href], button) {
  cursor: default;
}

.section-header__project-cat .label {
  color: var(--color);
}

.section-header__map-image-container {
  left: 0;
  pointer-events: none;
  position: absolute;
  top: 0;
  z-index: -1;
}

.button {
  /* stylelint-disable-line */
  font-family: neue-haas-grotesk-display, sans-serif;
  font-style: normal;
  font-weight: 700; /* stylelint-disable-line */
  align-items: center;
  border-radius: 20px;
  border-style: solid;
  border-width: 1px;
  cursor: pointer;
  display: inline-block;
  gap: 8px;
  justify-content: center;
  line-height: 1.1;
  padding: 12px;
  position: relative;
  text-align: center;
  text-decoration: none;
  transition: all 250ms ease;
  padding: 0.75em 1.5em;
  font-size: 16px;
  letter-spacing: 0.16px;
  background-color: var(--white);
  border-color: var(--white);
  color: var(--dark-grey);
}
.button .icon {
  display: inline;
  margin-left: 15px;
  position: relative;
  transition: all 250ms ease;
  vertical-align: middle;
}
.button .icon use {
  transition: all 250ms ease;
}
.button .indicator {
  background-color: currentcolor;
  border: 1px solid transparent;
  border-radius: 50%;
  display: block;
  height: 14px;
  width: 14px;
}
.button:focus-visible {
  outline: white dotted 2px;
  outline-offset: 2px;
}
.button:focus {
  outline: white dotted 2px;
  outline-offset: 2px;
}
.button:focus:not(:focus-visible) {
  outline: none;
}

.button:hover {
  background-color: var(--pomegranate);
  border-color: var(--pomegranate);
  color: var(--white);
}

.button.disabled,
.button[disabled] {
  cursor: none;
}

.button.hollow {
  background-color: transparent;
  border-color: var(--white);
  color: var(--white);
}

.button.hollow:hover {
  background-color: var(--white);
  border-color: var(--white);
  color: var(--dark-grey);
}

.button--dark-green {
  background-color: var(--dark-green);
  border-color: transparent;
  color: var(--white);
}

.button--dark-green:hover {
  background-color: var(--white);
  border-color: var(--dark-green);
  color: var(--dark-green);
}

.button--dark-green:focus-visible {
  background-color: var(--white);
  border-color: var(--dark-green);
  color: var(--dark-green);
  outline: var(--black) dotted 2px;
  outline-offset: 2px;
}

.button--dark-green:focus {
  background-color: var(--white);
  border-color: var(--dark-green);
  color: var(--dark-green);
  outline: var(--black) dotted 2px;
  outline-offset: 2px;
}

.card--project .card__location {
  /* stylelint-disable-line */
  font-family: garamond-premier-pro-display, serif;
  font-style: normal;
  font-weight: 500; /* stylelint-disable-line */
  color: var(--slate);
  font-size: 20px;
  line-height: 1;
  margin-bottom: 8px;
}

.card--project .card__title {
  /* stylelint-disable-line */
  font-family: neue-haas-grotesk-display, sans-serif;
  font-style: normal;
  font-weight: 600; /* stylelint-disable-line */
  color: var(--black);
  font-size: 20px;
  line-height: 1.1;
}

.card--project .card__title a {
  color: inherit;
  display: block;
  text-decoration: none;
}
.card--project .card__title a:focus-visible {
  outline: currentColor dotted 2px;
  outline-offset: 4px;
}
.card--project .card__title a:focus {
  outline: currentColor dotted 2px;
  outline-offset: 4px;
}
.card--project .card__title a:focus:not(:focus-visible) {
  outline: none;
}

.card--project .card__teaser {
  /* stylelint-disable-line */
  font-family: neue-haas-grotesk-display, sans-serif;
  font-style: normal;
  font-weight: 400; /* stylelint-disable-line */
  color: var(--black);
  font-size: 16px;
  line-height: 1.6;
  margin-top: 16px;
}

.card--image {
  box-shadow: 0px 4px 200px 0px rgba(255, 255, 255, 0), 0px 4px 30px 0px rgba(0, 0, 0, 0);
  display: block;
  overflow: hidden;
  position: relative;
  text-decoration: none;
  transform: translateY(0);
  transition: all 550ms ease;
}

.card--image .card__image {
  height: 100%;
  position: absolute;
  width: 100%;
}

.card--image picture,
.card--image img {
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.card--image .card__content {
  align-content: center;
  column-gap: 24px;
  display: grid;
  grid-auto-rows: auto;
  grid-template-areas: "content1 arrow";
  grid-template-columns: 3fr 1fr;
  height: 100%;
  min-height: 230px;
  padding: 32px 25px 32px 32px;
  position: relative;
  row-gap: 0;
  transition: background-color 250ms ease-in;
  will-change: background-color;
  z-index: 5;
}

.card--image .card__title {
  /* stylelint-disable-line */
  font-family: neue-haas-grotesk-display, sans-serif;
  font-style: normal;
  font-weight: 400; /* stylelint-disable-line */
  color: var(--headline-color);
  font-size: clamp(18px, 14px + 0.0083333333 * 100vw, 24px);
  line-height: 1.5;
  /* stylelint-disable-line */
  font-family: neue-haas-grotesk-display, sans-serif;
  font-style: normal;
  font-weight: 600; /* stylelint-disable-line */
  align-self: flex-end;
  color: var(--white);
  grid-area: content1;
  margin: 0;
}

.card--image .card__description {
  /* stylelint-disable-line */
  font-family: neue-haas-grotesk-display, sans-serif;
  font-style: normal;
  font-weight: 400; /* stylelint-disable-line */
  align-self: flex-start;
  color: #ADBAD6;
  font-size: 24px;
  grid-area: content2;
  letter-spacing: 0.24px;
  line-height: 1.1;
  opacity: 0;
  transform: translateY(20px);
  transition: all 250ms ease-in;
}

.card--image .icon {
  align-self: flex-end;
  grid-area: arrow;
  justify-self: flex-end;
  opacity: 0;
  transform: translateY(20px);
  transition: all 250ms ease-in 100ms;
}

.card--image:hover .card__content {
  background-color: var(--blue);
}
.card--image:hover .card__description {
  opacity: 1;
  transform: translateY(0);
}
.card--image:hover .icon {
  opacity: 1;
  transform: translateY(0);
}

.card--image:focus-visible {
  outline: rgb(220, 5, 0) dotted 2px;
  outline-offset: 2px;
  transform: translateY(-20px);
}
.card--image:focus-visible .card__content {
  background-color: var(--blue);
}
.card--image:focus-visible .card__description {
  opacity: 1;
  transform: translateY(0);
}
.card--image:focus-visible .icon {
  opacity: 1;
  transform: translateY(0);
}
.card--image:focus {
  outline: rgb(220, 5, 0) dotted 2px;
  outline-offset: 2px;
  transform: translateY(-20px);
}
.card--image:focus .card__content {
  background-color: var(--blue);
}
.card--image:focus .card__description {
  opacity: 1;
  transform: translateY(0);
}
.card--image:focus .icon {
  opacity: 1;
  transform: translateY(0);
}
.card--image:focus:not(:focus-visible) {
  outline: none;
}
.card--image:focus:not(:focus-visible) .card__content {
  background-color: unset;
}
.card--image:focus:not(:focus-visible) .card__description {
  opacity: 0;
  transform: translateY(20px);
}
.card--image:focus:not(:focus-visible) .icon {
  opacity: 1;
  transform: translateY(20px);
}

.mobile-menu {
  background-color: var(--dark-green);
  height: 0;
  left: 0;
  overflow: hidden;
  position: fixed;
  top: var(--header-height);
  transition: all 300ms ease-in;
  width: 100%;
  z-index: 1000;
}
@media (min-width: 1070px) {
  .mobile-menu {
    display: none;
  }
}

.mobile-menu.is-expanded {
  height: calc(100vh - var(--header-height));
}

.mobile-menu__inner {
  display: flex;
  flex-direction: column;
  height: 100%;
  overflow-x: auto;
}

.mobile-menu .navigation {
  flex: 1;
  padding: 34px var(--site-gutter);
}

.mobile-menu .menu-item {
  opacity: 0;
  transform: scale(1.15) translateY(-30px);
  transition: transform 0.5s cubic-bezier(0.4, 0.01, 0.165, 0.99), opacity 0.6s cubic-bezier(0.4, 0.01, 0.165, 0.99);
}
.mobile-menu .menu-item:nth-child(1) {
  transition-delay: 0.49s;
}
.mobile-menu .menu-item:nth-child(2) {
  transition-delay: 0.42s;
}
.mobile-menu .menu-item:nth-child(3) {
  transition-delay: 0.35s;
}
.mobile-menu .menu-item:nth-child(4) {
  transition-delay: 0.28s;
}
.mobile-menu .menu-item:nth-child(5) {
  transition-delay: 0.21s;
}
.mobile-menu .menu-item:nth-child(6) {
  transition-delay: 0.14s;
}
.mobile-menu .menu-item:nth-child(7) {
  transition-delay: 0.07s;
}
.mobile-menu .menu-item:nth-child(8) {
  transition-delay: 0s;
}

.mobile-menu.is-expanded .menu-item {
  opacity: 1;
  transform: scale(1) translateY(0px);
}
.mobile-menu.is-expanded .menu-item:nth-child(1) {
  transition-delay: 0.27s;
}
.mobile-menu.is-expanded .menu-item:nth-child(2) {
  transition-delay: 0.34s;
}
.mobile-menu.is-expanded .menu-item:nth-child(3) {
  transition-delay: 0.41s;
}
.mobile-menu.is-expanded .menu-item:nth-child(4) {
  transition-delay: 0.48s;
}
.mobile-menu.is-expanded .menu-item:nth-child(5) {
  transition-delay: 0.55s;
}
.mobile-menu.is-expanded .menu-item:nth-child(6) {
  transition-delay: 0.62s;
}
.mobile-menu.is-expanded .menu-item:nth-child(7) {
  transition-delay: 0.69s;
}
.mobile-menu.is-expanded .menu-item:nth-child(8) {
  transition-delay: 0.76s;
}

.mobile-menu .menu-item + .menu-item {
  margin-top: 32px;
}

.mobile-menu .menu-item a {
  /* stylelint-disable-line */
  font-family: neue-haas-grotesk-display, sans-serif;
  font-style: normal;
  font-weight: 500; /* stylelint-disable-line */
  color: var(--white);
  font-size: 24px;
  letter-spacing: 0.24px;
  line-height: 1.2;
  text-decoration: none;
}

.mobile-menu .menu-item.is-active > a {
  text-decoration: underline;
  text-decoration-color: var(--red);
  text-decoration-thickness: auto;
  text-decoration-thickness: 5px;
  text-underline-offset: 10px;
}

.mobile-menu .menu-item.is-active.active-ancestor > a {
  text-decoration: none;
}

.mobile-menu .dropdown-toggle {
  background: none;
  border: none;
  color: var(--yellow);
  cursor: pointer;
  display: inline-block;
  height: 30px;
  margin: 0px 0 0 10px;
  padding: 0;
  transform: translateY(3px);
  width: 30px;
}

.mobile-menu .dropdown-toggle.is-active {
  transform: rotate(180deg) translateY(3px);
}

.mobile-menu .sub-menu {
  display: none;
  margin-left: 20px;
  margin-top: 15px;
}

.mobile-menu .sub-menu .menu-item a {
  font-size: 20px;
  opacity: 0;
  transition: opacity 400ms ease;
}

.mobile-menu .sub-menu.is-expanded .menu-item a {
  opacity: 1;
}

.mobile-menu .sub-menu .menu-item.is-active > a {
  text-decoration-thickness: 3px;
  text-underline-offset: 7px;
}

.mobile-menu .sub-menu .menu-item + .menu-item {
  margin-top: 18px;
}

.mobile-menu-footer {
  border-top: 1px solid var(--slate);
  opacity: 0;
  padding: 34px var(--site-gutter);
  transition: opacity 500ms cubic-bezier(0.4, 0.01, 0.165, 0.99) 750ms;
}

.mobile-menu.is-expanded .mobile-menu-footer {
  opacity: 1;
}

.mobile-menu-footer .report-download .button {
  width: 100%;
}

.mobile-menu-footer .social-profiles {
  align-items: center;
  gap: 17px;
  justify-content: center;
  margin-bottom: 24px;
  margin-top: 36px;
}

.mobile-menu-footer .social-profiles a {
  color: var(--white);
}

.mobile-menu-footer .copyright {
  /* stylelint-disable-line */
  font-family: neue-haas-grotesk-display, sans-serif;
  font-style: normal;
  font-weight: 400; /* stylelint-disable-line */
  color: var(--white);
  font-size: 14px;
  letter-spacing: 0.14px;
  text-align: center;
}

.modal {
  position: relative;
  z-index: 100;
}

.modal__overlay {
  align-items: center;
  background: rgba(0, 0, 0, 0.6);
  bottom: 0;
  display: flex;
  justify-content: center;
  left: 0;
  position: fixed;
  right: 0;
  top: 0;
}

.modal__container {
  background-color: #fff;
  border-radius: 0;
  box-sizing: border-box;
  max-height: 100vh;
  max-width: 1224px;
  padding: 0;
  width: 100%;
}

.modal__content {
  background-color: var(--black);
}

.modal__header {
  align-items: center;
  display: flex;
  justify-content: space-between;
}

.modal__close {
  background: none;
  border: 0;
  color: var(--white);
  cursor: pointer;
  height: 24px;
  position: fixed;
  right: var(--site-gutter);
  top: -34px;
  width: 24px;
  z-index: 100;
}
@media (min-width: 992px) {
  .modal__close {
    right: 0;
  }
}

.modal--modal-newsletter .modal__close {
  color: var(--black);
  height: 30px;
  right: 8px;
  top: 10px;
  width: 30px;
}

.modal__close:hover .icon use {
  fill: var(--red);
}

@keyframes mmfade-in {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes mmfade-out {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
@keyframes mmslide-in {
  from {
    transform: translateY(15%);
  }
  to {
    transform: translateY(0);
  }
}
@keyframes mmslide-out {
  from {
    transform: translateY(0);
  }
  to {
    transform: translateY(-10%);
  }
}
.micromodal-slide {
  display: none;
}

.micromodal-slide.is-open {
  display: block;
}

.micromodal-slide[aria-hidden=false] .modal__overlay {
  animation: mmfade-in 0.3s cubic-bezier(0, 0, 0.2, 1);
}

.micromodal-slide[aria-hidden=false] .modal__container {
  animation: mmslide-in 0.3s cubic-bezier(0, 0, 0.2, 1);
}

.micromodal-slide[aria-hidden=true] .modal__overlay {
  animation: mmfade-out 0.3s cubic-bezier(0, 0, 0.2, 1);
}

.micromodal-slide[aria-hidden=true] .modal__container {
  animation: mmslide-out 0.3s cubic-bezier(0, 0, 0.2, 1);
}

.micromodal-slide .modal__container,
.micromodal-slide .modal__overlay {
  will-change: transform;
}

.modal--modal-newsletter .modal__container {
  max-width: 660px;
  padding: 38px 0 0;
}
@media (min-width: 768px) {
  .modal--modal-newsletter .modal__container {
    padding: 48px 13px 0;
  }
}

.modal--modal-newsletter .modal__content {
  height: 100vh;
}
@media (min-width: 768px) {
  .modal--modal-newsletter .modal__content {
    height: 625px;
  }
}
@media (min-width: 768px) {
  .modal--modal-newsletter .modal__content::after {
    background-image: url(../images/logo-flag.png);
    background-repeat: no-repeat;
    background-size: cover;
    content: "";
    display: block;
    height: 65px;
    left: -10px;
    position: absolute;
    top: 5%;
    width: 68px;
  }
}

.menu,
.sub-menu {
  list-style: none;
  margin: 0;
  padding: 0;
}

.anchor-menu-container {
  background-color: var(--white);
  box-shadow: 0 8px 20px rgba(var(--black-rgb), 0.1);
  display: flex;
  flex-direction: column;
  padding: 19px 0;
  top: var(--header-height);
  z-index: 60;
}
@media (min-width: 992px) {
  .anchor-menu-container {
    padding: 23px 0 18px;
  }
}

.anchor-menu-container::after {
  background-color: var(--red);
  bottom: -4px;
  content: "";
  display: block;
  height: 4px;
  position: absolute;
  width: var(--scroll-progress, 0);
}

@media (min-width: 992px) {
  .anchor-menu-container:not(.project-filters) .container {
    display: grid;
    grid-template-areas: "label label" "menu report";
    grid-template-columns: 3fr 1fr;
    grid-template-rows: auto;
  }
}

.anchor-menu-container__label {
  /* stylelint-disable-line */
  font-family: neue-haas-grotesk-display, sans-serif;
  font-style: normal;
  font-weight: 500; /* stylelint-disable-line */
  align-items: center;
  color: var(--slate);
  font-size: 16px;
  gap: 12px;
  grid-area: label;
  line-height: 1;
  margin-bottom: 12px;
  width: 100%;
}
@media (min-width: 992px) {
  .anchor-menu-container__label {
    margin-bottom: 14px;
  }
}

.anchor-menu-container .anchor-menu {
  display: flex;
  flex-direction: row;
  gap: 12px;
  grid-area: menu;
}
@media (min-width: 768px) {
  .anchor-menu-container .anchor-menu {
    gap: 24px;
  }
}

.anchor-menu-container .anchor-menu a {
  /* stylelint-disable-line */
  font-family: neue-haas-grotesk-display, sans-serif;
  font-style: normal;
  font-weight: 700; /* stylelint-disable-line */
  color: var(--lt-grey);
  font-size: 13px;
  line-height: 1.5;
  text-decoration: none;
  transition: color 150ms ease;
  white-space: nowrap;
}

[data-whatinput=keyboard] .anchor-menu-container .anchor-menu a:focus {
  color: rgba(var(--dark-green-rgb), 0.8);
  outline: rgb(220, 5, 0) dotted 2px;
  outline-offset: 2px;
}
[data-whatinput=keyboard] .anchor-menu-container .anchor-menu a:focus:not(:focus-visible) {
  outline: none;
}

.anchor-menu-container .anchor-menu a:hover {
  color: rgba(var(--dark-green-rgb), 0.8);
}

.anchor-menu-container .anchor-menu li.is-active a {
  color: var(--dark-green);
}

.anchor-menu-container .report-download {
  display: none;
}
@media (min-width: 992px) {
  .anchor-menu-container .report-download {
    display: flex;
    grid-area: report;
    justify-content: flex-end;
  }
}

.anchor-menu-container .report-download .button {
  background-color: transparent;
  border-color: var(--dark-green);
  color: var(--dark-green);
  padding: 0.75em 1.5em;
  font-size: 12px;
  align-self: center;
}
.anchor-menu-container .report-download .button:focus-visible {
  outline: rgb(220, 5, 0) dotted 2px;
  outline-offset: 4px;
}
.anchor-menu-container .report-download .button:focus {
  outline: rgb(220, 5, 0) dotted 2px;
  outline-offset: 4px;
}
.anchor-menu-container .report-download .button:focus:not(:focus-visible) {
  outline: none;
}
.anchor-menu-container .report-download .button:hover {
  background-color: var(--dark-green);
  border-color: var(--dark-green);
  color: var(--white);
}

.anchor-menu-container.project-filters .scroll-container {
  margin-left: calc(var(--site-gutter) * -1);
  margin-right: calc(var(--site-gutter) * -1);
  margin-top: -4px;
  padding-left: var(--site-gutter);
  padding-right: var(--site-gutter);
}

.anchor-menu-container .filters {
  display: flex;
  gap: 8px;
  height: 46px;
  padding-top: 4px;
}
@media (min-width: 768px) {
  .anchor-menu-container .filters {
    grid-area: menu;
    grid-column: span 2;
    padding-top: 4px;
  }
}

.anchor-menu-container .filters [data-overlayscrollbars-viewport] {
  display: flex;
  gap: 8px;
}

.anchor-menu-container.project-filters .os-scrollbar-horizontal {
  padding-left: var(--site-gutter);
  padding-right: var(--site-gutter);
}

.filters .button {
  background-color: transparent;
  border-color: var(--dark-grey);
  color: var(--button-color);
  padding: 0.75em 1.5em;
  font-size: 12px;
  align-self: flex-start;
  display: flex;
  flex: 1 0 auto;
  overflow: hidden;
}
@media (min-width: 992px) {
  .filters .button {
    flex: 0 0 auto;
  }
}
.filters .button:focus-visible, .filters .button:focus {
  outline: var(--dark-grey) dotted 2px;
  outline-offset: 2px;
}
.filters .button:focus:not(:focus-visible) {
  outline: none;
}

/**
 * This ::before pseudo-element is used to create a background
  * color based on the currentColor. You can't add opacity to
   * currentColor so this is a workaround.
   */
.filters .button::before {
  background-color: currentcolor;
  content: "";
  display: block;
  height: 100%;
  left: 0;
  opacity: 0;
  position: absolute;
  top: 0;
  transition: opacity 250ms ease-out;
  width: 100%;
}

.filters .button:hover::before,
.filters .button:focus::before {
  opacity: 0.2;
}

.filters .button.is-active {
  background-color: currentcolor;
  border-color: currentcolor;
  color: var(--button-color);
}

.filters .button.is-active .indicator {
  border-color: var(--white);
}

.filters .button .label {
  color: var(--black);
}

.filters .button.is-active.cat-defense-and-space .label,
.filters .button.is-active.cat-environmental-cleanup .label,
.filters .button.is-active.cat-infrastructure .label,
.filters .button.is-active.cat-nuclear-power .label {
  color: var(--white);
}

.filters .spacer {
  display: block;
  flex: 0 0 auto;
  height: 100%;
  width: var(--site-gutter);
}

.anchor-menu-container [data-overlayscrollbars~=host],
.anchor-menu-container [data-overlayscrollbars~=viewport] {
  margin-bottom: -10px;
  padding-bottom: 10px;
}

.bg-start {
  position: relative;
}

.bg-start .background {
  position: absolute;
  width: 100%;
}

.bg-blue {
  background: linear-gradient(180deg, rgba(36, 87, 150, 0) 0.07%, #245796 98.1%), #245796;
}

.bg-blue-image {
  background: linear-gradient(0deg, #0C305C 27.81%, rgba(48, 69, 76, 0) 62.49%), url("../images/unsplash_AzLiyDmG1Oo.jpg"), lightgray no-repeat;
  background-size: cover;
}

.bg-yellow {
  background-color: #F0CD7B;
}

.background {
  background-color: red;
  left: 0;
  opacity: 0;
  top: 0;
  transition: opacity 500ms ease-in-out;
  width: 100%;
}

.background.is-visible {
  opacity: 1;
}

.bg-dark-green {
  background: var(--dark-green);
  color: white;
  opacity: 1;
}

div[class*=bg-dark-green-image-] {
  background-repeat: no-repeat;
  background-size: cover;
}

.bg-dark-green-image-1 {
  background-image: url(../images/bg-green-image-1.webp);
}

.bg-dark-green-image-2 {
  background-image: url(../images/bg-green-image-2.webp);
}

.bg-dark-green-image-3 {
  background-image: url(../images/bg-green-image-3.png);
}

.bg-dark-green-image-4 {
  background-image: url(../images/bg-green-image-4.png);
}

.bg-south-america::before {
  background-attachment: fixed;
  background-image: url(../images/bg-south-america.png);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  content: "";
  display: block;
  height: 100%;
  opacity: 0.6;
  position: absolute;
  width: 100%;
}
@media (min-width: 768px) {
  .bg-south-america::before {
    background-size: 955px 955px;
  }
}
.section--blockquote {
  --text-color: var(--dark-green);
  --deco-color: var(--dark-green);
  --opacity: 0;
}
@media (prefers-reduced-motion: reduce) {
  .section--blockquote {
    --opacity: 1;
  }
}

.section--blockquote.has-image {
  --opacity: 1;
  margin-bottom: var(--section-padding-bottom);
  margin-top: var(--section-padding-top);
  padding-bottom: 0;
  padding-top: 0;
}

.section--blockquote .quote {
  position: relative;
  text-align: center;
}
@media (min-width: 992px) {
  .section--blockquote .quote {
    padding-inline: var(--site-gutter);
  }
}

.section--blockquote.has-image .quote__image-container {
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
}

.section--blockquote .quote__image-container picture {
  height: 100%;
}

.section--blockquote .quote__image-container img {
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.section--blockquote.has-image .quote-container {
  align-items: center;
  display: flex;
  height: 100%;
  min-height: 60vh;
  opacity: 0;
  padding: 0 var(--site-gutter);
  position: relative;
  width: 100%;
}
@media (min-width: 768px) {
  .section--blockquote.has-image .quote-container {
    min-height: 764px;
  }
}
@media (prefers-reduced-motion: reduce) {
  .section--blockquote.has-image .quote-container {
    opacity: 1;
  }
}
.mobile-edge .section--blockquote.has-image .quote-container, .mobile-firefox .section--blockquote.has-image .quote-container {
  min-height: 490px;
}

.section--blockquote.has-image .container {
  margin: 0 auto;
}

.section--blockquote .quote__text {
  /* stylelint-disable-line */
  font-family: neue-haas-grotesk-display, sans-serif;
  font-style: normal;
  font-weight: 400; /* stylelint-disable-line */
  color: var(--text-color);
  font-size: clamp(40px, 2.6666666667px + 0.0777777778 * 100vw, 96px);
  line-height: 1;
  text-align: center;
}

.section--blockquote .quote__text .block {
  --text-color: var(--white);
  background: var(--dark-green);
  border-radius: 12px;
  color: var(--text-color);
  display: inline-block;
  line-height: 1;
  opacity: var(--opacity);
  padding: 0.1em 0.2em;
  white-space: break-spaces;
}

.section--blockquote .quote-deco {
  color: var(--deco-color);
  display: block;
  font-size: clamp(64px, 21.3333333333px + 0.0888888889 * 100vw, 128px);
  height: 24px;
  line-height: 1;
  margin: 0 auto;
  opacity: var(--opacity);
  position: relative;
  width: 19px;
}
@media (min-width: 992px) {
  .section--blockquote .quote-deco {
    height: 45px;
    width: 39px;
  }
}

.section--blockquote .quote-deco__open {
  margin-bottom: 20px;
}
@media (min-width: 992px) {
  .section--blockquote .quote-deco__open {
    margin-bottom: 40px;
  }
}

.section--blockquote .quote-deco__close {
  margin-top: 20px;
}
@media (min-width: 992px) {
  .section--blockquote .quote-deco__close {
    margin-top: 40px;
  }
}

.section--blockquote .quote__cite {
  color: var(--text-color);
  display: block;
  font-style: normal;
  line-height: 1.6;
  margin-top: 30px;
  opacity: var(--opacity);
  text-align: center;
}

.section--blockquote .quote__cite strong {
  /* stylelint-disable-line */
  font-family: neue-haas-grotesk-display, sans-serif;
  font-style: normal;
  font-weight: 600; /* stylelint-disable-line */
  letter-spacing: 0.16px;
  line-height: 1.5;
}

.section--blockquote .r-break {
  display: inline;
}
@media (min-width: 768px) {
  .section--blockquote .r-break {
    display: block;
  }
}

@media (min-width: 992px) {
  .blockquote--home {
    --section-padding-bottom: 100px;
  }
}

.blockquote--home .quote__text span {
  margin-top: 0.5rem;
}
@media (min-width: 992px) {
  .blockquote--home .quote__text span {
    margin-top: 1rem;
  }
}

.blockquote--our-people-1,
.blockquote--our-people-2 {
  --text-color: var(--dark-green);
  --deco-color: var(--dark-green);
}

.blockquote--our-people-1 .quote-container,
.blockquote--our-people-2 .quote-container {
  background-color: var(--yellow-light);
}

.blockquote--our-people-1 .quote__text {
  font-size: clamp(28px, 14.6666666667px + 0.0277777778 * 100vw, 48px);
  line-height: 1.5;
  max-width: 1250px;
}

.blockquote--our-people-2 .quote__text {
  font-size: clamp(28px, 14.6666666667px + 0.0277777778 * 100vw, 48px);
  line-height: 1.5;
  margin: 0 auto;
  max-width: 1100px;
}

.blockquote--bechtel-1 .quote-container {
  --text-color: var(--white);
  --deco-color: var(--divider-color);
}

.blockquote--bechtel-1 .quote__text {
  font-size: clamp(24px, 13.3333333333px + 0.0222222222 * 100vw, 40px);
  letter-spacing: 0.4px;
  line-height: 1.6;
  margin: 0 auto;
  max-width: 1050px;
}

.blockquote--bechtel-1 .quote__cite {
  color: var(--yellow);
}

.blockquote--connected-1 .quote__text {
  margin: 0 auto;
  max-width: 1100px;
}

.char {
  opacity: 0;
}
@media (prefers-reduced-motion: reduce) {
  .char {
    opacity: 1;
  }
}

.section--blockquote.animation-complete .char,
.section--blockquote.animation-complete .block {
  opacity: 1;
}

.section--brgs .section-header {
  display: none;
}
@media (min-width: 768px) {
  .section--brgs .section-header {
    display: block;
  }
}

.section--brgs .section-header__title {
  --headline-color: var(--dark-green);
  font-size: clamp(24px, 18.6666666667px + 0.0111111111 * 100vw, 32px);
  line-height: 1.5;
}

.section--brgs .columns {
  display: flex;
  flex-direction: column-reverse;
}
@media (min-width: 768px) {
  .section--brgs .columns {
    align-items: flex-start;
    column-gap: 24px;
    display: grid;
    grid-template-columns: 1fr 1fr;
  }
}

@media (min-width: 768px) {
  .section--brgs .content {
    padding-right: 40px;
  }
}
@media (min-width: 992px) {
  .section--brgs .content {
    padding-right: 60px;
  }
}

.section--brgs .content .section-header {
  display: block;
}
@media (min-width: 768px) {
  .section--brgs .content .section-header {
    display: none;
  }
}

.section--brgs .items {
  margin-top: 58px;
  max-width: 400px;
}

.section--brgs .item {
  border-bottom: 1px solid #E2E5E7;
  opacity: 0;
  padding-bottom: 9px;
  padding-top: 7px;
  transform: translateY(20px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.section--brgs .item.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.section--brgs .item__title {
  /* stylelint-disable-line */
  font-family: neue-haas-grotesk-display, sans-serif;
  font-style: normal;
  font-weight: 400; /* stylelint-disable-line */
  color: var(--headline-color);
  font-size: clamp(18px, 14px + 0.0083333333 * 100vw, 24px);
  line-height: 1.5;
  color: var(--dark-green);
}

.section--brgs .item__subtitle {
  color: var(--slate);
  line-height: 1.6;
  margin-top: 1px;
}

.section--brgs .image-container {
  column-gap: 18px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin-top: 24px;
  position: relative;
}
@media (min-width: 768px) {
  .section--brgs .image-container {
    margin-left: -60px;
    margin-top: 0;
  }
}
@media (min-width: 992px) {
  .section--brgs .image-container {
    column-gap: 24px;
    margin-left: -114px;
  }
}

.section--brgs .image {
  opacity: 0;
  transition: opacity 250ms;
}

.section--brgs .image-1 {
  align-self: flex-end;
  justify-self: flex-end;
}
@media (min-width: 768px) {
  .section--brgs .image-1 {
    padding-left: 40px;
  }
}
@media (min-width: 992px) {
  .section--brgs .image-1 {
    padding-left: 0;
  }
}

.section--brgs .image-2 {
  align-self: flex-end;
  padding-right: 22px;
}

.section--brgs .image-3 {
  grid-column: span 2;
}

.section--brgs .image-4 {
  grid-column: 2/3;
  margin-top: -40px;
  max-width: 90%;
}
@media (min-width: 768px) {
  .section--brgs .image-4 {
    margin-bottom: -100%;
    margin-top: 0;
  }
}

.section--bechtel-org-chart .section-header__title {
  /* stylelint-disable-line */
  font-family: neue-haas-grotesk-display, sans-serif;
  font-style: normal;
  font-weight: 600; /* stylelint-disable-line */
  color: var(--yellow);
  font-size: 24px;
  line-height: 1.5;
  margin-bottom: 32px;
  text-align: center;
}
@media (min-width: 768px) {
  .section--bechtel-org-chart .section-header__title {
    margin-bottom: 64px;
  }
}

.section--bechtel-org-chart .chart-toggles {
  display: flex;
  gap: 8px;
  margin-bottom: 32px;
}
@media (min-width: 768px) {
  .section--bechtel-org-chart .chart-toggles {
    margin-bottom: 64px;
  }
}

.section--bechtel-org-chart .button {
  background-color: transparent;
  border-color: var(--yellow);
  color: var(--yellow);
  border-radius: 8px;
  flex: 1 1 0;
}

.section--bechtel-org-chart .button.is-active {
  background-color: var(--yellow);
  border-color: var(--yellow);
  color: var(--dark-green);
}

.section--bechtel-org-chart .chart-legend__inner {
  border-color: #B6BDC3;
  padding: 24px;
}

.section--bechtel-org-chart .chart-legend__item {
  color: var(--white);
}

.section--bechtel-org-chart .chart-container {
  margin: 0 auto;
  max-width: 1000px;
}

.section--chart-our-communities {
  padding-top: 0;
}

.section--chart-our-communities .chart-container {
  margin: 0 auto;
  max-width: 1000px;
}

.section--chart-our-impact {
  min-height: 850px;
}

.section--chart-our-impact .columns {
  align-items: center;
  column-gap: 24px;
  display: grid;
  grid-template-columns: 1fr;
}
@media (min-width: 768px) {
  .section--chart-our-impact .columns {
    grid-template-columns: 1fr 1fr;
  }
}
@media (min-width: 992px) {
  .section--chart-our-impact .columns {
    grid-template-columns: 2fr 3fr;
  }
}

.section--chart-our-impact .content {
  position: relative;
}

.section--chart-our-impact .section-header {
  margin-bottom: 24px;
}

.section--chart-our-impact .section-header__title {
  font-size: clamp(24px, 18.6666666667px + 0.0111111111 * 100vw, 32px);
  line-height: 1.5;
}

.section--chart-our-impact .content p strong {
  font-size: clamp(18px, 14px + 0.0083333333 * 100vw, 24px);
}

.section--chart-our-impact .chart-wrapper {
  margin: 40px 0 0 0;
  min-width: 100%;
}
@media (min-width: 992px) {
  .section--chart-our-impact .chart-wrapper {
    margin: 0 calc(var(--site-gutter) * -1) 0 0;
    min-width: unset;
  }
}

.section--chart-our-impact .chart-container {
  height: 600px;
  margin: 0 auto;
  position: relative;
}
@media (min-width: 768px) {
  .section--chart-our-impact .chart-container {
    height: 65vh;
    max-height: 600px;
  }
  .mobile-edge .section--chart-our-impact .chart-container, .mobile-firefox .section--chart-our-impact .chart-container {
    height: 500px;
  }
}
@media (min-width: 992px) {
  .section--chart-our-impact .chart-container {
    width: 530px;
  }
}

.section--chart-our-impact .chart-legend {
  container-type: inline-size;
}

.section--chart-our-impact .chart-legend__inner {
  flex-direction: column;
  padding: 12px 18px;
  width: 100%;
}
@container (min-width: 500px) {
  .section--chart-our-impact .chart-legend__inner {
    flex-direction: row;
    flex-wrap: wrap;
  }
}
@container (min-width: 768px) {
  .section--chart-our-impact .chart-legend__inner {
    width: auto;
  }
}

.section--chart-our-impact .chart-legend__item {
  width: 100%;
}
@container (min-width: 500px) {
  .section--chart-our-impact .chart-legend__item {
    width: calc(50% - 14px);
  }
}
@container (min-width: 768px) {
  .section--chart-our-impact .chart-legend__item {
    width: auto;
  }
}

.section--chart-our-impact .chart-legend__item:nth-child(1) .indicator {
  background-color: #EA6966;
}

.section--chart-our-impact .chart-legend__item:nth-child(2) .indicator {
  background-color: #8AB08A;
}

.section--chart-our-impact .chart-legend__item:nth-child(3) .indicator {
  background-color: #BAB0D4;
}

.section--chart-our-impact .chart-legend__item:nth-child(4) .indicator {
  background-color: #F58D18;
}

.section--our-people-chart .section-header {
  display: grid;
  gap: 25px;
  grid-template-areas: "stat note" "toggles toggles";
  grid-template-columns: 1fr 1fr;
  justify-content: space-between;
}
@media (min-width: 992px) {
  .section--our-people-chart .section-header {
    grid-template-areas: "stat note toggles";
    grid-template-columns: repeat(3, auto);
  }
}

.section--our-people-chart .stat {
  grid-area: stat;
}

.section--our-people-chart .stat__value {
  line-height: 1;
  /* stylelint-disable-line */
  font-family: neue-haas-grotesk-display, sans-serif;
  font-style: normal;
  font-weight: 700; /* stylelint-disable-line */
  color: var(--dark-green);
  font-size: clamp(44px, -12px + 0.1166666667 * 100vw, 128px);
  letter-spacing: -1.28px;
  line-height: 1;
}
.section--our-people-chart .stat__value::before, .section--our-people-chart .stat__value::after {
  content: "";
  display: block;
  height: 0;
  width: 0;
}
.section--our-people-chart .stat__value::before {
  margin-bottom: calc(-0.15em + -2px);
}
.section--our-people-chart .stat__value::after {
  margin-top: calc(-0.1222222222em + 0px);
}
@media (min-width: 768px) {
  .section--our-people-chart .stat__value {
    line-height: 1;
  }
  .section--our-people-chart .stat__value::before, .section--our-people-chart .stat__value::after {
    content: "";
    display: block;
    height: 0;
    width: 0;
  }
  .section--our-people-chart .stat__value::before {
    margin-bottom: calc(-0.15em + -4px);
  }
  .section--our-people-chart .stat__value::after {
    margin-top: calc(-0.1222222222em + 0px);
  }
}

.section--our-people-chart .stat__label {
  /* stylelint-disable-line */
  font-family: neue-haas-grotesk-display, sans-serif;
  font-style: normal;
  font-weight: 600; /* stylelint-disable-line */
  color: var(--dark-green);
  font-size: 16px;
  letter-spacing: 0.16px;
  line-height: 1.5;
  margin-top: 16px;
}
@media (min-width: 768px) {
  .section--our-people-chart .stat__label {
    padding-left: 14px;
  }
}

.section--our-people-chart .note {
  /* stylelint-disable-line */
  font-family: neue-haas-grotesk-display, sans-serif;
  font-style: normal;
  font-weight: 600; /* stylelint-disable-line */
  color: var(--dark-green);
  font-size: 24px;
  grid-area: note;
  line-height: 1.1;
}

.section--our-people-chart .note svg {
  color: var(--orange);
  display: block;
  margin-bottom: 4px;
}

.section--our-people-chart .chart-toggles {
  align-items: flex-start;
  display: flex;
  gap: 8px;
  grid-area: toggles;
  margin-top: 27px;
}

.section--our-people-chart .button {
  background-color: transparent;
  border-color: var(--dark-blue);
  color: var(--dark-blue);
  border-radius: 8px;
  box-shadow: 0px 3px 9px 0px rgba(0, 0, 0, 0);
  font-size: 16px;
  letter-spacing: 0.16px;
  line-height: 1.2;
  padding: 12px 24px;
}
.section--our-people-chart .button:focus-visible {
  outline-color: var(--dark-green);
}
.section--our-people-chart .button:focus {
  outline-color: var(--dark-green);
}

.section--our-people-chart .button:hover,
.section--our-people-chart .button.is-active {
  background-color: var(--dark-blue);
  border-color: var(--dark-blue);
  color: var(--white);
}

.section--our-people-chart .button.is-active {
  box-shadow: 0px 3px 9px 0px rgba(0, 0, 0, 0.15);
}

.section--our-people-chart .chart-container {
  margin: 0 auto;
  max-width: 1000px;
}

.chart-legend {
  display: flex;
  justify-content: center;
  padding-bottom: 14px;
  padding-top: 34px;
}

.chart-legend__inner {
  border: 1px solid var(--slate);
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 12px 24px;
}
@media (min-width: 768px) {
  .chart-legend__inner {
    flex-direction: row;
    gap: 24px;
  }
}

.chart-legend__item {
  /* stylelint-disable-line */
  font-family: neue-haas-grotesk-display, sans-serif;
  font-style: normal;
  font-weight: 700; /* stylelint-disable-line */
  align-items: center;
  color: var(--dark-green);
  display: flex;
  font-size: 14px;
  gap: 8px;
  letter-spacing: -0.14px;
}

.chart-legend__item .indicator {
  border-radius: 50%;
  flex: 0 0 auto;
  height: 20px;
  width: 20px;
}

.chart-legend__item:nth-child(1) .indicator {
  background-color: var(--rose);
}

.chart-legend__item:nth-child(2) .indicator {
  background-color: var(--dark-blue);
}

.section--our-people-chart .chart-note {
  /* stylelint-disable-line */
  font-family: neue-haas-grotesk-display, sans-serif;
  font-style: italic;
  font-weight: 400; /* stylelint-disable-line */
  color: var(--dark-green);
  font-size: 12px;
  line-height: 1.5;
  margin: 23px 0 0 auto;
  max-width: 270px;
}

.section--explore-more .section-header {
  margin-bottom: 30px;
  text-align: center;
}
@media (min-width: 768px) {
  .section--explore-more .section-header {
    margin-bottom: 62px;
  }
}

.section--explore-more .section-header__title {
  line-height: 1.5;
  /* stylelint-disable-line */
  font-family: neue-haas-grotesk-display, sans-serif;
  font-style: normal;
  font-weight: 400; /* stylelint-disable-line */
  font-size: clamp(32px, -10.6666666667px + 0.0888888889 * 100vw, 96px);
}
.section--explore-more .section-header__title::before, .section--explore-more .section-header__title::after {
  content: "";
  display: block;
  height: 0;
  width: 0;
}
.section--explore-more .section-header__title::before {
  margin-bottom: calc(-0.4em + 1px);
}
.section--explore-more .section-header__title::after {
  margin-top: calc(-0.3722222222em + 17px);
}

.section--explore-more .cards {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.section--explore-more [data-num-item="2"] {
  gap: clamp(24px, -13.3333333333px + 0.0777777778 * 100vw, 80px);
  justify-content: center;
}
@media (min-width: 555px) {
  .section--explore-more [data-num-item="2"] {
    flex-direction: row;
  }
}

@media (min-width: 800px) {
  .section--explore-more [data-num-item="3"] {
    flex-direction: row;
  }
}

.section--explore-more [data-num-item="2"] .card {
  width: 100%;
}
@media (min-width: 768px) {
  .section--explore-more [data-num-item="2"] .card {
    width: 50%;
  }
}
@media (min-width: 992px) {
  .section--explore-more [data-num-item="2"] .card {
    max-width: 430px;
  }
}

.section--explore-more .card {
  flex: 1;
}

@media (min-width: 992px) {
  .section--explore-more .card--image:hover {
    box-shadow: 0px 4px 200px 0px rgba(255, 255, 255, 0.25), 0px 4px 30px 0px rgba(0, 0, 0, 0.15);
    transform: translateY(-20px);
  }
}

.hero {
  --hero-height: 500px;
  --section-padding-top: 0;
  --section-padding-bottom: 0;
  align-items: center;
  height: calc(var(--hero-height) + 80px);
  overflow: hidden;
  position: relative;
}
@media (min-width: 768px) {
  .hero {
    --hero-height: 50vh;
  }
}
@media (min-width: 992px) {
  .hero {
    --hero-height: 670px;
  }
}
@media (min-width: 576px) and (max-width: 991px) and (orientation: landscape) {
  .hero {
    height: 100vh;
  }
}

.hero .line-wrapper {
  overflow: hidden;
}

.hero .line {
  opacity: 0;
  transform: translateY(40px);
  visibility: hidden;
}

.hero--map {
  --hero-height: 230px;
  background-color: rgba(184, 191, 198, 0.1);
}
@media (min-width: 768px) {
  .hero--map {
    --hero-height: 400px;
  }
}
@media (min-width: 992px) {
  .hero--map {
    --hero-height: 530px;
  }
}

.hero--map .hero__kicker {
  color: var(--dark-green);
}

.hero__image-container,
.hero__video-container {
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
}

.hero__image-container picture {
  height: 100%;
}

.hero__video-container iframe,
.hero__video-container .hero__video {
  height: 100%;
  width: 100%;
}

.hero__video-container .hero__video {
  object-fit: cover;
}

.content-align-center .hero__image-container::after {
  background: linear-gradient(81deg, rgba(0, 0, 0, 0.2) 24.13%, rgba(0, 0, 0, 0) 68.39%), linear-gradient(0deg, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.3) 100%);
  content: "";
  display: block;
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
}

.hero__image-container img {
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.hero .container {
  height: 100%;
  padding-top: var(--header-height);
  position: relative;
  z-index: 10;
}

.hero__content {
  display: flex;
  flex-direction: column;
  height: 100%;
  justify-content: center;
}

.hero--home .hero__content {
  justify-content: flex-end;
  padding-bottom: 110px;
}
@media (min-width: 576px) and (max-width: 991px) and (orientation: landscape) {
  .hero--home .hero__content {
    padding-bottom: 0;
  }
}

@media (min-width: 768px) {
  .content-align-left .hero__content {
    margin-left: var(--site-gutter);
  }
}

.content-align-center .hero__content {
  align-items: center;
  text-align: center;
}
@media (min-width: 768px) {
  .content-align-center .hero__content {
    margin-top: -20px;
  }
}
@media (min-width: 992px) {
  .content-align-center .hero__content {
    margin-top: 0;
  }
}

.content-align-right .hero__content {
  text-align: right;
}
@media (min-width: 768px) {
  .content-align-right .hero__content {
    margin-right: var(--site-gutter);
  }
}

.hero__icon {
  margin-bottom: 18px;
}

.hero__kicker,
.hero__title,
.hero__subtitle,
.hero__action {
  opacity: 1;
}
@media (prefers-reduced-motion: no-preference) {
  .hero__kicker,
  .hero__title,
  .hero__subtitle,
  .hero__action {
    opacity: 0;
  }
}
@media (prefers-reduced-motion: reduce) {
  .hero__kicker,
  .hero__title,
  .hero__subtitle,
  .hero__action {
    opacity: 1;
  }
}

.hero__kicker {
  /* stylelint-disable-line */
  font-family: garamond-premier-pro-display, serif;
  font-style: normal;
  font-weight: 500; /* stylelint-disable-line */
  color: var(--white);
  font-size: clamp(24px, 16px + 0.0166666667 * 100vw, 36px);
  letter-spacing: 0.01em;
  line-height: 1;
  margin-bottom: 3px;
}

.hero__title {
  /* stylelint-disable-line */
  font-family: neue-haas-grotesk-display, sans-serif;
  font-style: normal;
  font-weight: 500; /* stylelint-disable-line */
  color: var(--white);
  font-size: clamp(60px, 36px + 0.05 * 100vw, 96px);
  letter-spacing: 0.01em;
  line-height: 1.1;
}
@media (min-width: 576px) and (max-width: 991px) and (orientation: landscape) {
  .hero__title {
    font-size: clamp(40px, 26.6666666667px + 0.0277777778 * 100vw, 60px);
  }
}

.hero--404 .hero__title {
  /* stylelint-disable-line */
  font-family: neue-haas-grotesk-display, sans-serif;
  font-style: normal;
  font-weight: 700; /* stylelint-disable-line */
  font-size: clamp(98px, 78px + 0.0416666667 * 100vw, 128px);
  letter-spacing: 1.28px;
  line-height: 1.1;
}

.hero--map .hero__title {
  color: var(--limed-spruce);
}

.hero__subtitle {
  --headline-color: var(--white);
  /* stylelint-disable-line */
  font-family: neue-haas-grotesk-display, sans-serif;
  font-style: normal;
  font-weight: 500; /* stylelint-disable-line */
  font-size: 24px;
  line-height: 1.5;
  margin: 0;
}

.hero--404 .hero__subtitle {
  max-width: 300px;
}

.hero__title.is-large {
  font-size: clamp(50px, -2px + 0.1083333333 * 100vw, 128px);
  letter-spacing: 1.28px;
}

.hero__action {
  margin-top: 24px;
  overflow: hidden;
}

.hero__action .button {
  opacity: 1;
  transform: translateY(0);
  visibility: visible;
}
@media (prefers-reduced-motion: no-preference) {
  .hero__action .button {
    opacity: 0;
    transform: translateY(40px);
    visibility: hidden;
  }
}
@media (prefers-reduced-motion: reduce) {
  .hero__action .button {
    opacity: 1;
    transform: translateY(0);
    visibility: visible;
  }
}

.hero__arrow {
  bottom: 30px;
  color: var(--lt-grey);
  left: 0;
  position: absolute;
}
@media (min-width: 768px) {
  .hero__arrow {
    left: var(--site-gutter);
  }
}

.hero__explore {
  /* stylelint-disable-line */
  font-family: neue-haas-grotesk-display, sans-serif;
  font-style: normal;
  font-weight: 400; /* stylelint-disable-line */
  align-items: center;
  bottom: 30px;
  color: var(--lt-grey);
  color: rgba(var(--white-rgb), 0.8);
  display: flex;
  flex-direction: column;
  font-size: 20px;
  gap: 16px;
  left: 50%;
  letter-spacing: 0.2px;
  padding: 0 20px;
  position: absolute;
  transform: translateX(-50%);
}

.project-map svg {
  height: 100%;
  position: absolute;
  top: 80px;
  transform: scale(1.2);
  width: 100%;
}
@media (min-width: 768px) {
  .project-map svg {
    right: 50%;
    transform: translateX(50%);
    width: 300%;
  }
}
@media (min-width: 992px) {
  .project-map svg {
    right: 0;
    transform: translateX(0);
    width: 90%;
  }
}

.project-map svg path {
  fill: var(--map-country-color);
  stroke: #fff;
  stroke-width: 1px;
  transition: fill 0.3s ease;
}

.hero--bechtel-org .hero__title {
  font-size: clamp(60px, 14.6666666667px + 0.0944444444 * 100vw, 128px);
}

.hero--bechtel-org .hero__title span {
  color: #8AB08A;
}

.section--image-logo {
  --section-heights: calc(100vh - 50px - var( --sub-menu-container-height, 0 ));
  height: var(--section-heights);
  padding: 0;
  position: relative;
}
.mobile-edge .section--image-logo, .mobile-firefox .section--image-logo {
  --section-heights: calc(670px - 50px - var( --sub-menu-container-height, 0 ));
}

.section--image-logo .image-container {
  display: block;
  height: 100%;
  width: 100%;
}

.section--image-logo .image-container picture {
  height: 100%;
}

.section--image-logo .image-container img {
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.section--image-logo .logo-container {
  background-color: var(--white);
  height: 100%;
  left: 0;
  opacity: 0;
  position: absolute;
  top: 0;
  width: 100%;
}

.section--image-logo .logo-container__inner {
  align-items: center;
  display: flex;
  height: 100%;
  justify-content: center;
  padding: 40px;
  width: 100%;
}

.section--image-logo .logo-container img {
  aspect-ratio: 533/402;
  max-height: 402px;
}

.section--image-text-grid .section-header {
  margin-bottom: 50px;
}

.section--image-text-grid .section-header__title {
  font-size: clamp(24px, 18.6666666667px + 0.0111111111 * 100vw, 32px);
  margin-bottom: 0;
  text-align: center;
}

.section--image-text-grid.text-light .section-header__title {
  --headline-color: var(--yellow);
}

.section--image-text-grid .block-grid {
  --vertical-space: 80px;
  display: flex;
  flex-wrap: wrap;
  margin-left: calc(30px / -2);
  margin-right: calc(30px / -2);
  justify-content: center;
  margin-top: calc(var(--vertical-space) * -1);
}
.section--image-text-grid .block-grid .block {
  margin-left: calc(30px / 2);
  margin-right: calc(30px / 2);
  width: calc((100% / 2) - 30px);
}
@media (min-width: 768px) {
  .section--image-text-grid .block-grid {
    display: flex;
    flex-wrap: wrap;
    margin-left: calc(30px / -2);
    margin-right: calc(30px / -2);
  }
  .section--image-text-grid .block-grid .block {
    margin-left: calc(30px / 2);
    margin-right: calc(30px / 2);
    width: calc((100% / 3) - 30px);
  }
}
@media (min-width: 992px) {
  .section--image-text-grid .block-grid {
    display: flex;
    flex-wrap: wrap;
    margin-left: calc(60px / -2);
    margin-right: calc(60px / -2);
  }
  .section--image-text-grid .block-grid .block {
    margin-left: calc(60px / 2);
    margin-right: calc(60px / 2);
    width: calc((100% / 3) - 60px);
  }
}

.section--image-text-grid .block {
  display: flex;
  flex-direction: column;
  margin-top: var(--vertical-space);
  text-align: center;
}

.section--image-text-grid .block img {
  margin: 0 auto 35px;
  max-width: 80%;
}
@media (min-width: 768px) {
  .section--image-text-grid .block img {
    margin-bottom: 55px;
    max-width: 70%;
  }
}
@media (min-width: 992px) {
  .section--image-text-grid .block img {
    margin-bottom: 65px;
  }
}

.section--image-text-grid .block .content {
  display: flex;
  flex: 1;
  position: relative;
}
@media (min-width: 768px) {
  .section--image-text-grid .block .content {
    align-items: center;
  }
}
@media (min-width: 992px) {
  .section--image-text-grid .block .content {
    min-height: 165px;
  }
}

.section--image-text-grid .block .content p {
  /* stylelint-disable-line */
  font-family: neue-haas-grotesk-display, sans-serif;
  font-style: normal;
  font-weight: 500; /* stylelint-disable-line */
}

.section--image-text-grid .block + .block .content::before {
  background-color: var(--divider-color);
  content: "";
  display: block;
  height: 100%;
  left: -15px;
  position: absolute;
  top: 0px;
  width: 1px;
}
@media (min-width: 992px) {
  .section--image-text-grid .block + .block .content::before {
    left: -30px;
  }
}

.text-light .block + .block .content::before {
  background-color: var(--slate);
}

.section--image-text-grid .block:nth-child(2n+3) .content::before {
  display: none;
}
@media (min-width: 768px) {
  .section--image-text-grid .block:nth-child(2n+3) .content::before {
    display: block;
  }
}

@media (min-width: 768px) {
  .section--image-text-grid .block:nth-child(4) .content::before {
    display: none;
  }
}

.section--image-text {
  --layout: "image"
  		  "text"
  		  "text2";
  --image-offset: calc(var(--site-gutter) * -1);
  --image-offset-left: var(--image-offset);
  --image-offset-right: 0;
  --image-vertical-offset: 60px;
  --section-header-offset: 0;
  overflow: hidden;
  position: relative;
}
@media (min-width: 768px) {
  .section--image-text {
    --image-offset: calc((var(--site-gutter) * 2) * -1);
    --layout: "image text" "image text2";
  }
}
@media (min-width: 992px) {
  .section--image-text {
    --image-offset: calc((var(--site-gutter) * 2) * -1);
    --layout: "image text";
  }
}

@media (min-width: 992px) {
  .section--image-text.is-large {
    --image-offset: calc((var(--site-gutter) * 1) * -1);
  }
}

@media (min-width: 768px) {
  body:not(.page-pillar) .section--image-text.is-tight + .is-tight {
    --section-padding-top: 0;
    --section-padding-bottom: 0;
  }
}

@media (min-width: 768px) {
  body:not(.page-pillar) .section--image-text.is-tight + .is-tight .content-container {
    padding-bottom: 30px;
    padding-top: 30px;
  }
}
@media (min-width: 992px) {
  body:not(.page-pillar) .section--image-text.is-tight + .is-tight .content-container {
    padding-bottom: 0;
    padding-top: 0;
  }
}

@media (min-width: 768px) {
  .section--image-text.align-image-left.is-tight .content-container,
  .section--image-text.align-image-left-overlap.is-tight .content-container {
    padding-left: clamp(0px, -300px + 0.3 * 100vw, 60px);
  }
}
@media (min-width: 992px) {
  .section--image-text.align-image-left.is-tight .content-container,
  .section--image-text.align-image-left-overlap.is-tight .content-container {
    padding-right: 0;
  }
}

@media (min-width: 768px) {
  .section--image-text.align-image-right.is-tight .content-container,
  .section--image-text.align-image-right-overlap.is-tight .content-container {
    padding-right: clamp(9px, -322.5px + 0.31875 * 100vw, 60px);
  }
}
@media (min-width: 768px) {
  .section--image-text.align-image-right.is-tight.is-large .content-container,
  .section--image-text.align-image-right-overlap.is-tight.is-large .content-container {
    padding-right: clamp(9px, -322.5px + 0.31875 * 100vw, 60px);
  }
}
.section--image-text .container {
  position: relative;
}

.section--image-text.align-image-right {
  --image-offset-left: 0;
  --image-offset-right: var(--image-offset);
}
@media (min-width: 768px) {
  .section--image-text.align-image-right {
    --layout: "text image";
  }
}

.section--image-text .columns {
  column-gap: clamp(24px, -106px + 0.1625 * 100vw, 154px);
  display: grid;
  grid-template-areas: var(--layout);
  grid-template-columns: 1fr;
}
@media (min-width: 768px) {
  .section--image-text .columns {
    grid-template-columns: 1fr 1fr;
  }
}

@media (min-width: 768px) {
  .section--image-text.is-centered .columns {
    align-items: center;
  }
}

.section--image-text.is-tight .columns {
  column-gap: 24px;
}

@media (min-width: 768px) {
  .section--image-text.is-tight2 .columns {
    column-gap: clamp(40px, 0px + 0.0833333333 * 100vw, 100px);
  }
}

.section--image-text .image-container {
  grid-area: image;
  margin-bottom: 24px;
  position: relative;
  z-index: 10;
}
@media (min-width: 768px) {
  .section--image-text .image-container {
    margin-bottom: 0;
    margin-left: var(--image-offset-left, 0);
    margin-right: var(--image-offset-right, 0);
  }
}

.section--image-text .image-container figure {
  position: relative;
}

.section--image-text .image-container img {
  width: 100%;
}

.section--image-text .image-container figcaption.caption-container {
  margin-top: 12px;
}

.section--image-text .image-container .image-cite-number {
  /* stylelint-disable-line */
  font-family: neue-haas-grotesk-display, sans-serif;
  font-style: normal;
  font-weight: 600; /* stylelint-disable-line */
  bottom: 5px;
  position: absolute;
  right: 11px;
}

.section--image-text .overlap {
  background: var(--white);
  box-shadow: 0px 4px 80px 0px rgba(0, 0, 0, 0.15);
  grid-area: text2;
  margin-top: 24px;
  max-width: 400px;
  padding: clamp(32px, 10.6666666667px + 0.0444444444 * 100vw, 64px) clamp(35px, 11.6666666667px + 0.0486111111 * 100vw, 70px);
  position: relative;
  z-index: 20;
}
@media (min-width: 768px) {
  .section--image-text .overlap {
    grid-area: text2;
    margin-left: -40%;
    margin-top: 15px;
    max-width: 500px;
  }
}
@media (min-width: 992px) {
  .section--image-text .overlap {
    align-self: flex-start;
    grid-area: text;
    justify-self: flex-end;
    margin-left: 0;
    margin-right: var(--image-offset-right, 0);
    max-width: 600px;
    right: 20%;
  }
}

.section--image-text .content-container {
  grid-area: text;
}

.section--image-text .section-header {
  margin-top: var(--section-header-offset, 0);
}

.section--image-text .content-container .section-header + .content {
  margin-top: 24px;
}

.section--image-text.is-large p {
  font-size: clamp(24px, 8px + 0.02 * 100vw, 32px);
  opacity: 0;
}
@media (prefers-reduced-motion: reduce) {
  .section--image-text.is-large p {
    opacity: 1;
  }
}
@media (prefers-reduced-motion: no-preference) {
  .section--image-text.is-large p {
    opacity: 1;
  }
}

@media (min-width: 992px) {
  .section--image-text .content {
    padding-bottom: 20px;
  }
}

body {
  counter-reset: image-caption-counter;
}

.section--image-text .notes {
  margin-top: 32px;
}

.section--image-text .notes li {
  /* stylelint-disable-line */
  font-family: neue-haas-grotesk-display, sans-serif;
  font-style: italic;
  font-weight: 400; /* stylelint-disable-line */
  color: var(--text-color);
  counter-increment: image-caption-counter;
  font-size: 12px;
  line-height: 1.5;
  margin-left: 48px;
  text-indent: -48px;
}

.section--image-text .notes li::before {
  /* stylelint-disable-line */
  font-family: neue-haas-grotesk-display, sans-serif;
  font-style: normal;
  font-weight: 700; /* stylelint-disable-line */
  content: counter(image-caption-counter);
  padding-right: calc(48px - 0.5ch);
}

.section--image-text .notes li + li {
  margin-top: 24px;
}

.section--image-text .notes li a {
  color: inherit;
}

.section--image-text.is-large .line-wrapper {
  display: block;
  overflow: hidden;
}

.section--image-text.pillar p {
  font-size: 20px;
}

.section--image-text .content h3 {
  /* stylelint-disable-line */
  font-family: neue-haas-grotesk-display, sans-serif;
  font-style: normal;
  font-weight: 400; /* stylelint-disable-line */
  color: var(--headline-color);
}

.text-light {
  --text-color: var(--white);
  --headline-color: var(--white);
}

.image-offset-top,
.image-offset-bottom {
  z-index: 1;
}

@media (min-width: 768px) {
  .image-offset-top {
    margin-top: calc(var(--image-vertical-offset) * -1);
  }
}

@media (min-width: 768px) {
  .image-offset-bottom {
    margin-bottom: calc(var(--image-vertical-offset) * -1);
  }
}

@media (min-width: 768px) {
  .image-offset-bottom .content-container {
    padding-bottom: calc(var(--image-vertical-offset) + 30px);
  }
}

@media (min-width: 768px) {
  .image-offset-bottom.is-tight .content-container {
    padding-bottom: calc(var(--image-vertical-offset) + 24px);
  }
}

@media (min-width: 768px) {
  .image-offset-bottom.is-tight2 .content-container {
    padding-bottom: calc(var(--image-vertical-offset) + clamp(24px, 8px + 0.0333333333 * 100vw, 48px));
  }
}

.section--image-text.white-bottom::before {
  height: 0;
}
@media (min-width: 768px) {
  .section--image-text.white-bottom::before {
    height: calc(80px + var(--section-padding-bottom));
  }
}

.page-pillar .section--image-text {
  --image-offset: 0;
}

.page-pillar .section--image-text:not(.is-large) .content {
  max-width: var(--max-width, initial);
}

@media (min-width: 768px) {
  .image-text--home {
    --section-padding-top: 100px;
  }
}
@media (min-width: 992px) {
  .image-text--home {
    --section-padding-top: 140px;
  }
}

.image-text--our-impact-1 .content h3 {
  /* stylelint-disable-line */
  font-family: neue-haas-grotesk-display, sans-serif;
  font-style: normal;
  font-weight: 500; /* stylelint-disable-line */
}

.image-text--our-people-1 h2 {
  --headline-color: var(--dark-green);
  font-size: clamp(24px, 18.6666666667px + 0.0111111111 * 100vw, 32px);
  line-height: 1.5;
}

.image-text--our-people-2 {
  --section-padding-top: 0;
}

.image-text--our-people-2 h2 {
  font-size: clamp(24px, 18.6666666667px + 0.0111111111 * 100vw, 32px);
  line-height: 1.5;
}

.image-text--our-people-4 h2 {
  font-size: clamp(24px, 18.6666666667px + 0.0111111111 * 100vw, 32px);
  line-height: 1.5;
}

.image-text--our-people-3 h3,
.image-text--our-people-4 h3,
.image-text--our-communities-1 h3 {
  /* stylelint-disable-line */
  font-family: neue-haas-grotesk-display, sans-serif;
  font-style: normal;
  font-weight: 400; /* stylelint-disable-line */
}

.image-text--our-communities-1 h3 {
  font-size: 32px;
  line-height: 1.5;
}

@media (min-width: 768px) {
  .image-text--our-communities-1 {
    padding-bottom: calc(var(--section-padding-bottom) * 2);
  }
}

@media (max-width: 575px) {
  .image-text--our-people-3 {
    padding-top: 0;
  }
}

.image-text--our-people-5 {
  --bottom-padding: var(--section-padding-bottom);
  padding-bottom: var(--bottom-padding);
}
@media (min-width: 768px) {
  .image-text--our-people-5 {
    --bottom-padding: calc(var(--section-padding-bottom) * 2);
  }
}

.image-text--our-people-5::before {
  --height: 12%;
  background-color: var(--white);
  bottom: 0;
  content: "";
  display: block;
  height: calc(var(--bottom-padding) + var(--height));
  left: 0;
  position: absolute;
  width: 100%;
}
@media (min-width: 768px) {
  .image-text--our-people-5::before {
    --height: 15%;
  }
}
@media (min-width: 992px) {
  .image-text--our-people-5::before {
    --height: 35%;
  }
}

.image-text--our-people-5 .columns {
  grid-auto-rows: minmax(100px, auto);
}

@media (min-width: 768px) {
  .image-text--our-people-5 .image-container {
    grid-row: span 2;
  }
}

@media (min-width: 768px) {
  .image-text--our-people-5 .overlap {
    grid-row: 2;
  }
}

@media (min-width: 768px) {
  .image-text--our-communities-4 {
    padding-bottom: 0;
  }
}

.image-text--sustainable-1 {
  --section-header-offset: 90px;
}
@media (min-width: 768px) {
  .image-text--sustainable-1 {
    --section-header-offset: 200px;
  }
}
@media (min-width: 992px) {
  .image-text--sustainable-1 {
    --section-header-offset: 270px;
  }
}

.image-text--sustainable-1 .section-header__map-image-container picture {
  transform: translate(4%, -42%);
}

.image-text--sustainable-2 {
  --section-header-offset: -50px;
}
@media (max-width: 575px) {
  .image-text--sustainable-2 {
    margin-top: -110px;
  }
}
@media (min-width: 768px) {
  .image-text--sustainable-2 {
    --section-header-offset: 0;
  }
}

.image-text--sustainable-2 .image-container picture {
  transform: translate(6%, 27%);
}
@media (min-width: 768px) {
  .image-text--sustainable-2 .image-container picture {
    transform: translate(10%, 0%);
  }
}
@media (min-width: 992px) {
  .image-text--sustainable-2 .image-container picture {
    transform: translate(30%, 10%);
  }
}

.image-text--sustainable-2 .image-container img {
  width: 500px;
}

@media (min-width: 768px) {
  .image-text--sustainable-3 {
    --section-header-offset: 110px;
  }
}
@media (min-width: 992px) {
  .image-text--sustainable-3 {
    --section-header-offset: 223px;
  }
}

.image-text--sustainable-4 {
  padding-top: var(--section-padding-top);
}
@media (min-width: 768px) {
  .image-text--sustainable-4 {
    padding-top: 0;
  }
}

@media (min-width: 992px) {
  .image-text--sustainable-4 .content-container {
    padding-left: 10%;
  }
}

.image-text--sustainable-5 {
  --top-padding: var(--section-padding-top);
  padding-top: calc(var(--top-padding) * 2);
}
@media (min-width: 768px) {
  .image-text--sustainable-5 {
    padding-bottom: 0;
  }
}
@media (min-width: 992px) {
  .image-text--sustainable-5 {
    padding-bottom: var(--section-padding-bottom);
  }
}

.image-text--sustainable-5 .image-container picture {
  margin-bottom: -60px;
  margin-top: -50px;
}
@media (min-width: 768px) {
  .image-text--sustainable-5 .image-container picture {
    margin-bottom: 0;
    margin-top: 0;
  }
}

.image-text--sustainable-5 .image-container img {
  width: 450px;
}

.image-text--sustainable-6 {
  --top-padding: var(--section-padding-top);
  --section-header-offset: 120px;
  padding-bottom: calc(var(--top-padding) * 1);
  z-index: 10;
}
@media (min-width: 768px) {
  .image-text--sustainable-6 {
    --section-header-offset: calc(var(--top-padding) * -1 - 35px);
    padding-bottom: 0;
    padding-top: calc(var(--top-padding) * 3);
  }
}
@media (min-width: 992px) {
  .image-text--sustainable-6 {
    --image-vertical-offset: 110px;
    --section-header-offset: calc(var(--top-padding) * -1 - 35px);
  }
}

.image-text--sustainable-6 .section-header__map-image-container {
  transform: translate(17%, -44%);
}
@media (min-width: 768px) {
  .image-text--sustainable-6 .section-header__map-image-container {
    transform: translate(36%, -28%);
  }
}
@media (min-width: 992px) {
  .image-text--sustainable-6 .section-header__map-image-container {
    transform: translate(44%, -34%);
  }
}

@media (max-width: 575px) {
  .image-text--sustainable-7 {
    padding-bottom: var(--section-padding-bottom);
  }
}

.image-text--powered-1 {
  --top-padding: 120px;
  --section-header-offset: calc(var(--top-padding) + var(--image-vertical-offset));
}
@media (min-width: 768px) {
  .image-text--powered-1 {
    --top-padding: 160px;
  }
}
@media (min-width: 992px) {
  .image-text--powered-1 {
    --top-padding: 260px;
  }
}

.image-text--powered-1 .section-header__map-image-container picture {
  transform: translate(5%, -60%);
}
@media (min-width: 768px) {
  .image-text--powered-1 .section-header__map-image-container picture {
    transform: translate(4%, -42%);
  }
}
@media (min-width: 992px) {
  .image-text--powered-1 .section-header__map-image-container picture {
    transform: translate(5%, -42%);
  }
}

.image-text--powered-2 {
  --section-header-offset: 150px;
  padding-top: calc(var(--section-padding-top) * 2);
}
@media (min-width: 768px) {
  .image-text--powered-2 {
    --section-header-offset: 130px;
  }
}
@media (min-width: 992px) {
  .image-text--powered-2 {
    --section-header-offset: 0;
  }
}

.image-text--powered-2 .section-header__map-image-container picture {
  transform: translate(25%, -58%);
}
@media (min-width: 768px) {
  .image-text--powered-2 .section-header__map-image-container picture {
    transform: translate(24%, -76%);
  }
}
@media (min-width: 992px) {
  .image-text--powered-2 .section-header__map-image-container picture {
    transform: translate(24%, -10%);
  }
}

.image-text--powered-3 {
  z-index: 10;
}
@media (max-width: 575px) {
  .image-text--powered-3 {
    --section-header-offset: 50px;
  }
}

.page-pillar .section--image-text:not(.is-large).image-text--powered-3 .content {
  --max-width: 510px;
}

.image-text--powered-3 .section-header__map-image-container picture {
  transform: translate(10%, -36%);
}
@media (min-width: 768px) {
  .image-text--powered-3 .section-header__map-image-container picture {
    transform: translate(40%, -20%);
  }
}

@media (min-width: 768px) {
  .image-text--powered-3 .image-container {
    padding-top: 200px;
  }
}

.image-text--powered-4 {
  --section-header-offset: 225px;
  padding-top: calc(var(--section-padding-top) * 2);
}
@media (min-width: 768px) {
  .image-text--powered-4 {
    --section-header-offset: 205px;
    padding-top: 0;
  }
}
@media (min-width: 992px) {
  .image-text--powered-4 {
    --section-header-offset: 225px;
  }
}

.image-text--powered-4 .section-header__map-image-container picture {
  transform: translate(6%, -77%);
}
@media (min-width: 768px) {
  .image-text--powered-4 .section-header__map-image-container picture {
    transform: translate(6%, -70%);
  }
}
@media (min-width: 992px) {
  .image-text--powered-4 .section-header__map-image-container picture {
    transform: translate(9%, -53%);
  }
}

.page-pillar .section--image-text:not(.is-large).image-text--powered-4 .content {
  --max-width: 510px;
}

.image-text--powered-5 {
  padding-top: var(--section-padding-top);
  z-index: 10;
}
@media (max-width: 575px) {
  .image-text--powered-5 {
    --section-header-offset: 30px;
  }
}
@media (min-width: 768px) {
  .image-text--powered-5 {
    padding-top: calc(var(--section-padding-top) * 2);
  }
}

.image-text--powered-5 .section-header__map-image-container picture {
  transform: translate(33%, -31%);
}
@media (min-width: 768px) {
  .image-text--powered-5 .section-header__map-image-container picture {
    transform: translate(34%, -35%);
  }
}
@media (min-width: 992px) {
  .image-text--powered-5 .section-header__map-image-container picture {
    transform: translate(49%, -38%);
  }
}

.page-pillar .section--image-text:not(.is-large).image-text--powered-5 .content {
  --max-width: 510px;
}

.image-text--powered-6 {
  padding-top: calc(var(--section-padding-top) * 2);
  z-index: 10;
}
@media (max-width: 575px) {
  .image-text--powered-6 {
    --section-header-offset: 50px;
  }
}

.image-text--powered-6 .content-container {
  padding: 0;
}

.page-pillar .section--image-text:not(.is-large).image-text--powered-6 .content {
  --max-width: 510px;
}

.image-text--powered-6 .section-header__map-image-container picture {
  transform: translate(25%, -35%);
}
@media (min-width: 768px) {
  .image-text--powered-6 .section-header__map-image-container picture {
    transform: translate(25%, -31%);
  }
}

@media (min-width: 768px) {
  .image-text--connected-1 {
    --section-header-offset: calc(var(--image-vertical-offset) + 126px);
  }
}
@media (min-width: 992px) {
  .image-text--connected-1 {
    --section-header-offset: calc(var(--image-vertical-offset) + 226px);
  }
}

.image-text--connected-1 .section-header__map-image-container picture {
  transform: translate(80px, -80px);
}
@media (min-width: 768px) {
  .image-text--connected-1 .section-header__map-image-container picture {
    transform: translate(16%, -52%);
  }
}
@media (min-width: 992px) {
  .image-text--connected-1 .section-header__map-image-container picture {
    transform: translate(16%, -52%);
  }
}

.image-text--connected-2 {
  padding-top: calc(var(--section-padding-top) * 2);
}
@media (max-width: 575px) {
  .image-text--connected-2 {
    --section-header-offset: 50px;
  }
}

.image-text--connected-2 .section-header__map-image-container picture {
  transform: translate(20%, -42%);
}
@media (min-width: 768px) {
  .image-text--connected-2 .section-header__map-image-container picture {
    transform: translate(55px, -110px);
  }
}
@media (min-width: 992px) {
  .image-text--connected-2 .section-header__map-image-container picture {
    transform: translate(15px, -220px);
  }
}

.image-text--connected-3 {
  --section-header-offset: 106px;
  margin-bottom: 30px;
  padding-top: calc(var(--section-padding-top) * 2);
  z-index: 10;
}
@media (min-width: 768px) {
  .image-text--connected-3 {
    --section-header-offset: -86px;
    padding-top: calc(var(--section-padding-top) * 5);
  }
}
@media (min-width: 992px) {
  .image-text--connected-3 {
    --image-vertical-offset: 180px;
    margin-bottom: calc(var(--image-vertical-offset) * -1);
    padding-top: calc(var(--section-padding-top) * 3);
  }
}

.image-text--connected-3 .section-header__map-image-container picture {
  transform: translate(11px, -100px);
}
@media (min-width: 768px) {
  .image-text--connected-3 .section-header__map-image-container picture {
    transform: translate(30px, -120px);
  }
}
@media (min-width: 992px) {
  .image-text--connected-3 .section-header__map-image-container picture {
    transform: translate(131px, -110px);
  }
}

.image-text--connected-4 {
  padding-top: calc(var(--section-padding-top) * 1);
}
@media (max-width: 575px) {
  .image-text--connected-4 {
    --section-header-offset: 60px;
  }
}
@media (min-width: 768px) {
  .image-text--connected-4 {
    padding-top: calc(var(--section-padding-top) * 2);
  }
}

.image-text--connected-4 .section-header__map-image-container picture {
  transform: translate(50px, -100px);
}
@media (min-width: 768px) {
  .image-text--connected-4 .section-header__map-image-container picture {
    transform: translate(75px, -100px);
  }
}
@media (min-width: 992px) {
  .image-text--connected-4 .section-header__map-image-container picture {
    transform: translate(75px, -140px);
  }
}

.image-text--connected-5 {
  --section-header-offset: -50px;
  padding-top: calc(var(--section-padding-top) * 2);
  z-index: 10;
}
@media (max-width: 575px) {
  .image-text--connected-5 {
    padding-bottom: var(--section-padding-bottom);
  }
}
@media (min-width: 768px) {
  .image-text--connected-5 {
    --section-header-offset: -124px;
    padding-bottom: 0;
    padding-top: calc(var(--section-padding-top) * 3);
  }
}
@media (min-width: 992px) {
  .image-text--connected-5 {
    --image-vertical-offset: 164px;
    padding-top: calc(var(--section-padding-top) * 4);
  }
}

.image-text--connected-5 .section-header__map-image-container picture {
  transform: translate(37%, -42%);
}
@media (min-width: 768px) {
  .image-text--connected-5 .section-header__map-image-container picture {
    transform: translate(40%, -33%);
  }
}
@media (min-width: 992px) {
  .image-text--connected-5 .section-header__map-image-container picture {
    transform: translate(30%, -35%);
  }
}

.image-text--resourced-1 {
  --section-header-offset: 80px;
}
@media (min-width: 768px) {
  .image-text--resourced-1 {
    --image-vertical-offset: 65px;
    --section-header-offset: 220px;
  }
}
@media (min-width: 992px) {
  .image-text--resourced-1 {
    --image-vertical-offset: 126px;
    --section-header-offset: 380px;
  }
}

.image-text--resourced-1 .section-header__map-image-container picture {
  transform: translate(-1%, -50%);
}
@media (min-width: 768px) {
  .image-text--resourced-1 .section-header__map-image-container picture {
    transform: translate(-1%, -43%);
  }
}

.image-text--resourced-2 {
  --section-header-offset: 80px;
}
@media (min-width: 768px) {
  .image-text--resourced-2 {
    --section-header-offset: 50px;
  }
}

.image-text--resourced-2 .section-header__map-image-container picture {
  transform: translate(5%, -45%);
}
@media (min-width: 768px) {
  .image-text--resourced-2 .section-header__map-image-container picture {
    transform: translate(5%, -34%);
  }
}

.image-text--resourced-3 {
  --section-header-offset: 50px;
}
@media (min-width: 768px) {
  .image-text--resourced-3 {
    --section-header-offset: 0;
  }
}

.image-text--resourced-3 .section-header__map-image-container picture {
  transform: translate(22%, -13%);
}
@media (min-width: 768px) {
  .image-text--resourced-3 .section-header__map-image-container picture {
    transform: translate(22%, -32%);
  }
}

@media (max-width: 575px) {
  .image-text--resourced-4 .image-container {
    margin-bottom: -90px;
  }
}

.image-text--resourced-5 {
  --section-header-offset: 80px;
  z-index: 10;
}
@media (max-width: 575px) {
  .image-text--resourced-5 {
    padding-bottom: var(--section-padding-bottom);
  }
}
@media (min-width: 768px) {
  .image-text--resourced-5 {
    --section-header-offset: -37px;
    padding-top: calc(var(--section-padding-top) * 2);
  }
}
@media (min-width: 992px) {
  .image-text--resourced-5 {
    --image-vertical-offset: 90px;
    padding-top: calc(var(--section-padding-top) * 3);
  }
}

.image-text--resourced-5 .section-header__map-image-container picture {
  transform: translate(8%, -46%);
}
@media (min-width: 768px) {
  .image-text--resourced-5 .section-header__map-image-container picture {
    transform: translate(42%, -28%);
  }
}

.image-text--secured-1 {
  --section-header-offset: 86px;
}
@media (min-width: 768px) {
  .image-text--secured-1 {
    --section-header-offset: 186px;
  }
}
@media (min-width: 992px) {
  .image-text--secured-1 {
    --section-header-offset: 216px;
    --image-vertical-offset: 100px;
  }
}

@media (min-width: 992px) {
  .image-text--secured-1 .columns {
    clip-path: polygon(0 13%, 48% 13%, 48% 0, 100% 0, 100% 100%, 0 100%);
  }
}

.image-text--secured-1 .section-header__map-image-container picture {
  transform: translate(16%, -44%);
}
@media (min-width: 768px) {
  .image-text--secured-1 .section-header__map-image-container picture {
    transform: translate(30%, -35%);
  }
}

.image-text--secured-2 {
  padding-top: calc(var(--section-padding-top) * 2);
}
@media (max-width: 575px) {
  .image-text--secured-2 {
    --section-header-offset: 100px;
  }
}
@media (min-width: 992px) {
  .image-text--secured-2 {
    padding-top: calc(var(--section-padding-top) * 3);
  }
}

.image-text--secured-2 .section-header__map-image-container picture {
  transform: translate(12%, -62%);
}
@media (min-width: 768px) {
  .image-text--secured-2 .section-header__map-image-container picture {
    transform: translate(3%, -40%);
  }
}

.image-text--secured-3 {
  padding-top: 0;
}
@media (max-width: 575px) {
  .image-text--secured-3 {
    --section-header-offset: 80px;
  }
}
@media (min-width: 768px) {
  .image-text--secured-3 {
    padding-top: 150px;
  }
}
@media (min-width: 992px) {
  .image-text--secured-3 {
    padding-top: 272px;
  }
}

.image-text--secured-3 .section-header__map-image-container picture {
  transform: translate(21%, -56%);
}
@media (min-width: 768px) {
  .image-text--secured-3 .section-header__map-image-container picture {
    transform: translate(21%, -46%);
  }
}

.image-text--secured-4 {
  --image-vertical-offset: 112px;
  --section-header-offset: 110px;
  padding-top: calc(var(--section-padding-top) * 2);
  z-index: 10;
}
@media (min-width: 768px) {
  .image-text--secured-4 {
    --section-header-offset: -104px;
    padding-top: 190px;
  }
}
@media (min-width: 992px) {
  .image-text--secured-4 {
    padding-top: 250px;
  }
}

.image-text--secured-4 .section-header__map-image-container picture {
  transform: translate(29%, -55%);
}
@media (min-width: 768px) {
  .image-text--secured-4 .section-header__map-image-container picture {
    transform: translate(37%, -43%);
  }
}
@media (min-width: 992px) {
  .image-text--secured-4 .section-header__map-image-container picture {
    transform: translate(54%, -43%);
  }
}

.image-text--secured-5 {
  --image-vertical-offset: 270px;
  padding-bottom: var(--section-padding-bottom);
  padding-top: calc(var(--section-padding-top) * 2);
  z-index: 10;
}
@media (max-width: 575px) {
  .image-text--secured-5 {
    --section-header-offset: 100px;
  }
}
@media (min-width: 768px) {
  .image-text--secured-5 {
    padding-bottom: 0;
    padding-top: 120px;
  }
}
@media (min-width: 992px) {
  .image-text--secured-5 {
    padding-top: 280px;
  }
}

@media (min-width: 768px) {
  .image-text--secured-5 .image-container {
    margin-top: 88px;
  }
}
@media (min-width: 992px) {
  .image-text--secured-5 .image-container {
    margin-top: 168px;
  }
}

.image-text--secured-5 .section-header__map-image-container picture {
  transform: translate(20%, -50%);
}
@media (min-width: 768px) {
  .image-text--secured-5 .section-header__map-image-container picture {
    transform: translate(40%, -40%);
  }
}
@media (min-width: 992px) {
  .image-text--secured-5 .section-header__map-image-container picture {
    transform: translate(70%, -40%);
  }
}

@media (max-width: 575px) {
  .image-text--secured-6 {
    padding-top: 0;
  }
}

@media (max-width: 575px) {
  .image-text--secured-6 .notes {
    margin-bottom: calc(var(--section-padding-bottom) * 2);
    margin-top: 0;
  }
}

.image-text--secured-6 .content .notes {
  display: none;
}
@media (min-width: 768px) {
  .image-text--secured-6 .content .notes {
    display: block;
  }
}

.image-text--secured-6 .section-header__title {
  line-height: 1.5;
}
.image-text--secured-6 .section-header__title::before, .image-text--secured-6 .section-header__title::after {
  content: "";
  display: block;
  height: 0;
  width: 0;
}
.image-text--secured-6 .section-header__title::before {
  margin-bottom: calc(-0.4em + 0px);
}
.image-text--secured-6 .section-header__title::after {
  margin-top: calc(-0.3722222222em + 0px);
}

@media (max-width: 575px) {
  .image-text--bechtel-1 {
    padding-top: 0;
  }
}
@media (min-width: 768px) {
  .image-text--bechtel-1 {
    padding-bottom: 0;
  }
}

.image-text--bechtel-1 .image-container picture {
  margin: 0 0 0 auto;
  max-width: 585px;
}

.section--image {
  position: relative;
}

.section--image .container {
  position: relative;
  z-index: 1;
}

.section--image figure {
  position: relative;
  z-index: 1;
}

.section--image img {
  width: 100%;
}

.section--image figcaption.caption-container {
  column-gap: 24px;
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  margin-top: 10px;
  row-gap: 12px;
}
@media (min-width: 768px) {
  .section--image figcaption.caption-container {
    margin-top: 30px;
    padding-inline: var(--site-gutter);
  }
}
@media (min-width: 992px) {
  .section--image figcaption.caption-container {
    flex-direction: row;
    flex-wrap: wrap;
  }
}

.section--image .image-cite-number {
  /* stylelint-disable-line */
  font-family: neue-haas-grotesk-display, sans-serif;
  font-style: normal;
  font-weight: 600; /* stylelint-disable-line */
  bottom: 5px;
  position: absolute;
  right: 11px;
}

.section--image .overlap {
  padding: 20px 0 0 0;
}
@media (min-width: 768px) {
  .section--image .overlap {
    background: var(--white);
    bottom: -60px;
    max-width: 46%;
    padding: 27px 27px 0 27px;
    position: absolute;
    right: 0;
    z-index: 10;
  }
}
@media (min-width: 992px) {
  .section--image .overlap {
    padding: 54px 54px 0 54px;
  }
}

.section--image .overlap__label {
  color: var(--dark-green);
  font-size: 24px;
  line-height: 1;
  margin-bottom: 24px;
}

.section--image .overlap__content {
  color: var(--dark-green);
}

.caption {
  /* stylelint-disable-line */
  font-family: neue-haas-grotesk-display, sans-serif;
  font-style: italic;
  font-weight: 400; /* stylelint-disable-line */
  color: var(--dark-green);
  font-size: 12px;
  line-height: 1.5;
}
@media (min-width: 992px) {
  .caption {
    max-width: 530px;
  }
}

.text-light .caption {
  color: var(--white);
}

.section--image .caption {
  padding: 0 var(--site-gutter);
}
@media (min-width: 768px) {
  .section--image .caption {
    padding: 0;
  }
}

.section--image .container .caption {
  padding: 0;
}

.caption strong {
  /* stylelint-disable-line */
  font-family: neue-haas-grotesk-display, sans-serif;
  font-style: normal;
  font-weight: 700; /* stylelint-disable-line */
}

.caption-count {
  /* stylelint-disable-line */
  font-family: neue-haas-grotesk-display, sans-serif;
  font-style: normal;
  font-weight: 700; /* stylelint-disable-line */
}

.white-top::before,
.white-bottom::before {
  background-color: var(--white);
  content: "";
  left: 0;
  position: absolute;
  width: 100%;
}

.white-top::before {
  height: 50%;
  top: 0;
}

.page-pillar .white-top::before {
  height: 40%;
}
@media (min-width: 768px) {
  .page-pillar .white-top::before {
    height: 30%;
  }
}

.white-bottom::before {
  bottom: 0;
  height: 40%;
}
@media (min-width: 768px) {
  .white-bottom::before {
    height: 22%;
  }
}

.image--sustainable-1 {
  padding-top: calc(var(--section-padding-top) * 2);
}

.image--our-communities-1 {
  padding-top: calc(var(--section-padding-top) * 2);
}

@media (max-width: 575px) {
  .image--powered-1 {
    padding-bottom: 0;
    padding-top: var(--section-padding-top);
  }
}

@media (max-width: 575px) {
  .image--powered-2 {
    padding-bottom: 0;
    padding-top: var(--section-padding-top);
  }
}

@media (max-width: 767px) {
  .image--connected-2 {
    padding-top: var(--section-padding-top);
  }
}

@media (max-width: 575px) {
  .image--secured-1 {
    padding-top: var(--section-padding-top);
  }
}

.image--secured-1 img {
  margin: 0 0 0 auto;
  max-width: 1000px;
}

@media (max-width: 575px) {
  .image--bechtel-1,
  .image--bechtel-2 {
    padding-top: calc(var(--section-padding-top) * 2);
  }
}

.section--logo-marquee {
  --section-padding-bottom: 0;
  overflow: hidden;
  position: relative;
}
@media (min-width: 768px) {
  .section--logo-marquee {
    --section-padding-top: 0;
  }
}

.section--logo-marquee .container {
  display: flex;
  flex-direction: column;
}
@media (min-width: 768px) {
  .section--logo-marquee .container {
    flex-direction: row;
  }
}

.section--logo-marquee .section-header {
  position: relative;
}
@media (min-width: 768px) {
  .section--logo-marquee .section-header {
    align-items: center;
    display: flex;
    flex: 1 0 auto;
    margin-bottom: 0;
    padding-right: 40px;
  }
}

.section--logo-marquee .section-header::after {
  background: linear-gradient(to right, rgb(255, 255, 255), rgba(255, 255, 255, 0));
  content: "";
  display: block;
  height: 100%;
  position: absolute;
  right: 0;
  top: 0;
  transform: translateX(100%);
  width: 80px;
  z-index: 10;
}

.section--logo-marquee .section-header__title {
  /* stylelint-disable-line */
  font-family: neue-haas-grotesk-display, sans-serif;
  font-style: normal;
  font-weight: 400; /* stylelint-disable-line */
  color: var(--headline-color);
  font-size: clamp(18px, 14px + 0.0083333333 * 100vw, 24px);
  line-height: 1.5;
  margin-bottom: 0;
}

.section--logo-marquee .logos-container {
  flex: 1;
  margin-left: calc(var(--site-gutter) * -2);
  margin-right: calc(var(--site-gutter) * -2);
  min-width: 100%;
  overflow: hidden;
  user-select: none;
}
@media (min-width: 768px) {
  .section--logo-marquee .logos-container {
    margin-left: 0;
  }
}

.section--logo-marquee .logos {
  display: flex;
  flex-shrink: 0;
  flex-wrap: nowrap;
}

.section--logo-marquee .logo-container {
  align-items: center;
  display: flex;
  justify-content: center;
  padding: 20px;
}
@media (min-width: 992px) {
  .section--logo-marquee .logo-container {
    min-height: 160px;
  }
}

.section--logo-marquee .logo-container img {
  max-height: 80px;
  object-fit: contain;
}

.section--logo-marquee .swiper-wrapper {
  position: relative;
  transition-timing-function: linear;
}

.section--logo-marquee .swiper-slide {
  align-items: center;
  display: flex;
  height: auto;
}

.reduce-motion .section--logo-marquee .swiper-slide {
  width: auto;
}

.section--logo-marquee::before,
.section--logo-marquee::after {
  width: 100%;
  z-index: 50;
}

.section--logo-marquee::before {
  top: 0;
}

.section--logo-marquee::after {
  bottom: 0;
}

.section--overlapping-grid {
  padding-top: calc(var(--section-padding-top) * 2);
}

.section--overlapping-grid .columns {
  column-gap: 24px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}
@media (min-width: 992px) {
  .section--overlapping-grid .columns {
    grid-template-columns: repeat(3, 1fr);
  }
}

.section--overlapping-grid .image-container {
  grid-column: 1/3;
  grid-row: 1;
  padding-left: 40px;
}
@media (min-width: 768px) {
  .section--overlapping-grid .image-container {
    padding-left: 0;
    padding-right: clamp(20px, -80px + 0.1 * 100vw, 40px);
  }
}

.section--overlapping-grid .image-container picture {
  margin: 0 0 0 auto;
  max-width: 70%;
}
@media (min-width: 768px) {
  .section--overlapping-grid .image-container picture {
    max-width: 50%;
  }
}
@media (min-width: 992px) {
  .section--overlapping-grid .image-container picture {
    max-width: 70%;
  }
}

.section--overlapping-grid .image-container img {
  margin: 0 0 0 auto;
  opacity: 0.9;
}
@media (min-width: 768px) {
  .section--overlapping-grid .image-container img {
    opacity: 0.95;
  }
}

.section--overlapping-grid .section-header {
  grid-column: 1/3;
  grid-row: 1;
  margin-top: 54%;
  max-width: 600px;
  position: relative;
  z-index: 10;
}
@media (min-width: 768px) {
  .section--overlapping-grid .section-header {
    margin-top: 38%;
  }
}
@media (min-width: 992px) {
  .section--overlapping-grid .section-header {
    margin-top: 90%;
  }
}

.section--overlapping-grid .section-header__title {
  font-size: clamp(48px, 16px + 0.0666666667 * 100vw, 96px);
  line-height: 1;
  margin: 0;
}

.section--overlapping-grid .content {
  grid-column: 1/3;
  grid-row: 2;
  margin-top: 30px;
  position: relative;
  z-index: 10;
}
@media (min-width: 768px) {
  .section--overlapping-grid .content {
    padding-left: 20%;
  }
}
@media (min-width: 992px) {
  .section--overlapping-grid .content {
    grid-column: 3/4;
    grid-row: 1;
    padding-left: 0;
  }
}

@media (min-width: 992px) {
  .section--overlapping-grid .section-header,
  .section--overlapping-grid .content {
    margin-top: clamp(300px, 200px + 0.2083333333 * 100vw, 450px);
  }
}

.overlapping-grid--bechtel-1 .section-header {
  margin-top: 50px;
  padding-right: 30px;
}
@media (min-width: 768px) {
  .overlapping-grid--bechtel-1 .section-header {
    margin-top: 12%;
    padding-right: 0;
  }
}

.overlapping-grid--bechtel-1 .content {
  margin-top: 30px;
}

@media (min-width: 992px) {
  .overlapping-grid--bechtel-1 .section-header,
  .overlapping-grid--bechtel-1 .content {
    margin-top: clamp(50px, -10px + 0.125 * 100vw, 140px);
  }
}

.project-image-container {
  opacity: 1;
  transition: visibility 0s linear 0s, opacity 300ms;
  visibility: visible;
  align-self: start;
  display: none;
  top: calc(var(--header-height, 0) + var(--sub-menu-container-height, 0));
}
@media (min-width: 768px) {
  .project-image-container {
    display: block;
    grid-column: 1/5;
    height: 100%;
  }
}
@media (min-width: 992px) {
  .project-image-container {
    grid-column: 1/7;
    height: auto;
    padding-right: 16px;
  }
}

.project-image-container.fade-out {
  opacity: 0;
  transition: visibility 0s linear 300ms, opacity 300ms;
  visibility: hidden;
}

@media (min-width: 768px) {
  .project-image-container img {
    height: 600px;
    object-fit: cover;
  }
}
@media (min-width: 992px) {
  .project-image-container img {
    height: 837px;
    max-height: calc(100vh - var(--header-height, 0) - var(--sub-menu-container-height, 0));
    width: 100%;
  }
}

.project-image-container .caption {
  background: var(--white);
  bottom: 0;
  left: 0;
  max-width: calc(100% - var(--site-gutter));
  padding: 10px 24px;
  position: absolute;
}

.section--projects {
  --section-padding-top: 0;
  --section-padding-bottom: 0;
}

.section--projects .projects {
  grid-column: 1/5;
}
@media (min-width: 768px) {
  .section--projects .projects {
    grid-column: 5/14;
  }
}
@media (min-width: 992px) {
  .section--projects .projects {
    grid-column: 7/14;
  }
}

.section--projects .category-data {
  margin-top: 28px;
}
@media (min-width: 992px) {
  .section--projects .category-data {
    margin-top: 56px;
  }
}

.section--projects .projects .category-title {
  /* stylelint-disable-line */
  font-family: neue-haas-grotesk-display, sans-serif;
  font-style: normal;
  font-weight: 500; /* stylelint-disable-line */
  font-size: clamp(38px, 20.6666666667px + 0.0361111111 * 100vw, 64px);
  letter-spacing: 0.01em;
  line-height: 1.1;
  margin-bottom: 14px;
}

.section--projects .projects .introtext {
  /* stylelint-disable-line */
  font-family: garamond-premier-pro-display, serif;
  font-style: normal;
  font-weight: 500; /* stylelint-disable-line */
  color: var(--dark-green);
  font-size: clamp(24px, 18.6666666667px + 0.0111111111 * 100vw, 32px);
  letter-spacing: -0.64px;
  line-height: 1.4;
  max-width: 480px;
}

.section--projects .projects .stats {
  border-bottom: 1px solid rgba(87, 114, 127, 0.2);
  display: flex;
  flex-direction: column;
  gap: clamp(8px, -37.7142857143px + 0.0952380952 * 100vw, 48px);
  justify-content: space-between;
  margin-bottom: 50px;
  margin-top: 25px;
  padding-bottom: 18px;
}
@media (min-width: 768px) {
  .section--projects .projects .stats {
    flex-direction: row;
    justify-content: unset;
  }
}

.section--projects .projects .stat {
  opacity: 0;
  transition: visibility 0s linear 300ms, opacity 300ms;
  visibility: hidden;
  flex: 1 1 0;
  opacity: 0;
  position: relative;
}

.section--projects .projects .stat.is-visible {
  opacity: 1;
  transition: visibility 0s linear 0s, opacity 1000ms;
  visibility: visible;
}

.section--projects .projects .stat + .stat::before {
  background: rgba(182, 189, 195, 0.2);
  content: "";
  display: block;
  height: 100%;
  left: calc(clamp(4px, -18.8571428571px + 0.0476190476 * 100vw, 24px) * -1);
  position: absolute;
  width: 1px;
}

.section--projects .projects .stat__value {
  font-size: clamp(24px, 18.6666666667px + 0.0111111111 * 100vw, 32px);
  line-height: 1.5;
}

.section--projects .projects .stat__value sup {
  font-size: 50%;
  font-weight: 600;
}

.section--projects .projects .stat__value span {
  font-size: 95%;
}

.section--projects .projects .stat__label {
  font-size: 16px;
  line-height: 1.6;
}

@media (min-width: 992px) {
  .section--projects .project-list {
    margin-right: var(--site-gutter);
  }
}

.section--projects .card {
  animation-duration: 1s;
  animation-fill-mode: both;
  opacity: 0;
  position: absolute;
}

.section--projects .card.is-visible {
  animation-name: fade-slide-up;
}

.scroll-slider {
  --kick-color: var(--slate);
  --title-color: var(--dark-green);
  --text-color: var(--text-black);
  --list-color: var(--dark-green);
  position: relative;
}
.scroll-slider--our-efforts {
  --background-fill: #5C825C;
}
.scroll-slider--values-commitments {
  --background-fill: var(--slate);
}
.scroll-slider--our-people {
  --background-fill: #F58D18;
}
.scroll-slider--our-communities {
  --background-fill: #ADBAD6;
}
@media (min-width: 768px) {
  .scroll-slider--our-communities {
    --kick-color: #ADBAD6;
    --title-color: var(--white);
    --text-color: var(--white);
  }
}
@media (min-width: 768px) {
  .scroll-slider--our-communities {
    --text-color: var(--white);
    color: var(--text-color);
  }
}
.scroll-slider__bg {
  column-gap: clamp(24px, -576px + 60vw, 144px);
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  height: 100%;
  left: 0;
  overflow: hidden;
  pointer-events: none;
  position: absolute;
  top: 0;
  width: 100%;
}
@media (max-width: 991px) {
  .scroll-slider__bg {
    grid-template-columns: repeat(12, 1fr);
  }
}
.scroll-slider__bg-fill {
  background-color: var(--background-fill);
  display: block;
  grid-column: 2/-1;
  height: 100%;
  margin-right: calc(var(--site-gutter) * -2);
}
@media (max-width: 991px) {
  .scroll-slider__bg-fill {
    grid-column: 5/-1;
  }
}
@media (max-width: 575px) {
  .scroll-slider__bg-fill {
    grid-column: 1/-1;
  }
}
.scroll-slider__sticky {
  align-items: flex-end;
  display: flex;
  flex-direction: column;
  height: calc(100vh - var(--sub-menu-container-height, 0) - var(--header-height));
  justify-content: center;
  left: 50vw;
  pointer-events: none;
  position: sticky;
  top: calc(var(--sub-menu-container-height, 0) + var(--header-height));
  width: 50vw;
}
@media (max-width: 991px) {
  .scroll-slider__sticky {
    left: 25vw;
    width: 75vw;
  }
}
@media (max-width: 575px) {
  .scroll-slider__sticky {
    left: 0;
    width: 100vw;
  }
}
.mobile-edge .scroll-slider__sticky, .mobile-firefox .scroll-slider__sticky {
  height: 670px;
}
.scroll-slider__images {
  display: block;
  height: 90%;
  left: 0;
  max-width: 540px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 100%;
}
.mobile-edge .scroll-slider__images, .mobile-firefox .scroll-slider__images {
  height: 100%;
}
.scroll-slider__images picture {
  align-items: center;
  display: flex;
  height: 100%;
  justify-content: center;
  left: 0;
  opacity: 0;
  position: absolute;
  top: 0;
  transition: all ease 250ms;
  width: 100%;
}
@media (prefers-reduced-motion: reduce) {
  .scroll-slider__images picture {
    transition: none;
  }
}
.scroll-slider__images picture:first-child {
  opacity: 1 !important;
}
.scroll-slider__images img {
  display: block;
  height: 100%;
  object-fit: cover;
  object-position: center;
  width: 100%;
}
.scroll-slider__item {
  align-items: flex-start;
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: 50vw;
  min-height: 50lvh;
  min-height: 85lvh;
  padding-left: max(var(--site-gutter), 50% - 670px);
  position: relative;
  width: 100%;
  z-index: 1;
}
.mobile-edge .scroll-slider__item, .mobile-firefox .scroll-slider__item {
  max-height: 700px;
  min-height: 600px;
}
@media (max-width: 991px) {
  .scroll-slider__item {
    max-width: 100vw;
    padding-left: 0;
  }
}
.scroll-slider__content {
  max-width: 450px;
  opacity: 0;
  padding-left: 12%;
  position: relative;
  width: 100%;
}
@media (max-width: 991px) {
  .scroll-slider__content {
    background: white;
    max-width: 70vw;
    padding: 2rem;
  }
}
@media (max-width: 575px) {
  .scroll-slider__content {
    max-width: 90%;
  }
}
.scroll-slider__kicker {
  /* stylelint-disable-line */
  font-family: neue-haas-grotesk-display, sans-serif;
  font-style: normal;
  font-weight: 600; /* stylelint-disable-line */
  color: var(--kick-color);
  font-size: 24px;
  line-height: 1.5;
  margin-bottom: 16px;
}
.scroll-slider__title {
  /* stylelint-disable-line */
  font-family: neue-haas-grotesk-display, sans-serif;
  font-style: normal;
  font-weight: 600; /* stylelint-disable-line */
  color: var(--title-color);
  font-size: clamp(32px, 10.6666666667px + 0.0444444444 * 100vw, 64px);
  line-height: 1;
  margin: 0;
}
@media (min-width: 576px) and (max-width: 991px) and (orientation: landscape) {
  .scroll-slider__title {
    font-size: clamp(32px, 21.3333333333px + 0.0222222222 * 100vw, 48px);
  }
}
.scroll-slider__text {
  color: var(--text-color);
  font-size: 20px;
  letter-spacing: 0.2px;
  margin-top: 22px;
  max-width: 396px;
}
.scroll-slider__list {
  margin-left: 35px;
  margin-top: 27px;
}
.scroll-slider__list-item {
  color: var(--list-color);
  font-size: clamp(20px, 17.3333333333px + 0.0055555556 * 100vw, 24px);
  line-height: 1.2;
  text-indent: -20px;
}
.scroll-slider__list-item::before {
  content: "•";
  font-size: 20px;
  padding-right: 14px;
}
.scroll-slider__list-item + .scroll-slider__list-item {
  margin-top: 8px;
}

.section--signatures {
  --section-padding-top: 0;
  padding-top: 0;
}

.section--signatures .columns {
  column-gap: clamp(24px, -716px + 0.74 * 100vw, 172px);
  display: grid;
  grid-template-columns: 1fr;
  row-gap: 30px;
  padding-top: 50px;
}
@media (min-width: 768px) {
  .section--signatures .columns {
    grid-template-columns: 1fr 1fr;
  }
}
@media (min-width: 992px) {
  .section--signatures .columns {
    padding-inline: var(--site-gutter);
  }
}

.section--signatures .signature {
  column-gap: 24px;
  display: grid;
  grid-template-areas: "image sig" "image name";
  grid-template-columns: 92px 1fr;
  height: 92px;
}

.section--signatures .signatures__label {
  margin-bottom: 20px;
}

.section--signatures .signature + .signature {
  margin-top: 45px;
}

.section--signatures .signature__headshot {
  grid-area: image;
  width: 92px;
}

.section--signatures .signature__image {
  grid-area: sig;
}

.section--signatures .signature__image img {
  height: 75px;
  width: auto;
}

.section--signatures .signature__name {
  grid-area: name;
  margin-top: 1px;
}

.section--text-columns .columns {
  display: flex;
  flex-direction: column;
  row-gap: calc(var(--section-padding-top) * 2);
}
@media (min-width: 768px) {
  .section--text-columns .columns {
    flex-direction: row;
  }
}

@media (min-width: 768px) {
  .section--text-columns .columns[data-num-of-columns="2"] {
    column-gap: clamp(24px, -576px + 0.6 * 100vw, 144px);
  }
}

@media (min-width: 768px) {
  .section--text-columns .columns[data-num-of-columns="3"] {
    column-gap: clamp(24px, -256px + 0.28 * 100vw, 80px);
  }
}

.section--text-columns .column {
  flex: 1 1 0;
  position: relative;
}

@media (min-width: 992px) {
  .section--text-columns.has-dividers .column + .column::before {
    background-color: var(--divider-color);
    content: "";
    display: block;
    height: 100%;
    position: absolute;
    width: 1px;
  }
}

.section--text-columns.has-dividers.text-light {
  --divider-color: #57727F;
}

.section--text-columns.has-dividers .columns[data-num-of-columns="2"] .column + .column::before {
  left: calc(clamp(12px, -288px + 0.3 * 100vw, 72px) * -1);
}

.section--text-columns.has-dividers .columns[data-num-of-columns="3"] .column + .column::before {
  left: calc(clamp(12px, -128px + 0.14 * 100vw, 40px) * -1);
}

.section--text-columns .note {
  /* stylelint-disable-line */
  font-family: neue-haas-grotesk-display, sans-serif;
  font-style: italic;
  font-weight: 400; /* stylelint-disable-line */
  color: var(--dark-green);
  font-size: 12px;
  line-height: 1.5;
  margin-top: 50px;
}
@media (min-width: 768px) {
  .section--text-columns .note {
    margin-top: 70px;
  }
}
@media (min-width: 992px) {
  .section--text-columns .note {
    max-width: 530px;
  }
}

.section--text-columns .note strong {
  /* stylelint-disable-line */
  font-family: neue-haas-grotesk-display, sans-serif;
  font-style: normal;
  font-weight: 700; /* stylelint-disable-line */
}

.text-columns--our-people-1 {
  padding-bottom: 0;
}
@media (min-width: 992px) {
  .text-columns--our-people-1 {
    --section-padding-top: 0;
  }
}

.text-columns--our-people-1 h3,
.text-columns--our-people-2 h3 {
  /* stylelint-disable-line */
  font-family: neue-haas-grotesk-display, sans-serif;
  font-style: normal;
  font-weight: 400; /* stylelint-disable-line */
}

@media (max-width: 575px) {
  .text-columns--our-people-2 {
    padding-top: 0;
  }
}

.text-columns--our-communities-1 {
  padding-bottom: 0;
}

.text-columns--our-communities-3 h3 {
  /* stylelint-disable-line */
  font-family: neue-haas-grotesk-display, sans-serif;
  font-style: normal;
  font-weight: 400; /* stylelint-disable-line */
  font-size: 24px;
}

.text-columns--our-communities-4 h3 {
  /* stylelint-disable-line */
  font-family: neue-haas-grotesk-display, sans-serif;
  font-style: normal;
  font-weight: 400; /* stylelint-disable-line */
}

.text-columns--bechtel-1 {
  --headline-color: var(--yellow);
}

.section--two-col-text-block {
  --text-color: var(--dark-green);
  --headline-color: var(--dark-green);
  --image-vertical-offset: 60px;
  position: relative;
}

@media (min-width: 992px) {
  .section--two-col-text-block.legacy {
    --section-padding-bottom: 50px;
  }
}

@media (min-width: 992px) {
  .section--two-col-text-block.two-col-text-block--home {
    --section-padding-bottom: 140px;
  }
}

.section--two-col-text-block .columns {
  column-gap: clamp(24px, -576px + 0.6 * 100vw, 144px);
  display: grid;
  grid-template-columns: 1fr;
}
@media (min-width: 768px) {
  .section--two-col-text-block .columns {
    grid-template-columns: 1fr 1fr;
  }
}

.section--two-col-text-block .section-header {
  margin-bottom: 10px;
}
@media (min-width: 768px) {
  .section--two-col-text-block .section-header {
    padding-right: 20%;
  }
}
@media (min-width: 992px) {
  .section--two-col-text-block .section-header {
    padding-right: 0;
  }
}

.section--two-col-text-block .section-header__title {
  line-height: 1.5;
  /* stylelint-disable-line */
  font-family: neue-haas-grotesk-display, sans-serif;
  font-style: normal;
  font-weight: 400; /* stylelint-disable-line */
  color: var(--headline-color);
  font-size: clamp(40px, -80px + 0.12 * 100vw, 64px);
  line-height: 1.5;
  margin: 0;
}
.section--two-col-text-block .section-header__title::before, .section--two-col-text-block .section-header__title::after {
  content: "";
  display: block;
  height: 0;
  width: 0;
}
.section--two-col-text-block .section-header__title::before {
  margin-bottom: calc(-0.4em + 0px);
}
.section--two-col-text-block .section-header__title::after {
  margin-top: calc(-0.3722222222em + 15px);
}

.section--two-col-text-block .section-header__subtitle,
.section--two-col-text-block.small-header .section-header__title {
  line-height: 1.5;
  /* stylelint-disable-line */
  font-family: neue-haas-grotesk-display, sans-serif;
  font-style: normal;
  font-weight: 400; /* stylelint-disable-line */
  color: var(--headline-color);
  font-size: 32px;
  line-height: 1.5;
}
.section--two-col-text-block .section-header__subtitle::before, .section--two-col-text-block .section-header__subtitle::after,
.section--two-col-text-block.small-header .section-header__title::before,
.section--two-col-text-block.small-header .section-header__title::after {
  content: "";
  display: block;
  height: 0;
  width: 0;
}
.section--two-col-text-block .section-header__subtitle::before,
.section--two-col-text-block.small-header .section-header__title::before {
  margin-bottom: calc(-0.4em + 5px);
}
.section--two-col-text-block .section-header__subtitle::after,
.section--two-col-text-block.small-header .section-header__title::after {
  margin-top: calc(-0.3722222222em + 0px);
}

.section--two-col-text-block .section-header__note {
  /* stylelint-disable-line */
  font-family: neue-haas-grotesk-display, sans-serif;
  font-style: italic;
  font-weight: 400; /* stylelint-disable-line */
  color: var(--text-color);
  font-size: 12px;
  line-height: 1.5;
  margin-top: 12px;
  max-width: 155px;
}

.section--two-col-text-block .image-container {
  margin-left: calc(var(--site-gutter) * -1);
  margin-top: 55px;
}
@media (min-width: 768px) {
  .section--two-col-text-block .image-container {
    padding-right: 24px;
  }
}
@media (min-width: 992px) {
  .section--two-col-text-block .image-container {
    margin-left: calc(var(--site-gutter) * -2);
    padding-right: 0;
  }
}

.section--two-col-text-block.text-light {
  --text-color: var(--white);
  --headline-color: var(--yellow);
}

.section--two-col-text-block .testimonial {
  background-color: var(--white);
  margin: -300px 0 0 auto;
  max-width: 500px;
  padding: clamp(24px, 4px + 0.0416666667 * 100vw, 54px);
  position: relative;
  transform: translateX(var(--site-gutter));
  z-index: 1;
}
@media (min-width: 768px) {
  .section--two-col-text-block .testimonial {
    margin-top: calc(-100% + 3px);
    transform: none;
  }
}
@media (min-width: 992px) {
  .section--two-col-text-block .testimonial {
    transform: translateX(clamp(6px, -174px + 0.18 * 100vw, 42px));
  }
}
@media (min-width: 1100px) {
  .section--two-col-text-block .testimonial {
    transform: translateX(42px);
  }
}

.section--two-col-text-block .testimonial__label {
  color: var(--dark-blue);
  font-size: clamp(32px, 26.6666666667px + 0.0111111111 * 100vw, 40px);
  letter-spacing: 0.4px;
  line-height: 1.2;
}

.section--two-col-text-block .testimonial__quote {
  --text-color: var(--dark-green);
  /* stylelint-disable-line */
  font-family: neue-haas-grotesk-display, sans-serif;
  font-style: normal;
  font-weight: 500; /* stylelint-disable-line */
  font-size: clamp(16px, 13.3333333333px + 0.0055555556 * 100vw, 20px);
  line-height: 1.5;
  margin-top: 28px;
}

.section--two-col-text-block .content-container {
  margin-top: 10px;
}
@media (min-width: 768px) {
  .section--two-col-text-block .content-container {
    margin-top: 0;
    padding-right: 10%;
  }
}
@media (min-width: 992px) {
  .section--two-col-text-block .content-container {
    padding-right: 0;
  }
}

.section--two-col-text-block.is-large-text .content p {
  font-size: clamp(18px, 8.6666666667px + 0.0194444444 * 100vw, 32px);
}

@media (min-width: 768px) {
  .section--two-col-text-block.fixed-header .section-header {
    position: sticky;
    top: calc(var(--header-height) + var(--sub-menu-container-height, 0) + 24px);
  }
}

.two-col-text-block--our-impact-1 {
  padding-top: calc(var(--section-padding-top) * 4);
}

.two-col-text-block--our-people-1::after {
  bottom: 0;
}

.two-col-text-block--our-people-2 {
  margin-top: var(--section-padding-top);
}

.two-col-text-block--our-people-2::before {
  top: 0;
}

.two-col-text-block--our-people-3 {
  margin-top: calc(var(--section-padding-top) * 2);
}

.two-col-text-block--our-people-3::before {
  top: 0;
}

@media (max-width: 575px) {
  .two-col-text-block--our-people-4 {
    --section-padding-bottom: 0;
  }
}

.two-col-text-block--our-people-4 .column {
  grid-column: span 2;
}

.two-col-text-block--our-communities-1 {
  --text-color: var(--white);
  --headline-color: var(--white);
}

.two-col-text-block--our-communities-1 .image-container {
  max-width: 500px;
}
@media (min-width: 768px) {
  .two-col-text-block--our-communities-1 .image-container {
    padding-right: 24px;
  }
}
@media (min-width: 1100px) {
  .two-col-text-block--our-communities-1 .image-container {
    padding-right: 0;
  }
}

.two-col-text-block--our-communities-1 .content-container {
  margin-top: 24px;
}
@media (max-width: 991px) {
  .two-col-text-block--our-communities-1 .content-container {
    padding-right: 0;
  }
}

.two-col-text-block--our-communities-2 {
  padding-bottom: 0;
}

.two-col-text-block--our-communities-2::before {
  top: 0;
}

@media (max-width: 575px) {
  .two-col-text-block--our-communities-3 {
    --section-padding-top: 0;
    padding-bottom: var(--section-padding-bottom);
  }
}

.two-col-text-block--our-communities-4::before {
  top: 0;
}

.two-col-text-block--our-communities-5 {
  padding-top: 0;
}

.two-col-text-block--bechtel-2 .columns {
  column-gap: clamp(24px, -356px + 0.38 * 100vw, 100px);
}

@media (min-width: 992px) {
  .two-col-text-block--bechtel-2 .content-container {
    margin: 0 0 0 auto;
    max-width: 405px;
  }
}

.two-col-text-block--bechtel-2 .kicker {
  margin-bottom: 21px;
}

.two-col-text-block--bechtel-2 .kicker img {
  width: 182px;
}

.two-col-text-block--bechtel-3 {
  padding-top: calc(var(--section-padding-top) * 2);
}
@media (min-width: 768px) {
  .two-col-text-block--bechtel-3 {
    padding-bottom: 0;
  }
}

.two-col-text-block--bechtel-3.text-light {
  --headline-color: var(--white);
}

.two-col-text-block--bechtel-3 .columns {
  align-items: flex-end;
}

@media (min-width: 992px) {
  .two-col-text-block--bechtel-3 .content-container {
    margin-bottom: -50px;
  }
}

.two-col-text-block--bechtel-3 p {
  font-size: clamp(24px, 18.6666666667px + 0.0111111111 * 100vw, 32px);
}

.two-col-text-block--bechtel-3 p strong {
  /* stylelint-disable-line */
  font-family: neue-haas-grotesk-display, sans-serif;
  font-style: normal;
  font-weight: 500; /* stylelint-disable-line */
  color: var(--yellow);
}

.two-col-text-block--bechtel-4 {
  --image-vertical-offset: 150px;
  z-index: 10;
}

.two-col-text-block--bechtel-4 .columns {
  column-gap: 24px;
}

.two-col-text-block--bechtel-4 .image-container {
  margin-left: 0;
}

.two-col-text-block--bechtel-5 {
  --image-vertical-offset: 120px;
  z-index: 10;
}

.two-col-text-block--bechtel-5.text-light {
  --headline-color: var(--white);
}

.two-col-text-block--bechtel-5 .column {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.two-col-text-block--bechtel-5 .image-container {
  margin-left: 0;
}
@media (min-width: 768px) {
  .two-col-text-block--bechtel-5 .image-container {
    margin-top: 130px;
  }
}

.two-col-text-block--bechtel-6.text-light {
  --headline-color: var(--white);
}

.two-col-text-block--bechtel-6 .image-container {
  margin-left: 0;
}
@media (max-width: 575px) {
  .two-col-text-block--bechtel-6 .image-container {
    margin-top: 0;
  }
}

.two-col-text-block--bechtel-6 .content strong {
  /* stylelint-disable-line */
  font-family: neue-haas-grotesk-display, sans-serif;
  font-style: normal;
  font-weight: 600; /* stylelint-disable-line */
  color: var(--yellow);
}

.two-col-text-block--bechtel-7.text-light {
  --headline-color: var(--white);
}

.two-col-text-block--bechtel-7 .content-container {
  margin-top: 30px;
}
@media (min-width: 768px) {
  .two-col-text-block--bechtel-7 .content-container {
    margin-top: 0;
  }
}
@media (min-width: 992px) {
  .two-col-text-block--bechtel-7 .content-container {
    margin-top: 110px;
  }
}

.two-col-text-block--bechtel-7 .content .introtext {
  color: var(--yellow);
  font-size: clamp(24px, 13.3333333333px + 0.0222222222 * 100vw, 40px);
  letter-spacing: 0.4px;
  line-height: 1.6;
}
@media (min-width: 768px) {
  .two-col-text-block--bechtel-7 .content .introtext {
    margin-bottom: 40px;
  }
}

.two-col-text-block--bechtel-7 .content strong {
  /* stylelint-disable-line */
  font-family: neue-haas-grotesk-display, sans-serif;
  font-style: normal;
  font-weight: 600; /* stylelint-disable-line */
  color: var(--yellow);
}

.section--video-modal {
  --headline-color: var(--white);
  --text-color: var(--white);
  margin-bottom: var(--section-padding-bottom);
  margin-top: var(--section-padding-top);
  padding: 0;
  position: relative;
}

.section--video-modal .image-container {
  position: relative;
  z-index: 10;
}

.section--video-modal .image-container img {
  height: 60vh;
  max-height: 810px;
  object-fit: cover;
  width: 100%;
}
@media (min-width: 768px) {
  .section--video-modal .image-container img {
    height: 100%;
  }
}
.mobile-edge .section--video-modal .image-container img, .mobile-firefox .section--video-modal .image-container img {
  height: 480px;
}

.section--video-modal.is-contained img {
  margin: 0 auto;
  max-width: 1340px;
}

.section--video-modal .container {
  align-items: center;
  display: flex;
  height: 100%;
  left: 0;
  margin: 0;
  padding-inline: max(var(--site-gutter) * 2, 50% - 615px);
  position: absolute;
  top: 0;
  width: 100%;
  z-index: 10;
}

.section--video-modal .section-header {
  transform: translateY(40%);
}

.video-modal--bechtel-1 .kicker {
  background-color: var(--white);
  display: inline-block;
  margin-bottom: 3px;
  padding: 4px 8px;
}

.site-footer {
  background: var(--dark-green);
}

.site-footer .container {
  padding-bottom: 60px;
  padding-top: 60px;
}

.site-footer-top {
  display: flex;
  flex-direction: column-reverse;
  gap: 40px;
  margin-bottom: 55px;
}
@media (min-width: 730px) {
  .site-footer-top {
    flex-direction: row;
    justify-content: space-between;
    margin-bottom: 96px;
  }
}

.newsletter-signup {
  --headline-color: var(--white);
  color: var(--white);
}

.newsletter-signup__label {
  /* stylelint-disable-line */
  font-family: neue-haas-grotesk-display, sans-serif;
  font-style: normal;
  font-weight: 600; /* stylelint-disable-line */
  color: var(--white);
  font-size: 32px;
  letter-spacing: 0.32px;
  line-height: 1;
}

.newsletter-signup__teaser {
  /* stylelint-disable-line */
  font-family: neue-haas-grotesk-display, sans-serif;
  font-style: normal;
  font-weight: 600; /* stylelint-disable-line */
  font-size: 16px;
  letter-spacing: 0.16px;
  line-height: 1.2;
  margin-top: 16px;
  max-width: 360px;
}
@media (min-width: 768px) {
  .newsletter-signup__teaser {
    max-width: unset;
  }
}

.newsletter-signup__action {
  margin-top: 30px;
}

.site-footer .site-branding {
  display: inline-block;
  margin: 0 auto;
}
@media (min-width: 730px) {
  .site-footer .site-branding {
    display: block;
    margin: 0;
  }
}
.site-footer .site-branding:focus-visible {
  outline: white dotted 2px;
  outline-offset: 8px;
}
.site-footer .site-branding:focus {
  outline: white dotted 2px;
  outline-offset: 8px;
}
.site-footer .site-branding:focus:not(:focus-visible) {
  outline: none;
}

.site-footer .site-branding img {
  height: 196px;
  width: 261px;
}

.site-footer-header {
  border-bottom: 3px solid var(--white);
  display: flex;
  justify-content: space-between;
  margin-bottom: 40px;
  padding-bottom: 17px;
}

.site-footer-header .site-footer-header__title {
  /* stylelint-disable-line */
  font-family: neue-haas-grotesk-display, sans-serif;
  font-style: normal;
  font-weight: 500; /* stylelint-disable-line */
  color: var(--white);
  font-size: 20px;
  letter-spacing: 1.6px;
  line-height: 1;
}

.site-footer-header .social-profiles {
  gap: 5px;
}

.site-footer-header .social-profiles a {
  color: var(--white);
}
.site-footer-header .social-profiles a:focus-visible {
  outline: white dotted 2px;
  outline-offset: 4px;
}
.site-footer-header .social-profiles a:focus {
  outline: white dotted 2px;
  outline-offset: 4px;
}
.site-footer-header .social-profiles a:focus:not(:focus-visible) {
  outline: none;
}

@media (min-width: 992px) {
  .site-footer-header .social-profiles a:hover {
    transform: translateY(-2px);
  }
}

@media (min-width: 730px) {
  .site-footer-navigation {
    display: flex;
    justify-content: space-between;
  }
}

.site-footer .navigation {
  container-type: inline-size;
}
@media (min-width: 730px) {
  .site-footer .navigation {
    container-type: unset;
  }
}

.site-footer .menu {
  columns: 2;
  gap: clamp(1.25rem, -0.714rem + 5.238vw, 4rem);
}
@container (min-width: 550px) {
  .site-footer .menu {
    columns: 3;
  }
}
@media (min-width: 730px) {
  .site-footer .menu {
    columns: unset;
    display: flex;
  }
}

.site-footer .dropdown-toggle {
  display: none;
}

.site-footer .sub-menu {
  margin-top: 12px;
}

.site-footer .menu-item + .menu-item {
  break-inside: avoid-column;
}
@media (max-width: 729px) {
  .site-footer .menu-item + .menu-item {
    margin-top: 12px;
  }
}

.site-footer .sub-menu .menu-item + .menu-item {
  margin-top: 12px;
}

.site-footer .menu a {
  /* stylelint-disable-line */
  font-family: neue-haas-grotesk-display, sans-serif;
  font-style: normal;
  font-weight: 500; /* stylelint-disable-line */
  background: linear-gradient(to right, transparent, transparent), linear-gradient(135deg, var(--pomegranate), var(--pomegranate));
  background-position: 100% 100%, 0 100%;
  background-repeat: no-repeat;
  background-size: 100% 2px, 0 2px;
  color: var(--white);
  font-size: 16px;
  letter-spacing: 0.16px;
  line-height: 1;
  padding-bottom: 2px;
  text-decoration: none;
  transition: background-size 200ms;
}
.site-footer .menu a:focus-visible {
  outline: white dotted 2px;
  outline-offset: 4px;
}
.site-footer .menu a:focus {
  outline: white dotted 2px;
  outline-offset: 4px;
}
.site-footer .menu a:focus:not(:focus-visible) {
  outline: none;
}

.site-footer .menu a:hover {
  background-size: 0 2px, 100% 2px;
}

.site-footer .menu a.is-bold {
  /* stylelint-disable-line */
  font-family: neue-haas-grotesk-display, sans-serif;
  font-style: normal;
  font-weight: 700; /* stylelint-disable-line */
}

@media (max-width: 729px) {
  .site-footer .report-download {
    margin-top: 60px;
    text-align: center;
  }
}

.site-footer-utility {
  border-top: 1px solid rgba(var(--white-rgb), 0.6);
  display: flex;
  flex-direction: column;
  gap: 40px;
  margin-top: 40px;
  padding-top: 40px;
}
@media (min-width: 1070px) {
  .site-footer-utility {
    flex-direction: row;
    justify-content: space-between;
  }
}

.site-footer-utility .menu {
  gap: clamp(1.25rem, -0.714rem + 5.238vw, 2.5rem);
}

.site-footer-utility .menu-item a {
  /* stylelint-disable-line */
  font-family: neue-haas-grotesk-display, sans-serif;
  font-style: normal;
  font-weight: 400; /* stylelint-disable-line */
  font-size: 14px;
  letter-spacing: 0.14px;
}

.site-footer .copyright {
  /* stylelint-disable-line */
  font-family: neue-haas-grotesk-display, sans-serif;
  font-style: normal;
  font-weight: 400; /* stylelint-disable-line */
  color: var(--white);
  font-size: 14px;
  letter-spacing: 0.14px;
}

.site-footer .copyright__line + .copyright__line {
  margin-top: 15px;
}

.site-header {
  align-items: center;
  background-color: var(--dark-green);
  border-bottom: 1px solid var(--slate);
  display: flex;
  height: var(--header-height);
  justify-content: space-between;
  padding-left: var(--site-gutter);
  padding-right: var(--site-gutter);
  position: fixed;
  top: 0;
  transition: all 150ms ease;
  width: 100%;
  z-index: 100;
}
@media (min-width: 1070px) {
  .site-header {
    display: grid;
    grid-template-areas: "logo navigation";
    grid-template-columns: 100px 1fr;
  }
}
@media (min-width: 1200px) {
  .site-header {
    border-bottom: none;
    grid-template-areas: "logo navigation utility";
    grid-template-columns: 100px 1fr 100px;
  }
}

.site-header.slide-up {
  transform: translateY(-100%);
}

.site-header .site-branding {
  position: relative;
  width: fit-content;
}
.site-header .site-branding:focus-visible {
  outline: white dotted 2px;
  outline-offset: 8px;
}
.site-header .site-branding:focus {
  outline: white dotted 2px;
  outline-offset: 8px;
}
.site-header .site-branding:focus:not(:focus-visible) {
  outline: none;
}

.site-header .site-branding img {
  max-height: 38px;
  transition: max-height 150ms ease;
  width: auto;
}
@media (min-width: 768px) {
  .site-header .site-branding img {
    max-height: 46px;
  }
}
@media (min-width: 992px) {
  .site-header .site-branding img {
    max-height: 56px;
  }
}

.site-header.is-small .site-branding img {
  max-height: 36px;
}

.site-header .mobile-trigger {
  background-color: transparent;
  border: 0;
  cursor: pointer;
  display: inline-block;
  grid-area: utility;
  height: 30px;
  margin: 0 0 0 auto;
  padding: 0;
  position: relative;
  width: 30px;
}
@media (min-width: 1070px) {
  .site-header .mobile-trigger {
    display: none;
  }
}

.site-header .mobile-trigger span {
  margin: 0 auto;
  position: relative;
  transition-delay: 200ms;
}

.site-header .mobile-trigger span:before,
.site-header .mobile-trigger span:after {
  content: "";
  position: absolute;
}

.site-header .mobile-trigger span,
.site-header .mobile-trigger span:before,
.site-header .mobile-trigger span:after {
  background-color: var(--white);
  display: block;
  height: 2px;
  width: 30px;
}

.site-header .mobile-trigger span:before {
  margin-top: -10px;
  transition-delay: 200ms, 0s;
  transition-duration: 200ms;
  transition-property: margin, transform;
}

.site-header .mobile-trigger span:after {
  margin-top: 10px;
  transition-delay: 200ms, 0s;
  transition-duration: 200ms;
  transition-property: margin, transform;
}

.site-header .mobile-trigger.is-active span {
  background-color: rgba(0, 0, 0, 0);
  transition-delay: 200ms;
}

.site-header .mobile-trigger.is-active span:before {
  margin-top: 0;
  transform: rotate(45deg);
  transition-delay: 0s, 200ms;
}

.site-header .mobile-trigger.is-active span:after {
  margin-top: 0;
  transform: rotate(-45deg);
  transition-delay: 0s, 200ms;
}

.site-header .navigation {
  display: none;
  grid-area: navigation;
  height: 100%;
  width: 100%;
}
@media (min-width: 1070px) {
  .site-header .navigation {
    display: block;
  }
}

@media (min-width: 992px) {
  .site-header .menu {
    display: flex;
    height: 100%;
    justify-content: center;
  }
}

@media (min-width: 992px) {
  .site-header .menu::after {
    background-color: var(--bar-color);
    bottom: 0;
    content: "";
    height: 7px;
    left: 0;
    opacity: 0;
    pointer-events: none;
    position: absolute;
    transform: translateX(var(--bar-left, 50%));
    transition: transform 200ms ease, width 200ms ease, opacity 200ms ease 200ms, background-color 250ms ease;
    width: var(--bar-width, 0);
  }
}

.site-header .menu.is-ready::after {
  opacity: 1;
}

.site-header .menu-item {
  height: 100%;
}

.site-header .menu-item a {
  /* stylelint-disable-line */
  font-family: neue-haas-grotesk-display, sans-serif;
  font-style: normal;
  font-weight: 500; /* stylelint-disable-line */
  align-content: center;
  align-items: center;
  color: var(--white);
  display: flex;
  font-size: 16px;
  height: 100%;
  letter-spacing: 0.16px;
  line-height: 1.5;
  padding: 0 24px;
  position: relative;
  text-align: center;
  text-decoration: none;
}
.site-header .menu-item a:focus-visible {
  outline: white dotted 2px;
  outline-offset: -2px;
}
.site-header .menu-item a:focus {
  outline: white dotted 2px;
  outline-offset: -2px;
}
.site-header .menu-item a:focus:not(:focus-visible) {
  outline: none;
}

.site-header .dropdown-toggle {
  display: none;
}

.site-header .sub-menu {
  opacity: 0;
  transition: visibility 0s linear 300ms, opacity 300ms;
  visibility: hidden;
  background: rgba(var(--black-rgb), 0.6);
  display: flex;
  justify-content: center;
  left: 0;
  padding: 24px;
  position: absolute;
  width: 100%;
}

.site-header .menu-item.has-children.show-sub-menu .sub-menu {
  opacity: 1;
  transition: visibility 0s linear 0s, opacity 300ms;
  visibility: visible;
}

.site-header .menu-item.has-children:hover .sub-menu,
.site-header .menu-item.has-children:focus-within .sub-menu {
  opacity: 1;
  transition: visibility 0s linear 0s, opacity 300ms;
  visibility: visible;
}

.site-header .sub-menu .menu-item + .menu-item {
  border-left: 1px solid var(--white);
}

.site-header .sub-menu .menu-item a {
  /* stylelint-disable-line */
  font-family: neue-haas-grotesk-display, sans-serif;
  font-style: normal;
  font-weight: 500; /* stylelint-disable-line */
  color: var(--white);
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.16px;
  line-height: 1.5;
}

.site-header .sub-menu .menu-item.is-active a {
  /* stylelint-disable-line */
  font-family: neue-haas-grotesk-display, sans-serif;
  font-style: normal;
  font-weight: 700; /* stylelint-disable-line */
}

.social-profiles {
  display: flex;
}

.social-profiles a {
  display: block;
  height: 32px;
  transition: transform 150ms ease;
  width: 32px;
}
@media (min-width: 992px) {
  .social-profiles a {
    height: 20px;
    width: 20px;
  }
}

.social-profiles a svg {
  height: 100%;
  width: 100%;
}

.social-profiles .x-square {
  height: 100%;
  width: 93%;
}

.social-share-button {
  bottom: 20px;
  margin-bottom: 0;
  padding: 0;
  padding-top: 15px;
  position: fixed;
  right: 20px;
  transform: scale(0.8);
  z-index: 500;
}
@media (min-width: 992px) {
  .social-share-button {
    bottom: 24px;
    right: 24px;
    transform: scale(1);
  }
}

.social-share-trigger {
  align-items: center;
  background: linear-gradient(180deg, #DC0500 0%, #BB0703 100%);
  border: none;
  border-radius: 50%;
  box-shadow: 0px -2px 2px 0px rgba(0, 0, 0, 0.19) inset;
  color: var(--white);
  cursor: pointer;
  display: flex;
  height: 86px;
  justify-content: center;
  margin: 0;
  overflow: hidden;
  padding: 0;
  position: relative;
  transition: 300ms;
  width: 86px;
}
.social-share-trigger:focus-visible {
  outline: white dotted 2px;
  outline-offset: 4px;
}
.social-share-trigger:focus {
  outline: white dotted 2px;
  outline-offset: 4px;
}
.social-share-trigger:focus:not(:focus-visible) {
  outline: none;
}

.social-share-trigger:hover {
  transform: scale(1.05);
}

.social-share-button.active .social-share-trigger {
  transform: scale(0.8);
}

.social-share-button.active:hover .social-share-trigger {
  transform: scale(0.85);
}

.social-share-trigger .icon.close {
  display: none;
}

.social-share-button.active .icon.social-share {
  display: none;
}

.social-share-button.active .icon.close {
  display: block;
}

.social-share-button ul {
  bottom: 90px;
  left: 0;
  list-style: none;
  margin: 0;
  padding: 0;
  position: absolute;
  right: 0;
  text-align: center;
  visibility: hidden;
}

.social-share-button.active ul {
  visibility: visible;
}

.social-share-button li {
  margin-bottom: 15px;
}

.social-share-button a {
  align-items: center;
  background-color: var(--background-color);
  border-radius: 50%;
  color: var(--white);
  display: flex;
  height: 50px;
  justify-content: center;
  margin: 0 auto;
  opacity: 0;
  transform: scaleY(0.4) scaleX(0.4) translateY(80px) translateX(0px);
  transition: 200ms;
  width: 50px;
}

.social-share-button.active a:hover {
  transform: scale(1.1);
}

.social-share-button.active a {
  opacity: 1;
  transform: scaleY(1) scaleX(1) translateY(0px) translateX(0px);
}

.social-share-button a.facebook {
  --background-color: #3b5998;
}

.social-share-button a.twitter {
  --background-color: #1da1f2;
}

.social-share-button a.x {
  --background-color: var(--black);
}

.social-share-button a.linkedin {
  --background-color: #0077b5;
}