@charset "UTF-8";
/* Box sizing rules */
*,
*::before,
*::after {
  box-sizing: border-box;
}

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

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

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

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

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

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

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

/* Remove all animations, transitions and smooth scroll for people that prefer not to see them */
@media (prefers-reduced-motion: reduce) {
  html:focus-within {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
:root {
  --font-body: "Xnimbus-sans", "Helvetica Neue", "Helvetica", "Arial", sans-serif;
  --font-menu: "Aktiv Grotesk", "aktiv-grotesk", sans-serif;
  --font-heading: var(--font-body);
  --color-primary: #f16e1e;
  --color-lighter: #f1823d;
  --color-primary-dark: #D45E10;
  --color-primary-subtle: rgba(242, 112, 36, 0.08);
  --color-accent: #F27024;
  --color-navy: #0c2b57;
  --color-dark-navy: #021d37;
  --color-light-navy: #174576;
  --btn-bg: #F27024;
  --btn-bg-hover: #D45E10;
  --color-mobile-menu: #F27024;
  --color-text: #333;
  --color-text-muted: #777;
  --color-border: #e8e8e8;
  --color-placeholder: #999;
  --btn-bg: var(--color-primary);
  --btn-text: #fff;
  --btn-bg-hover: var(--color-primary-dark);
  --btn-text-hover: #fff;
  --color-mobile-menu: var(--color-accent);
}

/* ---------------------- Responsiveness ---------------------- */
/* ----------------------  ---------------------- */
html {
  box-sizing: border-box;
}

body {
  font-family: var(--font-body);
  line-height: 1.3em;
  -webkit-text-size-adjust: 100%;
}

*, *:before, *:after {
  box-sizing: inherit;
}

*[data-href] {
  cursor: pointer;
}

figure img {
  width: 100%;
  display: block;
}

.clear {
  clear: both;
}

.fr {
  float: right;
}

.fl {
  float: left;
}

.oh {
  overflow: hidden;
}

.smallcaps {
  font-variant: small-caps;
}

.allcaps {
  text-transform: uppercase;
}

.smaller {
  font-size: 90%;
}

.tal {
  text-align: left !important;
}

.tar {
  text-align: right !important;
}

@media only screen and (min-width: 48em) {
  .tar-tablet {
    text-align: right !important;
  }
}
.no-mq .tar-tablet {
  text-align: right !important;
}

@media only screen and (min-width: 48em) {
  .center-tablet {
    text-align: center;
  }
}
.no-mq .center-tablet {
  text-align: center;
}

.center {
  text-align: center;
}

.centerm {
  margin: 0 auto;
}

.fixed {
  position: fixed;
}

@media only screen and (max-width: 48em) {
  .fixed-bp-tablet {
    position: fixed;
  }
}

@media only screen and (max-width: 80em) {
  .fixed-bp-desktop {
    position: fixed;
  }
}

strong {
  font-weight: bold;
}

em {
  font-style: italic;
}

u {
  text-decoration: underline;
}

p, a, h1, h2, h3, h4, h5, h6, li, q {
  color: inherit;
  line-height: inherit;
}

a {
  text-decoration: none;
}
a:hover {
  text-decoration: underline;
}

p {
  padding-bottom: 1em;
  font-size: 110%;
  letter-spacing: 0.02em;
}

h1, h2, h3, h4, h5, h6 {
  line-height: 1.3em;
  font-family: var(--font-heading);
}

h1 {
  font-size: 274.4%;
  font-weight: bold;
  margin-bottom: 0.5em;
}

h2 {
  font-size: 196%;
  font-weight: normal;
  margin-bottom: 1em;
}

h3 {
  font-size: 140%;
  font-weight: normal;
  margin-bottom: 1em;
}

h4 {
  font-size: 140%;
  font-weight: normal;
  margin-bottom: 1em;
}

p + h1, p + h2, p + h3, p + h4 {
  margin-top: 1.5em;
}

.cols + h1, .cols + h2, .cols + h3, .cols + h4 {
  margin-top: 1.5em;
}

section + h1, section + h2, section + h3, section + h4 {
  margin-top: 0.5em;
}

div.button, p.button {
  padding: 0;
}

p.button.wide {
  width: 100%;
}
p.button.wide a {
  display: block;
}
p.button.wide {
  text-align: center;
}

input[type=submit],
p.button.thin a {
  padding: 0.5em 1em;
}

button,
.button a,
input[type=submit] {
  font-family: var(--font-body);
  background: var(--btn-bg);
  border: none;
  padding: 1em 1em;
  color: var(--btn-text);
  border-radius: 0;
  -webkit-border-radius: 0;
  font-size: 140%;
  letter-spacing: 1px;
  cursor: hand;
  cursor: pointer;
  font-weight: 400;
}
button:hover,
.button a:hover,
input[type=submit]:hover {
  background: var(--btn-bg-hover);
  color: var(--btn-text-hover);
  text-decoration: none;
}
button.wide,
.button a.wide,
input[type=submit].wide {
  width: 100%;
}

.button a {
  display: inline-block;
}

p + p.button,
p + button {
  margin-top: 1em;
}

input[type=text],
input[type=tel],
input[type=email],
textarea {
  box-sizing: border-box;
  width: 100%;
  border: 1px solid #DDD;
  padding: 0.5em 1em;
  margin-bottom: 0.5em;
  font-size: 100%;
  font-family: inherit;
}

textarea {
  height: 5em;
}

::-moz-placeholder {
  color: var(--color-placeholder);
}

::placeholder {
  color: var(--color-placeholder);
}

select::-ms-expand {
  display: none;
}

.captchaSection {
  margin-bottom: 2em;
}

input.captcha {
  width: 5em;
  display: inline-block;
}

.captchaText {
  display: inline;
}

/* ---------------------- layouts ---------------------- */
body > section,
body > footer {
  padding: 80px 0px;
  padding: 5rem 0rem;
}
body > section.rotator,
body > footer.rotator {
  padding: 0;
}

.band {
  width: 100%;
  overflow: hidden;
}
.band.overflow-visible {
  overflow: visible;
}
.band.position-relative {
  position: relative;
}

.container {
  margin: 0 2em;
}
@media only screen and (min-width: 90em) {
  .container {
    width: 86em;
    margin: 0 auto;
  }
}
.no-mq .container {
  width: 86em;
  margin: 0 auto;
}

.rotatorWrapper {
  position: relative;
}

.rotator .flex-control-nav {
  bottom: 6%;
}

.band.rotator {
  margin: 0;
}
.band.rotator ul.rotator {
  overflow: hidden;
}
.band.rotator ul.rotator li {
  line-height: 0;
}
.band.rotator ul.rotator li img {
  width: 100%;
}

/* ---------------------- common ---------------------- */
/* ---------------------- grid columns ---------------------- */
.cols {
  display: grid;
  gap: 2em;
}
.cols img {
  max-width: 100%;
}

@media only screen and (min-width: 48em) {
  .cols--two {
    grid-template-columns: repeat(2, 1fr);
  }
}
.no-mq .cols--two {
  grid-template-columns: repeat(2, 1fr);
}

@media only screen and (min-width: 48em) {
  .cols--three {
    grid-template-columns: repeat(3, 1fr);
  }
}
.no-mq .cols--three {
  grid-template-columns: repeat(3, 1fr);
}

@media only screen and (min-width: 48em) {
  .cxols--three {
    grid-template-columns: repeat(3, 1fr);
  }
}
.no-mq .cxols--three {
  grid-template-columns: repeat(3, 1fr);
}

@media only screen and (min-width: 30em) {
  .cols--four {
    grid-template-columns: repeat(2, 1fr);
  }
}
.no-mq .cols--four {
  grid-template-columns: repeat(2, 1fr);
}
@media only screen and (min-width: 48em) {
  .cols--four {
    grid-template-columns: repeat(4, 1fr);
  }
}
.no-mq .cols--four {
  grid-template-columns: repeat(4, 1fr);
}

/* ---------------------- lists ---------------------- */
ol {
  counter-reset: li; /* Initiate a counter */
  list-style: none; /* Remove default numbering */
  font: 15px "trebuchet MS", "lucida sans";
  padding: 1.5em;
  margin-bottom: 4em;
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.5);
}

ul {
  margin-bottom: 1em;
}

/* ---------- rounded list ---------- */
.rounded-list {
  padding: 0 1.5em;
}

.rounded-list li {
  position: relative;
  display: block;
  padding: 0.4em 0.4em 0.4em 2em;
  *padding: 0.4em;
  margin: 0.5em 0;
  background: #ddd;
  color: #444;
  text-decoration: none;
  border-radius: 0.3em;
  transition: all 0.3s ease-out;
}
.rounded-list li a:hover {
  background: none;
}
.rounded-list li:before {
  content: counter(li);
  counter-increment: li;
  position: absolute;
  left: -1.3em;
  top: 50%;
  margin-top: -1.3em;
  height: 2em;
  width: 2em;
  line-height: 2em;
  border: 0.3em solid #fff;
  text-align: center;
  font-weight: bold;
  border-radius: 2em;
  transition: all 0.3s ease-out;
  content: "» ";
}

.rounded-list li:hover {
  background: #eee;
}

ul.raquo li {
  list-style-type: none;
  padding-left: 10px;
  margin-bottom: 0.2em;
}
ul.raquo:before {
  content: "» ";
  display: inline;
  margin-left: -10px;
}

/* ---------------------- header ---------------------- */
.site-header {
  position: fixed;
  top: 1em;
  left: 50%;
  right: auto;
  transform: translateX(-50%);
  width: 75em;
  max-width: 100%;
  z-index: 500;
  opacity: 0.8;
  transition: top 0.3s ease, box-shadow 0.3s ease, opacity 0.3s ease;
}
.site-header.is-stuck {
  top: 0;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.12);
  opacity: 1;
}

.site-header__inner {
  display: flex;
  flex-direction: row;
  align-items: stretch;
  width: 100%;
}

.site-header__brand {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 130px;
  height: 70px;
  background: #fff;
  padding: 0 1.25em;
  flex-shrink: 0;
  z-index: 2;
  transition: height 0.3s ease;
}
@media only screen and (min-width: 48em) {
  .site-header__brand {
    min-width: 215px;
    height: 95px;
    padding: 0 1.5em;
  }
  .site-header__brand::after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    width: 100%;
    background: #fff;
    z-index: -1;
    transform-origin: bottom left;
    transform: skew(-30deg, 0deg);
  }
}
.no-mq .site-header__brand {
  min-width: 215px;
  height: 95px;
  padding: 0 1.5em;
}
.no-mq .site-header__brand::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  width: 100%;
  background: #fff;
  z-index: -1;
  transform-origin: bottom left;
  transform: skew(-30deg, 0deg);
}
@media only screen and (min-width: 48em) {
  .is-stuck .site-header__brand {
    height: 74px;
  }
}
.no-mq .is-stuck .site-header__brand {
  height: 74px;
}

.site-header__logo {
  display: block;
  line-height: 0;
  position: relative;
  z-index: 1;
}
.site-header__logo img {
  display: block;
  height: 3em;
  width: auto;
}
@media only screen and (min-width: 48em) {
  .site-header__logo img {
    height: 3.5em;
  }
}
.no-mq .site-header__logo img {
  height: 3.5em;
}
@media only screen and (min-width: 64em) {
  .site-header__logo img {
    height: 5em;
    margin-right: 1em;
  }
}
.no-mq .site-header__logo img {
  height: 5em;
  margin-right: 1em;
}

.site-header__nav-wrap {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-grow: 1;
  background: var(--color-primary);
  padding: 0 1em;
  height: 70px;
  gap: 1em;
  transition: height 0.3s ease;
}
@media only screen and (min-width: 48em) {
  .site-header__nav-wrap {
    background: transparent;
    padding: 0 2em;
    height: 95px;
  }
}
.no-mq .site-header__nav-wrap {
  background: transparent;
  padding: 0 2em;
  height: 95px;
}
@media only screen and (min-width: 48em) {
  .is-stuck .site-header__nav-wrap {
    height: 74px;
  }
}
.no-mq .is-stuck .site-header__nav-wrap {
  height: 74px;
}

.site-header__nav-bg {
  display: none;
}
@media only screen and (min-width: 48em) {
  .site-header__nav-bg {
    display: block;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    overflow: hidden;
    z-index: 0;
  }
  .site-header__nav-bg::after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0.6em;
    width: 100%;
    background: var(--color-primary);
    transform-origin: bottom left;
    transform: skew(-30deg, 0deg);
    transition: background 0.3s ease;
  }
}
.no-mq .site-header__nav-bg {
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  overflow: hidden;
  z-index: 0;
}
.no-mq .site-header__nav-bg::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0.6em;
  width: 100%;
  background: var(--color-primary);
  transform-origin: bottom left;
  transform: skew(-30deg, 0deg);
  transition: background 0.3s ease;
}

.nav-toggle {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 26px;
  height: 20px;
  padding: 0;
  background: none;
  border: none;
  cursor: pointer;
  color: #fff;
  flex-shrink: 0;
  z-index: 1;
}
.nav-toggle::after {
  content: "";
  position: absolute;
  inset: -0.75em;
}
@media only screen and (min-width: 48em) {
  .nav-toggle {
    display: none;
  }
}
.no-mq .nav-toggle {
  display: none;
}

.nav-toggle__bar {
  display: block;
  width: 100%;
  height: 2px;
  background: currentColor;
  border-radius: 2px;
  pointer-events: none;
  transition: transform 0.3s ease, opacity 0.3s ease;
  transform-origin: center;
}

.nav-toggle[aria-expanded=true] .nav-toggle__bar:nth-child(1) {
  transform: translateY(9px) rotate(45deg);
}
.nav-toggle[aria-expanded=true] .nav-toggle__bar:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.nav-toggle[aria-expanded=true] .nav-toggle__bar:nth-child(3) {
  transform: translateY(-9px) rotate(-45deg);
}

.site-nav {
  position: fixed;
  top: calc(70px + 1em);
  left: 0;
  right: 0;
  background: var(--color-primary);
  max-height: 0;
  overflow: hidden;
  z-index: 499;
  transition: max-height 0.3s ease;
}
.site-nav.is-open {
  max-height: 80vh;
  overflow-y: auto;
}
.is-stuck .site-nav {
  top: 70px;
}
@media only screen and (min-width: 48em) {
  .site-nav {
    position: static;
    background: transparent;
    max-height: none;
    overflow: visible;
    z-index: 1;
    transition: none;
  }
}
.no-mq .site-nav {
  position: static;
  background: transparent;
  max-height: none;
  overflow: visible;
  z-index: 1;
  transition: none;
}

.site-nav__list {
  margin: 0;
  padding: 0.5em 0 1em;
  list-style: none;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}
@media only screen and (min-width: 48em) {
  .site-nav__list {
    display: flex;
    align-items: center;
    padding: 0;
    border-top: none;
  }
}
.no-mq .site-nav__list {
  display: flex;
  align-items: center;
  padding: 0;
  border-top: none;
}

.site-nav__link {
  display: block;
  padding: 0.75em 1.5em;
  color: #fff;
  font-family: var(--font-menu);
  font-size: 1em;
  font-weight: 300;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  text-decoration: none;
  transition: color 0.3s ease;
}
.site-nav__link:hover, .site-nav__link:focus-visible {
  color: rgba(255, 255, 255, 0.75);
  text-decoration: none;
}
.site-nav__link[aria-current=page] {
  color: #fff;
}
@media only screen and (min-width: 48em) {
  .site-nav__link {
    position: relative;
    padding: 6px 15px;
  }
  .site-nav__link::after {
    content: "";
    position: absolute;
    left: 15px;
    bottom: 0;
    width: 0;
    max-width: calc(100% - 30px);
    border-top: 3px solid #fff;
    transition: width 0.33s ease;
  }
  .site-nav__link:hover, .site-nav__link:focus-visible {
    color: #fff;
  }
  .site-nav__link:hover::after, .site-nav__link:focus-visible::after {
    width: calc(100% - 30px);
  }
  .site-nav__link[aria-current=page]::after {
    width: calc(100% - 30px);
  }
}
.no-mq .site-nav__link {
  position: relative;
  padding: 6px 15px;
}
.no-mq .site-nav__link::after {
  content: "";
  position: absolute;
  left: 15px;
  bottom: 0;
  width: 0;
  max-width: calc(100% - 30px);
  border-top: 3px solid #fff;
  transition: width 0.33s ease;
}
.no-mq .site-nav__link:hover, .no-mq .site-nav__link:focus-visible {
  color: #fff;
}
.no-mq .site-nav__link:hover::after, .no-mq .site-nav__link:focus-visible::after {
  width: calc(100% - 30px);
}
.no-mq .site-nav__link[aria-current=page]::after {
  width: calc(100% - 30px);
}

/* ---------------------- dev ems ---------------------- */
#ems {
  position: fixed;
  z-index: 9999;
  background: rgba(255, 255, 255, 0.75);
  left: 30%;
  bottom: 0;
  padding: 0.25em;
}
#ems p {
  padding-bottom: 0;
}

#ems p {
  color: black;
  font-weight: bold;
}
#ems p:after {
  content: " sub-mobile";
  margin-left: 1em;
}
@media only screen and (min-width: 30em) {
  #ems p:after {
    content: "mobile";
  }
}
.no-mq #ems p:after {
  content: "mobile";
}
@media only screen and (min-width: 48em) {
  #ems p:after {
    content: "tablet";
  }
}
.no-mq #ems p:after {
  content: "tablet";
}
@media only screen and (min-width: 64em) {
  #ems p:after {
    content: "laptop";
  }
}
.no-mq #ems p:after {
  content: "laptop";
}
@media only screen and (min-width: 80em) {
  #ems p:after {
    content: "desktop";
  }
}
.no-mq #ems p:after {
  content: "desktop";
}
@media only screen and (min-width: 90em) {
  #ems p:after {
    content: "wide";
  }
}
.no-mq #ems p:after {
  content: "wide";
}

/* ---------------------- custom / project ---------------------- */
body {
  overflow-x: clip;
}

p {
  line-height: 1.5;
}

.skip-nav {
  position: absolute;
  top: -100%;
  left: 1em;
  z-index: 9999;
  background: #fff;
  color: #000;
  padding: 0.5em 1em;
  border-radius: 0 0 4px 4px;
  font-weight: bold;
  text-decoration: none;
  transition: top 0.2s;
}
.skip-nav:focus {
  top: 0;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.section-label {
  display: block;
  font-size: 100%;
  font-weight: 500;
  font-size: 1.1em;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--color-primary);
  margin-bottom: 0.75em;
}

.section-label--light {
  color: var(--color-primary);
}

.blue {
  color: var(--color-navy);
}

.logo-before::before {
  content: "";
  display: inline-block;
  margin-top: -0.25em;
  width: 1em;
  height: 0.75em;
  margin-right: 0.5em;
  vertical-align: middle;
  background: linear-gradient(to right, currentColor 0, currentColor 12%, transparent 12%, transparent 27%, currentColor 27%, currentColor 39%, transparent 39%, transparent 54%, currentColor 54%, currentColor 100%);
}
.logo-before.logo-before--blue::before {
  background: linear-gradient(to right, var(--color-navy) 0, var(--color-navy) 12%, transparent 12%, transparent 27%, var(--color-navy) 27%, var(--color-navy) 39%, transparent 39%, transparent 54%, var(--color-navy) 54%, var(--color-navy) 100%);
}
.logo-before.logo-before--orange::before {
  background: linear-gradient(to right, var(--color-primary) 0, var(--color-primary) 12%, transparent 12%, transparent 27%, var(--color-primary) 27%, var(--color-primary) 39%, transparent 39%, transparent 54%, var(--color-primary) 54%, var(--color-primary) 100%);
}

.btn {
  display: inline-block;
  padding: 0.75em 1.75em;
  font-weight: 400;
  font-size: 1.25em;
  text-transform: uppercase;
  text-decoration: none;
  border: 2px solid transparent;
  border-radius: 2px;
  cursor: pointer;
  transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.btn--hero {
  color: #fff;
  margin-left: auto;
  font-weight: 500;
  font-size: 1.25em;
  text-shadow: 0 0 5px rgba(0, 0, 0, 0.5);
}
.btn--hero:hover, .btn--hero:focus-visible {
  background: var(--color-primary-dark);
  border-color: var(--color-primary-dark);
  text-decoration: none;
}

.btn--white {
  background: transparent;
  color: #fff;
  margin-top: 1em;
}
.btn--white:hover, .btn--white:focus-visible {
  background: rgba(255, 255, 255, 0.12);
  border-color: #fff;
  text-decoration: none;
}

.btn--outline-dark {
  background: transparent;
  color: #fff;
  border-color: rgba(255, 255, 255, 0.55);
  margin-top: 1em;
}
.btn--outline-dark:hover, .btn--outline-dark:focus-visible {
  background: rgba(255, 255, 255, 0.12);
  border-color: #fff;
  text-decoration: none;
}

.btn--cta-outline {
  background: transparent;
  color: #fff;
  border-color: #fff;
  white-space: nowrap;
  flex-shrink: 0;
}
.btn--cta-outline:hover, .btn--cta-outline:focus-visible {
  background: rgba(255, 255, 255, 0.15);
  text-decoration: none;
}

/* ---------------------- bars under H2 ---------------------- */
.underBar:after {
  content: " ";
  display: block;
  width: 3rem;
  height: 0.25rem;
  background: var(--color-primary);
  margin-top: 0.5rem;
  margin-bottom: 1em;
}
.underBar.underBar__blue:after {
  background: var(--color-navy);
}
.underBar.right:after {
  margin-right: 0;
  margin-left: auto;
}

.site-nav__link--cta {
  background: var(--color-primary) !important;
  color: #fff !important;
  border-radius: 2px;
}
.site-nav__link--cta:hover, .site-nav__link--cta:focus-visible {
  background: var(--color-primary-dark) !important;
  color: #fff !important;
}

.hero {
  position: relative;
  height: 110vh;
  width: 100%;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  background: var(--color-primary);
  pointer-events: none;
  clip-path: polygon(0% calc(100% - 0vh - 18px), 100% calc(100% - 0vh - 8.749vw - 10px), 100% calc(100% - 0vh - 8.749vw), 0% calc(100% - 0vh));
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  background: #fff;
  pointer-events: none;
  clip-path: polygon(0% calc(100% - 0vh), 100% calc(100% - 0vh - 8.749vw), 100% 101%, 0% 101%);
}

.hero__image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}

.hero__overlay {
  position: relative;
  z-index: 1;
  min-height: 110vh;
  display: flex;
  align-items: flex-end;
  padding: 5em 0 calc(10vh + 56px);
  background: linear-gradient(to right, rgba(0, 0, 0, 0.72) 0%, rgba(0, 0, 0, 0.45) 55%, rgba(0, 0, 0, 0.08) 100%);
  color: #fff;
}
.hero__overlay .container {
  flex-grow: 1;
}
@media only screen and (min-width: 90em) {
  .hero__overlay .container {
    flex-grow: 0;
  }
}
.no-mq .hero__overlay .container {
  flex-grow: 0;
}

.hero__heading {
  font-size: clamp(2rem, 5vw, 4rem);
  font-weight: 600;
  text-transform: uppercase;
  line-height: 1.05;
  margin-bottom: 0.4em;
  color: #fff;
}

.hero__accent {
  color: var(--color-primary);
  display: block;
}

.hero__sub-row {
  display: flex;
  width: 100%;
  align-items: center;
  margin-top: 1.5em;
}
.hero__sub-row .hero__sub {
  font-size: 1.3em;
  font-weight: 400;
  max-width: 30em;
  color: rgba(255, 255, 255, 0.88);
  padding-bottom: 0;
  line-height: 1.2;
}
.hero__sub-row a {
  margin-left: auto;
}

.section--about {
  background: #fff;
  padding: 8em 0;
  width: 100vw;
}
.section--about figure.arrow {
  position: absolute;
  z-index: 2;
  right: -3vw;
  top: -5em;
  width: 20em;
}
@media only screen and (min-width: 48em) {
  .section--about figure.arrow {
    width: 40vw;
    max-width: 35em;
  }
}
.no-mq .section--about figure.arrow {
  width: 40vw;
  max-width: 35em;
}
@media only screen and (min-width: 90em) {
  .section--about figure.arrow {
    right: calc((100vw - 90em) / 2 - 3em);
  }
}
.no-mq .section--about figure.arrow {
  right: calc((100vw - 90em) / 2 - 3em);
}
.section--about .cols {
  z-index: 3;
  position: relative;
}
.section--about .about-cols {
  align-items: center;
  gap: 5em;
}
.section--about .about-cols > .about__text {
  order: 2;
}
@media only screen and (min-width: 48em) {
  .section--about .about-cols > .about__text {
    order: 1;
  }
}
.no-mq .section--about .about-cols > .about__text {
  order: 1;
}
.section--about .about-cols > .about__statement {
  order: 1;
}
@media only screen and (min-width: 48em) {
  .section--about .about-cols > .about__statement {
    order: 2;
  }
}
.no-mq .section--about .about-cols > .about__statement {
  order: 2;
}
.section--about .about__text p.emphasis {
  color: var(--color-navy);
  font-weight: 600;
}
.section--about .about__statement {
  position: relative;
  overflow: hidden;
}
.section--about .about__statement h2 {
  position: relative;
  z-index: 1;
  font-size: 2em;
}
@media only screen and (min-width: 64em) {
  .section--about .about__statement h2 {
    font-size: clamp(1.3rem, 3.4vw, 2.5rem);
  }
}
.no-mq .section--about .about__statement h2 {
  font-size: clamp(1.3rem, 3.4vw, 2.5rem);
}
.section--about .about__statement h2 {
  font-weight: 900;
  text-transform: uppercase;
  line-height: 1.2;
  color: var(--color-light-navy);
  text-align: right;
  margin-bottom: 0;
}

.section--services {
  padding: 4em 0;
  z-index: 10;
  position: relative;
}

.services-grid {
  display: grid;
  gap: 2em;
}
@media only screen and (min-width: 48em) {
  .services-grid {
    grid-template-columns: repeat(3, 1fr);
    margin: 0 1em;
  }
}
.no-mq .services-grid {
  grid-template-columns: repeat(3, 1fr);
  margin: 0 1em;
}
@media only screen and (min-width: 64em) {
  .services-grid {
    margin: 0 3em;
  }
}
.no-mq .services-grid {
  margin: 0 3em;
}
@media only screen and (min-width: 90em) {
  .services-grid {
    gap: 3em;
    margin: 0 5em;
  }
}
.no-mq .services-grid {
  gap: 3em;
  margin: 0 5em;
}
@media only screen and (min-width: 48em) {
  .services-grid > .service-card:nth-child(1) > .service-card__label {
    text-align: left;
  }
  .services-grid > .service-card:nth-child(2) > .service-card__label {
    text-align: center;
  }
  .services-grid > .service-card:nth-child(3) > .service-card__label {
    text-align: right;
  }
}
.no-mq .services-grid > .service-card:nth-child(1) > .service-card__label {
  text-align: left;
}
.no-mq .services-grid > .service-card:nth-child(2) > .service-card__label {
  text-align: center;
}
.no-mq .services-grid > .service-card:nth-child(3) > .service-card__label {
  text-align: right;
}

.service-card {
  position: relative;
  border-radius: 2px;
  overflow: hidden;
}

.service-card__img {
  background-size: cover;
  background-position: center;
  width: 100%;
  height: 32em;
  transition: transform 0.4s ease;
}

.service-card:hover .service-card__img {
  transform: scale(1.05);
}

.service-card__hover {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5em;
  background: rgba(0, 0, 0, 0.5);
  transform: translateY(100%);
  transition: transform 0.4s ease;
}
.service-card__hover p {
  margin: 0;
  color: #fff;
  font-size: 1rem;
  line-height: 1.5;
  text-align: center;
}

.service-card:hover .service-card__hover {
  transform: translateY(0);
}

.service-card__label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1.5em 1.1em 1em;
  text-align: center;
  font-family: var(--font-menu);
  background: linear-gradient(to top, rgba(0, 0, 0, 0.82) 0%, rgba(0, 0, 0, 0.45) 55%, transparent 100%);
  color: #fff;
  font-weight: 500;
  text-transform: uppercase;
  line-height: 1.3;
  font-size: 200%;
}
@media only screen and (min-width: 48em) {
  .service-card__label {
    font-size: 150%;
  }
}
.no-mq .service-card__label {
  font-size: 150%;
}
@media only screen and (min-width: 64em) {
  .service-card__label {
    font-size: 190%;
  }
}
.no-mq .service-card__label {
  font-size: 190%;
}
@media only screen and (min-width: 80em) {
  .service-card__label {
    font-size: 225%;
  }
}
.no-mq .service-card__label {
  font-size: 225%;
}

.section--stats {
  margin-top: 5em;
  position: relative;
  z-index: 1;
  overflow: visible;
  display: grid;
  grid-template-columns: 1fr;
}
@media only screen and (min-width: 48em) {
  .section--stats {
    grid-template-columns: repeat(4, 1fr);
    align-items: start;
  }
}
.no-mq .section--stats {
  grid-template-columns: repeat(4, 1fr);
  align-items: start;
}

.stats__left {
  padding: 5em 4em;
  background: var(--color-navy);
  color: #fff;
}
@media only screen and (min-width: 48em) {
  .stats__left {
    grid-column: 1/4;
    grid-row: 1;
    padding: 7em 2% 7em 13vw;
  }
}
.no-mq .stats__left {
  grid-column: 1/4;
  grid-row: 1;
  padding: 7em 2% 7em 13vw;
}
@media only screen and (min-width: 48em) {
  .stats__left .textWrapper {
    margin-right: 30vw;
  }
}
.no-mq .stats__left .textWrapper {
  margin-right: 30vw;
}
.stats__left .textWrapper {
  position: relative;
}
.stats__left .quote {
  font-size: 15em;
  opacity: 0.4;
  font-family: var(--font-menu);
  position: absolute;
  top: 5rem;
  left: -7rem;
}
.stats__left .section-label {
  color: #fff;
  font-weight: 500;
}
.stats__left .section-label::before {
  background: repeating-linear-gradient(to right, rgba(255, 255, 255, 0.55) 0, rgba(255, 255, 255, 0.55) 3px, transparent 3px, transparent 5.5px);
}
.stats__left h2 {
  font-size: clamp(1.4rem, 2.4vw, 2rem);
  font-weight: 300;
  text-transform: uppercase;
  line-height: 1.1;
  letter-spacing: 0.05em;
  color: #fff;
  margin-bottom: 0;
}
.stats__left p {
  font-weight: 300;
}

.stats__right {
  position: relative;
  z-index: 2;
  min-height: 380px;
  background: url("/images/orange-block.jpg") center/cover no-repeat;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  padding-bottom: 5rem;
  text-align: center;
  font-size: 3em;
}
@media only screen and (min-width: 48em) {
  .stats__right {
    font-size: clamp(2.5em, 5vw, 4em);
    grid-column: 3/5;
    grid-row: 1;
    min-height: 48rem;
    margin-top: -20rem;
    margin-bottom: 8rem;
  }
}
.no-mq .stats__right {
  font-size: clamp(2.5em, 5vw, 4em);
  grid-column: 3/5;
  grid-row: 1;
  min-height: 48rem;
  margin-top: -20rem;
  margin-bottom: 8rem;
}
.stats__right .quote {
  color: white;
  font-size: 15rem;
  opacity: 0.4;
  font-family: var(--font-menu);
  position: absolute;
  top: 21rem;
  right: 5rem;
}
.stats__right .stats__proudly,
.stats__right .stats__number,
.stats__right .stats__years {
  position: relative;
  padding-bottom: 0;
  font-family: var(--font-menu);
}
.stats__right .stats__proudly {
  font-size: 100%;
  font-weight: 600;
  text-transform: uppercase;
  line-height: 1.1;
  color: white;
  text-align: left;
}
.stats__right .stats__proudly span {
  margin-left: 0.25em;
  font-size: 60%;
  font-weight: 400;
  text-transform: none;
  letter-spacing: 0;
}
.stats__right .stats__number {
  font-size: 300%;
  font-weight: 900;
  line-height: 0.9;
  color: #fff;
  margin: -0.1em 10% 0 auto;
}
.stats__right .stats__years {
  font-size: 70%;
  font-weight: 500;
  text-transform: lowercase;
  color: rgba(255, 255, 255, 0.85);
  text-align: right;
  margin: -0.5em 13% 0 auto;
}

.section--partners {
  background: #fff;
  padding: 4em 0;
}
@media only screen and (min-width: 48em) {
  .section--partners {
    padding: 10em 0;
  }
}
.no-mq .section--partners {
  padding: 10em 0;
}

.partners-grid {
  display: flex;
  flex-direction: column;
  gap: 2em;
}
@media only screen and (min-width: 48em) {
  .partners-grid {
    flex-direction: row;
    align-items: center;
  }
}
.no-mq .partners-grid {
  flex-direction: row;
  align-items: center;
}

.partners-carousel {
  min-width: 0;
  overflow: hidden;
}
@media only screen and (min-width: 48em) {
  .partners-carousel {
    flex: 1;
  }
}
.no-mq .partners-carousel {
  flex: 1;
}

.partners-track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: 33.3333333333%;
  will-change: transform;
}

.partner-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 1em;
}
.partner-logo img {
  max-width: 130px;
  max-height: 55px;
  width: 100%;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
  transition: opacity 0.25s ease;
}
@media only screen and (min-width: 64em) {
  .partner-logo img {
    max-height: 90px;
    max-width: 220px;
  }
}
.no-mq .partner-logo img {
  max-height: 90px;
  max-width: 220px;
}
.partner-logo:hover img {
  opacity: 1;
}

.partners__heading {
  order: -1;
}
@media only screen and (min-width: 48em) {
  .partners__heading {
    order: 0;
  }
}
.no-mq .partners__heading {
  order: 0;
}
.partners__heading h2 {
  font-size: clamp(1.1rem, 3vw, 2rem);
}
@media only screen and (min-width: 48em) {
  .partners__heading h2 {
    font-size: clamp(1.1rem, 4.5vw, 2.5rem);
  }
}
.no-mq .partners__heading h2 {
  font-size: clamp(1.1rem, 4.5vw, 2.5rem);
}
.partners__heading h2 {
  font-weight: 900;
  text-transform: uppercase;
  line-height: 1.2;
  color: var(--color-light-navy);
  margin-bottom: 0;
  text-align: right;
}
.partners__heading h2::after {
  content: "";
  display: block;
  width: 2.5em;
  height: 3px;
  background: var(--color-primary);
  margin-top: 0.5em;
  margin-right: 0;
  margin-left: auto;
}

/*
 ____  ____   ___      _ _____ ____ _____ 
|  _ \|  _ \ / _ \    | | ____/ ___|_   _|
| |_) | |_) | | | |_  | |  _|| |     | |  
|  __/|  _ <| |_| | |_| | |__| |___  | |  
|_|   |_| \_\\___/ \___/|_____\____| |_|  

*/
.section--project {
  overflow: hidden;
  margin-bottom: 7em;
}

.project-split {
  display: grid;
  grid-template-columns: 1fr;
}
@media only screen and (min-width: 48em) {
  .project-split {
    grid-template-columns: 60% 1fr;
    align-items: center;
    min-height: 480px;
  }
}
.no-mq .project-split {
  grid-template-columns: 60% 1fr;
  align-items: center;
  min-height: 480px;
}

.project-split__info {
  padding: 4em 2em;
  background: var(--color-lighter);
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: white;
}
@media only screen and (min-width: 48em) {
  .project-split__info {
    align-self: stretch;
    z-index: 2;
    padding: 7em 8vw 7em 15vw;
  }
}
.no-mq .project-split__info {
  align-self: stretch;
  z-index: 2;
  padding: 7em 8vw 7em 15vw;
}
.project-split__info .section-label {
  color: white;
  font-weight: 400;
}
.project-split__info h2 {
  font-size: clamp(1.2rem, 2.2vw, 1.85rem);
  font-weight: 400;
  text-transform: uppercase;
  line-height: 1.2;
  color: #fff;
  margin-bottom: 0.5em;
}
.project-split__info p {
  font-weight: 400;
}

.project-location {
  font-style: italic;
  font-size: 1.25em !important;
  padding-bottom: 0.75em !important;
}

.project-split__image {
  overflow: hidden;
  min-height: 280px;
}
@media only screen and (min-width: 48em) {
  .project-split__image {
    min-height: 0;
    margin-left: -3em;
    z-index: 1;
  }
}
.no-mq .project-split__image {
  min-height: 0;
  margin-left: -3em;
  z-index: 1;
}
.project-split__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}

.section--cta {
  position: relative;
  background: var(--color-primary);
  overflow: hidden;
  padding: calc(7vh + 44px) 0 6em;
}
.section--cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background: #fff;
  pointer-events: none;
  clip-path: polygon(0% 0%, 100% -1%, 100% max(-1px, 5vh - 8.749vw), 0% 5vh);
}
.section--cta strong {
  display: block;
  font-size: 1.15em;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #fff;
}
.section--cta p {
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.88em;
  padding-bottom: 0;
}
.section--cta a {
  display: block;
  margin: 1em auto 0;
}
@media only screen and (min-width: 48em) {
  .section--cta a {
    margin: 0 0 0 auto;
  }
}
.no-mq .section--cta a {
  margin: 0 0 0 auto;
}

.cta__inner {
  display: flex;
  flex-direction: column;
  gap: 1.5em;
  align-items: flex-start;
}
@media only screen and (min-width: 48em) {
  .cta__inner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}
.no-mq .cta__inner {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
}

.cta__text {
  display: flex;
  align-items: center;
  gap: 1.25em;
  color: #fff;
  font-size: 1.25em;
}
.cta__text figure {
  color: var(--color-navy);
  font-size: 2.5em;
  transform: rotate(15deg);
  margin-right: -0.25em;
}
.cta__text p {
  margin-top: 0.5em;
  font-style: italic;
}

.cta__icon {
  flex-shrink: 0;
  opacity: 0.88;
}

footer.site-footer {
  background: var(--color-navy);
  color: white;
  padding: 7em 0 0;
}
footer.site-footer a {
  text-decoration: none;
}
footer.site-footer a:hover {
  color: #fff;
  text-decoration: underline;
}
footer.site-footer address {
  font-style: normal;
}
footer.site-footer .footer-grid {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  flex-wrap: wrap;
  padding-bottom: 6em;
}
footer.site-footer .footer-grid .footer__brand {
  width: 100%;
  margin-bottom: 3em;
}
@media only screen and (min-width: 48em) {
  footer.site-footer .footer-grid .footer__brand {
    width: auto;
    margin-bottom: 0;
  }
  footer.site-footer .footer-grid {
    align-items: start;
  }
}
.no-mq footer.site-footer .footer-grid .footer__brand {
  width: auto;
  margin-bottom: 0;
}
.no-mq footer.site-footer .footer-grid {
  align-items: start;
}
footer.site-footer .footer__brand figure,
footer.site-footer .footer__brand img {
  display: block;
  width: 18em;
}
@media only screen and (min-width: 48em) {
  footer.site-footer .footer__brand figure,
  footer.site-footer .footer__brand img {
    width: 15em;
  }
}
.no-mq footer.site-footer .footer__brand figure,
.no-mq footer.site-footer .footer__brand img {
  width: 15em;
}
@media only screen and (min-width: 64em) {
  footer.site-footer .footer__brand figure,
  footer.site-footer .footer__brand img {
    width: 18em;
  }
}
.no-mq footer.site-footer .footer__brand figure,
.no-mq footer.site-footer .footer__brand img {
  width: 18em;
}
footer.site-footer .footer__brand figure,
footer.site-footer .footer__brand img {
  height: auto;
}
footer.site-footer .footer__brand figure svg .st3,
footer.site-footer .footer__brand img svg .st3 {
  fill: white;
}
footer.site-footer .footer__brand figure svg .st2,
footer.site-footer .footer__brand img svg .st2 {
  fill: white;
}
footer.site-footer .footer__brand figure svg .st1,
footer.site-footer .footer__brand img svg .st1 {
  fill: white;
}
footer.site-footer .footer__col-heading,
footer.site-footer .footer__serving h3,
footer.site-footer .footer__contact h3 {
  font-size: 1.3em;
  font-weight: 500;
  text-transform: uppercase;
  color: var(--color-primary);
  margin-bottom: 1em;
}
footer.site-footer .serving-cols {
  display: grid;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: space-between;
  width: 15em;
  margin-bottom: 2em;
}
footer.site-footer .serving-cols ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
footer.site-footer .serving-cols ul li {
  padding-bottom: 0.3em;
}
footer.site-footer .footer__contact p {
  font-weight: 300;
  font-size: 1.1em;
  padding-bottom: 1em;
}
footer.site-footer .footer__contact p i {
  display: block;
  margin-right: 1em;
  padding-right: 1em;
}
footer.site-footer .footer__contact p svg {
  margin-right: 1em;
}
footer.site-footer .footer__contact p.tel a {
  font-size: 1.3em;
}
footer.site-footer .footer__bottom_container {
  background: var(--color-dark-navy);
}
footer.site-footer .footer__bottom {
  padding: 1.25em 0;
  display: flex;
  flex-direction: column;
  gap: 0.5em;
}
@media only screen and (min-width: 48em) {
  footer.site-footer .footer__bottom {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
}
.no-mq footer.site-footer .footer__bottom {
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}
footer.site-footer .footer__bottom p {
  font-size: 0.78em;
  color: rgb(255, 255, 255);
  padding-bottom: 0;
}
footer.site-footer .footer__bottom nav {
  display: flex;
  gap: 0.75em;
  align-items: center;
  font-size: 0.78em;
}
footer.site-footer .footer__bottom nav a {
  color: rgba(255, 255, 255, 0.45);
}
footer.site-footer .footer__bottom nav span {
  color: rgba(255, 255, 255, 0.25);
}

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