@charset "UTF-8";
/**
 * Strip units
 */
/**
 * Em
 *
 * convert value from px to em
 */
/**
 * Declare font face
 *
 * used in base/_fonts.scss
 */
/**
 * Editor style only
 *
 *      Style inside the mixin while be writed only for editor.scss
 *
 *      @include editor-only {
 *          ... css only for the gutenberg editor
 *      }
 *
 *      the variable $entry-file-name is defined in style.scss and editor.scss
 */
/**
 * Style only
 *
 *      Style inside the mixin while be writed only for style.scss
 *
 *      @include style-only {
 *          ... css only for the front office
 *      }
 *
 *      the variable $entry-file-name is defined in style.scss and editor.scss
 */
/*
	Improved screen reader only CSS class
    @see https://gist.github.com/ffoodd/000b59f431e3e64e4ce1a24d5bb36034
	@author Gaël Poupard
		@note Based on Yahoo!'s technique
		@author Thierry Koblentz
		@see https://developer.yahoo.com/blogs/ydn/clip-hidden-content-better-accessibility-53456.html
	* 1.
		@note `clip` is deprecated but works everywhere
		@see https://developer.mozilla.org/en-US/docs/Web/CSS/clip
	* 2.
		@note `clip-path` is the future-proof version, but not very well supported yet
		@see https://developer.mozilla.org/en-US/docs/Web/CSS/clip-path
		@see http://caniuse.com/#search=clip-path
		@author Yvain Liechti
		@see https://twitter.com/ryuran78/status/778943389819604992
	* 3.
		@note preventing text to be condensed
		author J. Renée Beach
		@see https://medium.com/@jessebeach/beware-smushed-off-screen-accessible-text-5952a4c2cbfe
		@note Drupal 8 goes with word-wrap: normal instead
		@see https://www.drupal.org/node/2045151
		@see http://cgit.drupalcode.org/drupal/commit/?id=5b847ea
	* 4.
		@note !important is important
		@note Obviously you wanna hide something
		@author Harry Roberts
		@see https://csswizardry.com/2016/05/the-importance-of-important/
*/
/**
 * Increased contrast
 *
 * exemples :
 *
 *      @include more-contrast { ... }
 *          return @media screen and( prefers-contrast : more) { ... }
 *
 *      add high contrsated declarations :
 *
 *      @include more-contrast (false) { ... }
 *          return @media screen and (prefers-contrast : no-preference) { ... }
 *			you can add low contrastest declarations :
 */
/**
 * Reduced-motion
 *
 * exemples :
 *
 *      @include reduced-motion { ... }
 *          return @media screen and (prefers-reduced-motion : reduce) { ... }
 *
 *      you can add heavy animation using :
 *
 *      @include reduced-motion (false) { ... }
 *          return @media screen and (prefers-reduced-motion : no-preference) { ... }
 */
/**
 * Scrollbar invisible
 *
 *      /!\ ALERT : Don't use this mixin neither on the html element, nor on the body element to avoid deteriorating accessibility
 */
/**
 * Scrollbar color
 */
/**
 * Radio custom, must be used with checkbox custom
 */
/**
 * Checkbox custom
 */
/**
 * Select custom
 */
/*! normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css */
/* Document
   ========================================================================== */
/**
 * 1. Correct the line height in all browsers.
 * 2. Prevent adjustments of font size after orientation changes in iOS.
 */
html {
  line-height: 1.15; /* 1 */
  -webkit-text-size-adjust: 100%; /* 2 */
}

/* Sections
   ========================================================================== */
/**
 * Remove the margin in all browsers.
 */
body {
  margin: 0;
}

/**
 * Render the `main` element consistently in IE.
 */
main {
  display: block;
}

/**
 * Correct the font size and margin on `h1` elements within `section` and
 * `article` contexts in Chrome, Firefox, and Safari.
 */
h1 {
  font-size: 2em;
  margin: 0.67em 0;
}

/* Grouping content
   ========================================================================== */
/**
 * 1. Add the correct box sizing in Firefox.
 * 2. Show the overflow in Edge and IE.
 */
hr {
  box-sizing: content-box; /* 1 */
  height: 0; /* 1 */
  overflow: visible; /* 2 */
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
pre {
  font-family: monospace, monospace; /* 1 */
  font-size: 1em; /* 2 */
}

/* Text-level semantics
   ========================================================================== */
/**
 * Remove the gray background on active links in IE 10.
 */
a {
  background-color: transparent;
}

/**
 * 1. Remove the bottom border in Chrome 57-
 * 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari.
 */
abbr[title] {
  border-bottom: none; /* 1 */
  text-decoration: underline; /* 2 */
  -webkit-text-decoration: underline dotted;
          text-decoration: underline dotted; /* 2 */
}

/**
 * Add the correct font weight in Chrome, Edge, and Safari.
 */
b,
strong {
  font-weight: bolder;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
code,
kbd,
samp {
  font-family: monospace, monospace; /* 1 */
  font-size: 1em; /* 2 */
}

/**
 * Add the correct font size in all browsers.
 */
small {
  font-size: 80%;
}

/**
 * Prevent `sub` and `sup` elements from affecting the line height in
 * all browsers.
 */
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

/* Embedded content
   ========================================================================== */
/**
 * Remove the border on images inside links in IE 10.
 */
img {
  border-style: none;
}

/* Forms
   ========================================================================== */
/**
 * 1. Change the font styles in all browsers.
 * 2. Remove the margin in Firefox and Safari.
 */
button,
input,
optgroup,
select,
textarea {
  font-family: inherit; /* 1 */
  font-size: 100%; /* 1 */
  line-height: 1.15; /* 1 */
  margin: 0; /* 2 */
}

/**
 * Show the overflow in IE.
 * 1. Show the overflow in Edge.
 */
button,
input { /* 1 */
  overflow: visible;
}

/**
 * Remove the inheritance of text transform in Edge, Firefox, and IE.
 * 1. Remove the inheritance of text transform in Firefox.
 */
button,
select { /* 1 */
  text-transform: none;
}

/**
 * Correct the inability to style clickable types in iOS and Safari.
 */
button,
[type=button],
[type=reset],
[type=submit] {
  -webkit-appearance: button;
  -moz-appearance: button;
       appearance: button;
}

/**
 * Remove the inner border and padding in Firefox.
 */
button::-moz-focus-inner,
[type=button]::-moz-focus-inner,
[type=reset]::-moz-focus-inner,
[type=submit]::-moz-focus-inner {
  border-style: none;
  padding: 0;
}

/**
 * Restore the focus styles unset by the previous rule.
 */
button:-moz-focusring,
[type=button]:-moz-focusring,
[type=reset]:-moz-focusring,
[type=submit]:-moz-focusring {
  outline: 1px dotted ButtonText;
}

/**
 * Correct the padding in Firefox.
 */
fieldset {
  padding: 0.35em 0.75em 0.625em;
}

/**
 * 1. Correct the text wrapping in Edge and IE.
 * 2. Correct the color inheritance from `fieldset` elements in IE.
 * 3. Remove the padding so developers are not caught out when they zero out
 *    `fieldset` elements in all browsers.
 */
legend {
  box-sizing: border-box; /* 1 */
  color: inherit; /* 2 */
  display: table; /* 1 */
  max-width: 100%; /* 1 */
  padding: 0; /* 3 */
  white-space: normal; /* 1 */
}

/**
 * Add the correct vertical alignment in Chrome, Firefox, and Opera.
 */
progress {
  vertical-align: baseline;
}

/**
 * Remove the default vertical scrollbar in IE 10+.
 */
textarea {
  overflow: auto;
}

/**
 * 1. Add the correct box sizing in IE 10.
 * 2. Remove the padding in IE 10.
 */
[type=checkbox],
[type=radio] {
  box-sizing: border-box; /* 1 */
  padding: 0; /* 2 */
}

/**
 * Correct the cursor style of increment and decrement buttons in Chrome.
 */
[type=number]::-webkit-inner-spin-button,
[type=number]::-webkit-outer-spin-button {
  height: auto;
}

/**
 * 1. Correct the odd appearance in Chrome and Safari.
 * 2. Correct the outline style in Safari.
 */
[type=search] {
  -webkit-appearance: textfield; /* 1 */
  -moz-appearance: textfield;
       appearance: textfield;
  outline-offset: -2px; /* 2 */
}

/**
 * Remove the inner padding in Chrome and Safari on macOS.
 */
[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}

/**
 * 1. Correct the inability to style clickable types in iOS and Safari.
 * 2. Change font properties to `inherit` in Safari.
 */
::-webkit-file-upload-button {
  -webkit-appearance: button; /* 1 */
  font: inherit; /* 2 */
}

/* Interactive
   ========================================================================== */
/*
 * Add the correct display in Edge, IE 10+, and Firefox.
 */
details {
  display: block;
}

/*
 * Add the correct display in all browsers.
 */
summary {
  display: list-item;
}

/* Misc
   ========================================================================== */
/**
 * Add the correct display in IE 10+.
 */
template {
  display: none;
}

/**
 * Add the correct display in IE 10.
 */
[hidden] {
  display: none;
}

.lazyload,
.lazyloading {
  background: var(--color-primary);
  opacity: 0;
}

.lazyloaded {
  opacity: 1;
  transition: opacity 0.5s;
}

[data-bgset] {
  position: relative;
  background-repeat: no-repeat;
  background-position: 50% 50%;
  background-size: cover;
  opacity: 1;
}
[data-bgset]::before {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 2;
  content: "";
  background: var(--color-primary);
  transition: opacity 0.5s, z-index 0.5s ease 0.5s;
}
[data-bgset]::after {
  position: absolute;
  top: calc(50% - 25px);
  left: calc(50% - 25px);
  z-index: 3;
  width: 50px;
  height: 50px;
  content: "";
  border: 5px solid var(--color-light);
  border-top-color: transparent;
  border-radius: 50px;
  opacity: 1;
  transition: opacity 0.5s, z-index 0.5s ease 0.5s;
  transform: translateX(-50%) translateY(-50%);
  animation: loading 0.5s linear infinite;
}
[data-bgset].lazyload {
  opacity: 1;
  transition: opacity 0.5s;
}
[data-bgset].lazyloaded::after, [data-bgset].lazyloaded::before {
  z-index: -1;
  opacity: 0;
}

@keyframes loading {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
html a:focus,
html button:focus,
html input:focus,
html select:focus,
html textarea:focus,
html [tabindex]:focus {
  outline: 2px solid currentColor;
  outline-offset: 0.5rem;
}
html [data-seo-container]:focus-within {
  outline: 1px solid currentColor;
  outline-offset: 0.5rem;
}
html [data-seo-container] *:focus {
  outline: none;
}
html:not([data-whatintent=keyboard]) a:focus,
html:not([data-whatintent=keyboard]) button:focus,
html:not([data-whatintent=keyboard]) input:focus,
html:not([data-whatintent=keyboard]) select:focus,
html:not([data-whatintent=keyboard]) textarea:focus,
html:not([data-whatintent=keyboard]) [tabindex]:focus {
  outline: none;
}
html:not([data-whatintent=keyboard]) [data-link-container]:focus-within,
html:not([data-whatintent=keyboard]) [data-link-container] *:focus {
  outline: none;
}

.hidden {
  display: none !important;
}

.visible {
  display: block !important;
}

.visibility-hidden {
  visibility: hidden !important;
}

.visibility-visible {
  visibility: visible !important;
}

@media screen and (max-width: 48.8125em) {
  .desktop-only {
    display: none !important;
  }
}
@media screen and (min-width: 48.875em) {
  .mobile-only {
    display: none !important;
  }
}
.overflow-hidden {
  overflow: hidden;
}

.sr-only {
  position: absolute;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(1px, 1px, 1px, 1px) !important; /* 1 */
  -webkit-clip-path: inset(50%) !important;
          clip-path: inset(50%) !important; /* 2 */
  white-space: nowrap !important; /* 3 */
  border: 0 !important;
}

.sr-only-focusable {
  position: absolute;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(1px, 1px, 1px, 1px) !important; /* 1 */
  -webkit-clip-path: inset(50%) !important;
          clip-path: inset(50%) !important; /* 2 */
  white-space: nowrap !important; /* 3 */
  border: 0 !important;
}
.sr-only-focusable:focus, .sr-only-focusable:active {
  width: auto !important;
  height: auto !important;
  margin: auto !important;
  overflow: visible !important;
  clip: auto !important;
  -webkit-clip-path: none !important;
          clip-path: none !important;
  white-space: normal !important;
}

[data-link-container] {
  position: relative;
  z-index: 1;
  cursor: pointer;
}
[data-link-container] [data-link-target]::before {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 100;
  content: "";
}

pre {
  overflow-x: auto;
  white-space: pre;
}

.post-edit-link {
  position: fixed;
  right: 1em;
  bottom: 1em;
  z-index: 1000;
  font-size: 1em;
  padding: 0.25em 0.75em;
  color: var(--color-background);
  background: var(--color-text);
  border-radius: 0.25em;
  border: 1px solid var(--color-text);
  text-decoration: none;
}
.post-edit-link:hover {
  color: var(--color-text);
  background: var(--color-background);
}

:root {
  /*
  * Colors
  */
  --color-white: #fff;
  --color-black: #000;
  --color-light: #f4f3f0;
  --color-dark: #0f0f0f;
  --color-text: #000;
  --color-background: #fff;
  --color-gray: #6c6c6c;
  --color-light-gray: #d8d8d8;
  --color-primary: #0047FD;
  --color-secondary: #C88E8E;
  --color-error: #a80e3a;
  --color-success: #208966;
  /*
   * Typography
   */
  --font-family-primary: "Fabbrica Sharp", sans-serif;
  --font-family-secondary: "Sole Headline", serif;
  --font-size-menu: 15px;
  --font-size-xsmall: 11px;
  --font-size-small: 14px;
  --font-size-medium: 14px;
  --font-size-large: 18px;
  --font-size-xlarge: 24px;
  --line-height-base: 1.25;
  --line-height-1: 1;
  --line-height-2: 1.25;
  --line-height-3: 1.5;
  --letter-spacing-1: 0.15em;
  /*
  * Sizes
  */
  --container-wide: 1440px;
  --container-narrow: 1440px;
  --container-width: 1440px;
  --header-height: 60px;
  --site-padding: 15px;
  --gap: clamp(10px, calc(2.5vw + 5px), 20px);
  --spacing-1: clamp(2.5px, calc(0.625vw + 1.25px), 5px);
  --spacing-2: clamp(5px, calc(1.25vw + 2.5px), 10px);
  --spacing-3: clamp(7px, calc(1.75vw + 3.5px), 14px);
  --spacing-4: clamp(12.5px, calc(3.125vw + 6.25px), 25px);
  --spacing-5: clamp(25px, calc(6.25vw + 12.5px), 50px);
  --spacing-6: clamp(37.5px, calc(9.375vw + 18.75px), 75px);
  --spacing-7: clamp(75px, calc(18.75vw + 37.5px), 150px);
  --blocks-spacing-default: var(--spacing-5);
  --aspect-ratio-base: 1 / 0.68;
  /*
   * Animation speeds
   */
  --speed-1: .35s;
  --speed-2: .5s;
  --speed-3: 1s;
  --speed-4: 3s;
  /*
   * A11y
   */
}
@media screen and (min-width: 48.875em) {
  :root {
    --font-size-menu: clamp(15px, 1.5vw, 23px);
    --font-size-xsmall: 12px;
    --font-size-small: clamp(14px, 1.1vw, 16px);
    --font-size-medium: clamp(14px, 1.25vw, 18px);
    --font-size-large: clamp(18px, 2vw, 28px);
    --font-size-xlarge: clamp(24px, 2.5vw, 40px);
    --header-height: clamp(60px, 10vw, 110px);
    --site-padding: 20px;
    --gap: 20px;
  }
}
@media screen and (prefers-contrast: more) {
  :root {
    --color-white: #fff;
    --color-black: #000;
    --color-light: #fff;
    --color-dark: #000;
    --color-text: #000;
    --color-background: #fff;
  }
}
@media screen and (prefers-reduced-motion: reduce) {
  :root {
    --speed-1: 0s;
    --speed-2: 0s;
    --speed-3: 0s;
    --speed-4: 0s;
  }
}

.container {
  width: 100%;
  max-width: var(--container-width);
  padding: 0 var(--site-padding);
  margin-right: auto;
  margin-left: auto;
}
.container--less {
  max-width: var(--container-narrow);
}

.icon {
  display: inline-block;
  width: 16px;
  height: 16px;
  vertical-align: middle;
  fill: currentColor;
}

/**
 * Reset specific elements to make them easier to style in other contexts.
 */
html,
body,
p,
ol,
ul,
li,
dl,
dt,
dd,
blockquote,
figure,
fieldset,
form,
legend,
textarea,
pre,
iframe,
hr,
h1,
h2,
h3,
h4,
h5,
h6 {
  padding: 0;
  margin: 0;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
}

/**
  * Apply generic border-box to all elements.
  * See:
  * https://css-tricks.com/inheriting-box-sizing-probably-slightly-better-best-practice/
  */
html {
  /* Apply border-box across the entire page. */
  box-sizing: border-box;
  font-family: var(--font-family-primary);
  line-height: var(--line-height-base);
  -webkit-overflow-scrolling: touch;
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: auto;
}

body {
  font-family: var(--font-family-primary);
  font-size: 16px;
  font-weight: 300;
  color: var(--color-text);
  text-align: left;
  background-color: var(--color-background);
}

/**
  * Relax the definition a bit, to allow components to override it manually.
  */
*, *::before, *::after {
  box-sizing: inherit;
}

button {
  cursor: pointer;
}
button[disabled] {
  cursor: not-allowed;
}

b,
strong {
  font-weight: 500;
}

dfn,
cite,
em,
i {
  font-style: italic;
}

.blocks-container > *:not(.alignfull) {
  padding: 0 var(--site-padding);
}
.blocks-container > *:not(.alignfull):not(.alignwide) {
  max-width: var(--container-width);
  margin-right: auto;
  margin-left: auto;
}
.blocks-container > .alignwide {
  max-width: var(--container-wide);
  margin-right: auto;
  margin-left: auto;
}
.blocks-container > * {
  margin-top: var(--blocks-spacing-default);
  margin-bottom: var(--blocks-spacing-default);
}
.blocks-container > * + figure {
  margin-top: var(--gap);
}
.blocks-container > *:has(+ figure) {
  margin-bottom: var(--gap);
}
.blocks-container .wp-block-columns:has(figure) {
  margin-bottom: var(--gap);
  margin-top: var(--gap);
}

:where(body .is-layout-flex),
:root :where(.is-layout-flex) {
  gap: var(--gap);
}

:where(.wp-block-group.has-background) {
  padding: var(--spacing-4) var(--site-padding);
}
:where(.wp-block-group.has-background) > *:not(.alignfull) {
  padding: 0 var(--site-padding);
}

.wp-block-heading.is-style-subtitle-underline,
h2.is-style-subtitle-underline {
  font-family: var(--font-family-primary);
  font-size: var(--font-size-xsmall);
  letter-spacing: var(--letter-spacing-1);
  text-transform: uppercase;
  position: relative;
}
.wp-block-heading.is-style-subtitle-underline:after,
h2.is-style-subtitle-underline:after {
  content: "";
  border-bottom: 1px solid;
  position: absolute;
  bottom: -1em;
  left: var(--site-padding);
  width: calc(100% - var(--site-padding) * 2);
}
.wp-block-heading.is-style-subtitle-underline:not(.wp-block-heading):after, .wp-block-heading.is-style-subtitle-underline.alignfull:after,
h2.is-style-subtitle-underline:not(.wp-block-heading):after,
h2.is-style-subtitle-underline.alignfull:after {
  width: 100%;
  left: 0;
}

.blocks-container p {
  margin-top: 1em;
  margin-bottom: 1em;
}
.blocks-container p.is-style-wrap-balance {
  text-wrap: balance;
}
.blocks-container p.has-sole-headline-font-family strong {
  font-weight: 500;
}
.blocks-container p a {
  text-decoration: none;
  color: currentColor;
}

.wp-block-image img {
  width: 100%;
  height: auto;
}

.header {
  height: var(--header-height);
}
.header__inner {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  background-color: var(--color-white);
  z-index: 10000;
}
.header__container {
  height: var(--header-height);
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.header__button-icon {
  background: transparent;
  border: none;
  padding: 5px;
  width: 45px;
  height: 45px;
}
.header__button-icon .icon,
.header__button-icon svg {
  width: 24px;
  height: 24px;
  fill: var(--color-primary);
}
.header__logo-link {
  color: var(--color-primary);
  text-decoration: none;
  text-transform: uppercase;
  font-size: var(--font-size-menu);
  font-weight: 700;
  letter-spacing: 0.15em;
}
.header .menu-primary-toggle {
  transition: transform var(--speed-1) ease-in-out;
}
.header .menu-primary-toggle.is-active {
  transform: rotate(135deg);
}
@media screen and (min-width: 48.875em) {
  .header .menu-primary-toggle {
    display: none;
  }
}

.header-autohide {
  position: fixed;
  top: calc(var(--header-height) * -1);
  color: var(--color-dark) !important;
  transition: all var(--speed-2) ease-in-out;
}
.header-autohide.header-autohide--visible {
  top: 0;
}
.header-autohide.header-autohide--visible .sub-menu-container {
  transform: translateY(0);
}
@media screen and (min-width: 64em) {
  .header-autohide {
    top: calc(var(--header-height) * -1 - 20px);
  }
}

.menu {
  margin: 0;
  padding: 0;
  list-style: none;
}

.single-project .menu-primary__list li.menu-item-object-project a, .single-post .menu-primary__list li.current_page_parent a, .menu-primary__list li.current-menu-item a {
  color: var(--color-primary);
}
.menu-primary__list a {
  color: var(--color-text);
  text-decoration: none;
  text-transform: uppercase;
  font-size: var(--font-size-menu);
  font-weight: 700;
  letter-spacing: 0.15em;
}
.menu-primary__list a:hover {
  color: var(--color-primary);
}
@media screen and (max-width: 48.8125em) {
  .menu-primary {
    position: fixed;
    top: var(--header-height);
    right: 0;
    bottom: 0;
    left: 0;
    display: none;
    background-color: var(--color-white);
    z-index: 10000;
    overflow-y: auto;
    transform: translateX(100%);
    transition: transform var(--speed-1) ease-in-out;
    border-top: 1px solid var(--color-text);
  }
  .menu-primary.menu-panel-is-accesible {
    display: block;
  }
  .menu-primary.menu-panel-is-visible {
    transform: translateX(0);
  }
  .menu-primary__list {
    width: 100%;
    max-width: var(--container-width);
    margin-right: auto;
    margin-left: auto;
  }
  .menu-primary__list li {
    border-bottom: 1px solid var(--color-text);
    padding: 0 var(--site-padding);
  }
  .menu-primary__list a {
    display: block;
    padding: var(--gap) 0;
    color: var(--color-text);
    text-decoration: none;
    text-transform: uppercase;
  }
}
@media screen and (min-width: 48.875em) {
  .menu-primary__list {
    display: flex;
    -moz-column-gap: var(--gap);
         column-gap: var(--gap);
  }
}

.footer {
  color: var(--color-white);
  margin-top: var(--spacing-7);
}
.footer__foot {
  background-color: var(--color-primary);
  padding-bottom: var(--spacing-4);
}
.footer .wp-block-group.alignfull {
  padding-right: 0;
  padding-left: 0;
}
.footer .copyright,
.footer .credits {
  display: inline-block;
  font-family: var(--font-family-primary);
  font-size: var(--font-size-xsmall);
  letter-spacing: var(--letter-spacing-1);
  text-transform: uppercase;
}
.footer .copyright a,
.footer .credits a {
  color: var(--color-white);
  text-decoration: none;
}
.footer .copyright a:hover,
.footer .credits a:hover {
  text-decoration: underline;
}
.footer .menu-legal-container {
  display: inline-block;
}
.footer .menu-legal-container li {
  display: inline-block;
}
.footer .menu-legal-container li a {
  font-family: var(--font-family-primary);
  font-size: var(--font-size-xsmall);
  letter-spacing: var(--letter-spacing-1);
  text-transform: uppercase;
  text-decoration: none;
  color: var(--color-white);
}
.footer .menu-legal-container li:not(:last-child) {
  margin-right: 0.25em;
}
.footer .menu-legal-container li:not(:last-child)::after {
  content: ",";
  color: var(--color-white);
}

.button-block,
.wp-block-button__link {
  --button-color-text: var(--color-text);
  --button-color-text-hover: var(--color-light);
  --button-color-background: var(--color-primary);
  --button-color-background-hover: var(--color-text);
  --button-color-border: transparent;
  position: relative;
  z-index: 1;
  display: inline-block;
  padding: 0.6667em 2em;
  overflow: hidden;
  font-weight: 300;
  line-height: 1;
  color: var(--button-color-text) !important;
  text-align: center;
  background-color: var(--button-color-background) !important;
  border: 1px solid !important;
  border-color: var(--button-color-border) !important;
  border-radius: 1.25em;
  transition: all var(--speed-1) ease-in-out;
}
.button-block:hover,
.wp-block-button__link:hover {
  color: var(--button-color-text-hover) !important;
  text-decoration: none;
  background-color: var(--button-color-background-hover) !important;
}

.button-outline,
.is-style-outline .wp-block-button__link {
  --button-color-text: var(--color-text);
  --button-color-text-hover: var(--color-light);
  --button-color-background: var(--color-primary);
  --button-color-background-hover: var(--color-text);
  --button-color-border: transparent;
  position: relative;
  z-index: 1;
  display: inline-block;
  padding: 0.6667em 2em;
  overflow: hidden;
  font-weight: 300;
  line-height: 1;
  color: var(--button-color-text) !important;
  text-align: center;
  background-color: var(--button-color-background) !important;
  border: 1px solid !important;
  border-color: var(--button-color-border) !important;
  border-radius: 1.25em;
  transition: all var(--speed-1) ease-in-out;
  --button-color-text: var(--color-text);
  --button-color-text-hover: var(--color-light);
  --button-color-background: transparent;
  --button-color-background-hover: var(--color-text);
  --button-color-border: var(--color-text);
}
.button-outline:hover,
.is-style-outline .wp-block-button__link:hover {
  color: var(--button-color-text-hover) !important;
  text-decoration: none;
  background-color: var(--button-color-background-hover) !important;
}

.wpgb-facet ul li {
  position: relative;
  margin-right: 1em !important;
  margin-bottom: 0 !important;
}
.wpgb-facet ul li .wpgb-button-label {
  line-height: var(--line-height-1) !important;
}
.wpgb-facet ul li:not(:last-child) .wpgb-button:after {
  content: ",";
  position: absolute;
  right: -0.25em;
  font-family: var(--font-family-secondary);
  font-size: var(--font-size-xlarge);
}
.wpgb-facet ul .wpgb-button {
  padding: 0 !important;
  border-radius: 0;
  border: none !important;
  margin: 0 !important;
  transition: color var(--speed-1) !important;
  color: var(--color-text) !important;
  position: relative;
}
.wpgb-facet ul .wpgb-button[aria-pressed=true] {
  background: none !important;
  border: none !important;
}
.wpgb-facet ul .wpgb-button[aria-pressed=true] .wpgb-button-label {
  color: var(--color-primary) !important;
}
.wpgb-facet ul .wpgb-button .wpgb-button-label {
  padding: 0 !important;
  font-family: var(--font-family-secondary);
  font-size: var(--font-size-xlarge);
  font-weight: 300;
  text-transform: lowercase;
}

.wpgb-pagination-facet {
  margin-top: var(--spacing-6);
}

div#cmplz-manage-consent {
  display: none;
}

.post-index {
  display: grid;
  -moz-column-gap: var(--gap);
       column-gap: var(--gap);
  row-gap: var(--spacing-5);
  margin-top: var(--spacing-6);
}
@media screen and (min-width: 48.875em) {
  .post-index {
    grid-template-columns: 1fr 1fr;
  }
}

.post-item {
  list-style: none;
}
.post-item--coverless {
  padding: var(--spacing-4) var(--spacing-5);
}
.post-item__image {
  width: 100%;
  height: auto;
  aspect-ratio: var(--aspect-ratio-base);
  -o-object-fit: cover;
     object-fit: cover;
}
.post-item__terms {
  margin: 1em 0 0.5em;
  font-family: var(--font-family-primary);
  font-size: var(--font-size-xsmall);
  font-weight: 700;
  letter-spacing: var(--letter-spacing-1);
  text-transform: uppercase;
  text-decoration: none;
  color: var(--color-text);
}
.post-item__title {
  font-size: var(--font-size-large);
  font-weight: 300;
  text-decoration: none;
  color: var(--color-text);
}
.post-item__link {
  text-decoration: none;
}
.post-item__link:hover {
  color: var(--color-primary);
}
.post-item__link:hover .post-item__title,
.post-item__link:hover .post-item__terms {
  color: var(--color-primary);
}

.related-posts {
  margin-top: var(--spacing-6);
}
.related-posts__title {
  font-family: var(--font-family-primary);
  font-size: var(--font-size-xsmall);
  letter-spacing: var(--letter-spacing-1);
  text-transform: uppercase;
  color: var(--color-primary);
  border-bottom: 1px solid var(--color-light-gray);
}
.related-posts__index {
  display: grid;
  -moz-column-gap: var(--gap);
       column-gap: var(--gap);
  row-gap: var(--spacing-5);
  margin-top: var(--spacing-4);
}
@media screen and (min-width: 48.875em) {
  .related-posts__index {
    grid-template-columns: 1fr 1fr;
  }
}
.related-posts__cta {
  text-align: center;
  margin-top: 2em;
  border-bottom: 1px solid var(--color-light-gray);
  padding: 0.25em;
}
.related-posts__cta a {
  font-family: var(--font-family-primary);
  font-size: var(--font-size-xsmall);
  font-weight: 700;
  letter-spacing: var(--letter-spacing-1);
  text-transform: uppercase;
  color: var(--color-primary);
  text-decoration: none;
}

.single-post-header h1 {
  font-size: var(--font-size-xlarge);
  font-family: var(--font-family-secondary);
  font-weight: 300;
  border-top: 1px solid var(--color-light-gray);
  padding-top: var(--spacing-2);
}
.single-post-header__date {
  font-family: var(--font-family-primary);
  font-size: var(--font-size-xsmall);
  letter-spacing: var(--letter-spacing-1);
  text-transform: uppercase;
  margin-top: var(--spacing-3);
}
.single-post-header__categories {
  font-family: var(--font-family-primary);
  font-size: var(--font-size-xsmall);
  font-weight: 700;
  letter-spacing: var(--letter-spacing-1);
  text-transform: uppercase;
  text-decoration: none;
  color: var(--color-primary);
  border-top: 1px solid var(--color-light-gray);
  padding-top: var(--spacing-2);
  margin-top: var(--spacing-4);
}
@media screen and (min-width: 48.875em) {
  .single-post-header {
    display: grid;
    grid-template-columns: 2fr 1fr;
    -moz-column-gap: var(--gap);
         column-gap: var(--gap);
  }
  .single-post-header__categories {
    margin-top: 0;
  }
}

.single-project__data {
  display: grid;
  -moz-column-gap: var(--gap);
       column-gap: var(--gap);
  row-gap: var(--spacing-4);
}
.single-project__data h4 {
  padding-bottom: var(--spacing-1);
  font-family: var(--font-family-primary);
  font-size: var(--font-size-xsmall);
  letter-spacing: var(--letter-spacing-1);
  text-transform: uppercase;
  color: var(--color-primary);
  border-bottom: 1px solid var(--color-light-gray);
}
.single-project__info-row {
  padding: var(--spacing-1) 0;
  border-bottom: 1px solid var(--color-light-gray);
}
.single-project__info-row > * {
  display: inline;
}
.single-project__info-text {
  padding: var(--spacing-1) 0;
  border-bottom: 1px solid var(--color-light-gray);
}
.single-project__info-text strong {
  font-weight: 500;
}
.single-project__info-label {
  font-weight: 500;
}
@media screen and (min-width: 48.875em) {
  .single-project__data {
    grid-template-columns: 1fr 1fr;
  }
}/*# sourceMappingURL=theme.css.map */