/*! Handmade with love by https://esmes.fi */ /* RESET */
*,
::before,
::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  -webkit-tap-highlight-color: rgba(255, 255, 255, 0);
}

html {
  margin: 0;
  padding: 0;
  height: 100%;
}

body {
  margin: 0;
  padding: 0;
  height: 100%;
  -webkit-text-size-adjust: 100%;
}

input,
textarea {
  border: 0;
  border-radius: 0;
  font: inherit;
  -webkit-appearance: none;
}

button,
[type=button],
[type=reset],
[type=submit],
[role=button] {
  cursor: pointer;
}

/* HTML5 for old-ie */
article,
aside,
dialog,
figcaption,
figure,
footer,
header,
hgroup,
main,
nav,
section {
  display: block;
}

template {
  display: none;
}

address,
button,
input,
optgroup,
select,
textarea {
  font: inherit;
}

a img {
  border-style: none;
}

/* Responsive SVG */
img[src*=".svg"] {
  width: 100%;
  height: auto;
}

@font-face {
  font-family: abc-diatype;
  src: url("../fonts/DTSDiatype-Light.woff2") format("woff2"), url("../fonts/DTSDiatype-Light.woff") format("woff");
  font-weight: 300;
  font-style: normal;
}
@font-face {
  font-family: abc-diatype;
  src: url("../fonts/DTSDiatype-Medium.woff2") format("woff2"), url("../fonts/DTSDiatype-Medium.woff") format("woff");
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: abc-diatype-extended;
  src: url("../fonts/DTSDiatypeExtended-Regular.woff2") format("woff2"), url("../fonts/DTSDiatypeExtended-Regular.woff") format("woff");
  font-weight: 400;
  font-style: normal;
}
:root {
  font-size: 16px;
  --app-height: 100vh;
  --font-small: 0.875rem;
  --font-body: 1rem;
  --font-larger: 1.125rem;
  --font-heading: 1.5rem;
  --body-text-size: 1rem;
  --body-text-line-height: 100%;
  --safety-padding: 4.6875rem;
  --layout-width: 90rem;
  --container-max-width: 90rem;
  --color-blue: #3b6bde;
  --color-gray: #dcdcdc;
}

:root {
  font-size: 1.1111111111vw;
}

/*@media screen and (min-width: 1440px){
  :root {
    font-size: math.div(1440, $layout_width) * 16px;
  }
}*/
html, body {
  height: 100%;
}

a {
  color: inherit;
}

p {
  line-height: 1.5em;
}

h1, h2, h3, h4 {
  font-family: abc-diatype-extended;
  font-weight: 400;
}

h1, h2 {
  font-size: 2.5rem;
  line-height: 1.2em;
}

strong {
  font-weight: 400;
}

body {
  --body-background-color: #fff;
  background-color: var(--body-background-color);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-family: abc-diatype;
  font-size: var(--font-body);
  font-weight: 300;
  line-height: 150%;
  display: flex;
  flex-direction: column;
  --color: #000;
  color: var(--color);
}

main {
  flex: 1 0 auto;
  padding-top: 2.5rem;
}

.embed-wrap {
  position: relative;
  overflow: hidden;
  max-width: 100%;
}
.embed-wrap__container {
  position: relative;
  padding-top: 56.25%;
}
.embed-wrap__container embed, .embed-wrap__container iframe, .embed-wrap__container object {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
}
.embed-wrap__container iframe[src] {
  z-index: 2;
}
.embed-wrap__placeholder {
  pointer-events: none;
  --background-image: none;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  background-image: var(--background-image);
  background-size: cover;
  background-position: 50% 50%;
  z-index: 1;
}
.embed-wrap__placeholder::after {
  content: "";
  position: absolute;
  top: 0;
  left: 45%;
  width: 10%;
  height: 100%;
  background: url("../svg/play.svg") no-repeat 50% 50%;
  background-size: 100% auto;
  opacity: 0;
  transition: opacity 0.3s 0.7s;
}
.embed-wrap__placeholder.--youtube::after {
  background-image: url("../svg/play-youtube.svg");
  left: 44%;
  width: 12%;
}
.embed-wrap__placeholder.--processed {
  pointer-events: auto;
}
.embed-wrap__placeholder.--processed::after {
  opacity: 1;
}

img[loading=lazy] {
  opacity: 0;
  transition: opacity 0.5s;
}
img[loading=lazy].--loaded {
  opacity: 1;
}

header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 5000;
  display: flex;
  align-items: flex-start;
}
header::before {
  background-color: var(--color-gray);
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2.5rem;
  z-index: -1;
}
header button {
  display: none;
}
header .logo {
  background-color: var(--color-blue);
  display: flex;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
  transform-origin: 0 0;
  transition: transform 0.3s;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
  transform: translateZ(0);
  border: none;
  outline: none;
}
header .logo img {
  width: auto;
  height: 5.625rem;
  border: none;
  outline: none;
}
header .container {
  width: 100%;
  background-color: var(--color-gray);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1.25rem;
  font-family: abc-diatype-extended;
  font-size: var(--font-larger);
}
header .container .tagline {
  padding-left: 1.8125rem;
  position: relative;
  transition: transform 0.3s;
}
header .container nav > div > ul.menu {
  font-weight: 400;
  display: flex;
  align-items: stretch;
}
header .container nav > div > ul.menu > li {
  position: relative;
  display: flex;
  align-items: stretch;
}
header .container nav > div > ul.menu > li.menu-item-has-children {
  position: relative;
}
header .container nav > div > ul.menu > li.menu-item-has-children ul.sub-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background-color: #fff;
}
header .container nav > div > ul.menu > li.menu-item-has-children ul.sub-menu li {
  display: block;
}
header .container nav > div > ul.menu > li.menu-item-has-children:hover {
  background-color: #fff;
}
header .container nav > div > ul.menu > li.menu-item-has-children:hover ul.sub-menu {
  display: block;
}
header .container nav a {
  padding: 0 0.9375rem;
  min-width: 11.25rem;
  display: flex;
  align-items: center;
  min-height: 2.5rem;
  text-decoration: none;
}
header .container nav a:hover {
  background-color: var(--color-blue);
  color: #fff;
}
header .container nav li.contact a {
  background-color: var(--color-blue);
  position: relative;
  min-width: 10rem;
  color: #fff;
  padding-right: 3.75rem;
}
header .container nav li.contact a::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 2.5rem;
  background: url("../svg/icon-plus-white.svg") no-repeat 100% 50%;
  background-size: auto 100%;
  transform: rotateZ(-90deg);
  transition: transform 0.5s;
}
header .container nav li.contact a:hover::after {
  transform: rotateZ(0deg);
}
header li.current-menu-item > a {
  background-color: #000 !important;
  color: #fff;
}

body.--page-scrolled-down:not(.--menu-open) header .logo {
  transform: scale(0.4455555556) translateZ(0);
}
body.--page-scrolled-down:not(.--menu-open) header .container .tagline {
  transform: translateX(-3.125rem);
  transition: transform 0.3s;
}

body.single-project header li.projects {
  background-color: #000;
  color: #fff;
}

footer {
  margin-top: 6.25rem;
}
footer a {
  text-decoration: none;
}
footer a:hover {
  text-decoration: underline;
}
footer > .contact-container {
  font-family: abc-diatype-extended;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
footer > .contact-container .text {
  padding-left: 2.5rem;
  font-size: var(--font-larger);
}
footer > .contact-container .link {
  height: 2rem;
  background-color: var(--color-blue);
  display: flex;
  align-items: center;
  text-decoration: none;
  text-decoration: none;
  font-size: 0.875rem;
  min-width: 10rem;
  display: flex;
  align-items: center;
  text-align: center;
}
footer > .contact-container .link span {
  padding: 0 1.5625rem;
  position: relative;
  top: 0.125rem;
}
footer > .contact-container .link:hover {
  text-decoration: underline;
}
footer > .container {
  background-color: var(--color-blue);
  padding: 5.625rem;
  padding-right: 1.875rem;
  padding-top: 10.625rem;
  display: flex;
  justify-content: space-between;
  gap: 1.25rem;
}
footer > .container > .content-container .branding {
  display: flex;
  align-items: flex-start;
}
footer > .container > .content-container .branding .logos {
  width: 30rem;
  flex-shrink: 0;
}
footer > .container > .content-container .branding .logos .logo {
  margin-bottom: 2.1875rem;
}
footer > .container > .content-container .branding .logos .logo img {
  display: block;
  width: 21.875rem;
  height: auto;
  border: none;
}
footer > .container > .content-container .branding .logos .solwers-logo {
  display: block;
}
footer > .container > .content-container .branding .logos .solwers-logo img {
  display: block;
  width: 11.5625rem;
  height: auto;
}
footer > .container > .content-container .branding .text {
  font-family: abc-diatype-extended;
  font-size: var(--font-heading);
  line-height: 1.1em;
  position: relative;
  transform: translateY(0.25rem);
}
footer > .container > .content-container .panes {
  display: flex;
  align-items: flex-end;
  gap: 1.875rem;
}
footer > .container > .content-container .panes .pane {
  width: 13.125rem;
}
footer > .container > .content-container .panes .pane:nth-child(1), footer > .container > .content-container .panes .pane:nth-child(2) {
  padding-top: 1.875rem;
}
footer > .container > .links-container {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 1.875rem;
  width: 22.8125rem;
}
footer > .container > .links-container .links {
  display: flex;
  flex-wrap: wrap;
}
footer > .container > .links-container .links .link-container {
  width: 50%;
  padding-right: 1.25rem;
}
footer > .container > .links-container .social-media-links {
  display: flex;
  align-items: flex-end;
  gap: 1.5625rem;
  padding-bottom: 0.3125rem;
}
footer > .container > .links-container .social-media-links .link {
  display: block;
  font-size: 0;
  color: transparent;
  width: 1.75rem;
  height: 1.75rem;
  background-position: 50% 50%;
  background-repeat: no-repeat;
  background-size: auto 1.75rem;
}
footer > .container > .links-container .social-media-links .link.facebook {
  background-image: url("../svg/icon-facebook.svg");
}
footer > .container > .links-container .social-media-links .link.instagram {
  background-image: url("../svg/icon-instagram.svg");
}
footer > .container > .links-container .social-media-links .link.linkedin {
  background-image: url("../svg/icon-linkedin.svg");
}
footer > .container > .links-container .social-media-links .link.twitter {
  background-image: url("../svg/icon-twitter.svg");
}

body.home footer {
  margin-top: 0;
}

.grecaptcha-badge {
  visibility: hidden;
  pointer-events: none;
}

.only-phone {
  display: none;
}
@media screen and (max-width: 600px) {
  .only-phone {
    display: initial;
  }
}

@media screen and (max-width: 600px) {
  .only-desktop {
    display: none;
  }
}

.otgs-development-site-front-end {
  display: none !important;
}

.cky-btn-revisit-wrapper {
  visibility: hidden;
  pointer-events: none;
}

.sl-wrapper {
  z-index: 8000;
}

.sl-overlay {
  z-index: 7500;
}

.sl-wrapper .sl-image .sl-caption {
  color: #000;
  background: #fff;
}

section.element {
  position: relative;
}

@keyframes carousel-progress-bar {
  from {
    transform: scale(0, 1);
  }
  to {
    transform: scale(1, 1);
  }
}
@keyframes carousel-image-zoom {
  from {
    transform: scale(1.15);
  }
  to {
    transform: scale(1);
  }
}
.element.hero-carousel {
  position: relative;
  top: 0;
  height: calc(var(--app-height) - 2.5rem);
  max-height: 45rem;
  overflow: hidden;
  font-family: abc-diatype-extended;
  font-size: var(--font-body);
}
.element.hero-carousel > .backgrounds {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.element.hero-carousel > .backgrounds > .background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  opacity: 0;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
  transform: translateZ(0);
}
.element.hero-carousel > .backgrounds > .background > img, .element.hero-carousel > .backgrounds > .background video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.element.hero-carousel > .backgrounds > .background.--darken::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.15), rgba(0, 0, 0, 0.15)), linear-gradient(180deg, rgba(0, 0, 0, 0) 60%, rgba(0, 0, 0, 0.5) 90%);
}
.element.hero-carousel > .slides {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  display: flex;
  align-items: stretch;
  gap: 2.1875rem;
  padding: 1.875rem 2.5rem;
}
.element.hero-carousel > .slides > .slide {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  color: #fff;
  text-shadow: 0.0625rem 0.125rem 0.25rem rgba(0, 0, 0, 0.3);
  z-index: 3;
}
.element.hero-carousel > .slides > .slide .content {
  width: 100%;
  position: relative;
  z-index: 1;
}
.element.hero-carousel > .slides > .slide .content .heading {
  text-transform: uppercase;
}
.element.hero-carousel > .slides > .slide .content .bar {
  width: 100%;
  height: 0.0625rem;
  position: relative;
  background-color: var(--color-blue);
  margin-bottom: 0.9375rem;
}
.element.hero-carousel > .slides > .slide .content .bar .progress {
  position: absolute;
  height: 0.4375rem;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: var(--color-blue);
  transform-origin: 0 0;
  transform: scale(0, 1);
  opacity: 0;
  transition: opacity 0.5s;
}
.element.hero-carousel > .descriptions {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 5;
}
.element.hero-carousel > .descriptions > .description {
  font-size: var(--font-larger);
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  width: 100%;
  height: 100%;
  padding-top: 0.9375rem;
  padding-left: 7.5rem;
  padding-right: 1.25rem;
  opacity: 0;
  color: var(--color-blue);
}
.element.hero-carousel > .descriptions > .description.--white {
  color: #fff;
}
.element.hero-carousel > .descriptions > .description.--right {
  text-align: right;
}

.element.hero-carousel > .backgrounds > .background > img {
  transform: scale(1.15);
}
.element.hero-carousel > .backgrounds > .background.--active {
  opacity: 1;
  z-index: 3;
  transition: opacity 1s 0s;
}
.element.hero-carousel > .backgrounds > .background.--active > img {
  animation-duration: var(--slide-time);
  animation-name: carousel-image-zoom;
  animation-fill-mode: forwards;
  animation-delay: 1s;
}
.element.hero-carousel > .backgrounds > .background.--animate-out {
  z-index: 2;
  transition: opacity 1s 1s;
}
.element.hero-carousel > .backgrounds > .background.--animate-out > img {
  transform: scale(1);
}
.element.hero-carousel > .slides > .slide.--active .content .bar .progress {
  animation-duration: var(--slide-time);
  animation-name: carousel-progress-bar;
  animation-timing-function: ease-out;
  animation-fill-mode: forwards;
  animation-delay: 1s;
  opacity: 1;
  transition: opacity 0s;
}
.element.hero-carousel > .slides > .slide.--animate-out .content .bar .progress {
  transform: scale(1, 1);
  opacity: 0;
  transition: opacity 0.5s 0s;
}
.element.hero-carousel > .descriptions > .description {
  opacity: 0;
}
.element.hero-carousel > .descriptions > .description.--active {
  opacity: 1;
  z-index: 3;
  transition: opacity 1s 1s;
}
.element.hero-carousel > .descriptions > .description.--animate-out {
  opacity: 0;
  z-index: 2;
  transition: opacity 1s 0s;
}

@media screen and (max-width: 600px) {
  .element.hero-carousel {
    top: 0;
    height: 25rem;
    font-size: 0.875rem;
  }
  .element.hero-carousel > .slides {
    padding: 0;
  }
  .element.hero-carousel > .slides > .slide {
    position: absolute;
    left: 0;
    bottom: 0;
    right: 0;
    padding: 0.9375rem 1.25rem;
  }
  .element.hero-carousel > .descriptions {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 5;
  }
  .element.hero-carousel > .descriptions > .description {
    font-size: 0.875rem;
    line-height: 1.2em;
    padding-top: 0.625rem;
    padding-left: 4.6875rem;
    padding-right: 1.25rem;
    text-align: right;
  }
  .element.hero-carousel > .slides > .slide {
    opacity: 0;
  }
  .element.hero-carousel > .slides > .slide.--active {
    opacity: 1;
    z-index: 3;
    transition: opacity 1s 1s;
  }
  .element.hero-carousel > .slides > .slide.--animate-out {
    opacity: 0;
    z-index: 2;
    transition: opacity 1s 0s;
  }
}
.element.small-lifts {
  padding: 0;
  margin: 4.375rem 0;
}
.element.small-lifts .container {
  overflow: hidden;
}
.element.small-lifts .container .lifts {
  position: relative;
  margin: 0 -0.9375rem;
  gap: 2.5rem 0;
  display: flex;
  align-items: stretch;
  flex-wrap: wrap;
}
.element.small-lifts .container .lifts .lift {
  width: 50%;
  padding: 0 0.9375rem;
}
.element.small-lifts .container .lifts .lift .picture {
  position: relative;
  padding-top: var(--aspect);
  overflow: hidden;
}
.element.small-lifts .container .lifts .lift .picture > img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.5s;
  transform: scale(1);
}
.element.small-lifts .container .lifts .lift .picture:empty {
  background-color: #eee;
}
.element.small-lifts .container .lifts .lift .content {
  margin-top: 0.9375rem;
  position: relative;
  padding: 0 1.25rem;
}
.element.small-lifts.--4-per-row .container .lifts .lift {
  width: 25%;
}
.element.small-lifts.--4-per-row .container .lifts .lift:nth-child(4n+1) .content {
  padding-left: 4.375rem;
}
.element.small-lifts.--4-per-row .container .lifts .lift:nth-child(4n+4) .content {
  padding-right: 4.375rem;
}
.element.small-lifts.--3-per-row .container .lifts .lift {
  width: 33.3%;
}
.element.small-lifts.--3-per-row .container .lifts .lift:nth-child(3n+1) .content {
  padding-left: 4.375rem;
}
.element.small-lifts.--3-per-row .container .lifts .lift:nth-child(3n+3) .content {
  padding-right: 4.375rem;
}
.element.small-lifts.--2-per-row .container .lifts .lift {
  width: 50%;
}
.element.small-lifts.--2-per-row .container .lifts .lift:nth-child(2n+1) .content {
  padding-left: 4.375rem;
}
.element.small-lifts.--2-per-row .container .lifts .lift:nth-child(2n+2) .content {
  padding-right: 4.375rem;
}

@media screen and (max-width: 600px) {
  .element.small-lifts {
    margin: 2.5rem 0;
  }
  .element.small-lifts .container .lifts {
    margin: 0 -0.625rem;
    gap: 2.5rem 0;
  }
  .element.small-lifts .container .lifts .lift {
    width: 100%;
    padding: 0 0.625rem;
  }
  .element.small-lifts .container .lifts .lift .content {
    margin-top: 0.9375rem;
    padding: 0 1.25rem;
  }
  .element.small-lifts.--4-per-row .container .lifts .lift {
    width: 100%;
  }
  .element.small-lifts.--4-per-row .container .lifts .lift:nth-child(4n+1) .content {
    padding: 0 1.25rem;
  }
  .element.small-lifts.--4-per-row .container .lifts .lift:nth-child(4n+4) .content {
    padding: 0 1.25rem;
  }
  .element.small-lifts.--3-per-row .container .lifts .lift {
    width: 100%;
  }
  .element.small-lifts.--3-per-row .container .lifts .lift:nth-child(3n+1) .content {
    padding: 0 1.25rem;
  }
  .element.small-lifts.--3-per-row .container .lifts .lift:nth-child(3n+3) .content {
    padding: 0 1.25rem;
  }
  .element.small-lifts.--2-per-row .container .lifts .lift {
    width: 100%;
  }
  .element.small-lifts.--2-per-row .container .lifts .lift:nth-child(2n+1) .content {
    padding: 0 1.25rem;
  }
  .element.small-lifts.--2-per-row .container .lifts .lift:nth-child(2n+2) .content {
    padding: 0 1.25rem;
  }
}
.element.large-lift {
  margin-top: 2.1875rem;
  margin-bottom: 5rem;
  position: relative;
  font-family: abc-diatype-extended;
}
.element.large-lift > .container {
  max-width: none;
  padding: 0;
  position: relative;
  display: flex;
}
.element.large-lift > .container .content {
  padding: 0 2.5rem;
  width: 50%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
}
.element.large-lift > .container .content .lift {
  text-transform: uppercase;
  color: var(--color-blue);
  font-size: 3.75rem;
  line-height: 3.4375rem;
  transform: translateX(-0.25rem);
}
.element.large-lift > .container .content .link {
  display: inline-block;
  background-color: #000;
  color: #fff;
  text-decoration: none;
  padding: 0.3125rem 1.25rem;
  font-size: var(--font-body);
  position: relative;
  transition: background-color 0.3s;
}
.element.large-lift > .container .content .link:hover {
  background-color: var(--color-blue);
}
.element.large-lift > .container .image {
  width: 50%;
}
.element.large-lift > .container .image figure img {
  display: block;
  width: 100%;
  height: auto;
}
.element.large-lift > .container .image figure figcaption {
  background-color: var(--color-blue);
  color: #fff;
  font-size: var(--font-body);
  padding: 0.3125rem 1.25rem;
}

@media screen and (max-width: 600px) {
  .element.large-lift {
    margin-top: 1.875rem;
    margin-bottom: 1.875rem;
  }
  .element.large-lift > .container {
    flex-direction: column;
  }
  .element.large-lift > .container .content {
    padding: 0 1.25rem;
    width: 100%;
    display: flex;
    flex-direction: column;
  }
  .element.large-lift > .container .content .lift {
    font-size: 2.1875rem;
    line-height: 2rem;
    transform: none;
  }
  .element.large-lift > .container .content .link {
    margin-top: 1.25rem;
  }
  .element.large-lift > .container .image {
    margin-top: 1.25rem;
    width: 100%;
  }
  .element.large-lift > .container .image figure {
    margin: 0 1.25rem;
  }
  .element.large-lift > .container .image figure figcaption {
    background-color: var(--color-blue);
    color: #fff;
    font-size: var(--font-body);
    padding: 0.3125rem 1.25rem;
  }
}
.element.project-lifts a {
  text-decoration: none;
}
.element.project-lifts > .container {
  padding: 0;
  position: relative;
  height: -moz-min-content;
  height: min-content;
}
.element.project-lifts > .container .floaters {
  position: relative;
}
.element.project-lifts > .container .floater {
  position: sticky;
  top: calc(2.5rem - 1px + var(--index) * 2rem);
}
.element.project-lifts > .container .heading {
  padding: 0 2.5rem;
  height: 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: var(--font-larger);
  line-height: 1em;
  text-transform: uppercase;
}
.element.project-lifts > .container .heading .year {
  font-size: var(--font-small);
  margin-right: 10.625rem;
}
.element.project-lifts > .container .heading h3 {
  font-size: inherit;
  transform: translateY(0.125rem);
}
.element.project-lifts > .container .link {
  position: static;
  background-color: var(--color-gray);
  font-family: abc-diatype-extended;
  text-transform: none;
  padding-right: 0;
  transition: background-color 0.3s, color 0.3s;
}
.element.project-lifts > .container .link:hover {
  background-color: #000;
  color: #fff;
}
.element.project-lifts > .container .link span {
  display: block;
  width: 100%;
  position: relative;
}
.element.project-lifts > .container .link span::after {
  content: "";
  left: 100%;
  transform: translateX(-4.375rem);
  top: 50%;
  border: solid transparent;
  height: 0;
  width: 0;
  position: absolute;
  pointer-events: none;
  border-color: rgba(0, 0, 0, 0);
  border-left-color: currentColor;
  border-width: 0.375rem;
  margin-top: -0.375rem;
}
.element.project-lifts > .container .lift {
  height: calc(100vh - 2.5rem - 2rem * var(--index));
  overflow: clip;
  color: #fff;
  background-color: #eee;
}
.element.project-lifts > .container .lift .heading {
  position: relative;
  z-index: 2;
  background-color: var(--color-blue);
  border-top: 0.0625rem solid rgba(0, 0, 0, 0.8);
}
.element.project-lifts > .container .lift .heading::after {
  content: "";
  left: 100%;
  transform: translateX(-4.375rem) translateY(-0.1875rem);
  top: 50%;
  border: solid transparent;
  height: 0;
  width: 0;
  position: absolute;
  pointer-events: none;
  border-color: rgba(255, 255, 255, 0);
  border-top-color: #fff;
  border-width: 0.375rem;
  margin-left: -0.375rem;
}
.element.project-lifts > .container .lift .picture {
  position: relative;
  overflow: hidden;
  height: 100%;
  z-index: 1;
  top: -2px;
}
.element.project-lifts > .container .lift .picture > img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.element.project-lifts > .container .lift .picture > figcaption {
  position: absolute;
  top: 1.875rem;
  left: 2.5rem;
  width: 26.25rem;
  z-index: 3;
  font-family: abc-diatype-extended;
  font-size: var(--font-larger);
  line-height: 1.2em;
}
.element.project-lifts > .container .lift .content {
  position: relative;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  align-items: flex-end;
  background-color: var(--color-blue);
  font-size: 0.9375rem;
  padding: 0.9375rem 2.5rem;
  padding-top: 0.625rem;
  padding-right: 4.375rem;
  gap: 1.25rem;
  z-index: 5;
}
.element.project-lifts > .container .lift .content sup {
  line-height: 1;
  position: relative;
  transform: translateY(-0.5em);
}
.element.project-lifts > .container .lift .content > div:not(.name) {
  line-height: 1em;
}
.element.project-lifts > .container .lift .content > div:not(.name) .title {
  margin-right: 0.5em;
  font-weight: 400;
}
.element.project-lifts > .container .lift .content > div:not(.year):not(.name):not(.client):not(.description) {
  width: 100%;
}
.element.project-lifts > .container .lift .content .name {
  width: 33.125rem;
  flex-shrink: 0;
}
.element.project-lifts > .container .lift .content .name .title {
  font-weight: 400;
}
.element.project-lifts > .container .lift .content .client {
  width: 21.875rem;
  flex-shrink: 0;
}
.element.project-lifts > .container .lift .content .description {
  width: 31.25rem;
  flex-shrink: 0;
}
.element.project-lifts > .container .lift .content .year {
  white-space: nowrap;
}
.element.project-lifts > .container .lift.--light .picture > figcaption {
  color: #fff;
  text-shadow: 0.0625rem 0.125rem 0.375rem rgba(0, 0, 0, 0.6);
}
.element.project-lifts h2.heading + .lift .heading {
  border: none;
}

@media screen and (max-width: 600px) {
  .element.project-lifts > .container .heading {
    padding: 0 1.25rem;
    font-size: 0.875rem;
  }
  .element.project-lifts > .container .heading .year {
    display: none;
  }
  .element.project-lifts > .container .heading h3 {
    font-size: inherit;
    transform: translateY(0.0625rem);
  }
  .element.project-lifts > .container .link span::after {
    transform: translateX(-1.25rem);
  }
  .element.project-lifts > .container .lift {
    height: calc(34.375rem - 2.5rem - 2rem * var(--index));
  }
  .element.project-lifts > .container .lift .heading::after {
    display: none;
  }
  .element.project-lifts > .container .lift .picture > figcaption {
    top: 1.25rem;
    left: 0;
    right: 0;
    width: auto;
    padding: 0 1.25rem;
    font-size: 0.875rem;
    line-height: 1.3em;
  }
  .element.project-lifts > .container .lift .content {
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: flex-end;
    flex-wrap: wrap;
    justify-content: space-between;
    background-color: var(--color-blue);
    padding: 0.9375rem 1.25rem;
    gap: 0.5rem 1.25rem;
    z-index: 5;
  }
  .element.project-lifts > .container .lift .content > div {
    display: flex;
    align-items: flex-end;
    flex-wrap: wrap;
    gap: 0.3125rem 0;
  }
  .element.project-lifts > .container .lift .content > div.client {
    max-width: 100%;
    align-items: flex-start;
  }
  .element.project-lifts > .container .lift .content > div:not(.year):not(.name):not(.description) {
    width: auto;
  }
  .element.project-lifts > .container .lift .content .name {
    width: auto;
  }
  .element.project-lifts > .container .lift .content .description {
    width: auto;
    flex-shrink: initial;
  }
  .element.project-lifts > .container .lift .content .year {
    white-space: nowrap;
  }
}
.element.project-browser {
  padding: 2.5rem 0;
  --picture-aspect-padding: calc(400 / 670 * 100%);
}
.element.project-browser > .container {
  padding: 0 2.5rem;
}
.element.project-browser > .container .filters {
  margin: 0 auto;
  margin-bottom: 2.5rem;
  display: flex;
  justify-content: flex-start;
  gap: 1.25rem;
  flex-wrap: wrap;
}
.element.project-browser > .container .filters.category {
  margin-bottom: 0.9375rem;
}
.element.project-browser > .container .filters .filter {
  border: none;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  text-align: center;
  background-color: transparent;
  color: inherit;
}
.element.project-browser > .container .filters .filter.--active {
  font-weight: 400;
}
.element.project-browser > .container .lifts {
  --gap: 1.875rem;
  gap: 4.375rem 0;
  position: relative;
  margin: 0 calc(-0.5 * var(--gap));
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
}
.element.project-browser > .container .lifts .lift {
  width: 33.33%;
  flex-shrink: 0;
  padding: 0 calc(0.5 * var(--gap));
  display: flex;
  align-items: stretch;
}
.element.project-browser > .container .lifts .lift:nth-child(5n+1), .element.project-browser > .container .lifts .lift:nth-child(5n+2) {
  width: 50%;
}
.element.project-browser > .container .lifts .lift.--hidden {
  display: none !important;
}
.element.project-browser > .container .lifts .lift > div {
  width: 100%;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: flex-start;
  overflow: hidden;
  position: relative;
}
.element.project-browser > .container .lifts .lift > div a {
  text-decoration: none;
  display: block;
}
.element.project-browser > .container .lifts .lift > div .thumbnail {
  overflow: hidden;
  position: relative;
  padding-top: var(--picture-aspect-padding);
  margin-bottom: 1.25rem;
}
.element.project-browser > .container .lifts .lift > div .thumbnail::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(255, 255, 255, 0.5);
  opacity: 0;
  z-index: 1;
  transition: opacity 0.5s;
}
.element.project-browser > .container .lifts .lift > div .thumbnail::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  bottom: 0;
  height: 50%;
  transform: translateY(-50%) rotateZ(-90deg);
  background-color: var(--color-blue);
  -webkit-mask: url("../svg/icon-plus.svg") no-repeat 50% 50%;
          mask: url("../svg/icon-plus.svg") no-repeat 50% 50%;
  -webkit-mask-size: auto 100%;
          mask-size: auto 100%;
  opacity: 0;
  z-index: 2;
  transition: opacity 0.5s, transform 0.5s;
}
.element.project-browser > .container .lifts .lift > div .thumbnail > img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.3s, opacity 0.5s;
  transform: scale(1, 1);
}
.element.project-browser > .container .lifts .lift > div .thumbnail:empty {
  background-color: var(--color-gray);
}
.element.project-browser > .container .lifts .lift > div:hover .thumbnail > img {
  transform: scale(1.025, 1.025);
}
.element.project-browser > .container .lifts .lift > div:hover .thumbnail::before {
  opacity: 1;
}
.element.project-browser > .container .lifts .lift > div:hover .thumbnail::after {
  opacity: 1;
  transform: translateY(-50%) rotateZ(0deg);
}
.element.project-browser > .container .lifts .lift > div .content h1 {
  font-size: var(--font-larger);
  line-height: 1.173em;
  font-weight: 400;
}
.element.project-browser > .container .pagination {
  margin-top: 1.5rem;
  display: flex;
  justify-content: center;
  align-items: stretch;
  gap: 0.5rem;
}
.element.project-browser > .container .pagination:empty {
  display: none;
}
.element.project-browser > .container .pagination > button {
  background: transparent;
  border: none;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  text-align: center;
  min-width: 1.5625rem;
  font-size: var(--font-larger);
  height: 1.75rem;
}
.element.project-browser > .container .pagination .prev, .element.project-browser > .container .pagination .next {
  margin: 0 1rem;
  width: 1.375rem;
  background-size: 1.3125rem 0.875rem;
  background-repeat: no-repeat;
  background-position: 50% 50%;
}
.element.project-browser > .container .pagination .prev {
  background-image: url("../svg/pagination-left.svg");
}
.element.project-browser > .container .pagination .next {
  background-image: url("../svg/pagination-right.svg");
}
.element.project-browser > .container .pagination .--active {
  cursor: default;
  position: relative;
}
.element.project-browser > .container .pagination .--active::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -0.125rem;
  border-bottom: 1px solid #000;
}
.element.project-browser > .container:not([data-filter=""]) .lifts .lift:nth-child(5n+1), .element.project-browser > .container:not([data-filter=""]) .lifts .lift:nth-child(5n+2), .element.project-browser > .container:not([data-type-filter=""]) .lifts .lift:nth-child(5n+1), .element.project-browser > .container:not([data-type-filter=""]) .lifts .lift:nth-child(5n+2) {
  width: 33.33%;
}

@media screen and (max-width: 600px) {
  .element.project-browser {
    padding: 1.875rem 0;
  }
  .element.project-browser > .container {
    padding: 0 1.25rem;
  }
  .element.project-browser > .container .filters {
    margin-bottom: 1.875rem;
    gap: 0.625rem;
  }
  .element.project-browser > .container .filters .filter {
    font-size: 0.875rem;
  }
  .element.project-browser > .container .lifts {
    --gap: 1.25rem;
    gap: 2.5rem 0;
  }
  .element.project-browser > .container .lifts .lift {
    width: 50%;
  }
  .element.project-browser > .container .lifts .lift > div .thumbnail {
    margin-bottom: 0.625rem;
  }
  .element.project-browser > .container .lifts .lift > div .content h1 {
    font-size: 0.875rem;
  }
  .element.project-browser > .container .pagination {
    margin-top: 1.5rem;
    gap: 0.5rem;
  }
  .element.project-browser > .container .pagination > button {
    min-width: 1.25rem;
    font-size: 0.875rem;
  }
  .element.project-browser > .container .pagination .prev, .element.project-browser > .container .pagination .next {
    margin: 0 0.625rem;
  }
  .element.project-browser > .container:not([data-filter=""]) .lifts .lift:nth-child(5n+1), .element.project-browser > .container:not([data-filter=""]) .lifts .lift:nth-child(5n+2) {
    width: 50%;
  }
}
.element.hero > .container {
  padding: 0;
  position: relative;
  height: 45rem;
}
.element.hero > .container figure {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.element.hero > .container figure img, .element.hero > .container figure video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
}
.element.hero > .container figure figcaption {
  font-family: abc-diatype-extended;
  font-size: var(--font-larger);
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  width: 100%;
  height: 100%;
  padding-top: 0.9375rem;
  padding-left: 7.5rem;
  padding-right: 1.25rem;
  color: var(--color-blue);
}
.element.hero > .container figure figcaption.--white {
  color: #fff;
}
.element.hero > .container figure figcaption.--right {
  text-align: right;
}

@media screen and (max-width: 600px) {
  .element.hero > .container {
    height: 25rem;
  }
  .element.hero > .container figure figcaption {
    padding-left: 7.5rem;
    text-align: right;
  }
}
.element.ingress {
  padding: 0 5.3125rem;
  margin: 6.875rem 0;
  font-family: abc-diatype-extended;
}
.element.ingress .container {
  padding: 0;
  position: relative;
}
.element.ingress .container .ingress {
  font-size: 2rem;
}
.element.ingress .container .ingress p {
  line-height: 1.15em;
  margin-bottom: 1.15em;
}
.element.ingress .container .ingress p:last-child {
  margin-bottom: 0;
}

@media screen and (max-width: 600px) {
  .element.ingress {
    padding: 0 2.5rem;
    margin: 2.5rem 0;
  }
  .element.ingress .container .ingress {
    font-size: 1.125rem;
  }
}
.element.quote {
  font-family: abc-diatype-extended;
  background-color: var(--color-blue);
  display: flex;
  align-items: center;
}
.element.quote:first-child {
  min-height: 45rem;
}
.element.quote .container {
  width: 100%;
  position: relative;
  padding: 6.25rem 18.75rem;
}
.element.quote .container .quote {
  position: relative;
  font-size: var(--font-heading);
  line-height: 1em;
}
.element.quote .container .quote::before {
  content: "";
  position: absolute;
  top: 50%;
  left: -14.375rem;
  transform: translateY(-50%);
  width: 9.6875rem;
  height: 9.6875rem;
  background: url("../svg/icon-plus.svg") no-repeat 50% 50%;
  background-size: contain;
}
.element.quote:first-child .container {
  padding-top: 10rem;
}

@media screen and (max-width: 600px) {
  .element.quote:first-child {
    min-height: 25rem;
  }
  .element.quote .container {
    padding: 6.25rem 3.75rem;
    padding-bottom: 5rem;
  }
  .element.quote .container .quote {
    font-size: 1.25rem;
    line-height: 1em;
    transform: translateX(1.25rem);
  }
  .element.quote .container .quote::before {
    content: "";
    position: absolute;
    top: -1.25rem;
    left: -3.75rem;
    transform: translateY(-50%);
    width: 4.375rem;
    height: 4.375rem;
    background: url("../svg/icon-plus.svg") no-repeat 50% 50%;
    background-size: contain;
  }
  .element.quote:first-child .container {
    padding-top: 6.25rem;
  }
}
.element.text-content:first-child {
  margin-top: 5.625rem;
}
.element.text-content > .container {
  margin: 4.375rem 0;
  padding: 0 4.375rem;
  display: flex;
  gap: 1.875rem;
}
.element.text-content > .container .heading {
  width: 100%;
}
.element.text-content > .container .heading h1, .element.text-content > .container .heading h2 {
  font-size: 2.5rem;
  line-height: 1.2em;
}
.element.text-content > .container .content {
  width: 45rem;
  flex-shrink: 0;
}
.element.text-content > .container .content h3 {
  margin-top: 1.5em;
  margin-bottom: 0.25em;
}
.element.text-content > .container .content h3:first-child {
  margin-top: 0;
}
.element.text-content > .container .content h3:last-child {
  margin-bottom: 0;
}
.element.text-content > .container .content p {
  margin-bottom: 1em;
}
.element.text-content > .container .content p:last-child {
  margin-bottom: 0;
}
.element.text-content > .container .content ul, .element.text-content > .container .content ol {
  margin-bottom: 1em;
}
.element.text-content > .container .content ul li, .element.text-content > .container .content ol li {
  margin-left: 1em;
}
.element.text-content > .container .content ul:last-child, .element.text-content > .container .content ol:last-child {
  margin-bottom: 0;
}
.element.text-content > .meta {
  margin-top: 2.5rem;
  align-items: flex-start;
}
.element.text-content > .meta .heading, .element.text-content > .meta .content {
  display: flex;
  align-items: flex-end;
  gap: 1.875rem;
}
.element.text-content > .meta .short_description {
  width: 100%;
}
.element.text-content .item {
  min-width: 10rem;
}
.element.text-content .item .title {
  font-weight: 500;
}
.element.text-content .item.size {
  min-width: 6.25rem;
}
.element.text-content.--has-meta {
  margin-bottom: 12.5rem;
}
.element.text-content.--has-meta > .container {
  margin-bottom: 0;
}

@media screen and (max-width: 600px) {
  .element.text-content:first-child {
    margin-top: 4.375rem;
  }
  .element.text-content > .container {
    margin: 2.5rem 0;
    padding: 0 1.25rem;
    gap: 1.25rem;
    flex-direction: column;
  }
  .element.text-content > .container .heading {
    width: 100%;
  }
  .element.text-content > .container .heading:empty {
    display: none;
  }
  .element.text-content > .container .heading h1, .element.text-content > .container .heading h2 {
    font-size: 1.875rem;
  }
  .element.text-content > .container .content {
    width: 100%;
  }
  .element.text-content > .meta {
    gap: 0.625rem;
    margin-top: 1.875rem;
  }
  .element.text-content > .meta .heading, .element.text-content > .meta .content {
    flex-wrap: wrap;
    gap: 0.625rem 2.5rem;
  }
  .element.text-content > .meta .short_description {
    width: auto;
  }
  .element.text-content .item {
    min-width: 0;
  }
  .element.text-content.--has-meta {
    margin-bottom: 2.5rem;
  }
  .element.text-content.--has-meta > .container {
    margin-bottom: 0;
  }
}
.element.large-image {
  margin: 4.375rem 0;
}
.element.large-image > .container {
  padding: 0 4.375rem;
}
.element.large-image > .container > .picture {
  position: relative;
  margin-bottom: 1.875rem;
}
.element.large-image > .container > .picture > img {
  width: 100%;
  height: auto;
  display: block;
}
.element.large-image > .container > .picture figcaption {
  margin-top: 1.875rem;
  width: 23.75rem;
}
.element.large-image > .container > .picture.--wide[data-next=right] figcaption {
  position: absolute;
  top: 100%;
  left: 0;
}
.element.large-image > .container > .picture.--wide[data-next=left] figcaption {
  position: absolute;
  top: 100%;
  right: 0;
}
.element.large-image > .container > .picture.--narrow {
  width: 55rem;
}
.element.large-image > .container > .picture.--narrow.--right {
  margin-left: auto;
}

@media screen and (max-width: 600px) {
  .element.large-image {
    margin: 2.5rem 0;
  }
  .element.large-image > .container {
    padding: 0 1.25rem;
  }
  .element.large-image > .container > .picture {
    margin-bottom: 1.875rem;
  }
  .element.large-image > .container > .picture figcaption {
    margin-top: 0.625rem;
    width: 100%;
  }
  .element.large-image > .container > .picture.--wide[data-next=right] figcaption {
    position: static;
  }
  .element.large-image > .container > .picture.--wide[data-next=left] figcaption {
    position: static;
  }
  .element.large-image > .container > .picture.--narrow {
    width: 100%;
  }
  .element.large-image > .container > .picture.--narrow.--right {
    margin-left: 0;
  }
}
.element.image-gallery {
  padding: 0;
  margin: 4.375rem 0;
}
.element.image-gallery .container {
  overflow: hidden;
}
.element.image-gallery .container .pictures {
  position: relative;
  margin: 0 -0.9375rem;
  gap: 1.875rem 0;
  display: flex;
  align-items: stretch;
  flex-wrap: wrap;
}
.element.image-gallery .container .pictures .picture {
  width: 25%;
  padding: 0 0.9375rem;
  padding-bottom: 1.25rem;
}
.element.image-gallery .container .pictures .picture a {
  display: block;
  position: relative;
  text-decoration: none;
}
.element.image-gallery .container .pictures .picture a > img {
  display: block;
  width: 100%;
  height: auto;
  margin-bottom: 0.625rem;
}
.element.image-gallery .container .pictures .picture figcaption {
  font-size: 0.875rem;
  padding: 0 0.9375rem;
  line-height: 1.2em;
}
.element.image-gallery.--margin {
  padding: 0 4.375rem;
}

@media screen and (max-width: 600px) {
  .element.image-gallery {
    margin: 2.5rem 0;
  }
  .element.image-gallery .container .pictures {
    margin: 0 -0.625rem;
    gap: 1.25rem 0;
  }
  .element.image-gallery .container .pictures .picture {
    width: 50%;
    padding: 0 0.625rem;
    padding-bottom: 0.625rem;
  }
  .element.image-gallery .container .pictures .picture a > img {
    margin-bottom: 0.5rem;
  }
  .element.image-gallery .container .pictures .picture figcaption {
    font-size: 0.75rem;
    padding: 0 0.625rem;
  }
  .element.image-gallery.--margin {
    padding: 0 1.25rem;
  }
}
.element.map {
  padding: 0;
  margin: 4.375rem 0;
}
.element.map .container {
  overflow: hidden;
}
.element.map .container .map {
  height: 25rem;
}
.element.map.--margin {
  padding: 0 4.375rem;
}

@media screen and (max-width: 600px) {
  .element.map {
    margin: 2.5rem 0;
  }
  .element.map.--margin {
    padding: 0 1.25rem;
  }
}
@media screen and (max-width: 600px) {
  h1, h2 {
    -webkit-hyphens: auto;
    hyphens: auto;
    -webkit-hyphenate-limit-before: 5;
    -webkit-hyphenate-limit-after: 5;
    -ms-hyphenate-limit-chars: 10 5 5;
    hyphenate-limit-chars: 10 5 5;
  }
  :root {
    font-size: 4.2666666667vw;
    --safety-padding: 1.25rem;
    --layout-width: 23.4375rem;
    --font-small: 0.75rem;
    --font-body: 0.875rem;
    --font-larger: 1.125rem;
    --font-heading: 1.5rem;
  }
  header .logo {
    z-index: 100;
  }
  header .logo img {
    height: 3.75rem;
  }
  header .container {
    gap: 0.625rem;
    height: 2.5rem;
  }
  header .container .tagline {
    z-index: 100;
    padding-left: 0.9375rem;
    font-size: 0.875rem;
  }
  header .container nav {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: var(--app-height);
    background-color: #fff;
    transform: translateY(-100%) translateZ(0);
    -webkit-backface-visibility: hidden;
            backface-visibility: hidden;
    transition: transform 0.5s 0s;
    font-size: 1.875rem;
    z-index: -2;
  }
  header .container nav > div > ul.menu {
    opacity: 0;
    transition: opacity 0.25s 0.25s;
    -webkit-backface-visibility: hidden;
            backface-visibility: hidden;
    margin-top: 5rem;
    justify-content: flex-end;
    flex-direction: column;
    align-items: flex-end;
    gap: 1.25rem;
  }
  header .container nav > div > ul.menu > li {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
  }
  header .container nav > div > ul.menu > li.menu-item-has-children ul.sub-menu {
    background-color: transparent;
    display: block;
    position: static;
  }
  header .container nav > div > ul.menu > li.menu-item-has-children ul.sub-menu li {
    display: block;
    font-size: 1.125rem;
  }
  header .container nav > div > ul.menu > li.menu-item-has-children ul.sub-menu li > a {
    padding-top: 0.3125rem;
    padding-bottom: 0.3125rem;
    display: block;
    text-align: right;
    min-height: 0;
  }
  header .container nav > div > ul.menu > li.menu-item-has-children:hover {
    background-color: transparent;
  }
  header .container nav > div a {
    padding: 0 2.5rem;
    min-width: initial;
    display: flex;
    align-items: center;
    min-height: 2.5rem;
    text-decoration: none;
  }
  header .container nav > div a:hover {
    background-color: transparent;
    color: #000;
    text-decoration: underline;
  }
  header .container nav > div li.contact a {
    padding: 0 2.5rem;
    background: transparent;
    min-width: initial;
    color: inherit;
  }
  header .container nav > div li.contact a::after {
    content: "";
    display: none;
  }
  header li.current-menu-item > a {
    background-color: transparent !important;
    color: var(--color-blue);
  }
  header button[data-action=toggle-menu] {
    display: block;
    position: absolute;
    top: 0;
    right: 0;
    width: 2.5rem;
    height: 2.5rem;
    border: none;
    border-radius: 0;
    background-color: transparent;
  }
  header button[data-action=toggle-menu]::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("../svg/icon-plus.svg?2025") no-repeat 50% 50%;
    background-size: auto 102%;
    pointer-events: none;
    transition: transform 0.5s;
    transform: rotateZ(0);
  }
  body.--menu-open {
    overflow: hidden;
  }
  body.--menu-open header .container nav {
    transform: translateY(0) translateZ(0);
  }
  body.--menu-open header .container nav ul.menu {
    opacity: 1;
    transition: opacity 0.25s 0.25s;
  }
  body.--menu-open header button[data-action=toggle-menu]::after {
    transform: rotateZ(45deg) scale(0.6);
  }
  body.--page-scrolled-down:not(.--menu-open) header .logo {
    transform: scale(0.6683333333);
  }
  body.--page-scrolled-down:not(.--menu-open) header .container .tagline {
    transform: translateX(-1.25rem);
    transition: transform 0.3s;
  }
  body.single-project header li.projects {
    background-color: transparent;
    color: var(--color-blue);
  }
  footer {
    margin-top: 3.75rem;
  }
  footer > .contact-container {
    justify-content: flex-end;
  }
  footer > .contact-container .text {
    display: none;
  }
  footer > .contact-container .link {
    height: 2rem;
    padding: 0 1.25rem;
    font-size: 0.875rem;
  }
  footer > .container {
    background-color: var(--color-blue);
    padding: 1.25rem;
    padding-top: 2.5rem;
    display: flex;
    justify-content: space-between;
    flex-direction: column;
    gap: 1.25rem;
  }
  footer > .container > .content-container .branding {
    margin-bottom: 1.25rem;
  }
  footer > .container > .content-container .branding .logos {
    width: auto;
  }
  footer > .container > .content-container .branding .logos .logo {
    margin-bottom: 1.25rem;
  }
  footer > .container > .content-container .branding .logos .logo img {
    width: 12.5rem;
  }
  footer > .container > .content-container .branding .logos .solwers-logo img {
    width: 9.375rem;
  }
  footer > .container > .content-container .branding .text {
    padding-left: 1.25rem;
    font-size: 1rem;
    line-height: 1.1em;
    transform: translateY(0.125rem);
  }
  footer > .container > .content-container .panes {
    font-size: 0.875rem;
    display: block;
  }
  footer > .container > .content-container .panes .pane {
    width: auto;
  }
  footer > .container > .content-container .panes .pane:nth-child(1) {
    padding-top: 0;
  }
  footer > .container > .content-container .panes .pane:nth-child(2), footer > .container > .content-container .panes .pane:nth-child(3), footer > .container > .content-container .panes .pane:nth-child(4) {
    padding-top: 0.625rem;
  }
  footer > .container > .links-container {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 1.875rem;
    width: auto;
  }
  footer > .container > .links-container .links {
    display: flex;
    flex-wrap: wrap;
  }
  footer > .container > .links-container .links .link-container {
    width: 50%;
    padding-right: 1.25rem;
  }
  footer > .container > .links-container .social-media-links {
    justify-content: flex-end;
    gap: 1.5625rem;
  }
  footer > .container > .links-container .social-media-links .link {
    width: 1.5625rem;
    height: 1.5625rem;
    background-size: auto 1.5625rem;
  }
  body.home footer {
    margin-top: 0;
  }
}
/*# sourceMappingURL=main.css.map */
