@charset "UTF-8";
/*
Theme Name: BAMO
Author: SDCO Partners
Author URI: https://sdcopartners.com/
Version: 1.0
*/
html, body, div, span, applet, object, iframe,
h1, h2, h3, h5, h6, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

body {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

/* apply a natural box layout model to all elements, but allowing components to change */
html {
  box-sizing: border-box;
}

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

* {
  box-sizing: border-box;
}

html {
  font-size: 62.5%;
}

@font-face {
  font-family: "GT Super Display";
  src: url("fonts/GT-Super-Display-Light.woff2") format("woff2"), url("fonts/GT-Super-Display-Light.woff") format("woff"), url("fonts/GT-Super-Display-Light.ttf") format("truetype");
  font-weight: 100;
  -webkit-font-smoothing: antialiased;
}
@font-face {
  font-family: "Cerebri Sans Pro";
  src: url("fonts/CerebriSansPro-Light.woff2") format("woff2"), url("fonts/CerebriSansPro-Light.woff") format("woff");
  font-weight: 400;
}
@font-face {
  font-family: "Cerebri Sans Pro";
  src: url("fonts/CerebriSansPro-Medium.woff2") format("woff2"), url("fonts/CerebriSansPro-Medium.woff") format("woff");
  font-weight: 600;
}
html {
  -moz-osx-font-smoothing: grayscale;
  font-size: 93.75%;
}

body {
  font-weight: 400;
}

a {
  color: inherit;
  text-decoration: none;
}
a:hover, a:focus {
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.1em;
}

p {
  margin-bottom: 1rem;
}

body {
  background: white;
  font-family: "Cerebri Sans Pro", sans-serif;
  font-weight: 400;
  line-height: 1.75;
  color: #000000;
}

p {
  margin-bottom: 1rem;
}

h1, .h1, h2, .h2, h3, .h3, h4, .h4, h5 {
  margin: 0 0 2rem 0;
  line-height: 1;
}

.h0 {
  margin-top: 0;
  font-size: 5rem;
  font-family: "GT Super Display", serif;
  font-weight: 100;
  line-height: 0.85;
}
@media (min-width: 1024px) {
  .h0 {
    font-size: 8rem;
  }
}

.h1,
h1.wp-block-heading {
  margin-top: 0;
  font-size: 4rem;
  font-family: "GT Super Display", serif;
  font-weight: 100;
  line-height: 1.1;
}
@media (min-width: 1024px) {
  .h1,
  h1.wp-block-heading {
    font-size: 5rem;
  }
}

.h2,
h2.wp-block-heading {
  font-size: 3rem;
  font-family: "GT Super Display", serif;
  font-weight: 100;
  line-height: 1.15;
}
@media (min-width: 1024px) {
  .h2,
  h2.wp-block-heading {
    font-size: 4rem;
  }
}

.h3,
h3.wp-block-heading {
  font-size: 2rem;
  font-family: "GT Super Display", serif;
  font-weight: 100;
  line-height: 1.3;
}
@media (min-width: 1024px) {
  .h3,
  h3.wp-block-heading {
    font-size: 3rem;
  }
}

.h4,
h4.wp-block-heading {
  font-size: 2rem;
  font-family: "Cerebri Sans Pro", sans-serif;
  font-weight: 400;
  line-height: 1.3;
}
.h4.serif,
h4.wp-block-heading.serif {
  font-family: "GT Super Display", serif;
}

.h5 {
  font-size: 1.3rem;
  font-family: "Cerebri Sans Pro", sans-serif;
  font-weight: 400;
  letter-spacing: 0.1em;
}

.body {
  font-family: "Cerebri Sans Pro", sans-serif;
  font-size: 1.5rem;
  line-height: 1.47;
}

.body a {
  text-decoration: underline;
}

.subheadline {
  text-transform: uppercase;
  font-size: 1.5rem;
  letter-spacing: 0.1em;
  font-weight: 500;
}

.body--large {
  font-size: 2rem;
  font-family: "Cerebri Sans Pro", sans-serif;
  line-height: 1.3;
  font-weight: 100;
}

small, .text_small {
  font-size: var(--h6);
}

@keyframes rotate {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.css-rotate {
  animation: rotate 30s linear infinite;
  transform-origin: 50% 50%;
}

.css-bouncy {
  animation-name: bouncy;
  animation-timing-function: ease;
  animation-duration: 2s;
  animation-iteration-count: infinite;
}

@keyframes bouncy {
  0% {
    transform: scale(1, 1) translateY(0);
  }
  10% {
    transform: scale(1.1, 0.9) translateY(0);
  }
  30% {
    transform: scale(0.9, 1.1) translateY(100%);
  }
  50% {
    transform: scale(1.05, 0.95) translateY(0);
  }
  57% {
    transform: scale(1, 1) translateY(0);
  }
  64% {
    transform: scale(1, 1) translateY(0);
  }
  100% {
    transform: scale(1, 1) translateY(0);
  }
}
html {
  font-size: 62.5%;
}

@font-face {
  font-family: "GT Super Display";
  src: url("fonts/GT-Super-Display-Light.woff2") format("woff2"), url("fonts/GT-Super-Display-Light.woff") format("woff"), url("fonts/GT-Super-Display-Light.ttf") format("truetype");
  font-weight: 100;
  -webkit-font-smoothing: antialiased;
}
@font-face {
  font-family: "Cerebri Sans Pro";
  src: url("fonts/CerebriSansPro-Light.woff2") format("woff2"), url("fonts/CerebriSansPro-Light.woff") format("woff");
  font-weight: 400;
}
@font-face {
  font-family: "Cerebri Sans Pro";
  src: url("fonts/CerebriSansPro-Medium.woff2") format("woff2"), url("fonts/CerebriSansPro-Medium.woff") format("woff");
  font-weight: 600;
}
html,
body {
  margin: 0;
  height: 100%;
  width: 100%;
  background: #D9CAB7;
}

body.menu-open,
body.contact-open,
body.bio-modal-open {
  overflow: hidden;
  pointer-events: none;
}
body.menu-open .js-contact-trigger,
body.menu-open .js-menu-trigger,
body.menu-open .js-contact,
body.contact-open .js-contact-trigger,
body.contact-open .js-menu-trigger,
body.contact-open .js-contact,
body.bio-modal-open .js-contact-trigger,
body.bio-modal-open .js-menu-trigger,
body.bio-modal-open .js-contact {
  pointer-events: all;
}

::selection {
  background: #E74C39;
  color: #FFFAF2;
}

::-moz-selection {
  background: #E74C39;
  color: #FFFAF2;
}

.fade-container {
  animation: fadeSiteIn 0.5s ease forwards;
}

.fade-container.fadeSiteOut {
  animation: fadeSiteOut 0.5s ease forwards;
}

#smooth-wrapper {
  overflow: hidden;
  position: fixed;
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

#smooth-content {
  overflow: visible;
  width: 100%;
  will-change: transform;
}

@keyframes fadeSiteIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes fadeSiteOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
.error404 .primary-content {
  overflow: hidden;
}

body {
  min-height: 100vh;
  min-height: 100svh;
  position: relative;
  transition: background 1s;
}

main {
  min-height: 500px;
}

.caption {
  font-size: 14px;
  line-height: 1.5;
  color: #666;
  margin-top: 10px;
}

.loading-screen {
  background-color: #FFFAF2;
  display: flex;
  gap: 2rem;
  justify-content: center;
  height: 100vh;
  height: 100svh;
  padding: 2rem;
  pointer-events: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
}
@media only screen and (min-width: 1024px) {
  .loading-screen {
    padding: 3rem;
  }
}
.loading-screen .loading-screen__logo {
  align-items: flex-end;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 2rem;
  width: 100%;
}
@media only screen and (min-width: 1024px) {
  .loading-screen .loading-screen__logo {
    gap: 3rem;
    flex-direction: row;
  }
}
.loading-screen .loading-screen__logo > * {
  flex: 1;
  display: flex;
  justify-content: flex-end;
}
.loading-screen .loading-screen__logo::before {
  background-color: red;
  clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
  content: "";
  height: 100%;
  aspect-ratio: 3/4;
  max-width: 100%;
}

.btn {
  display: inline-flex;
  align-self: flex-start;
  margin: 1rem 0;
  padding: 0.75rem 1.5rem;
  cursor: pointer;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.05rem;
  transition: color 0.4s, background 0.4s;
}
.btn:hover {
  text-decoration: none;
}
.btn--primary {
  background-color: var(--foreground-dark);
  color: var(--foreground-light);
}
.btn--secondary {
  background-color: var(--foreground-light);
  color: var(--foreground-dark);
  border: 1px solid var(--foreground-dark);
}
.btn--secondary:hover {
  background-color: var(--foreground-dark);
  color: var(--foreground-light);
}

.btn--load-more {
  background: transparent;
  border: none;
  font-weight: bold;
  text-decoration: underline;
  text-underline-offset: 0.2em;
}

.cta, .gform_button_select_files {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  display: inline-block;
  position: relative;
  font-size: 1.4rem;
  line-height: 1.8571428571;
  font-weight: 500;
  appearance: none;
  border: none;
  background: none;
  cursor: pointer;
}
.cta:after, .gform_button_select_files:after {
  content: "";
  display: block;
  height: 1px;
  background: currentColor;
  width: 100%;
  bottom: 0.25em;
  position: relative;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.6s;
}
@media (hover: hover) {
  .cta:hover, .gform_button_select_files:hover {
    text-decoration: none;
  }
  .cta:hover:after, .gform_button_select_files:hover:after {
    transform: scaleX(1);
    transform-origin: left;
  }
}

.large-cta {
  text-decoration: none;
  display: inline-block;
}
.large-cta:after {
  content: "";
  display: block;
  height: 1px;
  background: currentColor;
  width: 100%;
  position: relative;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.6s;
}
@media (hover: hover) {
  .large-cta:hover {
    text-decoration: none;
  }
  .large-cta:hover:after {
    transform: scaleX(1);
    transform-origin: left;
  }
}

.label {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  display: inline-block;
  position: relative;
  font-size: 1.4rem;
  line-height: 1.8571428571;
  font-weight: 500;
}

.align-x--left {
  align-items: flex-start;
}

.align-x--center {
  align-items: center;
  text-align: center;
}

.align-x--right {
  align-items: flex-end;
}

.align-y--center {
  align-items: center;
}

.contact-form {
  background: #e0e0e0;
  bottom: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100vh;
  height: 100svh;
  pointer-events: none;
  position: fixed;
  transform: translateX(540px);
  top: 0;
  right: 0;
  z-index: 1000;
  width: 540px;
  max-width: 100%;
}
.contact-form.active {
  pointer-events: auto;
}
.contact-form .close {
  display: flex;
  font-size: clamp(1.1rem, 1.5vw, 1.3rem);
  justify-content: center;
  position: absolute;
  text-transform: uppercase;
  right: 2rem;
  top: 2rem;
  z-index: 1000;
}
.contact-form .close button {
  align-self: start;
  appearance: none;
  border: 0;
  background: transparent;
  color: currentColor;
  letter-spacing: 0.075rem;
  font-size: clamp(1.1rem, 1.5vw, 1.3rem);
  text-transform: uppercase;
}
.contact-form h3 {
  padding: 2rem 2rem 0;
}
.contact-form form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: 100%;
  overflow-y: scroll;
  scrollbar-width: none;
  padding: 1rem 2rem 2rem;
  position: relative;
  width: 100%;
}
.contact-form form::-webkit-scrollbar {
  display: none;
}
.contact-form form textarea {
  resize: vertical;
  max-width: 100%;
  width: 100%;
}
.contact-form form > div {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  position: relative;
  width: 100%;
}
@media only screen and (min-width: 1024px) {
  .contact-form form > div {
    flex-direction: row;
  }
}
.contact-form form > div > div {
  display: flex;
  flex-direction: column;
  flex: 1;
  position: relative;
}
.contact-form form > div > div:focus-within label {
  display: block;
}
.contact-form form > div > div:focus-within input::placeholder,
.contact-form form > div > div:focus-within textarea::placeholder {
  opacity: 0;
}
.contact-form form > div > div input,
.contact-form form > div > div textarea {
  appearance: none;
  background: transparent;
  border: 1px solid currentColor;
  font-size: clamp(1.1rem, 1.5vw, 1.3rem);
  margin-top: 1.5rem;
  padding: 1rem 1.5rem;
  position: relative;
}
.contact-form form > div > div label,
.contact-form form > div > div input::placeholder,
.contact-form form > div > div textarea::placeholder {
  color: currentColor;
  display: none;
  font-size: clamp(1.1rem, 1.5vw, 1.3rem);
  left: 1.5rem;
  letter-spacing: 0.075em;
  position: absolute;
  text-transform: uppercase;
}
.contact-form form .form__submit {
  display: flex;
  justify-content: center;
  margin-top: 1rem;
}
.contact-form form .form__submit input {
  appearance: none;
  align-items: center;
  aspect-ratio: 1/1;
  background: transparent;
  border: 1px solid currentColor;
  color: currentColor;
  display: flex;
  font-size: clamp(1.1rem, 1.5vw, 1.3rem);
  justify-content: center;
  letter-spacing: 0.075em;
  padding: clamp(0.5rem, 5vmin, 1.25rem);
  text-transform: uppercase;
  height: 6.875rem;
  width: 6.875rem;
}
@media only screen and (min-width: 1024px) {
  .contact-form form .form__submit input {
    height: 8.75rem;
    width: 8.75rem;
  }
}

main {
  position: relative;
  z-index: 2;
  backface-visibility: hidden;
}

.section,
.footer {
  padding-top: calc(var(--padding-top) / 2);
  padding-bottom: calc(var(--padding-bottom) / 2);
}
@media (min-width: 1024px) {
  .section,
  .footer {
    padding-top: var(--padding-top);
    padding-bottom: var(--padding-bottom);
  }
}

.section:first-child {
  padding-top: var(--padding-top);
}

.wrapper {
  padding-left: 2.5rem;
  padding-right: 2.5rem;
  margin-left: auto;
  margin-right: auto;
}
@media (min-width: 1280px) {
  .wrapper {
    padding-left: 5rem;
    padding-right: 5rem;
  }
}

.wrapper--extra-small {
  padding-left: 0;
  padding-right: 0;
  max-width: 240px;
}

.wrapper--small {
  padding-left: 0;
  padding-right: 0;
  max-width: 360px;
}

@media (min-width: calc(1024px + 4rem)) {
  .wrapper--narrow {
    padding-left: 0;
    padding-right: 0;
    max-width: 540px;
  }
}

@media (min-width: calc(780px + 4rem)) {
  .wrapper--blog {
    padding-left: 0;
    padding-right: 0;
    max-width: var(--blog, 780px);
  }
}

@media (min-width: calc(1600px + 4rem)) {
  .wrapper--wide {
    padding-left: 0;
    padding-right: 0;
    max-width: var(--wide, 1600px);
  }
}

.wrapper--fullscreen {
  padding-left: 0;
  padding-right: 0;
}

.color-scheme--1 .cta {
  color: var(--color-4, #E74C39);
}

.color-scheme--1,
.color-scheme--2,
.color-scheme--3,
.color-scheme--4,
.color-scheme--5,
.color-scheme--6 {
  background-color: var(--color-one, #FFFAF2);
  background-size: 256px;
  color: var(--color-two, #2D2926);
}
.color-scheme--1 .accent-color,
.color-scheme--2 .accent-color,
.color-scheme--3 .accent-color,
.color-scheme--4 .accent-color,
.color-scheme--5 .accent-color,
.color-scheme--6 .accent-color {
  color: var(--color-three, #E74C39);
}
.color-scheme--1 .accent-color-alt,
.color-scheme--2 .accent-color-alt,
.color-scheme--3 .accent-color-alt,
.color-scheme--4 .accent-color-alt,
.color-scheme--5 .accent-color-alt,
.color-scheme--6 .accent-color-alt {
  color: var(--color-four, #E74C39);
}

.splide__track .splide__slide,
.splide__track .splide__slide a {
  cursor: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='122' height='122' viewBox='0 0 122 122'%3E%3Cpath fill='%232d2926' d='M64.44 56.51 61 65.49h1.13l.83-2.2h4.32l.83 2.2h1.14l-3.46-8.98h-1.35Zm-1.14 5.87 1.82-4.8 1.82 4.8H63.3ZM61 0C27.31 0 0 27.31 0 61s27.31 61 61 61 61-27.31 61-61S94.69 0 61 0Zm0 121C27.86 121 1 94.14 1 61S27.86 1 61 1s60 26.86 60 60-26.86 60-60 60ZM44.58 56.51h-2.3v8.98h2.3c1.55 0 2.64-.3 3.39-.9.97-.75 1.46-1.96 1.46-3.6s-.48-2.85-1.46-3.59c-.75-.6-1.85-.9-3.39-.9Zm2.65 7.32c-.6.47-1.46.72-2.66.72h-1.22v-7.09h1.22c1.21 0 2.07.23 2.66.72.75.57 1.13 1.52 1.13 2.82s-.38 2.26-1.13 2.83Zm28.33-2.99h4.16v4.65h-.87V63.5c-.55 1.3-1.69 2.14-3.39 2.14-2.61 0-4.45-1.89-4.45-4.65s1.86-4.64 4.51-4.64c1.74 0 3.13.82 3.89 2.17l-.94.49c-.57-1.04-1.64-1.68-2.95-1.68-2.04 0-3.43 1.47-3.43 3.65s1.35 3.67 3.43 3.67c1.76 0 2.91-1.1 3.15-2.94h-3.11v-.88Zm-18.35.92c.86-.47 1.29-1.38 1.29-2.5 0-.96-.33-1.7-.9-2.16-.55-.42-1.25-.6-2.4-.6h-2.78v8.98h1.07v-3.37h1.82l2.31 3.37h1.34L56.5 62c.26-.05.49-.13.72-.25Zm-2.14-.56h-1.59v-3.78h1.59c.73 0 1.31.08 1.72.36.42.31.65.83.65 1.53 0 .77-.27 1.31-.79 1.61-.36.22-.92.27-1.57.27Z'/%3E%3C/svg%3E") 61 61, pointer;
}

.hero-container .splide__track .splide__slide a {
  cursor: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='122' height='122' viewBox='0 0 122 122'%3E%3Cpath fill='%23FFFAF2' d='M64.44 56.51 61 65.49h1.13l.83-2.2h4.32l.83 2.2h1.14l-3.46-8.98h-1.35Zm-1.14 5.87 1.82-4.8 1.82 4.8H63.3ZM61 0C27.31 0 0 27.31 0 61s27.31 61 61 61 61-27.31 61-61S94.69 0 61 0Zm0 121C27.86 121 1 94.14 1 61S27.86 1 61 1s60 26.86 60 60-26.86 60-60 60ZM44.58 56.51h-2.3v8.98h2.3c1.55 0 2.64-.3 3.39-.9.97-.75 1.46-1.96 1.46-3.6s-.48-2.85-1.46-3.59c-.75-.6-1.85-.9-3.39-.9Zm2.65 7.32c-.6.47-1.46.72-2.66.72h-1.22v-7.09h1.22c1.21 0 2.07.23 2.66.72.75.57 1.13 1.52 1.13 2.82s-.38 2.26-1.13 2.83Zm28.33-2.99h4.16v4.65h-.87V63.5c-.55 1.3-1.69 2.14-3.39 2.14-2.61 0-4.45-1.89-4.45-4.65s1.86-4.64 4.51-4.64c1.74 0 3.13.82 3.89 2.17l-.94.49c-.57-1.04-1.64-1.68-2.95-1.68-2.04 0-3.43 1.47-3.43 3.65s1.35 3.67 3.43 3.67c1.76 0 2.91-1.1 3.15-2.94h-3.11v-.88Zm-18.35.92c.86-.47 1.29-1.38 1.29-2.5 0-.96-.33-1.7-.9-2.16-.55-.42-1.25-.6-2.4-.6h-2.78v8.98h1.07v-3.37h1.82l2.31 3.37h1.34L56.5 62c.26-.05.49-.13.72-.25Zm-2.14-.56h-1.59v-3.78h1.59c.73 0 1.31.08 1.72.36.42.31.65.83.65 1.53 0 .77-.27 1.31-.79 1.61-.36.22-.92.27-1.57.27Z'/%3E%3C/svg%3E") 61 61, pointer;
}

address {
  appearance: none;
  text-decoration: none;
  font-style: normal;
}

.wp-block-embed__wrapper {
  position: relative;
}

.wp-block-embed__wrapper iframe {
  aspect-ratio: 16/9;
  width: 100%;
  height: auto;
}

html {
  font-size: 62.5%;
}

@font-face {
  font-family: "GT Super Display";
  src: url("fonts/GT-Super-Display-Light.woff2") format("woff2"), url("fonts/GT-Super-Display-Light.woff") format("woff"), url("fonts/GT-Super-Display-Light.ttf") format("truetype");
  font-weight: 100;
  -webkit-font-smoothing: antialiased;
}
@font-face {
  font-family: "Cerebri Sans Pro";
  src: url("fonts/CerebriSansPro-Light.woff2") format("woff2"), url("fonts/CerebriSansPro-Light.woff") format("woff");
  font-weight: 400;
}
@font-face {
  font-family: "Cerebri Sans Pro";
  src: url("fonts/CerebriSansPro-Medium.woff2") format("woff2"), url("fonts/CerebriSansPro-Medium.woff") format("woff");
  font-weight: 600;
}
.header-container {
  position: fixed;
  z-index: 10;
  width: 100%;
  top: 0;
  left: 0;
}

.header {
  z-index: 10;
  width: 100%;
  z-index: 10;
  color: #FFFAF2;
  color: #2D2926;
}
.header.nav-up .header__bar {
  transform: translateY(-200%);
}

.header__bar {
  transition: transform 0.4s;
  width: 100%;
  color: var(--color-two);
  background: transparent !important;
  position: relative;
}

.header__bar-inner {
  padding: 5rem;
  display: flex;
  align-items: center;
  position: relative;
  width: 100%;
  justify-content: space-between;
}

.header__logo, .header__menu-trigger, .header__btn {
  pointer-events: all;
}

.header__btn {
  appearance: none;
  border: none;
  background: transparent;
  color: currentColor;
  z-index: 10;
  text-transform: uppercase;
  letter-spacing: 0.11em;
  z-index: 10;
  font-size: 1.5rem;
  font-family: "Cerebri Sans Pro", sans-serif;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.4s;
  margin: 0;
  line-height: 1;
  padding: 0;
}

.header__menu-trigger {
  display: inline-flex;
  width: 25px;
  height: 18px;
  flex-direction: column;
  border: none;
  padding: 0;
  justify-content: space-between;
  left: unset;
  position: relative;
  z-index: 10;
  background: transparent;
  cursor: pointer;
  color: var(--color-two, #FFFAF2);
}
.header__menu-trigger span {
  display: none;
}
.header__menu-trigger div {
  width: 100%;
  height: 2px;
  display: block;
  position: absolute;
  background: currentColor;
}
.header__menu-trigger div:first-child {
  top: 0%;
  transition: all 0.4s;
}
.header__menu-trigger div:nth-child(2) {
  top: 50%;
  transform: translateY(-50%);
  transition: all 0.4s;
}
.header__menu-trigger div:last-child {
  top: 100%;
  transition: all 0.4s;
  transform: translateY(-100%);
}
.header__menu-trigger.active div {
  background: #4d0902;
}
.header__menu-trigger.active div:first-child {
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
  transition: all 0.4s;
}
.header__menu-trigger.active div:nth-child(2) {
  transform: translateX(-100%);
  opacity: 0;
  transition: all 0.4s;
}
.header__menu-trigger.active div:last-child {
  top: 50%;
  transform: translateY(-50%) rotate(-45deg);
  transition: all 0.4s;
}

.header__logo {
  margin: 0 auto;
  display: block;
  width: 132px;
  color: var(--color-two);
  transition: color 0.4s;
  position: absolute;
  left: 0;
  right: 0;
}
.header__logo svg {
  display: block;
  width: 100%;
}
.header__logo svg path {
  fill: currentColor;
}

.header__close-trigger {
  border: none;
  appearance: none;
  width: 2rem;
  height: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  position: absolute;
  right: 2rem;
  top: 2rem;
  padding: 0;
  transform: rotate(45deg);
  cursor: pointer;
}
.header__close-trigger span {
  height: 2px;
  width: 100%;
  background: currentColor;
}
.header__close-trigger span:last-child {
  position: absolute;
  transform: rotate(90deg);
  transform-origin: center;
  top: 50%;
}

.header__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  z-index: 1;
  pointer-events: none;
}
.header__bg.active {
  pointer-events: all;
}

.header__menu {
  background-color: #E74C39;
  background-size: cover;
  color: #4d0902;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  padding: 2rem;
  z-index: 2;
  display: flex;
  flex-direction: column;
  transition: opacity 0.6s;
  pointer-events: none;
  opacity: 0;
  justify-content: center;
}
.header__menu.active {
  opacity: 1;
  pointer-events: all;
}
.header__menu .menu {
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media (min-width: 1024px) {
  .header__menu .menu {
    padding: 0 5rem;
    flex-direction: row;
    justify-content: space-between;
  }
}
.header__menu .menu li {
  line-height: 1.75;
}
.header__menu .menu li a {
  color: #4d0902;
  font-family: "GT Super Display", serif;
  font-style: normal;
  font-size: 3.8rem;
  transition: color 0.4s;
  text-decoration: none;
  position: relative;
  text-decoration: none;
}
@media (min-width: 1024px) {
  .header__menu .menu li a {
    font-size: clamp(2.4rem, 2.75vw, 3.4375rem);
  }
}
.header__menu .menu li a:after {
  content: "";
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: #4d0902;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.4s;
}
.header__menu .menu li a:hover:after {
  transform: scaleX(1);
  transform-origin: left;
}
.header__menu .menu .sub-menu {
  padding-left: 2rem;
  margin: 0 0 0.5rem 0;
}
.header__menu .menu .sub-menu li a {
  font-size: 1.3rem;
  font-family: "Cerebri Sans Pro", sans-serif;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  line-height: 1.5;
}

.header__menu-bg {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}
.header__menu-bg svg {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.header__menu-bg svg:first-child {
  display: none;
}
@media (min-width: 1024px) {
  .header__menu-bg svg:first-child {
    display: block;
  }
}
.header__menu-bg svg:last-child {
  display: block;
}
@media (min-width: 1024px) {
  .header__menu-bg svg:last-child {
    display: none;
  }
}

.footer-container {
  background-image: url("images/footer-mobile-bg.svg");
  background-size: cover;
  background-position: bottom;
  background-color: #FFFAF2;
  overflow: hidden;
  position: relative;
  max-width: 100vw;
}
@media (min-width: 1024px) {
  .footer-container {
    background-image: url("images/footer-bg.svg");
  }
}

.footer {
  padding-top: 5rem;
  display: grid;
  grid-row-gap: 1rem;
  grid-template-areas: "content content" "details details" "logo logo" "social social";
}
@media (min-width: 1024px) {
  .footer {
    padding-top: 5rem;
    grid-row-gap: 2rem;
    grid-template-areas: "content details" "logo logo" "social social";
    grid-row-gap: 0;
  }
}
.footer strong {
  text-transform: uppercase;
  font-size: 1.3rem;
  letter-spacing: 0.1em;
}

.footer__content {
  grid-area: content;
}
.footer__content .h1 {
  margin-bottom: 1rem;
  display: block;
}

.footer__details {
  grid-area: details;
}

.footer__legal {
  display: flex;
}
.footer__legal li {
  font-size: 1.3rem;
}
.footer__legal li:after {
  content: "|";
  margin: 0 0.5rem;
}
.footer__legal li:last-child:after {
  content: "";
  margin: 0;
}

.footer__credit {
  font-size: 1.3rem;
  margin-top: 1rem;
}

.footer__logo {
  grid-area: logo;
  margin-top: 2.5rem;
  margin-bottom: 2.5rem;
}
@media (min-width: 1024px) {
  .footer__logo {
    margin-top: 5rem;
    margin-bottom: 5rem;
  }
}
.footer__logo svg {
  display: block;
  width: 100%;
}
.footer__logo svg path {
  fill: currentColor;
}

.footer__columns {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-column-gap: 2rem;
  grid-row-gap: 2rem;
  margin-top: 1rem;
}
@media (min-width: 768px) {
  .footer__columns {
    display: flex;
    justify-content: space-between;
    margin-top: 0;
  }
}
.footer__columns strong {
  margin-bottom: 0.75rem;
  display: block;
}
.footer__columns address, .footer__columns ul li a {
  font-size: 1.3rem;
  font-family: "Cerebri Sans Pro", sans-serif;
  font-style: normal;
}

.footer__social-menu {
  display: flex;
  justify-content: space-between;
  margin-top: 1rem;
}
.footer__social-menu svg {
  width: 16px;
}
.footer__social-menu span {
  clip: rect(0 0 0 0);
  visibility: hidden;
  position: absolute;
}

.footer__newsletter {
  margin-top: 2rem;
}

#newsletter .gform_wrapper {
  position: relative;
}
#newsletter .gform_wrapper .gfield--type-email .gfield_label {
  display: none;
}
#newsletter .gform_wrapper .gfield--type-email input[type=email] {
  background: transparent;
  border: none;
  border-bottom: 1px solid #2D2926;
  padding-left: 0;
  font-family: "Cerebri Sans Pro", sans-serif;
  font-size: 1.3rem;
  color: #2D2926;
  border-radius: 0;
  appearance: none;
}
#newsletter .gform_wrapper .gfield--type-email input[type=email]:focus {
  outline: none;
}
@media (min-width: 1024px) {
  #newsletter .gform_wrapper .gfield--type-email input[type=email] {
    padding-top: 1rem;
    font-size: 1.3rem;
  }
}
#newsletter .gform_wrapper ::placeholder {
  color: #BCB1A3;
  opacity: 1; /* Firefox */
}
#newsletter .gform_wrapper.gravity-theme #field_submit .gform_image_button, #newsletter .gform_wrapper.gravity-theme .gform_footer .gform_image_button {
  width: 14px;
  height: 11px;
  position: absolute;
  right: 0;
  bottom: 42px;
  background: url("images/newsletter_arrow.svg") no-repeat;
}
#newsletter .gform_wrapper.gravity-theme .gform_validation_errors, #newsletter .gform_wrapper.gravity-theme .gfield_validation_message, #newsletter .gform_wrapper.gravity-theme .validation_message {
  border: none;
  background: transparent;
  box-shadow: none;
  font-family: "Cerebri Sans Pro", sans-serif;
}
#newsletter .gform_wrapper.gravity-theme .gfield_description {
  padding-left: 0;
  padding-top: 5px;
}

.footer__social {
  grid-area: social;
  padding-bottom: 1rem;
}
.footer__social ul {
  display: flex;
  justify-content: space-between;
}
.footer__social ul li a {
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 1.1rem;
}
@media (min-width: 1024px) {
  .footer__social ul li a {
    font-size: 1.3rem;
  }
}

.tab-container {
  padding: 5rem 0;
}
.tab-container .container {
  display: flex;
  align-items: center;
  flex-direction: column;
}
@media (min-width: 1024px) {
  .tab-container .container {
    flex-direction: row;
  }
}

.tabs {
  display: flex;
  flex-shrink: 0;
  flex-direction: column;
  width: 100%;
  text-align: center;
  margin-bottom: 2.5rem;
}
@media (min-width: 768px) {
  .tabs {
    flex-direction: row;
    margin-right: 1rem;
    width: auto;
    margin-bottom: 0;
  }
}

.tab {
  cursor: pointer;
  display: block;
  white-space: nowrap;
  width: 100%;
}
@media (min-width: 768px) {
  .tab {
    display: inline-block;
  }
}
.tab:first-child {
  margin-bottom: 10px;
}
@media (min-width: 768px) {
  .tab:first-child {
    margin-right: 10px;
    margin-bottom: 0;
  }
}
.tab.active, .tab:hover {
  text-decoration: underline;
}

.tab-content {
  display: none;
  padding: 40px 0;
}
.tab-content.active {
  display: block;
}

/**
 * Swiper 9.1.1
 * Most modern mobile touch slider and framework with hardware accelerated transitions
 * https://swiperjs.com
 *
 * Copyright 2014-2023 Vladimir Kharlampidi
 *
 * Released under the MIT License
 *
 * Released on: March 16, 2023
 */
/* FONT_START */
@font-face {
  font-family: "swiper-icons";
  src: url("data:application/font-woff;charset=utf-8;base64, d09GRgABAAAAAAZgABAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABGRlRNAAAGRAAAABoAAAAci6qHkUdERUYAAAWgAAAAIwAAACQAYABXR1BPUwAABhQAAAAuAAAANuAY7+xHU1VCAAAFxAAAAFAAAABm2fPczU9TLzIAAAHcAAAASgAAAGBP9V5RY21hcAAAAkQAAACIAAABYt6F0cBjdnQgAAACzAAAAAQAAAAEABEBRGdhc3AAAAWYAAAACAAAAAj//wADZ2x5ZgAAAywAAADMAAAD2MHtryVoZWFkAAABbAAAADAAAAA2E2+eoWhoZWEAAAGcAAAAHwAAACQC9gDzaG10eAAAAigAAAAZAAAArgJkABFsb2NhAAAC0AAAAFoAAABaFQAUGG1heHAAAAG8AAAAHwAAACAAcABAbmFtZQAAA/gAAAE5AAACXvFdBwlwb3N0AAAFNAAAAGIAAACE5s74hXjaY2BkYGAAYpf5Hu/j+W2+MnAzMYDAzaX6QjD6/4//Bxj5GA8AuRwMYGkAPywL13jaY2BkYGA88P8Agx4j+/8fQDYfA1AEBWgDAIB2BOoAeNpjYGRgYNBh4GdgYgABEMnIABJzYNADCQAACWgAsQB42mNgYfzCOIGBlYGB0YcxjYGBwR1Kf2WQZGhhYGBiYGVmgAFGBiQQkOaawtDAoMBQxXjg/wEGPcYDDA4wNUA2CCgwsAAAO4EL6gAAeNpj2M0gyAACqxgGNWBkZ2D4/wMA+xkDdgAAAHjaY2BgYGaAYBkGRgYQiAHyGMF8FgYHIM3DwMHABGQrMOgyWDLEM1T9/w8UBfEMgLzE////P/5//f/V/xv+r4eaAAeMbAxwIUYmIMHEgKYAYjUcsDAwsLKxc3BycfPw8jEQA/gZBASFhEVExcQlJKWkZWTl5BUUlZRVVNXUNTQZBgMAAMR+E+gAEQFEAAAAKgAqACoANAA+AEgAUgBcAGYAcAB6AIQAjgCYAKIArAC2AMAAygDUAN4A6ADyAPwBBgEQARoBJAEuATgBQgFMAVYBYAFqAXQBfgGIAZIBnAGmAbIBzgHsAAB42u2NMQ6CUAyGW568x9AneYYgm4MJbhKFaExIOAVX8ApewSt4Bic4AfeAid3VOBixDxfPYEza5O+Xfi04YADggiUIULCuEJK8VhO4bSvpdnktHI5QCYtdi2sl8ZnXaHlqUrNKzdKcT8cjlq+rwZSvIVczNiezsfnP/uznmfPFBNODM2K7MTQ45YEAZqGP81AmGGcF3iPqOop0r1SPTaTbVkfUe4HXj97wYE+yNwWYxwWu4v1ugWHgo3S1XdZEVqWM7ET0cfnLGxWfkgR42o2PvWrDMBSFj/IHLaF0zKjRgdiVMwScNRAoWUoH78Y2icB/yIY09An6AH2Bdu/UB+yxopYshQiEvnvu0dURgDt8QeC8PDw7Fpji3fEA4z/PEJ6YOB5hKh4dj3EvXhxPqH/SKUY3rJ7srZ4FZnh1PMAtPhwP6fl2PMJMPDgeQ4rY8YT6Gzao0eAEA409DuggmTnFnOcSCiEiLMgxCiTI6Cq5DZUd3Qmp10vO0LaLTd2cjN4fOumlc7lUYbSQcZFkutRG7g6JKZKy0RmdLY680CDnEJ+UMkpFFe1RN7nxdVpXrC4aTtnaurOnYercZg2YVmLN/d/gczfEimrE/fs/bOuq29Zmn8tloORaXgZgGa78yO9/cnXm2BpaGvq25Dv9S4E9+5SIc9PqupJKhYFSSl47+Qcr1mYNAAAAeNptw0cKwkAAAMDZJA8Q7OUJvkLsPfZ6zFVERPy8qHh2YER+3i/BP83vIBLLySsoKimrqKqpa2hp6+jq6RsYGhmbmJqZSy0sraxtbO3sHRydnEMU4uR6yx7JJXveP7WrDycAAAAAAAH//wACeNpjYGRgYOABYhkgZgJCZgZNBkYGLQZtIJsFLMYAAAw3ALgAeNolizEKgDAQBCchRbC2sFER0YD6qVQiBCv/H9ezGI6Z5XBAw8CBK/m5iQQVauVbXLnOrMZv2oLdKFa8Pjuru2hJzGabmOSLzNMzvutpB3N42mNgZGBg4GKQYzBhYMxJLMlj4GBgAYow/P/PAJJhLM6sSoWKfWCAAwDAjgbRAAB42mNgYGBkAIIbCZo5IPrmUn0hGA0AO8EFTQAA");
  font-weight: 400;
  font-style: normal;
}
/* FONT_END */
:root {
  --swiper-theme-color: #007aff;
  /*
  --swiper-preloader-color: var(--swiper-theme-color);
  --swiper-wrapper-transition-timing-function: initial;
  */
}

.swiper,
swiper-container {
  margin-left: auto;
  margin-right: auto;
  position: relative;
  overflow: hidden;
  list-style: none;
  padding: 0;
  /* Fix of Webkit flickering */
  z-index: 1;
  display: block;
}

.swiper-vertical > .swiper-wrapper {
  flex-direction: column;
}

.swiper-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 1;
  display: flex;
  transition-property: transform;
  transition-timing-function: var(--swiper-wrapper-transition-timing-function, initial);
  box-sizing: content-box;
}

.swiper-android .swiper-slide,
.swiper-wrapper {
  transform: translate3d(0px, 0, 0);
}

.swiper-horizontal {
  touch-action: pan-y;
}

.swiper-vertical {
  touch-action: pan-x;
}

.swiper-slide,
swiper-slide {
  flex-shrink: 0;
  width: 100%;
  height: 100%;
  position: relative;
  transition-property: transform;
  display: block;
}

.swiper-slide-invisible-blank {
  visibility: hidden;
}

/* Auto Height */
.swiper-autoheight,
.swiper-autoheight .swiper-slide {
  height: auto;
}

.swiper-autoheight .swiper-wrapper {
  align-items: flex-start;
  transition-property: transform, height;
}

.swiper-backface-hidden .swiper-slide {
  transform: translateZ(0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

/* 3D Effects */
.swiper-3d.swiper-css-mode .swiper-wrapper {
  perspective: 1200px;
}

.swiper-3d .swiper-wrapper {
  transform-style: preserve-3d;
}

.swiper-3d {
  perspective: 1200px;
}

.swiper-3d .swiper-slide,
.swiper-3d .swiper-slide-shadow,
.swiper-3d .swiper-slide-shadow-left,
.swiper-3d .swiper-slide-shadow-right,
.swiper-3d .swiper-slide-shadow-top,
.swiper-3d .swiper-slide-shadow-bottom,
.swiper-3d .swiper-cube-shadow {
  transform-style: preserve-3d;
}

.swiper-3d .swiper-slide-shadow,
.swiper-3d .swiper-slide-shadow-left,
.swiper-3d .swiper-slide-shadow-right,
.swiper-3d .swiper-slide-shadow-top,
.swiper-3d .swiper-slide-shadow-bottom {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 10;
}

.swiper-3d .swiper-slide-shadow {
  background: rgba(0, 0, 0, 0.15);
}

.swiper-3d .swiper-slide-shadow-left {
  background-image: linear-gradient(to left, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

.swiper-3d .swiper-slide-shadow-right {
  background-image: linear-gradient(to right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

.swiper-3d .swiper-slide-shadow-top {
  background-image: linear-gradient(to top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

.swiper-3d .swiper-slide-shadow-bottom {
  background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

/* CSS Mode */
.swiper-css-mode > .swiper-wrapper {
  overflow: auto;
  scrollbar-width: none;
  /* For Firefox */
  -ms-overflow-style: none;
  /* For Internet Explorer and Edge */
}

.swiper-css-mode > .swiper-wrapper::-webkit-scrollbar {
  display: none;
}

.swiper-css-mode > .swiper-wrapper > .swiper-slide {
  scroll-snap-align: start start;
}

.swiper-horizontal.swiper-css-mode > .swiper-wrapper {
  scroll-snap-type: x mandatory;
}

.swiper-vertical.swiper-css-mode > .swiper-wrapper {
  scroll-snap-type: y mandatory;
}

.swiper-centered > .swiper-wrapper::before {
  content: "";
  flex-shrink: 0;
  order: 9999;
}

.swiper-centered > .swiper-wrapper > .swiper-slide {
  scroll-snap-align: center center;
  scroll-snap-stop: always;
}

.swiper-centered.swiper-horizontal > .swiper-wrapper > .swiper-slide:first-child {
  margin-inline-start: var(--swiper-centered-offset-before);
}

.swiper-centered.swiper-horizontal > .swiper-wrapper::before {
  height: 100%;
  min-height: 1px;
  width: var(--swiper-centered-offset-after);
}

.swiper-centered.swiper-vertical > .swiper-wrapper > .swiper-slide:first-child {
  margin-block-start: var(--swiper-centered-offset-before);
}

.swiper-centered.swiper-vertical > .swiper-wrapper::before {
  width: 100%;
  min-width: 1px;
  height: var(--swiper-centered-offset-after);
}

.swiper-lazy-preloader {
  width: 42px;
  height: 42px;
  position: absolute;
  left: 50%;
  top: 50%;
  margin-left: -21px;
  margin-top: -21px;
  z-index: 10;
  transform-origin: 50%;
  box-sizing: border-box;
  border: 4px solid var(--swiper-preloader-color, var(--swiper-theme-color));
  border-radius: 50%;
  border-top-color: transparent;
}

.swiper:not(.swiper-watch-progress) .swiper-lazy-preloader,
swiper-container:not(.swiper-watch-progress) .swiper-lazy-preloader,
.swiper-watch-progress .swiper-slide-visible .swiper-lazy-preloader {
  animation: swiper-preloader-spin 1s infinite linear;
}

.swiper-lazy-preloader-white {
  --swiper-preloader-color: #fff;
}

.swiper-lazy-preloader-black {
  --swiper-preloader-color: #000;
}

@keyframes swiper-preloader-spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.swiper-virtual .swiper-slide {
  -webkit-backface-visibility: hidden;
  transform: translateZ(0);
}

.swiper-virtual.swiper-css-mode .swiper-wrapper::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  pointer-events: none;
}

.swiper-virtual.swiper-css-mode.swiper-horizontal .swiper-wrapper::after {
  height: 1px;
  width: var(--swiper-virtual-size);
}

.swiper-virtual.swiper-css-mode.swiper-vertical .swiper-wrapper::after {
  width: 1px;
  height: var(--swiper-virtual-size);
}

:root {
  --swiper-navigation-size: 44px;
  /*
  --swiper-navigation-top-offset: 50%;
  --swiper-navigation-sides-offset: 10px;
  --swiper-navigation-color: var(--swiper-theme-color);
  */
}

.swiper-button-prev,
.swiper-button-next {
  position: absolute;
  top: var(--swiper-navigation-top-offset, 50%);
  width: calc(var(--swiper-navigation-size) / 44 * 27);
  height: var(--swiper-navigation-size);
  margin-top: calc(0px - var(--swiper-navigation-size) / 2);
  z-index: 10;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--swiper-navigation-color, var(--swiper-theme-color));
}

.swiper-button-prev.swiper-button-disabled,
.swiper-button-next.swiper-button-disabled {
  opacity: 0.35;
  cursor: auto;
  pointer-events: none;
}

.swiper-button-prev.swiper-button-hidden,
.swiper-button-next.swiper-button-hidden {
  opacity: 0;
  cursor: auto;
  pointer-events: none;
}

.swiper-navigation-disabled .swiper-button-prev,
.swiper-navigation-disabled .swiper-button-next {
  display: none !important;
}

.swiper-button-prev:after,
.swiper-button-next:after {
  font-family: swiper-icons;
  font-size: var(--swiper-navigation-size);
  text-transform: none !important;
  letter-spacing: 0;
  font-variant: initial;
  line-height: 1;
}

.swiper-button-prev,
.swiper-rtl .swiper-button-next {
  left: var(--swiper-navigation-sides-offset, 10px);
  right: auto;
}

.swiper-button-prev:after,
.swiper-rtl .swiper-button-next:after {
  content: "prev";
}

.swiper-button-next,
.swiper-rtl .swiper-button-prev {
  right: var(--swiper-navigation-sides-offset, 10px);
  left: auto;
}

.swiper-button-next:after,
.swiper-rtl .swiper-button-prev:after {
  content: "next";
}

.swiper-button-lock {
  display: none;
}

:root {
  /*
  --swiper-pagination-color: var(--swiper-theme-color);
  --swiper-pagination-left: auto;
  --swiper-pagination-right: 8px;
  --swiper-pagination-bottom: 8px;
  --swiper-pagination-top: auto;
  --swiper-pagination-fraction-color: inherit;
  --swiper-pagination-progressbar-bg-color: rgba(0,0,0,0.25);
  --swiper-pagination-progressbar-size: 4px;
  --swiper-pagination-bullet-size: 8px;
  --swiper-pagination-bullet-width: 8px;
  --swiper-pagination-bullet-height: 8px;
  --swiper-pagination-bullet-border-radius: 50%;
  --swiper-pagination-bullet-inactive-color: #000;
  --swiper-pagination-bullet-inactive-opacity: 0.2;
  --swiper-pagination-bullet-opacity: 1;
  --swiper-pagination-bullet-horizontal-gap: 4px;
  --swiper-pagination-bullet-vertical-gap: 6px;
  */
}

.swiper-pagination {
  position: absolute;
  text-align: center;
  transition: 300ms opacity;
  transform: translate3d(0, 0, 0);
  z-index: 10;
}

.swiper-pagination.swiper-pagination-hidden {
  opacity: 0;
}

.swiper-pagination-disabled > .swiper-pagination,
.swiper-pagination.swiper-pagination-disabled {
  display: none !important;
}

/* Common Styles */
.swiper-pagination-fraction,
.swiper-pagination-custom,
.swiper-horizontal > .swiper-pagination-bullets,
.swiper-pagination-bullets.swiper-pagination-horizontal {
  bottom: var(--swiper-pagination-bottom, 8px);
  top: var(--swiper-pagination-top, auto);
  left: 0;
  width: 100%;
}

/* Bullets */
.swiper-pagination-bullets-dynamic {
  overflow: hidden;
  font-size: 0;
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  transform: scale(0.33);
  position: relative;
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active {
  transform: scale(1);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-main {
  transform: scale(1);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev {
  transform: scale(0.66);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev-prev {
  transform: scale(0.33);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next {
  transform: scale(0.66);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next-next {
  transform: scale(0.33);
}

.swiper-pagination-bullet {
  width: var(--swiper-pagination-bullet-width, var(--swiper-pagination-bullet-size, 8px));
  height: var(--swiper-pagination-bullet-height, var(--swiper-pagination-bullet-size, 8px));
  display: inline-block;
  border-radius: var(--swiper-pagination-bullet-border-radius, 50%);
  background: var(--swiper-pagination-bullet-inactive-color, #000);
  opacity: var(--swiper-pagination-bullet-inactive-opacity, 0.2);
}

button.swiper-pagination-bullet {
  border: none;
  margin: 0;
  padding: 0;
  box-shadow: none;
  -webkit-appearance: none;
  appearance: none;
}

.swiper-pagination-clickable .swiper-pagination-bullet {
  cursor: pointer;
}

.swiper-pagination-bullet:only-child {
  display: none !important;
}

.swiper-pagination-bullet-active {
  opacity: var(--swiper-pagination-bullet-opacity, 1);
  background: var(--swiper-pagination-color, var(--swiper-theme-color));
}

.swiper-vertical > .swiper-pagination-bullets,
.swiper-pagination-vertical.swiper-pagination-bullets {
  right: var(--swiper-pagination-right, 8px);
  left: var(--swiper-pagination-left, auto);
  top: 50%;
  transform: translate3d(0px, -50%, 0);
}

.swiper-vertical > .swiper-pagination-bullets .swiper-pagination-bullet,
.swiper-pagination-vertical.swiper-pagination-bullets .swiper-pagination-bullet {
  margin: var(--swiper-pagination-bullet-vertical-gap, 6px) 0;
  display: block;
}

.swiper-vertical > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic,
.swiper-pagination-vertical.swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
  top: 50%;
  transform: translateY(-50%);
  width: 8px;
}

.swiper-vertical > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet,
.swiper-pagination-vertical.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  display: inline-block;
  transition: 200ms transform, 200ms top;
}

.swiper-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet,
.swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 0 var(--swiper-pagination-bullet-horizontal-gap, 4px);
}

.swiper-horizontal > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic,
.swiper-pagination-horizontal.swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
  left: 50%;
  transform: translateX(-50%);
  white-space: nowrap;
}

.swiper-horizontal > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet,
.swiper-pagination-horizontal.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  transition: 200ms transform, 200ms left;
}

.swiper-horizontal.swiper-rtl > .swiper-pagination-bullets-dynamic .swiper-pagination-bullet,
:host(.swiper-horizontal.swiper-rtl) .swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  transition: 200ms transform, 200ms right;
}

/* Fraction */
.swiper-pagination-fraction {
  color: var(--swiper-pagination-fraction-color, inherit);
}

/* Progress */
.swiper-pagination-progressbar {
  background: var(--swiper-pagination-progressbar-bg-color, rgba(0, 0, 0, 0.25));
  position: absolute;
  /*ADD_HOST*/
}

.swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  background: var(--swiper-pagination-color, var(--swiper-theme-color));
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  transform: scale(0);
  transform-origin: left top;
}

.swiper-rtl .swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  transform-origin: right top;
}

.swiper-horizontal > .swiper-pagination-progressbar,
.swiper-pagination-progressbar.swiper-pagination-horizontal,
.swiper-vertical > .swiper-pagination-progressbar.swiper-pagination-progressbar-opposite,
.swiper-pagination-progressbar.swiper-pagination-vertical.swiper-pagination-progressbar-opposite {
  width: 100%;
  height: var(--swiper-pagination-progressbar-size, 4px);
  left: 0;
  top: 0;
}

.swiper-vertical > .swiper-pagination-progressbar,
.swiper-pagination-progressbar.swiper-pagination-vertical,
.swiper-horizontal > .swiper-pagination-progressbar.swiper-pagination-progressbar-opposite,
.swiper-pagination-progressbar.swiper-pagination-horizontal.swiper-pagination-progressbar-opposite {
  width: var(--swiper-pagination-progressbar-size, 4px);
  height: 100%;
  left: 0;
  top: 0;
}

.swiper-pagination-lock {
  display: none;
}

:root {
  /*
  --swiper-scrollbar-border-radius: 10px;
  --swiper-scrollbar-top: auto;
  --swiper-scrollbar-bottom: 4px;
  --swiper-scrollbar-left: auto;
  --swiper-scrollbar-right: 4px;
  --swiper-scrollbar-sides-offset: 1%;
  --swiper-scrollbar-bg-color: rgba(0, 0, 0, 0.1);
  --swiper-scrollbar-drag-bg-color: rgba(0, 0, 0, 0.5);
  --swiper-scrollbar-size: 4px;
  */
}

.swiper-scrollbar {
  border-radius: var(--swiper-scrollbar-border-radius, 10px);
  position: relative;
  -ms-touch-action: none;
  background: var(--swiper-scrollbar-bg-color, rgba(0, 0, 0, 0.1));
}

.swiper-scrollbar-disabled > .swiper-scrollbar,
.swiper-scrollbar.swiper-scrollbar-disabled {
  display: none !important;
}

.swiper-horizontal > .swiper-scrollbar,
.swiper-scrollbar.swiper-scrollbar-horizontal {
  position: absolute;
  left: var(--swiper-scrollbar-sides-offset, 1%);
  bottom: var(--swiper-scrollbar-bottom, 4px);
  top: var(--swiper-scrollbar-top, auto);
  z-index: 50;
  height: var(--swiper-scrollbar-size, 4px);
  width: calc(100% - 2 * var(--swiper-scrollbar-sides-offset, 1%));
}

.swiper-vertical > .swiper-scrollbar,
.swiper-scrollbar.swiper-scrollbar-vertical {
  position: absolute;
  left: var(--swiper-scrollbar-left, auto);
  right: var(--swiper-scrollbar-right, 4px);
  top: var(--swiper-scrollbar-sides-offset, 1%);
  z-index: 50;
  width: var(--swiper-scrollbar-size, 4px);
  height: calc(100% - 2 * var(--swiper-scrollbar-sides-offset, 1%));
}

.swiper-scrollbar-drag {
  height: 100%;
  width: 100%;
  position: relative;
  background: var(--swiper-scrollbar-drag-bg-color, rgba(0, 0, 0, 0.5));
  border-radius: var(--swiper-scrollbar-border-radius, 10px);
  left: 0;
  top: 0;
}

.swiper-scrollbar-cursor-drag {
  cursor: move;
}

.swiper-scrollbar-lock {
  display: none;
}

.swiper-zoom-container {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.swiper-zoom-container > img,
.swiper-zoom-container > svg,
.swiper-zoom-container > canvas {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.swiper-slide-zoomed {
  cursor: move;
  touch-action: none;
}

/* a11y */
.swiper .swiper-notification,
swiper-container .swiper-notification {
  position: absolute;
  left: 0;
  top: 0;
  pointer-events: none;
  opacity: 0;
  z-index: -1000;
}

.swiper-free-mode > .swiper-wrapper {
  transition-timing-function: ease-out;
  margin: 0 auto;
}

.swiper-grid > .swiper-wrapper {
  flex-wrap: wrap;
}

.swiper-grid-column > .swiper-wrapper {
  flex-wrap: wrap;
  flex-direction: column;
}

.swiper-fade.swiper-free-mode .swiper-slide {
  transition-timing-function: ease-out;
}

.swiper-fade .swiper-slide {
  pointer-events: none;
  transition-property: opacity;
}

.swiper-fade .swiper-slide .swiper-slide {
  pointer-events: none;
}

.swiper-fade .swiper-slide-active,
.swiper-fade .swiper-slide-active .swiper-slide-active {
  pointer-events: auto;
}

.swiper-cube {
  overflow: visible;
}

.swiper-cube .swiper-slide {
  pointer-events: none;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  z-index: 1;
  visibility: hidden;
  transform-origin: 0 0;
  width: 100%;
  height: 100%;
}

.swiper-cube .swiper-slide .swiper-slide {
  pointer-events: none;
}

.swiper-cube.swiper-rtl .swiper-slide {
  transform-origin: 100% 0;
}

.swiper-cube .swiper-slide-active,
.swiper-cube .swiper-slide-active .swiper-slide-active {
  pointer-events: auto;
}

.swiper-cube .swiper-slide-active,
.swiper-cube .swiper-slide-next,
.swiper-cube .swiper-slide-prev,
.swiper-cube .swiper-slide-next + .swiper-slide {
  pointer-events: auto;
  visibility: visible;
}

.swiper-cube .swiper-slide-shadow-top,
.swiper-cube .swiper-slide-shadow-bottom,
.swiper-cube .swiper-slide-shadow-left,
.swiper-cube .swiper-slide-shadow-right {
  z-index: 0;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.swiper-cube .swiper-cube-shadow {
  position: absolute;
  left: 0;
  bottom: 0px;
  width: 100%;
  height: 100%;
  opacity: 0.6;
  z-index: 0;
}

.swiper-cube .swiper-cube-shadow:before {
  content: "";
  background: #000;
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
  filter: blur(50px);
}

.swiper-flip {
  overflow: visible;
}

.swiper-flip .swiper-slide {
  pointer-events: none;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  z-index: 1;
}

.swiper-flip .swiper-slide .swiper-slide {
  pointer-events: none;
}

.swiper-flip .swiper-slide-active,
.swiper-flip .swiper-slide-active .swiper-slide-active {
  pointer-events: auto;
}

.swiper-flip .swiper-slide-shadow-top,
.swiper-flip .swiper-slide-shadow-bottom,
.swiper-flip .swiper-slide-shadow-left,
.swiper-flip .swiper-slide-shadow-right {
  z-index: 0;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.swiper-creative .swiper-slide {
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  overflow: hidden;
  transition-property: transform, opacity, height;
}

.swiper-cards {
  overflow: visible;
}

.swiper-cards .swiper-slide {
  transform-origin: center bottom;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  overflow: hidden;
}

.accordions {
  display: flex;
  flex-direction: column;
}

.accordion, .list li {
  border-bottom: 1px solid #D9CAB7;
  padding: 0.5rem 0;
  font-size: 1.5rem;
}

.list {
  margin: 0;
  padding-left: 0 !important;
}
.list li {
  font-weight: 600;
  margin-bottom: 0;
  padding: 1rem 0;
  line-height: 1.5;
}

.accordion__title {
  padding: 0.5rem 0;
}

.accordion__title, .list li {
  display: flex;
  justify-content: space-between;
  cursor: pointer;
  align-items: center;
}
.accordion__title span, .accordion__title h4, .list li span, .list li h4 {
  font-weight: 600;
  margin-bottom: 0;
  padding: 0.5rem 0;
  line-height: 1.5;
}
.accordion__title .icon, .list li .icon {
  width: 19px;
  height: 19px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  position: relative;
}
.accordion__title .icon:before, .accordion__title .icon:after, .list li .icon:before, .list li .icon:after {
  content: "";
  position: absolute;
  width: 1px;
  height: 100%;
  background: #D9CAB7;
  transition: transform 0.4s ease;
}
.accordion__title .icon:after, .list li .icon:after {
  transform: rotate(90deg);
}

.accordion__content {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.4s ease;
}

.accordion__content-inner {
  overflow: hidden;
  font-size: 1.5rem;
}
.accordion__content-inner *:first-child {
  padding-top: 0.5rem;
}
.accordion__content-inner *:last-child {
  padding-bottom: 0.5rem;
}
.accordion__content-inner p:last-child {
  margin-bottom: 0;
}

.accordion.active .icon {
  transition: transform 0.4s ease;
  transform: rotate(180deg);
}
.accordion.active .icon:before {
  transform: rotate(-90deg);
}
.accordion.active .accordion__content {
  grid-template-rows: 1fr;
}

.awards,
.awards__intro {
  align-items: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 3rem;
}
.awards .splide__track .splide__slide, .awards .splide__track .splide__slide a,
.awards__intro .splide__track .splide__slide,
.awards__intro .splide__track .splide__slide a {
  cursor: auto;
}

.awards__headline .h2 {
  text-align: center;
  margin: 0 auto;
  max-width: 56rem;
}

.awards__copy {
  text-align: center;
  margin: 0 auto 1rem;
  max-width: 56rem;
}

.awards__grid {
  display: block;
  max-width: 100%;
  position: relative;
}

.awards__grid-item {
  aspect-ratio: 4/3;
  pointer-events: none;
  user-select: none;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 0.75rem;
  min-width: 20rem;
  max-width: 100%;
  padding: 1rem 1.5rem 2rem;
  position: relative;
}

.awards__grid-item::before {
  background-color: currentColor;
  content: "";
  position: absolute;
  inset: 0;
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16.6 12.1'%3E%3Cpath d='M6.5 11.83c-.09 0-.13.05-.16.13-.02.05-.06.1-.09.14h-.02l-.12-.19c-.05-.1-.08-.21-.14-.3-.04-.07-.12-.11-.18-.16l-.46-.2-.69-.32c-.03-.02-.05-.02-.09 0l-.26.03-.4.03c-.15.01-.29 0-.43-.05-.16-.05-.32-.1-.47-.17-.3-.15-.58-.31-.82-.54l-.05-.05.11.05c.16.1.34.15.52.2.22.07.44.1.67.14.25.04.49.12.74.18l.17.05v-.02l-.82-.27-.47-.1a2.88 2.88 0 0 1-.4-.09v-.01h.03c.16 0 .32 0 .48.02l.38.08c.06 0 .12.04.19.04l-.3-.15-.5-.16a.77.77 0 0 0-.17-.03 1.55 1.55 0 0 1-.92-.45c-.15-.13-.3-.29-.44-.44-.08-.09-.14-.2-.2-.3l.13.11a2 2 0 0 0 .44.3l.35.19a5.98 5.98 0 0 1 .83.42l-.31-.21-.33-.2-.34-.17-.34-.18.01-.02.12.05.4.12.35.2.11.06-.16-.18c-.16-.2-.4-.25-.61-.34-.11-.05-.22-.07-.33-.11a1.2 1.2 0 0 1-.41-.32c-.26-.26-.41-.58-.58-.89L.5 7.68v-.01l.12.14c.19.22.4.42.66.56.24.14.45.32.66.51l.07.07a3.3 3.3 0 0 0-.53-.52c-.2-.14-.4-.29-.58-.44.3.16.62.26.83.54l.01-.01c-.05-.1-.1-.2-.16-.28a.78.78 0 0 0-.2-.17l-.5-.29c-.1-.06-.18-.13-.26-.2-.12-.13-.19-.29-.26-.44C.23 6.9.18 6.65.12 6.4v-.03l.16.27c.1.21.27.38.45.54l.36.35.13.16c-.21-.36-.5-.65-.8-.94l.02-.02.03.02c.08.06.15.12.24.17.13.09.25.19.34.33l.1.12c-.06-.2-.12-.4-.3-.52l-.22-.2a.76.76 0 0 0-.12-.08.76.76 0 0 1-.35-.48 6.8 6.8 0 0 1-.14-.65c-.02-.12 0-.26 0-.4l.02.02c0 .17.08.31.15.46.05.12.12.24.2.34.2.22.35.46.47.73h.02L.8 6.38.47 5.8.3 5.56a.38.38 0 0 1-.05-.13c.09.12.21.2.3.3.11.11.19.26.27.4l-.02-.2c0-.1-.06-.18-.12-.25l-.37-.44a.65.65 0 0 1-.15-.3 2.63 2.63 0 0 1-.06-.5c0-.18.05-.35.07-.52a.5.5 0 0 1 .02-.1c.02.2.04.39.12.57l.22.46c.08.17.13.36.17.55l.05.2.02-.01-.01-.15a3.93 3.93 0 0 0-.23-.79l-.16-.4a.29.29 0 0 1-.02-.07c.15.22.36.41.4.7l.02.23.02-.06c.02-.13.03-.25.03-.38a.3.3 0 0 0-.05-.15l-.29-.5a.7.7 0 0 1-.1-.36v-.13a2.06 2.06 0 0 1 .21-.83c-.02.24.03.47.09.7.04.16.09.32.12.5.02.1.01.2.02.31l.01.22h.03L.85 4a2 2 0 0 0-.04-.42c-.02-.17-.07-.33-.1-.5v-.13l.01-.01c.08.2.17.39.23.6.03.07 0 .16 0 .25v.1c.04-.14.1-.29.13-.44 0-.06-.03-.13-.06-.2-.04-.13-.1-.25-.15-.37a.66.66 0 0 1-.02-.39l.07-.3c.03-.16.12-.3.21-.44.05-.08.1-.15.17-.22l-.03.1c-.03.11-.07.23-.08.35-.01.1.01.22.02.33.03.2.03.4-.02.59a.77.77 0 0 0 0 .22l.07-.3.05-.38-.01-.36.01-.2h.02c.04.16.08.3.1.45.04.16-.04.3-.06.45.07-.12.15-.25.2-.38a.37.37 0 0 0 .01-.19l-.08-.48a.6.6 0 0 1 .05-.33c.1-.26.26-.48.45-.67l.28-.27a.06.06 0 0 1 .05-.02L2.28.5a2.2 2.2 0 0 0-.3.6l-.02.26c0 .17-.06.34-.12.5l-.16.36v.04c.14-.26.25-.53.35-.81l.07-.32.07-.28h.02v.42a.8.8 0 0 1-.11.41c.13-.1.2-.21.26-.34l.28-.56c.12-.21.3-.36.52-.47.3-.16.62-.25.96-.28L4.41 0v.02l-.13.05C4 .15 3.78.3 3.57.5l-.4.38c-.11.1-.24.17-.36.26l-.17.14v.02l.12-.06c.25-.11.47-.27.67-.45.09-.07.16-.16.24-.23l.26-.2V.4c-.11.13-.23.26-.33.4-.15.2-.34.33-.55.44-.17.08-.35.13-.53.2a15.65 15.65 0 0 0-.3.3c.2-.17.44-.12.66-.14-.2.08-.43.09-.61.25.3-.12.63-.16.91-.33l.01.02-.18.18-.2.16-.24.15a.72.72 0 0 1-.36.1 1.3 1.3 0 0 0-.37.15c-.05.03-.08.1-.11.16l-.22.36.02.01c.05-.06.1-.13.16-.18a.87.87 0 0 1 .23-.11c.08-.03.16-.04.24-.05-.25.12-.48.26-.65.48l.05-.04c.12-.13.27-.2.43-.28.16-.07.3-.16.45-.25a6.34 6.34 0 0 1-.49.58.6.6 0 0 1-.28.15.88.88 0 0 0-.36.2c-.05.04-.07.13-.1.2l-.08.33c.06-.1.11-.2.22-.25l.3-.13.01.02-.19.14c-.2.14-.34.33-.43.56l.01.04.04-.07c.07-.14.14-.29.28-.39.08-.06.18-.11.26-.18l.23-.22.04-.05.02.02-.15.32a2.9 2.9 0 0 1-.2.33c-.05.1-.16.14-.26.19-.11.06-.2.14-.3.23a.12.12 0 0 0-.03.07l-.06.57.08-.2c.04-.11.14-.16.23-.22l.16-.08-.16.17a.92.92 0 0 0-.29.62l.11-.3a.53.53 0 0 1 .2-.25c.12-.1.2-.22.28-.35a.15.15 0 0 1 .06-.05l-.07.37a1.2 1.2 0 0 1-.15.36.8.8 0 0 1-.27.24.38.38 0 0 0-.17.35c0 .15.03.3.04.46L1 6.2c-.02-.27.15-.41.34-.56l-.03.06-.17.29a.87.87 0 0 0-.05.54v-.12c0-.2.08-.37.2-.53.08-.12.13-.24.17-.38a.2.2 0 0 1 .04-.07c0 .06.02.12.01.17l-.01.34a.9.9 0 0 1-.28.62c-.08.08-.11.18-.08.3l.14.39c.02-.08.04-.17.08-.26l.15-.24h.02c-.02.07-.03.13-.06.18a.8.8 0 0 0-.03.57c0-.05-.02-.11-.01-.16.02-.11.05-.23.1-.33.04-.12.07-.24.08-.36l.02-.1h.02c.03.11.06.22.07.32.03.16.04.32.04.47a.4.4 0 0 1-.07.18.6.6 0 0 0-.1.31c-.02.07 0 .13.03.2.08.1.15.23.21.34 0-.09 0-.18.02-.27.02-.09.06-.17.1-.25.01.17-.04.32 0 .5.03.15.1.3.18.44v-.04L2 8.45a.51.51 0 0 1-.02-.3 1.1 1.1 0 0 0 0-.52L2 7.61l.08.13c.07.18.15.36.2.54.05.13.01.27 0 .4v.16c0 .07 0 .15.05.21.06.1.15.19.23.28l.1.1c-.1-.18-.05-.35-.03-.53.05.2.06.42.2.6-.09-.25-.05-.52-.17-.75a.55.55 0 0 1-.05-.14l.03.03.24.3c.1.14.17.29.24.43.06.1.05.22.07.34.01.13.04.26.15.36l.22.17c.14.1.28.17.42.25l.01-.01-.12-.11a.63.63 0 0 1-.25-.5l-.01-.1.01-.01.15.3c.05.1.13.19.2.28l.02-.02c-.03-.04-.07-.09-.09-.14-.05-.1-.08-.22-.14-.32-.05-.1-.13-.2-.2-.3l-.07-.08.01-.02.3.21c.16.13.31.26.44.43a1 1 0 0 1 .12.24c.07.16.14.32.28.43.05.04.12.06.18.09l.71.26c.08.03.49.13.68.23.16.11.33.23.29.48Zm9.47-5.18a.76.76 0 0 1 .12-.08c.19-.1.3-.28.35-.48.06-.21.1-.43.14-.65.02-.12 0-.26 0-.4l-.02.02c0 .17-.08.31-.15.46-.05.12-.12.24-.2.34-.2.22-.35.46-.47.73h-.02l.08-.22.33-.57.17-.24a.38.38 0 0 0 .05-.13c-.09.12-.21.2-.3.3-.11.11-.19.26-.27.4l.02-.2c0-.1.06-.18.12-.25l.37-.44c.08-.09.13-.2.15-.3.03-.17.06-.34.06-.5 0-.18-.05-.35-.07-.52a.5.5 0 0 0-.02-.1c-.02.2-.04.39-.12.57l-.22.46c-.08.17-.13.36-.17.55l-.05.2-.02-.01.01-.15c.05-.27.13-.53.23-.79l.16-.4.02-.07c-.15.22-.36.41-.4.7l-.02.23-.02-.06a2.43 2.43 0 0 1-.03-.38c0-.05.02-.1.05-.15l.29-.5a.7.7 0 0 0 .1-.36v-.13a2.06 2.06 0 0 0-.21-.83c.02.24-.03.47-.09.7-.04.16-.09.32-.12.5-.02.1-.01.2-.02.31l-.01.22h-.03l.01-.43a2 2 0 0 1 .04-.42c.02-.17.07-.33.1-.5v-.13l-.01-.01c-.08.2-.17.39-.23.6-.03.07 0 .16 0 .25v.1c-.04-.14-.1-.29-.13-.44 0-.06.03-.13.06-.2l.15-.37a.66.66 0 0 0 .02-.39l-.07-.3c-.03-.16-.12-.3-.21-.44-.05-.08-.1-.15-.17-.22l.03.1c.03.11.07.23.08.35.01.1 0 .22-.02.33-.03.2-.03.4.02.59v.22l-.07-.3a2.92 2.92 0 0 1-.05-.38l.01-.36-.01-.2h-.02c-.04.16-.08.3-.1.45-.04.16.04.3.06.45-.07-.12-.15-.25-.2-.38a.37.37 0 0 1-.01-.19l.08-.48a.6.6 0 0 0-.05-.33c-.1-.26-.26-.48-.45-.67l-.28-.27a.06.06 0 0 0-.05-.02l.06.06c.12.2.22.4.28.6l.03.26c0 .17.06.34.12.5l.16.36v.04a5.18 5.18 0 0 1-.35-.81l-.07-.32-.07-.28h-.02v.42c0 .14.03.28.11.41a.87.87 0 0 1-.26-.34l-.28-.56c-.12-.21-.3-.36-.52-.47-.3-.16-.62-.25-.96-.28L12.19 0v.02l.13.05c.28.08.5.24.71.43l.4.38c.11.1.24.17.36.26l.18.14-.02.02-.1-.06a2.75 2.75 0 0 1-.68-.45l-.24-.23-.26-.2V.4c.11.13.23.26.33.4.15.2.34.33.55.44.17.08.35.13.53.2a16.26 16.26 0 0 1 .3.3c-.2-.17-.44-.12-.66-.14.2.08.43.09.61.25-.3-.12-.63-.16-.91-.33l-.01.02.18.18.2.16.24.15c.1.07.23.09.36.1.12.03.25.09.37.15.05.03.08.1.11.16l.22.36-.02.01c-.05-.06-.1-.13-.16-.18a.87.87 0 0 0-.23-.11c-.07-.03-.16-.04-.24-.05.25.12.48.26.65.48l-.05-.04c-.12-.13-.27-.2-.43-.28-.16-.07-.3-.16-.45-.25a6.3 6.3 0 0 0 .49.58.6.6 0 0 0 .28.15c.13.03.25.1.36.2.05.04.07.13.1.2l.08.33c-.06-.1-.11-.2-.22-.25l-.3-.13-.01.02.19.14c.2.14.34.33.43.56l-.01.04-.03-.07c-.08-.14-.15-.29-.29-.39-.08-.06-.18-.11-.26-.18l-.23-.22-.04-.05-.02.02.15.32c.06.11.12.22.2.33.05.1.16.14.26.19.11.06.2.14.3.23l.03.07.06.57-.08-.2c-.04-.11-.14-.16-.23-.22a.8.8 0 0 0-.16-.08l.16.17a.9.9 0 0 1 .29.62l-.11-.3a.53.53 0 0 0-.2-.25c-.12-.1-.2-.22-.28-.35a.15.15 0 0 0-.06-.05l.07.37c.03.12.08.24.15.36.06.1.16.17.27.24.12.08.18.2.17.35 0 .15-.03.3-.04.46l-.02.04c.02-.27-.15-.41-.34-.56l.03.06.17.29c.08.17.09.36.05.54v-.12c0-.2-.08-.37-.2-.53a1.3 1.3 0 0 1-.17-.38.19.19 0 0 0-.04-.07c0 .06-.02.12-.01.17l.01.34c.01.24.1.45.28.62.08.08.11.18.08.3l-.14.39c-.02-.08-.04-.17-.08-.26l-.15-.24h-.02c.02.07.03.13.06.18.08.15.1.4.03.57 0-.05.02-.11.01-.16a2.13 2.13 0 0 0-.1-.33 1.17 1.17 0 0 1-.08-.36l-.02-.1h-.02c-.03.11-.06.22-.07.32a3.6 3.6 0 0 0-.04.47c0 .06.04.13.07.18.07.1.09.2.1.31.02.07 0 .13-.03.2-.08.1-.15.23-.21.34 0-.09 0-.18-.02-.27a1.09 1.09 0 0 0-.1-.25c-.01.17.04.32 0 .5-.03.15-.1.3-.18.44v-.04l.12-.3c.04-.1.04-.2.02-.3a1.1 1.1 0 0 1 0-.52l-.01-.02-.08.13c-.07.18-.15.36-.2.54-.05.13-.01.27 0 .4v.16c0 .07 0 .15-.05.21-.06.1-.15.19-.23.28a.78.78 0 0 1-.1.1c.1-.18.05-.35.03-.53-.05.2-.06.42-.2.6.09-.25.05-.52.17-.75a.55.55 0 0 0 .05-.14l-.03.03-.24.3c-.1.14-.17.29-.24.43-.06.1-.05.22-.07.34-.01.13-.04.26-.15.36a1.7 1.7 0 0 1-.22.17c-.14.1-.28.17-.42.25l-.01-.01.12-.11c.17-.13.23-.3.25-.5l.01-.1-.01-.01-.15.3c-.05.1-.13.19-.2.28l-.02-.02c.03-.04.07-.09.09-.14.05-.1.08-.22.14-.32.05-.1.13-.2.2-.3l.07-.08-.01-.02-.3.21a2.1 2.1 0 0 0-.44.43 1 1 0 0 0-.12.24.95.95 0 0 1-.28.43c-.05.04-.12.06-.18.09l-.71.26c-.08.03-.49.13-.68.23-.16.11-.33.23-.29.48.08 0 .12.05.15.13.02.05.06.1.09.14h.02l.12-.19c.05-.1.08-.21.14-.3.04-.07.12-.11.18-.16l.46-.2.69-.32c.03-.02.05-.02.09 0l.26.03.4.03c.15.01.29 0 .43-.05.16-.05.32-.1.47-.17.3-.15.58-.31.82-.54l.05-.05-.11.05c-.16.1-.34.15-.52.2-.22.07-.44.1-.67.14-.25.04-.49.12-.74.18l-.17.05v-.02l.82-.27.47-.1c.13-.02.27-.05.4-.09v-.01h-.03c-.16 0-.32 0-.48.02l-.38.08c-.06 0-.12.04-.19.04l.3-.15.5-.16a.77.77 0 0 1 .17-.03c.36-.03.66-.21.92-.45.15-.13.3-.29.44-.44.08-.09.14-.2.2-.3l-.13.11a2 2 0 0 1-.44.3l-.35.19a5.97 5.97 0 0 0-.83.42l.31-.21.33-.2.34-.17.34-.18-.01-.02-.12.05-.4.12-.35.2-.11.06.16-.18c.16-.2.4-.25.61-.34.11-.05.22-.07.33-.11.17-.07.3-.2.41-.32.26-.26.41-.58.58-.89l.03-.07v-.01l-.12.14c-.19.22-.4.42-.66.56a3.8 3.8 0 0 0-.66.51l-.07.07c.02-.06.35-.38.53-.52.2-.14.4-.29.58-.44-.3.16-.62.26-.83.54l-.01-.01c.05-.1.1-.2.16-.28a.78.78 0 0 1 .2-.17l.5-.29c.1-.06.18-.13.26-.2.12-.13.19-.29.26-.44.12-.24.17-.49.23-.74v-.03l-.16.27c-.1.21-.27.38-.45.54l-.36.35-.13.16c.21-.36.5-.65.8-.94l-.02-.02-.03.02c-.08.06-.15.12-.24.17-.13.09-.25.19-.34.33a1.1 1.1 0 0 1-.1.12c.06-.2.12-.4.3-.52l.22-.2Z'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16.6 12.1'%3E%3Cpath d='M6.5 11.83c-.09 0-.13.05-.16.13-.02.05-.06.1-.09.14h-.02l-.12-.19c-.05-.1-.08-.21-.14-.3-.04-.07-.12-.11-.18-.16l-.46-.2-.69-.32c-.03-.02-.05-.02-.09 0l-.26.03-.4.03c-.15.01-.29 0-.43-.05-.16-.05-.32-.1-.47-.17-.3-.15-.58-.31-.82-.54l-.05-.05.11.05c.16.1.34.15.52.2.22.07.44.1.67.14.25.04.49.12.74.18l.17.05v-.02l-.82-.27-.47-.1a2.88 2.88 0 0 1-.4-.09v-.01h.03c.16 0 .32 0 .48.02l.38.08c.06 0 .12.04.19.04l-.3-.15-.5-.16a.77.77 0 0 0-.17-.03 1.55 1.55 0 0 1-.92-.45c-.15-.13-.3-.29-.44-.44-.08-.09-.14-.2-.2-.3l.13.11a2 2 0 0 0 .44.3l.35.19a5.98 5.98 0 0 1 .83.42l-.31-.21-.33-.2-.34-.17-.34-.18.01-.02.12.05.4.12.35.2.11.06-.16-.18c-.16-.2-.4-.25-.61-.34-.11-.05-.22-.07-.33-.11a1.2 1.2 0 0 1-.41-.32c-.26-.26-.41-.58-.58-.89L.5 7.68v-.01l.12.14c.19.22.4.42.66.56.24.14.45.32.66.51l.07.07a3.3 3.3 0 0 0-.53-.52c-.2-.14-.4-.29-.58-.44.3.16.62.26.83.54l.01-.01c-.05-.1-.1-.2-.16-.28a.78.78 0 0 0-.2-.17l-.5-.29c-.1-.06-.18-.13-.26-.2-.12-.13-.19-.29-.26-.44C.23 6.9.18 6.65.12 6.4v-.03l.16.27c.1.21.27.38.45.54l.36.35.13.16c-.21-.36-.5-.65-.8-.94l.02-.02.03.02c.08.06.15.12.24.17.13.09.25.19.34.33l.1.12c-.06-.2-.12-.4-.3-.52l-.22-.2a.76.76 0 0 0-.12-.08.76.76 0 0 1-.35-.48 6.8 6.8 0 0 1-.14-.65c-.02-.12 0-.26 0-.4l.02.02c0 .17.08.31.15.46.05.12.12.24.2.34.2.22.35.46.47.73h.02L.8 6.38.47 5.8.3 5.56a.38.38 0 0 1-.05-.13c.09.12.21.2.3.3.11.11.19.26.27.4l-.02-.2c0-.1-.06-.18-.12-.25l-.37-.44a.65.65 0 0 1-.15-.3 2.63 2.63 0 0 1-.06-.5c0-.18.05-.35.07-.52a.5.5 0 0 1 .02-.1c.02.2.04.39.12.57l.22.46c.08.17.13.36.17.55l.05.2.02-.01-.01-.15a3.93 3.93 0 0 0-.23-.79l-.16-.4a.29.29 0 0 1-.02-.07c.15.22.36.41.4.7l.02.23.02-.06c.02-.13.03-.25.03-.38a.3.3 0 0 0-.05-.15l-.29-.5a.7.7 0 0 1-.1-.36v-.13a2.06 2.06 0 0 1 .21-.83c-.02.24.03.47.09.7.04.16.09.32.12.5.02.1.01.2.02.31l.01.22h.03L.85 4a2 2 0 0 0-.04-.42c-.02-.17-.07-.33-.1-.5v-.13l.01-.01c.08.2.17.39.23.6.03.07 0 .16 0 .25v.1c.04-.14.1-.29.13-.44 0-.06-.03-.13-.06-.2-.04-.13-.1-.25-.15-.37a.66.66 0 0 1-.02-.39l.07-.3c.03-.16.12-.3.21-.44.05-.08.1-.15.17-.22l-.03.1c-.03.11-.07.23-.08.35-.01.1.01.22.02.33.03.2.03.4-.02.59a.77.77 0 0 0 0 .22l.07-.3.05-.38-.01-.36.01-.2h.02c.04.16.08.3.1.45.04.16-.04.3-.06.45.07-.12.15-.25.2-.38a.37.37 0 0 0 .01-.19l-.08-.48a.6.6 0 0 1 .05-.33c.1-.26.26-.48.45-.67l.28-.27a.06.06 0 0 1 .05-.02L2.28.5a2.2 2.2 0 0 0-.3.6l-.02.26c0 .17-.06.34-.12.5l-.16.36v.04c.14-.26.25-.53.35-.81l.07-.32.07-.28h.02v.42a.8.8 0 0 1-.11.41c.13-.1.2-.21.26-.34l.28-.56c.12-.21.3-.36.52-.47.3-.16.62-.25.96-.28L4.41 0v.02l-.13.05C4 .15 3.78.3 3.57.5l-.4.38c-.11.1-.24.17-.36.26l-.17.14v.02l.12-.06c.25-.11.47-.27.67-.45.09-.07.16-.16.24-.23l.26-.2V.4c-.11.13-.23.26-.33.4-.15.2-.34.33-.55.44-.17.08-.35.13-.53.2a15.65 15.65 0 0 0-.3.3c.2-.17.44-.12.66-.14-.2.08-.43.09-.61.25.3-.12.63-.16.91-.33l.01.02-.18.18-.2.16-.24.15a.72.72 0 0 1-.36.1 1.3 1.3 0 0 0-.37.15c-.05.03-.08.1-.11.16l-.22.36.02.01c.05-.06.1-.13.16-.18a.87.87 0 0 1 .23-.11c.08-.03.16-.04.24-.05-.25.12-.48.26-.65.48l.05-.04c.12-.13.27-.2.43-.28.16-.07.3-.16.45-.25a6.34 6.34 0 0 1-.49.58.6.6 0 0 1-.28.15.88.88 0 0 0-.36.2c-.05.04-.07.13-.1.2l-.08.33c.06-.1.11-.2.22-.25l.3-.13.01.02-.19.14c-.2.14-.34.33-.43.56l.01.04.04-.07c.07-.14.14-.29.28-.39.08-.06.18-.11.26-.18l.23-.22.04-.05.02.02-.15.32a2.9 2.9 0 0 1-.2.33c-.05.1-.16.14-.26.19-.11.06-.2.14-.3.23a.12.12 0 0 0-.03.07l-.06.57.08-.2c.04-.11.14-.16.23-.22l.16-.08-.16.17a.92.92 0 0 0-.29.62l.11-.3a.53.53 0 0 1 .2-.25c.12-.1.2-.22.28-.35a.15.15 0 0 1 .06-.05l-.07.37a1.2 1.2 0 0 1-.15.36.8.8 0 0 1-.27.24.38.38 0 0 0-.17.35c0 .15.03.3.04.46L1 6.2c-.02-.27.15-.41.34-.56l-.03.06-.17.29a.87.87 0 0 0-.05.54v-.12c0-.2.08-.37.2-.53.08-.12.13-.24.17-.38a.2.2 0 0 1 .04-.07c0 .06.02.12.01.17l-.01.34a.9.9 0 0 1-.28.62c-.08.08-.11.18-.08.3l.14.39c.02-.08.04-.17.08-.26l.15-.24h.02c-.02.07-.03.13-.06.18a.8.8 0 0 0-.03.57c0-.05-.02-.11-.01-.16.02-.11.05-.23.1-.33.04-.12.07-.24.08-.36l.02-.1h.02c.03.11.06.22.07.32.03.16.04.32.04.47a.4.4 0 0 1-.07.18.6.6 0 0 0-.1.31c-.02.07 0 .13.03.2.08.1.15.23.21.34 0-.09 0-.18.02-.27.02-.09.06-.17.1-.25.01.17-.04.32 0 .5.03.15.1.3.18.44v-.04L2 8.45a.51.51 0 0 1-.02-.3 1.1 1.1 0 0 0 0-.52L2 7.61l.08.13c.07.18.15.36.2.54.05.13.01.27 0 .4v.16c0 .07 0 .15.05.21.06.1.15.19.23.28l.1.1c-.1-.18-.05-.35-.03-.53.05.2.06.42.2.6-.09-.25-.05-.52-.17-.75a.55.55 0 0 1-.05-.14l.03.03.24.3c.1.14.17.29.24.43.06.1.05.22.07.34.01.13.04.26.15.36l.22.17c.14.1.28.17.42.25l.01-.01-.12-.11a.63.63 0 0 1-.25-.5l-.01-.1.01-.01.15.3c.05.1.13.19.2.28l.02-.02c-.03-.04-.07-.09-.09-.14-.05-.1-.08-.22-.14-.32-.05-.1-.13-.2-.2-.3l-.07-.08.01-.02.3.21c.16.13.31.26.44.43a1 1 0 0 1 .12.24c.07.16.14.32.28.43.05.04.12.06.18.09l.71.26c.08.03.49.13.68.23.16.11.33.23.29.48Zm9.47-5.18a.76.76 0 0 1 .12-.08c.19-.1.3-.28.35-.48.06-.21.1-.43.14-.65.02-.12 0-.26 0-.4l-.02.02c0 .17-.08.31-.15.46-.05.12-.12.24-.2.34-.2.22-.35.46-.47.73h-.02l.08-.22.33-.57.17-.24a.38.38 0 0 0 .05-.13c-.09.12-.21.2-.3.3-.11.11-.19.26-.27.4l.02-.2c0-.1.06-.18.12-.25l.37-.44c.08-.09.13-.2.15-.3.03-.17.06-.34.06-.5 0-.18-.05-.35-.07-.52a.5.5 0 0 0-.02-.1c-.02.2-.04.39-.12.57l-.22.46c-.08.17-.13.36-.17.55l-.05.2-.02-.01.01-.15c.05-.27.13-.53.23-.79l.16-.4.02-.07c-.15.22-.36.41-.4.7l-.02.23-.02-.06a2.43 2.43 0 0 1-.03-.38c0-.05.02-.1.05-.15l.29-.5a.7.7 0 0 0 .1-.36v-.13a2.06 2.06 0 0 0-.21-.83c.02.24-.03.47-.09.7-.04.16-.09.32-.12.5-.02.1-.01.2-.02.31l-.01.22h-.03l.01-.43a2 2 0 0 1 .04-.42c.02-.17.07-.33.1-.5v-.13l-.01-.01c-.08.2-.17.39-.23.6-.03.07 0 .16 0 .25v.1c-.04-.14-.1-.29-.13-.44 0-.06.03-.13.06-.2l.15-.37a.66.66 0 0 0 .02-.39l-.07-.3c-.03-.16-.12-.3-.21-.44-.05-.08-.1-.15-.17-.22l.03.1c.03.11.07.23.08.35.01.1 0 .22-.02.33-.03.2-.03.4.02.59v.22l-.07-.3a2.92 2.92 0 0 1-.05-.38l.01-.36-.01-.2h-.02c-.04.16-.08.3-.1.45-.04.16.04.3.06.45-.07-.12-.15-.25-.2-.38a.37.37 0 0 1-.01-.19l.08-.48a.6.6 0 0 0-.05-.33c-.1-.26-.26-.48-.45-.67l-.28-.27a.06.06 0 0 0-.05-.02l.06.06c.12.2.22.4.28.6l.03.26c0 .17.06.34.12.5l.16.36v.04a5.18 5.18 0 0 1-.35-.81l-.07-.32-.07-.28h-.02v.42c0 .14.03.28.11.41a.87.87 0 0 1-.26-.34l-.28-.56c-.12-.21-.3-.36-.52-.47-.3-.16-.62-.25-.96-.28L12.19 0v.02l.13.05c.28.08.5.24.71.43l.4.38c.11.1.24.17.36.26l.18.14-.02.02-.1-.06a2.75 2.75 0 0 1-.68-.45l-.24-.23-.26-.2V.4c.11.13.23.26.33.4.15.2.34.33.55.44.17.08.35.13.53.2a16.26 16.26 0 0 1 .3.3c-.2-.17-.44-.12-.66-.14.2.08.43.09.61.25-.3-.12-.63-.16-.91-.33l-.01.02.18.18.2.16.24.15c.1.07.23.09.36.1.12.03.25.09.37.15.05.03.08.1.11.16l.22.36-.02.01c-.05-.06-.1-.13-.16-.18a.87.87 0 0 0-.23-.11c-.07-.03-.16-.04-.24-.05.25.12.48.26.65.48l-.05-.04c-.12-.13-.27-.2-.43-.28-.16-.07-.3-.16-.45-.25a6.3 6.3 0 0 0 .49.58.6.6 0 0 0 .28.15c.13.03.25.1.36.2.05.04.07.13.1.2l.08.33c-.06-.1-.11-.2-.22-.25l-.3-.13-.01.02.19.14c.2.14.34.33.43.56l-.01.04-.03-.07c-.08-.14-.15-.29-.29-.39-.08-.06-.18-.11-.26-.18l-.23-.22-.04-.05-.02.02.15.32c.06.11.12.22.2.33.05.1.16.14.26.19.11.06.2.14.3.23l.03.07.06.57-.08-.2c-.04-.11-.14-.16-.23-.22a.8.8 0 0 0-.16-.08l.16.17a.9.9 0 0 1 .29.62l-.11-.3a.53.53 0 0 0-.2-.25c-.12-.1-.2-.22-.28-.35a.15.15 0 0 0-.06-.05l.07.37c.03.12.08.24.15.36.06.1.16.17.27.24.12.08.18.2.17.35 0 .15-.03.3-.04.46l-.02.04c.02-.27-.15-.41-.34-.56l.03.06.17.29c.08.17.09.36.05.54v-.12c0-.2-.08-.37-.2-.53a1.3 1.3 0 0 1-.17-.38.19.19 0 0 0-.04-.07c0 .06-.02.12-.01.17l.01.34c.01.24.1.45.28.62.08.08.11.18.08.3l-.14.39c-.02-.08-.04-.17-.08-.26l-.15-.24h-.02c.02.07.03.13.06.18.08.15.1.4.03.57 0-.05.02-.11.01-.16a2.13 2.13 0 0 0-.1-.33 1.17 1.17 0 0 1-.08-.36l-.02-.1h-.02c-.03.11-.06.22-.07.32a3.6 3.6 0 0 0-.04.47c0 .06.04.13.07.18.07.1.09.2.1.31.02.07 0 .13-.03.2-.08.1-.15.23-.21.34 0-.09 0-.18-.02-.27a1.09 1.09 0 0 0-.1-.25c-.01.17.04.32 0 .5-.03.15-.1.3-.18.44v-.04l.12-.3c.04-.1.04-.2.02-.3a1.1 1.1 0 0 1 0-.52l-.01-.02-.08.13c-.07.18-.15.36-.2.54-.05.13-.01.27 0 .4v.16c0 .07 0 .15-.05.21-.06.1-.15.19-.23.28a.78.78 0 0 1-.1.1c.1-.18.05-.35.03-.53-.05.2-.06.42-.2.6.09-.25.05-.52.17-.75a.55.55 0 0 0 .05-.14l-.03.03-.24.3c-.1.14-.17.29-.24.43-.06.1-.05.22-.07.34-.01.13-.04.26-.15.36a1.7 1.7 0 0 1-.22.17c-.14.1-.28.17-.42.25l-.01-.01.12-.11c.17-.13.23-.3.25-.5l.01-.1-.01-.01-.15.3c-.05.1-.13.19-.2.28l-.02-.02c.03-.04.07-.09.09-.14.05-.1.08-.22.14-.32.05-.1.13-.2.2-.3l.07-.08-.01-.02-.3.21a2.1 2.1 0 0 0-.44.43 1 1 0 0 0-.12.24.95.95 0 0 1-.28.43c-.05.04-.12.06-.18.09l-.71.26c-.08.03-.49.13-.68.23-.16.11-.33.23-.29.48.08 0 .12.05.15.13.02.05.06.1.09.14h.02l.12-.19c.05-.1.08-.21.14-.3.04-.07.12-.11.18-.16l.46-.2.69-.32c.03-.02.05-.02.09 0l.26.03.4.03c.15.01.29 0 .43-.05.16-.05.32-.1.47-.17.3-.15.58-.31.82-.54l.05-.05-.11.05c-.16.1-.34.15-.52.2-.22.07-.44.1-.67.14-.25.04-.49.12-.74.18l-.17.05v-.02l.82-.27.47-.1c.13-.02.27-.05.4-.09v-.01h-.03c-.16 0-.32 0-.48.02l-.38.08c-.06 0-.12.04-.19.04l.3-.15.5-.16a.77.77 0 0 1 .17-.03c.36-.03.66-.21.92-.45.15-.13.3-.29.44-.44.08-.09.14-.2.2-.3l-.13.11a2 2 0 0 1-.44.3l-.35.19a5.97 5.97 0 0 0-.83.42l.31-.21.33-.2.34-.17.34-.18-.01-.02-.12.05-.4.12-.35.2-.11.06.16-.18c.16-.2.4-.25.61-.34.11-.05.22-.07.33-.11.17-.07.3-.2.41-.32.26-.26.41-.58.58-.89l.03-.07v-.01l-.12.14c-.19.22-.4.42-.66.56a3.8 3.8 0 0 0-.66.51l-.07.07c.02-.06.35-.38.53-.52.2-.14.4-.29.58-.44-.3.16-.62.26-.83.54l-.01-.01c.05-.1.1-.2.16-.28a.78.78 0 0 1 .2-.17l.5-.29c.1-.06.18-.13.26-.2.12-.13.19-.29.26-.44.12-.24.17-.49.23-.74v-.03l-.16.27c-.1.21-.27.38-.45.54l-.36.35-.13.16c.21-.36.5-.65.8-.94l-.02-.02-.03.02c-.08.06-.15.12-.24.17-.13.09-.25.19-.34.33a1.1 1.1 0 0 1-.1.12c.06-.2.12-.4.3-.52l.22-.2Z'/%3E%3C/svg%3E");
  mask-repeat: no-repeat;
  mask-size: 100%;
}

.award__list.h5.serif {
  font-family: "GT Super Display", serif;
  font-size: 1.5rem;
  letter-spacing: 0.01em;
  line-height: 1;
  text-align: center;
  max-width: 60%;
}

strong.award__award {
  display: flex;
  font-size: 1rem;
  letter-spacing: 0.05em;
  line-height: 1;
  text-align: center;
  font-weight: 500;
  max-width: 80%;
}

.award__project.h6 {
  font-size: 0.8rem;
  letter-spacing: 0.01em;
  line-height: 1.3;
  letter-spacing: 0.2em;
  max-width: 50%;
  text-align: center;
  text-transform: uppercase;
  font-weight: 600;
}

.press-ticker,
.press-ticker__intro {
  align-items: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 3rem;
}
.press-ticker .splide__track .splide__slide, .press-ticker .splide__track .splide__slide a,
.press-ticker__intro .splide__track .splide__slide,
.press-ticker__intro .splide__track .splide__slide a {
  cursor: auto;
}

.press-ticker__headline .h2 {
  text-align: center;
  margin: 0 auto;
  max-width: 56rem;
}

.press-ticker__copy {
  text-align: center;
  margin: 0 auto 1rem;
  max-width: 56rem;
}

.press-ticker__grid {
  display: block;
  max-width: 100%;
  position: relative;
}

.press-ticker .splide__slide {
  display: flex;
  flex: 1;
  height: 100%;
  min-width: 15rem;
  max-width: 100%;
  position: relative;
}
@media only screen and (min-width: 1024px) {
  .press-ticker .splide__slide {
    min-width: 20rem;
  }
}

.press-ticker__grid-item {
  display: flex;
  flex: 1;
  height: 100%;
  pointer-events: none;
  user-select: none;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  min-width: 15rem;
  max-width: 100%;
  position: relative;
}
@media only screen and (min-width: 1024px) {
  .press-ticker__grid-item {
    min-width: 20rem;
  }
}
.press-ticker__grid-item img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  vertical-align: middle;
  max-width: 100%;
}

.section--blog-gallery {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.section--blog-gallery .image {
  height: auto;
  width: 100%;
  position: relative;
  vertical-align: middle;
}
.section--blog-gallery .image img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  vertical-align: middle;
}

.blog-gallery-inner {
  display: grid;
  gap: 2rem;
}

.blog-gallery--2,
.blog-gallery--4 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.blog-gallery--3 {
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: repeat(2, 1fr);
}
.blog-gallery--3 .image:nth-of-type(1) {
  grid-area: 1/1/2/3;
}
.blog-gallery--3 .image:nth-of-type(2) {
  grid-area: 2/1/3/2;
}
.blog-gallery--3 .image:nth-of-type(3) {
  grid-area: 2/2/3/3;
}

.careers__grid {
  display: grid;
  grid-gap: 1rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
@media (min-width: 768px) {
  .careers__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.careers__grid-item strong {
  font-weight: 600;
}
.careers__grid-item span {
  font-weight: 100;
}
.careers__grid-item span, .careers__grid-item strong {
  display: block;
  font-size: 1.5rem;
}

.column-content {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
@media (min-width: 1024px) {
  .column-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(10rem, 1fr));
    grid-gap: 4rem;
  }
}
@media (min-width: 1280px) {
  .column-content {
    grid-gap: 6rem;
  }
}

.contact-container .h1, .contact-container .body {
  text-align: center;
  padding: 0 2rem;
}
@media (min-width: 1024px) {
  .contact-container .h1, .contact-container .body {
    padding: 0;
  }
}
.contact-container .body {
  padding-bottom: 3rem;
}
.contact-container .gform_wrapper {
  max-width: 980px;
  margin: 0 auto;
  padding: 0 2rem;
}
@media (min-width: 1280px) {
  .contact-container .gform_wrapper {
    padding: 0;
  }
}
.contact-container .gform_wrapper.gravity-theme .gform_title, .contact-container .gform_wrapper.gravity-theme .gform_description, .contact-container .gform_wrapper.gravity-theme .gform_required_legend, .contact-container .gform_wrapper.gravity-theme .gfield_required_asterisk {
  display: none;
}
.contact-container .gform_wrapper.gravity-theme input[type=email], .contact-container .gform_wrapper.gravity-theme input[type=number], .contact-container .gform_wrapper.gravity-theme input[type=tel], .contact-container .gform_wrapper.gravity-theme input[type=text], .contact-container .gform_wrapper.gravity-theme select {
  background: transparent;
  border: none;
  border-bottom: 1px solid #D9CAB7;
  padding-left: 0;
  font-family: "Cerebri Sans Pro", sans-serif;
  font-size: 1.5rem;
  font-weight: 400;
  line-height: 1.75;
  color: #2D2926;
  border-radius: 0;
  appearance: none;
}
.contact-container .gform_wrapper.gravity-theme select {
  padding: 11px;
  padding-left: 0;
}
.contact-container .gform_wrapper.gravity-theme .gfield_label {
  font-size: 1.3rem;
  font-family: "Cerebri Sans Pro", sans-serif;
  font-weight: 400;
  letter-spacing: 0.1em;
  color: #2D2926;
  margin-bottom: 0;
}
.contact-container .gform_wrapper.gravity-theme #field_1_11 .gfield_label {
  margin-bottom: 12px;
}
.contact-container .gform_wrapper.gravity-theme .field_description_above .description, .contact-container .gform_wrapper.gravity-theme .field_description_above .gfield_description, .contact-container .gform_wrapper.gravity-theme .field_description_above .gsection_description, .contact-container .gform_wrapper.gravity-theme .field_description_above .instruction {
  padding: 0;
}
.contact-container .gform_wrapper.gravity-theme .field_description_above .gfield_description {
  padding-bottom: 8px;
}
.contact-container .gform_wrapper.gravity-theme textarea {
  background: transparent;
  border: 1px solid #D9CAB7;
  padding: 15px;
  font-family: "Cerebri Sans Pro", sans-serif;
  font-weight: 400;
  line-height: 1.75;
  color: black;
}
.contact-container .gform_wrapper ::placeholder {
  color: #2D2926;
  opacity: 1; /* Firefox */
}
.contact-container .gform_wrapper.gravity-theme #field_submit, .contact-container .gform_wrapper.gravity-theme .gform_footer {
  justify-content: center;
}
.contact-container .gform_wrapper.gravity-theme .gform_footer button, .contact-container .gform_wrapper.gravity-theme .gform_footer input, .contact-container .gform_wrapper.gravity-theme .gform_page_footer button, .contact-container .gform_wrapper.gravity-theme .gform_page_footer input {
  border: none;
  background: transparent;
  font-size: 1.5rem;
  font-family: "Cerebri Sans Pro", sans-serif;
  font-weight: 400;
  line-height: 1.3;
  color: #E74C39;
  text-decoration: underline;
  text-underline-offset: 3px;
  letter-spacing: 0.1em;
}
.contact-container .gform_wrapper.gravity-theme .gform_footer button:hover, .contact-container .gform_wrapper.gravity-theme .gform_footer input:hover, .contact-container .gform_wrapper.gravity-theme .gform_page_footer button:hover, .contact-container .gform_wrapper.gravity-theme .gform_page_footer input:hover {
  cursor: pointer;
}
.contact-container .gform_wrapper.gravity-theme .gform_validation_errors, .contact-container .gform_wrapper.gravity-theme .gfield_validation_message, .contact-container .gform_wrapper.gravity-theme .validation_message {
  border: none;
  background: transparent;
  box-shadow: none;
  font-family: "Cerebri Sans Pro", sans-serif;
}
.contact-container .gform_wrapper.gravity-theme .gfield_description {
  padding-left: 0;
  padding-top: 5px;
}
.contact-container .gform_wrapper.gravity-theme .gform_fileupload_rules {
  font-size: 1.2rem;
}

.content-container {
  background-size: cover;
  position: relative;
}
.content-container .image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  background: #2D2926;
}
.content-container .image img {
  object-fit: cover;
  width: 100%;
  height: 100%;
  display: block;
  z-index: 0;
  opacity: 0.5;
  background-blend-mode: multiply;
}

.content {
  display: flex;
  flex-direction: column;
  position: relative;
  z-index: 1;
}
.content .h1 br {
  display: none;
}
@media (min-width: 768px) {
  .content .h1 br {
    display: inherit;
  }
}

.content__inner {
  max-width: var(--max-width, "unset");
}
.content__inner .btn {
  margin-right: 1rem;
}
.content__inner .body--large, .content__inner .body {
  margin-bottom: 2rem;
}
.content__inner ul {
  padding-left: 1.25em;
  margin-bottom: 2rem;
}
.content__inner ul li {
  list-style-type: disc;
}

.dual-images {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-column-gap: 2rem;
}
.dual-images .image {
  width: 100%;
  aspect-ratio: 6/7;
  display: block;
  position: relative;
}
.dual-images .image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.dual-images .image video {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  top: 0;
  left: 0;
}

.full-width-media {
  position: relative;
  width: 100%;
}
.full-width-media .image {
  width: 100%;
}
.full-width-media .image img {
  display: block;
  height: auto;
  width: 100%;
}
.full-width-media .image video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero {
  height: 100svh;
  width: 100%;
  display: flex;
  align-items: flex-end;
  padding: 2.5rem;
  position: absolute;
  top: 0;
  left: 0;
  text-decoration: none;
}
@media (min-width: 1280px) {
  .hero {
    padding: 5rem;
  }
}
.hero:hover {
  text-decoration: none;
}
.hero:first-child {
  position: relative;
}
.hero:focus {
  text-decoration: none;
}

.hero__image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.hero__image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero__image:after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #2D2926;
  mix-blend-mode: multiply;
  opacity: 0.4;
}

.hero__content {
  position: relative;
  z-index: 2;
  color: #FFFAF2;
  text-decoration: none;
}

.hero--interior .hero__content {
  position: absolute;
  bottom: 5rem;
  left: 0;
  bottom: 2.5rem;
}
@media screen and (min-width: 1024px) {
  .hero--interior .hero__content {
    bottom: 5rem;
  }
}
.hero--interior .hero__content .h0:last-child {
  margin-bottom: 0;
}

.hero--headline {
  aspect-ratio: unset;
  padding-top: 10rem !important;
  padding-bottom: 5rem;
}
@media (min-width: 1024px) {
  .hero--headline {
    padding-top: 0;
    pading-bottom: 0;
    height: 100vh;
  }
}
.hero--headline .hero__content {
  text-align: center;
  color: var(--color-two, #4d0902);
}

.hero-container {
  position: relative;
}

.hero__arrow {
  position: absolute;
  bottom: 2.5rem;
  right: 2.5rem;
  width: 2rem;
  height: auto;
  color: #FFFAF2;
}
.hero__arrow svg {
  width: 100%;
  height: 100%;
}
@media screen and (min-width: 1024px) {
  .hero__arrow {
    bottom: 5rem;
    right: 5rem;
    left: 5rem;
    margin: 0 auto;
  }
}

.container {
  width: 100%;
  display: grid;
  position: relative;
  gap: 20px 10px;
  grid-auto-rows: minmax(min-content, max-content);
}

.image-layout--layout-1 {
  grid-template-columns: repeat(3, 1fr);
  grid-template-areas: "a a ." "a a ." ". . b" ". . b" ". c c";
}
@media (min-width: 1024px) {
  .image-layout--layout-1 {
    grid-template-columns: repeat(4, 1fr);
    grid-template-areas: "a a . b" "a a . b" ". . c c";
  }
}
.image-layout--layout-2 {
  grid-template-columns: repeat(3, 1fr);
  grid-template-areas: "b . ." "b . ." ". a a" ". a a" ". c ." ". c .";
}
@media (min-width: 1024px) {
  .image-layout--layout-2 {
    grid-template-columns: repeat(4, 1fr);
    grid-template-areas: "b . a a" "b . a a" ". c c .";
  }
}
.image-layout--layout-3 {
  grid-template-columns: repeat(3, 1fr);
  grid-template-areas: ". b b" ". b b" "a a a" ". c ." ". c .";
}
@media (min-width: 1024px) {
  .image-layout--layout-3 {
    grid-template-columns: repeat(4, 1fr);
    grid-template-areas: ". . b b" "a . b b" ". c c .";
  }
}
.image-layout--layout-4 {
  grid-template-columns: repeat(3, 1fr);
  grid-template-areas: "a a ." "a a ." ". b b" ". c ." ". c ." "d d d";
}
@media (min-width: 1024px) {
  .image-layout--layout-4 {
    grid-template-columns: repeat(6, 1fr);
    grid-template-areas: "a a . . . ." "a a . . b b" ". c c . . ." ". c c d d ." ". . . d d .";
  }
}
.image-layout--layout-5 {
  grid-template-columns: repeat(3, 1fr);
  grid-template-areas: ". b ." ". b ." "a a a" "a a a" ". c c" ". d .";
}
@media (min-width: 1024px) {
  .image-layout--layout-5 {
    grid-template-columns: repeat(6, 1fr);
    grid-template-areas: ". . b b . ." "a a b b . ." "a a . c c c" ". . . c c c" ". . d d d .";
  }
}
.image-layout--layout-6 {
  grid-template-columns: repeat(3, 1fr);
  grid-template-areas: ". a a" ". a a" ". b ." ". b ." "c c ." "c c ." ". d d";
}
@media (min-width: 1024px) {
  .image-layout--layout-6 {
    grid-template-columns: repeat(6, 1fr);
    grid-template-areas: ". . . . a a" ". . b b a a" "c c b b . ." "c c . d d ." ". . . d d .";
  }
}
.image-layout .image:nth-child(1) {
  grid-area: a;
}
.image-layout .image:nth-child(2) {
  grid-area: b;
}
.image-layout .image:nth-child(3) {
  grid-area: c;
}
.image-layout .image:nth-child(4) {
  grid-area: d;
}
.image-layout .image img {
  display: block;
  width: auto;
  max-width: 100%;
  height: auto;
  object-fit: contain;
}

.project-gallery {
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.project-gallery__content {
  text-align: center;
  padding-bottom: 2rem;
  z-index: 2;
  position: relative;
}
.project-gallery__content .content__inner {
  max-width: 600px;
  margin: 0 auto;
}

.project-gallery__images {
  display: flex;
  flex-direction: row-reverse;
  flex-wrap: wrap;
  align-items: flex-start;
  position: relative;
  z-index: 1;
  max-width: 1140px;
  margin: 0 auto;
  grid-row-gap: 2rem;
}

.project-gallery__project {
  display: block;
  position: relative;
}
.project-gallery__project img {
  object-fit: cover;
  width: 100%;
  height: 100%;
  display: block;
}
.project-gallery__project img.svg {
  object-fit: contain;
}
.project-gallery__project .project .project__title {
  opacity: 0;
  transition: opacity 0.4s ease;
}
.project-gallery__project .project:hover .project__title {
  opacity: 1;
}
.project-gallery__project:nth-child(1) {
  width: 100%;
  margin-left: 6rem;
  margin-top: 2rem;
  flex-grow: 1;
}
@media (min-width: 1024px) {
  .project-gallery__project:nth-child(1) {
    margin-top: 25%;
    width: 40%;
    margin-right: 4rem;
    margin-left: 4rem;
  }
}
.project-gallery__project:nth-child(1) .project__image {
  aspect-ratio: 16/9;
}
.project-gallery__project:nth-child(2) {
  width: 66%;
  margin-right: auto;
}
@media (min-width: 1024px) {
  .project-gallery__project:nth-child(2) {
    margin-bottom: 4rem;
    width: 33%;
    margin-right: unset;
  }
}
.project-gallery__project:nth-child(2) .project__image {
  aspect-ratio: 5/7;
}
.project-gallery__project:nth-child(3) {
  width: 66%;
  margin-left: auto;
  margin-right: auto;
  flex-grow: 1;
  align-self: flex-start;
  margin-top: 2rem;
  margin-right: 4rem;
}
@media (min-width: 1024px) {
  .project-gallery__project:nth-child(3) {
    margin-top: 16rem;
    width: 40%;
    margin-right: 4rem;
    margin-left: 8rem;
  }
}
.project-gallery__project:nth-child(3) .project__image {
  aspect-ratio: 16/9;
}
.project-gallery__project:nth-child(4) {
  width: 66%;
  margin-top: 2rem;
}
@media (min-width: 1024px) {
  .project-gallery__project:nth-child(4) {
    margin-top: 8rem;
    margin-left: 4rem;
    margin-right: 4rem;
    width: 33%;
  }
}
.project-gallery__project:nth-child(4) .project__image {
  aspect-ratio: 5/7;
}
.project-gallery__project:nth-child(5) {
  width: 66%;
  margin-right: auto;
}
@media (min-width: 1024px) {
  .project-gallery__project:nth-child(5) {
    margin-left: 4rem;
    margin-top: 20rem;
    width: 33%;
    margin-right: unset;
  }
}
.project-gallery__project:nth-child(5) .project__image {
  aspect-ratio: 5/7;
}
.project-gallery__project:nth-child(6) {
  width: 100%;
  margin-top: 2rem;
  margin-left: 6rem;
  flex-grow: 1;
}
@media (min-width: 1024px) {
  .project-gallery__project:nth-child(6) {
    margin-top: 8rem;
    width: 40%;
    margin-right: 4rem;
    margin-left: 4rem;
  }
}
.project-gallery__project:nth-child(6) .project__image {
  aspect-ratio: 16/9;
}

.featured-projects__cta {
  margin-top: 4rem;
  text-align: center;
}
.featured-projects a.project {
  cursor: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='122' height='122' viewBox='0 0 122 122'%3E%3Cpath fill='%232d2926' d='M61 0C27.31 0 0 27.31 0 61s27.31 61 61 61 61-27.31 61-61S94.69 0 61 0Zm0 121C27.86 121 1 94.14 1 61S27.86 1 61 1s60 26.86 60 60-26.86 60-60 60ZM44.88 71.18c.86-.47 1.29-1.38 1.29-2.5 0-.96-.33-1.7-.9-2.16-.55-.42-1.25-.6-2.41-.6h-2.78v8.98h1.07v-3.37h1.82l2.31 3.37h1.34l-2.46-3.48c.26-.05.49-.13.71-.25Zm-2.15-.56h-1.59v-3.78h1.59c.73 0 1.31.08 1.72.36.42.31.65.83.65 1.53 0 .77-.27 1.31-.79 1.61-.36.22-.92.27-1.57.27Zm8.76-23.69-3.46 8.98h-1.35l-3.45-8.98h1.13l2.99 7.9 2.99-7.9h1.14Zm-17.55 19h-2.78v8.98h1.07v-3.37h1.72c.74 0 1.44-.07 2.02-.36.86-.47 1.29-1.38 1.29-2.5 0-.96-.33-1.7-.9-2.16-.53-.42-1.25-.6-2.41-.6Zm1.46 4.42c-.38.22-.94.27-1.59.27h-1.59v-3.78h1.59c.74 0 1.31.08 1.72.36.43.31.65.83.65 1.53 0 .77-.27 1.31-.78 1.61Zm19.73-14.44h-1.07v-8.98h1.07v8.98ZM85 65.93h5.84v.95h-2.38v8.03h-1.08v-8.03H85v-.95Zm-17.75 0h4.9v.95h-3.84v3.07h3.41v.95h-3.41v3.07h3.84v.95h-4.9v-8.98Zm8.09-10.02h-1.46l-2.16-7.19-2.15 7.19h-1.46l-2.55-8.98h1.1l2.24 7.92 2.3-7.92h1.01l2.3 7.92 2.24-7.92h1.12l-2.55 8.98Zm.37 14.51c0 2.2 1.39 3.67 3.43 3.67 1.39 0 2.51-.72 3.03-1.89l1 .38c-.68 1.53-2.16 2.5-4.03 2.5-2.65 0-4.51-1.89-4.51-4.65s1.86-4.64 4.51-4.64c1.87 0 3.35.95 4.03 2.5l-1 .36c-.52-1.16-1.64-1.87-3.03-1.87-2.04 0-3.43 1.47-3.43 3.65ZM63.39 55.91h-4.9v-8.98h4.9v.95h-3.84v3.07h3.41v.95h-3.41v3.07h3.84v.95Zm-.51 10.02h1.07v6.54c0 1.61-.98 2.6-2.39 2.6-.65 0-1.33-.18-1.98-.57l.47-.87c.42.27.9.44 1.38.44.91 0 1.46-.61 1.46-1.78v-6.36Zm-9.41-.16c-2.65 0-4.51 1.89-4.51 4.64s1.86 4.65 4.51 4.65 4.5-1.89 4.5-4.65-1.86-4.64-4.5-4.64Zm0 8.31c-2.04 0-3.43-1.47-3.43-3.67s1.39-3.65 3.43-3.65 3.42 1.47 3.42 3.65-1.39 3.67-3.42 3.67Z'/%3E%3C/svg%3E") 61 61, pointer;
}

.image-slider {
  position: relative;
}
.image-slider .image {
  width: 100%;
}
.image-slider .image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.image-slider .image video {
  background-color: #2D2926;
  border-radius: 1rem;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  position: absolute;
  z-index: 2;
  top: 0;
  left: 0;
}
.image-slider .image--square {
  aspect-ratio: 1/1;
}
.image-slider .image--landscape {
  aspect-ratio: 16/9;
}
.image-slider .image--portrait {
  aspect-ratio: 5/7;
}
.image-slider .image--unset img {
  height: auto;
  object-fit: unset;
}
.image-slider .swiper-pagination {
  position: relative;
  bottom: 0;
  top: 0;
  margin-top: 1rem;
}
.image-slider .swiper-button-next, .image-slider .swiper-button-prev {
  color: currentColor;
}
.image-slider .swiper-button-prev {
  left: 0;
  transform: translateX(calc(-100% - 1rem));
}
.image-slider .swiper-button-next {
  right: 0;
  transform: translateX(calc(100% + 1rem));
}
.image-slider .swiper-pagination-bullet {
  background: currentColor;
}

.media {
  position: relative;
  display: flex;
  flex-direction: column;
}
.media.align-y--left {
  align-items: flex-start;
}
.media.align-y--center {
  align-items: center;
}
.media.align-y--right {
  align-items: flex-end;
}
.media__inner {
  width: 100%;
  max-width: var(--max-width, "unset");
}
.media__inner img, .media__inner video {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}

.media-content {
  display: flex;
  gap: 2rem;
}
@media (min-width: 1024px) {
  .media-content {
    gap: 4rem;
  }
}
.media-content.layout-mobile--content-first {
  flex-direction: column-reverse;
}
.media-content.layout-mobile--content-second {
  flex-direction: column;
}
@media (min-width: 1280px) {
  .media-content.layout-desktop--content-first {
    flex-direction: row;
    justify-content: space-between;
  }
  .media-content.layout-desktop--content-first .media-content__image, .media-content.layout-desktop--content-first .media-content__gallery {
    order: 1;
  }
}
@media (min-width: 1024px) {
  .media-content.layout-desktop--content-second {
    flex-direction: row;
  }
  .media-content.layout-desktop--content-second .media-content__content {
    order: 1;
  }
}
@media (min-width: 1280px) {
  .media-content.media--two-thirds .media-content__image, .media-content.media--two-thirds .media-content__gallery {
    width: 66.6666666667%;
    flex-grow: 1;
  }
}
@media (min-width: 1024px) {
  .media-content.media--two-thirds .media-content__content {
    min-width: 400px;
    width: 33.3333333333%;
    align-self: flex-start;
    margin-top: 0;
    margin-right: -25%;
  }
}
@media (min-width: 1024px) {
  .media-content.media--three-quarter .media-content__image {
    width: 75%;
    flex-grow: 1;
  }
}
@media (min-width: 1024px) {
  .media-content.media--three-quarter .media-content__content {
    min-width: 400px;
    width: 25%;
  }
}
@media (min-width: 1024px) {
  .media-content.media--default .media-content__image {
    width: calc(50% - 1rem);
    flex-shrink: 0;
  }
}
@media (min-width: 1024px) {
  .media-content.media--default .media-content__content {
    width: calc(50% - 1rem);
  }
}

@media (min-width: 1024px) {
  .media-content.wrapper--page-width {
    gap: 8rem;
  }
  .media-content.wrapper--page-width .media-content__content {
    max-width: 500px;
  }
  .media-content.wrapper--page-width.media-content--stacked {
    gap: 3rem;
  }
  .media-content.wrapper--page-width.media-content--stacked .media-content__content {
    max-width: 77.5vw;
  }
}

.media-content__content {
  align-self: flex-start;
  max-width: var(--max-width, "unset");
  display: flex;
  flex-direction: column;
}

.media-content--side-by-side .media-content__content p {
  max-width: 32.5rem;
}

.media-content__image {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  align-self: flex-start;
}
.media-content__image img, .media-content__image video {
  aspect-ratio: 3/4;
  max-width: 100rem;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media (min-width: 1024px) {
  .media-content__image img, .media-content__image video {
    aspect-ratio: 6/7;
  }
}

.media-content__content .list li {
  border-bottom: none;
  font-size: 2rem;
  font-family: "Cerebri Sans Pro", sans-serif;
  line-height: 1.3;
  font-weight: 100;
}

.media-content__content .list li:not(:has(a)) {
  cursor: default;
}

.media-content__gallery {
  position: relative;
  flex: 1;
  gap: 1.6rem;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  position: relative;
  display: grid;
  grid-template-columns: repeat(12, auto);
  grid-template-rows: repeat(9, auto);
  max-width: 100%;
  margin: 2rem 0 0;
}
@media (min-width: 1280px) {
  .media-content__gallery {
    gap: 2rem;
    max-width: 64vw;
    margin: 0;
  }
}

.media-content--stacked .media-content__gallery {
  aspect-ratio: 345/260;
  display: flex;
  margin-top: 0;
}
@media (min-width: 1280px) {
  .media-content--stacked .media-content__gallery {
    aspect-ratio: unset;
    max-width: 100%;
  }
}

.media-content__gallery-image {
  display: flex;
  width: 100%;
  height: 100%;
}
.media-content__gallery-image:nth-child(1) {
  grid-column: span 5/span 5;
  grid-row: span 4/span 4;
  grid-column-start: 4;
}
.media-content__gallery-image:nth-child(2) {
  grid-column: span 4/span 4;
  grid-row: span 5/span 5;
  grid-column-start: 9;
  grid-row-start: 2;
}
.media-content__gallery-image:nth-child(3) {
  grid-column: span 4/span 4;
  grid-row: span 4/span 4;
  grid-column-start: 1;
  grid-row-start: 5;
}
.media-content__gallery-image:nth-child(4) {
  grid-column: span 4/span 4;
  grid-row: span 5/span 5;
  grid-column-start: 5;
  grid-row-start: 5;
}
.media-content__gallery-image img {
  display: flex;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.media-content--stacked {
  display: flex;
  flex-direction: column-reverse;
  align-items: center;
  padding-top: var(--padding-top);
  padding-bottom: var(--padding-bottom);
  gap: 2rem;
}
.media-content--stacked .media-content__content p {
  max-width: 86rem;
}

.media-content--centered {
  grid-template-areas: "gallery";
  display: grid;
  width: 100%;
}
.media-content--centered .media-content__gallery {
  width: 100%;
  grid-area: gallery;
  max-width: 100%;
  aspect-ratio: unset;
  height: calc(100vh - (var(--padding-top) + var(--padding-bottom)));
}
.media-content--centered .media-content__gallery .media-content__gallery-image {
  position: absolute;
}
.media-content--centered .media-content__gallery .media-content__gallery-image:nth-child(1) {
  grid-area: a;
  top: 0;
  width: 20vw;
}
.media-content--centered .media-content__gallery .media-content__gallery-image:nth-child(2) {
  grid-area: b;
  top: 10%;
  right: 10%;
  width: 25vw;
}
.media-content--centered .media-content__gallery .media-content__gallery-image:nth-child(3) {
  grid-area: c;
  bottom: 20%;
  left: 20%;
  width: 18vw;
}
.media-content--centered .media-content__gallery .media-content__gallery-image:nth-child(4) {
  grid-area: d;
  right: 10%;
  width: 30vw;
  bottom: 0;
}
.media-content--centered .media-content__content {
  grid-area: gallery;
  text-align: center;
  margin: 0 auto;
  height: 100%;
  justify-content: center;
  z-index: 2;
  max-width: 46rem !important;
}

.media-content__careers {
  margin-top: 4rem;
}
.media-content__careers .careers__grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.project-grid-container {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
}

.project-grid-header {
  padding-top: 2rem;
  padding-bottom: 4rem;
}
@media (min-width: 1024px) {
  .project-grid-header {
    padding-top: 6rem;
    padding-bottom: 6rem;
  }
}
.project-grid-header * {
  max-width: 780px;
}

.project-grid {
  display: grid;
  grid-row-gap: 1rem;
}
@media (min-width: 1024px) {
  .project-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    grid-column-gap: 2rem;
    grid-row-gap: 2rem;
    max-width: calc(100% - 4rem);
    margin-left: 0;
  }
}
@media (min-width: 1024px) {
  .project-grid .project {
    display: flex;
    flex-direction: column;
  }
}

.project-grid-pagination {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 4rem;
}
.project-grid-pagination .cta.hidden {
  display: none;
}

.project {
  display: grid;
  grid-row-gap: 1rem;
}
.project:hover {
  text-decoration: none;
}
.project:hover .project__image img {
  transform: scale(1.05);
}

.project__image {
  display: block;
  aspect-ratio: 4/3;
  overflow: hidden;
}
.project__image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.project__title {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-decoration: none;
}
.project__title span {
  text-decoration: none;
}
.project__title .h5 {
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.project__title .h4 {
  font-family: "GT Super Display", serif;
}

.project-grid-filter-container {
  position: fixed;
  bottom: 0;
  right: 0;
  left: 0;
  width: 100%;
  z-index: 5;
  pointer-events: none;
  transition: opacity 0.4s ease;
}
@media (min-width: 768px) {
  .project-grid-filter-container {
    top: 0;
    right: 0;
    bottom: unset;
    left: unset;
    width: unset;
    height: 100vh;
    opacity: 1;
    transform: translateX(4rem);
    transition: transform 0.4s;
  }
  .project-grid-filter-container.active, .project-grid-filter-container.open {
    transform: translateX(0);
  }
}
.project-grid-filter-container.active, .project-grid-filter-container.open {
  opacity: 1;
}
.project-grid-filter-container.active .project-grid-filter, .project-grid-filter-container.open .project-grid-filter {
  transform: translateY(0%);
}

.project-grid-filter {
  background: #E74C39;
  color: #2D2926;
  display: flex;
  z-index: 10;
  flex-direction: column;
  width: 100%;
  transform: translateY(100%);
  transition: transform 0.4s ease;
}
@media (min-width: 1024px) {
  .project-grid-filter {
    height: 100vh;
    flex-direction: row;
    transform: none;
    transition: none;
  }
}

.project-grid-filter-bg {
  position: absolute;
  top: 0;
  right: 0;
  width: 100vw;
  height: 100vh;
  cursor: pointer;
  pointer-events: none;
}

.project-grid-filter-container.active .project-grid-filter {
  pointer-events: auto;
}

.project-grid-filter__trigger {
  width: 100%;
  text-align: center;
  position: relative;
  height: 46px;
  line-height: 46px;
  cursor: pointer;
  z-index: 2;
  pointer-events: all;
}
@media (min-width: 1024px) {
  .project-grid-filter__trigger {
    border-right: 1px solid black;
    width: 4rem;
    height: 100%;
    line-height: unset;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    cursor: pointer;
  }
  .project-grid-filter__trigger span {
    writing-mode: vertical-lr;
    color: #2D2926;
    transform: rotate(180deg);
    font-size: 1.3rem;
    font-weight: 600;
  }
}
.project-grid-filter__trigger .icon {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 1rem;
  width: 20px;
}
@media (min-width: 1024px) {
  .project-grid-filter__trigger .icon {
    bottom: 1rem;
    top: unset;
    transform: none;
    right: unset;
  }
}
.project-grid-filter__trigger .icon svg {
  width: 100%;
  display: block;
}
.project-grid-filter__trigger .icon svg path {
  stroke: #2D2926;
}

.project-grid-filter__inner {
  padding: 2rem;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: absolute;
  bottom: 0;
  background: #E74C39;
  padding-bottom: calc(46px + 2rem);
}
@media (min-width: 1024px) {
  .project-grid-filter__inner {
    width: unset;
    min-width: 300px;
    max-width: 400px;
    position: relative;
    padding-bottom: 0;
  }
}

.project-grid-filter__title {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  cursor: pointer;
  margin-bottom: 0.5rem;
}
.project-grid-filter__title .icon {
  width: 19px;
  height: 19px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  position: relative;
  transition: transform 0.4s ease;
}
.project-grid-filter__title .icon:before, .project-grid-filter__title .icon:after {
  content: "";
  position: absolute;
  width: 1px;
  height: 100%;
  background: #2D2926;
  transition: transform 0.4s ease;
}
.project-grid-filter__title .icon:after {
  transform: rotate(90deg);
}

.project-grid-filter__category {
  margin-bottom: 0.5rem;
}
.project-grid-filter__category.active .project-grid-filter__options {
  grid-template-rows: 1fr;
}
.project-grid-filter__category.active .icon {
  transform: rotate(180deg);
}
.project-grid-filter__category.active .icon:before {
  transform: rotate(-90deg);
}

.project-grid-filter__options {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.4s ease;
}

.project-grid-filter__options-inner {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  align-items: flex-start;
  grid-row-gap: 0.25rem;
}

.project-grid-filter__option {
  appearance: none;
  color: #2D2926;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  margin-bottom: 0.25rem;
  line-height: 1.25;
  font-size: 1.3rem;
}
.project-grid-filter__option.mixitup-control-active, .project-grid-filter__option:hover {
  text-decoration: underline;
}
.project-grid-filter__option input[type=radio],
.project-grid-filter__option input[type=checkbox] {
  position: absolute;
  clip: rect(0 0 0 0);
  pointer-events: none;
  visibility: hidden;
}
.project-grid-filter__option input[type=radio]:checked + label,
.project-grid-filter__option input[type=checkbox]:checked + label {
  text-decoration: underline;
}
.project-grid-filter__option label {
  cursor: pointer;
}

.project-grid-filter__option-reset {
  appearance: none;
  color: #2D2926;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  margin-bottom: 0.25rem;
  line-height: 1.25;
  font-size: 1.3rem;
  text-align: left;
  font-family: inherit;
}
.project-grid-filter__option-reset:hover {
  text-decoration: underline;
}

.project-grid-filter__active-filters {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.project-grid-filter__active-filters span {
  display: block;
  margin-bottom: 0.5rem;
}
.project-grid-filter__active-filters .project-grid-filter__option {
  margin-bottom: 0.5rem;
  padding: 0;
  text-decoration: none;
  display: inline-flex;
  align-items: baseline;
}
.project-grid-filter__active-filters .project-grid-filter__option:after {
  content: "×";
  margin-left: 0.25rem;
  align-self: middle;
  font-size: 110%;
  display: inline-block;
  line-height: 1;
}
.project-grid-filter__active-filters .project-grid-filter__clear {
  margin-top: 1rem;
  text-decoration: underline;
  cursor: pointer;
  padding: 0;
  background: none;
  appearance: none;
  border: none;
  color: #2D2926;
}

.project-grid-filter__clear-section {
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(45, 41, 38, 0.2);
}

.project-grid-filter__clear-all {
  appearance: none;
  background: none;
  border: 1px solid #2D2926;
  color: #2D2926;
  padding: 0.75rem 1.5rem;
  cursor: pointer;
  font-size: 1.3rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: all 0.3s ease;
}
.project-grid-filter__clear-all:hover {
  background: #2D2926;
  color: #E74C39;
}

.project-overview-container {
  padding-bottom: 4rem;
}

.project-overview-image {
  display: block;
  margin-bottom: 4rem;
  aspect-ratio: 1/1;
}
@media (min-width: 1024px) {
  .project-overview-image {
    aspect-ratio: unset;
  }
}
.project-overview-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media (min-width: 1024px) {
  .project-overview-image img {
    height: auto;
  }
}

.project-overview {
  display: grid;
  grid-row-gap: 2rem;
}
@media (min-width: 1024px) {
  .project-overview {
    grid-template-columns: 1fr 460px;
    grid-column-gap: 4rem;
  }
}

.project-overview__details-list {
  display: flex;
  flex-direction: column;
}
.project-overview__details-list li {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem;
}
.project-overview__details-list li span {
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.project-overview__details-list li p {
  margin: 0;
}

.project-overview__content {
  max-width: 680px;
}

.splide__slide .content__text, .splide__slide .project__title {
  opacity: 0.5;
  transition: opacity 0.4s ease;
}
.splide__slide.is-active .content__text, .splide__slide.is-active .project__title {
  opacity: 1;
}
.splide__slide a {
  text-decoration: none;
}

.project--slide {
  max-width: min-content;
}
.project--slide .project__image {
  aspect-ratio: 4/3;
  width: 50rem;
  max-width: calc(100vw - 12rem);
}

.project-slider[data-per-page="3"] .project__title {
  opacity: 1;
}

.values-container {
  overflow: hidden;
}

@media (min-width: 1024px) {
  .values-container .content-container {
    display: grid;
    grid-template-columns: 3fr 5fr;
    grid-column-gap: 4rem;
  }
}

.values-headline {
  margin-bottom: 2rem;
  position: relative;
  z-index: 2;
}

.values-headline .h3 {
  font-size: 4rem;
}

.values {
  display: grid;
}
@media (min-width: 1024px) {
  .values {
    grid-template-columns: 3fr 5fr;
    align-items: center;
    grid-column-gap: 4rem;
  }
}

@media (min-width: 1024px) {
  .values__content {
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
}
.values__content .accordion__content p {
  max-width: 500px;
}

.values__images-container .media-content__gallery {
  grid-template-columns: repeat(11, auto);
  grid-template-rows: repeat(10, auto);
}
.values__images-container .media-content__gallery .media-content__gallery-image {
  max-height: 22rem;
  width: 100%;
}
@media (min-width: 1024px) {
  .values__images-container .media-content__gallery .media-content__gallery-image {
    max-height: 36.5rem;
  }
}

.values__images-container .media-content__gallery .media-content__gallery-image:nth-child(1) {
  grid-column: span 7/span 7;
  grid-row: span 5/span 5;
}
.values__images-container .media-content__gallery .media-content__gallery-image:nth-child(1) img {
  aspect-ratio: 38/25;
}

.values__images-container .media-content__gallery .media-content__gallery-image:nth-child(2) {
  grid-column: span 4/span 4;
  grid-row: span 6/span 6;
  grid-column-start: 8;
  grid-row-start: 3;
}
.values__images-container .media-content__gallery .media-content__gallery-image:nth-child(2) img {
  aspect-ratio: 27/34;
}

.values__images-container .media-content__gallery .media-content__gallery-image:nth-child(3) {
  grid-column: span 5/span 5;
  grid-row: span 5/span 5;
  grid-column-start: 3;
  grid-row-start: 6;
}
.values__images-container .media-content__gallery .media-content__gallery-image:nth-child(3) img {
  aspect-ratio: 27/34;
}

.values__images {
  display: grid;
}
.values__images .media-content__gallery {
  grid-area: images;
  opacity: 0;
}
.values__images .media-content__gallery:first-child {
  position: relative;
}
.values__images .media-content__gallery.active {
  opacity: 1;
}

.values__image img {
  width: 100%;
  height: auto;
  display: block;
}

.related-projects {
  padding-top: 4rem;
  padding-bottom: 4rem;
  display: flex;
  flex-direction: column;
}

.related-projects__cta {
  text-align: center;
  margin: 0 auto;
  margin-top: 4rem;
  margin-bottom: 4rem;
  text-decoration: underline;
  text-decoration-thickness: from-font;
  text-underline-offset: 0.1em;
}

.related-projects-grid {
  display: grid;
  grid-template-columns: repeat(1, minmax(0, 1fr));
  gap: 2rem;
}
@media (min-width: 768px) {
  .related-projects-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.related-projects .wrapper {
  padding-top: 2rem;
  padding-bottom: 2rem;
  width: 100%;
}
.related-projects .wrapper .related-projects__cta {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

@media (min-width: 1024px) {
  .sticky-content-gallery {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-column-gap: calc(var(--gap, 0rem) * 2);
  }
}
.sticky-content-gallery .gallery .image {
  width: 100%;
  margin-bottom: var(--gap, 0rem);
}
.sticky-content-gallery .gallery .image img {
  display: block;
  width: 100%;
  height: auto;
}
.sticky-content-gallery .content-container .content__inner {
  height: 100dvh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: var(--max-width, unset);
  padding-right: 2rem;
}

.floor-plans-container .floor-plans-placeholder {
  margin-top: 148px;
  width: 100%;
  height: 65vh;
}
.floor-plans-container .sightmap-container {
  width: auto;
  height: 100vh;
}

.filters {
  display: none;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  justify-content: space-between;
}
.filters.active {
  display: flex;
  align-items: center;
}
.filters .filter-icon {
  width: 36px;
}
.filters .filter-icon svg {
  display: block;
  width: 100%;
}
.filters span {
  width: 100%;
  margin-bottom: 20px;
}
@media (min-width: 768px) {
  .filters span {
    margin-right: 20px;
    width: auto;
  }
}
.filters .forms {
  display: flex;
}
.filters form {
  display: flex;
  margin-left: 1rem;
}
.filters form:last-child {
  margin-right: 0;
}
.filters form .selectric-wrapper {
  margin-right: 1rem;
}
.filters form .selectric-wrapper:last-child {
  margin-right: 0;
}
.filters form > ul {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  flex-wrap: wrap;
}
.filters form > ul li {
  margin-right: 20px;
  cursor: pointer;
  margin-bottom: 10px;
}
.filters form > ul li:last-child {
  margin-right: 0;
}
@media (min-width: 1024px) {
  .filters form > ul li {
    margin-bottom: 0;
  }
}
.filters form > ul li:after {
  content: "";
  display: block;
  height: 2px;
  transform: scaleX(0);
  transform-origin: right center;
  transition: transform 0.4s;
}
.filters form > ul li:hover:after, .filters form > ul li.mixitup-control-active:after {
  transform: scaleX(1);
  transform-origin: left center;
  transition: transform 0.4s;
}
.filters form > ul button {
  appearance: none;
  background: transparent;
  border: none;
  padding: 0;
  font-size: 1em;
  text-transform: uppercase;
}
.filters form > ul button:focus, .filters form > ul button:hover {
  outline: none;
}

.floorplans {
  display: flex;
  justify-content: space-between;
}
@supports (display: grid) {
  .floorplans {
    display: grid;
    row-gap: 50px;
    column-gap: 50px;
  }
  @media (min-width: 768px) {
    .floorplans {
      grid-template-columns: repeat(2, 1fr);
    }
  }
  @media (min-width: 1024px) {
    .floorplans {
      grid-template-columns: repeat(3, 1fr);
    }
  }
}

.floorplan {
  padding: 20px;
  display: flex;
  flex-direction: column;
  text-decoration: none;
  transition: background 0.4s, border 0.4s;
}
.floorplan hr {
  height: 4px;
  border: none;
  margin: 1rem 0;
}
.floorplan .container {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}
.floorplan .left {
  margin-right: 10px;
}
.floorplan:hover {
  transition: background 0.4s, border 0.4s;
}

.testimonial {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  position: relative;
  padding: var(--padding-top, 4rem) 2rem var(--padding-bottom, 4rem);
}

.testimonial__copy,
.testimonial__citation {
  align-items: center;
  display: flex;
  flex-direction: column;
  position: relative;
}

.testimonial__copy {
  gap: 1.5rem;
  text-align: center;
}
.testimonial__copy > * {
  max-width: 72rem;
}
.testimonial__copy .h3 {
  line-height: 1.1666666667;
}

.testimonial__citation {
  display: flex;
  flex-direction: column;
  position: relative;
}

.single-project .testimonial {
  margin: 3rem 0;
}

.section--blog-gallery {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.section--blog-gallery .image {
  height: auto;
  width: 100%;
  position: relative;
  vertical-align: middle;
}
.section--blog-gallery .image img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  vertical-align: middle;
}

.blog-gallery-inner {
  display: grid;
  gap: 2rem;
}

.blog-gallery--2,
.blog-gallery--4 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.blog-gallery--3 {
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: repeat(2, 1fr);
}
.blog-gallery--3 .image:nth-of-type(1) {
  grid-area: 1/1/2/3;
}
.blog-gallery--3 .image:nth-of-type(2) {
  grid-area: 2/1/3/2;
}
.blog-gallery--3 .image:nth-of-type(3) {
  grid-area: 2/2/3/3;
}

.section--process-explorer {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
}
@media (min-width: 1024px) {
  .section--process-explorer {
    display: block;
    align-items: flex-start;
  }
}
.section--process-explorer .process-explorer-block__image,
.section--process-explorer .process-explorer-block__illustration,
.section--process-explorer .process-explorer-block__gallery,
.section--process-explorer .image {
  aspect-ratio: 3/4;
  max-width: 100%;
  position: relative;
  vertical-align: middle;
  max-height: 100%;
}
@media (min-width: 1024px) {
  .section--process-explorer .process-explorer-block__image,
  .section--process-explorer .process-explorer-block__illustration,
  .section--process-explorer .process-explorer-block__gallery,
  .section--process-explorer .image {
    aspect-ratio: 3/4;
  }
}
.section--process-explorer .process-explorer-block__image img,
.section--process-explorer .process-explorer-block__illustration img,
.section--process-explorer .process-explorer-block__gallery img,
.section--process-explorer .image img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  vertical-align: middle;
  max-width: 100%;
}
@media (min-width: 1024px) {
  .section--process-explorer .process-explorer-block__image img,
  .section--process-explorer .process-explorer-block__illustration img,
  .section--process-explorer .process-explorer-block__gallery img,
  .section--process-explorer .image img {
    width: auto;
    height: 100%;
    max-height: 100%;
  }
}
.section--process-explorer .process-explorer-block__illustration {
  max-width: 300px;
}
.section--process-explorer .process-explorer-block__illustration img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: bottom;
}
.section--process-explorer li:nth-child(even) .process-explorer-block__illustration img {
  object-position: bottom;
}
.section--process-explorer li:nth-child(odd) .process-explorer-block__illustration img {
  object-position: top;
}

.process-explorer-intro,
.process-explorer-block {
  padding-top: calc(var(--padding-top) / 2);
  padding-bottom: calc(var(--padding-bottom) / 2);
}
@media (min-width: 1024px) {
  .process-explorer-intro,
  .process-explorer-block {
    padding-top: var(--padding-top);
    padding-bottom: var(--padding-bottom);
  }
}

.process-explorer-intro {
  width: 100%;
}

.process-explorer-intro .copy {
  max-width: 56rem;
}

.process-explorer-blocks {
  box-sizing: border-box;
  display: flex;
  overflow: hidden;
  max-width: 100%;
  will-change: transform;
}

.process-explorer-list {
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  max-width: 100%;
  will-change: transform;
}
@media (min-width: 1024px) {
  .process-explorer-list {
    height: 100%;
    height: 100vh;
    height: 100svh;
    align-items: flex-start;
    justify-content: flex-start;
    flex-direction: row;
    max-width: 100%;
  }
}

.process-explorer-block,
.process-explorer-block__content,
.process-explorer-block__gallery {
  display: flex;
  flex-direction: column;
  position: relative;
  gap: 2rem;
}

.process-explorer-block {
  box-sizing: border-box;
  padding-left: 2rem;
  padding-right: 2rem;
  max-width: 100%;
  will-change: transform;
}
@media (min-width: 1024px) {
  .process-explorer-block {
    display: flex;
    flex-direction: row;
    width: 100%;
    flex-shrink: 0;
    height: 100%;
    height: 100vh;
    height: 100svh;
    gap: 8rem;
    justify-content: space-between;
    padding-left: 4rem;
    padding-right: 4rem;
    max-height: 100%;
    max-width: none;
    width: unset;
    will-change: transform;
  }
}
.process-explorer-block:not(.process-explorer-block--intro) {
  counter-increment: process-explorer-blocks;
}

@media (min-width: 1024px) {
  .process-explorer-block--intro {
    padding-right: 10rem;
  }
}

.process-explorer-block__content {
  box-sizing: border-box;
  justify-content: space-between;
  gap: 8rem;
  max-width: 60rem;
}

.process-explorer-block .content__intro {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.process-explorer-block .content__intro::after {
  content: "(0" counter(process-explorer-blocks) ")";
  font-size: 1.5rem;
}

@media (min-width: 1024px) {
  .process-explorer-block__gallery {
    flex-direction: row;
    flex: 1;
  }
}

.process-explorer-block .content__intro .h1 {
  margin-bottom: 0;
}

.process-explorer-block__content--intro {
  justify-content: flex-start;
  gap: 2rem;
  max-width: 60rem;
}

.process-explorer-block__content--intro .h1 {
  max-width: 40rem;
}

.section--press {
  display: flex;
  flex-direction: column;
  padding-bottom: 1.5rem;
  position: relative;
}
@media only screen and (min-width: 1024px) {
  .section--press {
    padding-bottom: 3.5rem;
  }
}
.section--press .h2 {
  margin: 0;
}
.section--press .posts-grid-container {
  display: flex;
  gap: 1.5rem;
  flex-direction: column;
  overflow: hidden;
  position: relative;
}
@media only screen and (min-width: 1024px) {
  .section--press .posts-grid-container {
    gap: var(--padding-top, 5rem);
  }
}
.section--press .posts-grid-container .posts-grid {
  max-width: 100%;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
@media (min-width: 1024px) {
  .section--press .posts-grid-container .posts-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 4rem 1.5rem;
  }
}
.section--press .posts-grid-container .posts-grid .featured-image {
  aspect-ratio: 4/3;
  overflow: hidden;
  margin-bottom: 1rem;
}
.section--press .posts-grid-container .posts-grid .featured-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.section--press .posts-grid-container .card__item-primary {
  display: flex;
  flex-direction: column;
}
.section--press .posts-grid-container .card__item-primary .h4 {
  margin-bottom: 0rem;
}
.section--press .posts-grid-container .posts-grid-pagi {
  margin: 3.5rem auto;
  display: inline-flex;
  align-items: center;
  padding: 1rem 2rem;
}
.section--press .posts-grid-container .posts-grid-pagi.hidden {
  display: none;
}

.section--news {
  box-sizing: border-box;
  display: block;
  padding-bottom: 1.5rem;
  overflow: hidden;
  position: relative;
  max-width: 100%;
}
@media only screen and (min-width: 1024px) {
  .section--news {
    padding-bottom: 3.5rem;
  }
}
.section--news .news-content {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  position: relative;
}
@media only screen and (min-width: 1024px) {
  .section--news .news-content {
    gap: calc(var(--padding-top, 5rem) * 1.5);
  }
}
.section--news .featured-image {
  height: auto;
  width: 100%;
  position: relative;
  vertical-align: middle;
}
.section--news .featured-image img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  vertical-align: middle;
}
.section--news .featured-post__image {
  overflow: hidden;
  max-height: 66svh;
  width: 50rem;
  max-width: calc(100vw - 12rem);
  aspect-ratio: 4/3;
}
.section--news .featured-post__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.section--news .splide__slide .content__text, .section--news .splide__slide .project__title {
  opacity: 1;
}
@media (min-width: 1024px) {
  .section--news .project-slider[data-per-page="1"] .featured-post__image {
    aspect-ratio: 16/9;
  }
}
.section--news .featured-post__content {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.section--news .content__text {
  display: flex;
  flex-direction: column;
  flex: 1;
  max-width: calc(100vw - 12rem);
}
.section--news .content__text > * {
  max-width: 50rem;
}
.section--news .grid__filters ul {
  list-style-type: none;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding-bottom: 0.5rem;
  align-items: flex-start;
}
@media only screen and (min-width: 1024px) {
  .section--news .grid__filters ul {
    flex-direction: row;
    gap: 5rem;
  }
}
.section--news .filter-item {
  cursor: pointer;
  display: inline-block;
  position: relative;
  font-weight: 100;
}
.section--news .filter-item:after {
  content: "";
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: currentColor;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.3s;
}
.section--news .filter-item:hover:after, .section--news .filter-item.mixitup-control-active:after {
  transform: scaleX(1);
  transform-origin: left;
}
.section--news .posts-grid__featured {
  overflow: hidden;
  position: relative;
  max-width: 100%;
}
.section--news .posts-grid__featured {
  margin-bottom: 2rem;
}
@media (min-width: 1024px) {
  .section--news .posts-grid__featured {
    margin-bottom: 4rem;
  }
}
.section--news .posts-grid-container {
  display: flex;
  gap: 1rem;
  flex-direction: column;
  max-width: 100%;
  overflow: hidden;
  position: relative;
}
.section--news .posts-grid-container .posts-grid {
  display: grid;
  grid-row-gap: 1rem;
}
@media (min-width: 1024px) {
  .section--news .posts-grid-container .posts-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    grid-column-gap: 2rem;
    grid-row-gap: 2rem;
    max-width: calc(100% - 4rem);
    margin-left: 0;
  }
}
@media (min-width: 1024px) {
  .section--news .posts-grid-container .posts-grid .posts-grid__item {
    display: flex;
    flex-direction: column;
  }
  .section--news .posts-grid-container .posts-grid .posts-grid__item .project__image {
    aspect-ratio: unset;
  }
}
.section--news .posts-grid-container .posts-grid__item {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: 100%;
}
@media (min-width: 1024px) {
  .section--news .posts-grid-container .posts-grid__item {
    height: 100%;
  }
}
.section--news .posts-grid-container .card__item-primary {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  grid-row-gap: 2rem;
}
@media (min-width: 1024px) {
  .section--news .posts-grid-container .card__item-primary {
    flex: 1;
    height: 100%;
    width: 100%;
    object-fit: cover;
    overflow: hidden;
  }
}
.section--news .posts-grid-container .card__item-primary > a:first-of-type {
  width: 100%;
  display: block;
}
@media (min-width: 1024px) {
  .section--news .posts-grid-container .card__item-primary > a:first-of-type {
    flex: 1;
  }
}
@media (min-width: 1024px) {
  .section--news .posts-grid-container .card__item-content {
    min-height: 12.5rem;
  }
  .section--news .posts-grid-container .card__item-content .h3 {
    width: 100%;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }
}
@media (min-width: 1280px) {
  .section--news .posts-grid-container .card__item-content {
    min-height: 10rem;
  }
}
.section--news .posts-grid-container .card__image {
  flex: 1;
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 100%;
}
.section--news .posts-grid-container .card__image img {
  position: relative;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.section--news .posts-grid-container .card__item-primary .h3 {
  font-size: 2rem;
}
.section--news .posts-grid-container .posts-grid-pagi {
  margin: 3.5rem auto;
  display: inline-flex;
  align-items: center;
  padding: 1rem 2rem;
}
.section--news .posts-grid-container .posts-grid-pagi.hidden {
  display: none;
}

.team-bio-grid-container {
  position: relative;
}

.team-bio-grid {
  display: grid;
  grid-row-gap: 2rem;
  grid-column-gap: 2rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
@media (min-width: 1024px) {
  .team-bio-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

.team-bio-grid-header {
  text-align: center;
  margin-bottom: 4rem;
}
.team-bio-grid-header .h2 {
  margin-bottom: 0;
}

.team-bio-grid-pagination {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 4rem;
}
.team-bio-grid-pagination .cta.hidden {
  display: none;
}

.team-member {
  display: flex;
  flex-direction: column;
  grid-row-gap: 1rem;
  cursor: pointer;
}
.team-member:hover {
  text-decoration: none;
}
.team-member:hover .team-member__image img {
  transform: scale(1.05);
}
.team-member .team-member__modal {
  display: none;
}

.team-member__image {
  aspect-ratio: 280/356;
  overflow: hidden;
  display: block;
}
.team-member__image img {
  object-fit: cover;
  width: 100%;
  height: 100%;
  transition: transform 0.4s ease;
}

.team-member__content {
  display: grid;
  grid-row-gap: 0.5rem;
}
.team-member__content .h4 {
  margin-bottom: 0;
}
.team-member__content .team-member__title {
  line-height: 1.25;
  font-size: 1.5rem;
}

.team-bio-grid-cta {
  margin-top: 5rem;
  text-align: center;
}

.bio-modal {
  bottom: 0;
  pointer-events: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: #E74C39;
  height: 100vh;
  opacity: 0;
  transition: opacity 0.4s, transform 0.4s;
  transform: translateY(100%);
}
.bio-modal.active {
  pointer-events: auto;
  opacity: 1;
  transform: translateY(0);
}

.team-member__modal {
  display: flex;
  flex-direction: column;
  background: #E74C39;
  z-index: 10;
  left: 0;
  top: 0;
  width: 100%;
  height: 100dvh;
}
@media (min-width: 1024px) {
  .team-member__modal {
    flex-direction: row;
  }
}

.team-member__bio-image {
  display: block;
  max-height: 100vmin;
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
  flex-shrink: 0;
}
@media (min-width: 1024px) {
  .team-member__bio-image {
    aspect-ratio: unset;
    max-height: unset;
    width: 50%;
    height: 100%;
    flex-shrink: 0;
  }
}
.team-member__bio-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  display: block;
}

.team-member__bio-content {
  overflow: auto;
  background-image: url("images/bio-background.svg");
  background-size: cover;
}
@media (min-width: 1024px) {
  .team-member__bio-content {
    width: 50%;
    flex-shrink: 0;
    height: 100%;
  }
}

.team-member__bio-content-inner {
  padding: 2rem;
  display: flex;
  flex-direction: column;
  color: #4d0902;
  grid-row-gap: 1rem;
}
@media (min-width: 1024px) {
  .team-member__bio-content-inner {
    padding: 4rem;
    padding-top: 8rem;
    grid-row-gap: 1rem;
    height: 100%;
    max-width: 800px;
    margin: 0 auto;
  }
}
.team-member__bio-content-inner .h2 {
  margin-bottom: 0;
}
.team-member__bio-content-inner .team-member__title {
  font-weight: 600;
  line-height: 1.25;
  padding-right: 2rem;
  font-size: 1.5rem;
}
.team-member__bio-content-inner .team-member__bio {
  font-size: 1.5rem;
}

.team-member__accordions {
  display: flex;
  flex-direction: column;
  margin-bottom: 2rem;
  font-size: 1.5rem;
}

.team-member__accordion .accordion__content {
  border-bottom: 1px solid #4d0902;
}
.team-member__accordion .accordion__content p:last-child {
  margin-bottom: 0.5rem;
}
.team-member__accordion .accordion__title .icon:before, .team-member__accordion .accordion__title .icon:after {
  background: #4d0902;
}
.team-member__accordion.active .icon {
  transition: transform 0.4s ease;
  transform: rotate(180deg);
}
.team-member__accordion.active .icon:before {
  transform: rotate(-90deg);
}
.team-member__accordion.active .accordion__content {
  grid-template-rows: 1fr;
}

.team-member__pagination {
  display: flex;
  justify-content: space-between;
  margin-top: auto;
}
.team-member__pagination button {
  display: inline-flex;
  align-items: center;
  padding: 0;
  background: transparent;
  appearance: none;
  border: none;
  text-transform: uppercase;
  font-size: 1.3rem;
  letter-spacing: 0.1em;
  color: #4d0902;
  cursor: pointer;
}
.team-member__pagination button svg {
  width: 24px;
}
.team-member__pagination button.js-previous svg {
  margin-right: 0.5rem;
}
.team-member__pagination button.js-next svg {
  margin-left: 0.5rem;
}

.team-member__close {
  position: absolute;
  top: 2rem;
  right: 2rem;
  width: 40px;
  cursor: pointer;
}
.team-member__close svg path {
  stroke: #4d0902;
}

.team-member__modal {
  display: none;
}
.team-member__modal.active {
  display: flex;
}

.sustainability {
  display: grid;
  grid-row-gap: 2rem;
}
.sustainability .h2 {
  max-width: 870px;
}
@media (min-width: 1024px) {
  .sustainability {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-column-gap: 4rem;
  }
}

.sustainability__projects {
  display: grid;
  gap: 1rem;
  margin-top: 2rem;
}
@media (min-width: 1024px) {
  .sustainability__projects {
    margin-top: 4rem;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 1024px) {
  .sustainability__projects-title {
    grid-column: span 2;
  }
}

.sustainability__image img {
  display: block;
  width: 100%;
  height: auto;
}

section.connect-hero .media-content__content {
  width: 100%;
}
@media (min-width: 1024px) {
  section.connect-hero .media-content__content {
    width: unset;
  }
}
section.connect-hero .media-content__content .content__inner:first-child {
  margin-bottom: 4rem;
}
section.connect-hero .media-content__content .connect_locations {
  display: grid;
  grid-template-columns: repeat(1, minmax(0, 1fr));
  margin-bottom: 2rem;
}
@media (min-width: 768px) {
  section.connect-hero .media-content__content .connect_locations {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
section.connect-hero .media-content__content .connect_locations .connect_location {
  padding-bottom: 2rem;
}
@media (min-width: 1280px) {
  section.connect-hero .media-content__content .connect_locations .connect_location {
    padding-bottom: 4rem;
  }
}
section.connect-hero .media-content__content .connect_locations .connect_location .shop-link {
  display: inline-flex;
  font-size: 1.5rem;
  gap: 0.5rem;
}
section.connect-hero .media-content__content .connect_locations .connect_location svg {
  width: 16px;
  display: inline-block;
  margin-right: 0.25rem;
}
section.connect-hero .media-content__content .connect_locations .connect-title {
  font-weight: 700;
  margin-bottom: 0.5rem;
}
section.connect-hero .media-content__content .connect_inquiries .connect_inquiry {
  border-bottom: 1px solid #D9CAB7;
  padding-bottom: 1rem;
}
section.connect-hero .media-content__content .connect_inquiries .connect_inquiry:first-child {
  margin-bottom: 2rem;
}
section.connect-hero .media-content__content .connect_inquiries .connect_inquiry .inquiry-title {
  margin-bottom: 0;
}
section.connect-hero .media-content__content .connect_inquiries .connect_inquiry .inquiry-link {
  font-family: "GT Super Display", serif;
}

.section--client-list {
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  overflow-x: clip;
  gap: 2.5rem;
  padding-top: calc(var(--padding-top, 2.5rem) / 1.5);
  padding-bottom: calc(var(--padding-bottom, 2.5rem) / 1.5);
}
@media screen and (min-width: 1024px) {
  .section--client-list {
    align-items: center;
    gap: 3rem;
    padding-top: var(--padding-top, 5rem);
    padding-bottom: var(--padding-bottom, 5rem);
  }
}
.section--client-list .client-list-inner {
  align-items: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 100%;
}
.section--client-list .client-list-inner > .h1 {
  border-bottom: 1px solid currentColor;
  margin-top: 1.5rem;
  margin-bottom: 0;
  text-align: center;
  align-self: stretch;
  padding-bottom: calc(var(--padding-bottom, 2.5rem) / 2.5);
}
@media screen and (min-width: 1024px) {
  .section--client-list .client-list-inner > .h1 {
    padding-bottom: calc(var(--padding-bottom, 2.5rem) / 1.5);
  }
}
.section--client-list .client-group {
  border-bottom: 1px solid currentColor;
  display: flex;
  flex-direction: column;
  padding: 1.5rem 0;
  width: 100%;
}
@media screen and (min-width: 1024px) {
  .section--client-list .client-group {
    padding: 2rem 0;
  }
}
.section--client-list .h2.client-group__title {
  align-items: center;
  cursor: pointer;
  display: flex;
  font-size: 2.6666666667rem;
  gap: 2rem;
  justify-content: space-between;
  font-style: normal;
  line-height: 1;
  margin-bottom: 0;
  vertical-align: middle;
}
@media screen and (min-width: 1024px) {
  .section--client-list .h2.client-group__title {
    font-size: 2.6666666667rem;
  }
}
.section--client-list .client-group__content {
  display: grid;
  overflow: hidden;
  grid-template-rows: 0fr;
  transition: 0.4s grid-template-rows ease;
  position: relative;
  width: 100%;
}
.section--client-list .client-group__content-holder {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  position: relative;
}
.section--client-list .client-group__content-holder::before {
  background: transparent;
  content: "";
  display: inline-flex;
  height: 2.5rem;
  width: 100%;
}
.section--client-list .client-group__content-holder::after {
  background: transparent;
  content: "";
  display: inline-flex;
  width: 100%;
}
.section--client-list .client-group__content-holder > ul {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  overflow: hidden;
  position: relative;
  width: 100%;
}
@media screen and (min-width: 1024px) {
  .section--client-list .client-group__content-holder > ul {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
  }
}
.section--client-list .client-group.active .client-group__content {
  grid-template-rows: 1fr;
}
.section--client-list button.client-group__trigger {
  background: none;
  border: none;
  display: flex;
  justify-content: center;
  align-items: center;
  color: currentColor;
  height: 2rem;
  width: 2rem;
  cursor: pointer;
  position: relative;
}
.section--client-list button.client-group__trigger::before {
  background: currentColor;
  content: "";
  position: absolute;
  transition: transform 0.4s ease;
  height: 100%;
  margin: auto;
  width: 1px;
  z-index: 1;
}
.section--client-list button.client-group__trigger::after {
  background: currentColor;
  content: "";
  position: absolute;
  height: 1px;
  inset: 0;
  margin: auto;
  width: 100%;
  z-index: 1;
}
.section--client-list .client-group.active .client-group__trigger::before {
  transform: rotate(90deg);
}
.section--client-list .client__title {
  font-weight: 700;
  font-size: 1.5rem;
}

.sector-spotlight {
  padding-top: calc(var(--padding-top, 5rem) * 0.75);
  padding-bottom: calc(var(--padding-bottom, 5rem) * 0.75);
}
@media only screen and (min-width: 1024px) {
  .sector-spotlight {
    padding-top: var(--padding-top, 5rem);
    padding-bottom: var(--padding-bottom, 5rem);
  }
}

.sector-spotlight {
  display: flex;
  flex-direction: column;
  gap: calc(var(--padding-top, 5rem) * 1.5);
}
@media only screen and (min-width: 1024px) {
  .sector-spotlight {
    gap: calc(var(--padding-top, 5rem) * 2.5);
  }
}

.sector-spotlight-item {
  display: flex;
  flex-direction: column;
}

@media (min-width: 1024px) {
  .h2.sector-spotlight-item__headline {
    font-size: 3rem;
  }
}

.sector-spotlight-item:nth-of-type(even) {
  align-items: flex-end;
  justify-content: flex-end;
}

.sector-spotlight-item-inner {
  display: flex;
  flex-direction: column;
  max-width: 100%;
  position: relative;
}
@media only screen and (min-width: 1024px) {
  .sector-spotlight-item-inner {
    max-width: 72.5vw;
  }
}

.sector-spotlight-item__images {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-template-rows: repeat(9, 1fr);
  gap: 1.6rem;
  max-width: 100%;
  position: relative;
  overflow: hidden;
}
@media only screen and (min-width: 1024px) {
  .sector-spotlight-item__images {
    gap: 2rem;
  }
}

.sector-spotlight-item__image {
  overflow: hidden;
  height: 100%;
  width: 100%;
  max-width: 100%;
}

.sector-spotlight-item__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: relative;
  max-width: 100%;
}

.sector-spotlight-item:nth-of-type(odd) .sector-spotlight-item__image:nth-child(1) {
  grid-column: span 5/span 5;
  grid-row: span 7/span 7;
}

.sector-spotlight-item:nth-of-type(odd) .sector-spotlight-item__image:nth-child(2) {
  grid-column: span 7/span 7;
  grid-row: span 5/span 5;
  grid-column-start: 6;
}

.sector-spotlight-item:nth-of-type(odd) .sector-spotlight-item__image:nth-child(3) {
  grid-column: span 6/span 6;
  grid-row: span 4/span 4;
  grid-column-start: 6;
  grid-row-start: 6;
}

.sector-spotlight-item:nth-of-type(even) .sector-spotlight-item__image:nth-child(1) {
  grid-column: span 5/span 5;
  grid-row: span 7/span 7;
  grid-column-start: 8;
  grid-row-start: 1;
}

.sector-spotlight-item:nth-of-type(even) .sector-spotlight-item__image:nth-child(2) {
  grid-column: span 7/span 7;
  grid-row: span 5/span 5;
  grid-column-start: 1;
  grid-row-start: 1;
}

.sector-spotlight-item:nth-of-type(even) .sector-spotlight-item__image:nth-child(3) {
  grid-column: span 5/span 5;
  grid-row: span 4/span 4;
  grid-column-start: 3;
  grid-row-start: 6;
}

a.sector-spotlight-item-inner {
  cursor: url("data:image/svg+xml,%3Csvg width='122' height='122' viewBox='0 0 122 122' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M61 121C94.1371 121 121 94.1371 121 61C121 27.8629 94.1371 1 61 1C27.8629 1 1 27.8629 1 61C1 94.1371 27.8629 121 61 121ZM61 122C94.6894 122 122 94.6894 122 61C122 27.3106 94.6894 0 61 0C27.3106 0 0 27.3106 0 61C0 94.6894 27.3106 122 61 122Z' fill='%232D2926'/%3E%3Cpath d='M72.0489 79H67.6938V70.017H68.7598V78.051H72.0489V79Z' fill='%232D2926'/%3E%3Cpath d='M65.1631 79H60.8081V70.017H61.8741V78.051H65.1631V79Z' fill='%232D2926'/%3E%3Cpath d='M58.2486 79H57.1047L56.2727 76.803H51.9566L51.1246 79H49.9937L53.4387 70.017H54.7906L58.2486 79ZM54.1147 71.096L52.2947 75.893H55.9347L54.1147 71.096Z' fill='%232D2926'/%3E%3Cpath d='M74.9297 58.934L77.1657 51.017H78.2837L75.7357 60H74.2797L72.1217 52.811L69.9767 60H68.5207L65.9727 51.017H67.0777L69.3137 58.934L71.6147 51.017H72.6287L74.9297 58.934Z' fill='%232D2926'/%3E%3Cpath d='M63.7882 51.017V51.966H59.9532V55.034H63.3592V55.983H59.9532V59.051H63.7882V60H58.8872V51.017H63.7882Z' fill='%232D2926'/%3E%3Cpath d='M55.5304 60H54.4644V51.017H55.5304V60Z' fill='%232D2926'/%3E%3Cpath d='M47.7582 58.921L50.7482 51.017H51.8922L48.4342 60H47.0822L43.6372 51.017H44.7682L47.7582 58.921Z' fill='%232D2926'/%3E%3C/svg%3E%0A") 61 61, pointer;
}

.content-columns {
  display: flex;
  gap: 4rem;
}
@media (min-width: 1024px) {
  .content-columns {
    gap: 4rem;
  }
}
.content-columns.layout-mobile--content-first {
  flex-direction: column;
}
.content-columns.layout-mobile--content-second {
  flex-direction: column-reverse;
}
@media (min-width: 1024px) {
  .content-columns.layout-desktop--content-first {
    justify-content: space-between;
  }
}
@media (min-width: 1024px) {
  .content-columns.layout-desktop--content-second {
    flex-direction: row;
  }
  .content-columns.layout-desktop--content-second .content-columns__content {
    order: 1;
  }
}

@media (min-width: 1024px) {
  .content-columns.wrapper--page-width {
    gap: 4rem;
  }
  .content-columns.wrapper--page-width .content-columns__content {
    max-width: 89rem;
  }
}

.content-columns__columns {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 4rem;
  max-width: 100%;
  position: relative;
}
@media (min-width: 1024px) {
  .content-columns__columns {
    gap: 2rem;
    grid-template-columns: repeat(3, 1fr);
  }
}

.content-columns__column {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.content-columns__headline {
  margin-bottom: 0;
}
@media (min-width: 1024px) {
  .content-columns__headline {
    min-height: calc(2em + 2rem);
  }
}

.content-columns__image {
  aspect-ratio: 38/29;
  max-width: 100%;
}
.content-columns__image img {
  max-width: 100%;
  height: 100%;
  width: 100%;
  object-fit: cover;
}

.single-post .content-columns__image {
  aspect-ratio: 3/4;
}

.news__post {
  overflow: hidden;
  padding-bottom: 10rem;
  padding-top: 10rem;
  position: relative;
}

.section--news-intro {
  display: flex;
  flex-direction: column;
  gap: 3rem;
  position: relative;
}
.section--news-intro .news__breadcrumb {
  font-size: 1.5rem;
}

.news__title .label {
  margin-bottom: 1em;
}

.section--news-content {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  position: relative;
}
.section--news-content .wrapper {
  padding-left: 0;
  padding-right: 0;
}

.section--news-content .wp-block-heading,
.section--news-content p {
  margin-bottom: 0;
}

.section--news-content p {
  font-size: 1.5rem;
}

.section--news-content p + p {
  margin-top: -1rem;
}

.section--news-content h2.wp-block-heading {
  margin-top: 3rem;
}

.section--news-content .section--full-width-media .wrapper {
  padding-left: 0;
  padding-right: 0;
}

.news__breadcrumb--bottom {
  display: flex;
  justify-content: center;
  margin-top: 5rem;
  text-align: center;
}
.news__breadcrumb--bottom a {
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 0.1em;
}

.section--news-related .h2 {
  margin-bottom: 0;
}

.section--news-related .wrapper {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  position: relative;
  padding-top: 11.25rem;
}

.news__related-items {
  display: flex;
  gap: 2rem;
  flex-direction: column;
  overflow: hidden;
  position: relative;
}
@media (min-width: 1024px) {
  .news__related-items {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
.news__related-items .image {
  aspect-ratio: 3.8/3;
  height: auto;
  width: 100%;
  overflow: hidden;
  position: relative;
  vertical-align: middle;
}
.news__related-items .image img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  vertical-align: middle;
}
.news__related-items .label {
  line-height: 1;
  padding-top: 0.75em;
}
.news__related-items .h4 {
  line-height: 1.35;
  margin-bottom: 0;
}

.news__related-item a {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  height: 100%;
  gap: 1rem;
  text-decoration: none;
}

.page-template-page-legal {
  min-height: 100%;
  min-height: 100vh;
  min-height: calc(100dvh - var(--nav-bar-height));
}
.page-template-page-legal .legal {
  padding: 8rem 0;
  width: 100%;
  display: flex;
  flex-direction: column;
}
.page-template-page-legal .legal__title {
  margin-bottom: 4rem;
}
.page-template-page-legal .legal__content h2, .page-template-page-legal .legal__content h3, .page-template-page-legal .legal__content h4, .page-template-page-legal .legal__content h5, .page-template-page-legal .legal__content p, .page-template-page-legal .legal__content ol, .page-template-page-legal .legal__content ul, .page-template-page-legal .legal__content li {
  margin: 0;
}
.page-template-page-legal .legal__content h2 {
  margin: 5rem 0 1.5rem 0;
  font-family: "GT Super Display", serif;
  font-weight: 100;
}
.page-template-page-legal .legal__content h3 {
  font-weight: 500;
}
.page-template-page-legal .legal__content h3, .page-template-page-legal .legal__content h4, .page-template-page-legal .legal__content h5 {
  margin: 2rem 0 1.5rem 0;
}
.page-template-page-legal .legal__content p, .page-template-page-legal .legal__content li {
  margin-bottom: 1rem;
}
.page-template-page-legal .legal__content a {
  text-decoration: underline;
  text-underline-offset: 3px;
}
.page-template-page-legal .legal__content ol, .page-template-page-legal .legal__content ul {
  padding-left: 1.5rem;
  line-height: 1.555;
}
@media (min-width: 1024px) {
  .page-template-page-legal .legal__content ol, .page-template-page-legal .legal__content ul {
    list-style-position: inside;
    list-style-position: outside;
    padding-left: 2.5rem;
  }
  .page-template-page-legal .legal__content ol li, .page-template-page-legal .legal__content ul li {
    padding-left: 1.25rem;
  }
}
@media (min-width: 1024px) {
  .page-template-page-legal .legal__content ol {
    list-style: decimal-leading-zero;
  }
}
@media (min-width: 1024px) {
  .page-template-page-legal .legal__content ul {
    list-style: disc;
  }
}
.page-template-page-legal .legal__last-updated {
  margin-top: 4rem;
}
.page-template-page-legal .legal__last-updated span {
  font-size: var(--h5);
  text-transform: uppercase;
  letter-spacing: 0.075em;
}

.error404 .header__btn {
  color: #FFFAF2;
}
.error404 .header__logo svg path {
  fill: #FFFAF2;
}

.not-found {
  padding: 4rem 0;
  min-height: 100%;
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
}
.not-found .error__content .background__graphic-left {
  display: none;
}
@media (min-width: 1024px) {
  .not-found .error__content .background__graphic-left {
    display: block;
    position: absolute;
    background: url(images/404.svg) no-repeat center center;
    width: 56%;
    height: 100vh;
    top: 50%;
    left: -15%;
    transform: translate(-50%, -50%);
    opacity: 50%;
  }
}
.not-found .error__content .background__graphic {
  display: block;
  position: absolute;
  background: url(images/404.svg) no-repeat center center;
  width: 95%;
  height: 100vh;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
@media (min-width: 1024px) {
  .not-found .error__content .background__graphic {
    width: 56%;
  }
}
.not-found .error__content .background__graphic-right {
  display: none;
}
@media (min-width: 1024px) {
  .not-found .error__content .background__graphic-right {
    display: block;
    position: absolute;
    background: url(images/404.svg) no-repeat center center;
    width: 56%;
    height: 100vh;
    top: 50%;
    right: -73%;
    transform: translate(-50%, -50%);
    opacity: 50%;
  }
}
.not-found .error__content--inner {
  position: relative;
  z-index: 10;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1rem;
  text-align: center;
}
.not-found .error__content--inner .error__logo {
  margin: 0 auto;
  width: 80px;
  height: 80px;
}
.not-found .error__content--inner .error__logo svg {
  width: 80px;
  height: 80px;
}
.not-found .error__content--inner .h3 {
  margin-bottom: 0;
  margin-top: 1rem;
}
.not-found .error__content--inner .btn {
  align-self: center;
  text-decoration: underline;
  text-underline-offset: 3px;
  padding: 0;
  margin: 0;
}
