@charset "UTF-8";
@font-face {
  font-family: "Noiafont";
  src: url("../fonts/noiafont.eot");
  src: url("../fonts/noiafont.eot?#iefix") format("embedded-opentype"), url("../fonts/noiafont.woff2") format("woff2"), url("../fonts/noiafont.woff") format("woff"), url("../fonts/noiafont.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "Noiafont";
  src: url("../fonts/noiafontlight.eot");
  src: url("../fonts/noiafontlight.eot?#iefix") format("embedded-opentype"), url("../fonts/noiafontlight.woff2") format("woff2"), url("../fonts/noiafontlight.woff") format("woff"), url("../fonts/noiafontlight.ttf") format("truetype");
  font-weight: 100;
  font-style: normal;
}
:root {
  --body-family: "Noiafont", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
  --display-family: "Noiafont", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
  --font-size: calc(1rem + 0.15vw);
  --font-size-lead: calc(1.5rem + 0.15vw);
  --font-size-large: calc(2.5rem + 0.1vw);
  --font-size-small: calc(0.8rem + 0.1vw);
  --font-size-h1: calc(4rem + 0.2vw);
  --font-size-h2: calc(3rem + 0.2vw);
  --font-size-h3: calc(1.5rem + 0.2vw);
  --font-size-h4: calc(1.3rem + 0.2vw);
  --font-size-h5: calc(1.2rem + 0.2vw);
  --font-weight-light: 100;
  --font-weight-normal: 400;
  --font-weight-bold: 700;
  --font-weight-heavy: 900;
  --font-weight-heavy: var(--font-weight-bold);
  --line-height: 1.17;
  --line-height-headings: 1;
  --color-grey-dark: #6a6a6a;
  --color-grey: #ddd;
  --color-grey-light: #efefef;
  --color-primary: #FF001C;
  --color-secondary: #FECFCF;
  --color-tertiary: #F3EEE1;
  --color-quaternary: #000000;
  --color-text-base: #000;
  --color-text-dark: #181822;
  --color-text-reversed: #fff;
  --color-text-link: #0087D0;
  --color-text-hover: #003451;
  --color-facebook: #3B5998;
  --color-twitter: #1DA1F2;
  --color-instagram: #262626;
  --color-youtube: #cc181e;
  --color-linkedin: #0077B5;
  --body-background-color: var(--color-tertiary);
  --border-radius: 16px;
  --spacing-xxl: 200px;
  --spacing-xl: 150px;
  --spacing-l: 100px;
  --spacing: 50px;
  --spacing-s: 25px;
  --spacing-xs: 1rem;
  --container-width: 60rem;
  --container-width-l: 100rem;
  --container-width-s: 50rem;
  --content-width: 50rem;
  --container-max: 1700px;
}
@media (min-width: 70em) {
  :root {
    --font-size-h1: calc(10rem + 0.2vw);
    --font-size-h2: calc(6rem + 0.2vw);
    --font-size-h3: calc(1.6rem + 0.2vw);
    --font-size-h4: calc(1.4rem + 0.2vw);
    --font-size-h5: calc(1.2rem + 0.2vw);
  }
}

/* Box sizing rules */
*,
*::before,
*::after {
  box-sizing: border-box;
}

/* Remove default padding */
ul[class],
ol[class] {
  padding: 0;
}

/* Remove default margin */
body,
h1,
h2,
h3,
h4,
h5,
p,
ul[class],
ol[class],
li,
figure,
figcaption,
blockquote,
dl,
dd {
  margin: 0;
}

html, body {
  height: 100%;
  scroll-behavior: smooth;
}

:target:before {
  content: "";
  display: block;
  height: 50px;
  margin: -50px 0 0;
}

/* Set core body defaults */
html,
body {
  font-family: var(--body-family);
  font-size: var(--font-size);
  line-height: var(--line-height);
  text-rendering: optimizeSpeed;
  color: var(--color-text-base);
  background-color: var(--body-background-color);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

article {
  background-color: white;
}

/* Remove list styles on ul, ol elements with a class attribute */
ul[class],
ol[class] {
  list-style: none;
}

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

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

/* Make sure images with WordPress-added height and width attributes are scaled correctly */
img[class*=align],
img[class*=wp-image-] {
  height: auto;
}

/* Natural flow and rhythm in articles by default */
/* Inherit fonts for inputs and buttons */
input,
button,
textarea,
select {
  font: inherit;
}

/* Remove all animations and transitions for people that prefer not to see them */
@media (prefers-reduced-motion: reduce) {
  * {
    -webkit-animation-duration: 0.01ms !important;
            animation-duration: 0.01ms !important;
    -webkit-animation-iteration-count: 1 !important;
            animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
p {
  margin-bottom: var(--spacing-xs);
}
p:last-of-type {
  margin-bottom: 0;
}

p.small,
.small {
  font-size: var(--font-size-small);
  line-height: 1.2;
}

p.lead,
.lead {
  font-size: 22px;
  margin-bottom: var(--spacing-xs);
}
@media (min-width: 50em) {
  p.lead,
.lead {
    font-size: var(--font-size-lead);
  }
}

p.large,
.large {
  font-size: var(--font-size-large);
}

strong {
  font-weight: var(--font-weight-bold);
}

ul,
ol {
  margin-top: 1.5rem;
  margin-bottom: 0;
  padding-left: 1em;
}
ul + p,
ol + p {
  margin-top: 1.5rem;
}

ul ul,
ol ul,
ul ol,
ol ol {
  margin-top: 0;
  margin-bottom: 0;
}

li p {
  margin: 0;
}

blockquote {
  padding-left: 1em;
  border-left: 4px solid var(--color-text-dark);
}

a {
  color: var(--color-text-link);
  text-decoration: none;
}

a:hover {
  color: var(--color-text-hover);
  text-decoration: underline;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  line-height: var(--line-height-headings);
  font-weight: var(--font-weight-normal);
  color: var(--heading-color);
  margin-bottom: 1rem;
}

h2 {
  font-weight: var(--font-weight-normal);
}

h4 {
  margin-bottom: 0.5rem;
}

h1, .heading-1, .banner-space .banner--content p, .banner--content p, .banner--link__inner p {
  font-size: var(--font-size-h1);
}

h2, .heading-2 {
  font-size: var(--font-size-h2);
}

h3, .heading-3 {
  font-size: var(--font-size-h3);
}

h4, .heading-4 {
  font-size: var(--font-size-h4);
}

h5, .heading-5 {
  font-size: var(--font-size-h5);
}

h6 {
  font-size: var(--font-size-small);
  line-height: 1.2;
  font-weight: var(--font-weight-normal);
  margin-bottom: 0;
  margin-top: 1rem;
}

code {
  font-family: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
  font-size: 0.75em;
  font-style: normal;
  background-color: #f4f4f4;
  border-radius: 0.2rem;
  padding: 0.2rem;
}

pre {
  background-color: #f4f4f4;
  border-radius: 0.2rem;
  padding: 0.5rem;
  overflow: auto;
  width: calc(96vw - 2em);
  line-height: 1.3;
}

hr {
  background: black;
  height: 1px;
  display: block;
  margin: 0;
  padding: 0;
  border-top: 1px solid black;
  border-bottom: 0;
}

.caption,
.wp-caption-text {
  font-size: var(--font-size-small) !important;
  color: #B5B5B5;
  margin-top: 0.5rem;
}

.heading {
  color: #7E7E7E;
  font-size: 16px;
  margin-bottom: 0.5rem !important;
}

figure {
  margin: 0;
}

figcaption {
  margin-top: 0;
}

figcaption p {
  font-size: var(--font-size-small);
}

table {
  margin-bottom: 1em;
}

table th,
table td {
  padding: 0.5em;
  border-bottom: 1px solid var(--color-grey-light);
  text-align: left;
  -webkit-font-smoothing: antialiased;
}

table th {
  border-width: 2px;
}

table tr:last-child td {
  border-bottom: none;
}

table tr:nth-child(even) {
  background: var(--color-grey-light);
}

table tbody tr:hover {
  background: var(--color-grey);
}

.form-fields {
  display: flex;
  flex-wrap: wrap;
  max-width: 900px;
  margin: 1rem auto;
}
@media (min-width: 50em) {
  .form-fields {
    margin: 2rem auto;
  }
}
.form-fields--half {
  margin: 0 0 0.5rem 0;
  width: 100%;
}
@media (min-width: 50em) {
  .form-fields--half {
    margin: 0 1rem 0.5rem 1rem;
    width: calc(50% - 2rem);
  }
}
.form-fields--full {
  margin: 0 0 0.5rem 0;
  width: 100%;
}
@media (min-width: 50em) {
  .form-fields--full {
    margin: 0 1rem 0.5rem 1rem;
    width: calc(100% - 1rem);
  }
}
.form-fields textarea {
  height: 70px;
}

input[type=email],
input[type=number],
input[type=search],
input[type=text],
input[type=tel],
input[type=url],
input[type=password],
select,
textarea {
  padding: 0.4rem 0.6rem;
  background-color: #fff;
  border: 1px solid var(--color-text-base);
  box-shadow: none;
  box-sizing: border-box;
  font-family: var(--body-family);
  font-size: 1rem;
  width: 100%;
  height: 38px;
  display: inline-block;
  margin-bottom: 0.2rem;
  color: var(--color-text-base) !important;
  border-radius: 0;
}
@media (min-width: 50em) {
  input[type=email],
input[type=number],
input[type=search],
input[type=text],
input[type=tel],
input[type=url],
input[type=password],
select,
textarea {
    margin-bottom: 0.7rem;
  }
}
input[type=email] .full-width,
input[type=number] .full-width,
input[type=search] .full-width,
input[type=text] .full-width,
input[type=tel] .full-width,
input[type=url] .full-width,
input[type=password] .full-width,
select .full-width,
textarea .full-width {
  width: 100%;
}

::-moz-placeholder {
  /* Chrome, Firefox, Opera, Safari 10.1+ */
  color: var(--color-text-base);
  opacity: 1;
  /* Firefox */
}

:-ms-input-placeholder {
  /* Chrome, Firefox, Opera, Safari 10.1+ */
  color: var(--color-text-base);
  opacity: 1;
  /* Firefox */
}

::placeholder {
  /* Chrome, Firefox, Opera, Safari 10.1+ */
  color: var(--color-text-base);
  opacity: 1;
  /* Firefox */
}

:-ms-input-placeholder {
  /* Internet Explorer 10-11 */
  color: var(--color-text-base);
}

.wpcf7-not-valid::-moz-placeholder {
  /* Chrome, Firefox, Opera, Safari 10.1+ */
  color: var(--color-text-base);
  opacity: 1;
  /* Firefox */
}

.wpcf7-not-valid:-ms-input-placeholder {
  /* Chrome, Firefox, Opera, Safari 10.1+ */
  color: var(--color-text-base);
  opacity: 1;
  /* Firefox */
}

.wpcf7-not-valid::placeholder {
  /* Chrome, Firefox, Opera, Safari 10.1+ */
  color: var(--color-text-base);
  opacity: 1;
  /* Firefox */
}

.wpcf7-not-valid:-ms-input-placeholder {
  /* Internet Explorer 10-11 */
  color: var(--color-text-base);
}

.wpcf7-not-valid::-ms-input-placeholder {
  /* Microsoft Edge */
  color: var(--color-text-base);
}

input[type=email].wpcf7-not-valid,
input[type=number].wpcf7-not-valid,
input[type=search].wpcf7-not-valid,
input[type=text].wpcf7-not-valid,
input[type=tel].wpcf7-not-valid,
input[type=url].wpcf7-not-valid,
input[type=password].wpcf7-not-valid,
select.wpcf7-not-valid,
textarea.wpcf7-not-valid {
  background-color: red;
  border: 1px solid var(--color-primary);
}

.wpcf7-form p {
  margin-bottom: 0;
}

.wpcf7-not-valid-tip {
  text-align: left;
  margin: -5px 0 10px 0;
  font-size: var(--font-size-small) !important;
  position: relative;
  padding-left: 25px;
  color: var(--color-secondary) !important;
}
.wpcf7-not-valid-tip::before {
  content: "!";
  position: absolute;
  width: 20px;
  height: 20px;
  text-align: center;
  top: 0;
  left: 0;
  border-radius: 50px;
  color: white;
  background: var(--color-secondary);
}

.wpcf7 form.invalid .wpcf7-response-output, .wpcf7 form.unaccepted .wpcf7-response-output {
  margin: 0 !important;
  font-weight: 700;
  padding: 20px !important;
  color: #0a0a0a !important;
  background-color: white;
  border: none !important;
}

.wpcf7 form.sent .wpcf7-response-output {
  font-size: var(--font-size) !important;
  margin: 0 !important;
  padding: 20px !important;
  color: #0a0a0a !important;
  background-color: white;
  border: none !important;
}

.file-cv {
  display: block;
  width: 50%;
  padding: 20px 0;
  text-align: left;
  font-size: 2rem;
}

div.wpcf7 input[type=file] {
  font-size: 1rem;
}

textarea {
  font-size: 1rem;
}

.wpcf7 .ajax-loader {
  position: absolute !important;
}

input[type=email],
input[type=number],
input[type=search],
input[type=text],
input[type=tel],
input[type=url],
input[type=password],
textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
}

input[type=email]:focus,
input[type=number]:focus,
input[type=search]:focus,
input[type=text]:focus,
input[type=tel]:focus,
input[type=url]:focus,
input[type=password]:focus,
textarea:focus,
select:focus {
  outline: 0;
}

label {
  display: none;
  color: black;
}

input[type=checkbox],
input[type=radio] {
  display: inline;
}

input[type=submit],
input[type=reset],
input[type=button] {
  border-radius: 0;
}

.required {
  color: #BF5D58;
}

.wpcf7-submit,
.input.wpcf7-submit {
  display: inline-block;
  border-radius: 0;
  padding: 0.3rem 0.6rem;
  margin-bottom: 2rem;
  border: 0;
  color: white;
  font-family: var(--display-family);
  font-weight: var(--font-weight-normal);
  font-size: var(--font-size);
  text-align: center;
  cursor: pointer;
  transition: all 0.1s ease-in-out;
  background-color: var(--color-primary);
}
.wpcf7-submit:hover, .wpcf7-submit:focus,
.input.wpcf7-submit:hover,
.input.wpcf7-submit:focus {
  outline: 0;
  color: white;
  text-decoration: none;
  background-color: black;
}

.labelfile {
  display: inline-block;
}

.inputfile {
  width: 0.1px;
  height: 0.1px;
  opacity: 0;
  overflow: hidden;
  position: absolute;
  z-index: -1;
}

.inputfile + label {
  max-width: 80%;
  font-size: 1.25rem;
  font-weight: 700;
  text-overflow: ellipsis;
  white-space: nowrap;
  cursor: pointer;
  display: block;
  overflow: hidden;
  padding: 0.625rem 1.25rem;
  color: #f1e5e6;
  background-color: #d3394c;
  float: left;
}

.inputfile + label svg {
  width: 1em;
  height: 1em;
  vertical-align: middle;
  fill: currentColor;
  margin-top: -0.25em;
  margin-right: 0.25em;
}

.wpcf7-spinner {
  position: absolute;
}

/**
 * Featherlight – ultra slim jQuery lightbox
 * Version 1.7.13 - http://noelboss.github.io/featherlight/
 *
 * Copyright 2018, Noël Raoul Bossart (http://www.noelboss.com)
 * MIT Licensed.
**/
html.with-featherlight {
  /* disable global scrolling when featherlights are visible */
  overflow: hidden;
}

.featherlight {
  padding: var(--spacing-xs);
  display: none;
  /* dimensions: spanning the background from edge to edge */
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 2147483647;
  /* z-index needs to be >= elements on the site. */
  /* position: centering content */
  text-align: center;
  /* insures that the ::before pseudo element doesn't force wrap with fixed width content; */
  white-space: nowrap;
  /* styling */
  cursor: pointer;
  background: #333;
  /* IE8 "hack" for nested featherlights */
  background: rgba(0, 0, 0, 0);
}
@media (min-width: 50em) {
  .featherlight {
    padding: var(--spacing-l);
  }
}

/* support for nested featherlights. Does not work in IE8 (use JS to fix) */
.featherlight:last-of-type {
  background: rgba(0, 0, 0, 0.8);
}

.featherlight:before {
  /* position: trick to center content vertically */
  content: "";
  display: inline-block;
  height: 100%;
  vertical-align: middle;
}

.featherlight .featherlight-content {
  /* make content container for positioned elements (close button) */
  position: relative;
  /* position: centering vertical and horizontal */
  text-align: left;
  vertical-align: middle;
  display: inline-block;
  /* dimensions: cut off images */
  overflow: auto;
  padding: 2rem;
  /* dimensions: handling large content */
  margin: 0 auto;
  height: 100%;
  /* styling */
  background: #fff;
  cursor: auto;
  /* reset white-space wrapping */
  white-space: normal;
}

/* contains the content */
.featherlight .featherlight-inner {
  /* make sure its visible */
  display: flex;
  height: 100%;
  padding-top: 1.5rem;
}
@media (min-width: 50em) {
  .featherlight .featherlight-inner {
    padding-top: 0;
  }
}

/* don't show these though */
.featherlight script.featherlight-inner,
.featherlight link.featherlight-inner,
.featherlight style.featherlight-inner {
  display: none;
}

.featherlight .featherlight-close-icon {
  /* position: centering vertical and horizontal */
  position: absolute;
  z-index: 9999;
  top: 0;
  right: 0;
  /* dimensions: 25px x 25px */
  line-height: 25px;
  width: 25px;
  /* styling */
  cursor: pointer;
  text-align: center;
  background: #fff;
  color: #fff;
  border: none;
  padding: 0;
}
.featherlight .featherlight-close-icon::before {
  position: absolute;
  content: url("../../src/icons/icon-close.svg");
  top: 6px;
  right: 6px;
}

/* See http://stackoverflow.com/questions/16077341/how-to-reset-all-default-styles-of-the-html5-button-element */
.featherlight .featherlight-close-icon::-moz-focus-inner {
  border: 0;
  padding: 0;
}

.featherlight .featherlight-image {
  /* styling */
  width: 100%;
}

.featherlight-iframe .featherlight-content {
  /* removed the border for image croping since iframe is edge to edge */
  border-bottom: 0;
  padding: 0;
  -webkit-overflow-scrolling: touch;
}

.featherlight iframe {
  /* styling */
  border: none;
}

.featherlight * {
  /* See https://github.com/noelboss/featherlight/issues/42 */
  box-sizing: border-box;
}

.featherlight-content {
  width: 100%;
}

/* handling phones and small screens */
@media only screen and (max-width: 1024px) {
  .featherlight .featherlight-content {
    /* dimensions: maximize lightbox with for small screens */
    margin-left: 0;
    margin-right: 0;
    max-height: 98%;
    padding: 10px 10px 0;
    border-bottom: 10px solid transparent;
  }
}
/* hide non featherlight items when printing */
@media print {
  html.with-featherlight > * > :not(.featherlight) {
    display: none;
  }
}
.accordion {
  display: flex;
  flex-direction: column;
  width: 100%;
  overflow: hidden;
}
@media (min-width: 50em) {
  .accordion {
    flex-direction: row;
    height: 90vh;
    min-height: 600px;
  }
}
.accordion-block {
  position: relative;
  display: flex;
  top: 0;
}
.accordion-block--title {
  position: absolute;
  height: calc(90vh - 106px);
  width: 100%;
  top: 106px;
  bottom: 0.5rem;
  opacity: 1;
  transition: opacity 300ms ease-in-out;
  padding: 0 1rem 0.5rem 1rem;
}
.accordion-block--title__hide {
  opacity: 0 !important;
  transition: opacity 300ms cubic-bezier(0.4, 0, 0.2, 1);
}
.accordion-block--title__inner {
  position: sticky;
  display: none;
  height: auto;
  overflow: hidden;
  z-index: 2;
  width: 100%;
  top: calc(90vh - 0.5rem);
  align-items: center;
  justify-content: center;
  opacity: 1;
  transition: opacity 0.3s ease-in-out;
}
.accordion-block--title__inner h1, .accordion-block--title__inner h2, .accordion-block--title__inner h3, .accordion-block--title__inner h4, .accordion-block--title__inner p {
  line-height: 100%;
  text-transform: uppercase;
  color: white;
}
.accordion-block--title__inner .fit-content {
  text-align: center;
}
.accordion-block--title__inner .fit-content p {
  font-weight: var(--font-weight-light);
}
@media (min-width: 50em) {
  .accordion-block--title__inner {
    display: flex;
  }
}
.accordion-item {
  position: relative;
  width: 100%;
  height: 100px;
  padding: 0 1rem;
  background-position: center center;
  background-size: cover;
  transition: width 500ms cubic-bezier(0.4, 0, 0.2, 1);
}
@media (min-width: 50em) {
  .accordion-item {
    background-attachment: fixed;
  }
}
.accordion-item:before {
  opacity: 0;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0);
  position: absolute;
  transition: all 300ms cubic-bezier(0.4, 0, 0.2, 1);
}
@media (min-width: 50em) {
  .accordion-item {
    padding: 0 0.5rem;
    width: 20%;
    height: auto;
  }
}
.accordion-item--title__mobile {
  padding: 1rem 0;
  background: var(--color-primary);
  text-transform: uppercase;
}
.accordion-item--title__mobile .fit-content {
  width: 100%;
  text-align: center;
}
@media (min-width: 50em) {
  .accordion-item--title__mobile {
    display: none;
  }
}
.accordion-item--open {
  position: absolute;
  display: flex;
  right: 0.5rem;
  top: 50%;
  color: white;
  font-size: 55px;
  z-index: 9;
  width: 24px;
  height: 24px;
  line-height: 24px;
  text-align: center;
  transform: translateY(-50%) rotate(0deg);
  transition: transform 300ms cubic-bezier(0.4, 0, 0.2, 1);
}
.accordion-item--open:hover {
  cursor: pointer;
  transform: translateY(-50%) rotate(90deg);
}
@media (min-width: 50em) {
  .accordion-item--open {
    top: 50%;
  }
}
@media (min-width: 50em) {
  .accordion-item--shrink {
    width: 44px;
  }
}
.accordion-item--shrink .accordion-item--open {
  right: 0.5rem;
  left: auto;
}
.accordion-item--number {
  display: flex;
  position: absolute;
  top: 0px;
  left: -5px;
  opacity: 1;
  width: 120px;
  font-size: 4rem;
  text-transform: uppercase;
  color: white;
  transition: all 0.2s ease-in-out;
  transition-delay: 0.5s;
}
@media (min-width: 50em) {
  .accordion-item--number {
    left: 0px;
    font-size: 5rem;
    line-height: 100px;
  }
}
.accordion-item--number p {
  font-weight: var(--font-weight-light);
}
.accordion-item--number .fit-content {
  transition: font-size 0.2s ease-in-out;
}
.accordion-item--header {
  display: flex;
  align-items: center;
  z-index: 1;
  position: relative;
}
@media (max-width: 49.99em) {
  .accordion-item--header .hide {
    opacity: 1;
  }
}
.accordion-item--title {
  align-items: center;
  opacity: 0;
  color: white;
  transition: opacity 300ms cubic-bezier(0.4, 0, 0.2, 1);
  padding: 0.6rem 0 0 0rem;
}
@media (min-width: 50em) {
  .accordion-item--title {
    padding: 0.6rem 0 0 0.55rem;
  }
}
.accordion-item--title p {
  font-size: 38px;
  color: white;
}
@media (min-width: 50em) {
  .accordion-item--title p {
    font-size: 55px;
  }
}
.accordion-item--content {
  opacity: 0;
  transition: opacity 300ms cubic-bezier(0.4, 0, 0.2, 1);
  color: white;
  z-index: 1;
  position: relative;
  display: flex;
  flex-direction: column;
  margin-top: 0.7rem;
  width: 100%;
  padding: 0 0.75rem 2rem 0rem;
}
@media (min-width: 50em) {
  .accordion-item--content {
    width: 60%;
    padding: 0 0.75rem;
  }
}
.accordion-item--content p {
  font-size: var(--font-size-lead);
  color: white;
}

.accordion-item--show {
  width: 100% !important;
  height: auto;
  transition: height 600ms cubic-bezier(0.4, 0, 0.2, 1);
}
@media (min-width: 50em) {
  .accordion-item--show {
    height: 90vh;
  }
}
.accordion-item--show .accordion-item--number {
  opacity: 0;
  transition: opacity 300ms cubic-bezier(0.4, 0, 0.2, 1);
}
@media (min-width: 50em) {
  .accordion-item--show .accordion-item--number {
    opacity: 0;
  }
}
.accordion-item--show .accordion-item--content,
.accordion-item--show .accordion-item--title {
  opacity: 1;
  transition: opacity 300ms cubic-bezier(0.4, 0, 0.2, 1);
  transition-delay: 1s;
}
.accordion-item--show .accordion-item--open {
  transform: translateY(-50%) rotate(45deg);
  transition: transform 300ms cubic-bezier(0.4, 0, 0.2, 1);
  right: 0.5rem;
  left: auto;
}

.accordion-item.accordion-item--show:before {
  opacity: 1;
  background-color: rgba(0, 0, 0, 0.3);
  transition: background-color 300ms cubic-bezier(0.4, 0, 0.2, 1);
  transition-delay: 1s;
}

.ask {
  background-color: var(--color-primary);
  width: 70px;
  height: 70px;
  padding: 1rem 1rem 1rem 0.7rem;
  border-radius: 100px;
  position: fixed;
  bottom: 10px;
  right: 10px;
  z-index: 99;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.1s ease-in-out;
}
@media (min-width: 50em) {
  .ask {
    width: 100px;
    height: 100px;
    bottom: var(--spacing-s);
    right: var(--spacing-s);
  }
}
.ask:before {
  content: "";
  z-index: -1;
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: var(--color-primary);
  top: 0;
  left: 0;
  border-radius: 100px;
  -webkit-animation: pulse 1.2s infinite;
          animation: pulse 1.2s infinite;
}
@-webkit-keyframes pulse {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  100% {
    transform: scale(1.2);
    opacity: 0;
  }
}
.ask img {
  width: 38px;
  height: 52px;
  margin-top: -4px;
  margin-left: -3px;
}
@media (min-width: 50em) {
  .ask img {
    width: 48px;
    height: 62px;
    margin-top: -5px;
    margin-left: -3px;
  }
}
.ask:hover {
  width: 80px;
  height: 80px;
  margin: 5px -5px -5px 0;
  cursor: pointer;
  transition: all 0.1s ease-in-out;
  background-color: black;
}
@media (min-width: 50em) {
  .ask:hover {
    width: 110px;
    height: 110px;
  }
}
.ask:hover:before {
  background-color: black;
}

.banner {
  position: relative;
  display: flex;
  height: 100vh;
  width: 100%;
  background-size: cover;
  background-position: center center;
  z-index: 2;
  overflow: hidden;
}
@media (max-width: 49.99em) {
  .banner {
    height: 70vh;
    align-items: center;
  }
}
@media (min-width: 50em) {
  .banner {
    background-attachment: fixed;
  }
}
@media (min-width: 70em) {
  .banner {
    align-items: center;
  }
}
.banner-text--outer {
  height: 200vh;
}
.banner-text--outer .banner {
  position: sticky;
  top: 0;
}
.banner--logo {
  z-index: 9;
  max-width: 85%;
  margin: 0 auto;
  opacity: 1;
  transition: all 0.25s ease-out;
  transition-delay: 0.5s;
}
@media (min-width: 70em) {
  .banner--logo {
    max-width: 60%;
  }
}
.banner--logo-large {
  max-width: 55%;
}
.banner .hide {
  opacity: 0;
}
.banner--text-overlay {
  position: absolute;
  top: 0;
  height: 100vh;
  z-index: 999;
  letter-spacing: -0.25px;
  font-size: calc(1rem + 3.5vw);
  line-height: 105%;
  transform: translateY(200px);
  opacity: 0;
  transition: all 0.25s ease-out;
  padding: 1rem 4rem 1rem 1rem;
}
.banner--text-overlay__reveal {
  opacity: 0;
}
.banner--text-overlay__show {
  transform: translateY(0px);
  opacity: 1;
  transition: all 0.25s ease-out;
}
.banner--text-overlay__show + .banner--content {
  opacity: 0;
}
.banner--overlay {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  width: 100%;
  z-index: 1;
  background-color: rgba(0, 0, 0, 0.2);
  height: 70vh;
}
@media (min-width: 50em) {
  .banner--overlay {
    height: 100vh;
  }
}
.banner--link {
  margin-top: auto;
  width: 100%;
  position: relative;
  padding: 0.75rem 1rem;
}
@media (min-width: 50em) {
  .banner--link {
    padding: 0 1rem;
  }
}
.banner--link__inner {
  height: auto;
  overflow: hidden;
  z-index: 2;
  width: 100%;
  position: relative;
}
.banner--link__inner h1, .banner--link__inner h2, .banner--link__inner h3, .banner--link__inner h4, .banner--link__inner p {
  line-height: 100%;
  text-transform: uppercase;
  color: white;
  font-weight: var(--font-weight-light);
}
.banner--link__arrow {
  display: none;
  position: absolute;
  width: 150px;
  right: -175px;
  bottom: 2rem;
  transform: translateY(-50%);
  z-index: 2;
  color: white;
}
.banner--link__arrow svg {
  color: white;
}
.banner--link:hover {
  text-decoration: none;
}
.banner--link:hover .banner--link__arrow {
  transition-delay: 0s !important;
  color: var(--color-text-base);
}
.banner--link:hover .banner--link__arrow svg {
  color: var(--color-text-base);
}
.banner--link:hover .banner--link__inner p {
  color: var(--color-text-base);
  text-decoration: none;
}
.banner--content {
  margin-top: auto;
  height: auto;
  overflow: hidden;
  z-index: 2;
  opacity: 1;
  transition: all 0.25s ease-out;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-bottom: 1rem;
}
@media (min-width: 70em) {
  .banner--content {
    padding-left: 1.9rem;
    padding-right: 1.9rem;
    padding-bottom: 1rem;
  }
}
.banner--content h1, .banner--content h2, .banner--content h3, .banner--content h4, .banner--content p {
  line-height: 100%;
  text-transform: uppercase;
  color: white;
}
.banner--content p {
  font-weight: var(--font-weight-light);
}
.banner--content p strong {
  font-weight: var(--font-weight-bold);
}
.banner--video {
  position: absolute;
  overflow: hidden;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 70vh;
  background-size: cover;
  background-position: center;
  background: black;
}
@media (min-width: 50em) {
  .banner--video {
    height: 100vh;
    transform: scale(1.1);
  }
}
.banner--video video {
  min-width: 100%;
  min-height: 100%;
  max-width: none;
  min-height: 70vh;
  position: absolute !important;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
@media (max-width: 49.99em) {
  .banner--video video {
    width: 100%;
    top: 35vh;
  }
}
.banner--video__button {
  position: absolute;
  display: flex;
  height: 30px;
  z-index: 999;
  left: 50%;
  bottom: 1rem;
  transform: translateX(-50%);
}
@media (min-width: 50em) {
  .banner--video__button {
    bottom: 2rem;
  }
}
.banner--video__button-desktop {
  display: flex;
}
.banner--video__button-mobile {
  display: flex;
}
.banner--video__button:hover {
  cursor: pointer;
}
.banner--video__button .button {
  stroke: white;
}
.banner--video__button .button .stroke {
  stroke: white;
}
.banner--video__button .button .fill {
  fill: white;
}
.banner--video__button .button:hover {
  opacity: 1;
}
.banner--video__button .button-mute {
  display: none;
  width: 38px;
  color: white;
}
.banner--video__button .button-mute .fill {
  fill: white;
}
.banner--video__button .button-mute .stroke {
  stroke: white;
}
@media (min-width: 50em) {
  .banner--video__button .button-mute:hover {
    color: var(--color-primary);
    stroke: var(--color-primary);
  }
  .banner--video__button .button-mute:hover .stroke {
    stroke: var(--color-primary);
  }
  .banner--video__button .button-mute:hover .fill {
    fill: var(--color-primary);
  }
}
.banner--video__button .button-unmute {
  display: block;
  width: 38px;
  color: var(--color-primary);
  stroke: var(--color-primary);
}
.banner--video__button .button-unmute .fill {
  fill: var(--color-primary);
}
@media (min-width: 50em) {
  .banner--video__button .button-unmute:hover {
    color: white;
    stroke: white;
  }
  .banner--video__button .button-unmute:hover .fill {
    fill: white;
  }
}
.banner--video__button .button-replay,
.banner--video__button .button-replay-mobile {
  margin-right: 1.5rem;
  stroke: white;
}
.banner--video__button .button-replay .stroke,
.banner--video__button .button-replay-mobile .stroke {
  stroke: white;
}
.banner--video__button .button-replay .fill,
.banner--video__button .button-replay-mobile .fill {
  fill: white;
}
.banner--video__button .button-replay:hover,
.banner--video__button .button-replay-mobile:hover {
  stroke: white;
}
.banner--video__button .button-replay:hover .stroke,
.banner--video__button .button-replay-mobile:hover .stroke {
  stroke: white;
}
.banner--video__button .button-replay:hover .fill,
.banner--video__button .button-replay-mobile:hover .fill {
  fill: white;
}
@media (min-width: 50em) {
  .banner--video__button .button-replay:hover,
.banner--video__button .button-replay-mobile:hover {
    stroke: var(--color-primary);
  }
  .banner--video__button .button-replay:hover .stroke,
.banner--video__button .button-replay-mobile:hover .stroke {
    stroke: var(--color-primary);
  }
  .banner--video__button .button-replay:hover .fill,
.banner--video__button .button-replay-mobile:hover .fill {
    fill: var(--color-primary);
  }
}
.banner .unmute .button-mute {
  display: block;
}
.banner .unmute .button-unmute {
  display: none;
}
.banner-space {
  position: absolute;
  z-index: 3;
  flex-direction: column;
  align-items: flex-start;
}
.banner-space p {
  margin-bottom: 0;
}
.banner-space--details {
  margin-top: auto;
  margin-bottom: 1.5rem;
  color: white;
  padding-left: 1rem;
  width: 100%;
  padding-right: 30px;
}
@media (min-width: 50em) {
  .banner-space--details {
    padding-left: 1.9rem;
    padding-right: 60%;
    margin-bottom: 2.75rem;
  }
}
.banner-space--details .btn {
  margin-top: 1.5rem;
}
.banner-space--details p {
  color: white;
}
.banner-space--details .lead {
  margin-bottom: 0.6rem;
}
.banner-space--details + .banner--content {
  margin-top: 0 !important;
}
@media (min-width: 50em) {
  .banner-space .banner--content p {
    font-size: var(--font-size-h2);
  }
}
.banner-journal {
  position: relative;
  z-index: 3;
  flex-direction: column;
  align-items: flex-start;
}
.banner-journal p {
  margin-bottom: 0;
}
.banner-journal--details {
  margin-top: auto;
  margin-bottom: 1rem;
  color: white;
  padding-left: 1rem;
  width: 100%;
  padding-right: 80px;
  z-index: 9;
}
@media (min-width: 50em) {
  .banner-journal--details {
    padding-left: 1.9rem;
    padding-right: 60%;
  }
}
.banner-journal--details .btn {
  margin-top: 0.6rem;
}
.banner-journal--details p {
  color: white;
}
.banner-journal--details .lead {
  margin: 0.5rem 0;
}
.banner-journal--details + .banner--content {
  margin-top: 0 !important;
}
.banner-journal .banner--link {
  margin-top: 0;
}

.single .banner-space .banner--content {
  margin-top: auto;
}

.carousel {
  height: 70vh;
  overflow: hidden;
}
@media (min-width: 50em) {
  .carousel {
    height: 100vh;
  }
}
.carousel .arrows-hide .slick-prev,
.carousel .arrows-hide .slick-next {
  display: none !important;
}
.carousel .banner {
  height: 70vh;
}
@media (min-width: 50em) {
  .carousel .banner {
    height: 100vh;
  }
}
.carousel-slider, .carousel-slider-space {
  height: 100%;
}
.carousel-slider .slick-list, .carousel-slider .slick-track, .carousel-slider .slick-slide, .carousel-slider-space .slick-list, .carousel-slider-space .slick-track, .carousel-slider-space .slick-slide {
  height: 70vh !important;
}
@media (min-width: 50em) {
  .carousel-slider .slick-list, .carousel-slider .slick-track, .carousel-slider .slick-slide, .carousel-slider-space .slick-list, .carousel-slider-space .slick-track, .carousel-slider-space .slick-slide {
    height: 100vh !important;
  }
}
.carousel-slider .slick-slide, .carousel-slider-space .slick-slide {
  max-height: 100vh !important;
}
.carousel-slider .slick-prev, .carousel-slider-space .slick-prev {
  left: 10px;
}
@media (max-width: 49.99em) {
  .carousel-slider .slick-prev, .carousel-slider-space .slick-prev {
    top: auto;
    bottom: 0;
  }
}
@media (min-width: 50em) {
  .carousel-slider .slick-prev, .carousel-slider-space .slick-prev {
    left: 15px;
  }
}
.carousel-slider .slick-next, .carousel-slider-space .slick-next {
  right: 10px;
}
@media (max-width: 49.99em) {
  .carousel-slider .slick-next, .carousel-slider-space .slick-next {
    top: auto;
    bottom: 0;
  }
}
@media (min-width: 50em) {
  .carousel-slider .slick-next, .carousel-slider-space .slick-next {
    right: 15px;
  }
}
.carousel-slider-item, .carousel-slider-space-item {
  display: flex !important;
  align-items: center;
  justify-content: center;
  height: 70vh;
  width: 100%;
  background-size: cover;
  background-position: center center;
}
@media (min-width: 50em) {
  .carousel-slider-item, .carousel-slider-space-item {
    height: 100vh;
    background-attachment: fixed;
  }
}
.carousel-slider-item-mobile, .carousel-slider-space-item-mobile {
  position: absolute;
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  background-size: cover;
  background-position: center center;
}
.carousel-slider-item-mobile img, .carousel-slider-space-item-mobile img {
  display: none;
}
@media (min-width: 50em) {
  .carousel-slider-item-mobile, .carousel-slider-space-item-mobile {
    display: none;
  }
}
.carousel-slider-item img, .carousel-slider-space-item img {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  max-width: none;
  min-height: 100%;
  min-width: 100%;
}
@media (min-width: 50em) {
  .carousel-slider-item img, .carousel-slider-space-item img {
    display: none;
  }
}
.carousel-slider-item--content, .carousel-slider-space-item--content {
  display: flex;
  align-items: center;
  padding-left: 1rem;
  padding-right: 1rem;
  width: 100%;
  color: white;
  height: auto;
  overflow: hidden;
  z-index: 2;
}
@media (min-width: 50em) {
  .carousel-slider-item--content, .carousel-slider-space-item--content {
    padding-left: 0px;
    padding-right: 0px;
  }
}
.carousel-slider-item--content h1, .carousel-slider-item--content h2, .carousel-slider-item--content h3, .carousel-slider-item--content h4, .carousel-slider-space-item--content h1, .carousel-slider-space-item--content h2, .carousel-slider-space-item--content h3, .carousel-slider-space-item--content h4 {
  padding-left: 0px;
  padding-right: 0px;
  line-height: 1.08 !important;
  font-weight: var(--font-weight-light);
}
@media (min-width: 50em) {
  .carousel-slider-item--content h1, .carousel-slider-item--content h2, .carousel-slider-item--content h3, .carousel-slider-item--content h4, .carousel-slider-space-item--content h1, .carousel-slider-space-item--content h2, .carousel-slider-space-item--content h3, .carousel-slider-space-item--content h4 {
    padding-left: 200px;
    padding-right: 40px;
  }
}
.carousel-slider-item--content p, .carousel-slider-space-item--content p {
  max-width: 900px;
  padding: 0;
  margin: 0 auto;
}
@media (min-width: 50em) {
  .carousel-slider-item--content p, .carousel-slider-space-item--content p {
    padding: 0 2rem;
  }
}
.carousel-slider-item--overlay, .carousel-slider-space-item--overlay {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 70vh;
  z-index: 1;
  background-color: rgba(0, 0, 0, 0.4);
}
@media (min-width: 50em) {
  .carousel-slider-item--overlay, .carousel-slider-space-item--overlay {
    height: 100vh;
  }
}
@media (max-width: 49.99em) {
  .carousel .bkg-none {
    background-image: none !important;
  }
}

.cta {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 50vh;
  width: 100%;
  background-size: cover;
  background-position: center center;
  background-attachment: fixed;
}
@media (min-width: 50em) {
  .cta {
    height: 75vh;
  }
}
.cta--video {
  position: absolute;
  overflow: hidden;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  width: 100%;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}
@media (min-width: 50em) {
  .cta--video {
    height: 75vh;
  }
}
.cta--video video {
  min-width: 100%;
  min-height: 100%;
  max-width: none;
  position: absolute !important;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.cta--links {
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.2);
  z-index: 2;
  padding: 0;
}
@media (min-width: 50em) {
  .cta--links {
    flex-direction: row;
    padding: 1rem 0;
  }
}
.cta--links-item {
  display: flex;
  width: 100%;
  align-items: flex-end;
  height: 50%;
  overflow: hidden;
  z-index: 2;
  padding: var(--spacing-s) 1rem;
}
@media (min-width: 50em) {
  .cta--links-item {
    width: 50%;
    height: auto;
    padding: var(--spacing-s);
  }
}
.cta--links-item:first-child {
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}
@media (min-width: 50em) {
  .cta--links-item:first-child {
    border-bottom: 0;
    border-right: 1px solid rgba(255, 255, 255, 0.3);
  }
}
.cta--links-item p {
  line-height: 100%;
  text-transform: uppercase;
  color: white;
  font-weight: var(--font-weight-light);
}
.cta--links-item a {
  margin-top: auto;
  flex-direction: row;
  display: flex;
  align-items: flex-end;
  text-decoration: none;
  height: auto;
  overflow: hidden;
}
.cta--links-item a .arrow {
  margin-left: 1.5rem;
  width: 50px;
  color: white;
  transition: none;
  transition-delay: 0s !important;
}
@media (min-width: 50em) {
  .cta--links-item a .arrow {
    width: 100px;
  }
}
.cta--links-item a .arrow svg {
  width: 50px;
  height: 16px;
}
@media (min-width: 50em) {
  .cta--links-item a .arrow svg {
    width: 80px;
    height: 31px;
  }
}
.cta--links-item a:hover {
  color: var(--color-text-base);
}
.cta--links-item a:hover p {
  color: var(--color-text-base);
}
.cta--links-item a:hover .arrow {
  color: black;
  transition-delay: 0s !important;
}

.featured-journal {
  background-color: var(--color-tertiary);
}

.featured-space .banner-space {
  background-color: rgba(0, 0, 0, 0.4);
}

.image-block {
  display: flex;
  flex-direction: column;
  padding-bottom: 0;
  padding-left: 1rem;
  padding-right: 1rem;
}
@media (min-width: 50em) {
  .image-block {
    flex-direction: row;
    padding-bottom: var(--spacing);
    padding-left: 200px;
    padding-right: 40px;
  }
}
.image-block--text {
  width: 100%;
  padding: var(--spacing) 0;
  padding-top: 0;
  padding-bottom: 0;
}
@media (min-width: 50em) {
  .image-block--text {
    width: 40%;
    padding: var(--spacing);
    position: sticky;
    top: 0;
  }
}
@media (min-width: 50em) {
  .image-block--text__sticky {
    position: sticky;
    top: var(--spacing);
    padding-bottom: var(--spacing);
  }
}
.image-block--images {
  width: 100%;
  display: flex;
  align-items: flex-start;
  margin-left: auto;
  flex-direction: column;
}
@media (min-width: 50em) {
  .image-block--images {
    width: 60%;
    flex-direction: row;
  }
}
.image-block--images-item {
  margin: 0 0 1rem 0;
  width: 100%;
}
@media (min-width: 50em) {
  .image-block--images-item {
    margin: 0 12.5px;
    width: 50%;
    position: sticky;
    top: 0;
  }
}
.image-block--images-item:first-child {
  margin-left: 0;
}
.image-block--images-item:first-child img {
  margin-left: auto;
}
.image-block--images-item:last-child {
  margin-right: 0;
}

.image {
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  background-size: cover;
  background-position: center center;
}
.image p {
  font-size: var(--font-size-large);
  color: white;
}

.video--full {
  width: 100%;
}

.journals {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  padding: var(--spacing) 0.5rem 1rem 0.5rem;
}
@media (min-width: 50em) {
  .journals {
    padding: var(--spacing-l) calc(var(--spacing) - 12.5px) var(--spacing) calc(var(--spacing) - 12.5px);
  }
}
.journals .journals {
  padding: 0;
}
.journals-title {
  font-size: 50px;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 2rem;
}
@media (min-width: 50em) {
  .journals-title {
    margin-bottom: 4rem;
  }
}
.journals-item {
  width: calc(100% / 2 );
  padding: 0 0.5rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 1rem;
}
@media (min-width: 50em) {
  .journals-item {
    padding: 0 12.5px;
    width: calc(100% / 4 );
    margin-bottom: var(--spacing);
  }
}
.journals-item img {
  margin-bottom: 1rem;
}
@media (min-width: 50em) {
  .journals-item img {
    margin-bottom: var(--spacing-s);
  }
}
.journals-item p {
  margin-bottom: 1rem;
}
@media (min-width: 50em) {
  .journals-item p {
    margin-bottom: var(--spacing-s);
  }
}
.journals-item--title {
  min-height: 139px;
}
.journals-item--title .btn {
  margin-bottom: 1rem;
}

.journal--header {
  padding: 2rem 0 1.6rem 0;
}
@media (min-width: 50em) {
  .journal--header {
    padding: var(--spacing-xl) 0;
  }
}
.journal--header__cat {
  margin-bottom: 1rem;
}
.journal--header__share {
  margin-top: 2rem;
  font-size: var(--font-size-small);
  border-top: 1px solid black;
  padding-top: 0.5rem;
  width: 100%;
}
@media (min-width: 50em) {
  .journal--header__share {
    margin-top: var(--spacing);
    padding-right: 8rem;
  }
}
.journal--header__share p {
  font-size: var(--font-size-small);
}
.journal--header h1 {
  font-size: 30px;
  line-height: 1.15;
  margin-bottom: 1rem;
  padding-right: 2rem;
}
@media (min-width: 50em) {
  .journal--header h1 {
    padding-right: 0;
    font-size: 50px;
  }
}
.journal--header__inner {
  padding: 0 1rem !important;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
@media (min-width: 50em) {
  .journal--header__inner {
    padding: 0 var(--spacing) !important;
  }
}
.journal--image {
  margin-bottom: 2rem;
  padding-top: 1rem;
}
@media (min-width: 50em) {
  .journal--image {
    padding-top: 0;
    width: 110%;
    margin-left: -5%;
    transform: translateY(-75px);
  }
}
@media (min-width: 50em) {
  .journal--image + .content {
    transform: translateY(-75px);
  }
}

.location-images {
  padding-bottom: 2rem;
}
@media (min-width: 50em) {
  .location-images {
    padding-bottom: 60px;
  }
}
.location-images--slider .slick-list {
  height: 100%;
}
.location-images--slider .slick-list .slick-track {
  display: flex;
}
.location-images--slider-item {
  padding: 0 0.5rem;
  display: flex;
  flex-direction: column;
}
@media (min-width: 50em) {
  .location-images--slider-item {
    padding: 0 1rem;
  }
}
.location-images--slider-item:hover {
  cursor: pointer;
}
.location-images--slider-item--content {
  min-height: 66px;
}
@media (min-width: 50em) {
  .location-images--slider-item--content {
    padding-right: 50px;
  }
}
.location-images--slider-item p {
  font-size: var(--font-size-small);
}
.location-images--slider-item img {
  width: 100%;
  margin-bottom: 1rem;
}

.manifesto {
  background-color: white;
  width: 100%;
  padding: 2.5rem 0 2.75rem 0;
}
@media (min-width: 50em) {
  .manifesto {
    padding: var(--spacing-l) 0;
  }
}
@media (min-width: 50em) {
  .manifesto h2 {
    padding-left: 0.5rem;
  }
}
.manifesto--intro {
  width: 100%;
  padding-left: 0;
  margin-bottom: 2rem;
}
@media (min-width: 50em) {
  .manifesto--intro {
    width: 50%;
    padding-right: 120px;
    padding-left: 1rem;
  }
}
.manifesto--intro p {
  font-size: var(--font-size-small);
}
.manifesto-list {
  display: flex;
  align-items: flex-start;
  padding-top: 0;
  padding-left: 2rem;
}
@media (min-width: 50em) {
  .manifesto-list {
    padding-top: 2rem;
    padding-left: 0;
  }
}
.manifesto-list--content {
  width: 100%;
  border-left: 1px solid #C7C7C7;
  padding-left: 1rem;
}
@media (min-width: 50em) {
  .manifesto-list--content {
    width: 50%;
    margin-bottom: 280px;
  }
}
.manifesto-list--images {
  width: 50%;
  position: sticky;
  top: 2rem;
}
@media (max-width: 49.99em) {
  .manifesto-list--images {
    display: none;
  }
}
.manifesto-item {
  display: flex;
  align-items: flex-start;
  position: relative;
  margin-bottom: 2rem;
}
@media (min-width: 50em) {
  .manifesto-item {
    min-height: 300px;
  }
}
.manifesto-item:last-child {
  margin-bottom: 0;
}
.manifesto-item--number {
  position: sticky;
  top: 2rem;
  transform: translateX(-3.2rem);
}
@media (min-width: 50em) {
  .manifesto-item--number {
    transform: translateX(-4rem);
    top: 3rem;
  }
}
.manifesto-item--content {
  position: sticky;
  top: 2rem;
  transform: translateX(-2rem);
}
@media (min-width: 50em) {
  .manifesto-item--content {
    padding-right: 120px;
    top: 3rem;
  }
}
.manifesto-item--content p {
  font-size: var(--font-size-small);
}
.manifesto-item--image {
  width: 50%;
  position: sticky;
  top: 0;
  right: 0;
}

.show {
  display: block !important;
}

.membership {
  display: flex;
  padding-left: var(--spacing-xs);
  padding-right: var(--spacing-xs);
  flex-direction: column;
}
@media (min-width: 50em) {
  .membership {
    flex-direction: row;
    padding-left: var(--spacing);
    padding-right: var(--spacing);
  }
}
.membership-block {
  background-color: var(--color-primary);
}
@media (min-width: 50em) {
  .membership-block {
    padding-bottom: 60px;
  }
}
.membership-block .text-block--text-title {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
}
@media (min-width: 50em) {
  .membership-block .text-block--text-title {
    flex-direction: row;
  }
}
.membership-block .text-block--text-title span {
  background-color: black;
  color: white;
  padding: 0.4rem 0.7rem;
  font-size: var(--font-size-small);
  margin-top: 0;
  margin-bottom: 1rem;
}
@media (min-width: 50em) {
  .membership-block .text-block--text-title span {
    margin-left: auto;
    margin-bottom: 0;
    margin-top: 1.4rem;
  }
}
.membership-block .text-block--text__half {
  width: 100%;
}
.membership-block .text-block--text__content {
  width: 100%;
}
@media (min-width: 50em) {
  .membership-block .text-block--text__content {
    width: 50%;
  }
}
.membership-block .text-block--text__half .text-block--text__content p {
  padding-right: 0;
}
.membership-item {
  width: 100%;
  margin: 0 0 var(--spacing-s) 0;
}
@media (min-width: 50em) {
  .membership-item {
    width: calc(100% / 3);
    margin: 0 12.5px;
  }
}
.membership-item:first-child {
  margin-left: 0;
}
.membership-item:last-child {
  margin-right: 0;
}
.membership-item--image {
  position: relative;
  width: 100%;
  height: 60vw;
  overflow: hidden;
  margin-bottom: 1rem;
}
@media (min-width: 50em) {
  .membership-item--image {
    height: 20vw;
    max-height: 360px;
  }
}
.membership-item--image img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  max-width: none;
  width: 100%;
  min-height: calc(100% + 2px);
}
.membership-item--content h4 {
  margin-bottom: 0.65rem;
}
.membership-item--content h4 span {
  background-color: black;
  color: var(--color-primary);
  text-transform: uppercase;
  padding: 0.1rem 0.4rem;
}
.membership-item--content p {
  font-size: var(--font-size-small);
}

.global-modal {
  display: none;
}

.modal-inner {
  display: flex !important;
  width: 100%;
  height: 100%;
  padding-bottom: 1rem;
  flex-direction: column;
}
@media (min-width: 50em) {
  .modal-inner {
    flex-direction: row;
  }
}
.modal-inner-item {
  flex: 1;
  padding: 0 1rem 1rem 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  height: 100%;
}
@media (min-width: 50em) {
  .modal-inner-item {
    padding: 0 2rem;
    border-left: 1px solid #C7C7C7;
    border-bottom: 1px solid #C7C7C7;
  }
}
.modal-inner-item p {
  max-width: 500px;
  margin: 0 auto;
}
.modal-inner-item h3 {
  margin-top: 2rem;
}
.modal-inner-item:first-of-type {
  border-left: 0;
  border-bottom: 1px solid #C7C7C7;
  border-bottom: none;
}
.modal-inner-item:last-of-type {
  border-bottom: none;
}
.modal-inner-item--buttons {
  margin-top: 2rem;
}
.modal-inner-item__center {
  justify-content: center;
}

.btn-back {
  position: absolute;
  color: var(--color-text-base);
  margin: 0;
  display: block;
  top: 0.5rem;
  left: 0.7rem;
}

.step-content {
  height: 80vh;
}

.tab-content > .tab-pane {
  display: none;
}

.tab-content > .active {
  display: block;
}

.modal-open {
  overflow: hidden;
}

.modal-open .modal {
  overflow-x: hidden;
  overflow-y: hidden;
}

.modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}

.modal-dialog {
  position: relative;
  width: auto;
  pointer-events: none;
  height: 100%;
}

.modal.fade .modal-dialog {
  transition: transform 0.3s ease-out;
  transform: translate(0, -50px);
}

@media (prefers-reduced-motion: reduce) {
  .modal.fade .modal-dialog {
    transition: none;
  }
}
.modal.show .modal-dialog {
  transform: none;
}

.modal-dialog-scrollable {
  display: flex;
  max-height: 100%;
}

.modal-dialog-scrollable .modal-content {
  max-height: 100%;
  overflow: hidden;
}

.modal-dialog-scrollable .modal-footer, .modal-dialog-scrollable .modal-header {
  flex-shrink: 0;
}

.modal-dialog-scrollable .modal-body {
  overflow-y: auto;
}

.modal-dialog-centered {
  display: flex;
  align-items: center;
  min-height: 100%;
}

.modal-dialog-centered::before {
  display: block;
  height: 100%;
  content: "";
}

.modal-dialog-centered.modal-dialog-scrollable {
  flex-direction: column;
  justify-content: center;
  height: 100%;
}

.modal-dialog-centered.modal-dialog-scrollable .modal-content {
  max-height: none;
}

.modal-dialog-centered.modal-dialog-scrollable::before {
  content: none;
}

.modal-content {
  position: relative;
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 80%;
  pointer-events: auto;
  background-color: #fff;
  background-clip: padding-box;
  outline: 0;
  overflow: auto;
}

.modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}

.modal-backdrop.fade {
  opacity: 0;
}

.modal-backdrop.show {
  opacity: 0.5;
}

.modal-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding: 1rem 1rem;
}

.modal-content .close {
  position: absolute;
  right: 1rem;
  top: 1rem;
  z-index: 99;
  padding: 0;
  background: transparent;
  border: 0;
}
.modal-content .close:hover {
  cursor: pointer;
}

.modal-title {
  margin-bottom: 0;
  line-height: 1.5;
}

.modal-body {
  position: relative;
  flex: 1 1 auto;
  padding: 0 0 2rem 0;
}

.modal-footer {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding: 1rem;
  border-top: 1px solid #dee2e6;
  border-bottom-right-radius: 0.3rem;
  border-bottom-left-radius: 0.3rem;
}

.modal-footer > :not(:first-child) {
  margin-left: 0.25rem;
}

.modal-footer > :not(:last-child) {
  margin-right: 0.25rem;
}

.modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}

@media (min-width: 576px) {
  .modal-dialog {
    max-width: 90%;
    margin: 0 auto;
  }

  .modal-dialog-scrollable {
    max-height: calc(100% - 3.5rem);
  }

  .modal-dialog-scrollable .modal-content {
    max-height: calc(100vh - 3.5rem);
  }

  .modal-dialog-centered::before {
    height: calc(100vh - 3.5rem);
  }
}
.btn-toolbar {
  display: none;
}

.share {
  margin-top: 3rem;
  padding-top: 0.5rem;
  border-top: 1px solid var(--color-text-base);
  width: 100%;
}
@media (min-width: 50em) {
  .share {
    width: 50%;
  }
}

.addthis_inline_share_toolbox {
  margin-top: 0.5rem;
  margin-left: -0.5rem;
}
.addthis_inline_share_toolbox .at-share-btn {
  background-color: transparent !important;
  margin: 0 !important;
}
.addthis_inline_share_toolbox .at-share-btn:hover {
  transform: translateY(0) !important;
}
.addthis_inline_share_toolbox .at-share-btn:hover svg {
  fill: var(--color-primary) !important;
}

.space-cta {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: var(--spacing) 2rem;
  background-size: cover;
  background-repeat: none;
}
@media (min-width: 50em) {
  .space-cta {
    background-attachment: fixed;
    padding: var(--spacing) 0;
  }
}
.space-cta:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.3);
}
.space-cta--content {
  z-index: 1;
}
.space-cta--content h2, .space-cta--content h3, .space-cta--content h4, .space-cta--content p {
  color: white;
}
.space-cta--content p {
  max-width: 500px;
  margin: 0 auto;
}
.space-cta--content p:last-of-type {
  margin-bottom: 1rem;
}
.space-cta--content h3 + .btn {
  margin-top: 0.98rem;
}

.space-description {
  display: flex;
  flex-direction: column;
}
@media (min-width: 50em) {
  .space-description {
    flex-direction: row;
  }
}
.space-description-item {
  width: 100%;
  padding: 1rem;
  padding-bottom: 0;
}
@media (min-width: 50em) {
  .space-description-item {
    width: 50%;
    padding: var(--spacing);
    padding-right: var(--spacing-l);
  }
}
.space-description-item .share {
  padding: 0.5rem 0 1.6rem 0;
}
@media (min-width: 50em) {
  .space-description-item .share {
    padding: 0.5rem 0 0 0;
  }
}
.space-description-item .share p {
  font-size: var(--font-size-small);
}
.space-description--left ul {
  margin-top: 0;
  margin-bottom: 1.4rem;
}
.space-description--left ul li {
  font-size: var(--font-size-small);
}

.space-nav {
  position: sticky;
  top: 0;
  z-index: 99;
  padding: 0.6rem;
  display: none;
}
@media (max-width: 49.99em) {
  .space-nav {
    display: none;
  }
}
@media (min-width: 50em) {
  .space-nav {
    padding: 0.6rem 5.5rem 0.6rem var(--spacing);
  }
}
.space-nav ul {
  display: flex;
  list-style-type: none;
  width: 100%;
  justify-content: space-between;
  margin: 0;
  padding: 0;
}
.space-nav ul li {
  font-size: var(--font-size-small);
  padding-right: 1rem;
}
.space-nav ul li a {
  color: var(--color-primary);
}
.space-images--content {
  margin-top: auto;
  height: auto;
  overflow: hidden;
}
.space-images--content h1, .space-images--content h2, .space-images--content h3, .space-images--content h4, .space-images--content p {
  line-height: 100%;
  text-transform: uppercase;
  color: white;
}

.spaces .slick-prev,
.spaces .slick-next {
  display: none !important;
}
.spaces .banner-space {
  background-color: rgba(0, 0, 0, 0.4);
}
.spaces .carousel .carousel-slider-item-mobile {
  position: relative !important;
}

.text-block {
  display: flex;
  position: relative;
  padding-bottom: 2rem;
  flex-direction: column;
}
@media (min-width: 50em) {
  .text-block {
    padding-top: 0;
    padding-bottom: var(--spacing);
    flex-direction: row;
  }
}
.text-block .bkg--red {
  margin-bottom: 0;
}
.text-block .small p {
  width: 70%;
}
.text-block hr + .text-block--text__content h2 {
  margin-top: 13px;
}
.text-block hr + h3, .text-block hr h4, .text-block hr p {
  margin-top: var(--spacing-xs);
}
.text-block--text {
  padding-left: var(--spacing-xs);
  padding-right: var(--spacing-xs);
}
@media (max-width: 49.99em) {
  .text-block--text {
    padding-top: var(--spacing-s);
  }
}
@media (min-width: 50em) {
  .text-block--text {
    padding-left: var(--spacing);
    padding-right: var(--spacing);
  }
}
@media (min-width: 50em) {
  .text-block--text__sticky {
    position: sticky;
    top: calc(var(--spacing) + 35px);
  }
}
.text-block--text__sticky hr {
  border-top: 1px solid var(--color-primary) !important;
}
.text-block--text__sticky hr + p {
  margin-top: 1rem;
}
.text-block--text h2 span, .text-block--text h3 span, .text-block--text h4 span {
  color: var(--color-primary);
}
.text-block--text__content h2 {
  letter-spacing: -3px;
  margin-bottom: 1.4rem;
}
.text-block--text__half .text-block--text {
  width: 100%;
}
@media (min-width: 50em) {
  .text-block--text__half .text-block--text {
    width: 50%;
  }
}
.text-block--text__half .text-block--text__content {
  padding: var(--spacing);
}
.text-block--text__half .text-block--text__content p {
  padding-right: 0;
}
@media (min-width: 50em) {
  .text-block--text__half .text-block--text__content p {
    padding-right: 50%;
  }
}
.text-block--text-inner {
  padding: 1rem 1rem 0 1rem;
}
@media (min-width: 50em) {
  .text-block--text-inner {
    padding: 55px var(--spacing);
    padding-bottom: var(--spacing-s);
  }
}
.text-block--text-inner .text-block--text__content {
  padding: 0;
}
.text-block--text-inner hr {
  display: none;
}
@media (min-width: 50em) {
  .text-block--text-inner hr {
    display: block;
  }
}
.text-block--text__full {
  width: 100%;
  padding: 0;
}
.text-block--text__full .text-block--text__half {
  width: 50%;
}
.text-block--has-image {
  margin-right: 0 !important;
  border-top: none !important;
}
.text-block--images {
  width: 100%;
  overflow: hidden;
  padding-left: var(--spacing-xs);
  padding-right: var(--spacing-xs);
}
@media (min-width: 50em) {
  .text-block--images {
    width: 50%;
    padding-left: 0;
    padding-right: 0;
  }
}
.text-block--images .slick-slide div img {
  display: block !important;
}
.text-block--images__left .text-block--text {
  order: 1;
}
.text-block--images__left .text-block--image {
  order: 0;
}
.text-block--image {
  width: 100%;
  overflow: hidden;
  padding-left: var(--spacing-xs);
  padding-right: var(--spacing-xs);
}
@media (min-width: 50em) {
  .text-block--image {
    width: 50%;
    padding-left: 0;
    padding-right: 0;
  }
}
.text-block--image img {
  width: 100%;
}
.text-block--image__left .text-block--text {
  order: 1;
}
.text-block--image__left .text-block--image {
  order: 0;
}
@media (max-width: 49.99em) {
  .text-block--image__right .text-block--text {
    order: 1;
  }
  .text-block--image__right .text-block--image {
    order: 0;
  }
}

.keyline.text-block--has-image .text-block--text {
  margin-top: 0;
  padding-right: 0;
  margin-right: var(--spacing);
  width: calc(50% - var(--spacing));
}
.keyline.text-block--has-image .text-block--text__sticky {
  padding-top: var(--spacing-xs);
}
.keyline.text-block--has-image .text-block--text__sticky hr {
  border-top: 1px solid var(--color-primary) !important;
}

.text-block.bkg--red {
  margin-bottom: 0;
}

.carousel + .text-block,
.carousel + .bkg--pink, .container--large + .text-block,
.container--large + .bkg--pink {
  padding-top: 1rem;
}
@media (min-width: 50em) {
  .carousel + .text-block,
.carousel + .bkg--pink, .container--large + .text-block,
.container--large + .bkg--pink {
    padding-top: var(--spacing);
  }
}
.carousel + .text-block .text-block--text-inner,
.carousel + .bkg--pink .text-block--text-inner, .container--large + .text-block .text-block--text-inner,
.container--large + .bkg--pink .text-block--text-inner {
  padding-top: 0;
}

.intro-block {
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}
@media (min-width: 70em) {
  .intro-block {
    background-attachment: fixed;
  }
}
.intro-block + .text-block,
.intro-block + .bkg--pink {
  padding-top: 1rem;
}
@media (min-width: 50em) {
  .intro-block + .text-block,
.intro-block + .bkg--pink {
    padding-top: var(--spacing);
  }
}
.intro-block .text-block--text-inner {
  padding: 1.5rem 1rem;
}
@media (min-width: 70em) {
  .intro-block .text-block--text-inner {
    padding: var(--spacing-l) var(--spacing-xxl);
  }
}
.intro-block p {
  font-size: var(--font-size-lead);
  font-weight: var(--font-weight-light);
}
.intro-block p strong, .intro-block p b {
  font-weight: var(--font-weight-normal);
}
@media (min-width: 70em) {
  .intro-block p {
    font-size: calc(var(--font-size-lead) * 1.6);
    line-height: 1.04;
  }
}

.global-container {
  max-width: var(--container-max);
  margin: 0 auto;
}

.container, .main {
  margin: 0 auto;
  padding: 0 1em;
  width: 100%;
  max-width: var(--container-width);
}

.container--small {
  margin: 0 auto;
  padding: 0 1rem;
  width: 100%;
  max-width: var(--container-width-s);
}

.container--large {
  margin: 0 auto;
  padding: 0;
  width: 100%;
  max-width: 1800px;
}

.main {
  max-width: var(--content-width);
  margin-top: var(--spacing-l);
  margin-bottom: var(--spacing-l);
  flex: 1;
  min-height: 100vh;
}

.bkg--red {
  background-color: var(--color-primary);
}
.bkg--pink {
  background-color: var(--color-secondary);
}
.bkg--yellow {
  background-color: var(--color-tertiary);
}
.bkg--white {
  background-color: white;
}

.grad {
  background: #fecfcf;
  background: linear-gradient(90deg, var(--color-secondary) 0%, var(--color-tertiary) 100%);
}

.color-red {
  color: var(--color-primary);
}

.color-white {
  color: white;
}

.color-black {
  color: var(--color-text-base);
}

.content {
  font-size: var(--font-size-small);
  padding-bottom: var(--spacing-s);
}
@media (min-width: 50em) {
  .content {
    padding-bottom: var(--spacing-l);
  }
}
.content > * {
  max-width: var(--content-width);
  margin-right: auto;
  margin-left: auto;
}
.content--share {
  margin-top: 2rem;
  border-top: 1px solid black;
  padding-top: 0.5rem;
}
@media (min-width: 50em) {
  .content--share {
    margin-top: var(--spacing-l);
  }
}
.content img {
  margin-top: 2rem;
}
@media (min-width: 50em) {
  .content img {
    margin-top: var(--spacing-l);
  }
}
.content .wp-caption {
  margin-bottom: 2rem;
  max-width: 100%;
}
@media (min-width: 50em) {
  .content .wp-caption {
    margin-bottom: var(--spacing-l);
  }
}
.content p {
  font-size: var(--font-size);
  line-height: 1.3;
}
.content h2,
.content h4,
.content h5 {
  margin-top: var(--spacing-l);
  margin-bottom: 0;
  display: inline-block;
}
.content a {
  color: var(--link-color);
  text-decoration: underline;
  -webkit-text-decoration-color: var(--link-hover-color);
          text-decoration-color: var(--link-hover-color);
}
.content a:hover {
  color: var(--link-hover-color);
  text-decoration: underline;
}
.content blockquote {
  max-width: none;
  font-size: var(--font-size-h3);
  line-height: 1.4;
  margin: var(--spacing-l) 0;
}
.content figure {
  max-width: none;
  margin: var(--spacing-xl) 0;
}
.content figcaption {
  padding: 1em 0;
  font-size: var(--font-size-xs);
  color: var(--color-text-dark);
  max-width: var(--content-width);
  margin-right: auto;
  margin-left: auto;
  border-bottom: 1px solid var(--color-grey-light);
}
.content ul {
  margin-top: 1.5em;
  padding: 0;
  padding-left: 1.2rem;
}
.content li {
  position: relative;
  padding-left: 1.2rem;
  margin-bottom: 0.3em;
}
.content li p {
  display: inline;
}
.content li::marker {
  content: "•";
  position: absolute;
  left: 0;
  top: 2px;
  font-size: 0.7rem;
  line-height: 1;
  font-weight: bold;
  margin-right: 0.6em;
  color: var(--color-text-dark);
}

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

.icon--small {
  width: 13px;
  height: 13px;
}

.icon--medium {
  width: 26px;
  height: 26px;
}

.icon--large {
  width: 32px;
  height: 32px;
}

.icon--xlarge {
  width: 40px;
  height: 40px;
}

.icon--scale {
  width: 0.75em;
  height: 0.75em;
  vertical-align: middle;
  position: relative;
  top: -2px;
}

.icon--offset {
  margin-right: 5px;
}

.btn {
  display: inline-block;
  border-radius: 0;
  padding: 0.3rem 0.6rem;
  border: 0;
  color: white;
  font-family: var(--display-family);
  font-weight: var(--font-weight-normal);
  font-size: var(--font-size);
  text-align: center;
  cursor: pointer;
  transition: all 0.1s ease-in-out;
  background-color: var(--color-primary);
}
.btn:hover, .btn:focus {
  outline: 0;
  color: white;
  text-decoration: none;
  background-color: black;
}
.btn + .btn {
  margin-left: 1rem;
}

.btn--primary {
  background-color: black;
  color: white;
}
.btn--primary:hover, .btn--primary:focus {
  border-color: var(--color-primary);
  color: white;
}

.global-alert {
  background: var(--color-primary);
  text-align: center;
  padding: 1rem;
}

.global-alert p {
  color: white;
  margin: 0;
}

.cookie-alert {
  display: none;
  background: orange;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
}
.cookie-alert.is-visible {
  display: block;
}

.cookie-alert__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: var(--spacing-s) var(--spacing-l);
}

.cookie-alert__inner p {
  margin: 0;
  line-height: 1;
  font-size: var(--font-size-small);
}

.cookie-alert__btn {
  background: transparent;
  border: 0;
  cursor: pointer;
}

.global-header {
  position: sticky;
  top: 0;
  display: flex;
  justify-content: space-between;
  background-color: white;
  z-index: 999;
}

.global-header__inner {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
}

.global-header__logo {
  font-size: 2rem;
  margin: 0;
  width: 40px;
}

.global-header__nav {
  display: none;
}
@media (min-width: 50em) {
  .global-header__nav {
    display: flex;
  }
}

.global-header__menu {
  display: flex;
  margin-left: auto;
  z-index: 999;
  top: 10px;
  right: 10px;
  position: fixed;
}

.global-header__nav ul {
  display: flex;
}

.global-header__nav li {
  margin-left: 1rem;
  display: flex;
  align-items: center;
}
.global-header__nav li a {
  color: white;
  font-weight: var(--font-weight-bold);
  margin: 0 0.5rem;
}

.global-header__menu-btn {
  cursor: pointer;
  overflow: visible;
  width: 40px;
  height: 40px;
  border-radius: 100px;
  background-color: var(--color-primary);
  border: 0;
  outline: none;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 998;
  transition: all 0.1s ease-in-out;
}
@media (min-width: 50em) {
  .global-header__menu-btn {
    width: 50px;
    height: 50px;
  }
}
.global-header__menu-btn:hover {
  width: 50px;
  height: 50px;
  margin: -5px -5px 0 0;
}
@media (min-width: 50em) {
  .global-header__menu-btn:hover {
    width: 60px;
    height: 60px;
    background-color: black;
  }
}

.menu-active {
  overflow: hidden;
}

.global-header--nav__mobile.is-toggled {
  transform: translateX(-100%);
  transition: all 0.2s ease-in-out;
}
.global-header--nav__mobile.is-toggled:focus {
  background-color: var(--color-primary);
}

.global-header--nav-btn.is-toggled {
  transition: 0.3s background-color ease-in-out;
}

/*
* SVG animation
*/
.global-header--nav-btn.is-toggled .global-header--nav-inner,
.global-header--nav-btn.is-toggled .global-header--nav-inner::before,
.global-header--nav-btn.is-toggled .global-header--nav-inner::after {
  background-color: white;
}

.global-header--nav-logo {
  width: 18px;
  height: 22px;
}
@media (min-width: 50em) {
  .global-header--nav-logo {
    width: 22px;
    height: 28px;
  }
}
.global-header--nav-close {
  display: none;
  width: 18px;
  height: 22px;
  z-index: 9999;
  margin-top: 4px;
}
@media (min-width: 50em) {
  .global-header--nav-close {
    width: 22px;
    height: 28px;
  }
}
.global-header--nav-close svg {
  z-index: 9999;
}

.global-header--nav-box {
  width: 40px;
  height: 34px;
  display: flex;
  position: relative;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

.global-header--nav-inner {
  display: block;
}
.global-header--nav-inner span {
  visibility: hidden;
  position: absolute;
  display: none;
  transform: translateY(-9px);
}

.global-header--nav-inner,
.global-header--nav-inner::before,
.global-header--nav-inner::after {
  width: 18px;
  height: 2px;
  background-color: white;
  border-radius: 4px;
  position: absolute;
  transition-property: opacity;
  transition-duration: 0.15s;
  transition-timing-function: ease;
}

.global-header--nav-inner::before,
.global-header--nav-inner::after {
  content: "";
  display: block;
  transform: rotate(90deg);
}

.global-header--nav-inner::before {
  top: 10px;
  left: -10px;
}

.global-header--nav-inner::after {
  top: 10px;
  right: -10px;
}

.global-header--nav-inner {
  transition-duration: 0.3s;
  transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
}

.global-header--nav-inner::before,
.global-header--nav-inner::after {
  transition-duration: 0s;
  transition-delay: 0s;
  transition-timing-function: linear;
  width: 22px;
}

.global-header--nav-inner::before {
  transition-property: top, opacity;
}

.global-header--nav-inner::after {
  transition-property: bottom, transform;
}

.is-toggled .global-header--nav-logo {
  display: none;
}
.is-toggled .global-header--nav-close {
  display: block;
}

.is-toggled .global-header--nav-inner {
  transform: rotate(765deg);
  transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
}

.is-toggled .global-header--nav-inner::before, .is-toggled .global-header--nav-inner::after {
  transition-delay: 0s;
}

.is-toggled .global-header--nav-inner::before {
  top: 0;
  opacity: 0;
}

.is-toggled .global-header--nav-inner::after {
  bottom: 0;
  transform: rotate(90deg);
}

.is-toggled {
  background-color: black;
  border: 0;
}
.is-toggled .global-header--nav-box {
  width: 40px;
  height: 34px;
  display: flex;
  position: relative;
}
.is-toggled .global-header--nav-inner {
  display: block;
  top: 50%;
  margin-top: -2px;
}
.is-toggled .global-header--nav-inner span {
  visibility: hidden;
  position: absolute;
  display: none;
}
.is-toggled .global-header--nav-inner::before,
.is-toggled .global-header--nav-inner::after {
  content: "";
  display: block;
}
.is-toggled .global-header--nav-inner::before {
  top: -9px;
  left: 0;
}
.is-toggled .global-header--nav-inner::after {
  top: 0;
  right: 0;
}
.is-toggled .global-header--nav-inner,
.is-toggled .global-header--nav-inner::before,
.is-toggled .global-header--nav-inner::after {
  width: 30px;
  height: 2px;
  background-color: white;
  border-radius: 4px;
  position: absolute;
  transition-property: transform;
  transition-duration: 0.15s;
  transition-timing-function: ease;
}

body.nav-open {
  overflow: hidden;
}
body.nav-open:after {
  content: "";
  position: fixed;
  z-index: 99;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  -webkit-animation: fadeIn 0.5s;
          animation: fadeIn 0.5s;
}

@-webkit-keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.mobile-nav ul {
  margin-top: 0;
  list-style-type: none;
  margin-left: 0;
  padding-left: 0;
}

@media (min-width: 50em) {
  .mobile-header__nav,
.mobile-menu .heading-3 {
    margin-left: 2rem;
  }
}

.mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  display: flex;
  flex-direction: column;
  padding: var(--spacing-s);
  padding-top: 1rem;
  width: 100%;
  height: 100%;
  z-index: 100;
  transform: translate3d(100%, 0, 0);
  transition: transform 0.3s ease;
  background-color: var(--color-primary);
  overflow-y: auto;
  border: 0;
}
@media (min-width: 50em) {
  .mobile-menu {
    padding: var(--spacing);
    padding-top: var(--spacing-l);
  }
}
.mobile-menu .heading {
  padding-top: 1rem;
  color: var(--color-text-base);
}
@media (min-width: 50em) {
  .mobile-menu .heading {
    border-top: 1px solid var(--color-text-base);
  }
}
.mobile-menu--foot {
  display: flex;
  margin-top: auto;
  justify-content: space-between;
  align-items: flex-end;
}
.mobile-menu--foot p {
  margin-bottom: 0;
}
.mobile-menu--foot__social {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
}
@media (min-width: 50em) {
  .mobile-menu--foot__social {
    margin-bottom: var(--spacing-s);
  }
}
.mobile-menu--foot__social a {
  padding: 0 0.5rem;
}
.mobile-menu--foot__social a:first-of-type {
  padding-left: 0;
}
.mobile-menu--foot__social a:last-of-type {
  padding-right: 0;
}
.mobile-menu--foot__logo {
  width: 150px;
}
@media (max-width: 49.99em) {
  .mobile-menu--foot__logo {
    margin-bottom: 4px;
  }
}
@media (min-width: 50em) {
  .mobile-menu {
    width: 550px;
  }
}
.mobile-menu p {
  margin-top: 0;
  margin-bottom: 0;
}
.mobile-menu .heading {
  margin-bottom: 0.5rem;
}
.mobile-menu a {
  color: var(--color-text-base);
  text-decoration: none;
}
.mobile-menu a:hover {
  color: white;
  text-decoration: none;
}
.mobile-menu .btn {
  color: white;
  margin-top: 1rem;
}
.mobile-menu .btn:hover {
  color: white;
  text-decoration: none;
}
.mobile-menu ul {
  padding-left: 0;
  margin-bottom: 0.8rem;
}
@media (min-width: 50em) {
  .mobile-menu ul {
    margin-bottom: var(--spacing);
  }
}
.mobile-menu ul li a {
  color: var(--color-text-base);
  font-size: var(--font-size-lead);
}
.mobile-menu ul li .sub-menu {
  margin-bottom: 0.15rem;
  margin-left: 1.2rem;
  padding: 0.5rem 0;
}
.mobile-menu ul li .sub-menu:hover {
  display: block;
  opacity: 1;
}
.mobile-menu ul li .sub-menu li {
  margin-bottom: 0.1rem;
  display: flex;
  align-items: center;
  transition: all 1s ease-in-out;
}
.mobile-menu ul li .sub-menu li a {
  font-size: var(--font-size);
  font-weight: var(--font-weight-normal);
}
@media (max-width: 49.99em) {
  .mobile-menu ul li .sub-menu li a {
    display: block;
  }
}

.fade-first,
.fade-second,
.fade-third {
  opacity: 0;
  transition: opacity 0.75s ease-in-out;
}

.mobile-menu.is-toggled {
  transform: translateZ(0);
}
.mobile-menu.is-toggled .fade-first,
.mobile-menu.is-toggled .fade-second,
.mobile-menu.is-toggled .fade-third {
  transition: opacity 0.75s ease-in-out;
}
.mobile-menu.is-toggled .fade-first {
  opacity: 1;
  transition-delay: 0.25s;
}
.mobile-menu.is-toggled .fade-second {
  opacity: 1;
  transition-delay: 0.5s;
}
.mobile-menu.is-toggled .fade-third {
  opacity: 1;
  transition-delay: 0.75s;
}

.global-footer {
  margin-top: auto;
  background-color: white;
  padding: 1.5rem 1rem;
  display: flex;
  flex-direction: column;
  z-index: 5;
}
@media (min-width: 50em) {
  .global-footer {
    flex-direction: row;
    padding: var(--spacing-s);
  }
}
.global-footer--logo {
  width: 35%;
  display: none;
  margin-bottom: 2rem;
}
@media (min-width: 50em) {
  .global-footer--logo {
    display: flex;
    margin-bottom: 0;
  }
}
.global-footer--logo img {
  width: 175px;
  margin-top: auto;
}
.global-footer--content {
  width: 100%;
  display: flex;
  flex-direction: column;
}
@media (min-width: 50em) {
  .global-footer--content {
    width: 75%;
  }
}
.global-footer--content a {
  color: var(--color-text-base);
  text-decoration: none;
}
.global-footer--content a:hover {
  color: var(--color-text-base);
  text-decoration: underline;
}
.global-footer--content .btn {
  color: white;
  margin-top: 1rem;
}
.global-footer--content .btn:hover {
  color: white;
  text-decoration: none;
}
.global-footer--content__links {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.global-footer--content__links ul {
  list-style-type: none;
  padding-left: 0;
  margin-top: 0;
}
@media (max-width: 49.99em) {
  .global-footer--content__explore, .global-footer--content__info {
    width: 50%;
    margin-bottom: 2rem;
  }
}
.global-footer--content__contact {
  width: 100%;
}
@media (min-width: 50em) {
  .global-footer--content__contact {
    width: 50%;
    padding-right: 130px;
  }
}
.global-footer--content__contact p {
  margin-bottom: 0;
}
.global-footer--content__foot {
  display: flex;
  flex-direction: column;
  margin-top: auto;
  justify-content: space-between;
  padding-top: var(--spacing);
  font-size: 16px;
}
@media (min-width: 50em) {
  .global-footer--content__foot {
    flex-direction: row;
    padding-top: var(--spacing-l);
  }
}
.global-footer--content__copy {
  margin-top: auto;
}
.global-footer--content__copy span {
  margin: 0 1rem;
}
.global-footer--content__website {
  margin-top: auto;
}

/* Slider */
.slick-slider {
  position: relative;
  display: block;
  box-sizing: border-box;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent;
}

.slick-list {
  position: relative;
  display: block;
  overflow: hidden;
  margin: 0;
  padding: 0;
  height: auto !important;
}

.slick-list:focus {
  outline: none;
}

.slick-list.dragging {
  cursor: pointer;
  cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list {
  transform: translate3d(0, 0, 0);
}

.slick-track {
  position: relative;
  top: 0;
  left: 0;
  display: block;
  margin-left: auto;
  margin-right: auto;
  display: flex;
}

.slick-track:before,
.slick-track:after {
  display: table;
  content: "";
}

.slick-track:after {
  clear: both;
}

.slick-loading .slick-track {
  visibility: hidden;
}

.slick-slide {
  display: none;
  float: left;
  position: relative;
  height: 100%;
  overflow: hidden;
}

[dir=rtl] .slick-slide {
  float: right;
}

.slick-slide.slick-loading img {
  display: none;
}

.slick-slide.dragging img {
  pointer-events: none;
}

.slick-initialized .slick-slide {
  display: block;
}

.slick-loading .slick-slide {
  visibility: hidden;
}

.slick-vertical .slick-slide {
  display: block;
  height: auto;
  border: 1px solid transparent;
}

.slick-arrow.slick-hidden {
  display: none;
}

/* Slider */
/* Arrows */
.slick-prev,
.slick-next {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 30px;
  width: 30px;
  border-radius: 30px;
  line-height: 0px;
  font-size: 0px;
  cursor: pointer;
  background-color: white;
  color: transparent;
  top: 50%;
  transform: translate(0, -50%);
  border: none;
  outline: none;
  z-index: 9;
  transition: 0.2s transform ease-in-out;
}
.slick-prev:hover, .slick-prev:focus,
.slick-next:hover,
.slick-next:focus {
  outline: none;
  transition: 0.2s transform ease-in-out;
}
.slick-prev:before,
.slick-next:before {
  color: white;
  opacity: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.slick-prev {
  left: 25px;
}
@media (min-width: 50em) {
  .slick-prev {
    left: 5px;
  }
}
.slick-prev:before {
  margin-left: -4px;
  right: 1rem;
  transition: 0.2s all ease-in-out;
  content: url("../../src/icons/arrow-black-left.svg");
}
[dir=rtl] .slick-prev:before {
  content: url("../../src/icons/arrow-black-left.svg");
}
@media (min-width: 50em) {
  .slick-prev:hover {
    background-color: var(--color-text-base);
  }
  .slick-prev:hover:before {
    content: url("../../src/icons/arrow-swhite-left.svg");
  }
}

.slick-next {
  right: 25px;
}
@media (min-width: 50em) {
  .slick-next {
    right: 5px;
  }
}
.slick-next:before {
  margin-left: 2px;
  transition: 0.2s all ease-in-out;
  content: url("../../src/icons/arrow-black.svg");
}
[dir=rtl] .slick-next:before {
  content: url("../../src/icons/arrow-black.svg");
}
@media (min-width: 50em) {
  .slick-next:hover {
    background-color: var(--color-text-base);
  }
  .slick-next:hover:before {
    content: url("../../src/icons/arrow-swhite.svg");
  }
}

.slick-disabled {
  display: none !important;
}

.slick-dots {
  position: absolute;
  bottom: 15px;
  list-style: none;
  display: block;
  text-align: center;
  padding: 0;
  margin: 0;
  width: 100%;
}
@media (min-width: 50em) {
  .slick-dots {
    bottom: 35px;
  }
}
.slick-dots li {
  position: relative;
  display: inline-block;
  width: 10px;
  height: 10px;
  margin: 0 10px;
  padding: 0;
  cursor: pointer;
}
.slick-dots li button {
  border: 0;
  border-radius: 40px;
  background: white;
  display: block;
  height: 16px;
  width: 16px;
  outline: none;
  line-height: 0px;
  font-size: 0px;
  color: transparent;
  padding: 5px;
  opacity: 0.5;
  cursor: pointer;
}
.slick-dots li button:hover, .slick-dots li button:focus {
  outline: none;
  background: white;
  opacity: 1;
}
.slick-dots li button:hover:before, .slick-dots li button:focus:before {
  opacity: 0.5;
}
.slick-dots li button:before {
  position: absolute;
  top: 0;
  left: 0;
  width: 10px;
  height: 10px;
  text-align: center;
  background: transparent;
  opacity: 0.5;
}
.slick-dots li.slick-active button {
  opacity: 1;
  background: var(--color-secondary);
}
.slick-dots li.slick-active button:before {
  background: white;
  opacity: 1;
  height: 10px;
  width: 12px;
}

.social-links {
  display: flex;
  justify-content: center;
}

.social-links__item {
  margin: 0 1rem;
}

.social-links__link {
  color: white;
}

.u-bold {
  font-weight: bold !important;
}

.u-semibold {
  font-weight: 600 !important;
}

.u-regular {
  font-weight: normal !important;
}

.u-light {
  font-weight: 300 !important;
}

.u-italic {
  font-style: italic !important;
}

.u-caps {
  text-transform: uppercase !important;
}

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

.u-center {
  text-align: center !important;
}

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

.mt-xxl {
  margin-top: var(--spacing-xxl) !important;
}

.mt-xl {
  margin-top: var(--spacing-xl) !important;
}

.mt-l {
  margin-top: var(--spacing-l) !important;
}

.mt {
  margin-top: var(--spacing) !important;
}

.mt-s {
  margin-top: var(--spacing-s) !important;
}

.mt-a {
  margin-top: auto;
}

.mb-xxl {
  margin-bottom: var(--spacing-xxl) !important;
}

.mb-xl {
  margin-bottom: var(--spacing-xl) !important;
}

.mb-l {
  margin-bottom: var(--spacing-l) !important;
}

.mb {
  margin-bottom: var(--spacing) !important;
}

.mb-s {
  margin-bottom: var(--spacing-s) !important;
}

img.alignright {
  float: right;
  margin: 0 0 1em 1em;
}

img.alignleft {
  float: left;
  margin: 0 1em 1em 0;
}

img.aligncenter {
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.alignright {
  float: right;
}

.alignleft {
  float: left;
}

.aligncenter {
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

@media (max-width: 49.99em) {
  .hidemobile {
    display: none !important;
  }
}

@media (min-width: 50em) {
  .hidedesktop {
    display: none !important;
  }
}

.fadein {
  opacity: 0;
  transition: opacity 0.75s ease-in-out, transform 0.3s ease-in-out;
}

.fadein--visible {
  opacity: 1;
  transition: opacity 0.75s ease-in-out, transform 0.3s ease-in-out;
}

.animate {
  transform: translateY(-100%);
  transition: transform 0.25s ease-out;
}

.animate--visible {
  transform: translateY(0);
  transition: transform 0.25s ease-out;
  transition-delay: 1s;
}

.animate-up {
  transform: translateX(-40px);
  opacity: 0;
  transition: all 0.25s ease-out;
}

.animate-up--visible {
  transform: translateX(0);
  opacity: 1;
  transition: all 0.25s ease-out;
  transition-delay: 0.5s;
}

.arrow {
  transform: translate(-40px, -50%);
  opacity: 0;
  transition: all 0.25s ease-out;
}

.arrow--visible {
  transform: translate(0, -50%);
  opacity: 1;
  transition: all 0.25s ease-out;
  transition-delay: 0.5s;
}

.reveal {
  opacity: 0;
  transition: all 0.25s ease-out;
  transform: translateY(200px);
}

.text-reveal {
  opacity: 1;
  transition: all 0.25s ease-out;
  transform: translateY(0px);
  background-color: rgba(0, 0, 0, 0.1);
}

.hide {
  opacity: 0;
  transition: all 0.25s ease-out;
}

.blur {
  filter: blur(30px);
  transition: all 0.25s ease-out;
}

.keyline {
  border-top: 1px solid black;
}
.keyline .text-block--text {
  margin-top: var(--spacing-xs);
}

@media print {
  * {
    background: #ffffff;
    color: #000000 !important;
  }

  html {
    font: 100%/1.5 Arial, serif;
  }

  /**
   * Hide
   */
  .header,
.footer {
    display: none;
  }

  /**
   * Make full-width
   */
  .unit {
    margin: 0 !important;
    padding: 0 !important;
    width: 100% !important;
  }
}

.wpcf7-acceptance label {
	display: block;
}

.form-fields--full p {
	width: 100%;
	max-width: 100%;
}

.wpcf7-checkbox {
	display: block;
	text-align: left;
}

.wpcf7-list-item {
	margin-left: 0;
}

.wpcf7-not-valid-tip {
	margin-top: 10px;
}

.disabled {
	opacity: 0.6;
	pointer-events: none;
}