/* ----------------------- */
/********** Fonts **********/
/* ----------------------- */
@font-face {
  font-family: "Lateral";
  src: url("../fonts/Lateral-ExtendedMedium.woff2") format("woff2");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
  font-stretch: expanded;
}
@font-face {
  font-family: "Lateral";
  src: url("../fonts/Lateral-ExpandedHeavy.woff2") format("woff2");
  font-weight: 900;
  font-style: normal;
  font-display: swap;
  font-stretch: expanded;
}
/* -------------------------------------- */
/********** Responsive Variables **********/
/* -------------------------------------- */
/* ------------------------------ */
/********** Brand Colors **********/
/* ------------------------------ */
/* --------------------------- */
/********** Structure **********/
/* --------------------------- */
html, body {
  background-color: #000;
}
html #page, body #page {
  background-color: #FFF;
}
.post, .page, .page-content {
  margin: 0;
  padding: 0;
}
@media screen and (min-width: 1024px) {
  #primary:not(.skip-padding) {
    padding-top: 109px;
  }
}
@media screen and (max-width: 1024px) {
  #primary:not(.skip-padding) {
    padding-top: 78px;
  }
}
@media screen and (min-width: 1024px) {
  .page-content {
    padding-left: 18px;
    padding-right: 18px;
  }
}
@media screen and (max-width: 1024px) {
  .page-content {
    padding-left: 10px;
    padding-right: 10px;
  }
}
@media screen and (min-width: 1024px) {
  .site-width {
    margin-left: auto;
    margin-right: auto;
    max-width: 1512px;
  }
}
/*
@mixin wrap {
  @media screen and (min-width: $md) {
    margin: 0 auto;
    padding-left: 40px;
    padding-right: 40px;
    max-width: 1440px;
  }

  @media screen and (max-width: $md) {
    padding-left: 20px;
    padding-right: 20px;
  }
}

.wrap {
  @include wrap;
}
*/
.flex {
  display: flex;
}
.flex.flex-row {
  flex-direction: row;
}
.flex.flex-row-reverse {
  flex-direction: row-reverse;
}
.flex.flex-column {
  flex-direction: column;
}
.flex.flex-wrap {
  flex-wrap: wrap;
}
.flex.flex-no-wrap {
  flex-wrap: no-wrap;
}
.flex.flex-align-start {
  align-items: flex-start;
}
.flex.flex-align-end {
  align-items: flex-end;
}
.flex.flex-align-center {
  align-items: center;
}
.flex.flex-justify-between {
  justify-content: space-between;
}
.flex.flex-justify-even {
  justify-content: space-evenly;
}
.flex.flex-justify-end {
  justify-content: flex-end;
}
.flex.flex-justify-center {
  justify-content: center;
}
.flex .flex-no-grow {
  flex-grow: 0;
}
.flex .flex-no-shrink {
  flex-shrink: 0;
}
.flex .flex-grow {
  flex-grow: 1;
}
.flex .flex-shrink {
  flex-shrink: 1;
}
.grid {
  display: grid;
}
/* ------------------------------- */
/********** Global Styles **********/
/* ------------------------------- */
@media (hover: hover) and (pointer: fine) {
  body.custom-cursor-enabled, body.custom-cursor-enabled * {
    cursor: none !important;
  }
}
.custom-cursor {
  position: fixed;
  top: 0;
  left: 0;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: #FFF;
  mix-blend-mode: difference;
  pointer-events: none;
  z-index: 99999;
  opacity: 0;
  transform: translate3d(-9999px, -9999px, 0);
  transition: opacity 0.22s ease, width 0.22s ease, height 0.22s ease;
  will-change: transform, opacity, width, height;
}
.custom-cursor.is-visible {
  opacity: 1;
}
.custom-cursor.is-over-link, .custom-cursor.is-over-ui {
  width: 28px;
  height: 28px;
}
@media (hover: hover) and (pointer: fine) {
  body:has(.search-filter-field:hover) .custom-cursor, body:has(.search-filter-component-combobox-base:hover) .custom-cursor, body:has(.search-filter-component-combobox__selection:hover) .custom-cursor, body:has(.search-filter-component-combobox__actions:hover) .custom-cursor, body:has(input:hover) .custom-cursor, body:has(textarea:hover) .custom-cursor, body:has(select:hover) .custom-cursor {
    width: 28px;
    height: 28px;
  }
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
img[data-lazy-src] {
  opacity: 0;
}
img.lazyloaded {
  -webkit-transition: opacity 0.5s linear 0.2s;
  -moz-transition: opacity 0.5s linear 0.2s;
  transition: opacity 0.5s linear 0.2s;
  opacity: 1;
}
body a.cta {
  font-size: 14px;
  line-height: 100%;
  padding: 14px 14px 13px;
  color: #F0E8DA;
  text-decoration: none;
  border-radius: 100px;
  border: 1px solid transparent;
  transition: all 0.2s ease-in-out;
}
body a.cta:hover {
  text-decoration: none;
}
body a.cta:not(.reverse):not(:hover) {
  background-color: #000;
}
body a.cta:not(.reverse):hover {
  color: #000;
  border: 1px solid;
}
body a.cta.reverse {
  border: 1px solid;
}
body a.cta.reverse:hover {
  color: #000;
  background-color: #F0E8DA;
}
body .search-filter-component-popover {
  border: 0;
  border-radius: 0;
  max-height: inherit;
  box-shadow: none;
  width: auto;
  max-width: 492px;
  min-width: 0;
}
@media screen and (min-width: 1025px) {
  body .search-filter-component-popover {
    width: 492px !important;
    min-width: 492px !important;
    max-width: 492px !important;
  }
}
body .search-filter-component-popover .search-filter-component-combobox-base__listbox-option {
  padding: 12px 16px;
  margin-bottom: 0;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 23px;
  position: relative;
  color: #000;
  text-align: left;
  cursor: pointer;
  background-color: inherit;
}
body .search-filter-component-popover .search-filter-component-combobox-base__listbox-option:before {
  content: "";
  width: 19px;
  height: 19px;
  border: 1px solid #000;
}
body .search-filter-component-popover .search-filter-component-combobox-base__listbox-option:after {
  content: "";
  display: none;
  z-index: 10;
  position: absolute;
  left: 14px;
  top: 10px;
  width: 32px;
  height: 30px;
  background-image: url(../images/work-filter.svg);
  background-position: 50% 50%;
  background-size: contain;
  background-repeat: no-repeat;
}
body .search-filter-component-popover .search-filter-component-combobox-base__listbox-option.search-filter-component-combobox-base__listbox-option--active {
  background-color: inherit;
}
body .search-filter-component-popover .search-filter-component-combobox-base__listbox-option.search-filter-component-combobox-base__listbox-option--active:after {
  display: block;
}
body .search-filter-component-popover .search-filter-component-combobox-base__listbox-option.search-filter-component-combobox-base__listbox-option--selected {
  background-color: inherit;
}
body .search-filter-component-popover .search-filter-component-combobox-base__listbox-option:hover, body .search-filter-component-popover .search-filter-component-combobox-base__listbox-option:focus, body .search-filter-component-popover .search-filter-component-combobox-base__listbox-option:focus-visible {
  background-color: inherit;
  color: #000;
}
body .search-filter-component-popover .search-filter-component-combobox-base__listbox-option .search-filter-component-combobox-base__listbox-option-count {
  display: none;
}
body .search-filter-field__popup--id-1.search-filter-component-popover {
  background-color: #FFDF3D !important;
}
body .search-filter-field__popup--id-1.search-filter-component-popover li.search-filter-component-combobox-base__listbox-option {
  background-color: #FFDF3D !important;
}
body .search-filter-field__popup--id-1.search-filter-component-popover li.search-filter-component-combobox-base__listbox-option--active, body .search-filter-field__popup--id-1.search-filter-component-popover li.search-filter-component-combobox-base__listbox-option--selected {
  background-color: #FFDF3D !important;
}
body .search-filter-field__popup--id-2.search-filter-component-popover {
  background-color: #FF694F !important;
}
body .search-filter-field__popup--id-2.search-filter-component-popover li.search-filter-component-combobox-base__listbox-option {
  background-color: #FF694F !important;
}
body .search-filter-field__popup--id-2.search-filter-component-popover li.search-filter-component-combobox-base__listbox-option--active, body .search-filter-field__popup--id-2.search-filter-component-popover li.search-filter-component-combobox-base__listbox-option--selected {
  background-color: #FF694F !important;
}
@media screen and (max-width: 1024px) {
  body.post-type-archive-project .search-filter-field__popup--id-1.search-filter-component-popover, body.post-type-archive-project .search-filter-field__popup--id-2.search-filter-component-popover {
    left: 0 !important;
    right: 0 !important;
    width: 100% !important;
    min-width: 100% !important;
    max-width: 100% !important;
  }
}
@media screen and (min-width: 1025px) {
  body.post-type-archive-project .search-filter-field__popup--id-1.search-filter-component-popover, body.post-type-archive-project .search-filter-field__popup--id-2.search-filter-component-popover {
    width: 492px !important;
    min-width: 492px !important;
    max-width: 492px !important;
  }
}
body.work-scope-open, body:has(.work-filters .search-filter-field[data-search-filter-id="1"] .search-filter-component-combobox-base--listbox-visible) {
  --work-filter-open-color: #FFDF3D;
}
body.work-industry-open, body:has(.work-filters .search-filter-field[data-search-filter-id="2"] .search-filter-component-combobox-base--listbox-visible) {
  --work-filter-open-color: #FF694F;
}
body.work-scope-open #page #primary .site-main > .page-content .search-filter-query, body.work-industry-open #page #primary .site-main > .page-content .search-filter-query, body:has(.work-filters .search-filter-field[data-search-filter-id="1"] .search-filter-component-combobox-base--listbox-visible) #page #primary .site-main > .page-content .search-filter-query, body:has(.work-filters .search-filter-field[data-search-filter-id="2"] .search-filter-component-combobox-base--listbox-visible) #page #primary .site-main > .page-content .search-filter-query {
  background-color: var(--work-filter-open-color);
}
body.work-scope-open #page #primary .site-main > .page-content .search-filter-query-posts, body.work-industry-open #page #primary .site-main > .page-content .search-filter-query-posts, body:has(.work-filters .search-filter-field[data-search-filter-id="1"] .search-filter-component-combobox-base--listbox-visible) #page #primary .site-main > .page-content .search-filter-query-posts, body:has(.work-filters .search-filter-field[data-search-filter-id="2"] .search-filter-component-combobox-base--listbox-visible) #page #primary .site-main > .page-content .search-filter-query-posts {
  border-top-color: transparent;
}
body.work-scope-open #page #primary .site-main > .page-content .search-filter-query-posts .item img, body.work-industry-open #page #primary .site-main > .page-content .search-filter-query-posts .item img, body:has(.work-filters .search-filter-field[data-search-filter-id="1"] .search-filter-component-combobox-base--listbox-visible) #page #primary .site-main > .page-content .search-filter-query-posts .item img, body:has(.work-filters .search-filter-field[data-search-filter-id="2"] .search-filter-component-combobox-base--listbox-visible) #page #primary .site-main > .page-content .search-filter-query-posts .item img {
  mix-blend-mode: multiply;
  filter: grayscale(100%) contrast(1.1);
}
body.work-scope-open #page #primary .site-main > .page-content .search-filter-query-posts .item.contact .item-title:after, body.work-industry-open #page #primary .site-main > .page-content .search-filter-query-posts .item.contact .item-title:after, body:has(.work-filters .search-filter-field[data-search-filter-id="1"] .search-filter-component-combobox-base--listbox-visible) #page #primary .site-main > .page-content .search-filter-query-posts .item.contact .item-title:after, body:has(.work-filters .search-filter-field[data-search-filter-id="2"] .search-filter-component-combobox-base--listbox-visible) #page #primary .site-main > .page-content .search-filter-query-posts .item.contact .item-title:after {
  mix-blend-mode: multiply;
}
body.work-scope-open #page footer.site-footer > .flex .footer-tagline, body.work-industry-open #page footer.site-footer > .flex .footer-tagline, body:has(.work-filters .search-filter-field[data-search-filter-id="1"] .search-filter-component-combobox-base--listbox-visible) #page footer.site-footer > .flex .footer-tagline, body:has(.work-filters .search-filter-field[data-search-filter-id="2"] .search-filter-component-combobox-base--listbox-visible) #page footer.site-footer > .flex .footer-tagline {
  color: var(--work-filter-open-color);
}
body.work-scope-open #page footer.site-footer > .flex .footer-emails .email p, body.work-scope-open #page footer.site-footer > .flex .footer-emails .email a, body.work-scope-open #page footer.site-footer > .flex .footer-emails .social p, body.work-scope-open #page footer.site-footer > .flex .footer-emails .social a, body.work-scope-open #page footer.site-footer > .flex .footer-social .email p, body.work-scope-open #page footer.site-footer > .flex .footer-social .email a, body.work-scope-open #page footer.site-footer > .flex .footer-social .social p, body.work-scope-open #page footer.site-footer > .flex .footer-social .social a, body.work-industry-open #page footer.site-footer > .flex .footer-emails .email p, body.work-industry-open #page footer.site-footer > .flex .footer-emails .email a, body.work-industry-open #page footer.site-footer > .flex .footer-emails .social p, body.work-industry-open #page footer.site-footer > .flex .footer-emails .social a, body.work-industry-open #page footer.site-footer > .flex .footer-social .email p, body.work-industry-open #page footer.site-footer > .flex .footer-social .email a, body.work-industry-open #page footer.site-footer > .flex .footer-social .social p, body.work-industry-open #page footer.site-footer > .flex .footer-social .social a, body:has(.work-filters .search-filter-field[data-search-filter-id="1"] .search-filter-component-combobox-base--listbox-visible) #page footer.site-footer > .flex .footer-emails .email p, body:has(.work-filters .search-filter-field[data-search-filter-id="1"] .search-filter-component-combobox-base--listbox-visible) #page footer.site-footer > .flex .footer-emails .email a, body:has(.work-filters .search-filter-field[data-search-filter-id="1"] .search-filter-component-combobox-base--listbox-visible) #page footer.site-footer > .flex .footer-emails .social p, body:has(.work-filters .search-filter-field[data-search-filter-id="1"] .search-filter-component-combobox-base--listbox-visible) #page footer.site-footer > .flex .footer-emails .social a, body:has(.work-filters .search-filter-field[data-search-filter-id="1"] .search-filter-component-combobox-base--listbox-visible) #page footer.site-footer > .flex .footer-social .email p, body:has(.work-filters .search-filter-field[data-search-filter-id="1"] .search-filter-component-combobox-base--listbox-visible) #page footer.site-footer > .flex .footer-social .email a, body:has(.work-filters .search-filter-field[data-search-filter-id="1"] .search-filter-component-combobox-base--listbox-visible) #page footer.site-footer > .flex .footer-social .social p, body:has(.work-filters .search-filter-field[data-search-filter-id="1"] .search-filter-component-combobox-base--listbox-visible) #page footer.site-footer > .flex .footer-social .social a, body:has(.work-filters .search-filter-field[data-search-filter-id="2"] .search-filter-component-combobox-base--listbox-visible) #page footer.site-footer > .flex .footer-emails .email p, body:has(.work-filters .search-filter-field[data-search-filter-id="2"] .search-filter-component-combobox-base--listbox-visible) #page footer.site-footer > .flex .footer-emails .email a, body:has(.work-filters .search-filter-field[data-search-filter-id="2"] .search-filter-component-combobox-base--listbox-visible) #page footer.site-footer > .flex .footer-emails .social p, body:has(.work-filters .search-filter-field[data-search-filter-id="2"] .search-filter-component-combobox-base--listbox-visible) #page footer.site-footer > .flex .footer-emails .social a, body:has(.work-filters .search-filter-field[data-search-filter-id="2"] .search-filter-component-combobox-base--listbox-visible) #page footer.site-footer > .flex .footer-social .email p, body:has(.work-filters .search-filter-field[data-search-filter-id="2"] .search-filter-component-combobox-base--listbox-visible) #page footer.site-footer > .flex .footer-social .email a, body:has(.work-filters .search-filter-field[data-search-filter-id="2"] .search-filter-component-combobox-base--listbox-visible) #page footer.site-footer > .flex .footer-social .social p, body:has(.work-filters .search-filter-field[data-search-filter-id="2"] .search-filter-component-combobox-base--listbox-visible) #page footer.site-footer > .flex .footer-social .social a {
  color: var(--work-filter-open-color);
}
body.work-scope-open #page footer.site-footer .site-branding p, body.work-scope-open #page footer.site-footer .site-branding a, body.work-industry-open #page footer.site-footer .site-branding p, body.work-industry-open #page footer.site-footer .site-branding a, body:has(.work-filters .search-filter-field[data-search-filter-id="1"] .search-filter-component-combobox-base--listbox-visible) #page footer.site-footer .site-branding p, body:has(.work-filters .search-filter-field[data-search-filter-id="1"] .search-filter-component-combobox-base--listbox-visible) #page footer.site-footer .site-branding a, body:has(.work-filters .search-filter-field[data-search-filter-id="2"] .search-filter-component-combobox-base--listbox-visible) #page footer.site-footer .site-branding p, body:has(.work-filters .search-filter-field[data-search-filter-id="2"] .search-filter-component-combobox-base--listbox-visible) #page footer.site-footer .site-branding a {
  color: var(--work-filter-open-color);
}
.flexity-buttons {
  gap: 20px;
  margin-top: 24px;
}
@media screen and (max-width: 1024px) {
  .flexity-buttons {
    display: none;
  }
}
.flickity-button.flickity-prev-next-button {
  position: relative;
  top: initial;
  left: initial;
  right: initial;
  padding: 0;
  width: 30px;
  height: 30px;
  color: #000;
  background: transparent;
  border-radius: 0;
  transform: none;
  border: 0;
  outline: none;
}
.flickity-button.flickity-prev-next-button:disabled {
  opacity: 0.5;
}
.flickity-button.flickity-prev-next-button:focus {
  box-shadow: none;
}
.flickity-button.flickity-prev-next-button.next {
  right: initial;
}
.flickity-button.flickity-prev-next-button.prev {
  left: initial;
}
.flickity-button.flickity-prev-next-button .flickity-button-icon svg {
  position: relative;
  top: initial;
  right: initial;
  left: initial;
  width: 100%;
  height: 100%;
  display: block;
}
/* ---------------------------- */
/********** Typography **********/
/* ---------------------------- */
body {
  color: #000;
  font-family: "Lateral", sans-serif;
  font-weight: 500;
  -webkit-font-smoothing: antialiased;
  font-size: 18px;
  line-height: 22px;
}
body h1, body h2, body h3, body h4, body .h1, body .h2, body .h3, body .h4 {
  margin: 0;
  padding: 0;
  display: block;
  font-family: "Lateral", sans-serif;
  font-weight: 900;
}
@media screen and (min-width: 1440px) {
  body h1, body .h1 {
    font-size: 70px;
    line-height: 71px;
    letter-spacing: -0.02em;
  }
}
@media screen and (min-width: 1180px) and (max-width: 1440px) {
  body h1, body .h1 {
    font-size: 60px;
    line-height: 61px;
    letter-spacing: -0.02em;
  }
}
@media screen and (min-width: 1024px) and (max-width: 1180px) {
  body h1, body .h1 {
    font-size: 50px;
    line-height: 51px;
    letter-spacing: -0.02em;
  }
}
@media screen and (max-width: 1024px) {
  body h1, body .h1 {
    font-size: 30px;
    line-height: 31px;
    letter-spacing: -0.01em;
  }
}
@media screen and (min-width: 1024px) {
  body h2, body .h2 {
    font-size: 30px;
    line-height: 31px;
    letter-spacing: -0.01em;
  }
}
@media screen and (max-width: 1024px) {
  body h2, body .h2 {
    font-size: 18px;
    line-height: 20px;
    letter-spacing: 0;
  }
}
body h3, body .h3 {
  font-size: 20px;
  line-height: 22px;
  letter-spacing: -0.01em;
}
body p {
  margin: 0;
}
body ul, body ol {
  margin: 0;
  padding: 0 0 0 32px;
}
body ul li, body ol li {
  padding: 0;
  margin: 0;
}
body ul li:not(:last-child), body ol li:not(:last-child) {
  margin-bottom: 6px;
}
body ul {
  list-style-type: disc;
  list-style-position: outside;
}
body strong {
  font-weight: 900;
}
body blockquote {
  margin: 0;
  padding: 0;
  position: relative;
}
body a:not(.cta), body a:not(.cta):hover, body a:not(.cta):visited {
  color: #000;
  text-decoration: underline;
}
/* ------------------------ */
/********** Header **********/
/* ------------------------ */
header.site-header {
  width: 100%;
  z-index: 9999;
  position: absolute;
  top: 0;
  left: 0;
  /*
  &.is-fixed {
    position: fixed;
    background-color: $black;
    border-radius: 100px;
    left: 50%;
    transform: translateX(-50%);

    @media screen and (min-width: $md) {
      width: 870px;
      padding: 12px 18px 12px 24px;
      top: 32px;
    }

    @media screen and (max-width: $md) {
      padding: 10px 12px 10px 20px;
      top: 26px;
      width: 85%;
    }

    .site-branding {
      img {
        @media screen and (min-width: $md) {
          height: 24px;
        }

        @media screen and (max-width: $md) {
          height: 20px;
        }
      }
    }

    .main-navigation {
      ul {
        left: 0;
        width: 100%;
      }
    }
  }

  &:not(.is-fixed) {
    .main-navigation {
      ul {
        left: 10px;
        width: calc(100% - 20px);
      }
    }
  }
  */
}
@media screen and (min-width: 1024px) {
  header.site-header {
    padding: 18px;
  }
}
@media screen and (max-width: 1024px) {
  header.site-header {
    padding: 13px 10px;
  }
}
header.site-header .site-branding a {
  display: block;
  text-decoration: none;
}
header.site-header .site-branding a svg {
  display: block;
  height: auto;
}
@media screen and (min-width: 1024px) {
  header.site-header .site-branding a svg {
    width: 95px;
  }
}
@media screen and (max-width: 1024px) {
  header.site-header .site-branding a svg {
    height: 22px;
  }
}
header.site-header .main-navigation {
  width: auto;
  fleX: 0 0 100%;
}
@media screen and (min-width: 1024px) {
  header.site-header .main-navigation {
    padding-top: 50px;
  }
}
@media screen and (max-width: 1024px) {
  header.site-header .main-navigation {
    padding-top: 43px;
  }
}
header.site-header .main-navigation:not(.toggled) {
  display: none;
}
header.site-header .main-navigation ul#primary-menu li {
  margin-bottom: 0;
}
header.site-header .main-navigation ul#primary-menu li.hidden {
  display: none;
}
@media screen and (max-width: 1024px) {
  header.site-header .main-navigation ul#primary-menu li.hide-on-mobile {
    display: none;
  }
}
header.site-header .main-navigation ul#primary-menu li a {
  text-decoration: none;
  font-family: "Lateral", sans-serif;
  font-weight: 900;
}
@media screen and (min-width: 1024px) {
  header.site-header .main-navigation ul#primary-menu li a {
    font-size: 70px;
    line-height: 72px;
    letter-spacing: -0.02em;
  }
}
@media screen and (max-width: 1024px) {
  header.site-header .main-navigation ul#primary-menu li a {
    font-size: 50px;
    line-height: 51px;
    letter-spacing: -0.01em;
  }
}
@media screen and (min-width: 1024px) {
  header.site-header .main-navigation ul#primary-menu li a:hover {
    text-decoration: underline;
  }
}
header.site-header .menu-toggle {
  display: block;
  -webkit-appearance: none;
  appearance: none;
  outline: none;
  border: 0;
  border-radius: 0;
  padding: 0;
  margin: 0;
  background: none;
  cursor: pointer;
  z-index: 10;
  position: relative;
}
@media screen and (min-width: 1024px) {
  header.site-header .menu-toggle {
    width: 50px;
    height: 20px;
  }
}
@media screen and (max-width: 1024px) {
  header.site-header .menu-toggle {
    width: 40px;
    height: 16px;
  }
}
header.site-header .menu-toggle span {
  position: absolute;
  left: 0;
  right: inherit;
  width: 100%;
  background: currentColor;
  transition: transform 0.25s ease, opacity 0.2s ease;
  transform-origin: center;
}
@media screen and (min-width: 1024px) {
  header.site-header .menu-toggle span {
    height: 2px;
  }
}
@media screen and (max-width: 1024px) {
  header.site-header .menu-toggle span {
    height: 1px;
  }
}
header.site-header .menu-toggle span:nth-child(1) {
  top: 0;
}
@media screen and (min-width: 1024px) {
  header.site-header .menu-toggle span:nth-child(2) {
    top: 9px;
  }
}
@media screen and (max-width: 1024px) {
  header.site-header .menu-toggle span:nth-child(2) {
    top: 7px;
  }
}
header.site-header .menu-toggle span:nth-child(3) {
  bottom: 0;
}
body.nav-toggled #page header.site-header {
  background-color: #FFF;
}
body.nav-toggled #page header.site-header div.site-branding a {
  color: #000;
}
@media screen and (max-width: 1024px) {
  body.nav-toggled #page header.site-header .main-navigation {
    width: 100%;
    display: flex;
    justify-content: space-between;
  }
}
body.nav-toggled #page header.site-header .menu-toggle span {
  background: #000;
}
@media screen and (min-width: 1024px) {
  body.nav-toggled #page header.site-header .menu-toggle span:nth-child(1) {
    transform: translateY(9px) rotate(24deg);
  }
}
@media screen and (max-width: 1024px) {
  body.nav-toggled #page header.site-header .menu-toggle span:nth-child(1) {
    transform: translateY(8px) rotate(20deg);
  }
}
body.nav-toggled #page header.site-header .menu-toggle span:nth-child(2) {
  opacity: 0;
}
@media screen and (min-width: 1024px) {
  body.nav-toggled #page header.site-header .menu-toggle span:nth-child(3) {
    transform: translateY(-9px) rotate(-24deg);
  }
}
@media screen and (max-width: 1024px) {
  body.nav-toggled #page header.site-header .menu-toggle span:nth-child(3) {
    transform: translateY(-8px) rotate(-20deg);
  }
}
/* ----------------------------------- */
/*********** Site Components ***********/
/* ----------------------------------- */
.section-title {
  font-size: 16px;
  margin-bottom: 18px;
}
.section-title:not(.ignore-border) {
  padding-bottom: 10px;
  border-bottom: 1px solid;
}
@media screen and (min-width: 1024px) {
  section.layout {
    margin-left: auto;
    margin-right: auto;
    max-width: 1512px;
  }
}
.block {
  width: 100%;
}
@media screen and (min-width: 1024px) {
  .block.block-stats .items {
    column-gap: 18px;
    grid-auto-flow: column;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(3, auto);
  }
}
.block.block-stats .items .item {
  border-bottom: 1px solid #000;
}
@media screen and (min-width: 1024px) {
  .block.block-stats .items .item {
    padding-top: 30px;
    padding-bottom: 30px;
    gap: 18px;
  }
}
@media screen and (max-width: 1024px) {
  .block.block-stats .items .item {
    padding-top: 18px;
    padding-bottom: 18px;
    gap: 10px;
  }
}
.block.block-stats .items .item:first-child {
  border-top: 1px solid #000;
}
@media screen and (min-width: 1024px) {
  .block.block-stats .items .item:nth-child(3n+1) {
    border-top: 1px solid #000;
  }
}
@media screen and (min-width: 1024px) {
  .block.block-stats .items .item p.item-number {
    font-size: 80px;
  }
}
@media screen and (max-width: 1024px) {
  .block.block-stats .items .item p.item-number {
    font-size: clamp(20px, 10vw, 48px);
    line-height: clamp(20px, 10vw, 48px);
    min-width: 177px;
  }
}
.block.block-stats .items .item p.item-title {
  text-align: right;
}
@media screen and (min-width: 1024px) {
  .block.block-stats .items .item p.item-title {
    font-size: 24px;
    line-height: 32px;
    letter-spacing: -0.02em;
    max-width: 272px;
  }
}
@media screen and (max-width: 1024px) {
  .block.block-stats .items .item p.item-title {
    max-width: 220px;
  }
}
.block.block-text .block-content {
  gap: 22px;
}
@media screen and (min-width: 1024px) {
  .block.block-text .block-content {
    padding-right: 40px;
  }
}
@media screen and (min-width: 1024px) {
  .block.block-quote blockquote {
    max-width: 522px;
  }
}
.block.block-video.ratio-16-9 video {
  object-fit: cover;
}
@media screen and (min-width: 1180px) {
  .block.block-video.ratio-16-9 video {
    max-height: 830px;
  }
}
.block.block-video.ratio-4-3 {
  /*
      .video-wrap {
        background-color: $black;
        padding-top: 100px;
        padding-bottom: 100px;
      }
      */
}
.block.block-video.ratio-4-3 video {
  object-fit: cover;
}
@media screen and (min-width: 1180px) {
  .block.block-video.ratio-4-3 video {
    max-height: 910px;
  }
}
.block.block-video.ratio-1-1 {
  aspect-ratio: 1;
}
.block.block-video.ratio-1-1 .video-wrap {
  height: 100%;
}
.block.block-video.ratio-1-1 video {
  object-fit: cover;
}
.block.block-video video, .block.block-video iframe, .block.block-video .video-embed {
  width: 100%;
  height: 100%;
  display: block;
}
.block.block-video iframe {
  border: 0;
}
.block.block-image.ratio-16-9 {
  aspect-ratio: 1.7777777778;
}
.block.block-image.ratio-4-3 {
  aspect-ratio: 0.75;
}
@media screen and (min-width: 1180px) {
  .block.block-image.ratio-4-3 {
    max-height: 910px;
  }
}
.block.block-image.ratio-1-1 {
  aspect-ratio: 1;
}
.block.block-image img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}
@media screen and (min-width: 1024px) {
  .block.block-credits {
    margin-top: 13px;
    padding-right: 80px;
  }
}
@media screen and (max-width: 1024px) {
  .block.block-credits {
    margin-top: 20px;
  }
}
.block.block-credits .block-content {
  font-size: 14px;
  font-family: "Geist Mono", monospace;
  font-weight: 400;
  font-optical-sizing: auto;
  font-style: normal;
  grid-template-columns: repeat(2, 1fr);
  /*
      & > * {
        break-inside: avoid;
        page-break-inside: avoid;

        &:not(:last-child) {
          margin-bottom: 22px;
        }
      }
      */
}
@media screen and (min-width: 1024px) {
  .block.block-credits .block-content {
    gap: 60px;
  }
}
@media screen and (max-width: 1024px) {
  .block.block-credits .block-content {
    gap: 10px;
  }
}
.block.block-credits .block-content p:not(:last-child) {
  margin-bottom: 22px;
}
/* ------------------------------ */
/*********** Page: Home ***********/
/* ------------------------------ */
body.home #page header.site-header .site-branding a {
  color: #FFF;
}
body.home #page header.site-header .menu-toggle {
  color: #FFF;
}
@media screen and (max-width: 1024px) {
  body.home #page .page-content {
    display: flex;
    flex-direction: column;
  }
}
body.home #page .page-content section.hero .hero-wrap {
  position: relative;
  background-color: #000;
}
@media screen and (min-width: 1024px) {
  body.home #page .page-content section.hero .hero-wrap {
    margin-left: -18px;
    margin-right: -18px;
    width: calc(100% + 36px);
    overflow: hidden;
  }
}
@media screen and (max-width: 1024px) {
  body.home #page .page-content section.hero .hero-wrap {
    margin-left: -10px;
    margin-right: -10px;
  }
}
body.home #page .page-content section.hero .hero-wrap img {
  width: 100%;
}
@media screen and (min-width: 1024px) {
  body.home #page .page-content section.hero .hero-wrap.ratio-16-9 {
    aspect-ratio: 1.7777777778;
  }
}
@media screen and (min-width: 1024px) {
  body.home #page .page-content section.hero .hero-wrap.ratio-4-3 {
    aspect-ratio: 1.3333333333;
  }
}
@media screen and (min-width: 1024px) {
  body.home #page .page-content section.hero .hero-wrap.ratio-1-1 {
    aspect-ratio: 1;
  }
}
body.home #page .page-content section.hero .hero-wrap video {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}
@media screen and (max-width: 1024px) {
  body.home #page .page-content section.hero .hero-wrap video {
    min-height: 764px;
  }
}
@media screen and (min-width: 1440px) {
  body.home #page .page-content section.hero .hero-text {
    grid-template-columns: minmax(522px, 770px) 1fr;
  }
}
@media screen and (min-width: 1024px) and (max-width: 1440px) {
  body.home #page .page-content section.hero .hero-text {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (min-width: 1024px) {
  body.home #page .page-content section.hero .hero-text {
    padding-top: 34px;
    padding-bottom: 75px;
    gap: 60px;
  }
}
@media screen and (max-width: 1024px) {
  body.home #page .page-content section.hero .hero-text {
    padding-top: 16px;
    padding-bottom: 24px;
    gap: 15px;
  }
}
@media screen and (min-width: 1440px) {
  body.home #page .page-content section.hero .hero-text .hero-content {
    padding-right: 142px;
  }
}
@media screen and (min-width: 1024px) {
  body.home #page .page-content section.hero .hero-text .hero-content {
    padding-top: 22px;
  }
}
body.home #page .page-content section.hero .hero-text .hero-content p:not(:last-child) {
  margin-bottom: 22px;
}
body.home #page .page-content section.hero .scroll-to {
  display: block;
  width: 94px;
  height: 60px;
  background-image: url(../images/hero-scroll.svg);
  background-position: 50% 100%;
  background-size: contain;
  background-repeat: no-repeat;
  position: absolute;
  z-index: 10;
  left: calc(50% - 47px);
  bottom: 112px;
}
@media screen and (min-width: 1024px) {
  body.home #page .page-content section.talking-numbers {
    padding-bottom: 85px;
  }
}
@media screen and (max-width: 1024px) {
  body.home #page .page-content section.talking-numbers {
    padding-bottom: 50px;
  }
}
@media screen and (min-width: 1024px) {
  body.home #page .page-content section.scope {
    padding-bottom: 48px;
  }
}
@media screen and (max-width: 1024px) {
  body.home #page .page-content section.scope {
    padding-bottom: 48px;
  }
}
@media screen and (max-width: 1024px) {
  body.home #page .page-content section.scope p.section-title {
    padding-bottom: 0;
    border-bottom: 0;
  }
}
@media screen and (min-width: 1024px) {
  body.home #page .page-content section.scope .items {
    gap: 18px;
    grid-auto-flow: column;
    grid-auto-columns: 522px;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  body.home #page .page-content section.scope .items::-webkit-scrollbar {
    display: none;
  }
}
@media screen and (min-width: 1024px) {
  body.home #page .page-content section.scope .items .item {
    scroll-snap-align: start;
  }
}
@media screen and (max-width: 1024px) {
  body.home #page .page-content section.scope .items .item {
    padding-top: 30px;
    padding-bottom: 30px;
    border-top: 1px solid #000;
  }
}
@media screen and (max-width: 1024px) {
  body.home #page .page-content section.scope .items .item:last-child {
    border-top: 1px solid #000;
  }
}
@media screen and (min-width: 1024px) {
  body.home #page .page-content section.scope .items .item p.item-title {
    margin-bottom: 34px;
  }
}
@media screen and (max-width: 1024px) {
  body.home #page .page-content section.scope .items .item p.item-title {
    font-size: 24px;
    line-height: 26px;
    letter-spacing: -0.01em;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  body.home #page .page-content section.scope .items .item p.item-title:after {
    content: "";
    display: block;
    width: 16px;
    height: 16px;
    background-image: url(../images/chevron-bottom-black.svg);
    background-position: 50% 50%;
    background-size: contain;
    background-repeat: no-repeat;
    text-indent: -9999px;
    transition: transform 0.2s ease-in;
    flex-shrink: 0;
  }
}
@media screen and (max-width: 1024px) {
  body.home #page .page-content section.scope .items .item .item-content {
    display: none;
    padding-top: 32px;
  }
}
body.home #page .page-content section.scope .items .item img {
  width: 100%;
  mix-blend-mode: multiply;
}
@media screen and (min-width: 1024px) {
  body.home #page .page-content section.scope .items .item img {
    aspect-ratio: 1;
    margin-bottom: 20px;
  }
}
@media screen and (max-width: 1024px) {
  body.home #page .page-content section.scope .items .item img {
    margin-bottom: 28px;
  }
}
@media screen and (max-width: 1024px) {
  body.home #page .page-content section.scope .items .item.is-open p.item-title:after {
    transform: rotate(180deg);
  }
}
@media screen and (min-width: 1024px) {
  body.home #page .page-content section.team {
    padding-bottom: 56px;
  }
}
@media screen and (max-width: 1024px) {
  body.home #page .page-content section.team {
    padding-bottom: 34px;
  }
}
body.home #page .page-content section.team > .grid {
  gap: 18px;
}
@media screen and (min-width: 1024px) {
  body.home #page .page-content section.team > .grid {
    grid-template-columns: minmax(0, 522px) 1fr;
  }
}
@media screen and (min-width: 1024px) {
  body.home #page .page-content section.team > .grid .team-intro {
    max-width: 411px;
  }
}
@media screen and (max-width: 1024px) {
  body.home #page .page-content section.team > .grid .team-intro {
    gap: 12px;
    padding-top: 30px;
  }
}
body.home #page .page-content section.team > .grid > img {
  width: 100%;
}
@media screen and (min-width: 1024px) {
  body.home #page .page-content section.team > .grid > img {
    max-width: 522px;
  }
}
body.home #page .page-content section.why-us > .grid .items {
  margin-bottom: 18px;
}
@media screen and (min-width: 1024px) {
  body.home #page .page-content section.why-us > .grid .items {
    column-gap: 18px;
    grid-template-columns: repeat(5, 1fr);
  }
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  body.home #page .page-content section.why-us > .grid .items {
    padding-top: 24px;
    column-gap: 10px;
    grid-template-columns: repeat(3, 1fr);
  }
}
@media screen and (max-width: 768px) {
  body.home #page .page-content section.why-us > .grid .items {
    padding-top: 24px;
    column-gap: 10px;
    grid-template-columns: repeat(2, 1fr);
  }
}
body.home #page .page-content section.why-us > .grid .items .item {
  aspect-ratio: 2;
}
@media screen and (min-width: 1024px) {
  body.home #page .page-content section.why-us > .grid .items .item:nth-child(5n) {
    display: none;
  }
}
body.home #page .page-content section.why-us > .grid .items .item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
body.home #page .page-content section.awards {
  padding-bottom: 55px;
}
body.home #page .page-content section.awards .subtitle {
  text-align: center;
  padding-top: 40px;
}
body.home #page .page-content section.awards .items-wrap {
  justify-self: center;
}
@media screen and (min-width: 1024px) {
  body.home #page .page-content section.awards .items-wrap {
    padding-top: 43px;
    max-width: 652px;
    gap: 11px;
  }
}
@media screen and (max-width: 1024px) {
  body.home #page .page-content section.awards .items-wrap {
    padding-top: 24px;
    gap: 5px;
    max-width: 420px;
  }
}
body.home #page .page-content section.awards .items-wrap:before, body.home #page .page-content section.awards .items-wrap:after {
  content: "";
  display: block;
  background-image: url(../images/awards.svg);
  background-position: 50% 50%;
  background-size: contain;
  background-repeat: no-repeat;
  flex-shrink: 0;
}
@media screen and (min-width: 1024px) {
  body.home #page .page-content section.awards .items-wrap:before, body.home #page .page-content section.awards .items-wrap:after {
    width: 35px;
    height: 76px;
  }
}
@media screen and (max-width: 1024px) {
  body.home #page .page-content section.awards .items-wrap:before, body.home #page .page-content section.awards .items-wrap:after {
    width: 22px;
    height: 48px;
  }
}
body.home #page .page-content section.awards .items-wrap:after {
  transform: scaleX(-1);
}
@media screen and (min-width: 1024px) {
  body.home #page .page-content section.awards .items {
    column-gap: 38px;
    row-gap: 10px;
  }
}
@media screen and (max-width: 1024px) {
  body.home #page .page-content section.awards .items {
    column-gap: 16px;
    row-gap: 5px;
  }
}
@media screen and (max-width: 1024px) {
  body.home #page .page-content section.awards .items p {
    font-size: 12px;
    line-height: 16px;
  }
}
/* ------------------------------ */
/*********** Page: Work ***********/
/* ------------------------------ */
body.post-type-archive-project {
  /*
  &.nav-toggled {
    #primary {
      .site-main {
        & > .page-content {
          .search-filter-query {
            background-color: $pink;
          }

          .search-filter-query-posts {
            border-top-color: transparent;

            .item {
              img {
                mix-blend-mode: multiply;
              }
              
              &.contact {
                .item-title {
                  &:after {
                    mix-blend-mode: multiply;
                  }
                }
              }
            }
          }
        }
      }
    }

    footer.site-footer {
      & > .flex {
        .footer-tagline {
          color: $pink;
        }

        .footer-emails,
        .footer-social {
          .email,
          .social {
            p,
            a {
              color: $pink;
            }
          }
        }
      }

      .site-branding {
        p,
        a {
          color: $pink;
        }
      }
    }
  }
  */
}
body.post-type-archive-project #page .site-main > .page-content {
  padding-left: 0;
  padding-right: 0;
}
@media screen and (max-width: 1024px) {
  body.post-type-archive-project #page .site-main > .page-content .page-title h1 {
    font-size: 50px;
    line-height: 51px;
  }
}
body.post-type-archive-project #page .site-main > .page-content .work-filters .search-filter-component-combobox-base {
  border: 0;
  border-radius: 0;
  padding: 0 18px;
  background-color: transparent;
}
@media screen and (max-width: 1024px) {
  body.post-type-archive-project #page .site-main > .page-content .work-filters .search-filter-component-combobox-base {
    padding: 0 12px;
  }
}
body.post-type-archive-project #page .site-main > .page-content .work-filters .search-filter-component-combobox-base .search-filter-component-combobox__selection, body.post-type-archive-project #page .site-main > .page-content .work-filters .search-filter-component-combobox-base .search-filter-component-combobox__selection-placeholder {
  color: #000 !important;
}
body.post-type-archive-project #page .site-main > .page-content .work-filters .search-filter-component-combobox-base .search-filter-component-combobox__selection.has-mf-label, body.post-type-archive-project #page .site-main > .page-content .work-filters .search-filter-component-combobox-base .search-filter-component-combobox__selection-placeholder.has-mf-label {
  color: #000 !important;
  position: relative;
}
@media screen and (max-width: 768px) {
  body.post-type-archive-project #page .site-main > .page-content .work-filters .search-filter-component-combobox-base .search-filter-component-combobox__selection.has-mf-label, body.post-type-archive-project #page .site-main > .page-content .work-filters .search-filter-component-combobox-base .search-filter-component-combobox__selection-placeholder.has-mf-label {
    font-size: 14px;
    line-height: 18px;
  }
}
body.post-type-archive-project #page .site-main > .page-content .work-filters .search-filter-component-combobox-base .search-filter-component-combobox__selection.has-mf-label .search-filter-component-combobox__selection-item, body.post-type-archive-project #page .site-main > .page-content .work-filters .search-filter-component-combobox-base .search-filter-component-combobox__selection.has-mf-label .search-filter-component-combobox__selection-placeholder, body.post-type-archive-project #page .site-main > .page-content .work-filters .search-filter-component-combobox-base .search-filter-component-combobox__selection.has-mf-label .search-filter-component-combobox__selection-label, body.post-type-archive-project #page .site-main > .page-content .work-filters .search-filter-component-combobox-base .search-filter-component-combobox__selection.has-mf-label .search-filter-component-combobox__selection-count, body.post-type-archive-project #page .site-main > .page-content .work-filters .search-filter-component-combobox-base .search-filter-component-combobox__selection.has-mf-label .search-filter-component-combobox__selection-remove, body.post-type-archive-project #page .site-main > .page-content .work-filters .search-filter-component-combobox-base .search-filter-component-combobox__selection-placeholder.has-mf-label .search-filter-component-combobox__selection-item, body.post-type-archive-project #page .site-main > .page-content .work-filters .search-filter-component-combobox-base .search-filter-component-combobox__selection-placeholder.has-mf-label .search-filter-component-combobox__selection-placeholder, body.post-type-archive-project #page .site-main > .page-content .work-filters .search-filter-component-combobox-base .search-filter-component-combobox__selection-placeholder.has-mf-label .search-filter-component-combobox__selection-label, body.post-type-archive-project #page .site-main > .page-content .work-filters .search-filter-component-combobox-base .search-filter-component-combobox__selection-placeholder.has-mf-label .search-filter-component-combobox__selection-count, body.post-type-archive-project #page .site-main > .page-content .work-filters .search-filter-component-combobox-base .search-filter-component-combobox__selection-placeholder.has-mf-label .search-filter-component-combobox__selection-remove {
  position: absolute !important;
  opacity: 0 !important;
  pointer-events: none !important;
}
body.post-type-archive-project #page .site-main > .page-content .work-filters .search-filter-component-combobox-base .search-filter-component-combobox__selection .mf-selection-label, body.post-type-archive-project #page .site-main > .page-content .work-filters .search-filter-component-combobox-base .search-filter-component-combobox__selection-placeholder .mf-selection-label {
  position: relative;
  display: inline-block;
  color: #000;
  white-space: nowrap;
  pointer-events: none;
  z-index: 2;
}
body.post-type-archive-project #page .site-main > .page-content .work-filters .search-filter-component-combobox-base .search-filter-component-combobox__input-divider {
  display: none;
}
body.post-type-archive-project #page .site-main > .page-content .work-filters .search-filter-component-combobox-base .search-filter-component-combobox__actions, body.post-type-archive-project #page .site-main > .page-content .work-filters .search-filter-component-combobox-base input {
  color: #000 !important;
  font-size: 20px;
  line-height: 22px;
  font-weight: 900;
  padding: 0;
}
body.post-type-archive-project #page .site-main > .page-content .work-filters .search-filter-component-combobox-base .search-filter-component-combobox__actions::placeholder, body.post-type-archive-project #page .site-main > .page-content .work-filters .search-filter-component-combobox-base input::placeholder {
  color: #000 !important;
  opacity: 1;
}
body.post-type-archive-project #page .site-main > .page-content .work-filters .search-filter-component-combobox-base .search-filter-component-combobox__clear-selection {
  display: none !important;
}
body.post-type-archive-project #page .site-main > .page-content .work-filters .search-filter-component-combobox-base .search-filter-component-combobox__listbox-toggle:before {
  display: none;
}
body.post-type-archive-project #page .site-main > .page-content .work-filters .search-filter-component-combobox-base .search-filter-component-combobox__listbox-toggle svg {
  fill: #000 !important;
  color: #000 !important;
}
body.post-type-archive-project #page .site-main > .page-content .work-filters .search-filter-component-combobox-base .search-filter-icon {
  padding: 0;
}
body.post-type-archive-project #page .site-main > .page-content .work-filters .search-filter-field {
  cursor: pointer;
}
body.post-type-archive-project #page .site-main > .page-content .work-filters .search-filter-field .search-filter-component-combobox-base--listbox-visible .search-filter-component-combobox__selection {
  text-decoration: underline;
}
body.post-type-archive-project #page .site-main > .page-content .work-filters .search-filter-field[data-search-filter-id="1"] .search-filter-component-combobox-base.search-filter-component-combobox-base--listbox-visible {
  background-color: #FFDF3D;
}
body.post-type-archive-project #page .site-main > .page-content .work-filters .search-filter-field[data-search-filter-id="2"] .search-filter-component-combobox-base.search-filter-component-combobox-base--listbox-visible {
  background-color: #FF694F;
}
body.post-type-archive-project #page .site-main > .page-content .search-filter-query-posts {
  padding-top: 18px;
  border-top: 1px solid #000;
}
@media screen and (min-width: 1024px) {
  body.post-type-archive-project #page .site-main > .page-content .search-filter-query-posts {
    column-gap: 18px;
    grid-template-columns: repeat(3, 1fr);
    padding-bottom: 10px;
  }
}
@media screen and (max-width: 1024px) {
  body.post-type-archive-project #page .site-main > .page-content .search-filter-query-posts {
    gap: 10px;
    padding-bottom: 35px;
  }
}
@media screen and (min-width: 1024px) {
  body.post-type-archive-project #page .site-main > .page-content .search-filter-query-posts .separator {
    grid-column: 1 / -1;
    height: 1px;
    background-color: #000;
    margin-bottom: 18px;
  }
}
@media screen and (max-width: 1024px) {
  body.post-type-archive-project #page .site-main > .page-content .search-filter-query-posts .separator {
    display: none;
  }
}
@media screen and (min-width: 1024px) {
  body.post-type-archive-project #page .site-main > .page-content .search-filter-query-posts .item {
    padding-bottom: 8px;
  }
}
@media screen and (max-width: 1024px) {
  body.post-type-archive-project #page .site-main > .page-content .search-filter-query-posts .item {
    padding-bottom: 28px;
    border-bottom: 1px solid #000;
  }
}
body.post-type-archive-project #page .site-main > .page-content .search-filter-query-posts .item a {
  text-decoration: none;
}
body.post-type-archive-project #page .site-main > .page-content .search-filter-query-posts .item img {
  width: 100%;
  backface-visibility: hidden;
  transform: translateZ(0);
  will-change: filter;
}
@media screen and (min-width: 1024px) {
  body.post-type-archive-project #page .site-main > .page-content .search-filter-query-posts .item img {
    margin-bottom: 12px;
  }
}
@media screen and (max-width: 1024px) {
  body.post-type-archive-project #page .site-main > .page-content .search-filter-query-posts .item img {
    margin-bottom: 6px;
  }
}
body.post-type-archive-project #page .site-main > .page-content .search-filter-query-posts .item.contact .item-title {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}
body.post-type-archive-project #page .site-main > .page-content .search-filter-query-posts .item.contact .item-title:after {
  content: "";
  display: block;
  width: 88px;
  height: 27px;
  margin-top: 8px;
  background-image: url(../images/project-contact.gif);
  background-position: 50% 50%;
  background-size: contain;
  background-repeat: no-repeat;
}
body.post-type-archive-project #page .site-main > .page-content .search-filter-query-wrap.no-results {
  padding-top: 40px;
  padding-bottom: 40px;
}
/* ----------------------------------- */
/*********** Single: Project ***********/
/* ----------------------------------- */
body.single-project:not(.nav-toggled) #page header.site-header div.site-branding a {
  color: var(--highlight-color);
}
body.single-project:not(.nav-toggled) #page header.site-header .menu-toggle span {
  background: var(--highlight-color);
}
body.single-project #page .page-content section.hero {
  background-color: #000;
}
@media screen and (min-width: 1024px) {
  body.single-project #page .page-content section.hero {
    margin-left: -18px;
    margin-right: -18px;
    margin-bottom: 4px;
    padding: 109px 18px 18px 18px;
  }
}
@media screen and (max-width: 1024px) {
  body.single-project #page .page-content section.hero {
    margin-left: -10px;
    margin-right: -10px;
    margin-bottom: 60px;
    padding: 78px 10px 15px 10px;
  }
}
@media screen and (min-width: 1180px) {
  body.single-project #page .page-content section.hero > .grid {
    grid-template-columns: minmax(0, 730px) minmax(0, 687px);
  }
}
@media screen and (min-width: 1024px) and (max-width: 1180px) {
  body.single-project #page .page-content section.hero > .grid {
    grid-template-columns: minmax(0, 730px) minmax(0, 450px);
  }
}
@media screen and (min-width: 1024px) {
  body.single-project #page .page-content section.hero > .grid {
    gap: 60px;
    justify-content: space-between;
  }
}
@media screen and (max-width: 1024px) {
  body.single-project #page .page-content section.hero > .grid {
    gap: 20px;
    direction: ltr;
  }
}
@media screen and (min-width: 1024px) {
  body.single-project #page .page-content section.hero > .grid .hero-text {
    padding-bottom: 20px;
  }
}
@media screen and (max-width: 1024px) {
  body.single-project #page .page-content section.hero > .grid .hero-text {
    order: 2;
  }
}
body.single-project #page .page-content section.hero > .grid .hero-text h1 {
  color: var(--highlight-color);
}
@media screen and (max-width: 1024px) {
  body.single-project #page .page-content section.hero > .grid .hero-text h1 {
    display: none;
  }
}
body.single-project #page .page-content section.hero > .grid .hero-text .hero-content {
  color: var(--highlight-color);
}
@media screen and (min-width: 1024px) {
  body.single-project #page .page-content section.hero > .grid .hero-text .hero-content {
    padding-right: 40px;
    padding-top: 20px;
  }
}
@media screen and (max-width: 1024px) {
  body.single-project #page .page-content section.hero > .grid .hero-text .hero-content h2 {
    font-size: 24px;
    line-height: 26px;
  }
}
@media screen and (min-width: 1024px) {
  body.single-project #page .page-content section.hero > .grid .hero-text .hero-content h2:has(+ *) {
    margin-bottom: 40px;
  }
}
@media screen and (max-width: 1024px) {
  body.single-project #page .page-content section.hero > .grid .hero-text .hero-content h2:has(+ *) {
    margin-bottom: 20px;
  }
}
body.single-project #page .page-content section.hero > .grid .hero-text .hero-content p:not(:last-of-type) {
  margin-bottom: 22px;
}
body.single-project #page .page-content section.hero > .grid .hero-text .hero-metadata {
  gap: 10px;
  grid-template-columns: 200px 1fr;
  margin-top: 40px;
}
body.single-project #page .page-content section.hero > .grid .hero-text .hero-metadata .meta strong {
  display: block;
  margin-bottom: 12px;
  font-size: 16px;
}
body.single-project #page .page-content section.hero > .grid .hero-text .hero-metadata .meta p {
  font-size: 14px;
  font-family: "Geist Mono", monospace;
  font-weight: 400;
  font-optical-sizing: auto;
  font-style: normal;
}
@media screen and (max-width: 1024px) {
  body.single-project #page .page-content section.hero > .grid .hero-image {
    order: 1;
  }
}
body.single-project #page .page-content section.hero > .grid .hero-image h1 {
  display: none;
  color: var(--highlight-color);
}
@media screen and (max-width: 1024px) {
  body.single-project #page .page-content section.hero > .grid .hero-image h1 {
    display: block;
    margin-bottom: 12px;
  }
}
body.single-project #page .page-content section.hero > .grid .hero-image img {
  width: 100%;
}
@media screen and (min-width: 1024px) {
  body.single-project #page .page-content section.hero > .grid .hero-image img {
    height: 100%;
    object-fit: cover;
  }
}
body.single-project #page .page-content section.hero + section.layout {
  margin-bottom: 40px;
}
@media screen and (min-width: 1024px) {
  body.single-project #page .page-content section.layout {
    padding-top: 10px;
    padding-bottom: 10px;
  }
}
@media screen and (max-width: 1024px) {
  body.single-project #page .page-content section.layout {
    padding-top: 5px;
    padding-bottom: 5px;
  }
}
@media screen and (min-width: 1024px) {
  body.single-project #page .page-content section.layout.layout-columns .layout-columns__grid.cols-2 {
    gap: 18px;
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 1024px) {
  body.single-project #page .page-content section.layout.layout-columns .layout-columns__grid.cols-2 {
    gap: 50px;
  }
}
@media screen and (min-width: 1024px) {
  body.single-project #page .page-content section.layout.layout-columns .layout-columns__grid.cols-2 .layout-columns__col.col-2 .block-text {
    max-width: 520px;
  }
}
@media screen and (min-width: 1024px) {
  body.single-project #page .page-content section.layout.layout-columns .layout-columns__grid.cols-2.col-1-empty .col-2 .block.block-text {
    max-width: none;
  }
}
@media screen and (min-width: 1024px) {
  body.single-project #page .page-content section.layout.layout-columns .layout-columns__grid.cols-3 {
    gap: 18px;
    grid-template-columns: repeat(3, 1fr);
  }
}
@media screen and (max-width: 1024px) {
  body.single-project #page .page-content section.layout.layout-columns .layout-columns__grid.cols-3 {
    gap: 24px;
  }
}
@media screen and (min-width: 1024px) {
  body.single-project #page .page-content section.layout.layout-columns .layout-columns__grid.cols-3 .block-text {
    padding-bottom: 90px;
  }
  body.single-project #page .page-content section.layout.layout-columns .layout-columns__grid.cols-3 .block-text:first-child {
    padding-top: 16px;
  }
}
@media screen and (max-width: 1024px) {
  body.single-project #page .page-content section.layout.layout-columns .layout-columns__grid.cols-3 .block-text:last-child {
    padding-bottom: 14px;
  }
}
body.single-project #page .page-content section.layout.layout-columns .layout-columns__grid .layout-columns__col.col-1 {
  display: flex;
  flex-wrap: wrap;
  align-content: flex-start;
}
@media screen and (min-width: 1024px) {
  body.single-project #page .page-content section.layout.layout-columns .layout-columns__grid .layout-columns__col.col-1 section.block.block-video:has(+ section:not(.block-video):not(.block-image)), body.single-project #page .page-content section.layout.layout-columns .layout-columns__grid .layout-columns__col.col-1 section.block.block-image:has(+ section:not(.block-video):not(.block-image)) {
    margin-bottom: 45px;
  }
}
@media screen and (max-width: 1024px) {
  body.single-project #page .page-content section.layout.layout-columns .layout-columns__grid .layout-columns__col.col-1 section.block.block-video:has(+ section:not(.block-video):not(.block-image)), body.single-project #page .page-content section.layout.layout-columns .layout-columns__grid .layout-columns__col.col-1 section.block.block-image:has(+ section:not(.block-video):not(.block-image)) {
    margin-bottom: 95px;
  }
}
body.single-project #page .page-content section.layout.layout-columns .layout-columns__grid .layout-columns__col.col-1 section.block.block-video:has(+ section.block-video), body.single-project #page .page-content section.layout.layout-columns .layout-columns__grid .layout-columns__col.col-1 section.block.block-video:has(+ section.block-image), body.single-project #page .page-content section.layout.layout-columns .layout-columns__grid .layout-columns__col.col-1 section.block.block-image:has(+ section.block-video), body.single-project #page .page-content section.layout.layout-columns .layout-columns__grid .layout-columns__col.col-1 section.block.block-image:has(+ section.block-image) {
  width: 50%;
}
body.single-project #page .page-content section.layout.layout-columns .layout-columns__grid .layout-columns__col.col-1 section.block.block-video:has(+ section.block-video) + .block-video, body.single-project #page .page-content section.layout.layout-columns .layout-columns__grid .layout-columns__col.col-1 section.block.block-video:has(+ section.block-video) + .block-image, body.single-project #page .page-content section.layout.layout-columns .layout-columns__grid .layout-columns__col.col-1 section.block.block-video:has(+ section.block-image) + .block-video, body.single-project #page .page-content section.layout.layout-columns .layout-columns__grid .layout-columns__col.col-1 section.block.block-video:has(+ section.block-image) + .block-image, body.single-project #page .page-content section.layout.layout-columns .layout-columns__grid .layout-columns__col.col-1 section.block.block-image:has(+ section.block-video) + .block-video, body.single-project #page .page-content section.layout.layout-columns .layout-columns__grid .layout-columns__col.col-1 section.block.block-image:has(+ section.block-video) + .block-image, body.single-project #page .page-content section.layout.layout-columns .layout-columns__grid .layout-columns__col.col-1 section.block.block-image:has(+ section.block-image) + .block-video, body.single-project #page .page-content section.layout.layout-columns .layout-columns__grid .layout-columns__col.col-1 section.block.block-image:has(+ section.block-image) + .block-image {
  width: 50%;
  margin-bottom: 0;
}
@media screen and (min-width: 1024px) {
  body.single-project #page .page-content section.layout.layout-columns .layout-columns__grid .layout-columns__col.col-1 section.block.block-video:has(+ section.block-video) + section.block:not(.block-video):not(.block-image), body.single-project #page .page-content section.layout.layout-columns .layout-columns__grid .layout-columns__col.col-1 section.block.block-video:has(+ section.block-image) + section.block:not(.block-video):not(.block-image), body.single-project #page .page-content section.layout.layout-columns .layout-columns__grid .layout-columns__col.col-1 section.block.block-image:has(+ section.block-video) + section.block:not(.block-video):not(.block-image), body.single-project #page .page-content section.layout.layout-columns .layout-columns__grid .layout-columns__col.col-1 section.block.block-image:has(+ section.block-image) + section.block:not(.block-video):not(.block-image) {
    padding-top: 45px;
  }
}
@media screen and (max-width: 1024px) {
  body.single-project #page .page-content section.layout.layout-columns .layout-columns__grid .layout-columns__col.col-1 section.block.block-video:has(+ section.block-video) + section.block:not(.block-video):not(.block-image), body.single-project #page .page-content section.layout.layout-columns .layout-columns__grid .layout-columns__col.col-1 section.block.block-video:has(+ section.block-image) + section.block:not(.block-video):not(.block-image), body.single-project #page .page-content section.layout.layout-columns .layout-columns__grid .layout-columns__col.col-1 section.block.block-image:has(+ section.block-video) + section.block:not(.block-video):not(.block-image), body.single-project #page .page-content section.layout.layout-columns .layout-columns__grid .layout-columns__col.col-1 section.block.block-image:has(+ section.block-image) + section.block:not(.block-video):not(.block-image) {
    padding-top: 95px;
  }
}
body.single-project #page .page-content section.layout .block-video {
  background-color: var(--highlight-color);
}
body.single-project #page .page-content section.shuttle {
  position: relative;
}
@media screen and (min-width: 1024px) {
  body.single-project #page .page-content section.shuttle {
    margin-left: -18px;
    margin-right: -18px;
    margin-top: 8px;
    padding: 18px;
  }
}
@media screen and (max-width: 1024px) {
  body.single-project #page .page-content section.shuttle {
    margin-left: -10px;
    margin-right: -10px;
    margin-top: 5px;
    padding: 12px 10px;
  }
}
body.single-project #page .page-content section.shuttle .shuttle-link {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
@media screen and (min-width: 1024px) {
  body.single-project #page .page-content section.shuttle > .grid {
    gap: 60px;
    grid-template-columns: minmax(0, 874px) minmax(250px, 563px);
    justify-content: space-between;
  }
}
@media screen and (max-width: 1024px) {
  body.single-project #page .page-content section.shuttle > .grid {
    gap: 13px;
  }
}
@media screen and (min-width: 1024px) {
  body.single-project #page .page-content section.shuttle > .grid .shuttle-text {
    padding-bottom: 6px;
  }
}
@media screen and (min-width: 1024px) {
  body.single-project #page .page-content section.shuttle > .grid .shuttle-text .section-title {
    margin-bottom: 55px;
  }
}
@media screen and (max-width: 1024px) {
  body.single-project #page .page-content section.shuttle > .grid .shuttle-text .section-title {
    margin-bottom: 25px;
  }
}
@media screen and (max-width: 1024px) {
  body.single-project #page .page-content section.shuttle > .grid .shuttle-text h1 {
    font-size: 24px;
    line-height: 26px;
  }
}
body.single-project #page .page-content section.shuttle > .grid .shuttle-text .shuttle-metadata {
  gap: 10px;
  grid-template-columns: 200px 1fr;
}
@media screen and (min-width: 1024px) {
  body.single-project #page .page-content section.shuttle > .grid .shuttle-text .shuttle-metadata {
    margin-top: auto;
    padding-top: 70px;
  }
}
@media screen and (max-width: 1024px) {
  body.single-project #page .page-content section.shuttle > .grid .shuttle-text .shuttle-metadata {
    display: none;
  }
}
body.single-project #page .page-content section.shuttle > .grid .shuttle-text .shuttle-metadata .meta strong {
  display: block;
  margin-bottom: 12px;
  font-size: 16px;
}
body.single-project #page .page-content section.shuttle > .grid .shuttle-text .shuttle-metadata .meta p {
  font-size: 14px;
  font-family: "Geist Mono", monospace;
  font-weight: 400;
  font-optical-sizing: auto;
  font-style: normal;
}
body.single-project #page .page-content section.shuttle > .grid .shuttle-image img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
}
/* ---------------------------------------------------- */
/*********** Page: About / Services / Contact ***********/
/* ---------------------------------------------------- */
@media screen and (max-width: 1024px) {
  body.page-template-page-about #page header.site-header, body.page-template-page-services #page header.site-header, body.page-template-page-contact #page header.site-header {
    background-color: var(--highlight-color);
  }
}
@media screen and (max-width: 1024px) {
  body.page-template-page-about #page #primary, body.page-template-page-services #page #primary, body.page-template-page-contact #page #primary {
    padding-top: 0;
  }
}
@media screen and (max-width: 1024px) {
  body.page-template-page-about #page .page-content, body.page-template-page-services #page .page-content, body.page-template-page-contact #page .page-content {
    display: flex;
    flex-direction: column;
  }
}
@media screen and (max-width: 1024px) {
  body.page-template-page-about #page .page-content .page-title, body.page-template-page-services #page .page-content .page-title, body.page-template-page-contact #page .page-content .page-title {
    background-color: var(--highlight-color);
    margin-left: -10px;
    margin-right: -10px;
    padding-left: 10px;
    padding-right: 10px;
    padding-top: 78px;
  }
}
@media screen and (max-width: 1024px) {
  body.page-template-page-about #page .page-content .page-title h1, body.page-template-page-services #page .page-content .page-title h1, body.page-template-page-contact #page .page-content .page-title h1 {
    font-size: 50px;
    line-height: 1;
  }
}
body.page-template-page-about #page .page-content section.hero, body.page-template-page-services #page .page-content section.hero, body.page-template-page-contact #page .page-content section.hero {
  background-color: var(--highlight-color);
}
@media screen and (min-width: 1024px) {
  body.page-template-page-about #page .page-content section.hero, body.page-template-page-services #page .page-content section.hero, body.page-template-page-contact #page .page-content section.hero {
    margin-left: -18px;
    margin-right: -18px;
    padding: 13px 18px;
  }
}
@media screen and (max-width: 1024px) {
  body.page-template-page-about #page .page-content section.hero, body.page-template-page-services #page .page-content section.hero, body.page-template-page-contact #page .page-content section.hero {
    margin-left: -10px;
    margin-right: -10px;
    padding: 13px 10px;
  }
}
@media screen and (min-width: 1024px) {
  body.page-template-page-about #page .page-content section.hero > .grid, body.page-template-page-services #page .page-content section.hero > .grid, body.page-template-page-contact #page .page-content section.hero > .grid {
    gap: 18px;
    grid-template-columns: minmax(0, 522px) 1fr;
  }
}
@media screen and (max-width: 1024px) {
  body.page-template-page-about #page .page-content section.hero > .grid, body.page-template-page-services #page .page-content section.hero > .grid, body.page-template-page-contact #page .page-content section.hero > .grid {
    gap: 14px;
  }
}
body.page-template-page-about #page .page-content section.hero > .grid .hero-text h2.hero-subtitle, body.page-template-page-services #page .page-content section.hero > .grid .hero-text h2.hero-subtitle, body.page-template-page-contact #page .page-content section.hero > .grid .hero-text h2.hero-subtitle {
  padding-bottom: 25px;
}
@media screen and (min-width: 1024px) {
  body.page-template-page-about #page .page-content section.hero > .grid .hero-text h2.hero-subtitle, body.page-template-page-services #page .page-content section.hero > .grid .hero-text h2.hero-subtitle, body.page-template-page-contact #page .page-content section.hero > .grid .hero-text h2.hero-subtitle {
    max-width: 810px;
    font-size: 40px;
    line-height: 42px;
  }
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  body.page-template-page-about #page .page-content section.hero > .grid .hero-text h2.hero-subtitle, body.page-template-page-services #page .page-content section.hero > .grid .hero-text h2.hero-subtitle, body.page-template-page-contact #page .page-content section.hero > .grid .hero-text h2.hero-subtitle {
    font-size: 30px;
    line-height: 31px;
  }
}
@media screen and (max-width: 768px) {
  body.page-template-page-about #page .page-content section.hero > .grid .hero-text h2.hero-subtitle, body.page-template-page-services #page .page-content section.hero > .grid .hero-text h2.hero-subtitle, body.page-template-page-contact #page .page-content section.hero > .grid .hero-text h2.hero-subtitle {
    font-size: 25px;
    line-height: 26px;
  }
}
@media screen and (max-width: 1024px) {
  body.page-template-page-about #page .page-content section.hero > .grid .hero-text .hero-content, body.page-template-page-services #page .page-content section.hero > .grid .hero-text .hero-content, body.page-template-page-contact #page .page-content section.hero > .grid .hero-text .hero-content {
    margin-top: 25px;
  }
}
@media screen and (min-width: 1024px) {
  body.page-template-page-about #page .page-content section.hero > .grid .hero-text .hero-content p, body.page-template-page-services #page .page-content section.hero > .grid .hero-text .hero-content p, body.page-template-page-contact #page .page-content section.hero > .grid .hero-text .hero-content p {
    max-width: 500px;
  }
}
body.page-template-page-about #page .page-content section.hero > .grid .hero-text .hero-content p:not(:last-of-type), body.page-template-page-services #page .page-content section.hero > .grid .hero-text .hero-content p:not(:last-of-type), body.page-template-page-contact #page .page-content section.hero > .grid .hero-text .hero-content p:not(:last-of-type) {
  margin-bottom: 22px;
}
@media screen and (min-width: 1024px) {
  body.page-template-page-about #page .page-content section.hero > .grid .hero-image, body.page-template-page-services #page .page-content section.hero > .grid .hero-image, body.page-template-page-contact #page .page-content section.hero > .grid .hero-image {
    padding-top: 5px;
    padding-bottom: 5px;
  }
}
body.page-template-page-about #page .page-content section.hero > .grid .hero-image img, body.page-template-page-services #page .page-content section.hero > .grid .hero-image img, body.page-template-page-contact #page .page-content section.hero > .grid .hero-image img {
  width: 100%;
  mix-blend-mode: multiply;
}
@media screen and (min-width: 1024px) {
  body.page-template-page-about #page .page-content section.hero > .grid .hero-image img, body.page-template-page-services #page .page-content section.hero > .grid .hero-image img, body.page-template-page-contact #page .page-content section.hero > .grid .hero-image img {
    height: 100%;
    object-fit: cover;
  }
}
body.page-template-page-about #page .page-content section.hero:has(+ section), body.page-template-page-services #page .page-content section.hero:has(+ section), body.page-template-page-contact #page .page-content section.hero:has(+ section) {
  margin-bottom: 20px;
}
@media screen and (min-width: 1024px) {
  body.page-template-page-about #page .page-content section.principles, body.page-template-page-services #page .page-content section.principles, body.page-template-page-contact #page .page-content section.principles {
    padding-bottom: 48px;
  }
}
@media screen and (max-width: 1024px) {
  body.page-template-page-about #page .page-content section.principles, body.page-template-page-services #page .page-content section.principles, body.page-template-page-contact #page .page-content section.principles {
    padding-bottom: 45px;
  }
}
@media screen and (max-width: 1024px) {
  body.page-template-page-about #page .page-content section.principles p.section-title, body.page-template-page-services #page .page-content section.principles p.section-title, body.page-template-page-contact #page .page-content section.principles p.section-title {
    padding-bottom: 0;
    border-bottom: 0;
  }
}
body.page-template-page-about #page .page-content section.principles > .grid, body.page-template-page-services #page .page-content section.principles > .grid, body.page-template-page-contact #page .page-content section.principles > .grid {
  gap: 18px;
}
@media screen and (min-width: 1024px) {
  body.page-template-page-about #page .page-content section.principles > .grid, body.page-template-page-services #page .page-content section.principles > .grid, body.page-template-page-contact #page .page-content section.principles > .grid {
    grid-template-columns: minmax(0, 522px) 1fr;
  }
}
@media screen and (min-width: 1024px) {
  body.page-template-page-about #page .page-content section.principles > .grid .items, body.page-template-page-services #page .page-content section.principles > .grid .items, body.page-template-page-contact #page .page-content section.principles > .grid .items {
    grid-column: 2;
    gap: 18px;
    grid-auto-flow: column;
    grid-auto-columns: 314px;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  body.page-template-page-about #page .page-content section.principles > .grid .items::-webkit-scrollbar, body.page-template-page-services #page .page-content section.principles > .grid .items::-webkit-scrollbar, body.page-template-page-contact #page .page-content section.principles > .grid .items::-webkit-scrollbar {
    display: none;
  }
}
@media screen and (min-width: 1024px) {
  body.page-template-page-about #page .page-content section.principles > .grid .items .item, body.page-template-page-services #page .page-content section.principles > .grid .items .item, body.page-template-page-contact #page .page-content section.principles > .grid .items .item {
    scroll-snap-align: start;
  }
}
@media screen and (max-width: 1024px) {
  body.page-template-page-about #page .page-content section.principles > .grid .items .item, body.page-template-page-services #page .page-content section.principles > .grid .items .item, body.page-template-page-contact #page .page-content section.principles > .grid .items .item {
    padding-top: 30px;
    padding-bottom: 30px;
    border-top: 1px solid #000;
  }
}
@media screen and (max-width: 1024px) {
  body.page-template-page-about #page .page-content section.principles > .grid .items .item:last-child, body.page-template-page-services #page .page-content section.principles > .grid .items .item:last-child, body.page-template-page-contact #page .page-content section.principles > .grid .items .item:last-child {
    border-top: 1px solid #000;
  }
}
@media screen and (min-width: 1024px) {
  body.page-template-page-about #page .page-content section.principles > .grid .items .item p.item-title, body.page-template-page-services #page .page-content section.principles > .grid .items .item p.item-title, body.page-template-page-contact #page .page-content section.principles > .grid .items .item p.item-title {
    padding-bottom: 18px;
    border-bottom: 1px solid #000;
    font-size: 26px;
  }
}
@media screen and (max-width: 1024px) {
  body.page-template-page-about #page .page-content section.principles > .grid .items .item p.item-title, body.page-template-page-services #page .page-content section.principles > .grid .items .item p.item-title, body.page-template-page-contact #page .page-content section.principles > .grid .items .item p.item-title {
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  body.page-template-page-about #page .page-content section.principles > .grid .items .item p.item-title:after, body.page-template-page-services #page .page-content section.principles > .grid .items .item p.item-title:after, body.page-template-page-contact #page .page-content section.principles > .grid .items .item p.item-title:after {
    content: "";
    display: block;
    width: 16px;
    height: 16px;
    background-image: url(../images/chevron-bottom-black.svg);
    background-position: 50% 50%;
    background-size: contain;
    background-repeat: no-repeat;
    text-indent: -9999px;
    transition: transform 0.2s ease-in;
    flex-shrink: 0;
  }
}
@media screen and (max-width: 1024px) {
  body.page-template-page-about #page .page-content section.principles > .grid .items .item .item-content, body.page-template-page-services #page .page-content section.principles > .grid .items .item .item-content, body.page-template-page-contact #page .page-content section.principles > .grid .items .item .item-content {
    display: none;
    padding-top: 32px;
  }
}
body.page-template-page-about #page .page-content section.principles > .grid .items .item img, body.page-template-page-services #page .page-content section.principles > .grid .items .item img, body.page-template-page-contact #page .page-content section.principles > .grid .items .item img {
  width: 100%;
}
@media screen and (min-width: 1024px) {
  body.page-template-page-about #page .page-content section.principles > .grid .items .item img, body.page-template-page-services #page .page-content section.principles > .grid .items .item img, body.page-template-page-contact #page .page-content section.principles > .grid .items .item img {
    aspect-ratio: 1;
  }
}
@media screen and (max-width: 1024px) {
  body.page-template-page-about #page .page-content section.principles > .grid .items .item.is-open p.item-title:after, body.page-template-page-services #page .page-content section.principles > .grid .items .item.is-open p.item-title:after, body.page-template-page-contact #page .page-content section.principles > .grid .items .item.is-open p.item-title:after {
    transform: rotate(180deg);
  }
}
@media screen and (min-width: 1024px) {
  body.page-template-page-about #page .page-content section.team, body.page-template-page-services #page .page-content section.team, body.page-template-page-contact #page .page-content section.team {
    padding-bottom: 34px;
  }
}
@media screen and (max-width: 1024px) {
  body.page-template-page-about #page .page-content section.team, body.page-template-page-services #page .page-content section.team, body.page-template-page-contact #page .page-content section.team {
    padding-bottom: 30px;
  }
}
@media screen and (min-width: 1024px) {
  body.page-template-page-about #page .page-content section.team > .grid, body.page-template-page-services #page .page-content section.team > .grid, body.page-template-page-contact #page .page-content section.team > .grid {
    gap: 18px;
    grid-template-columns: minmax(0, 522px) 1fr;
  }
}
@media screen and (max-width: 1024px) {
  body.page-template-page-about #page .page-content section.team > .grid, body.page-template-page-services #page .page-content section.team > .grid, body.page-template-page-contact #page .page-content section.team > .grid {
    gap: 25px;
  }
}
@media screen and (min-width: 1024px) {
  body.page-template-page-about #page .page-content section.team > .grid .team-description, body.page-template-page-services #page .page-content section.team > .grid .team-description, body.page-template-page-contact #page .page-content section.team > .grid .team-description {
    max-width: 215px;
  }
}
body.page-template-page-about #page .page-content section.team > .grid .items, body.page-template-page-services #page .page-content section.team > .grid .items, body.page-template-page-contact #page .page-content section.team > .grid .items {
  grid-auto-flow: column;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
body.page-template-page-about #page .page-content section.team > .grid .items::-webkit-scrollbar, body.page-template-page-services #page .page-content section.team > .grid .items::-webkit-scrollbar, body.page-template-page-contact #page .page-content section.team > .grid .items::-webkit-scrollbar {
  display: none;
}
@media screen and (min-width: 1024px) {
  body.page-template-page-about #page .page-content section.team > .grid .items, body.page-template-page-services #page .page-content section.team > .grid .items, body.page-template-page-contact #page .page-content section.team > .grid .items {
    gap: 18px;
    grid-auto-columns: 356px;
  }
}
@media screen and (max-width: 1024px) {
  body.page-template-page-about #page .page-content section.team > .grid .items, body.page-template-page-services #page .page-content section.team > .grid .items, body.page-template-page-contact #page .page-content section.team > .grid .items {
    gap: 9px;
    grid-auto-columns: 245px;
    margin-left: -10px;
    margin-right: -10px;
  }
}
body.page-template-page-about #page .page-content section.team > .grid .items .item, body.page-template-page-services #page .page-content section.team > .grid .items .item, body.page-template-page-contact #page .page-content section.team > .grid .items .item {
  scroll-snap-align: start;
}
body.page-template-page-about #page .page-content section.team > .grid .items .item .item-content p.item-name, body.page-template-page-about #page .page-content section.team > .grid .items .item .item-content p.item-role, body.page-template-page-services #page .page-content section.team > .grid .items .item .item-content p.item-name, body.page-template-page-services #page .page-content section.team > .grid .items .item .item-content p.item-role, body.page-template-page-contact #page .page-content section.team > .grid .items .item .item-content p.item-name, body.page-template-page-contact #page .page-content section.team > .grid .items .item .item-content p.item-role {
  margin-bottom: 0;
}
@media screen and (min-width: 1024px) {
  body.page-template-page-about #page .page-content section.team > .grid .items .item .item-content p.item-name, body.page-template-page-about #page .page-content section.team > .grid .items .item .item-content p.item-role, body.page-template-page-services #page .page-content section.team > .grid .items .item .item-content p.item-name, body.page-template-page-services #page .page-content section.team > .grid .items .item .item-content p.item-role, body.page-template-page-contact #page .page-content section.team > .grid .items .item .item-content p.item-name, body.page-template-page-contact #page .page-content section.team > .grid .items .item .item-content p.item-role {
    font-size: 14px;
    line-height: 16px;
  }
}
@media screen and (max-width: 1024px) {
  body.page-template-page-about #page .page-content section.team > .grid .items .item .item-content p.item-name, body.page-template-page-about #page .page-content section.team > .grid .items .item .item-content p.item-role, body.page-template-page-services #page .page-content section.team > .grid .items .item .item-content p.item-name, body.page-template-page-services #page .page-content section.team > .grid .items .item .item-content p.item-role, body.page-template-page-contact #page .page-content section.team > .grid .items .item .item-content p.item-name, body.page-template-page-contact #page .page-content section.team > .grid .items .item .item-content p.item-role {
    font-size: 12px;
    line-height: 14px;
    padding-left: 10px;
  }
}
body.page-template-page-about #page .page-content section.team > .grid .items .item img, body.page-template-page-services #page .page-content section.team > .grid .items .item img, body.page-template-page-contact #page .page-content section.team > .grid .items .item img {
  width: 100%;
  margin-bottom: 10px;
}
@media screen and (min-width: 1024px) {
  body.page-template-page-about #page .page-content section.toolbox, body.page-template-page-services #page .page-content section.toolbox, body.page-template-page-contact #page .page-content section.toolbox {
    padding-bottom: 48px;
  }
}
@media screen and (max-width: 1024px) {
  body.page-template-page-about #page .page-content section.toolbox, body.page-template-page-services #page .page-content section.toolbox, body.page-template-page-contact #page .page-content section.toolbox {
    padding-bottom: 45px;
  }
}
@media screen and (max-width: 1024px) {
  body.page-template-page-about #page .page-content section.toolbox p.section-title, body.page-template-page-services #page .page-content section.toolbox p.section-title, body.page-template-page-contact #page .page-content section.toolbox p.section-title {
    padding-bottom: 0;
    border-bottom: 0;
  }
}
@media screen and (min-width: 1024px) {
  body.page-template-page-about #page .page-content section.toolbox > .grid, body.page-template-page-services #page .page-content section.toolbox > .grid, body.page-template-page-contact #page .page-content section.toolbox > .grid {
    gap: 18px;
    grid-template-columns: minmax(0, 522px) 1fr;
  }
}
@media screen and (max-width: 1024px) {
  body.page-template-page-about #page .page-content section.toolbox > .grid, body.page-template-page-services #page .page-content section.toolbox > .grid, body.page-template-page-contact #page .page-content section.toolbox > .grid {
    gap: 25px;
  }
}
@media screen and (min-width: 1024px) {
  body.page-template-page-about #page .page-content section.toolbox > .grid .toolbox-description, body.page-template-page-services #page .page-content section.toolbox > .grid .toolbox-description, body.page-template-page-contact #page .page-content section.toolbox > .grid .toolbox-description {
    max-width: 356px;
  }
}
@media screen and (min-width: 1024px) {
  body.page-template-page-about #page .page-content section.toolbox > .grid .items, body.page-template-page-services #page .page-content section.toolbox > .grid .items, body.page-template-page-contact #page .page-content section.toolbox > .grid .items {
    gap: 18px;
    grid-auto-flow: column;
    grid-auto-columns: 314px;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  body.page-template-page-about #page .page-content section.toolbox > .grid .items::-webkit-scrollbar, body.page-template-page-services #page .page-content section.toolbox > .grid .items::-webkit-scrollbar, body.page-template-page-contact #page .page-content section.toolbox > .grid .items::-webkit-scrollbar {
    display: none;
  }
}
@media screen and (min-width: 1024px) {
  body.page-template-page-about #page .page-content section.toolbox > .grid .items .item, body.page-template-page-services #page .page-content section.toolbox > .grid .items .item, body.page-template-page-contact #page .page-content section.toolbox > .grid .items .item {
    scroll-snap-align: start;
  }
}
@media screen and (max-width: 1024px) {
  body.page-template-page-about #page .page-content section.toolbox > .grid .items .item, body.page-template-page-services #page .page-content section.toolbox > .grid .items .item, body.page-template-page-contact #page .page-content section.toolbox > .grid .items .item {
    padding-top: 30px;
    padding-bottom: 30px;
    border-top: 1px solid #000;
  }
}
@media screen and (max-width: 1024px) {
  body.page-template-page-about #page .page-content section.toolbox > .grid .items .item:last-child, body.page-template-page-services #page .page-content section.toolbox > .grid .items .item:last-child, body.page-template-page-contact #page .page-content section.toolbox > .grid .items .item:last-child {
    border-top: 1px solid #000;
  }
}
@media screen and (min-width: 1024px) {
  body.page-template-page-about #page .page-content section.toolbox > .grid .items .item p.item-title, body.page-template-page-services #page .page-content section.toolbox > .grid .items .item p.item-title, body.page-template-page-contact #page .page-content section.toolbox > .grid .items .item p.item-title {
    margin-bottom: 20px;
    min-height: 44px;
    display: flex;
    align-content: center;
  }
}
@media screen and (max-width: 1024px) {
  body.page-template-page-about #page .page-content section.toolbox > .grid .items .item p.item-title, body.page-template-page-services #page .page-content section.toolbox > .grid .items .item p.item-title, body.page-template-page-contact #page .page-content section.toolbox > .grid .items .item p.item-title {
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  body.page-template-page-about #page .page-content section.toolbox > .grid .items .item p.item-title:after, body.page-template-page-services #page .page-content section.toolbox > .grid .items .item p.item-title:after, body.page-template-page-contact #page .page-content section.toolbox > .grid .items .item p.item-title:after {
    content: "";
    display: block;
    width: 16px;
    height: 16px;
    background-image: url(../images/chevron-bottom-black.svg);
    background-position: 50% 50%;
    background-size: contain;
    background-repeat: no-repeat;
    text-indent: -9999px;
    transition: transform 0.2s ease-in;
    flex-shrink: 0;
  }
}
@media screen and (max-width: 1024px) {
  body.page-template-page-about #page .page-content section.toolbox > .grid .items .item .item-content, body.page-template-page-services #page .page-content section.toolbox > .grid .items .item .item-content, body.page-template-page-contact #page .page-content section.toolbox > .grid .items .item .item-content {
    display: none;
    padding-top: 32px;
  }
}
body.page-template-page-about #page .page-content section.toolbox > .grid .items .item img, body.page-template-page-services #page .page-content section.toolbox > .grid .items .item img, body.page-template-page-contact #page .page-content section.toolbox > .grid .items .item img {
  width: 100%;
}
@media screen and (min-width: 1024px) {
  body.page-template-page-about #page .page-content section.toolbox > .grid .items .item img, body.page-template-page-services #page .page-content section.toolbox > .grid .items .item img, body.page-template-page-contact #page .page-content section.toolbox > .grid .items .item img {
    aspect-ratio: 1;
    margin-bottom: 10px;
  }
}
@media screen and (max-width: 1024px) {
  body.page-template-page-about #page .page-content section.toolbox > .grid .items .item img, body.page-template-page-services #page .page-content section.toolbox > .grid .items .item img, body.page-template-page-contact #page .page-content section.toolbox > .grid .items .item img {
    margin-bottom: 10px;
  }
}
@media screen and (max-width: 1024px) {
  body.page-template-page-about #page .page-content section.toolbox > .grid .items .item.is-open p.item-title:after, body.page-template-page-services #page .page-content section.toolbox > .grid .items .item.is-open p.item-title:after, body.page-template-page-contact #page .page-content section.toolbox > .grid .items .item.is-open p.item-title:after {
    transform: rotate(180deg);
  }
}
@media screen and (min-width: 1024px) {
  body.page-template-page-about #page .page-content section.contact, body.page-template-page-services #page .page-content section.contact, body.page-template-page-contact #page .page-content section.contact {
    padding-bottom: 73px;
  }
}
@media screen and (max-width: 1024px) {
  body.page-template-page-about #page .page-content section.contact, body.page-template-page-services #page .page-content section.contact, body.page-template-page-contact #page .page-content section.contact {
    padding-bottom: 18px;
  }
}
@media screen and (min-width: 1024px) {
  body.page-template-page-about #page .page-content section.contact > .grid, body.page-template-page-services #page .page-content section.contact > .grid, body.page-template-page-contact #page .page-content section.contact > .grid {
    grid-template-columns: minmax(0, 522px) 1fr;
  }
}
@media screen and (min-width: 1024px) {
  body.page-template-page-about #page .page-content section.contact > .grid .form, body.page-template-page-services #page .page-content section.contact > .grid .form, body.page-template-page-contact #page .page-content section.contact > .grid .form {
    grid-column: 2;
  }
}
@media screen and (max-width: 1024px) {
  body.page-template-page-about #page .page-content section.contact > .grid .form, body.page-template-page-services #page .page-content section.contact > .grid .form, body.page-template-page-contact #page .page-content section.contact > .grid .form {
    padding-top: 24px;
  }
}
body.page-template-page-about #page .page-content section.contact > .grid .form p.form-subtitle, body.page-template-page-services #page .page-content section.contact > .grid .form p.form-subtitle, body.page-template-page-contact #page .page-content section.contact > .grid .form p.form-subtitle {
  padding-bottom: 25px;
}
@media screen and (min-width: 1024px) {
  body.page-template-page-about #page .page-content section.contact > .grid .form p.form-subtitle, body.page-template-page-services #page .page-content section.contact > .grid .form p.form-subtitle, body.page-template-page-contact #page .page-content section.contact > .grid .form p.form-subtitle {
    max-width: 664px;
    font-size: 40px;
    line-height: 42px;
  }
}
@media screen and (max-width: 1024px) {
  body.page-template-page-about #page .page-content section.contact > .grid .form p.form-subtitle, body.page-template-page-services #page .page-content section.contact > .grid .form p.form-subtitle, body.page-template-page-contact #page .page-content section.contact > .grid .form p.form-subtitle {
    font-size: 30px;
    line-height: 31px;
  }
}
@media screen and (max-width: 1024px) {
  body.page-template-page-about #page .page-content section.contact > .grid .form .content, body.page-template-page-services #page .page-content section.contact > .grid .form .content, body.page-template-page-contact #page .page-content section.contact > .grid .form .content {
    margin-top: 25px;
  }
}
@media screen and (min-width: 1024px) {
  body.page-template-page-about #page .page-content section.contact > .grid .form .content p, body.page-template-page-services #page .page-content section.contact > .grid .form .content p, body.page-template-page-contact #page .page-content section.contact > .grid .form .content p {
    max-width: 500px;
  }
}
body.page-template-page-about #page .page-content section.contact > .grid .form .content p:not(:last-of-type), body.page-template-page-services #page .page-content section.contact > .grid .form .content p:not(:last-of-type), body.page-template-page-contact #page .page-content section.contact > .grid .form .content p:not(:last-of-type) {
  margin-bottom: 22px;
}
body.page-template-page-about #page .page-content .wpforms-container, body.page-template-page-services #page .page-content .wpforms-container, body.page-template-page-contact #page .page-content .wpforms-container {
  margin: 24px 0 0 0;
}
body.page-template-page-about #page .page-content .wpforms-container form .wpforms-field-container .wpforms-field, body.page-template-page-services #page .page-content .wpforms-container form .wpforms-field-container .wpforms-field, body.page-template-page-contact #page .page-content .wpforms-container form .wpforms-field-container .wpforms-field {
  padding-top: 8px;
  padding-bottom: 8px;
}
body.page-template-page-about #page .page-content .wpforms-container form .wpforms-field-container .wpforms-field textarea, body.page-template-page-about #page .page-content .wpforms-container form .wpforms-field-container .wpforms-field input, body.page-template-page-services #page .page-content .wpforms-container form .wpforms-field-container .wpforms-field textarea, body.page-template-page-services #page .page-content .wpforms-container form .wpforms-field-container .wpforms-field input, body.page-template-page-contact #page .page-content .wpforms-container form .wpforms-field-container .wpforms-field textarea, body.page-template-page-contact #page .page-content .wpforms-container form .wpforms-field-container .wpforms-field input {
  padding: 12px;
  color: #000;
  font-size: 14px;
  line-height: 22px;
  letter-spacing: 0;
  border: 1px solid #000;
  background-color: transparent;
  border-radius: 0;
  outline: none;
}
body.page-template-page-about #page .page-content .wpforms-container form .wpforms-field-container .wpforms-field textarea::placeholder, body.page-template-page-about #page .page-content .wpforms-container form .wpforms-field-container .wpforms-field input::placeholder, body.page-template-page-services #page .page-content .wpforms-container form .wpforms-field-container .wpforms-field textarea::placeholder, body.page-template-page-services #page .page-content .wpforms-container form .wpforms-field-container .wpforms-field input::placeholder, body.page-template-page-contact #page .page-content .wpforms-container form .wpforms-field-container .wpforms-field textarea::placeholder, body.page-template-page-contact #page .page-content .wpforms-container form .wpforms-field-container .wpforms-field input::placeholder {
  opacity: 1;
  color: #000;
}
body.page-template-page-about #page .page-content .wpforms-container form .wpforms-field-container .wpforms-field.wpforms-field-textarea textarea, body.page-template-page-services #page .page-content .wpforms-container form .wpforms-field-container .wpforms-field.wpforms-field-textarea textarea, body.page-template-page-contact #page .page-content .wpforms-container form .wpforms-field-container .wpforms-field.wpforms-field-textarea textarea {
  resize: none;
}
body.page-template-page-about #page .page-content .wpforms-container form .wpforms-error, body.page-template-page-services #page .page-content .wpforms-container form .wpforms-error, body.page-template-page-contact #page .page-content .wpforms-container form .wpforms-error {
  font-size: 12px;
  line-height: 20px;
  color: #000;
}
body.page-template-page-about #page .page-content .wpforms-container form .wpforms-error:before, body.page-template-page-services #page .page-content .wpforms-container form .wpforms-error:before, body.page-template-page-contact #page .page-content .wpforms-container form .wpforms-error:before {
  background-color: #000;
}
body.page-template-page-about #page .page-content .wpforms-container form .wpforms-submit-container, body.page-template-page-services #page .page-content .wpforms-container form .wpforms-submit-container, body.page-template-page-contact #page .page-content .wpforms-container form .wpforms-submit-container {
  margin-top: 0;
}
body.page-template-page-about #page .page-content .wpforms-container form .wpforms-submit-container button.wpforms-submit, body.page-template-page-services #page .page-content .wpforms-container form .wpforms-submit-container button.wpforms-submit, body.page-template-page-contact #page .page-content .wpforms-container form .wpforms-submit-container button.wpforms-submit {
  border-radius: 0;
  border: 0;
  background-color: #000;
  font-family: "Lateral", sans-serif;
  font-size: 14px;
  line-height: 22px;
  font-weight: 500;
  letter-spacing: 0;
  padding: 10px;
  width: 130px;
  color: var(--highlight-color);
}
body.page-template-page-about #page .page-content .wpforms-container .wpforms-confirmation-container-full, body.page-template-page-services #page .page-content .wpforms-container .wpforms-confirmation-container-full, body.page-template-page-contact #page .page-content .wpforms-container .wpforms-confirmation-container-full {
  background: transparent;
  border: 0;
  color: #000;
  margin: 184px 0 0 0;
  display: inline-block;
  padding: 0;
}
body.page-template-page-about #page .page-content .wpforms-container .wpforms-confirmation-container-full p, body.page-template-page-services #page .page-content .wpforms-container .wpforms-confirmation-container-full p, body.page-template-page-contact #page .page-content .wpforms-container .wpforms-confirmation-container-full p {
  color: #000;
  max-width: inherit !important;
  font-size: 40px;
  line-height: 42px;
  font-family: "Lateral", sans-serif;
  font-weight: 900;
}
@media screen and (max-width: 1024px) {
  body.page-template-page-about.nav-toggled #page header.site-header, body.page-template-page-services.nav-toggled #page header.site-header, body.page-template-page-contact.nav-toggled #page header.site-header {
    background-color: #FFF;
  }
}
/* --------------------------------- */
/*********** Page: Default ***********/
/* --------------------------------- */
@media screen and (max-width: 1024px) {
  body.page-template-default:not(.home) #page .page-content {
    display: flex;
    flex-direction: column;
  }
}
@media screen and (max-width: 1024px) {
  body.page-template-default:not(.home) #page .page-content .page-title {
    padding-top: 78px;
  }
}
@media screen and (min-width: 1024px) {
  body.page-template-default:not(.home) #page .page-content .page-title h1 {
    max-width: 433px;
  }
}
@media screen and (max-width: 1024px) {
  body.page-template-default:not(.home) #page .page-content .page-title h1 {
    font-size: 50px;
    line-height: 1;
  }
}
body.page-template-default:not(.home) #page .page-content .page-title:has(+ section.section-content) {
  border-bottom: 1px solid #000;
}
@media screen and (min-width: 1024px) {
  body.page-template-default:not(.home) #page .page-content .page-title:has(+ section.section-content) {
    padding-bottom: 12px;
    margin-bottom: 18px;
  }
}
@media screen and (max-width: 1024px) {
  body.page-template-default:not(.home) #page .page-content .page-title:has(+ section.section-content) {
    padding-bottom: 10px;
    margin-bottom: 36px;
  }
}
body.page-template-default:not(.home) #page .page-content section.section-content {
  padding-bottom: 32px;
}
@media screen and (min-width: 1024px) {
  body.page-template-default:not(.home) #page .page-content section.section-content {
    max-width: 978px;
    margin-left: auto;
  }
}
body.page-template-default:not(.home) #page .page-content section.section-content h2:not(:first-of-type), body.page-template-default:not(.home) #page .page-content section.section-content h3:not(:first-of-type) {
  margin-top: 20px;
}
body.page-template-default:not(.home) #page .page-content section.section-content h2:has(+ *), body.page-template-default:not(.home) #page .page-content section.section-content h3:has(+ *), body.page-template-default:not(.home) #page .page-content section.section-content p:has(+ *) {
  margin-bottom: 20px;
}
body.page-template-default:not(.home) #page .page-content section.section-content li:not(:last-child) {
  margin-bottom: 20px;
}
/* ------------------------ */
/********** Footer **********/
/* ------------------------ */
footer.site-footer {
  background-color: #000;
}
@media screen and (min-width: 1024px) {
  footer.site-footer {
    padding-left: 18px;
    padding-right: 18px;
    padding-top: 68px;
    padding-bottom: 16px;
  }
}
@media screen and (max-width: 1024px) {
  footer.site-footer {
    padding-left: 10px;
    padding-right: 10px;
    padding-top: 16px;
    padding-bottom: 7px;
  }
}
@media screen and (min-width: 1024px) {
  footer.site-footer > .flex {
    gap: 140px;
  }
}
@media screen and (max-width: 1024px) {
  footer.site-footer > .flex {
    gap: 10px;
    flex-wrap: wrap;
  }
}
footer.site-footer > .flex .footer-tagline {
  font-size: 24px;
  line-height: 26px;
  font-weight: 900;
  color: #FFF;
}
@media screen and (min-width: 1024px) {
  footer.site-footer > .flex .footer-tagline {
    width: 100%;
    max-width: 400px;
  }
}
@media screen and (max-width: 1024px) {
  footer.site-footer > .flex .footer-tagline {
    margin-bottom: 10px;
    flex: 0 0 100%;
  }
}
@media screen and (min-width: 1024px) {
  footer.site-footer > .flex .footer-emails, footer.site-footer > .flex .footer-social {
    width: 100%;
    max-width: 230px;
  }
}
@media screen and (max-width: 1024px) {
  footer.site-footer > .flex .footer-emails, footer.site-footer > .flex .footer-social {
    flex: 1;
  }
}
footer.site-footer > .flex .footer-emails .email:not(:last-child), footer.site-footer > .flex .footer-emails .social:not(:last-child), footer.site-footer > .flex .footer-social .email:not(:last-child), footer.site-footer > .flex .footer-social .social:not(:last-child) {
  margin-bottom: 16px;
}
footer.site-footer > .flex .footer-emails .email p, footer.site-footer > .flex .footer-emails .email a, footer.site-footer > .flex .footer-emails .social p, footer.site-footer > .flex .footer-emails .social a, footer.site-footer > .flex .footer-social .email p, footer.site-footer > .flex .footer-social .email a, footer.site-footer > .flex .footer-social .social p, footer.site-footer > .flex .footer-social .social a {
  color: #FFF;
  font-size: 16px;
  line-height: 16px;
}
footer.site-footer .site-branding {
  gap: 10px;
}
@media screen and (min-width: 1024px) {
  footer.site-footer .site-branding {
    margin-top: 86px;
  }
}
@media screen and (max-width: 1024px) {
  footer.site-footer .site-branding {
    margin-top: 120px;
  }
}
footer.site-footer .site-branding a {
  width: 100%;
  color: #FFF;
  font-size: 10px;
  line-height: 14px;
  text-decoration: none;
}
@media screen and (min-width: 1024px) {
  footer.site-footer .site-branding a {
    max-width: 766px;
  }
  footer.site-footer .site-branding a:hover {
    text-decoration: underline;
  }
}
footer.site-footer .site-branding a svg {
  width: 100%;
  height: auto;
  display: block;
}
footer.site-footer .site-branding p {
  color: #FFF;
  font-size: 10px;
  line-height: 14px;
}
footer.site-footer .site-branding .site-branding-menu {
  gap: 27px;
}
footer.site-footer .site-branding .site-branding-menu ul {
  gap: 27px;
  padding: 0;
}
footer.site-footer .site-branding .site-branding-menu ul li {
  margin: 0;
  font-size: 10px;
  line-height: 14px;
}
footer.site-footer .site-branding .copyright {
  gap: 2px;
}
.grecaptcha-badge {
  visibility: hidden;
}
