@charset "UTF-8";
html,
body {
  margin: 0;
  padding: 0;
  left: 0;
  top: 0;
  font-size: 100%;
}

.container {
  width: 90%;
  margin-left: auto;
  margin-right: auto;
}
@media only screen and (min-width: 33.75em) {
  .container {
    width: 80%;
  }
}
@media only screen and (min-width: 60em) {
  .container {
    width: 75%;
    max-width: 90rem;
  }
}
.container.full-width {
  width: 100%;
  margin-left: 0;
  margin-right: 0;
}
.container .row .distribute-evenly {
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}

.row {
  position: relative;
  width: 100%;
}

.row [class^=col] {
  float: left;
  margin: 0.5rem 2%;
  min-height: 0.125rem;
}

.row::after {
  content: "";
  display: table;
  clear: both;
}

.col-1, .col-2, .col-3, .col-4,
.col-5, .col-6, .col-7, .col-8,
.col-9, .col-10, .col-11, .col-12 {
  width: 96%;
}

.col-1-sm {
  width: 4.3333333333%;
}

.col-2-sm {
  width: 12.6666666667%;
}

.col-3-sm {
  width: 21%;
}

.col-4-sm {
  width: 29.3333333333%;
}

.col-5-sm {
  width: 37.6666666667%;
}

.col-6-sm {
  width: 46%;
}

.col-7-sm {
  width: 54.3333333333%;
}

.col-8-sm {
  width: 62.6666666667%;
}

.col-9-sm {
  width: 71%;
}

.col-10-sm {
  width: 79.3333333333%;
}

.col-11-sm {
  width: 87.6666666667%;
}

.col-12-sm {
  width: 96%;
}

@media only screen and (min-width: 45em) {
  .col-1 {
    width: 4.3333333333%;
  }
  .col-2 {
    width: 12.6666666667%;
  }
  .col-3 {
    width: 21%;
  }
  .col-4 {
    width: 29.3333333333%;
  }
  .col-5 {
    width: 37.6666666667%;
  }
  .col-6 {
    width: 46%;
  }
  .col-7 {
    width: 54.3333333333%;
  }
  .col-8 {
    width: 62.6666666667%;
  }
  .col-9 {
    width: 71%;
  }
  .col-10 {
    width: 79.3333333333%;
  }
  .col-11 {
    width: 87.6666666667%;
  }
  .col-12 {
    width: 96%;
  }
}
@media only screen and (max-width: 45em) {
  .hidden-sm {
    display: none !important;
  }
}
.ta-center {
  text-align: center;
}

.ta-right {
  text-align: right;
}

@media only screen and (max-width: 45em) {
  .m-ta-center {
    text-align: center;
  }
}

@media only screen and (max-width: 45em) {
  .m-ta-left {
    text-align: left;
  }
}

@media only screen and (max-width: 45em) {
  .m-ta-right {
    text-align: right;
  }
}

.np {
  padding: 0 !important;
}

.nm {
  margin: 0 !important;
}

.nm-x {
  margin-left: 0 !important;
  margin-right: 0 !important;
}

.nm-y {
  margin-top: 0 !important;
  margin-bottom: 0 !important;
}

.d-i {
  display: inline !important;
}

.d-b {
  display: block !important;
}

.d-ib {
  display: inline-block !important;
}

.d-n {
  display: none !important;
}

.h-100 {
  height: 100%;
}

.w-100 {
  width: 100%;
}

:root {
  --size-root-full: 1.1rem;
  --size-root: 1.1rem;
  --size1: calc(var(--size-root) + 1rem);
  --size2: var(--size-root);
  --size3: calc(var(--size-root) - 0.2rem);
  --size4: calc(var(--size-root) - 0.3rem);
  --size5: calc(var(--size-root) - 0.4rem);
}
@media only screen and (min-width: 45em) {
  :root {
    --size-root: 1.1rem;
    --size1: calc(var(--size-root) + 1.3rem);
    --size2: var(--size-root);
    --size3: calc(var(--size-root) - 0.2rem);
    --size4: calc(var(--size-root) - 0.3rem);
    --size5: calc(var(--size-root) - 0.4rem);
  }
}
:root {
  --size1-full: calc(var(--size-root-full) + 1.3rem);
  --size2-full: var(--size-root-full);
  --size3-full: calc(var(--size-root-full) - 0.2rem);
  --size4-full: calc(var(--size-root-full) - 0.3rem);
  --size5-full: calc(var(--size-root-full) - 0.4rem);
}

/*
Hover Lift

Adds a "lifted" effect from the background when hovered over,
complete with css transform and drop shadow - useful for buttons!

Usage:
element {
  @include components.hover-lift
}
*/
/*
Simple Grid

Easy break-onto-new-line with minimum item width CSS grid mixin.

Usage:
element {
  @include simple-grid($gap: 60px, $columns: 5, $minwidth, 200px);
 */
.button {
  display: inline-block;
  padding: 12px 30px;
  font-size: var(--size4);
  border: 0;
  border-radius: 6px;
  text-align: center;
}
.button.block {
  display: block;
}
.button.light {
  background: #eceeef;
  color: #003057;
}
.button.dark {
  background: #003057;
  color: #FFF;
}
.button.disabled {
  background: #a2aaad;
  color: #FFF;
}
.button.disabled:hover {
  cursor: not-allowed;
  pointer-events: all !important;
}
.button.button-video {
  display: inline-flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  padding: 0;
  box-sizing: border-box;
  background: transparent;
  color: #eceeef;
  font-size: var(--size3);
  font-weight: 400;
}
.button.button-video::after {
  content: url("/assets/img/player-play.svg");
  margin-left: 10px;
  height: 24px;
  width: 24px;
  border: 1px solid #eceeef;
  border-radius: 32px;
  padding: 8px;
  background: rgba(0, 0, 0, 0.4);
}
.button.button-video.disabled {
  border-color: #a2aaad;
  color: #a2aaad;
}
.button.button-video.disabled:hover {
  cursor: not-allowed;
  pointer-events: all !important;
}

.text-input {
  display: block;
  box-sizing: border-box;
  width: 100%;
  font-size: var(--size2);
  font-family: "open-sans", sans-serif;
  border: 2px solid #a2aaad;
  padding: 5px;
  border-radius: 6px;
}

.arrow {
  display: inline-block;
  line-height: 24px;
  font-size: var(--size4);
}
.arrow img {
  height: 24px;
  vertical-align: top;
}
.arrow.light {
  color: #003057;
}
.arrow.dark {
  color: #FFF;
}

a.arrow {
  box-shadow: none;
  transform: translateY(0);
  transition: transform 0.15s, box-shadow 0.15s;
}
a.arrow:hover:not(:active) {
  transform: translateY(-2px);
}

@property --cardGridGradientStop {
  syntax: "<length-percentage>";
  inherits: false;
  initial-value: 65%;
}
/*
Settings for all section(s)
 */
/*
Hero / Mini Hero

Large, almost full-height section usually used at the top of pages.
 */
section.hero {
  position: relative;
  height: calc(100vh - 60px);
  background-size: cover;
  background-position: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: #FFF;
  background-color: #000;
  overflow: hidden;
}
section.hero .hero-bg {
  position: absolute;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}
section.hero .container,
section.hero .scroll-arrow {
  z-index: 2;
}
section.hero video,
section.hero .video-container {
  top: -180px;
  position: absolute;
  height: 100%;
  width: 177.77777778vh; /* 100 * 16 / 9 */
  min-width: 100%;
  min-height: 56.25vw; /* 100 * 9 / 16 */
}
section.hero h1,
section.hero h2,
section.hero .button-video,
section.hero a.arrow {
  text-shadow: 0 0 5px rgb(0, 0, 0);
}
section.hero h1 {
  font-size: 50px;
}
section.hero:first-of-type h1 {
  font-size: 55px;
}
section.hero h2 {
  margin-top: 16px;
}
section.hero .button {
  margin-top: 25px;
  box-shadow: none;
  transform: translateY(0);
  transition: transform 0.15s, box-shadow 0.15s;
}
section.hero .button:hover:not(:active) {
  transform: translateY(-2px);
}
section.hero .hero-buttons {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 30px;
}
section.hero .gradient {
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.8) 0%, rgba(0, 212, 255, 0) 75%);
}
section.hero .gradient.invert {
  background: linear-gradient(270deg, rgba(0, 0, 0, 0.8) 0%, rgba(0, 212, 255, 0) 75%);
}
section.hero .video-gradient {
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3);
  z-index: 1;
}
section.hero .scroll-arrow {
  flex: none;
  position: relative;
  bottom: 100px;
  cursor: pointer;
  transition: transform 0.15s;
  display: flex;
  flex-direction: column;
  align-items: center;
}
section.hero .scroll-arrow span {
  font-size: var(--size4);
  display: block;
  margin-bottom: 5px;
}
section.hero .scroll-arrow img {
  opacity: 0.8;
  width: 50px;
}
section.hero .scroll-arrow:hover {
  transform: translateY(-2px);
}
section.hero .arrow {
  margin-top: 24px;
}
section.hero.mini {
  height: 535px;
}
section.hero.mini .gradient {
  height: 535px;
}
section.hero.tiny {
  height: 490px;
  justify-content: flex-end;
}
section.hero.tiny .container-hero {
  margin-bottom: 45px;
}
section.hero.tiny .gradient {
  height: 490px;
}
section.hero .hero-main {
  height: 100%;
  width: 100%;
}
section.hero .hero-main .hero-inner {
  height: 100%;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
section.hero .hero-main .hero-inner .container {
  position: relative;
}
section.hero .hero-stats {
  background: #000;
  position: relative;
  z-index: 2;
  width: 100%;
  padding: 33.75px 0;
}
section.hero .hero-stats h3 {
  font-size: var(--size1);
  font-weight: normal;
  margin: 0;
  line-height: var(--size1);
}
section.hero .hero-stats p {
  margin-top: 0;
  font-size: var(--size3);
}
section.hero .hero-stats .container.wide {
  display: flex;
  flex-direction: row;
  gap: 100px;
}
section.hero .hero-stats .hero-stat {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 15px;
}
section.hero .hero-image {
  text-align: right;
}

/*
Info

Size 1 left-aligned title, with paragraph(s) of informative text.
 */
section.info {
  padding: 45px 0;
}
section.info.light {
  background: #FFF;
  color: #003057;
}
section.info.dark {
  background: #003057;
  color: #FFF;
}

/*
Full Image

Centered actual size (but with max-width) image.
 */
section.fullImage {
  padding: 45px 0;
}
section.fullImage img {
  max-width: 100%;
}
section.fullImage div:last-of-type {
  text-align: center;
}
section.fullImage.light {
  background: #FFF;
}
section.fullImage.grey {
  background: #eceeef;
}
section.fullImage.dark {
  background: #001526;
}

/*
CTA (Call to Action)

Size 1 eye catching text, with button(s).
 */
section.cta {
  padding: 45px 0;
}
section.cta span {
  display: block;
}
section.cta span.size-3 {
  margin-top: 22.5px;
}
section.cta .cta-button {
  margin-top: 45px;
}
section.cta .cta-button img {
  display: block;
  width: 100%;
  max-width: 200px;
  margin-bottom: 22.5px;
}
section.cta .button {
  min-width: 150px;
  box-shadow: none;
  transform: translateY(0);
  transition: transform 0.15s, box-shadow 0.15s;
}
section.cta .button:hover:not(:active) {
  transform: translateY(-2px);
  box-shadow: 0 5px 7px 0 rgba(0, 0, 0, 0.5);
}
section.cta.light {
  background: #eceeef;
  color: #003057;
}
section.cta.dark {
  background: #003057;
  color: #FFF;
}
section.cta.darker {
  background: #001526;
  color: #FFF;
}

/*
Quote

Italicised quote with attribution.
 */
section.quote {
  padding: 45px 0;
}
section.quote .quote-inner {
  max-width: 800px;
  margin: auto;
}
section.quote span {
  display: block;
}
section.quote span:first-child {
  font-style: italic;
}
section.quote span:last-child {
  margin-top: 27px;
}
section.quote.light {
  background: #eceeef;
  color: #003057;
}
section.quote.dark {
  background: #003057;
  color: #FFF;
}

/*
Small Grid / Large Grid

"Info"-style text above, with a full-width row of items underneath.

As the only difference between these two grids are the sizes and
formatting of their .item elements, this is built as a generic
".esg-grid", with the two sizes extending it.
 */
.esg-grid, section.showcase, section.projectgallery, .largegrid, .smallgrid {
  padding: 45px 0;
}
.esg-grid span, section.showcase span, section.projectgallery span, .largegrid span, .smallgrid span {
  display: block;
}
.esg-grid span.size-3, section.showcase span.size-3, section.projectgallery span.size-3, .largegrid span.size-3, .smallgrid span.size-3 {
  margin-top: 22.5px;
}
.esg-grid .grid-container, section.showcase .grid-container, section.projectgallery .grid-container, .largegrid .grid-container, .smallgrid .grid-container {
  display: flex;
  flex-direction: row;
  justify-content: center;
  margin-top: 45px;
}
.esg-grid .grid-container .distribute-evenly, section.showcase .grid-container .distribute-evenly, section.projectgallery .grid-container .distribute-evenly, .largegrid .grid-container .distribute-evenly, .smallgrid .grid-container .distribute-evenly {
  overflow-x: auto;
  box-sizing: border-box;
  padding-left: 22.5px;
  padding-right: 22.5px;
}
.esg-grid .grid-container .distribute-evenly .item, section.showcase .grid-container .distribute-evenly .item, section.projectgallery .grid-container .distribute-evenly .item, .largegrid .grid-container .distribute-evenly .item, .smallgrid .grid-container .distribute-evenly .item {
  display: inline-block;
  box-shadow: none;
  transform: translateY(0);
  transition: transform 0.15s, box-shadow 0.15s;
}
.esg-grid .grid-container .distribute-evenly .item:hover:not(:active), section.showcase .grid-container .distribute-evenly .item:hover:not(:active), section.projectgallery .grid-container .distribute-evenly .item:hover:not(:active), .largegrid .grid-container .distribute-evenly .item:hover:not(:active), .smallgrid .grid-container .distribute-evenly .item:hover:not(:active) {
  transform: translateY(-2px);
}
.esg-grid .grid-container .distribute-evenly .item:not(:first-child), section.showcase .grid-container .distribute-evenly .item:not(:first-child), section.projectgallery .grid-container .distribute-evenly .item:not(:first-child), .largegrid .grid-container .distribute-evenly .item:not(:first-child), .smallgrid .grid-container .distribute-evenly .item:not(:first-child) {
  margin-left: 22.5px;
}
.esg-grid .grid-container .distribute-evenly .item img, section.showcase .grid-container .distribute-evenly .item img, section.projectgallery .grid-container .distribute-evenly .item img, .largegrid .grid-container .distribute-evenly .item img, .smallgrid .grid-container .distribute-evenly .item img {
  border-radius: 6px;
}
.esg-grid .grid-container .gradient, section.showcase .grid-container .gradient, section.projectgallery .grid-container .gradient, .largegrid .grid-container .gradient, .smallgrid .grid-container .gradient {
  position: absolute;
  top: 0;
  width: calc(100% + 2px);
  margin-left: -1px;
  height: 100%;
  pointer-events: none;
}
.esg-grid .grid-container-swiper, section.showcase .grid-container-swiper, section.projectgallery .grid-container-swiper, .largegrid .grid-container-swiper, .smallgrid .grid-container-swiper {
  margin-top: 45px;
}
.esg-grid .grid-container-swiper .grid-swiper, section.showcase .grid-container-swiper .grid-swiper, section.projectgallery .grid-container-swiper .grid-swiper, .largegrid .grid-container-swiper .grid-swiper, .smallgrid .grid-container-swiper .grid-swiper {
  overflow-x: hidden;
  padding-bottom: 10px;
}
.esg-grid .grid-container-swiper .grid-swiper .item, section.showcase .grid-container-swiper .grid-swiper .item, section.projectgallery .grid-container-swiper .grid-swiper .item, .largegrid .grid-container-swiper .grid-swiper .item, .smallgrid .grid-container-swiper .grid-swiper .item {
  display: inline-block;
  text-align: center;
}
.esg-grid .grid-container-swiper .grid-swiper .item a, section.showcase .grid-container-swiper .grid-swiper .item a, section.projectgallery .grid-container-swiper .grid-swiper .item a, .largegrid .grid-container-swiper .grid-swiper .item a, .smallgrid .grid-container-swiper .grid-swiper .item a {
  display: inline-block;
  text-align: left;
}
.esg-grid .grid-container-swiper .grid-swiper .item, section.showcase .grid-container-swiper .grid-swiper .item, section.projectgallery .grid-container-swiper .grid-swiper .item, .largegrid .grid-container-swiper .grid-swiper .item, .smallgrid .grid-container-swiper .grid-swiper .item {
  box-shadow: none;
  transform: translateY(0);
  transition: transform 0.15s, box-shadow 0.15s;
}
.esg-grid .grid-container-swiper .grid-swiper .item:hover:not(:active), section.showcase .grid-container-swiper .grid-swiper .item:hover:not(:active), section.projectgallery .grid-container-swiper .grid-swiper .item:hover:not(:active), .largegrid .grid-container-swiper .grid-swiper .item:hover:not(:active), .smallgrid .grid-container-swiper .grid-swiper .item:hover:not(:active) {
  transform: translateY(-2px);
}
.esg-grid .grid-container-swiper .grid-swiper .item img, section.showcase .grid-container-swiper .grid-swiper .item img, section.projectgallery .grid-container-swiper .grid-swiper .item img, .largegrid .grid-container-swiper .grid-swiper .item img, .smallgrid .grid-container-swiper .grid-swiper .item img {
  border-radius: 6px;
}
.esg-grid .grid-container-swiper .grid-swiper.scroll-message-unlocked::after, section.showcase .grid-container-swiper .grid-swiper.scroll-message-unlocked::after, section.projectgallery .grid-container-swiper .grid-swiper.scroll-message-unlocked::after, .largegrid .grid-container-swiper .grid-swiper.scroll-message-unlocked::after, .smallgrid .grid-container-swiper .grid-swiper.scroll-message-unlocked::after {
  content: "← Swipe to view more →";
  display: block;
  position: absolute;
  width: 100%;
  text-align: center;
  font-size: var(--size4);
  bottom: -28px;
}
.esg-grid .grid-container-swiper .gradient, section.showcase .grid-container-swiper .gradient, section.projectgallery .grid-container-swiper .gradient, .largegrid .grid-container-swiper .gradient, .smallgrid .grid-container-swiper .gradient {
  position: absolute;
  top: 0;
  width: calc(100% + 2px);
  margin-left: -1px;
  height: 100%;
  pointer-events: none;
}
.esg-grid.light, section.light.showcase, section.light.projectgallery, .light.largegrid, .light.smallgrid {
  background: #eceeef;
  color: #003057;
}
.esg-grid.light .gradient, section.light.showcase .gradient, section.light.projectgallery .gradient, .light.largegrid .gradient, .light.smallgrid .gradient {
  background: linear-gradient(90deg, #FFF 0%, rgba(0, 0, 0, 0) 22.5px, rgba(0, 0, 0, 0) calc(100% - 45px / 2), #FFF 100%);
}
.esg-grid.dark, section.dark.showcase, section.dark.projectgallery, .dark.largegrid, .dark.smallgrid {
  background: #001526;
  color: #FFF;
}
.esg-grid.dark .gradient, section.dark.showcase .gradient, section.dark.projectgallery .gradient, .dark.largegrid .gradient, .dark.smallgrid .gradient {
  background: linear-gradient(90deg, #001526 0%, rgba(0, 0, 0, 0) 22.5px, rgba(0, 0, 0, 0) calc(100% - 45px / 2), #001526 100%);
}
.esg-grid.dark .swiper-scrollbar, section.dark.showcase .swiper-scrollbar, section.dark.projectgallery .swiper-scrollbar, .dark.largegrid .swiper-scrollbar, .dark.smallgrid .swiper-scrollbar {
  background: rgba(255, 255, 255, 0.1);
}
.esg-grid.dark .swiper-scrollbar .swiper-scrollbar-drag, section.dark.showcase .swiper-scrollbar .swiper-scrollbar-drag, section.dark.projectgallery .swiper-scrollbar .swiper-scrollbar-drag, .dark.largegrid .swiper-scrollbar .swiper-scrollbar-drag, .dark.smallgrid .swiper-scrollbar .swiper-scrollbar-drag {
  background: rgba(255, 255, 255, 0.5);
}

.smallgrid .grid-container-swiper {
  column-gap: 80px;
}
.smallgrid .grid-container-swiper .item {
  width: 175px;
}
.smallgrid .grid-container-swiper .item img {
  width: 175px;
}
.smallgrid .grid-container-swiper .item span {
  margin-top: 5px;
  font-size: var(--size3);
}
.smallgrid.lb-smallgrid-projects .item span {
  font-size: var(--size3);
}
.smallgrid.lb-smallgrid-projects .item span:first-of-type:not(.c-dark-grey) {
  margin-top: 5px;
  font-weight: bold;
}
.smallgrid.lb-smallgrid-projects .item span:last-of-type {
  display: inline;
}
.smallgrid.lb-smallgrid-projects .item span a {
  color: #a2aaad;
}

.cardgrid {
  padding: 45px 0;
  color: #003057;
}
.cardgrid .cardgrid-header {
  font-size: var(--size1);
}
.cardgrid .cardgrid-body p {
  margin-top: 20px;
}
.cardgrid:has(details[open]) .cardgrid-header,
.cardgrid:has(details[open]) .cardgrid-body {
  display: none;
}
.cardgrid .grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 15px;
}
.cardgrid .grid.three {
  grid-template-columns: repeat(3, 1fr);
}
.cardgrid .grid .item {
  transition: gap 0.8s cubic-bezier(0.22, 1, 0.36, 1);
  color: #FFF;
  background: #000;
  height: 300px;
  border-radius: 6px;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 0;
  padding: 22.5px;
  overflow: hidden;
}
.cardgrid .grid .item .item-bg {
  transition: background-size 0.8s cubic-bezier(0.22, 1, 0.36, 1);
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  bottom: 0;
  background-size: auto 100%;
  background-position: center;
  background-repeat: no-repeat;
}
.cardgrid .grid .item span {
  z-index: 2;
}
.cardgrid .grid .item .item-header {
  font-size: 1.6rem;
  line-height: 1.6rem;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.cardgrid .grid .item .item-description {
  transition: opacity 0.8s cubic-bezier(0.22, 1, 0.36, 1);
  opacity: 0;
  min-height: 0;
  box-sizing: border-box;
}
.cardgrid .grid .item .item-description p {
  margin-top: 10px;
  font-size: 0.8rem;
  line-height: 1rem;
}
.cardgrid .grid .item .item-within {
  display: inline-grid;
  grid-template-rows: min-content 0fr;
  transition: grid-template-rows 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}
.cardgrid .grid .item:hover {
  gap: 20px;
}
.cardgrid .grid .item:hover .item-bg {
  background-size: auto 110%;
}
.cardgrid .grid .item:hover .item-description {
  opacity: 1;
  flex: min-content;
}
.cardgrid .grid .item:hover .item-within {
  grid-template-rows: min-content 1fr;
}
.cardgrid .grid .item:hover:has(.item-description):before {
  --cardGridGradientStop: 0%;
}
.cardgrid .grid .item:before {
  transition: --cardGridGradientStop 0.8s cubic-bezier(0.22, 1, 0.36, 1);
  z-index: 1;
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 6px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) var(--cardGridGradientStop), rgb(0, 0, 0) 100%);
}

.largegrid .grid-container-swiper {
  column-gap: 50px;
}
.largegrid .grid-container-swiper .item {
  width: 130px;
}
.largegrid .grid-container-swiper .item img {
  max-width: 130px;
}
.largegrid .grid-container-swiper .item span {
  font-size: var(--size3);
  line-height: 1.25rem;
}
.largegrid .grid-container-swiper .item span:first-of-type {
  font-weight: 600;
  margin-top: 15px;
}
.largegrid .grid-container-swiper .item span:nth-of-type(3) {
  color: #a2aaad;
}
.largegrid.reflow .swiper-wrapper {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(max(130px, (100% - 180px) / 7), 1fr));
  grid-gap: 30px;
  justify-items: center;
}

/* Lightbox-specific content for the above.
Sits outside the section as the DIV is dynamically generated
 */
.glightbox-container .gslide-description {
  background: #fff;
}
.glightbox-container .gdesc-inner {
  padding: 22px 20px;
}
.glightbox-container .gslide-title {
  font-size: 1em;
  font-weight: normal;
  font-family: arial;
  color: #000;
  margin-bottom: 19px;
  line-height: 1.4em;
}
.glightbox-container .gslide-desc {
  font-size: 0.86em;
  margin-bottom: 0;
  font-family: arial;
  line-height: 1.4em;
}
.glightbox-container .gslide-video {
  background: #000;
}
@media only screen and (max-width: 768px) {
  .glightbox-container .gslide-video {
    max-width: 100% !important;
  }
}
.glightbox-container .gprev,
.glightbox-container .gnext,
.glightbox-container .gclose {
  background-color: rgba(0, 0, 0, 0.75);
  border-radius: 4px;
}
.glightbox-container .gprev path,
.glightbox-container .gnext path,
.glightbox-container .gclose path {
  fill: #fff;
}
.glightbox-container .gprev {
  position: absolute;
  top: -100%;
  left: 30px;
  width: 40px;
  height: 50px;
}
.glightbox-container .gnext {
  position: absolute;
  top: -100%;
  right: 30px;
  width: 40px;
  height: 50px;
}
.glightbox-container .gclose {
  width: 35px;
  height: 35px;
  top: 15px;
  right: 10px;
  position: absolute;
}
.glightbox-container .gclose svg {
  width: 18px;
  height: auto;
}
.glightbox-container .gclose:hover {
  opacity: 1;
}

.glightbox-projects .gprev,
.glightbox-projects .gnext {
  display: none;
}
.glightbox-projects .gslide {
  max-width: 700px;
}

.gslide-media {
  border-radius: 6px;
}

.lightbox {
  display: none;
  margin: 0 !important;
  padding: 0 !important;
}
.lightbox .lightbox-inner {
  display: flex;
}
.lightbox .lightbox-inner > * {
  flex: 1;
}
.lightbox .lightbox-inner .swiper {
  z-index: 999999;
  aspect-ratio: 1/1;
}
.lightbox .lightbox-inner .swiper .swiper-slide {
  background-size: cover;
  width: 100%;
  height: 100%;
}
.lightbox .lightbox-inner .swiper .swiper-button-next,
.lightbox .lightbox-inner .swiper .swiper-button-prev {
  color: #FFF;
  text-shadow: 0 0 8px #1a1a1a;
}
.lightbox .lightbox-inner .swiper .swiper-pagination {
  bottom: 22.5px;
}
.lightbox .lightbox-inner .swiper .swiper-pagination span {
  border: 2px solid #fff;
  box-sizing: border-box;
  opacity: 1;
  width: 12px;
  height: 12px;
}
.lightbox .lightbox-inner .swiper .swiper-pagination .swiper-pagination-bullet {
  background: none;
}
.lightbox .lightbox-inner .swiper .swiper-pagination .swiper-pagination-bullet-active {
  border: none;
  background: #fff;
}
.lightbox .lightbox-inner .lightbox-body {
  box-sizing: border-box;
}
.lightbox .lightbox-inner .lightbox-body .lightbox-body-inner {
  margin: 45px;
  color: #003057;
}

/*
Accordion

A horizontal accordion that expands horizontally on hover, with a title and description for each item.

*/
section.accordion {
  margin: 0;
  width: 100%;
}
section.accordion .accordion-container {
  display: flex;
  flex-direction: row;
  width: 100%;
  height: 700px;
}
section.accordion.threeQuarters .accordion-container {
  height: 525px;
}
section.accordion.twoThirds .accordion-container {
  height: 462px;
}
section.accordion.half .accordion-container {
  height: 350px;
}
section.accordion .item {
  position: relative;
  flex: 1;
  height: 100%;
  min-width: 0;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  transition: flex 1s cubic-bezier(0.16, 1, 0.3, 1);
  color: #FFF;
  padding: 22.5px;
  box-sizing: border-box;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
section.accordion .item:hover {
  flex: 6;
}
section.accordion .item:hover .item-description {
  opacity: 1;
}
section.accordion .item:hover .item-within {
  grid-template-rows: min-content 1fr;
}
section.accordion .item .item-within {
  display: inline-grid;
  grid-template-rows: min-content 0fr;
  transition: grid-template-rows 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}
section.accordion .item .item-header {
  font-weight: bold;
  font-size: 1.6rem;
  white-space: nowrap;
}
section.accordion .item .item-description {
  opacity: 0;
  width: 500px;
  min-height: 0;
  transition: opacity 1s cubic-bezier(0.16, 1, 0.3, 1);
}
section.accordion .item .item-description p {
  margin-top: 7px;
}
section.accordion .item .item-header,
section.accordion .item .item-description {
  position: relative;
  z-index: 2;
  pointer-events: none;
}
section.accordion .item:before {
  z-index: 1;
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(0deg, rgb(0, 0, 0) 10%, rgba(255, 255, 255, 0) 70%);
}

/*
List Boxes

A grid of cards with headers, descriptions, and <li>s

TODO: essentially rewrite this - it's just lifted from the existing
 website but the autowidths and media queries aren't really
 compatible with the rest of the grid layout.
*/
section.listboxes {
  padding: 45px 0;
  background: #001526;
  color: #FFF;
}
section.listboxes div.listbox-container {
  width: 100%;
}
section.listboxes div.listbox-container div.listbox-inner {
  max-width: 1400px;
  margin: auto;
  padding: 45px 3em 0 3em;
  display: flex;
  flex-direction: row;
  align-items: stretch;
  flex-wrap: wrap;
}
section.listboxes div.listbox-container div.listbox-inner div.listbox-box {
  flex: 1;
  background: #eceeef;
  padding: 15px 25px;
  transition: background 0.2s;
  margin-right: 1.5em;
  box-sizing: border-box;
}
section.listboxes div.listbox-container div.listbox-inner div.listbox-box:last-of-type {
  margin-right: 0;
}
section.listboxes div.listbox-container div.listbox-inner div.listbox-box:hover {
  background: #001526;
}
section.listboxes div.listbox-container div.listbox-inner div.listbox-box:hover > span, section.listboxes div.listbox-container div.listbox-inner div.listbox-box:hover > ul {
  color: #fff;
}
section.listboxes div.listbox-container div.listbox-inner span, section.listboxes div.listbox-container div.listbox-inner ul {
  display: block;
  color: #003057;
  transition: color 0.2s;
}
section.listboxes div.listbox-container div.listbox-inner span.listbox-box-title {
  font-size: var(--size2)0.3rem;
  border-bottom: solid 7px #f28c1c;
  width: 100%;
  padding-bottom: 20px;
  padding-top: 10px;
}
section.listboxes div.listbox-container div.listbox-inner span.listbox-box-subtitle {
  font-size: var(--size2)-0.23rem;
  width: 100%;
  margin: 20px 0;
}
section.listboxes div.listbox-container div.listbox-inner ul.listbox-box-list {
  font-size: var(--size2)-0.23rem;
  padding-left: 20px;
  padding-top: 2px;
}
section.listboxes div.listbox-container div.listbox-inner ul.listbox-box-list li {
  margin: 20px 0;
  padding-left: 20px;
}

/*
Project Gallery

A large featured info slot, with a large grid-style section of
cards underneath.
*/
section.projectgallery {
  padding: 45px 0;
  color: #003057;
}
section.projectgallery .vap-row {
  margin-bottom: 20px;
}
section.projectgallery .row:first-child span {
  font-size: var(--size2);
}
section.projectgallery span {
  display: block;
}
section.projectgallery span.size-2 {
  margin-top: 22.5px;
}
section.projectgallery img {
  border-radius: 6px;
}
section.projectgallery img.featured-image {
  height: 440px;
  width: auto;
}
section.projectgallery img.thumbnail-image {
  height: 207px;
  width: auto;
}
section.projectgallery .grid-container {
  column-gap: 65px;
}
section.projectgallery .grid-container .item span {
  font-size: var(--size3);
}
section.projectgallery .grid-container .item span:first-of-type {
  margin-top: 5px;
  font-weight: bold;
}
section.projectgallery .grid-container .item span:last-of-type {
  display: inline;
}
section.projectgallery .grid-container .item span a {
  color: #a2aaad;
}

/*
Showcase

A large item-based slot, with the design of a projectGallery,
and the functionality of lbSmallGrid.
*/
section.showcase {
  padding: 45px 0;
  color: #003057;
  background: #FFF;
}
section.showcase .vap-row {
  margin-bottom: 20px;
}
section.showcase .vap-row a {
  box-shadow: none;
  transform: translateY(0);
  transition: transform 0.15s, box-shadow 0.15s;
}
section.showcase .vap-row a:hover:not(:active) {
  transform: translateY(-2px);
}
section.showcase .row:first-child span {
  font-size: var(--size2);
}
section.showcase span {
  display: block;
}
section.showcase span.size-2 {
  margin-top: 22.5px;
}
section.showcase img {
  border-radius: 6px;
}
section.showcase img.featured-image {
  max-height: 440px;
  max-width: 100%;
}
section.showcase img.thumbnail-image {
  height: 207px;
  width: auto;
}
section.showcase .grid-container-swiper {
  column-gap: 65px;
}
section.showcase .grid-container-swiper .item {
  width: 207px;
}
section.showcase .grid-container-swiper .item span {
  font-size: var(--size3);
}
section.showcase .grid-container-swiper .item span:first-of-type {
  margin-top: 5px;
  font-weight: bold;
}
section.showcase .grid-container-swiper .item span:last-of-type {
  display: inline;
}
section.showcase .grid-container-swiper .item span a {
  color: #a2aaad;
}
section.showcase .grid-container-swiper .item .item-image {
  position: relative;
}
section.showcase .grid-container-swiper .item .item-image .corner-ribbon__inner {
  left: 0px;
  position: absolute;
  top: 0px;
  height: 4rem;
  width: 4rem;
  overflow: hidden;
}
section.showcase .grid-container-swiper .item .item-image .corner-ribbon__inner .corner-ribbon__ribbon {
  left: 1rem;
  position: absolute;
  top: 1rem;
  height: 1.5rem;
  width: 5.656rem;
  transform: translate(-38px, -8px) rotate(-45deg);
  background-color: #003057;
  text-align: center;
  color: #FFF;
  box-shadow: -3px 2px 2px 0px rgba(0, 0, 0, 0.2);
}
section.showcase .gradient {
  background: linear-gradient(90deg, #FFF 0%, rgba(0, 0, 0, 0) 22.5px, rgba(0, 0, 0, 0) calc(100% - 45px / 2), #FFF 100%);
}

/*
Media Grid

Rigid grid of video thumbnails with their runtime, title, and description.
*/
section.mediagrid {
  padding: 45px 0;
  background: #001526;
  color: #FFF;
}
section.mediagrid .mediagrid-grid {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(max(207px, (100% - 240px) / 5), 1fr));
  grid-gap: 60px;
}
section.mediagrid .mediagrid-grid .item {
  box-shadow: none;
  transform: translateY(0);
  transition: transform 0.15s, box-shadow 0.15s;
}
section.mediagrid .mediagrid-grid .item:hover:not(:active) {
  transform: translateY(-2px);
}
section.mediagrid .mediagrid-grid .item a {
  display: inline-block;
  position: relative;
  width: 100%;
}
section.mediagrid .mediagrid-grid .item a img {
  width: 100%;
  height: auto;
  border-radius: 15px;
}
section.mediagrid .mediagrid-grid .item a span.runtime {
  position: absolute;
  bottom: 13px;
  right: 10px;
  background: rgba(0, 0, 0, 0.8);
  padding: 6px 10px;
  border-radius: 5px;
  line-height: 1;
  font-size: var(--size4);
}
section.mediagrid .mediagrid-grid .item span.title {
  display: block;
  margin: 10px 0;
}
section.mediagrid .mediagrid-grid .item span.description {
  color: #a2aaad;
}

/*
Publications Grid

Rigid grid of video thumbnails with their runtime, title, and description.
*/
section.publicationsgrid {
  padding: 45px 0;
  background: #001526;
  color: #FFF;
}
section.publicationsgrid .mediagrid-grid {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(max(103.5px, (100% - 240px) / 5), 1fr));
  grid-gap: 60px;
}
section.publicationsgrid .mediagrid-grid .item {
  box-shadow: none;
  transform: translateY(0);
  transition: transform 0.15s, box-shadow 0.15s;
}
section.publicationsgrid .mediagrid-grid .item:hover:not(:active) {
  transform: translateY(-2px);
}
section.publicationsgrid .mediagrid-grid .item a {
  display: inline-block;
  position: relative;
  width: 100%;
}
section.publicationsgrid .mediagrid-grid .item a img {
  width: 100%;
  height: auto;
}
section.publicationsgrid .mediagrid-grid .item a span.runtime {
  position: absolute;
  bottom: 13px;
  right: 10px;
  background: rgba(0, 0, 0, 0.8);
  padding: 6px 10px;
  border-radius: 5px;
  line-height: 1;
  font-size: var(--size4);
}
section.publicationsgrid .mediagrid-grid .item span.title {
  display: block;
  margin: 10px 0;
}
section.publicationsgrid .mediagrid-grid .item span.description {
  color: #a2aaad;
}

/*
Career Boxes

Cards with a button, which could be either enabled or disabled.
*/
section.careerboxes {
  padding: 45px 0;
  background: #001526;
  color: #FFF;
}
section.careerboxes .careerboxes-grid {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(max(296px, (100% - 75px) / 4), 1fr));
  grid-gap: 25px;
}
section.careerboxes .careerboxes-grid .item {
  background: #eceeef;
  color: #003057;
  padding: 20px;
  border-radius: 6px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
section.careerboxes .careerboxes-grid .item div.item-buttons {
  display: flex;
  flex-direction: row;
  justify-content: stretch;
  gap: 15px;
}
section.careerboxes .careerboxes-grid .item div.item-buttons a.button {
  margin-top: 30px;
  width: 100%;
  text-align: center;
}
section.careerboxes .careerboxes-grid .item div.item-buttons a.button:not(.disabled) {
  box-shadow: none;
  transform: translateY(0);
  transition: transform 0.15s, box-shadow 0.15s;
}
section.careerboxes .careerboxes-grid .item div.item-buttons a.button:not(.disabled):hover:not(:active) {
  transform: translateY(-2px);
  box-shadow: 0 5px 7px 0 rgba(0, 0, 0, 0.5);
}
section.careerboxes .careerboxes-grid .item span {
  display: block;
}
section.careerboxes .careerboxes-grid .item span.careerbox-title {
  font-weight: bold;
}
section.careerboxes .careerboxes-grid .item span.careerbox-sector {
  margin-top: 8px;
}
section.careerboxes div.container:last-of-type {
  margin-top: 45px;
}

/*
Project Grid

Almost identical to Small Grid, but running over an unlimited amount of lines
Implemented with the simple-grid component.
*/
section.projectgrid {
  padding: 22.5px 0 45px 0;
  color: #003057;
  background: #fff;
}
section.projectgrid select {
  width: 100%;
  font-size: var(--size3);
  padding: 5px;
  font-family: "open-sans", sans-serif;
  background: #eceeef;
  border: 2px solid #a2aaad;
  border-radius: 5px;
  color: #a2aaad;
  margin-bottom: 22.5px;
}
section.projectgrid .projectgrid-grid {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(max(175px, (100% - 280px) / 5), 1fr));
  grid-gap: 70px;
}
section.projectgrid .projectgrid-grid .item img {
  width: 100%;
  height: auto;
  border-radius: 6px;
}
section.projectgrid .projectgrid-grid .item span {
  display: block;
}
section.projectgrid .projectgrid-grid .item span:first-of-type {
  margin-top: 15px;
}
section.projectgrid .projectgrid-grid .item span:last-of-type {
  color: #a2aaad;
}
section.projectgrid .projectgrid-grid .item {
  box-shadow: none;
  transform: translateY(0);
  transition: transform 0.15s, box-shadow 0.15s;
}
section.projectgrid .projectgrid-grid .item:hover:not(:active) {
  transform: translateY(-2px);
}
section.projectgrid div.center {
  padding-top: 45px;
  text-align: center;
}
section.projectgrid div.center .button {
  box-shadow: none;
  transform: translateY(0);
  transition: transform 0.15s, box-shadow 0.15s;
}
section.projectgrid div.center .button:hover:not(:active) {
  transform: translateY(-2px);
  box-shadow: 0 5px 7px 0 rgba(0, 0, 0, 0.5);
}

/*
News Grid

As above, but for news items
*/
section.newsgrid {
  padding: 45px 0;
  color: #003057;
  background: #fff;
}
section.newsgrid .container:first-of-type {
  margin-bottom: 45px;
}
section.newsgrid .newsgrid-grid {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(max(175px, (100% - 280px) / 5), 1fr));
  grid-gap: 70px;
}
section.newsgrid .newsgrid-grid .item img {
  width: 100%;
  height: auto;
  border-radius: 6px;
}
section.newsgrid .newsgrid-grid .item span {
  display: block;
}
section.newsgrid .newsgrid-grid .item span:first-of-type {
  margin-top: 15px;
  font-weight: bold;
}
section.newsgrid .newsgrid-grid .item a:not(:first-child) {
  display: block;
  color: #a2aaad;
  margin-top: 15px;
}
section.newsgrid .newsgrid-grid .item {
  box-shadow: none;
  transform: translateY(0);
  transition: transform 0.15s, box-shadow 0.15s;
}
section.newsgrid .newsgrid-grid .item:hover:not(:active) {
  transform: translateY(-2px);
}
section.newsgrid div.center {
  padding-top: 45px;
  text-align: center;
}

/*
News Item

Single text and image page for reading a full news item.
*/
section.newsitem {
  padding: 45px 0;
  color: #003057;
  background: #fff;
}
section.newsitem .row:first-of-type div {
  margin-bottom: 45px;
}
section.newsitem img {
  width: 100%;
  height: auto;
}
section.newsitem h1 {
  margin-top: 45px;
}
section.newsitem p {
  font-size: var(--size2);
}
section.newsitem a {
  text-decoration: underline;
  box-shadow: none;
  transform: translateY(0);
  transition: transform 0.15s, box-shadow 0.15s;
}
section.newsitem a:hover:not(:active) {
  transform: translateY(-2px);
}

/*
Default

Default page for long text.
*/
section.default {
  padding: 45px 0;
  color: #003057;
  background: #fff;
}
section.default .row:not(:first-child) {
  padding: 15px 0;
}
section.default.bthp {
  padding-bottom: 0;
}
section.default div.policy-link {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  margin-bottom: 10px;
}
section.default div.policy-link a:first-child {
  margin-right: 10px;
}
section.default div.policy-link a:hover {
  text-decoration: underline;
}
section.default div.policy-link img {
  width: 32px;
}
section.default div.policy-link {
  box-shadow: none;
  transform: translateY(0);
  transition: transform 0.15s, box-shadow 0.15s;
}
section.default div.policy-link:hover:not(:active) {
  transform: translateY(-2px);
}

hr.text-divider {
  border: none;
  margin: 0 auto;
  border-bottom: 2px solid #003057;
}

/*
Default

John's Story page - most of this will be hard-coded
*/
section.story {
  padding: 45px 0;
  color: #003057;
  background: #FFF;
}
section.story p {
  font-size: var(--size2);
}
section.story img:not(.signature) {
  width: 100%;
}
section.story img.signature {
  width: 200px;
}
section.story .story-top-images {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 30px;
  gap: 20px;
}
section.story .story-top-images div {
  flex: 1;
}
section.story .story-image-caption {
  font-size: var(--size4);
  margin-top: 0;
}
section.story .story-mt {
  margin-top: 20px;
}

/*
Contact Info

3-column address information with map buttons.
*/
section.contactinfo {
  padding: 45px 0;
  color: #003057;
  background: #fff;
}
section.contactinfo .address {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}
section.contactinfo .address p {
  flex: 1;
  margin-top: 16px;
  margin-bottom: 0;
}
section.contactinfo .address p:last-child {
  text-align: right;
}
section.contactinfo .button {
  box-shadow: none;
  transform: translateY(0);
  transition: transform 0.15s, box-shadow 0.15s;
}
section.contactinfo .button:hover:not(:active) {
  transform: translateY(-2px);
  box-shadow: 0 5px 7px 0 rgba(0, 0, 0, 0.5);
}
section.contactinfo .button {
  margin-top: 50px;
  text-align: center;
  padding-left: 40px;
  padding-right: 40px;
  white-space: nowrap;
}

/*
Contact Form

Form fields for contacting ESG.
*/
section.contactform {
  padding: 45px 0;
  color: #003057;
  background: #eceeef;
}
section.contactform h1 {
  margin-bottom: 45px;
}
section.contactform label {
  display: block;
  margin-bottom: 10px;
}
section.contactform label.inline {
  display: inline;
}
section.contactform textarea {
  min-height: 200px;
  resize: vertical;
}
section.contactform .button {
  box-shadow: none;
  transform: translateY(0);
  transition: transform 0.15s, box-shadow 0.15s;
}
section.contactform .button:hover:not(:active) {
  transform: translateY(-2px);
  box-shadow: 0 5px 7px 0 rgba(0, 0, 0, 0.5);
}
section.contactform .button {
  text-align: center;
  padding-left: 40px;
  padding-right: 40px;
  cursor: pointer;
}
section.contactform .row.contact-success p {
  display: block;
  background: #003057;
  padding: 20px 0;
  margin-bottom: 20px;
  border-radius: 6px;
  color: #fff;
}

/*
Carousel / Carousel Static

Swipeable hero-esque slides.
*/
section.carousel {
  height: 800px;
  background-color: #001526;
  color: #FFF;
}
section.carousel h2 {
  margin-top: 7px;
}
section.carousel div.swiper {
  height: 100%;
  width: 100%;
}
section.carousel div.swiper .item {
  background-size: cover;
  background-position: center;
  background-color: #003057;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
section.carousel div.swiper .swiper-pagination {
  bottom: 22.5px;
}
section.carousel div.swiper .swiper-pagination span {
  border: 2px solid #fff;
  box-sizing: border-box;
  opacity: 1;
  width: 12px;
  height: 12px;
}
section.carousel div.swiper .swiper-pagination .swiper-pagination-bullet {
  background: none;
}
section.carousel div.swiper .swiper-pagination .swiper-pagination-bullet-active {
  border: none;
  background: #fff;
}
section.carousel div.swiper .autoplay-progress {
  position: absolute;
  right: 16px;
  bottom: 16px;
  z-index: 10;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  color: #003057;
}
section.carousel div.swiper .autoplay-progress svg {
  --progress: 0;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 10;
  width: 100%;
  height: 100%;
  stroke-width: 4px;
  stroke: #003057;
  fill: none;
  stroke-dashoffset: calc(125.6 * (1 - var(--progress)));
  stroke-dasharray: 125.6;
  transform: rotate(-90deg);
}
section.carousel div.swiper .autoplay-progress.light {
  color: #FFF;
}
section.carousel div.swiper .autoplay-progress.light svg {
  stroke: #FFF;
}
section.carousel.static {
  position: relative;
}
section.carousel.static .static-container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 99;
  width: 100%;
  max-width: 100%;
  height: 100%;
  pointer-events: none;
}

/*
Modular Info

Hard-coded modular section with hoverable items.
*/
section.modularinfo {
  background: #fff;
}
section.modularinfo .process-image-container {
  padding-top: 45px;
  width: 1170px;
  height: 527px;
  overflow: hidden;
  margin: auto;
  color: #003057;
}
section.modularinfo .process-image {
  display: block;
  width: 1170px;
  height: 527px;
  background-size: 100%;
  margin: auto;
}
section.modularinfo .process-image .point {
  display: inline-block;
  position: relative;
  font-size: 12px;
  width: 180px;
}
section.modularinfo .process-image .point span p {
  transition: all 0.2s;
  opacity: 0;
}
section.modularinfo .process-image .point span.hovered p {
  opacity: 1;
}
section.modularinfo .process-image .point a {
  transition: all 0.2s;
  display: inline-block;
  position: relative;
  width: 30px;
  height: 30px;
}
section.modularinfo .process-image .point a img {
  width: 100%;
  height: 100%;
}
section.modularinfo .process-image .point a:hover {
  transform: scale(1.2);
}
section.modularinfo .process-image .point-1 {
  top: 270px;
  left: 69px;
}
section.modularinfo .process-image .point-1 a {
  top: 17px;
  left: 70px;
}
section.modularinfo .process-image .point-2 {
  top: 103px;
  left: -40px;
}
section.modularinfo .process-image .point-2 a {
  top: -10px;
  left: 156px;
}
section.modularinfo .process-image .point-3 {
  top: 80px;
  left: 487px;
}
section.modularinfo .process-image .point-3 a {
  top: -41px;
  left: -44px;
}
section.modularinfo .process-image .point-4 {
  top: 195px;
  left: 424px;
}
section.modularinfo .process-image .point-4 a {
  top: -40px;
  left: -45px;
}
section.modularinfo .mobile-hero-container {
  display: none;
}

/*
Apps

Internal app link slider
 */
section.apps {
  position: relative;
  padding: 45px 0;
  background: #eceeef;
  color: #003057;
}
section.apps #swiper-parent {
  margin-top: 45px;
}
section.apps #swiper-parent .swiper-button-prev,
section.apps #swiper-parent .swiper-button-prev {
  position: static;
}
section.apps #swiper-parent .col-1 {
  height: 132px;
  display: flex;
  align-items: center;
}
section.apps #swiper-parent .col-1:first-child {
  justify-content: flex-end;
}
section.apps #swiper-parent .col-1:last-child {
  justify-content: flex-start;
}
section.apps #swiper-parent .col-1 a {
  margin-top: -25px;
}
section.apps #swiper-parent .col-1 a img {
  height: 32px;
}
section.apps #swiper-parent .apps-container {
  margin-top: 18px;
  padding-left: 30px;
  padding-right: 30px;
  padding-bottom: 65px;
  cursor: grab;
}
section.apps #swiper-parent .apps-container .swiper-slide {
  height: 64px;
  width: 64px;
  transform-style: flat;
  -webkit-transform-style: flat;
}
section.apps #swiper-parent .apps-container .swiper-slide a {
  display: block;
  height: 100%;
  width: 100%;
  opacity: 0;
}
section.apps #swiper-parent .apps-container .swiper-slide .swiper-slide-app {
  background-position: center;
  background-size: cover;
  height: 64px;
  width: 64px;
}
section.apps #swiper-parent .apps-container .swiper-slide .swiper-slide-meta {
  margin-top: 10px;
  width: 200%;
  margin-left: -50%;
  text-align: center;
}
section.apps #swiper-parent .apps-container:before {
  background: linear-gradient(90deg, #eceeef 0%, rgba(239, 239, 239, 0) 2%, rgba(239, 239, 239, 0) 98%, #eceeef 100%);
  content: " ";
  position: absolute;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 999;
  pointer-events: none;
}

body {
  font-family: "open-sans", sans-serif;
  font-weight: 300 !important;
  font-style: normal;
  background-color: #000;
}

div.master {
  background-color: #FFF;
}

h1, h2 {
  margin: 0;
}

h1, h1 p {
  font-size: var(--size1);
  font-weight: 300;
  line-height: 1.2;
}

h2, h2 p {
  font-size: 1.3rem;
  font-weight: 300;
}

.size-1 {
  font-size: var(--size1) !important;
}

.size-2 {
  font-size: var(--size2) !important;
}

.size-3 {
  font-size: var(--size3) !important;
}

.size-4 {
  font-size: var(--size4) !important;
}

.c-blue {
  color: #003057;
}

.c-dark-blue {
  color: #001526;
}

.c-light-grey {
  color: #eceeef;
}

.c-dark-grey {
  color: #a2aaad;
}

.c-orange {
  color: #f28c1c;
}

a {
  color: inherit;
  text-decoration: none;
}

p {
  font-size: var(--size2);
}
p:first-child {
  margin-top: 0;
}
p:last-child {
  margin-bottom: 0;
}

details {
  margin-top: 20px;
}
details .details-within {
  max-height: 730px;
  overflow-y: auto;
}
details summary {
  cursor: pointer;
  margin-bottom: 10px;
}

.text-muted {
  color: #a2aaad;
}

.esg-component-header {
  width: 100%;
  background: #f28c1c;
  text-align: center;
  padding: 10px 0;
  font-size: 1.2rem;
}

nav.header-float {
  width: calc(100% - 32px - 20px);
  border-radius: 16px;
  position: fixed;
  top: 26px;
  left: 26px;
  z-index: 999;
  font-size: 0.9rem;
  color: #000;
  background-color: rgba(255, 255, 255, 0.7333333333);
  box-shadow: 0 5px 7px 0 rgba(0, 0, 0, 0.25);
  backdrop-filter: blur(2px);
  box-sizing: border-box;
}
nav.header-float .header-container {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  padding: 20px 10px 20px 20px;
}
nav.header-float .header-container a:first-child:has(img),
nav.header-float .header-container a:first-child img {
  height: 30px;
}
nav.header-float .header-container .navbar-search img {
  height: 30px;
}
nav.header-float .header-container .navbar {
  vertical-align: baseline;
}
nav.header-float .header-container .navbar > .navbar-item {
  font-weight: bold;
  display: inline;
  position: relative;
  margin-right: 20px;
}
nav.header-float .header-container .navbar > .navbar-item a:first-child {
  position: relative;
  z-index: 99;
}
nav.header-float .header-container .navbar > .navbar-item a:first-child:hover {
  text-decoration: underline;
}
nav.header-float .header-container .navbar > .navbar-item a.active {
  text-decoration: underline;
}
nav.header-float .header-container .navbar > .navbar-item .navbar-item-menu {
  text-transform: none;
  display: block;
  pointer-events: none;
  opacity: 0;
  position: absolute;
  left: -10px;
  top: 0;
  padding-top: 30px;
  z-index: 98;
}
nav.header-float .header-container .navbar > .navbar-item .navbar-item-menu a {
  display: block;
  margin: 10px 0;
  white-space: nowrap;
}
nav.header-float .header-container .navbar > .navbar-item .navbar-item-menu a:hover {
  text-decoration: underline;
}
nav.header-float .header-container .navbar > .navbar-item .navbar-item-menu {
  transition: opacity 0.15s;
}
nav.header-float .header-container .navbar > .navbar-item .navbar-item-menu .navbar-item-menu-inner {
  background: rgba(0, 21, 38, 0.9);
  backdrop-filter: blur(1px);
  padding: 1px 10px;
  border-radius: 5px;
}
nav.header-float .header-container .navbar > .navbar-item:hover .navbar-item-menu {
  pointer-events: all;
  opacity: 1;
}

nav.header {
  height: 60px;
  width: 100%;
  z-index: 999;
  color: #fff;
  font-size: 0.9rem;
}
nav.header .container {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  padding: 15px 0;
}
nav.header .container a,
nav.header .container a:first-child img {
  height: 30px;
}
nav.header .container .navbar-padding,
nav.header .container .navbar-padding img {
  height: 30px;
}
nav.header .container .navbar {
  vertical-align: baseline;
}
nav.header .container .navbar > .navbar-item {
  display: inline;
  position: relative;
}
nav.header .container .navbar > .navbar-item:not(:last-of-type)::after {
  content: "|";
  display: inline-block;
  margin: 0 10px;
}
nav.header .container .navbar > .navbar-item a:first-child {
  position: relative;
  z-index: 99;
}
nav.header .container .navbar > .navbar-item a:first-child:hover {
  text-decoration: underline;
}
nav.header .container .navbar > .navbar-item .navbar-item-menu {
  text-transform: none;
  display: block;
  pointer-events: none;
  opacity: 0;
  position: absolute;
  left: -10px;
  top: 0;
  padding-top: 30px;
  z-index: 98;
}
nav.header .container .navbar > .navbar-item .navbar-item-menu a {
  display: block;
  margin: 10px 0;
  white-space: nowrap;
}
nav.header .container .navbar > .navbar-item .navbar-item-menu a:hover {
  text-decoration: underline;
}
nav.header .container .navbar > .navbar-item .navbar-item-menu {
  transition: opacity 0.15s;
}
nav.header .container .navbar > .navbar-item .navbar-item-menu .navbar-item-menu-inner {
  background: rgba(0, 21, 38, 0.9);
  backdrop-filter: blur(1px);
  padding: 1px 10px;
  border-radius: 5px;
}
nav.header .container .navbar > .navbar-item:hover .navbar-item-menu {
  pointer-events: all;
  opacity: 1;
}

nav.footer-new {
  width: 100%;
  color: #FFF;
  font-size: 0.9rem;
  background: #000;
}
nav.footer-new a:hover {
  text-decoration: underline;
}
nav.footer-new .footer-section {
  border-top: 2px solid #1a1a1a;
}
nav.footer-new .footer-section:first-child {
  border-top: none;
}
nav.footer-new .footer-section:last-child {
  font-size: 12px;
}
nav.footer-new .container {
  padding: 20px 0;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
}
nav.footer-new .footer-heading {
  font-size: 40px;
  line-height: 1.1;
}
nav.footer-new .footer-image {
  position: relative;
  height: 150px;
  width: 300px;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: right center;
  margin: -20px 0;
}
nav.footer-new .footer-image-gradient {
  position: absolute;
  height: 150px;
  width: 300px;
  background: linear-gradient(90deg, rgb(0, 0, 0) 10%, rgba(255, 255, 255, 0) 60%);
}
nav.footer-new .footer-main {
  align-self: stretch;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 30px;
  justify-content: flex-start;
}
nav.footer-new .footer-main .footer-logos {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 36px;
}
nav.footer-new .footer-main .footer-logos .footer-logo {
  height: 32px;
}
nav.footer-new .footer-main .footer-logos .footer-linkedin img {
  height: 16px;
  padding: 8px;
  border-radius: 4px;
  border: 1px solid white;
}
nav.footer-new .footer-main .footer-logos a {
  box-shadow: none;
  transform: translateY(0);
  transition: transform 0.15s, box-shadow 0.15s;
}
nav.footer-new .footer-main .footer-logos a:hover:not(:active) {
  transform: translateY(-2px);
}
nav.footer-new .footer-nav-row {
  display: flex;
  position: relative;
}
nav.footer-new .footer-nav-row > .navbar-item {
  display: inline;
  position: relative;
  top: 0;
}
nav.footer-new .footer-nav-row > .navbar-item:not(:last-of-type)::after {
  content: "|";
  display: inline-block;
  margin: 0 10px;
}
nav.footer-new .footer-nav-row > .navbar-item a:first-child {
  position: relative;
  z-index: 99;
}
nav.footer-new .footer-nav-row > .navbar-item a:first-child:hover {
  text-decoration: underline;
}
nav.footer-new .footer-nav-col {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
nav.footer-new .footer-copyright {
  text-align: right;
}

nav.footer {
  width: 100%;
  color: #003057;
  font-size: 0.9rem;
  background: #FFF;
}
nav.footer a:hover {
  text-decoration: underline;
}
nav.footer .container {
  padding: 20px 0;
}
nav.footer .container .navbar {
  text-align: right;
}
nav.footer .container .navbar .navbar-item {
  display: inline-block;
  line-height: 48px;
}
nav.footer .container .navbar .navbar-item:not(:first-child) a:not(.noSeparator)::before {
  content: "|";
  display: inline-block;
  margin: 0 10px;
}
nav.footer .container .navbar img {
  vertical-align: middle;
  margin-left: 10px;
  height: 28px;
  margin-bottom: 8px;
}
nav.footer .copyright {
  font-size: var(--size4);
}
nav.footer .copyright span {
  color: #4c4c4d;
}
nav.footer .copyright {
  width: 100%;
  background: #eceeef;
}
nav.footer .copyright .container div div {
  display: inline-block;
}
nav.footer .copyright .container div div .navbar-item {
  display: inline-block;
}
nav.footer .copyright .container div div .navbar-item::before {
  content: "|";
  display: inline-block;
  margin: 0 10px;
}

section.navbar-shim {
  background: #001526;
  height: 30px;
  padding: 20px 0;
}

#scrollToTop {
  display: none;
  position: fixed;
  bottom: 64px;
  right: 64px;
  z-index: 999;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.15s;
  cursor: pointer;
}
#scrollToTop.active {
  opacity: 1;
  pointer-events: all;
}
#scrollToTop a {
  background: rgba(255, 255, 255, 0.4666666667);
  backdrop-filter: blur(3px);
  border-radius: 25px;
  display: flex;
  flex-direction: row;
  align-items: center;
  overflow: hidden;
  padding-left: 0;
  transition: padding-left 0.15s;
  box-shadow: 0 5px 7px 0 rgba(0, 0, 0, 0.5);
}
#scrollToTop a span {
  width: 0;
  white-space: nowrap;
  transition: width 0.15s;
  overflow: hidden;
  color: #003057;
  font-weight: 400;
}
#scrollToTop a img {
  height: 50px;
}
#scrollToTop a:hover {
  padding-left: 20px;
}
#scrollToTop a:hover span {
  width: 110px;
}

#cookieBanner {
  position: fixed;
  bottom: 0;
  left: 0;
  z-index: 10001;
  opacity: 1;
  width: 100%;
}
#cookieBanner #cookieBannerInner {
  background: rgba(210, 210, 210, 0.8);
  border-radius: 10px;
  padding: 18px;
  margin: 32px;
  max-width: 400px;
}
#cookieBanner #cookieBannerInner a.button {
  box-shadow: none;
  transform: translateY(0);
  transition: transform 0.15s, box-shadow 0.15s;
}
#cookieBanner #cookieBannerInner a.button:hover:not(:active) {
  transform: translateY(-2px);
}
#cookieBanner #cookieBannerInner a.button {
  padding: 8px 20px;
}
#cookieBanner #cookieBannerInner a:not(.button) {
  text-decoration: underline;
}
#cookieBanner #cookieBannerInner a:not(.button):hover {
  color: #001526;
}
#cookieBanner #cookieBannerInner p {
  font-size: var(--size3);
  color: #003057;
}

#cookieBannerBg {
  z-index: 10000;
  content: "";
  background: rgba(0, 0, 0, 0.5);
  width: 100vw;
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
}

nav.header {
  display: none;
}

body {
  margin-top: 70px;
}
body #hamburger img {
  transition: 0.15s all;
  opacity: 1;
  position: absolute;
  left: 0;
}
body #hamburger .close-icon {
  opacity: 0;
}
body.navopen {
  overflow-y: hidden;
  width: 100%;
}
body.navopen #hamburger .open-icon {
  opacity: 0;
}
body.navopen #hamburger .close-icon {
  opacity: 1;
}

.navbar-shim {
  display: none;
}

nav.mobileheader {
  width: 100%;
  display: block;
  height: 70px;
  position: fixed;
  top: 0;
  z-index: 9999;
}
nav.mobileheader .mobile-nav-bar {
  position: relative;
  height: 100%;
  padding: 0 20px;
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  background: #000;
}
nav.mobileheader .mobile-nav-bar a {
  height: 70px;
  width: auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
nav.mobileheader .mobile-nav-bar a.hamburger {
  flex: none;
  position: absolute;
  right: 52px;
}
nav.mobileheader .mobile-nav-bar a.hamburger img {
  height: 36px;
}
nav.mobileheader .mobile-nav-bar a.logo img {
  margin-top: 8px;
  height: 28px;
  flex: none;
}
nav.mobileheader .mobile-nav-pane {
  height: calc(100vh - 70px);
  overflow-x: hidden;
  overflow-y: auto;
  position: absolute;
  top: 70px;
  right: -100%;
  width: 100%;
  z-index: 9999;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  transition: right 0.15s;
  font-size: var(--size2-full);
  padding: 30px 30px 130px 30px;
  box-sizing: border-box;
  color: #eceeef;
  font-weight: 400;
}
nav.mobileheader .mobile-nav-pane.open {
  display: block;
  right: 0;
}
nav.mobileheader .mobile-nav-pane .navbar-item {
  text-align: right;
}
nav.mobileheader .mobile-nav-pane .navbar-item .arrow {
  width: 35px;
}
nav.mobileheader .mobile-nav-pane .navbar-item .arrow img {
  vertical-align: bottom;
  height: 28px;
  transition: transform 0.15s;
}
nav.mobileheader .mobile-nav-pane .navbar-item .arrow a.open img {
  transform: rotateZ(90deg);
}
nav.mobileheader .mobile-nav-pane .navbar-item > a {
  display: inline;
  margin-bottom: 1px;
}
nav.mobileheader .mobile-nav-pane .navbar-item:not(:first-child) {
  margin-top: 20px;
}
nav.mobileheader .mobile-nav-pane .navbar-item .navbar-item-menu {
  height: 0;
  padding-left: 60px;
  overflow: hidden;
  transition: transform 0.15s, opacity 0.15s;
  transform: translateX(-30px);
  opacity: 0;
}
nav.mobileheader .mobile-nav-pane .navbar-item .navbar-item-menu.open {
  margin-top: 20px;
  margin-bottom: 30px;
  height: auto;
  transform: translateX(0);
  opacity: 1;
}

section.modularinfo .process-image-container {
  width: 100%;
  overflow-x: auto;
}

@media only screen and (min-width: 1501px) {
  nav.header {
    display: block;
  }
  nav.mobileheader {
    display: none;
  }
  .navbar-shim {
    display: block;
  }
  body {
    margin-top: 0;
  }
  #scrollToTop {
    display: block !important;
  }
}
@media only screen and (max-width: 1500px) {
  .hero,
  .carousel {
    max-height: calc(100vh - 70px);
  }
  .hero.mini {
    max-height: calc(66.875vh - 70px);
  }
  .hero.mini .gradient {
    max-height: calc(66.875vh - 70px);
  }
  section.hero .hero-stats .container.wide {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(max(150px, (100% - 120px) / 5), 1fr));
    grid-gap: 30px;
  }
  section.hero:has(.hero-image) .row {
    flex-direction: column;
    align-items: center;
  }
  section.hero:has(.hero-image) .hero-image img {
    width: 100%;
  }
}
@media only screen and (max-width: 60em) {
  section.listboxes div.listbox-container div.listbox-inner {
    display: block;
    padding: 1.5em !important;
  }
  section.listboxes div.listbox-container div.listbox-inner div.listbox-box {
    width: 100%;
    margin: 0 0 1em;
  }
  section.listboxes div.listbox-container div.listbox-inner div.listbox-box:last-of-type {
    margin-bottom: 0;
  }
  section.listboxes div.listbox-container div.listbox-inner div.listbox-box:hover {
    background: #eceeef;
  }
  section.listboxes div.listbox-container div.listbox-inner div.listbox-box:hover > span, section.listboxes div.listbox-container div.listbox-inner div.listbox-box:hover > ul {
    color: #003057;
  }
  .lightbox .lightbox-inner {
    display: block;
  }
  .lightbox .lightbox-inner > * {
    flex: none;
    min-height: auto;
  }
  .lightbox .lightbox-inner .swiper {
    aspect-ratio: 1/1;
  }
  .gslide-media {
    border-radius: 0;
    max-height: 100vh;
  }
  .grid-container .row {
    margin-left: 0 !important;
  }
  .grid-container .distribute-evenly .item:not(:first-child) {
    margin-left: 22.5px;
  }
  .grid-container .distribute-evenly .item img {
    border-radius: 6px;
  }
  .grid-container .gradient {
    width: calc(100% + 2px) !important;
    margin-left: -1px !important;
  }
}
@media only screen and (max-width: 33.75em) {
  section.projectgrid .container.wide {
    width: 100%;
    margin: 0;
  }
  section.projectgrid .container.wide .projectgrid-grid {
    grid-template-columns: 1fr 1fr 1fr;
    gap: 1px;
  }
  section.projectgrid .container.wide .projectgrid-grid .item {
    aspect-ratio: 1/1;
    overflow: hidden;
  }
  section.projectgrid .container.wide .projectgrid-grid .item span {
    display: none;
  }
  section.showcase .container.wide .row .distribute-evenly {
    display: block;
    padding: 0;
  }
  section.showcase .container.wide .row .distribute-evenly .item {
    margin: 0;
    display: block;
  }
  section.showcase .container.wide .row .distribute-evenly .item a {
    display: flex;
    flex-direction: row;
    gap: 10px;
  }
  section.showcase .container.wide .row .distribute-evenly .item a .item-image {
    flex: 1;
  }
  section.showcase .container.wide .row .distribute-evenly .item a .item-image img {
    width: 100%;
    height: auto;
  }
  section.showcase .container.wide .row .distribute-evenly .item a .item-text {
    flex: 2;
  }
  section.showcase .container.wide .row .distribute-evenly .item:not(:first-child) a {
    margin-top: 20px;
  }
  section.showcase .container.wide .row .gradient {
    display: none;
  }
  section.newsgrid .newsgrid-grid {
    display: block;
  }
  section.newsgrid .newsgrid-grid .item {
    display: flex;
    flex-direction: row;
    gap: 10px;
  }
  section.newsgrid .newsgrid-grid .item .item-image {
    flex: 1;
  }
  section.newsgrid .newsgrid-grid .item .item-text {
    flex: 2;
  }
  section.newsgrid .newsgrid-grid .item .item-text span:first-child {
    margin-top: 0;
    margin-bottom: 5px;
  }
  section.newsgrid .newsgrid-grid .item .item-text a {
    margin-top: 5px;
  }
  section.newsgrid .newsgrid-grid .item:not(:first-child) {
    margin-top: 40px;
  }
}
@media only screen and (max-width: 900px) {
  nav.footer-new .container {
    flex-direction: column;
  }
  nav.footer-new .footer-nav-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }
  nav.footer-new .footer-nav-row > .navbar-item:nth-child(3n) {
    text-align: right;
  }
  nav.footer-new .footer-nav-row > .navbar-item:nth-child(3n+2) {
    text-align: center;
  }
  nav.footer-new .footer-nav-row > .navbar-item:not(:last-of-type)::after {
    content: none;
  }
  nav.footer-new .footer-nav-col {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    width: 100%;
    gap: 20px;
  }
  nav.footer-new .footer-nav-col a:nth-child(even) {
    text-align: right;
  }
}
@media only screen and (max-width: 1300px) {
  section.cardgrid .grid,
  section.cardgrid .grid.three {
    display: flex;
    flex-direction: row;
    width: 100%;
    overflow-y: auto;
    scroll-snap-type: x mandatory;
  }
  section.cardgrid .grid .item,
  section.cardgrid .grid.three .item {
    scroll-snap-align: start;
    scroll-snap-stop: always;
    background: transparent;
    color: #003057;
    padding: 0;
    display: inline-block;
    min-width: 100%;
    border-radius: 0;
    height: auto;
  }
  section.cardgrid .grid .item .item-bg,
  section.cardgrid .grid.three .item .item-bg {
    height: auto;
    position: static;
    aspect-ratio: 1/1;
    border-radius: 6px;
    margin-bottom: 15px;
  }
  section.cardgrid .grid .item .item-within,
  section.cardgrid .grid.three .item .item-within {
    grid-template-rows: min-content 1fr;
  }
  section.cardgrid .grid .item .item-description,
  section.cardgrid .grid.three .item .item-description {
    opacity: 1;
  }
  section.cardgrid .grid .item:before,
  section.cardgrid .grid.three .item:before {
    content: none;
  }
  section.cardgrid .grid:after,
  section.cardgrid .grid.three:after {
    content: "← Swipe above to learn more →";
    position: absolute;
    bottom: -30px;
    left: 0;
    width: 100%;
    box-sizing: border-box;
    text-align: center;
  }
  section.accordion .accordion-container {
    height: auto !important;
    display: block;
  }
  section.accordion .accordion-container .item {
    height: 300px;
  }
  section.accordion .accordion-container .item .item-within {
    grid-template-rows: min-content 1fr;
  }
  section.accordion .accordion-container .item .item-within .item-description {
    opacity: 1;
    width: auto;
  }
}
@media only screen and (max-width: 45em) {
  section.hero, section.hero.mini {
    height: auto;
    max-height: none;
    min-height: 0;
  }
  section.hero.white, section.hero.mini.white {
    background-color: #FFFFFF;
    color: #003057;
  }
  section.hero.white h1, section.hero.white h2, section.hero.mini.white h1, section.hero.mini.white h2 {
    color: #003057;
  }
  section.hero.dark-blue, section.hero.mini.dark-blue {
    background-color: #003057;
    color: #FFFFFF;
  }
  section.hero.dark-blue h1, section.hero.dark-blue h2, section.hero.mini.dark-blue h1, section.hero.mini.dark-blue h2 {
    color: #FFFFFF;
  }
  section.hero.black, section.hero.mini.black {
    background-color: #000000;
    color: #FFFFFF;
  }
  section.hero.black h1, section.hero.black h2, section.hero.mini.black h1, section.hero.mini.black h2 {
    color: #FFFFFF;
  }
  section.hero .row, section.hero.mini .row {
    margin: 20px 0;
  }
  section.hero:first-of-type h1,
  section.hero h1, section.hero.mini:first-of-type h1,
  section.hero.mini h1 {
    font-size: 40px;
    text-shadow: none;
  }
  section.hero h2, section.hero h2 p, section.hero.mini h2, section.hero.mini h2 p {
    font-size: 1.1rem;
    text-shadow: none;
  }
  section.hero .gradient,
  section.hero .scroll-arrow, section.hero.mini .gradient,
  section.hero.mini .scroll-arrow {
    display: none;
  }
  section.hero .hero-bg, section.hero.mini .hero-bg {
    position: static;
    width: 100%;
    aspect-ratio: 16/9;
  }
  section.hero .video-gradient, section.hero.mini .video-gradient {
    height: auto;
  }
  section.hero video,
  section.hero .video-container,
  section.hero .video-gradient, section.hero.mini video,
  section.hero.mini .video-container,
  section.hero.mini .video-gradient {
    aspect-ratio: 16/9;
    width: 100%;
    height: auto;
    position: absolute;
    top: 0;
  }
  section.hero video,
  section.hero .video-container, section.hero.mini video,
  section.hero.mini .video-container {
    top: 0;
  }
}

/*# sourceMappingURL=style.css.map */
