@charset "UTF-8";
:root {
  --page-max-width: 85rem;
}

:root {
  --c-brand-primary: #f57f29;
  --c-brand-primary-dark: #ad591d;
  --c-black: #121212;
  --c-dark-gray: #333d45;
  --c-text: #495965;
  --font-family-headline: bebas-neue, sans-serif;
  --font-family-body: trade-gothic-next, sans-serif;
  --font-weight-headline: 400;
  --font-weight-body: 400;
  --button-border-radius: 0;
  --button-text-offset: 0em;
  --button-bg: var(--c-text);
  --button-bg-hover: #f57f29;
  --button-text: #fff;
  --button-text-hover: #fff;
  --button-font-weight: 400;
  --button-font-family: var(--font-family-headline);
  --max-width-inner: 65rem;
}

.icon-button {
  border-radius: var(--button-border-radius);
}

.site-header {
  padding: clamp(0rem, 0vw, 0rem) clamp(2rem, 4.8vw, 4rem) clamp(0rem, 0vw, 0rem) clamp(2rem, 4.8vw, 4rem);
}
.site-header {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 100;
}
.gin--vertical-toolbar .site-header {
  top: 60px;
}
.site-header .icon-button {
  font-weight: 300;
  margin-left: 2em;
}
.site-header .nav-buttons {
  display: flex;
  align-items: center;
}
@media screen and (min-width: 0) and (max-width: 999px) {
  .site-header {
    padding: 0;
    height: 5rem;
    align-items: flex-start;
    background: #fff;
  }
  .site-header .site-title .desktop {
    display: none;
  }
  .site-header .nav-buttons {
    display: none;
  }
}
@media screen and (min-width: 1000px) {
  .site-header {
    background: rgba(255, 255, 255, 0.9);
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
    align-items: flex-start;
  }
  .site-header .site-title .mobile {
    display: none;
  }
  .site-header .navigation {
    transform: translateY(-80px);
    opacity: 0;
  }
  .loaded .site-header .navigation {
    transform: none;
    opacity: 1;
    transition: all 1s var(--ease-cubic);
  }
}
.site-header ul.social {
  margin-left: 1.5em;
}
.site-header ul.social li:not(:last-child) {
  margin-right: 0.5em;
}
.site-header ul.social li a {
  padding: 0;
  background: transparent;
  color: var(--c-text);
  width: 2rem;
  height: auto;
}
.site-header ul.social li a svg {
  width: 100%;
  height: auto;
}
.site-header ul.social li a:hover {
  color: var(--c-brand-primary);
}

.site-title {
  display: block;
  width: clamp(8em, 12vw, 8em);
}
.site-title a {
  display: block;
}
.site-title a img {
  display: block;
  height: 4rem;
  width: auto;
}
.site-title a:hover {
  opacity: 0.5;
}
@media screen and (min-width: 0) and (max-width: 999px) {
  .site-title {
    width: auto;
    flex-grow: 1;
    font-family: var(--font-family-headline);
    background: #fff;
    transform: none;
  }
  .site-title h1 {
    font-size: 1em;
  }
  .site-title * {
    height: 100%;
  }
  .site-title a {
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1.2em;
  }
  .site-title a img {
    width: 10em;
    height: auto;
  }
}
@media screen and (min-width: 1000px) {
  .site-title {
    transform: scale(0.7);
    opacity: 0;
  }
  .loaded .site-title {
    transform: none;
    opacity: 1;
    transition: all 1s var(--ease-cubic);
  }
}

.primary-nav {
  font-family: var(--font-family-body);
  font-weight: 300;
}
.primary-nav ul {
  padding: 0;
  margin: 0;
  list-style: none;
}
@media screen and (min-width: 0) and (max-width: 999px) {
  .primary-nav {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    text-transform: capitalize;
    transform: translateX(-100%);
    opacity: 0;
    transition: all 1s;
    z-index: 600;
  }
  .primary-nav svg {
    display: none;
  }
  .primary-nav.open {
    transform: none;
    opacity: 1;
  }
  .primary-nav nav > .menu-container {
    height: 100%;
  }
  .primary-nav nav > .menu-container > ul {
    overflow-y: scroll;
    height: 100%;
  }
  .primary-nav .menu-container {
    background: black;
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    transform: translateX(-100%);
    transition: all 0.5s;
  }
  .primary-nav > nav > .menu-container {
    transform: none;
  }
  .primary-nav button.back {
    display: block;
    width: 100%;
    background: var(--c-black);
    color: #fff;
    border: none;
    text-transform: none;
    text-align: left;
    letter-spacing: 0;
    font-size: 1.2em;
    line-height: 1em;
    padding: 1.25em 2em;
  }
  .primary-nav button.back svg {
    display: none;
  }
  .primary-nav button.back span {
    display: block;
    position: relative;
    padding-left: 2em;
  }
  .primary-nav button.back span::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    width: 0.8em;
    height: 0.8em;
    border-style: none none solid solid;
    transform: translate(0, -50%) rotate(45deg);
  }
  .primary-nav nav .menu-container li {
    display: block;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  }
  .primary-nav nav .menu-container li a {
    display: block;
    padding: 0 2em;
    line-height: 5em;
    height: 5em;
    text-align: left;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    transition: all 0.25s;
    background: transparent;
    color: white;
  }
  .primary-nav nav .menu-container li a:hover, .primary-nav nav .menu-container li a:focus, .primary-nav nav .menu-container li a.is-active {
    background: var(--c-brand-primary) !important;
    color: #fff !important;
  }
  .primary-nav nav .menu-container li.expanded {
    position: relative;
  }
  .primary-nav nav .menu-container li.expanded > a {
    margin-right: 5em;
  }
  .primary-nav nav .menu-container li.expanded button.toggle {
    position: absolute;
    right: 0;
    top: 0;
    width: 5em;
    height: 5em;
    border: none;
    border-left: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.25s;
    background: transparent;
  }
  .primary-nav nav .menu-container li.expanded button.toggle::after {
    content: "";
    position: absolute;
    right: 2.5em;
    top: 2.5em;
    width: 0.7em;
    height: 0.7em;
    border: 2px solid rgba(255, 255, 255, 0.7);
    border-style: solid solid none none;
    transform: translate(50%, -50%) rotate(45deg);
    transition: all 0.25s;
    transition: all 0.25s;
  }
  .primary-nav nav .menu-container li.expanded button.toggle:hover {
    cursor: pointer;
    background: #fff;
  }
  .primary-nav nav .menu-container li.expanded button.toggle:hover::after {
    border-color: #000;
  }
  .primary-nav nav .menu-container li.expanded button.toggle span {
    overflow: hidden;
    text-indent: 999px;
    clip: rect(0, 0, 0, 0);
    clip-path: inset(50%);
    position: absolute;
    white-space: nowrap;
    width: 1px;
    height: 1px;
  }
  .primary-nav nav .menu-container li.expanded .menu-container {
    z-index: 500;
  }
  .primary-nav nav .menu-container li.expanded .menu-container .menu-container {
    z-index: 501;
  }
  .primary-nav nav .menu-container li.expanded .menu-container .menu-container .menu-container {
    z-index: 502;
  }
  .primary-nav nav .menu-container li.expanded .menu-container .menu-container .menu-container .menu-container {
    z-index: 503;
  }
  .primary-nav nav .menu-container li.expanded li a {
    display: block;
    color: #fff;
    text-transform: none;
    transition: all 0.25s;
  }
  .primary-nav nav .menu-container li.expanded.open::after {
    border-style: solid solid none none;
    transform: translate(50%, -70%) rotate(135deg);
  }
  .primary-nav nav .menu-container li.expanded.open > .menu-container {
    transform: none;
  }
}
@media screen and (min-width: 1000px) {
  .primary-nav {
    white-space: nowrap;
    font-size: 0.7em;
    display: flex;
    align-items: flex-start;
    transition: all 0.25s;
    padding: 1.25rem 0;
  }
  .primary-nav button {
    display: none;
  }
  .primary-nav > nav {
    padding-top: 0.25rem;
  }
  .primary-nav > nav > .menu-container > ul {
    display: flex;
    align-items: flex-start;
    position: relative;
  }
  .primary-nav > nav > .menu-container > ul > li {
    padding: 0 0 0 1.5em;
    position: relative;
  }
  .primary-nav > nav > .menu-container > ul > li > a {
    display: block;
    position: relative;
    padding: 0;
    color: var(--c-text);
    transition: all 0.25s;
    line-height: 1.5rem;
    font-weight: 400;
    font-family: var(--font-family-headline);
  }
  .primary-nav > nav > .menu-container > ul > li > a:hover, .primary-nav > nav > .menu-container > ul > li > a:focus, .primary-nav > nav > .menu-container > ul > li > a.is-active {
    color: var(--c-brand-primary);
  }
  .primary-nav > nav > .menu-container > ul > li.mobile-link {
    display: none;
  }
  .primary-nav > nav > .menu-container > ul > li.expanded {
    position: relative;
  }
  .primary-nav > nav > .menu-container > ul > li.expanded .menu-container {
    position: relative;
    width: 0;
    overflow: visible;
  }
  .primary-nav > nav > .menu-container > ul > li.expanded .menu-container ul {
    white-space: nowrap;
  }
  .primary-nav > nav > .menu-container > ul > li.expanded .menu-container ul li {
    overflow: hidden;
    height: 0rem;
    transition: all 0.25s;
    width: 100vw;
  }
  .primary-nav > nav > .menu-container > ul > li.expanded .menu-container ul li a {
    display: block;
    position: relative;
    padding: 0;
    color: var(--c-text);
    transition: all 0.25s;
    line-height: 1.5rem;
    font-weight: 400;
    font-family: var(--font-family-headline);
  }
  .primary-nav > nav > .menu-container > ul > li.expanded .menu-container ul li a:hover {
    color: var(--c-brand-primary);
  }
  .primary-nav > nav > .menu-container > ul > li.expanded:hover .menu-container ul li {
    height: 1.5rem;
  }
}
@media screen and (min-width: 1280px) {
  .primary-nav {
    font-size: 1em;
  }
}

@keyframes rotateMenu {
  0% {
    transform: rotateX(-90deg);
  }
  70% {
    transform: rotateX(20deg);
  }
  100% {
    transform: rotateX(0deg);
  }
}
button.primary-nav-toggle {
  padding: clamp(0rem, 0vw, 0rem) clamp(1rem, 2.4vw, 2rem) clamp(0rem, 0vw, 0rem) clamp(1rem, 2.4vw, 2rem);
}
button.primary-nav-toggle {
  height: 100%;
  border-radius: 0;
  border: none;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  font-weight: 300;
  font-size: 1.2em;
  font-family: var(--font-family-headline);
  text-transform: capitalize;
  background: var(--c-brand-primary);
}
@media screen and (min-width: 640px) {
  button.primary-nav-toggle {
    width: 10em;
  }
}
@media screen and (min-width: 1000px) {
  button.primary-nav-toggle {
    display: none;
  }
}
button.primary-nav-toggle .icon {
  display: block;
  position: relative;
  width: 2em;
  height: 2em;
}
button.primary-nav-toggle .icon .l {
  position: absolute;
  left: 25%;
  width: 50%;
  height: 2px;
  background: #fff;
  transition: all 0.25s;
  opacity: 1;
  top: 50%;
  transform: translateY(-50%);
}
button.primary-nav-toggle .icon .l.t {
  margin-top: -5px;
}
button.primary-nav-toggle .icon .l.b {
  margin-top: 5px;
}
button.primary-nav-toggle.open .icon .l.t, button.primary-nav-toggle.open .icon .l.b {
  transform: rotate(45deg);
  margin-top: 0;
}
button.primary-nav-toggle.open .icon .l.b {
  opacity: 0;
}
button.primary-nav-toggle.open .icon .l.m {
  transform: rotate(-45deg);
}

@media screen and (min-width: 1000px) {
  body::after {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
  }
  body::after {
    content: "";
    position: fixed;
    background: rgba(0, 0, 0, 0.7);
    opacity: 0;
    pointer-events: none;
    transition: all 0.25s;
    z-index: 490;
  }
  body:has(#sticky-nav:hover)::after {
    opacity: 1;
  }
}
#sticky-nav {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  z-index: 500;
  margin-top: 0;
  display: flex;
  transform: translateY(-150%);
  transition: all 1s 0.1s;
  padding: 0;
}
#sticky-nav .primary-nav {
  padding-top: 0;
}
@media screen and (min-width: 0) and (max-width: 999px) {
  #sticky-nav {
    box-shadow: 0 0 8px rgba(0, 0, 0, 0.3);
  }
  #sticky-nav .site-title img.desktop {
    display: none;
  }
}
@media screen and (min-width: 1000px) {
  #sticky-nav {
    padding: clamp(1.25rem, 3vw, 2.5rem) clamp(2rem, 4.8vw, 4rem) clamp(1.25rem, 3vw, 2.5rem) clamp(2rem, 4.8vw, 4rem);
  }
  #sticky-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #fff;
    left: 50%;
    width: 100%;
    transform: translate(-50%, -200%);
    top: 0;
    height: auto !important;
    line-height: initial !important;
    box-shadow: 0 0 1.5em rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(10px);
  }
}
@media screen and (min-width: 1000px) and (min-width: 1400px) {
  #sticky-nav .navigation {
    max-width: clamp(320px, 93vw, var(--page-max-width) * 1);
  }
}
@media screen and (min-width: 1000px) {
  #sticky-nav .primary-nav {
    padding: 0;
    display: flex;
    align-items: center;
  }
  #sticky-nav .primary-nav nav .menu-container ul {
    margin-right: 1em;
    padding-top: 0;
  }
  #sticky-nav .primary-nav nav .menu-container ul li {
    padding-top: 0.2em;
    padding-left: 1em;
    line-height: 1em;
  }
  #sticky-nav .primary-nav nav .menu-container ul li a {
    line-height: 1em;
  }
  #sticky-nav .primary-nav nav .menu-container ul li a:first-child {
    padding-left: 1em;
  }
  #sticky-nav .primary-nav nav .menu-container ul li.expanded {
    padding-right: 0;
  }
  #sticky-nav .primary-nav nav .menu-container ul li.expanded::before, #sticky-nav .primary-nav nav .menu-container ul li.expanded::after {
    display: none;
  }
  #sticky-nav .primary-nav nav .menu-container ul li.expanded ul {
    display: none !important;
  }
  #sticky-nav > * {
    position: relative;
  }
  #sticky-nav.show {
    transform: translateX(-50%) !important;
  }
}
#sticky-nav.show {
  opacity: 1;
  transition: all 1s 0s;
  transform: none;
}

#banner {
  position: relative;
}

.field--banner-slides .swiper-pagination {
  position: absolute;
  left: 50%;
  bottom: 11vh;
  transform: translateX(-50%);
  display: flex;
  z-index: 20;
}
.field--banner-slides .swiper-pagination .swiper-pagination-bullet {
  width: 0.8rem;
  height: 0.8rem;
  background: #fff;
  opacity: 1;
  margin: 0 0.8rem;
  border-radius: 999px;
  transition: all 0.25s;
}
.field--banner-slides .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background: var(--c-brand-primary);
}
.field--banner-slides .swiper-next,
.field--banner-slides .swiper-prev {
  position: absolute;
  top: 50%;
  width: 2rem;
  height: 2rem;
  border: 4px solid #fff;
  z-index: 50;
  transform: translateY(-50%) rotate(45deg);
}
.field--banner-slides .swiper-prev {
  border-style: none none solid solid;
  left: 4rem;
}
.field--banner-slides .swiper-next {
  border-style: solid solid none none;
  right: 4rem;
}
@media screen and (min-width: 0) and (max-width: 767px) {
  .field--banner-slides .swiper-next,
  .field--banner-slides .swiper-prev {
    width: 1.5rem;
    height: 1.5rem;
    border-width: 3px;
  }
  .field--banner-slides .swiper-prev {
    left: 2rem;
  }
  .field--banner-slides .swiper-next {
    right: 2rem;
  }
}

.paragraph--slide--banner img {
  display: block;
  width: 100vw;
  height: 100vh;
  -o-object-fit: cover;
     object-fit: cover;
}
.paragraph--slide--banner .field--button {
  position: absolute;
  left: 50%;
  bottom: 5vh;
  transform: translateX(-50%);
  z-index: 10;
}

.not-front #banner {
  padding: clamp(6rem, 14.4vw, 12rem) clamp(2rem, 4.8vw, 4rem) clamp(4rem, 9.6vw, 8rem) clamp(2rem, 4.8vw, 4rem);
}
.not-front #banner > .inner {
  max-width: var(--max-width-inner);
}
.not-front #banner > .inner {
  max-width: var(--max-width-inner);
  margin: auto;
}
.not-front #banner h1 {
  font-size: var(--step-1);
  line-height: 1.2em;
}
.not-front #banner h2 {
  font-size: var(--step-6);
  line-height: 1.2em;
  margin-bottom: 1em;
  color: var(--c-brand-primary);
}
.not-front #banner .field--bnr-body {
  font-size: var(--step-1);
  line-height: 1.4em;
  margin-bottom: 1.5em;
}
@media screen and (min-width: 1000px) {
  .not-front #banner h1,
  .not-front #banner h2,
  .not-front #banner .field--bnr-body,
  .not-front #banner .field--bnr-body-second {
    transform: translateY(80px);
    opacity: 0;
  }
  .loaded .not-front #banner h1,
  .loaded .not-front #banner h2,
  .loaded .not-front #banner .field--bnr-body {
    transform: none;
    opacity: 1;
    transition: all 1s var(--ease-cubic);
  }
  .loaded .not-front #banner h2 {
    transition-delay: 0.25s;
  }
  .loaded .not-front #banner .field--bnr-body {
    transition-delay: 0.5s;
  }
}

.block-system-breadcrumb-block {
  position: relative;
  margin-top: 2em;
  line-height: 1em;
  font-family: var(--font-family-body);
  font-size: var(--step--1);
  line-height: 1.2em;
}
.block-system-breadcrumb-block ol {
  padding: 0;
  margin: 0;
  list-style: none;
}
.block-system-breadcrumb-block ol {
  display: inline-flex;
  align-items: center;
  flex-flow: row wrap;
  flex-grow: 0;
  flex-shrink: 1;
  margin: 0;
  font-weight: 700;
}
.block-system-breadcrumb-block li {
  color: #fff;
}
.block-system-breadcrumb-block li a {
  color: var(--c-brand-primary-light);
}
.block-system-breadcrumb-block li a:hover {
  opacity: 0.5;
}
.block-system-breadcrumb-block li:nth-child(1) {
  margin-right: 1em;
}
.block-system-breadcrumb-block li:nth-child(1) a {
  display: block;
  position: relative;
  width: 2.5em;
  height: 2.5em;
  border-radius: 50%;
  background: var(--c-brand-primary-light);
  transition: all 0.25s;
}
.block-system-breadcrumb-block li:nth-child(1) a span {
  overflow: hidden;
  text-indent: 999px;
  clip: rect(0, 0, 0, 0);
  clip-path: inset(50%);
  position: absolute;
  white-space: nowrap;
  width: 1px;
  height: 1px;
}
.block-system-breadcrumb-block li:nth-child(1) a::before, .block-system-breadcrumb-block li:nth-child(1) a::after {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}
.block-system-breadcrumb-block li:nth-child(1) a::before, .block-system-breadcrumb-block li:nth-child(1) a::after {
  content: "";
  background-position: 50% 50%;
  background-size: 50% auto;
  background-repeat: no-repeat;
  transition: all 0.25s;
}
.block-system-breadcrumb-block li:nth-child(1) a::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23000' d='M4 21V9l8-6l8 6v12h-6v-7h-4v7z'/%3E%3C/svg%3E");
}
.block-system-breadcrumb-block li:not(:last-child, :first-child) {
  position: relative;
  padding-right: 1em;
  margin-right: 1em;
}
.block-system-breadcrumb-block li:not(:last-child, :first-child)::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 50%;
  width: 0.25em;
  height: 0.25em;
  background: var(--c-brand-primary-light);
  border-radius: 50%;
  transform: translate(50%, 50%);
}
.block-system-breadcrumb-block li:last-child {
  height: 1.2em;
  max-width: 14em;
  overflow: hidden;
  text-overflow: ellipsis;
  text-wrap: nowrap;
}
@media screen and (min-width: 0) and (max-width: 767px) {
  .block-system-breadcrumb-block {
    display: none;
  }
}

#footer {
  background: var(--c-dark-gray);
  color: #fff;
  font-size: var(--step--1);
}
#footer #footer-first {
  padding: clamp(2rem, 4.8vw, 4rem);
}
@media screen and (min-width: 1400px) {
  #footer #footer-first {
    max-width: clamp(320px, 93vw, var(--page-max-width) * 1);
  }
}
#footer #footer-first {
  margin: auto;
}
#footer #footer-bar {
  font-family: var(--font-family-headline);
  margin-top: 1.5em;
}
@media screen and (min-width: 768px) {
  #footer #footer-bar {
    display: flex;
    justify-content: space-between;
  }
}

body:has(.paragraph--profiles:last-child) #footer {
  border-top: 1px solid #fff;
}

body {
  contain: initial;
}

#container {
  position: relative;
}

.h2 {
  line-height: 1.2em;
}

.typography {
  color: color-mix(in srgb, var(--c-text), transparent 10%);
}
.typography h1 {
  font-size: var(--step-6);
  line-height: 1.2em;
  color: var(--c-brand-primary);
}
.typography h2 {
  margin-top: 1em;
}
.typography h2 .large {
  font-size: var(--step-6);
  line-height: 1.2em;
}
.typography ul li::before {
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%2399722f' d='m10.6 16.6l7.05-7.05l-1.4-1.4l-5.65 5.65l-2.85-2.85l-1.4 1.4zM12 22q-2.075 0-3.9-.788t-3.175-2.137q-1.35-1.35-2.137-3.175T2 12q0-2.075.788-3.9t2.137-3.175q1.35-1.35 3.175-2.137T12 2q2.075 0 3.9.788t3.175 2.137q1.35 1.35 2.138 3.175T22 12q0 2.075-.788 3.9t-2.137 3.175q-1.35 1.35-3.175 2.138T12 22m0-2q3.35 0 5.675-2.325T20 12q0-3.35-2.325-5.675T12 4Q8.65 4 6.325 6.325T4 12q0 3.35 2.325 5.675T12 20m0-8'/%3E%3C/svg%3E");
}
.typography > .paragraph:not(.paragraph--divider) {
  margin: 6em 0;
}
.typography > .paragraph:first-child {
  margin-top: 0;
}
.typography img {
  border-radius: 0 !important;
}
.typography .large {
  font-size: var(--step-2);
  line-height: 1em;
}
.typography .xlarge {
  font-size: var(--step-3);
  line-height: 1em;
}
.typography .xxlarge {
  font-size: var(--step-4);
  line-height: 1em;
}

body .paragraph--container--basic-content {
  max-width: none;
}
@media screen and (min-width: 1400px) {
  body .paragraph--container--basic-content > .inner {
    max-width: clamp(320px, 93vw, var(--page-max-width) * 1);
  }
}
body .paragraph--container--basic-content > .inner {
  padding: clamp(4rem, 9.6vw, 8rem) clamp(2rem, 4.8vw, 4rem) clamp(4rem, 9.6vw, 8rem) clamp(2rem, 4.8vw, 4rem);
}
body .paragraph--container--basic-content > .inner {
  margin: auto;
  container-type: inline-size;
}
body .paragraph--container--basic-content.style--light {
  background: #ececec;
}
body .paragraph--container--basic-content.style--dark {
  background: #333d45;
}
body .paragraph--container--basic-content.style--dark .typography {
  color: #fff;
}
body .paragraph--container--basic-content.style--dark .typography h1, body .paragraph--container--basic-content.style--dark .typography h2, body .paragraph--container--basic-content.style--dark .typography h3, body .paragraph--container--basic-content.style--dark .typography h4, body .paragraph--container--basic-content.style--dark .typography h5, body .paragraph--container--basic-content.style--dark .typography h6 {
  color: #fff;
}
body .paragraph--container--basic-content .paragraph--logo {
  max-width: 12em;
  margin-bottom: 2em;
}
body .paragraph--container--basic-content .paragraph--logo a {
  display: block;
}

.paragraph--columns .field--columns > .field-items > .field-item:nth-child(1) {
  margin-bottom: clamp(1.5rem, 3.6vw, 3rem);
  margin-top: clamp(0rem, 0vw, 0rem);
}
@media screen and (min-width: 768px) {
  .paragraph--columns .field--columns > .field-items {
    display: flex;
  }
  .paragraph--columns.layout--66_33 .field--columns > .field-items > .field-item:nth-child(1) {
    padding: clamp(0rem, 0vw, 0rem) clamp(2rem, 4.8vw, 4rem) clamp(0rem, 0vw, 0rem) clamp(0rem, 0vw, 0rem);
  }
  .paragraph--columns.layout--66_33 .field--columns > .field-items > .field-item:nth-child(1) {
    width: 65%;
  }
  .paragraph--columns.layout--66_33 .field--columns > .field-items > .field-item:nth-child(2) {
    width: 35%;
  }
  .paragraph--columns.layout--50_50 .field--columns > .field-items > .field-item {
    width: 50%;
  }
  .paragraph--columns.layout--33_66 .field--columns > .field-items > .field-item:nth-child(1) {
    width: 35%;
  }
  .paragraph--columns.layout--33_66 .field--columns > .field-items > .field-item:nth-child(2) {
    padding: clamp(0rem, 0vw, 0rem) clamp(0rem, 0vw, 0rem) clamp(0rem, 0vw, 0rem) clamp(2rem, 4.8vw, 4rem);
  }
  .paragraph--columns.layout--33_66 .field--columns > .field-items > .field-item:nth-child(2) {
    width: 65%;
  }
}
@media screen and (min-width: 1000px) {
  .paragraph--columns .field--columns > .field-items > .field-item:nth-child(1) {
    transform: translateX(-80px);
    opacity: 0;
  }
  .paragraph--columns .field--columns > .field-items > .field-item:nth-child(2) {
    transform: translateX(80px);
    opacity: 0;
  }
  .paragraph--columns.loaded .field--columns > .field-items > .field-item:nth-child(1) {
    transform: none;
    opacity: 1;
    transition: all 1s var(--ease-cubic);
  }
  .paragraph--columns.loaded .field--columns > .field-items > .field-item:nth-child(2) {
    transform: none;
    opacity: 1;
    transition: all 1s var(--ease-cubic);
  }
}

body .paragraph--images--row {
  height: clamp(10em, 25vw, 25cqw);
  container-type: inline-size;
}
body .paragraph--images--row * {
  height: 100%;
}
body .paragraph--images--row img {
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
body .paragraph--images--row .field {
  padding: 0;
}
body .paragraph--images--row .field:nth-child(1), body .paragraph--images--row .field:nth-child(3) {
  width: 17%;
}
body .paragraph--images--row .field:nth-child(1) > div, body .paragraph--images--row .field:nth-child(3) > div {
  width: 17cqw;
}
body .paragraph--images--row .field:nth-child(2), body .paragraph--images--row .field:nth-child(4) {
  width: 33%;
}
body .paragraph--images--row .field:nth-child(2) > div, body .paragraph--images--row .field:nth-child(4) > div {
  padding: 0 5px;
  width: 33cqw;
}
@media screen and (min-width: 1000px) {
  body .paragraph--images--row .field:nth-child(1),
  body .paragraph--images--row .field:nth-child(2),
  body .paragraph--images--row .field:nth-child(3),
  body .paragraph--images--row .field:nth-child(4) {
    contain: paint;
    max-width: 0%;
  }
  body .paragraph--images--row.loaded .field:nth-child(1),
  body .paragraph--images--row.loaded .field:nth-child(3) {
    max-width: 17%;
    transition: all 1s var(--ease-cubic);
  }
  body .paragraph--images--row.loaded .field:nth-child(2),
  body .paragraph--images--row.loaded .field:nth-child(4) {
    max-width: 33%;
    transition: all 1s var(--ease-cubic);
  }
  body .paragraph--images--row.loaded .field:nth-child(2) {
    transition-delay: 0.25s;
  }
  body .paragraph--images--row.loaded .field:nth-child(3) {
    transition-delay: 0.5s;
  }
  body .paragraph--images--row.loaded .field:nth-child(4) {
    transition-delay: 0.75s;
  }
}

#edit-preferred-method-of-contact--wrapper {
  margin-bottom: clamp(1rem, 2.4vw, 2rem);
  margin-top: clamp(0.5rem, 1.2vw, 1rem);
}
@media screen and (min-width: 640px) {
  #edit-preferred-method-of-contact--wrapper {
    position: relative;
    padding: 0;
    padding-left: 50%;
  }
  #edit-preferred-method-of-contact--wrapper legend {
    position: absolute;
    left: 0;
    top: 0;
    width: 50%;
    font-weight: 500;
  }
  #edit-preferred-method-of-contact--wrapper legend > span {
    padding: clamp(0rem, 0vw, 0rem) clamp(0rem, 0vw, 0rem) clamp(0rem, 0vw, 0rem) clamp(0.25rem, 0.6vw, 0.5rem);
  }
  #edit-preferred-method-of-contact--wrapper legend > span {
    display: block;
  }
  #edit-preferred-method-of-contact--wrapper .form-item {
    padding-bottom: 0;
  }
}

.node-project.node-teaser a {
  display: block;
  position: relative;
}
.node-project.node-teaser a img {
  display: block;
  width: 100%;
  height: auto;
}
.node-project.node-teaser a .rollover {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}
.node-project.node-teaser a .rollover {
  padding: clamp(1rem, 2.4vw, 2rem);
}
.node-project.node-teaser a .rollover {
  background: color-mix(in srgb, var(--c-brand-primary), transparent 20%);
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transition: all 0.25s;
}
.node-project.node-teaser a .rollover h3 {
  font-size: var(--step-3);
  line-height: 1.2em;
  text-align: center;
  height: auto !important;
}
.node-project.node-teaser a:hover .rollover {
  opacity: 1;
}

.node-service.node-teaser .headline {
  display: flex;
  align-items: center;
  margin-bottom: 2em;
}
.node-service.node-teaser .headline i {
  width: 5em;
  margin-right: 1em;
}
.node-service.node-teaser .headline i svg,
.node-service.node-teaser .headline i img {
  display: block;
  width: 100%;
  height: auto;
}
.node-service.node-teaser .headline h3 {
  margin-bottom: 0;
  color: var(--c-brand-primary);
  font-size: var(--step-2);
  line-height: 1.1em;
}
.node-service.node-teaser .headline h3 .sh {
  display: block;
}
@media screen and (min-width: 1000px) {
  .node-service.node-teaser {
    transform: translateY(80px);
    opacity: 0;
  }
  .node-service.node-teaser.loaded {
    transform: none;
    opacity: 1;
    transition: all 1s var(--ease-cubic);
  }
}

.paragraph--projects--page {
  background: var(--c-dark-gray);
}
@media screen and (min-width: 1400px) {
  .paragraph--projects--page > .inner {
    max-width: clamp(320px, 93vw, var(--page-max-width) * 1.15);
  }
}

.view-projects .view-filters {
  padding: clamp(0rem, 0vw, 0rem) clamp(0rem, 0vw, 0rem) clamp(3rem, 7.2vw, 6rem) clamp(0rem, 0vw, 0rem);
}
.view-projects .view-filters .form-item-category label {
  display: none;
}
.view-projects .view-filters .form-item-category ul {
  padding: 0;
  margin: 0;
  list-style: none;
}
.view-projects .view-filters .form-item-category ul {
  display: flex;
  margin-left: -5px;
  margin-right: -5px;
}
.view-projects .view-filters .form-item-category ul li {
  width: 33.33%;
  position: relative;
  padding: 5px;
}
.view-projects .view-filters .form-item-category ul li:first-child {
  display: none;
}
.view-projects .view-filters .form-item-category ul li .taxonomy-term {
  position: relative;
  z-index: 40;
  height: 100%;
  display: flex;
  flex-direction: column;
}
.view-projects .view-filters .form-item-category ul li .taxonomy-term img {
  display: block;
  width: 100%;
  height: auto;
}
.view-projects .view-filters .form-item-category ul li .taxonomy-term .field--name {
  padding: 1em;
  text-align: center;
  line-height: 1em;
  font-family: var(--font-family-headline);
  background: #fff;
  transition: all 0.25s;
  flex-grow: 1;
}
@media screen and (min-width: 640px) {
  .view-projects .view-filters .form-item-category ul li .taxonomy-term .field--name {
    font-size: var(--step-1);
    line-height: 1em;
  }
}
@media screen and (min-width: 768px) {
  .view-projects .view-filters .form-item-category ul li .taxonomy-term .field--name {
    font-size: var(--step-2);
    line-height: 1em;
  }
}
.view-projects .view-filters .form-item-category ul li a {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}
.view-projects .view-filters .form-item-category ul li a {
  content: "";
}
.view-projects .view-filters .form-item-category ul li a {
  overflow: hidden;
  text-indent: -99999px;
  background: transparent;
  padding: 0;
  z-index: 50;
}
.view-projects .view-filters .form-item-category ul li a.bef-link--selected + .taxonomy-term .field--name,
.view-projects .view-filters .form-item-category ul li a:hover + .taxonomy-term .field--name {
  background: var(--c-brand-primary);
  color: #fff;
}
.view-projects .view-filters .bef--secondary {
  padding: clamp(1.5rem, 3.6vw, 3rem) clamp(0rem, 0vw, 0rem) clamp(0rem, 0vw, 0rem) clamp(0rem, 0vw, 0rem);
}
.view-projects .view-filters .bef--secondary {
  max-width: var(--max-width-inner);
  margin-left: auto;
  margin-right: auto;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}
.view-projects .view-filters .bef--secondary summary {
  display: flex;
  font-size: var(--step-1);
  line-height: 1em;
  margin-bottom: 0.5em;
  color: #fff;
  font-family: var(--font-family-headline);
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  cursor: pointer;
}
.view-projects .view-filters .bef--secondary summary .summary {
  display: block;
  position: relative;
  width: 1em;
  height: 1em;
  background: var(--c-brand-primary);
  margin-top: 0.05em;
  margin-left: 0.5em;
}
.view-projects .view-filters .bef--secondary summary .summary::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 50%;
  height: 50%;
  border: 2px solid #fff;
  border-style: none solid solid none;
  transform: translate(-50%, -75%) rotate(45deg);
}
.view-projects .view-filters .bef--secondary .form-item-tags {
  overflow: hidden;
  max-height: 0px;
}
.view-projects .view-filters .bef--secondary[open] .form-item-tags {
  max-height: 3rem;
  transition: all 0.5s;
}
.view-projects .view-filters .form-item-tags label {
  display: none;
}
.view-projects .view-filters .form-item-tags ul {
  padding: 0;
  margin: 0;
  list-style: none;
}
.view-projects .view-filters .form-item-tags ul {
  display: flex;
  flex-flow: row wrap;
  margin-left: -5px;
  margin-right: -5px;
  font-size: var(--step--1);
}
.view-projects .view-filters .form-item-tags ul li {
  padding: 5px;
}
.view-projects .view-filters .form-item-tags ul li a.bef-link {
  background: var(--c-dark-gray);
  border: 1px solid #fff;
}
.view-projects .view-filters .form-actions {
  display: none;
}
.view-projects .view-empty {
  display: none;
}
.view-projects .views-row-group {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-auto-rows: 1fr;
  grid-gap: 10px;
}
.view-projects .views-row-group .views-row .node {
  height: 100%;
}
.view-projects .views-row-group .views-row .node * {
  height: 100%;
}
.view-projects .views-row-group .views-row .node img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (min-width: 768px) {
  .view-projects .views-row-group {
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 1fr;
  }
  .view-projects .views-row-group .views-row:nth-child(1) {
    grid-column: 1/span 2;
    grid-row: 1/span 2;
  }
  .view-projects .views-row-group .views-row:nth-child(6) {
    grid-column: 1/span 2;
    grid-row: 3/span 2;
  }
  .view-projects .views-row-group .views-row:nth-child(9) {
    grid-column: 1/span 1;
    grid-row: 5/span 1;
  }
  .view-projects .views-row-group .views-row:nth-child(10) {
    grid-column: 2/span 1;
    grid-row: 5/span 1;
  }
  .view-projects .views-row-group .views-row:nth-child(11) {
    grid-column: 3/span 2;
    grid-row: 4/span 2;
  }
}

#projects-modal {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
}
#projects-modal .overlay {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}
#projects-modal .overlay {
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(5px);
}
#projects-modal .projects-gallery {
  width: 70vw;
  background: #fff;
  position: relative;
}
#projects-modal .projects-gallery img {
  display: block;
  width: 100%;
  height: auto;
}
#projects-modal .projects-gallery .swiper-next,
#projects-modal .projects-gallery .swiper-prev {
  color: var(--c-dark-gray);
}
#projects-modal .project-images-swiper {
  position: relative;
}
#projects-modal .project-images-swiper .swiper-next,
#projects-modal .project-images-swiper .swiper-prev {
  position: absolute;
  top: 50%;
  width: 2rem;
  height: 2rem;
  border: 4px solid #fff;
  z-index: 50;
  transform: translateY(-50%) rotate(45deg);
  padding: 0;
  background: transparent;
}
#projects-modal .project-images-swiper .swiper-next span,
#projects-modal .project-images-swiper .swiper-prev span {
  display: none;
}
#projects-modal .project-images-swiper .swiper-next:hover,
#projects-modal .project-images-swiper .swiper-prev:hover {
  border-color: var(--c-brand-primary);
}
#projects-modal .project-images-swiper .swiper-prev {
  border-style: none none solid solid;
  left: 4rem;
}
#projects-modal .project-images-swiper .swiper-next {
  border-style: solid solid none none;
  right: 4rem;
}
#projects-modal .project-images-swiper .swiper-pagination {
  position: absolute;
  bottom: 3em;
  left: 0;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 200;
}
#projects-modal .project-images-swiper .swiper-pagination .swiper-pagination-bullet {
  width: 0.75em;
  height: 0.75em;
  border-radius: 50%;
  background: #fff;
  transition: all 0.25s;
  margin: 0 0.25em;
}
#projects-modal .project-images-swiper .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background: var(--c-brand-primary);
}
#projects-modal .project-images-swiper .field--photo-credit {
  position: absolute;
  left: 0;
  bottom: 1em;
  width: 100%;
  text-align: center;
  color: #fff;
  z-index: 200;
}
#projects-modal .navigation-bar {
  display: flex;
  justify-content: space-between;
  padding: 1em;
  background: #fff;
}
#projects-modal .navigation-bar button {
  white-space: nowrap;
  color: #fff !important;
}
#projects-modal .navigation-bar h3 {
  display: flex;
  text-align: center;
  justify-content: center;
  align-items: center;
  background: #fff;
  min-height: 100%;
}
#projects-modal.closed {
  display: none;
}

.paragraph--services > .inner {
  padding-top: 0;
}

.view-services {
  max-width: var(--max-width-inner);
  margin: auto;
}
.view-services .view-filters {
  margin-bottom: clamp(2rem, 4.8vw, 4rem);
  margin-top: clamp(0rem, 0vw, 0rem);
}
.view-services .view-filters ul {
  padding: 0;
  margin: 0;
  list-style: none;
}
.view-services .view-filters ul {
  display: flex;
  flex-flow: row wrap;
  margin-left: -5px;
  margin-right: -5px;
  font-size: var(--step--1);
}
.view-services .view-filters ul li {
  padding: 5px;
}
.view-services .view-filters ul li a.bef-link {
  background: transparent;
  border: 1px solid var(--c-dark-gray);
  color: var(--c-text);
}
.view-services .view-filters .form-actions {
  display: none;
}
.view-services .view-content article {
  padding: clamp(0rem, 0vw, 0rem) clamp(0rem, 0vw, 0rem) clamp(2rem, 4.8vw, 4rem) clamp(0rem, 0vw, 0rem);
}
.view-services .view-content article {
  -moz-column-break-inside: avoid;
       break-inside: avoid;
  max-width: 30em;
}
@media screen and (min-width: 768px) {
  .view-services .view-content {
    -moz-column-count: 2;
         column-count: 2;
    -moz-column-gap: 5rem;
         column-gap: 5rem;
  }
}

.paragraph--hero--styled-text {
  background: #ececec;
}
.paragraph--hero--styled-text .field--body {
  max-width: var(--max-width-inner);
  margin: auto;
  position: relative;
}
.paragraph--hero--styled-text .field--body p:not(:last-child) {
  margin-bottom: 1.5em;
}
.paragraph--hero--styled-text .field--body .large {
  font-size: var(--step-3);
  line-height: 1em;
}
.paragraph--hero--styled-text .field--body .xlarge {
  font-size: var(--step-3);
  line-height: 1em;
}
.paragraph--hero--styled-text .field--body .xxlarge {
  font-size: var(--step-5);
  line-height: 1em;
}
.paragraph--hero--styled-text .field--body::after {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}
.paragraph--hero--styled-text .field--body::after {
  content: "";
}
.paragraph--hero--styled-text .field--body::after {
  background: linear-gradient(120deg, color-mix(in srgb, #ececec, transparent 100%), color-mix(in srgb, #ececec, transparent 10%) 45%, color-mix(in srgb, #ececec, transparent 10%) 100%);
  left: auto;
  right: 0;
  width: calc(200% * var(--scroll-per));
}

@media screen and (min-width: 1400px) {
  .paragraph--hero--logos > .inner {
    max-width: clamp(320px, 93vw, var(--page-max-width) * 1.15);
  }
}
.paragraph--hero--logos .section-header {
  max-width: var(--max-width-inner);
  margin-left: auto;
  margin-right: auto;
}
.paragraph--hero--logos > .inner > .field--logos > .field-items > .field-item:not(:last-child) {
  margin-bottom: clamp(2rem, 4.8vw, 4rem);
  margin-top: clamp(0rem, 0vw, 0rem);
}
.paragraph--hero--logos .paragraph--logos .section-header {
  margin-bottom: 0;
}
.paragraph--hero--logos .paragraph--logos h3 {
  color: var(--c-brand-primary);
}
.paragraph--hero--logos .paragraph--logos .field--logos > .field-items {
  margin-left: clamp(-1rem, -1.2vw, -0.5rem);
  margin-right: clamp(-1rem, -1.2vw, -0.5rem);
}
.paragraph--hero--logos .paragraph--logos .field--logos > .field-items {
  display: flex;
  flex-flow: row wrap;
  justify-content: space-between;
}
.paragraph--hero--logos .paragraph--logos .field--logos > .field-items > .field-item {
  padding: clamp(0.5rem, 1.2vw, 1rem);
}
@media screen and (min-width: 0) and (max-width: 767px) {
  .paragraph--hero--logos .paragraph--logos .field--logos > .field-items > .field-item {
    max-width: 11em;
  }
}
.paragraph--hero--logos .paragraph--logos .field--logos a {
  display: block;
}
.paragraph--hero--logos .paragraph--logos .field--logos a img {
  display: block;
  height: 3em;
  width: auto;
  max-width: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.paragraph--ticker-logos {
  position: relative;
  left: 50%;
  width: 100vw;
  transform: translateX(-50%);
  display: flex;
}
.paragraph--ticker-logos .ticker-items {
  flex-shrink: 0;
  min-width: 100vw;
  display: flex;
  align-items: center;
  justify-content: space-around;
  animation: ticker 70s forwards infinite linear;
}
.paragraph--ticker-logos .ticker-items .ticker-item {
  padding: clamp(0.5rem, 1.2vw, 1rem);
}
.paragraph--ticker-logos .ticker-items .ticker-item {
  flex-shrink: 0;
}
.paragraph--ticker-logos .ticker-items .ticker-item a {
  display: block;
}
.paragraph--ticker-logos .ticker-items .ticker-item a img {
  display: block;
  height: 3em;
  width: auto;
  max-width: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.paragraph--logo-tickers .section-header {
  margin-bottom: 0;
}
.paragraph--logo-tickers h3 {
  color: var(--c-brand-primary);
}
.paragraph--logo-tickers .field--tickers > .field-items > .field-item:nth-child(even) .paragraph--ticker-logos .ticker-items {
  animation: ticker-reverse 70s forwards infinite linear;
}

@keyframes ticker {
  0% {
    transform: none;
  }
  100% {
    transform: translateX(-100%);
  }
}
@keyframes ticker-reverse {
  0% {
    transform: translateX(-100%);
  }
  100% {
    transform: none;
  }
}
.paragraph--hero--stats {
  background: #ececec;
}
@media screen and (min-width: 0) and (max-width: 767px) {
  .paragraph--hero--stats > .inner > .content > div:nth-child(1) {
    margin-bottom: clamp(2rem, 4.8vw, 4rem);
    margin-top: clamp(0rem, 0vw, 0rem);
  }
}
@media screen and (min-width: 768px) {
  .paragraph--hero--stats > .inner > .content {
    display: flex;
  }
  .paragraph--hero--stats > .inner > .content > div {
    width: 50%;
  }
  .paragraph--hero--stats > .inner > .content .field--percentage-bars {
    padding: clamp(0rem, 0vw, 0rem) clamp(2rem, 4.8vw, 4rem) clamp(0rem, 0vw, 0rem) clamp(0rem, 0vw, 0rem);
  }
  .paragraph--hero--stats > .inner > .content .field--stats-group {
    padding: clamp(0rem, 0vw, 0rem) clamp(0rem, 0vw, 0rem) clamp(0rem, 0vw, 0rem) clamp(2rem, 4.8vw, 4rem);
  }
}
.paragraph--hero--stats .field--percentage-bars > .field-items > .field-item:not(:last-child) {
  padding: clamp(0rem, 0vw, 0rem) clamp(0rem, 0vw, 0rem) clamp(0.75rem, 1.8vw, 1.5rem) clamp(0rem, 0vw, 0rem);
}
.paragraph--hero--stats .field--percentage-bars .paragraph--stat {
  display: flex;
  flex-flow: column;
}
.paragraph--hero--stats .field--percentage-bars .paragraph--stat h3 {
  order: 1;
  margin-bottom: 0.25em;
}
.paragraph--hero--stats .field--percentage-bars .paragraph--stat .field--number-int {
  order: 2;
}
.paragraph--hero--stats .field--percentage-bars .field--number-int .field-item {
  display: block;
  background: #fff;
  height: 2em;
  text-align: right;
  padding-right: 1em;
  line-height: 2em;
  position: relative;
}
.paragraph--hero--stats .field--percentage-bars .field--number-int .field-item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  background: var(--c-brand-primary);
  width: calc(var(--value) * 1%);
  transition: all 1s 0.5s ease-in-out;
}
.paragraph--hero--stats .field--percentage-bars .field--number-int .field-item span {
  position: relative;
}
.paragraph--hero--stats .field--percentage-bars .field--number-int .field-item span::after {
  content: "%";
}
.paragraph--hero--stats .paragraph--stats-group {
  padding: clamp(1.5rem, 3.6vw, 3rem);
}
.paragraph--hero--stats .paragraph--stats-group {
  background: var(--c-brand-primary);
  color: #fff;
}
.paragraph--hero--stats .paragraph--stats-group .field--stats > .field-items {
  margin-left: clamp(-1rem, -1.2vw, -0.5rem);
  margin-right: clamp(-1rem, -1.2vw, -0.5rem);
}
.paragraph--hero--stats .paragraph--stats-group .field--stats > .field-items {
  display: flex;
  flex-flow: row wrap;
}
.paragraph--hero--stats .paragraph--stats-group .field--stats > .field-items > .field-item {
  padding: clamp(0.5rem, 1.2vw, 1rem);
}
.paragraph--hero--stats .paragraph--stats-group .field--stats > .field-items > .field-item {
  width: 50%;
}
.paragraph--hero--stats .paragraph--stats-group .field--number-int {
  font-size: var(--step-3);
  line-height: 1.2em;
  font-family: var(--font-family-headline);
}

.paragraph--hero--blurb-images {
  background: var(--c-dark-gray);
  color: #fff;
}
.paragraph--hero--blurb-images .field--blurb h3 {
  font-size: var(--step-4);
  line-height: 1.2em;
  color: var(--c-brand-primary);
}
.paragraph--hero--blurb-images .images {
  container-type: inline-size;
  display: flex;
  height: clamp(10em, 15vw, 15cqw);
}
.paragraph--hero--blurb-images .images * {
  height: 100%;
}
.paragraph--hero--blurb-images .images img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.paragraph--hero--blurb-images .images .field > div {
  padding: 0 5px;
}
.paragraph--hero--blurb-images .images .field:nth-child(1) {
  width: 22%;
}
.paragraph--hero--blurb-images .images .field:nth-child(1) > div {
  width: 22cqw;
}
.paragraph--hero--blurb-images .images .field:nth-child(2) {
  width: 35%;
}
.paragraph--hero--blurb-images .images .field:nth-child(2) > div {
  width: 35cqw;
}
.paragraph--hero--blurb-images .images .field:nth-child(3) {
  width: 43%;
}
.paragraph--hero--blurb-images .images .field:nth-child(3) > div {
  width: 43cqw;
}
@media screen and (min-width: 0) and (max-width: 767px) {
  .paragraph--hero--blurb-images .field--blurb {
    margin-bottom: clamp(1.5rem, 3.6vw, 3rem);
    margin-top: clamp(0rem, 0vw, 0rem);
  }
}
@media screen and (min-width: 768px) {
  .paragraph--hero--blurb-images > .inner {
    display: flex;
  }
  .paragraph--hero--blurb-images .field--blurb {
    padding: clamp(0rem, 0vw, 0rem) clamp(2rem, 4.8vw, 4rem) clamp(0rem, 0vw, 0rem) clamp(0rem, 0vw, 0rem);
  }
  .paragraph--hero--blurb-images .field--blurb {
    width: 35%;
  }
  .paragraph--hero--blurb-images .images {
    width: 65%;
  }
}
@media screen and (min-width: 1000px) {
  .paragraph--hero--blurb-images .paragraph--blurb {
    transform: translateX(-80px);
    opacity: 0;
  }
  .paragraph--hero--blurb-images .paragraph--blurb.loaded {
    transform: none;
    opacity: 1;
    transition: all 1s var(--ease-cubic);
  }
  .paragraph--hero--blurb-images .images .field:nth-child(1),
  .paragraph--hero--blurb-images .images .field:nth-child(2),
  .paragraph--hero--blurb-images .images .field:nth-child(3) {
    contain: paint;
    max-width: 0%;
  }
  .paragraph--hero--blurb-images .images.loaded .field:nth-child(1) {
    max-width: 22%;
    transition: all 1s var(--ease-cubic);
  }
  .paragraph--hero--blurb-images .images.loaded .field:nth-child(2) {
    max-width: 35%;
    transition: all 1s var(--ease-cubic);
  }
  .paragraph--hero--blurb-images .images.loaded .field:nth-child(3) {
    max-width: 43%;
    transition: all 1s var(--ease-cubic);
  }
  .paragraph--hero--blurb-images .images.loaded .field:nth-child(2) {
    transition-delay: 0.25s;
  }
  .paragraph--hero--blurb-images .images.loaded .field:nth-child(3) {
    transition-delay: 0.5s;
  }
}

.paragraph--callout--logos {
  background: linear-gradient(to bottom, #ececec, #ececec 50%, #fff 50%, #fff 100%);
}
@media screen and (min-width: 1400px) {
  .paragraph--callout--logos > .inner {
    max-width: clamp(320px, 93vw, var(--page-max-width) * 1);
  }
}
.paragraph--callout--logos > .inner {
  padding: clamp(0rem, 0vw, 0rem) clamp(2rem, 4.8vw, 4rem) clamp(0rem, 0vw, 0rem) clamp(2rem, 4.8vw, 4rem);
}
.paragraph--callout--logos > .inner {
  margin: auto;
}
.paragraph--callout--logos .box {
  padding: clamp(1.5rem, 3.6vw, 3rem);
}
.paragraph--callout--logos .box {
  background: var(--c-dark-gray);
  color: #fff;
}
.paragraph--callout--logos .field--logos > .field-items {
  margin-left: clamp(-1rem, -1.2vw, -0.5rem);
  margin-right: clamp(-1rem, -1.2vw, -0.5rem);
}
.paragraph--callout--logos .field--logos > .field-items {
  display: flex;
  flex-flow: row wrap;
}
.paragraph--callout--logos .field--logos > .field-items > .field-item {
  padding: clamp(0.5rem, 1.2vw, 1rem);
}
@media screen and (min-width: 0) and (max-width: 767px) {
  .paragraph--callout--logos .field--logos > .field-items > .field-item {
    width: 100%;
  }
  .paragraph--callout--logos .field--logos > .field-items > .field-item:not(:last-child) {
    margin-bottom: clamp(1.5rem, 3.6vw, 3rem);
    margin-top: clamp(0rem, 0vw, 0rem);
  }
}
@media screen and (min-width: 768px) {
  .paragraph--callout--logos .field--logos > .field-items > .field-item {
    width: 33.3%;
  }
}
.paragraph--callout--logos h3 {
  font-size: var(--font-size-h4);
  line-height: 1.2em;
  margin-bottom: 1em;
  text-align: center;
}
.paragraph--callout--logos .paragraph--logo {
  max-width: 7em;
  margin: auto;
}
.paragraph--callout--logos .paragraph--logo a {
  display: block;
}
.paragraph--callout--logos .paragraph--logo a img {
  display: block;
  width: 100%;
  height: auto;
}
.paragraph--callout--logos .field--button {
  display: flex;
  justify-content: center;
  margin-top: 3em;
}
.paragraph--callout--logos .field--button a.button {
  background: #fff;
  color: var(--c-dark-gray);
}
.paragraph--callout--logos .field--button a.button:hover {
  background: var(--c-brand-primary);
  color: #fff;
}
@media screen and (min-width: 1000px) {
  .paragraph--callout--logos .box {
    transform: scale(0.6, 0.9);
    opacity: 0;
  }
  .paragraph--callout--logos .box.loaded {
    transform: none;
    opacity: 1;
    transition: all 1s var(--ease-cubic);
  }
}

.paragraph--projects--page {
  background: var(--c-dark-gray);
}

.paragraph--testimonial blockquote {
  padding: 0 1em;
  margin: 0;
}
.paragraph--testimonial .name {
  padding: 0 1em;
  margin-top: 1.5em;
}
.paragraph--testimonial .name cite {
  font-style: normal;
  font-weight: 700;
}
@media screen and (min-width: 768px) {
  .paragraph--testimonial blockquote {
    padding: 0 6em 0 6em;
  }
  .paragraph--testimonial blockquote::before {
    content: "“";
    font-size: 12em;
    line-height: 1em;
    color: var(--c-brand-primary);
    position: absolute;
    top: -0.2em;
    left: 0em;
  }
  .paragraph--testimonial blockquote::after {
    content: "”";
    font-size: 12em;
    line-height: 1em;
    color: var(--c-brand-primary);
    position: absolute;
    bottom: -0.4em;
    right: 0em;
  }
  .paragraph--testimonial .name {
    padding: 0 6em;
  }
}

.paragraph--testimonials--carousel {
  padding: clamp(6rem, 14.4vw, 12rem) clamp(2rem, 4.8vw, 4rem) clamp(6rem, 14.4vw, 12rem) clamp(2rem, 4.8vw, 4rem);
}
@media screen and (min-width: 1400px) {
  .paragraph--testimonials--carousel {
    max-width: clamp(320px, 93vw, var(--page-max-width) * 1);
  }
}
.paragraph--testimonials--carousel {
  margin: auto;
}
.paragraph--testimonials--carousel > .inner {
  padding: 0;
  max-width: var(--max-width-inner);
  margin-left: auto;
  margin-right: auto;
}
.paragraph--testimonials--carousel .field--testimonials {
  position: relative;
  padding-left: 2em;
  padding-right: 2em;
}
.paragraph--testimonials--carousel .swiper-prev,
.paragraph--testimonials--carousel .swiper-next {
  position: absolute;
  width: 1em;
  height: 1em;
  top: 50%;
  transform: translateY(-50%) rotate(-45deg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  cursor: pointer;
  z-index: 30;
  border: 3px solid var(--c-text);
}
.paragraph--testimonials--carousel .swiper-prev {
  left: 0;
  border-style: solid none none solid;
}
.paragraph--testimonials--carousel .swiper-next {
  right: 0;
  border-style: none solid solid none;
}

@media screen and (min-width: 1400px) {
  .paragraph--awards {
    max-width: clamp(320px, 93vw, var(--page-max-width) * 1);
  }
}
.paragraph--awards {
  padding: clamp(6rem, 14.4vw, 12rem) clamp(2rem, 4.8vw, 4rem) clamp(6rem, 14.4vw, 12rem) clamp(2rem, 4.8vw, 4rem);
}
.paragraph--awards {
  margin: auto;
}
.paragraph--awards > .inner {
  padding: 0;
  max-width: var(--max-width-inner);
}
.paragraph--awards .h2 {
  color: var(--c-brand-primary);
}

.view-awards .view-filters {
  display: flex;
  justify-content: flex-start;
  text-align: center;
}
.view-awards .view-filters .form-actions {
  display: none;
}
.view-awards .view-filters .awards-filters {
  position: relative;
  padding-top: 1.5em;
  padding-bottom: 1.5em;
}
.view-awards .view-filters .awards-filters .swiper-prev,
.view-awards .view-filters .awards-filters .swiper-next {
  position: absolute;
  width: 1em;
  height: 1em;
  left: 50%;
  transform: translateX(-50%) rotate(-45deg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  cursor: pointer;
  z-index: 30;
}
.view-awards .view-filters .awards-filters .swiper-prev {
  top: 0;
  border: 3px solid var(--c-text);
  border-style: solid solid none none;
}
.view-awards .view-filters .awards-filters .swiper-next {
  bottom: 0;
  border: 3px solid var(--c-text);
  border-style: none none solid solid;
}
.view-awards .view-filters ul {
  padding: 0;
  margin: 0;
  list-style: none;
}
.view-awards .view-filters ul {
  height: 8em;
}
.view-awards .view-filters li.swiper-slide {
  height: 2em !important;
}
.view-awards .view-filters a.bef-link {
  background: transparent;
  color: var(--c-text);
  font-family: var(--font-family-body);
  padding: 0;
  font-size: var(--step-1);
  line-height: 1.4em;
  font-weight: 700;
}
.view-awards .view-filters a.bef-link:hover {
  color: var(--c-brand-primary);
}
.view-awards table {
  border-collapse: collapse;
  font-size: var(--step--1);
  line-height: 1.4em;
  width: 100%;
}
.view-awards td {
  border-bottom: 1px solid var(--c-dark-gray);
  padding: 1.25em 2em 1.25em 0;
}
.view-awards td:last-child {
  padding-right: 0;
}
.view-awards tr:first-child td {
  border-top: 1px solid var(--c-dark-gray);
}
.view-awards .views-field-award-name {
  font-family: var(--font-family-headline);
}
@media screen and (min-width: 0) and (max-width: 767px) {
  .view-awards .view-filters {
    margin-bottom: 2em;
    justify-content: center;
  }
  .view-awards table {
    font-size: var(--step--2);
    line-height: 1.2em;
  }
}
@media screen and (min-width: 768px) {
  .view-awards {
    display: flex;
  }
  .view-awards .view-filters {
    width: 20%;
    justify-content: flex-start;
  }
  .view-awards .view-content {
    width: 80%;
  }
}

.paragraph--profiles {
  background: var(--c-dark-gray);
  color: #fff;
}
.paragraph--profiles .section-header {
  max-width: var(--max-width-inner);
  margin-left: auto;
  margin-right: auto;
}
.paragraph--profiles .section-header .h2 {
  color: var(--c-brand-primary);
}
.paragraph--profiles .field--profiles > .field-items {
  margin-left: clamp(-1rem, -1.2vw, -0.5rem);
  margin-right: clamp(-1rem, -1.2vw, -0.5rem);
}
.paragraph--profiles .field--profiles > .field-items {
  display: flex;
  flex-flow: row wrap;
}
.paragraph--profiles .field--profiles > .field-items > .field-item {
  padding: clamp(0.5rem, 1.2vw, 1rem);
}
@media screen and (min-width: 0) and (max-width: 639px) {
  .paragraph--profiles .field--profiles > .field-items > .field-item {
    width: 100%;
  }
  .paragraph--profiles .field--profiles > .field-items > .field-item .paragraph {
    max-width: 22em;
    margin: auto;
  }
}
@media screen and (min-width: 640px) {
  .paragraph--profiles .field--profiles > .field-items > .field-item {
    width: 50%;
  }
}
@media screen and (min-width: 768px) {
  .paragraph--profiles .field--profiles > .field-items > .field-item {
    width: 33.33%;
  }
}
@media screen and (min-width: 1000px) {
  .paragraph--profiles .field--profiles > .field-items > .field-item .paragraph {
    transform: translateX(80px);
    opacity: 0;
  }
  .paragraph--profiles .field--profiles > .field-items > .field-item .paragraph.loaded {
    transform: none;
    opacity: 1;
    transition: all 1s var(--ease-cubic);
  }
  .paragraph--profiles .field--profiles > .field-items > .field-item:nth-child(3n+2) .paragraph.loaded {
    transition-delay: 0.25s;
  }
  .paragraph--profiles .field--profiles > .field-items > .field-item:nth-child(3n+3) .paragraph.loaded {
    transition-delay: 0.5s;
  }
}

.paragraph--profile .field--image img {
  display: block;
  width: 100%;
  height: auto;
}
.paragraph--profile .field--title {
  font-family: var(--font-family-headline);
  margin-top: 0.5em;
  margin-bottom: 0.25em;
}
.paragraph--profile .toggle {
  margin-top: 0;
}
.paragraph--profile h3 {
  font-family: var(--font-family-body);
  font-weight: 600;
  color: #fff;
  display: flex;
  align-items: center;
  margin-bottom: 0.5em;
}
.paragraph--profile h3 .icon {
  display: block;
  position: relative;
  width: 1em;
  height: 1em;
  background: var(--c-brand-primary);
  margin-top: 0.05em;
  margin-left: 0.5em;
  transform: rotate(-90deg);
  transition: all 0.25s;
}
.paragraph--profile h3 .icon::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 50%;
  height: 50%;
  border: 2px solid #fff;
  border-style: none solid solid none;
  transform: translate(-50%, -75%) rotate(45deg);
}
.paragraph--profile .open h3 .icon {
  transform: rotate(0deg);
}

.paragraph--webform > .inner {
  padding-top: 0;
}
.paragraph--webform > .inner .sidebar > div {
  position: sticky;
  top: 4em;
}
.paragraph--webform > .inner .sidebar h3 {
  font-size: var(--step-3);
  line-height: 1.2em;
}
@media screen and (min-width: 0) and (max-width: 767px) {
  .paragraph--webform .sidebar {
    margin-bottom: clamp(2rem, 4.8vw, 4rem);
    margin-top: clamp(0rem, 0vw, 0rem);
  }
}
@media screen and (min-width: 768px) {
  .paragraph--webform > .inner {
    display: flex;
  }
  .paragraph--webform .sidebar {
    width: 35%;
  }
  .paragraph--webform .main {
    padding: clamp(0rem, 0vw, 0rem) clamp(0rem, 0vw, 0rem) clamp(0rem, 0vw, 0rem) clamp(2rem, 4.8vw, 4rem);
  }
  .paragraph--webform .main {
    width: 65%;
    display: flex;
    justify-content: flex-end;
  }
}

.paragraph--template--projects .paragraph--awards {
  padding-top: 0;
}

.paragraph--careers-info .section-header .h2 {
  margin-bottom: 0.25em;
  color: var(--c-brand-primary);
}
.paragraph--careers-info .section-header .field--body {
  font-weight: 600;
}
.paragraph--careers-info .sidebar .field--blurb {
  position: sticky;
  top: 4em;
}
.paragraph--careers-info .sidebar .paragraph {
  padding: clamp(1.5rem, 3.6vw, 3rem);
}
.paragraph--careers-info .sidebar .paragraph {
  background: var(--c-brand-primary);
  color: #fff;
}
.paragraph--careers-info .sidebar .paragraph h3 {
  font-size: var(--step-4);
  line-height: 1.2em;
  margin-bottom: 0.5em;
}
.paragraph--careers-info .paragraph--list {
  margin-bottom: 4em;
}
.paragraph--careers-info .paragraph--list h3 {
  font-size: var(--step-2);
  line-height: 1.2em;
  color: var(--c-brand-primary);
  margin-bottom: 1em;
}
.paragraph--careers-info .paragraph--list ul {
  padding: 0;
  margin: 0;
  list-style: none;
}
.paragraph--careers-info .paragraph--list ul li {
  border-bottom: 1px solid var(--c-dark-gray);
  padding-bottom: 1em;
  margin-bottom: 1em;
}
@media screen and (min-width: 768px) {
  .paragraph--careers-info > .inner {
    display: flex;
  }
  .paragraph--careers-info .content {
    padding: clamp(0rem, 0vw, 0rem) clamp(2rem, 4.8vw, 4rem) clamp(0rem, 0vw, 0rem) clamp(0rem, 0vw, 0rem);
  }
  .paragraph--careers-info .content {
    width: 65%;
  }
  .paragraph--careers-info .sidebar {
    width: 35%;
  }
}

.paragraph--job-postings {
  background: #ececec;
}
@media screen and (min-width: 768px) {
  .paragraph--job-postings .field--paragraphs {
    padding: clamp(0rem, 0vw, 0rem) clamp(2rem, 4.8vw, 4rem) clamp(0rem, 0vw, 0rem) clamp(0rem, 0vw, 0rem);
  }
  .paragraph--job-postings .field--paragraphs {
    width: 65%;
  }
}
.paragraph--job-postings .field--paragraphs > .field-items > .field-item:not(:last-child) {
  padding-bottom: 2em;
  margin-bottom: 2em;
  border-bottom: 1px solid var(--c-dark-gray);
}

.paragraph--job-posting .toggle {
  margin-top: 0;
}
.paragraph--job-posting h3 {
  font-family: var(--font-family-body);
  font-weight: 600;
  color: var(--c-text);
  display: flex;
  align-items: center;
  margin-bottom: 0.5em;
  font-size: var(--step-2);
  line-height: 1.2em;
}
.paragraph--job-posting h3 .icon {
  display: block;
  position: relative;
  width: 1em;
  height: 1em;
  background: var(--c-brand-primary);
  margin-top: 0.05em;
  margin-left: 0.5em;
  transform: rotate(-90deg);
  transition: all 0.25s;
}
.paragraph--job-posting h3 .icon::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 50%;
  height: 50%;
  border: 2px solid #fff;
  border-style: none solid solid none;
  transform: translate(-50%, -75%) rotate(45deg);
}
.paragraph--job-posting .open h3 .icon {
  transform: rotate(0deg);
}
.paragraph--job-posting .field--button {
  margin-top: 1.5em;
}