@charset "UTF-8";
/* Settings */
/* =========================================================================  */
/* Maths */
/* =========================================================================  */
/**
 * Returns a given list with each value multiplied by the given multiplier,
 * and optionnally adjusts the result of each multiplication with
 * the given margin.
 *
 * @param {List} $values - a list of numbers.
 * @param {Int} $multiplier - the multiplier.
 * @param {Int} $margin - A positive/negative number (optional).
 */
/**
 * Returns the value to be set as spacing for the inner element to be positioned
 * where we want it when contained in a wider, touch-friendly area.
 *
 * E.g. for an icon of 16x16, we want the user to be able to tap it easily, so
 * the outer `a` element is set to a width of 44px. We want the icon to be
 * positioned 20px from the viewport edge. The function will return the right
 * value to be set as X position for the `a`, in that case 6px.
 *
 * @param {String} $el-length - the width/height of the visible element.
 * @param {String} - $el-to-edge-distance — the distance between the element
 *     and the edge of the closest positioned parent.
 * @param {String} - $touch-area-length - the width/height of the
 *     touch area (optional).
 */
/* =========================================================================  */
/* Units */
/* =========================================================================  */
/**
 * Returns a rem-based value from a px-based input.
 *
 * @param {String} $px-value - eg. 16px.
 * @param {String} $base-font-size - eg. 16px (optional).
 *
 * @requires @function `base-font-size`.
 */
/**
 * Returns an em-based value from a px-based input.
 *
 * @param {String} $px-value - eg. 16px.
 * @param {String} $base-font-size - eg. 16px (optional).
 *
 * @requires @function `base-font-size`.
 */
/* =========================================================================  */
/* Typography */
/* =========================================================================  */
/**
 * Returns the font size defined for the given font map key
 * before any breakpoint kicks in.
 *
 * @param {String} $font-map-key - the key for the target font map in $fonts.
 *
 * @requires @variable $fonts.
 *
 * 1. Get the font map for the given key.
 * 2. Get the font size map.
 * 3. Return the font size using the base
 *    font size.
 */
/**
 * Returns the font size defined for the given font map key
 * at the given breakpoint.
 *
 * @param {String} $font-map-key - the key for the target font map in $fonts.
 * @param {String} $breakpoint - a breakpoint in
 *     $layouts-break-point (optional).
 *
 * @requires @variable $fonts.
 *
 * 1. Get the font map for the given key.
 * 2. Get the font size map.
 * 3. Return the font size using provided breakpoint.
 */
/**
 * Returns the line height defined for the given font map key
 * before any breakpoint kicks in.
 *
 * @param {String} $font-map-key - the key for the target font map in $fonts.
 *
 * @requires @variable $fonts.
 *
 * 1. Get the font map for the given key.
 * 2. Get the line-height map.
 * 3. Return the line height using the base
 *    font size.
 */
/**
 * Returns an em-based value from a unitless value.
 *
 * @param {Int} $unitless-number - a letter spacing value
 *     gotten from a design app.
 */
/* =========================================================================  */
/* Layout */
/* =========================================================================  */
/**
 * Returns a property value defined at a breakpoint.
 */
/* =========================================================================  */
/* Resets */
/* =========================================================================  */
/**
 * Resets list styles.
 */
/**
 * Resets button styles for a common cross-browser base.
 */
/**
 * Resets input styles for a common cross-browser base.
 */
/* =========================================================================  */
/* Layout */
/* =========================================================================  */
/**
 * Wraps the bracketed @content into a media query matching
 * the given breakpoint key.
 *
 * @param {String} $from - the min-width breakpoint.
 * @param {String} $to - the max-width breakpoint (optional).
 *
 * @requires @variable $layouts-name.
 * @requires @variable $layouts-break-point.
 */
/**
 * Clears floating children elements.
 */
/* =========================================================================  */
/* Breakpoint loops */
/* =========================================================================  */
/**
 * For a given property, outputs the value for a given list of values matching
 * (binding on index) the $layouts-break-point list.
 *
 * @requires @mixin `media-query`.
 * @requries @variable $layouts-name.
 *
 * @requires mixin `media-query`.
 * @requires @variable $layouts-name.
 */
/* =========================================================================  */
/* Typography */
/* =========================================================================  */
/**
 * Outputs the font-family rule with the fallbak to start with and the webfont
 * once loaded.
 *
 * @param {String} $type - the type of font.
 *
 * @requires @variable $sans-serif-fallback
 * @requires @variable $sans-serif
 * @requires @variable $sans-serif-fallback
 * @requires @variable $sans-serif
 */
/**
 * Outputs all properties and values for each breakpoint in a given font map.
 *
 * @param {String} $font-map-key - the key to a font map in $fonts.
 *
 * @requires @mixin `responsive`.
 * @requires @mixin `font-family`.
 * @requires @variable $fonts.
 */
/**
 * Outputs font size for each breakpoint in a given font map.
 *
 * @param {String} $font-map-key - the key to a font map in $fonts.
 *
 * @requires @mixin `responsive`.
 * @requires @variable $fonts.
 *
 * 1. Get the font map.
 * 2. Get the font size map.
 * 3. Run the responsive mixin with `font-size`
 *    as property and ``$fs-responsive-map` as map.
 */
/**
 * Outputs a font property value from a given property and breakpoint
 * e.g. : margin: font-property-value('body-sans', 'line-height', 'main');
 *
 * @param {String} $font-map-key - the key to a font map in $fonts.
 * @param {String} $property - the property needed (font-size or line-height).
 * @param {String} $breakpoint - a breakpoint in $layouts-break-point.
 *
 * @requires @variable $fonts.
 *
 * 1. Get the font map.
 * 2. Get the property map.
 * 3. Return the value at a specific breakpoint
 */
/* =========================================================================  */
/* Visibility */
/* =========================================================================  */
/**
 * Hides content visually.
 */
/**
 * Reverts visibility of visually hidden element.
 */
/* =========================================================================  */
/* Interactivity */
/* =========================================================================  */
/**
 * @mixin `interaction`
 *
 * Outputs bracketed @content as focus state, as well as
 * breakpoint-based hover state.
 *
 * @param {String} $altering-element - a CSS selector for the element
 *     that will inherit the rules, space-prefixed if not pseudo-element.
 * @param {Bool} $remove-outline - whether to remove the outline or not.
 * @param {String} $from-breakpoint - a breakpoint in $layouts-break-point.
 *
 * @requires mixin `media-query`.
 * @requires @variable $layouts-break-point.
 */
/**
 * Expands the target area of the inner link to the boundaries
 * of the current CSS selector.
 *
 * @param {String} $link-selector - a CSS selector
 *     for the inner link (optional).
 * @param {String} $pseudo-element - `before` or `after` (optional).
 * @param {Int} $z-ghost-link - the z-index to apply
 *     to the pseudo element (optional).
 */
/* =========================================================================  */
/* Decoration */
/* =========================================================================  */
/**
 * Prevents jump when underline is applied on interaction by presetting the
 * bottom padding.
 *
 * @requires global @variable $underline-bottom-padding.
 */
/**
 * Underlines text using the background-image technique.
 *
 * @param {Bool} $keep-padding - Set to true to keep previously defined bottom padding
 * @param {String} $y-pos - the position of the underline on the Y axis only if $keep-padding is true (optional).
 * @param {String} $display - the type of CSS display (optional).
 * @param {String} $color - the color of the underline (optional).
 * @param {String} $padding-bottom - the padding added to the bottom of the text string (optional).
 * @requires global @variable $underline-bottom-padding.
 * @requires global @variable $underline-thickness.
 */
/**
 * Sets the color of the underline.
 *
 * @param {String} $color - the color of the underline.
 */
/**
 * Sets the position of the underline on the Y axis.
 *
 * @param {String} $y-pos - the position of the underline on the Y axis.
 */
/**
 * @mixin `prefix`
 *
 * Generates some prefix selector, often associated with a class selector.
 *
 * @param `$prefix` {string} or {list} - prefix classname (without the `.`).
 * @param `$associated-class` {string} - (optional, default: '').
 *
 * @example: `@include prefix( ('u-bt', 'u-bg-'), '.classname') { ... }`
 */
[data-whatintent=mouse] .s-click-focus {
  outline: none;
}

/*! normalize.css v4.2.0 | MIT License | github.com/necolas/normalize.css */
/**
 * 1. Change the default font family in all browsers (opinionated).
 * 2. Correct the line height in all browsers.
 * 3. Prevent adjustments of font size after orientation changes in IE and iOS.
 */
/* Document
   ========================================================================== */
html {
  font-family: sans-serif;
  /* 1 */
  line-height: 1.15;
  /* 2 */
  -ms-text-size-adjust: 100%;
  /* 3 */
  -webkit-text-size-adjust: 100%;
  /* 3 */
}

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

/**
 * Add the correct display in IE 9-.
 */
article,
aside,
footer,
header,
nav,
section {
  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
   ========================================================================== */
/**
 * Add the correct display in IE 9-.
 * 1. Add the correct display in IE.
 */
figcaption,
figure,
main {
  /* 1 */
  display: block;
}

/**
 * Add the correct margin in IE 8.
 */
figure {
  margin: 0;
}

/**
 * 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
   ========================================================================== */
/**
 * 1. Remove the gray background on active links in IE 10.
 * 2. Remove gaps in links underline in iOS 8+ and Safari 8+.
 */
a {
  background-color: transparent;
  /* 1 */
  -webkit-text-decoration-skip: objects;
  /* 2 */
}

/**
 * Remove the outline on focused links when they are also active or hovered
 * in all browsers (opinionated).
 */
a:active,
a:hover {
  outline-width: 0;
}

/**
 * 1. Remove the bottom border in Firefox 39-.
 * 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari.
 */
abbr[title] {
  border-bottom: none;
  /* 1 */
  text-decoration: none;
  /* 2 */
  cursor: inherit;
}

/**
 * Prevent the duplicate application of `bolder` by the next rule in Safari 6.
 */
b,
strong {
  font-weight: inherit;
}

/**
 * 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 */
}

/**
 * Avoid italics for cite and address
 */
cite, address {
  font-style: normal;
}

/**
 * Add the correct font style in Android 4.3-.
 */
dfn {
  font-style: italic;
}

/**
 * Add the correct background and color in IE 9-.
 */
mark {
  background-color: #ff0;
  color: #000;
}

/**
 * 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
   ========================================================================== */
/**
 * Add the correct display in IE 9-.
 */
audio,
video {
  display: inline-block;
}

/**
 * Add the correct display in iOS 4-7.
 */
audio:not([controls]) {
  display: none;
  height: 0;
}

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

/**
 * Hide the overflow in IE.
 */
svg:not(:root) {
  overflow: hidden;
}

/* Forms
   ========================================================================== */
/**
 * 1. Change the font styles in all browsers (opinionated).
 * 2. Remove the margin in Firefox and Safari.
 */
button,
input,
optgroup,
select,
textarea {
  font-family: sans-serif;
  /* 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;
}

/**
 * 1. Prevent a WebKit bug where (2) destroys native `audio` and `video`
 *    controls in Android 4.
 * 2. Correct the inability to style clickable types in iOS and Safari.
 */
button,
html [type=button],
[type=reset],
[type=submit] {
  -webkit-appearance: button;
  /* 2 */
}

/**
 * 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;
}

/**
 * Change the border, margin, and padding in all browsers (opinionated).
 */
fieldset {
  border: 1px solid #c0c0c0;
  margin: 0 2px;
  padding: 0.35em 0.625em 0.75em;
}

/**
 * 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 */
}

/**
 * 1. Add the correct display in IE 9-.
 * 2. Add the correct vertical alignment in Chrome, Firefox, and Opera.
 */
progress {
  display: inline-block;
  /* 1 */
  vertical-align: baseline;
  /* 2 */
}

/**
 * Remove the default vertical scrollbar in IE.
 */
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 */
  outline-offset: -2px;
  /* 2 */
}

/**
 * Remove the inner padding and cancel buttons in Chrome and Safari on OS X.
 */
[type=search]::-webkit-search-cancel-button,
[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 IE 9-.
 * 1. Add the correct display in Edge, IE, and Firefox.
 */
details,
menu {
  display: block;
}

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

/* Scripting
   ========================================================================== */
/**
 * Add the correct display in IE 9-.
 */
canvas {
  display: inline-block;
}

/**
 * Add the correct display in IE.
 */
template {
  display: none;
}

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

*, *:before, *:after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  font-size: 100%;
}

h1, h2, h3, h4, h5, h6, ul, li, p {
  margin: 0;
  padding: 0;
}

ul, ol {
  list-style-type: none;
}

img {
  border: 0;
  display: block;
  -ms-interpolation-mode: bicubic;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}

embed,
iframe,
img,
object,
video {
  max-width: 100%;
}

/*
img {
  height: auto;
  width: auto;
}
*/
/* =========================================================================  */
/* Variables layout */
/* =========================================================================  */
/* =========================================================================  */
/* Layout settings */
/* =========================================================================  */
:root {
  --app-height: 100%;
  --margin-menu: 7.5rem;
  --menu-height: calc(var(--app-height) - (var(--margin-menu)*2) );
  --margin-s: 0.9rem;
  --margin-m: 1.8rem;
  --margin-l: 3.6rem;
  --banner-height: 4.0rem;
  --header-margin-top: calc(var(--margin-m)/1.5);
  --header-margin: var(--margin-m);
  --offset-top: calc(var(--header-margin-top) + var(--banner-height) );
}
@media only screen and (min-width: 1024px) {
  :root {
    --margin-s: 1.0rem;
    --margin-m: 2.0rem;
    --margin-l: 4.0rem;
    --banner-height: 4.6rem;
  }
}
@media only screen and (min-width: 1280px) {
  :root {
    --margin-s: 1.25rem;
    --margin-m: 2.5rem;
    --margin-l: 5.0rem;
    --banner-height: 5.0rem;
  }
}

/* =========================================================================  */
/* Layout mix-ins */
/* =========================================================================  */
@font-face {
  font-family: "UniversNextPro-Regular";
  src: url("../fonts/UniversNextPro-Regular.woff2") format("woff2"), url("../fonts/UniversNextPro-Regular.woff") format("woff");
  font-weight: normal;
  font-stretch: normal;
  font-style: normal;
}
@font-face {
  font-family: "UniversNextPro-Italic";
  src: url("../fonts/UniversNextPro-Italic.woff2") format("woff2"), url("../fonts/UniversNextPro-Italic.woff") format("woff");
  font-weight: normal;
  font-stretch: normal;
  font-style: italic;
}
/* =========================================================================  */
/* Font Stacks */
/* =========================================================================  */
/**
 * Fonts in use during FOUT.
 */
/**
 * Fonts in use after FOUT.
 */
/**
 * Main font detection.
 */
/* =========================================================================  */
/* Type variables */
/* =========================================================================  */
/* =========================================================================  */
/* Font maps */
/* =========================================================================  */
/* =========================================================================  */
/* Font settings */
/* =========================================================================  */
:root {
  --color-black: #000000;
  --color-white: #ffffff;
  --color-header: #ffffff;
  --color-background: rgb(245, 245, 245);
  --color-background--gray: rgb(200, 200, 200);
  --color-text: #000000;
  --color-text--gray: rgb(120,120,120);
  --color-text--interaction: var(--color-primary-background);
  --color-border: rgb(210,210,210);
  --color-gradient-from: rgba(245,245,245,1);
  --color-gradient-to: rgba(245,245,245,0);
}

.has-coloured-background {
  --color-background: var(--color-primary-background);
  --color-text: var(--color-primary-text);
  --color-text--interaction: var(--color-white);
  --color-text--gray: var(--color-primary-text);
  background-color: var(--color-background);
  color: var(--color-text);
}

.fade-out {
  -webkit-animation: fade-out 0.44s cubic-bezier(0.12, 0.67, 0.53, 1) forwards !important;
          animation: fade-out 0.44s cubic-bezier(0.12, 0.67, 0.53, 1) forwards !important;
}

.fade-in {
  -webkit-animation: fade-in 0.44s cubic-bezier(0.12, 0.67, 0.53, 1) forwards;
          animation: fade-in 0.44s cubic-bezier(0.12, 0.67, 0.53, 1) forwards;
}

.fade-in-out {
  -webkit-animation: fade-in-out 0.44s cubic-bezier(0.12, 0.67, 0.53, 1) infinite;
          animation: fade-in-out 0.44s cubic-bezier(0.12, 0.67, 0.53, 1) infinite;
}

@-webkit-keyframes fade-out {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}

@keyframes fade-out {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
@-webkit-keyframes fade-in {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes fade-in {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@-webkit-keyframes fade-in-out {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@keyframes fade-in-out {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@-webkit-keyframes repaint {
  from {
    width: 99.9%;
  }
  to {
    width: 100%;
  }
}
@keyframes repaint {
  from {
    width: 99.9%;
  }
  to {
    width: 100%;
  }
}
.repaint {
  -webkit-animation: repaint 100ms;
  animation: repaint 100ms;
}

/* Base */
html {
  box-sizing: border-box;
}

html, body {
  width: 100%;
}

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

body {
  display: flex;
  min-height: 100vh;
  flex-direction: column;
}

body {
  background-color: var(--color-background);
  color: var(--color-text);
}

body.no-scroll {
  overflow: hidden;
}

html.no-js .o-item__loader,
html.no-js .o-image__loader {
  display: none !important;
}
html.no-js .o-image,
html.no-js .o-image img {
  opacity: 1 !important;
}
html.no-js img.lazyload {
  display: none !important;
}

::-moz-selection {
  color: var(--color-primary-text);
  background-color: var(--color-primary-background);
}

::selection {
  color: var(--color-primary-text);
  background-color: var(--color-primary-background);
}

hr.divider {
  border: 0;
  height: 1px;
  background-color: var(--color-border);
  margin-bottom: var(--margin-m);
  margin-left: var(--margin-s);
  margin-right: var(--margin-s);
}

/* =========================================================================  */
/* Base typography */
/* =========================================================================  */
html {
  color: var(--color-black);
  font-family: "UniversNextPro-Regular", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 62.5%;
}

body {
  font-size: 1.4rem;
  line-height: 1.275em;
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -ms-font-feature-settings: "kern" 1, "liga" 1;
  -o-font-feature-settings: "kern" 1, "liga" 1;
  font-feature-settings: "kern" 1, "liga" 1;
  text-rendering: optimizeLegibility;
}
@media only screen and (min-width: 1024px) {
  body {
    font-size: 1.5rem;
  }
}
@media only screen and (min-width: 1280px) {
  body {
    font-size: 1.6rem;
  }
}
@media only screen and (min-width: 1680px) {
  body {
    font-size: 1.8rem;
  }
}
a {
  color: inherit;
  text-decoration: none;
}

p {
  margin-bottom: 1.275em;
  max-width: 60em;
}
p:last-child {
  margin-bottom: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: normal;
  margin: 0;
  font-size: inherit;
}

sup {
  top: -0.75em;
  font-size: 50%;
}

b, strong {
  font-weight: normal;
  display: inline-block;
}

em, i {
  font-family: "UniversNextPro-Italic", "Helvetica Neue", Helvetica, Arial, sans-serif;
}

/* =========================================================================  */
/* Typesetting */
/* =========================================================================  */
.t-small, .o-title--small {
  font-size: 1.2rem;
  line-height: 1.33em;
  letter-spacing: 0rem;
}
@media only screen and (min-width: 1280px) {
  .t-small, .o-title--small {
    font-size: 1.3rem;
  }
}
@media only screen and (min-width: 1680px) {
  .t-small, .o-title--small {
    font-size: 1.4rem;
  }
}
.t-text, .o-rich-text {
  font-size: 1.6rem;
  line-height: 1.275em;
  letter-spacing: -0.0025em;
}
@media only screen and (min-width: 480px) {
  .t-text, .o-rich-text {
    font-size: 1.7rem;
  }
}
@media only screen and (min-width: 1024px) {
  .t-text, .o-rich-text {
    font-size: 1.9rem;
  }
}
@media only screen and (min-width: 1280px) {
  .t-text, .o-rich-text {
    font-size: 2rem;
  }
}
@media only screen and (min-width: 1680px) {
  .t-text, .o-rich-text {
    font-size: 2.1rem;
  }
}
.t-nav {
  font-size: 2.1rem;
  letter-spacing: -0.005em;
  line-height: 1.2em;
}
@media only screen and (min-width: 1024px) {
  .t-nav {
    font-size: 2.4rem;
  }
}
@media only screen and (min-width: 1280px) {
  .t-nav {
    font-size: 2.5rem;
  }
}
@media only screen and (min-width: 1680px) {
  .t-nav {
    font-size: 2.7rem;
  }
}
.t-medium, .o-title--medium {
  font-size: 2.1rem;
  letter-spacing: -0.005em;
  line-height: 1.2em;
}
@media only screen and (min-width: 1024px) {
  .t-medium, .o-title--medium {
    font-size: 2.4rem;
  }
}
@media only screen and (min-width: 1280px) {
  .t-medium, .o-title--medium {
    font-size: 2.5rem;
  }
}
@media only screen and (min-width: 1680px) {
  .t-medium, .o-title--medium {
    font-size: 2.7rem;
  }
}
.t-large, .o-title--large {
  font-size: 2.4rem;
  letter-spacing: -0.0125em;
  line-height: 1.125em;
}
@media only screen and (min-width: 480px) {
  .t-large, .o-title--large {
    font-size: 2.7rem;
  }
}
@media only screen and (min-width: 1024px) {
  .t-large, .o-title--large {
    font-size: 3.4rem;
  }
}
@media only screen and (min-width: 1280px) {
  .t-large, .o-title--large {
    font-size: 3.6rem;
  }
}
@media only screen and (min-width: 1680px) {
  .t-large, .o-title--large {
    font-size: 4rem;
  }
}
.t-xlarge {
  font-size: 2.7rem;
  letter-spacing: -0.025em;
  line-height: 1.05em;
}
@media only screen and (min-width: 480px) {
  .t-xlarge {
    font-size: 3.2rem;
  }
}
@media only screen and (min-width: 1024px) {
  .t-xlarge {
    font-size: 4.6rem;
  }
}
@media only screen and (min-width: 1280px) {
  .t-xlarge {
    font-size: 4.8rem;
  }
}
@media only screen and (min-width: 1680px) {
  .t-xlarge {
    font-size: 5.4rem;
  }
}
.t-num {
  letter-spacing: -0.05em;
  -ms-font-feature-settings: "kern" 1, "liga" 1, "tnum" 1;
  -o-font-feature-settings: "kern" 1, "liga" 1, "tnum" 1;
  font-feature-settings: "kern" 1, "liga" 1, "tnum" 1;
}

.t-note,
.t-neutral,
.t-gray,
.t-dimmed,
.t-faded {
  color: var(--color-text--gray);
  -webkit-transition-property: color;
  -webkit-transition-duration: 0.28s;
  -webkit-transition-timing-function: cubic-bezier(0.12, 0.67, 0.53, 1);
  -webkit-transition-delay: 0s;
  -moz-transition-property: color;
  -moz-transition-duration: 0.28s;
  -moz-transition-timing-function: cubic-bezier(0.12, 0.67, 0.53, 1);
  -moz-transition-delay: 0s;
  -o-transition-property: color;
  -o-transition-duration: 0.28s;
  -o-transition-timing-function: cubic-bezier(0.12, 0.67, 0.53, 1);
  -o-transition-delay: 0s;
  -ms-transition-property: color;
  -ms-transition-duration: 0.28s;
  -ms-transition-timing-function: cubic-bezier(0.12, 0.67, 0.53, 1);
  -ms-transition-delay: 0s;
  transition-property: color;
  transition-duration: 0.28s;
  transition-timing-function: cubic-bezier(0.12, 0.67, 0.53, 1);
  transition-delay: 0s;
}

a:hover .t-note,
a:hover .t-neutral,
a:hover .t-gray,
a:hover .t-dimmed,
a:hover .t-faded {
  color: var(--color-text);
}

/* Type overflow */
/* =========================================================================  */
.t-dont-wrap {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 100%;
}

/* =========================================================================  */
/* Type treatments */
/* =========================================================================  */
.t-italic {
  font-family: "UniversNextPro-Italic", "Helvetica Neue", Helvetica, Arial, sans-serif;
}

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

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

.t-uppercase {
  text-transform: uppercase !important;
  -ms-font-feature-settings: "case" 1, "kern" 1, "liga" 1, "ss03";
  -o-font-feature-settings: "case" 1, "kern" 1, "liga" 1, "ss03";
  font-feature-settings: "case" 1, "kern" 1, "liga" 1, "ss03";
  font-variant-caps: titling-caps;
}

.t-default {
  text-transform: none !important;
}

.t-comma-seperated {
  display: inline;
}

.t-comma-seperated:after {
  content: ", ";
}

.t-comma-seperated:last-child:after {
  content: "";
}

img, video, object, embed, iframe {
  max-width: 100%;
  width: 100%;
  vertical-align: top;
  border: none;
}

img.lazyload,
img.lazyloading,
iframe.lazyload,
iframe.lazyloading,
video.lazyload,
video.lazyloading {
  opacity: 0;
}

img.lazyloaded,
video.lazyloaded,
iframe.lazyloaded {
  opacity: 1;
  -webkit-transition-property: opacity;
  -webkit-transition-duration: 0.44s;
  -webkit-transition-timing-function: cubic-bezier(0.12, 0.67, 0.53, 1);
  -webkit-transition-delay: 0s;
  -moz-transition-property: opacity;
  -moz-transition-duration: 0.44s;
  -moz-transition-timing-function: cubic-bezier(0.12, 0.67, 0.53, 1);
  -moz-transition-delay: 0s;
  -o-transition-property: opacity;
  -o-transition-duration: 0.44s;
  -o-transition-timing-function: cubic-bezier(0.12, 0.67, 0.53, 1);
  -o-transition-delay: 0s;
  -ms-transition-property: opacity;
  -ms-transition-duration: 0.44s;
  -ms-transition-timing-function: cubic-bezier(0.12, 0.67, 0.53, 1);
  -ms-transition-delay: 0s;
  transition-property: opacity;
  transition-duration: 0.44s;
  transition-timing-function: cubic-bezier(0.12, 0.67, 0.53, 1);
  transition-delay: 0s;
}

[style*="--aspect-ratio"] > :first-child {
  width: 100%;
}

[style*="--aspect-ratio"] > img,
[style*="--aspect-ratio"] > video {
  height: auto;
}

@supports (--custom: property) {
  [style*="--aspect-ratio"] {
    position: relative;
  }

  [style*="--aspect-ratio"]::before {
    content: "";
    display: block;
    padding-bottom: calc(100% / (var(--aspect-ratio)));
  }

  [style*="--aspect-ratio"] > img,
[style*="--aspect-ratio"] > video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
    font-family: "object-fit: cover";
  }
}
figure.video {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
}

figure.video iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

iframe {
  border: none;
}

form {
  position: relative;
  display: block;
  width: 100%;
}
form:before, form:after {
  content: " ";
  display: table;
}
form:after {
  clear: both;
}

input,
textarea,
button,
select {
  font-family: inherit;
  padding: 0;
  margin: 0;
  outline: none;
  cursor: pointer;
  border: 0;
  border-radius: 0;
  background-color: transparent;
  -webkit-appearance: none;
  -moz-appearance: none;
  line-height: normal !important;
  vertical-align: middle;
  height: auto;
  display: inline-block;
  color: inherit;
}

input[type=text],
input[type=search],
input[type=email],
input[type=tel],
input[type=url],
input[type=password],
input[type=submit],
select,
textarea {
  border-radius: 0;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}

fieldset {
  padding: 0;
  margin: 0;
  border: none;
}

button,
a[type=button] {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background-color: transparent;
  border: none;
  display: inline-block;
  vertical-align: middle;
  text-align: center;
  text-decoration: none;
  color: inherit;
  font: inherit;
}

input[type=submit]:disabled {
  color: var(--color-text--gray);
}

::-webkit-input-placeholder {
  color: var(--color-text--gray);
}

::-moz-placeholder {
  color: var(--color-text--gray);
}

:-ms-input-placeholder {
  color: var(--color-text--gray);
}

input:-moz-placeholder {
  color: var(--color-text--gray);
}

/*! Flickity v2.2.0
https://flickity.metafizzy.co
---------------------------------------------- */
.flickity-enabled .c-slide-home {
  visibility: visible;
}

.flickity-enabled {
  position: relative;
}

.flickity-enabled:focus {
  outline: none;
}

.flickity-viewport {
  overflow: hidden;
  position: relative;
  width: 100%;
  height: 100%;
}

.flickity-slider {
  position: absolute;
  width: 100%;
  height: 100%;
}

/* draggable */
.flickity-enabled.is-draggable {
  -webkit-tap-highlight-color: transparent;
  tap-highlight-color: transparent;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.flickity-enabled.is-draggable .flickity-viewport {
  cursor: move;
  cursor: -webkit-grab;
  cursor: grab;
}

.flickity-enabled.is-draggable .flickity-viewport.is-pointer-down {
  cursor: -webkit-grabbing;
  cursor: grabbing;
}

/* ---- flickity-button ---- */
.flickity-button {
  position: absolute;
  background: rgba(255, 255, 255, 0.75);
  border: none;
  color: #333;
}

.flickity-button:hover {
  background: white;
  cursor: pointer;
}

.flickity-button:focus {
  outline: none;
  box-shadow: 0 0 0 5px #19F;
}

.flickity-button:active {
  opacity: 0.6;
}

.flickity-button:disabled {
  opacity: 0.3;
  cursor: auto;
  /* prevent disabled button from capturing pointer up event. #716 */
  pointer-events: none;
}

.flickity-button-icon {
  fill: currentColor;
}

/* ---- previous/next buttons ---- */
.flickity-prev-next-button {
  top: 50%;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  /* vertically center */
  transform: translateY(-50%);
}

.flickity-prev-next-button.previous {
  left: 10px;
}

.flickity-prev-next-button.next {
  right: 10px;
}

/* right to left */
.flickity-rtl .flickity-prev-next-button.previous {
  left: auto;
  right: 10px;
}

.flickity-rtl .flickity-prev-next-button.next {
  right: auto;
  left: 10px;
}

.flickity-prev-next-button .flickity-button-icon {
  position: absolute;
  left: 20%;
  top: 20%;
  width: 60%;
  height: 60%;
}

/* ---- page dots ---- */
.flickity-page-dots {
  position: absolute;
  width: 100%;
  bottom: -25px;
  padding: 0;
  margin: 0;
  list-style: none;
  text-align: center;
  line-height: 1;
}

.flickity-rtl .flickity-page-dots {
  direction: rtl;
}

.flickity-page-dots .dot {
  display: inline-block;
  width: 10px;
  height: 10px;
  margin: 0 8px;
  background: #333;
  border-radius: 50%;
  opacity: 0.25;
  cursor: pointer;
}

.flickity-page-dots .dot.is-selected {
  opacity: 1;
}

/* flickity-fade */
.flickity-enabled.is-fade .flickity-slider > * {
  pointer-events: none;
  z-index: 0;
}

.flickity-enabled.is-fade .flickity-slider > .is-selected {
  pointer-events: auto;
  z-index: 1;
}

/* Utilities */
.u-has-glyph:before, .o-link--toggle:before,
.u-has-glyph-before:before {
  -webkit-transition-property: transform;
  -webkit-transition-duration: 0.28s;
  -webkit-transition-timing-function: cubic-bezier(0.12, 0.67, 0.53, 1);
  -webkit-transition-delay: 0s;
  -moz-transition-property: transform;
  -moz-transition-duration: 0.28s;
  -moz-transition-timing-function: cubic-bezier(0.12, 0.67, 0.53, 1);
  -moz-transition-delay: 0s;
  -o-transition-property: transform;
  -o-transition-duration: 0.28s;
  -o-transition-timing-function: cubic-bezier(0.12, 0.67, 0.53, 1);
  -o-transition-delay: 0s;
  -ms-transition-property: transform;
  -ms-transition-duration: 0.28s;
  -ms-transition-timing-function: cubic-bezier(0.12, 0.67, 0.53, 1);
  -ms-transition-delay: 0s;
  transition-property: transform;
  transition-duration: 0.28s;
  transition-timing-function: cubic-bezier(0.12, 0.67, 0.53, 1);
  transition-delay: 0s;
  font-size: 100%;
  display: inline-block;
  width: 0.7em;
  margin-right: 0.3em;
  margin-top: 0px;
  margin-bottom: auto;
}
.u-has-glyph--left:before,
.u-has-glyph-before--left:before {
  content: "\2190";
}
.u-has-glyph--right:before,
.u-has-glyph-before--right:before {
  content: "\2192";
}
.u-has-glyph--up:before, .o-link--toggle.is-active:before,
.u-has-glyph-before--up:before {
  content: "\2191";
}
.u-has-glyph--down:before, .o-link--toggle:before,
.u-has-glyph-before--down:before {
  content: "\2193";
}
.u-has-glyph--upper-left:before,
.u-has-glyph-before--upper-left:before {
  content: "\2196";
}
.u-has-glyph--upper-right:before,
.u-has-glyph-before--upper-right:before {
  content: "\2197";
}
.u-has-glyph--lower-right:before,
.u-has-glyph-before--lower-right:before {
  content: "\2198";
}
.u-has-glyph--lower-left:before,
.u-has-glyph-before--lower-left:before {
  content: "\2199";
}
.u-has-glyph--plus:before, .u-has-glyph--more:before,
.u-has-glyph-before--plus:before,
.u-has-glyph-before--more:before {
  content: "+";
  transform: rotate(0deg);
}
.u-has-glyph--plus:hover:before, .u-has-glyph--more:hover:before,
.u-has-glyph-before--plus:hover:before,
.u-has-glyph-before--more:hover:before {
  transform: rotate(90deg);
}
.u-has-glyph--minus:before, .u-has-glyph--less:before,
.u-has-glyph-before--minus:before,
.u-has-glyph-before--less:before {
  content: "\2212";
}

.u-has-glyph-after:after {
  -webkit-transition-property: transform;
  -webkit-transition-duration: 0.28s;
  -webkit-transition-timing-function: cubic-bezier(0.12, 0.67, 0.53, 1);
  -webkit-transition-delay: 0s;
  -moz-transition-property: transform;
  -moz-transition-duration: 0.28s;
  -moz-transition-timing-function: cubic-bezier(0.12, 0.67, 0.53, 1);
  -moz-transition-delay: 0s;
  -o-transition-property: transform;
  -o-transition-duration: 0.28s;
  -o-transition-timing-function: cubic-bezier(0.12, 0.67, 0.53, 1);
  -o-transition-delay: 0s;
  -ms-transition-property: transform;
  -ms-transition-duration: 0.28s;
  -ms-transition-timing-function: cubic-bezier(0.12, 0.67, 0.53, 1);
  -ms-transition-delay: 0s;
  transition-property: transform;
  transition-duration: 0.28s;
  transition-timing-function: cubic-bezier(0.12, 0.67, 0.53, 1);
  transition-delay: 0s;
  font-size: 95%;
  display: inline-block;
  width: 0.7em;
  margin-left: 0.3em;
  margin-top: auto;
  margin-bottom: auto;
}
.u-has-glyph-after--left:after {
  content: "\2190";
}
.u-has-glyph-after--right:after {
  content: "\2192";
}
.u-has-glyph-after--up:after {
  content: "\2191";
}
.u-has-glyph-after--down:after {
  content: "\2193";
}
.u-has-glyph-after--upper-left:after {
  content: "\2196";
}
.u-has-glyph-after--upper-right:after {
  content: "\2197";
}
.u-has-glyph-after--lower-right:after {
  content: "\2198";
}
.u-has-glyph-after--lower-left:after {
  content: "\2199";
}
.u-has-glyph-after--plus:after, .u-has-glyph-after--more:after {
  content: "+";
}
.u-has-glyph-after--minus:after, .u-has-glyph-after--less:after {
  content: "\2212";
}

.u-gradient:before {
  content: "";
  position: absolute;
  display: block;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 1;
  height: 10em;
  opacity: 1;
  pointer-events: none;
  transition: opacity 0.44s cubic-bezier(0.12, 0.67, 0.53, 1);
}

.u-gradient--top:before {
  top: 0;
}

.u-gradient--bottom:before {
  bottom: 0;
}

.u-gradient--totop:before {
  background: linear-gradient(to top, var(--color-gradient-from) 15%, var(--color-gradient-to));
}

.u-gradient--tobottom:before {
  background: linear-gradient(to bottom, var(--color-gradient-from) 15%, var(--color-gradient-to));
}

.u-gradient--toggle:before {
  opacity: 0;
}

.u-gradient--toggle.has-gradient:before {
  opacity: 1;
}

.u-gradient--toggle.has-gradient--absolute:before {
  position: absolute;
}

.u-clearfix:before, .u-clearfix:after {
  content: " ";
  display: table;
}
.u-clearfix:after {
  clear: both;
}

.u-display-block {
  display: block;
}

.u-vertical-center {
  display: table;
  height: 100%;
  width: 100%;
}

.u-vertical-center__content {
  display: table-cell;
  vertical-align: middle;
}

.u-float--left {
  float: left !important;
}

.u-float--mid-left {
  float: left !important;
  margin-left: 6.66vw !important;
}

.u-float--center {
  float: none !important;
  margin-left: auto !important;
  margin-right: auto !important;
}

.u-float--mid-right {
  float: right !important;
  margin-right: 6.66vw !important;
}

.u-float--right {
  float: right !important;
}

.u-fixed--top-left {
  z-index: 900;
}

.u-fixed--top-left {
  position: fixed;
  top: 0;
  left: 0;
}

.u-fixed--top-right {
  position: fixed;
  top: 0;
  right: 0;
}

.u-fixed--bottom-left {
  position: fixed;
  bottom: 0;
  left: 0;
}

.u-fixed--bottom-right {
  position: fixed;
  bottom: 0;
  right: 0;
}

.u-no-padding-top {
  padding-top: 0 !important;
}

.u-no-padding-bottom {
  padding-bottom: 0 !important;
}

.u-no-padding-left {
  padding-left: 0 !important;
}

.u-no-padding-right {
  padding-right: 0 !important;
}

.u-flex-container {
  display: flex;
  flex-direction: column;
}

.u-flex-align-bottom {
  margin-top: auto !important;
}

.u-hidden {
  display: none !important;
}

.u-visible {
  display: block !important;
}

.u-toggle-visibility[data-state=closed] {
  display: none !important;
}

.u-toggle-visibility[data-state=open] {
  display: block !important;
}

.u-visible-inline {
  display: inline !important;
}

.u-visible-inline-block {
  display: inline-block !important;
}

.u-visible-flex {
  display: flex !important;
}

.u-visible-inline-flex {
  display: inline-flex !important;
}

.u-visible-min-br-small {
  display: none !important;
}
@media screen and (min-width: small) {
  .u-visible-min-br-small {
    display: block !important;
  }
}

.u-visible-min-br-medium {
  display: none !important;
}
@media screen and (min-width: med) {
  .u-visible-min-br-medium {
    display: block !important;
  }
}

.u-visible-min-br-med-small {
  display: none !important;
}
@media screen and (min-width: med-sm) {
  .u-visible-min-br-med-small {
    display: block !important;
  }
}

.u-visible-min-br-large {
  display: none !important;
}
@media screen and (min-width: large) {
  .u-visible-min-br-large {
    display: block !important;
  }
}

@media only screen and (min-width: 480px) {
  .u-hidden-max-br-small {
    display: none !important;
  }
}

@media only screen and (min-width: 1024px) {
  .u-hidden-max-br-medium {
    display: none !important;
  }
}

@media only screen and (min-width: 768px) {
  .u-hidden-max-br-med-small {
    display: none !important;
  }
}

@media only screen and (min-width: 1280px) {
  .u-hidden-max-br-large {
    display: none !important;
  }
}

/* Objects */
.o-button {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background-color: transparent;
  border: none;
  display: inline-block;
  vertical-align: middle;
  text-align: center;
  text-decoration: none;
  color: inherit;
  font: inherit;
}

.o-button {
  font-size: 1.6rem;
  line-height: 1.275em;
  letter-spacing: -0.0025em;
  padding: var(--margin-s) calc(var(--margin-m) / 1.5);
  border: 1.5px solid var(--color-primary-text);
  border-radius: 5em;
  cursor: pointer;
  text-decoration: none !important;
  line-height: 1em;
  display: inline-block;
  margin-top: var(--margin-m);
}
@media only screen and (min-width: 480px) {
  .o-button {
    font-size: 1.7rem;
  }
}
@media only screen and (min-width: 1024px) {
  .o-button {
    font-size: 1.9rem;
  }
}
@media only screen and (min-width: 1280px) {
  .o-button {
    font-size: 2rem;
  }
}
@media only screen and (min-width: 1680px) {
  .o-button {
    font-size: 2.1rem;
  }
}
.o-button + .o-button {
  margin-left: calc(var(--margin-m) / 2);
}

.o-button:active,
.o-button:focus,
.o-button:hover {
  background-color: var(--color-primary-text);
  color: var(--color-primary-background);
}

.o-button--strong {
  border: 1px solid var(--color-border);
  background-color: var(--color-primary-text);
  color: var(--color-primary-background);
}

.o-button--arrow:after {
  -webkit-transition-property: transform;
  -webkit-transition-duration: 0.28s;
  -webkit-transition-timing-function: cubic-bezier(0.12, 0.67, 0.53, 1);
  -webkit-transition-delay: 0s;
  -moz-transition-property: transform;
  -moz-transition-duration: 0.28s;
  -moz-transition-timing-function: cubic-bezier(0.12, 0.67, 0.53, 1);
  -moz-transition-delay: 0s;
  -o-transition-property: transform;
  -o-transition-duration: 0.28s;
  -o-transition-timing-function: cubic-bezier(0.12, 0.67, 0.53, 1);
  -o-transition-delay: 0s;
  -ms-transition-property: transform;
  -ms-transition-duration: 0.28s;
  -ms-transition-timing-function: cubic-bezier(0.12, 0.67, 0.53, 1);
  -ms-transition-delay: 0s;
  transition-property: transform;
  transition-duration: 0.28s;
  transition-timing-function: cubic-bezier(0.12, 0.67, 0.53, 1);
  transition-delay: 0s;
  font-size: 95%;
  display: inline-block;
  position: absolute;
}
.o-button--arrow--white {
  color: var(--color-white);
}

.o-button--arrow-left:after {
  content: "\2190";
}

.o-button--arrow-right:after {
  content: "\2192";
}

.o-button--arrow-up:after {
  content: "\2191";
}

.o-button--arrow-down:after {
  content: "\2193";
}

.o-button--arrow-upper-left:after {
  content: "\2196";
}

.o-button--arrow-upper-right:after {
  content: "\2197";
}

.o-button--arrow-lower-right:after {
  content: "\2198";
}

.o-button--arrow-lower-left:after {
  content: "\2199";
}

.o-image,
.o-image img {
  display: inline-block;
  width: 100%;
  height: auto;
  position: relative;
  -webkit-perspective: 1000;
  -webkit-backface-visibility: hidden;
  -webkit-transform-style: preserve-3d;
}

.o-video {
  width: 100%;
  height: auto;
}

.o-embed-container {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  max-width: 100%;
}

.o-embed-container iframe,
.o-embed-container object,
.o-embed-container embed {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.o-image-container-fit,
.o-video-container-fit {
  overflow: hidden;
}

.o-image-container-fit--landscape,
.o-video-container-fit--landscape {
  position: relative;
}
.o-image-container-fit--landscape:before,
.o-video-container-fit--landscape:before {
  display: block;
  content: "";
  width: 100%;
  height: 0;
  padding-bottom: 66.6666666667%;
}

.o-image-container-fit--portrait,
.o-video-container-fit--portrait {
  position: relative;
}
.o-image-container-fit--portrait:before,
.o-video-container-fit--portrait:before {
  display: block;
  content: "";
  width: 100%;
  height: 0;
  padding-bottom: 150%;
}

.o-image-container-fit--square,
.o-video-container-fit--square {
  position: relative;
}
.o-image-container-fit--square:before,
.o-video-container-fit--square:before {
  display: block;
  content: "";
  width: 100%;
  height: 0;
  padding-bottom: 100%;
}

.o-image-container-fit--calc-ratio,
.o-video-container-fit--calc-ratio {
  position: relative;
}
.o-image-container-fit--calc-ratio:before,
.o-video-container-fit--calc-ratio:before {
  display: block;
  content: "";
  width: 100%;
  height: 0;
}

.o-image-container-fit img,
.o-video-container-fit video {
  position: absolute;
  display: block;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  font-family: "object-fit: cover";
}

.o-link {
  display: inline-block;
}

.o-link--toggle {
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  text-decoration: none;
}

.o-link-container:hover .o-link,
.o-link-container:active .o-link,
.o-link-container:focus .o-link,
.o-link.is-active,
.o-link:active,
.o-link:focus,
.o-link:hover,
.o-link--toggle:active,
.o-link--toggle:focus,
.o-link--toggle:hover {
  color: var(--color-text--interaction);
}

.o-link--toggle.is-active {
  color: var(--color-text--interaction);
}

.o-rich-text a {
  cursor: pointer;
  text-decoration: underline;
  -webkit-text-decoration-color: var(--color-black);
          text-decoration-color: var(--color-black);
  text-underline-offset: 0.1em;
  -webkit-text-decoration-skip: ink;
          text-decoration-skip-ink: auto;
}
.o-rich-text a:hover, .o-rich-text a:active, .o-rich-text a:focus {
  color: var(--color-text--interaction);
  -webkit-text-decoration-color: var(--color-text--interaction);
          text-decoration-color: var(--color-text--interaction);
}

.o-link--external:after {
  -webkit-transition-property: transform;
  -webkit-transition-duration: 0.28s;
  -webkit-transition-timing-function: cubic-bezier(0.12, 0.67, 0.53, 1);
  -webkit-transition-delay: 0s;
  -moz-transition-property: transform;
  -moz-transition-duration: 0.28s;
  -moz-transition-timing-function: cubic-bezier(0.12, 0.67, 0.53, 1);
  -moz-transition-delay: 0s;
  -o-transition-property: transform;
  -o-transition-duration: 0.28s;
  -o-transition-timing-function: cubic-bezier(0.12, 0.67, 0.53, 1);
  -o-transition-delay: 0s;
  -ms-transition-property: transform;
  -ms-transition-duration: 0.28s;
  -ms-transition-timing-function: cubic-bezier(0.12, 0.67, 0.53, 1);
  -ms-transition-delay: 0s;
  transition-property: transform;
  transition-duration: 0.28s;
  transition-timing-function: cubic-bezier(0.12, 0.67, 0.53, 1);
  transition-delay: 0s;
  font-size: 100%;
  display: inline-block;
  position: absolute;
  content: "\2197";
  top: 0.125em;
}

.o-link--faded,
.o-link--faded:not(:hover) {
  color: var(--color-text--gray) !important;
}

.o-link--faded.is-active,
.o-link--faded:active,
.o-link--faded:focus,
.o-link--faded:hover {
  color: inherit;
  background: none !important;
}

.o-table {
  position: relative;
  display: block;
  margin: 0;
  padding: 0;
  border-spacing: 0;
  width: 100%;
}
.o-table:before, .o-table:after {
  content: " ";
  display: table;
}
.o-table:after {
  clear: both;
}

.o-table:not(:first-child) {
  margin-top: 1.275em;
}
.o-table:not(:first-child) .o-table__row:first-child {
  padding-top: calc(var(--margin-m) * 0.5);
  border-top: 1px solid var(--color-border);
}

.o-table:not(:last-child) {
  margin-bottom: 1.275em;
}

.o-table__row {
  vertical-align: top;
  display: flex;
  padding-top: calc(var(--margin-m) * 0.5);
  padding-bottom: calc(var(--margin-m) * 0.5);
  border-bottom: 1px solid var(--color-border);
}
.o-table__row:first-child {
  padding-top: 0;
}

.o-table__col {
  vertical-align: top;
  flex: 1 1 100%;
  padding-right: calc(var(--margin-m) * 0.5);
}
.o-table__col:last-child {
  padding-right: 0;
}

dt.o-table__col {
  text-transform: uppercase;
}

.o-table__col + .o-table__col {
  padding-left: calc(var(--margin-m) * 0.5);
}

.o-table__col:first-child {
  padding-right: calc(var(--margin-m) * 1);
}

.o-table__col:last-child {
  padding-left: calc(var(--margin-m) * 1);
}

.o-rich-text p:last-child,
.o-rich-text p:last-of-type {
  margin-bottom: 0;
}

.o-rich-text h1,
.o-rich-text h2,
.o-rich-text h3 {
  text-transform: uppercase;
}

.o-rich-text ul {
  padding-left: 1em;
  list-style-type: none;
  margin-top: 1.275em;
  margin-bottom: 1.275em;
}
.o-rich-text ul li {
  position: relative;
  display: block;
  list-style: none;
}
.o-rich-text ul li:before {
  content: "";
  display: block;
  position: absolute;
  margin-left: -1em;
  top: 0.5em;
  background-color: var(--color-text);
  border-radius: 50%;
  width: 0.33em;
  height: 0.33em;
}
.o-rich-text ul li + li {
  margin-top: 1.275em;
}

.o-rich-text ol {
  padding-left: 1em;
  list-style: decimal;
  margin-bottom: 1.275em;
}
.o-rich-text ol li + li {
  margin-top: 0.6375em;
}

.o-rich-text em {
  font-family: "UniversNextPro-Italic", "Helvetica Neue", Helvetica, Arial, sans-serif;
}

.o-rich-text figure {
  margin-top: var(--margin-m);
  margin-bottom: var(--margin-m);
}

.o-title--large {
  margin-bottom: 1.125em;
}

.o-title--medium {
  margin-bottom: 1.125em;
}

.o-title--small {
  -ms-font-feature-settings: "case" 1, "kern" 1, "liga" 1, "ss03";
  -o-font-feature-settings: "case" 1, "kern" 1, "liga" 1, "ss03";
  font-feature-settings: "case" 1, "kern" 1, "liga" 1, "ss03";
  font-variant-caps: titling-caps;
  margin-bottom: 0;
}

.o-caption,
figcaption {
  position: relative;
  display: block;
  height: auto;
  padding-top: calc(var(--margin-m) / 3);
}

.o-caption--left,
figcaption.o-caption--left {
  float: left !important;
}

.o-caption--center,
figcaption.o-caption--center {
  float: none !important;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.o-caption--right,
figcaption.o-caption--right {
  float: right !important;
}

.o-form__item[data-size=third],
.o-form__item[data-size=half],
.o-form__item[data-size=two_third],
.o-form__item[data-size=full] {
  padding: 0;
  width: 100%;
  display: block;
  width: 100%;
}

@supports (display: grid) {
  .o-form {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    grid-column-gap: var(--margin-s);
    grid-row-gap: var(--margin-s);
  }

  .o-form__item {
    grid-column-end: span 6;
  }

  .o-form__item[data-size=third] {
    grid-column-end: span 6;
  }
  @media only screen and (min-width: 480px) {
    .o-form__item[data-size=third] {
      grid-column-end: span 2;
    }
  }

  .o-form__item[data-size=half] {
    grid-column-end: span 6;
  }
  @media only screen and (min-width: 480px) {
    .o-form__item[data-size=half] {
      grid-column-end: span 3;
    }
  }

  .o-form__item[data-size=two_third] {
    grid-column-end: span 6;
  }
  @media only screen and (min-width: 480px) {
    .o-form__item[data-size=two_third] {
      grid-column-end: span 4;
    }
  }

  .o-form__item[data-size=full] {
    grid-column-end: span 6;
  }
  @media only screen and (min-width: 480px) {
    .o-form__item[data-size=full] {
      grid-column-end: span 6;
    }
  }
}
.o-form input[type=text],
.o-form input[type=search],
.o-form input[type=email],
.o-form input[type=tel],
.o-form input[type=url],
.o-form input[type=password],
.o-form input[type=submit],
.c-checkout-form .StripeElement,
#card-element,
select,
textarea {
  width: 100%;
  border: 1px solid var(--color-black) !important;
  padding-top: calc(var(--margin-m) * 0.66);
  padding-bottom: calc(var(--margin-m) * 0.66);
  padding-left: calc(var(--margin-m) * 1);
  padding-right: calc(var(--margin-m) * 1);
  line-height: normal !important;
}
.o-form input[type=text]:focus,
.o-form input[type=search]:focus,
.o-form input[type=email]:focus,
.o-form input[type=tel]:focus,
.o-form input[type=url]:focus,
.o-form input[type=password]:focus,
.o-form input[type=submit]:focus,
.c-checkout-form .StripeElement:focus,
#card-element:focus,
select:focus,
textarea:focus {
  outline-width: 2px;
  outline-style: solid;
  outline-color: var(--color-black);
}
.o-form input[type=text].error,
.o-form input[type=search].error,
.o-form input[type=email].error,
.o-form input[type=tel].error,
.o-form input[type=url].error,
.o-form input[type=password].error,
.o-form input[type=submit].error,
.c-checkout-form .StripeElement.error,
#card-element.error,
select.error,
textarea.error {
  outline-width: 2px;
  outline-style: solid;
  outline-color: red;
}

.o-form__item select {
  position: relative;
  background-image: url("../images/icon-arrow-down.svg");
  background-size: 0.75em;
  background-repeat: no-repeat;
  background-position: right var(--margin-s) center;
}

.o-form__label {
  font-size: 1.2rem;
  line-height: 1.33em;
  letter-spacing: 0rem;
  float: none;
  display: block;
  width: 100%;
  text-transform: uppercase;
  padding: var(--margin-s) 0;
}
@media only screen and (min-width: 1280px) {
  .o-form__label {
    font-size: 1.3rem;
  }
}
@media only screen and (min-width: 1680px) {
  .o-form__label {
    font-size: 1.4rem;
  }
}
.o-form fieldset {
  padding-top: calc(var(--margin-m) * 1);
  padding-bottom: calc(var(--margin-m) * 1);
}

.o-form textarea {
  height: auto !important;
}

.o-form legend {
  width: 100%;
  display: block;
  padding-top: var(--margin-m);
}

.o-form h2 {
  margin-top: var(--margin-l);
  border-top: 1px solid var(--color-black);
  width: 100%;
  display: block;
  padding-top: var(--margin-s);
}

.o-form__button:disabled {
  cursor: default;
  color: var(--color-black);
  opacity: 0.4;
  border: 1px solid rgba(0, 0, 0, 0);
}

.o-form__label__error {
  display: inline-block;
  text-align: right;
  float: right;
  -webkit-animation: Flash 1s linear infinite;
  animation: Flash 1s linear infinite;
  -webkit-animation-timing-function: steps(1, end);
  animation-timing-function: steps(1, end);
}

.o-form__checkbox,
.o-form__radio {
  display: flex;
  align-items: center;
  padding-top: calc(var(--margin-m) * 0.3);
  padding-bottom: calc(var(--margin-m) * 0.3);
  margin: 0;
}
.o-form__checkbox:first-of-type,
.o-form__radio:first-of-type {
  padding-top: calc(var(--margin-m) * 0);
}
.o-form__checkbox:last-of-type,
.o-form__radio:last-of-type {
  padding-bottom: calc(var(--margin-m) * 0);
}

input[type=checkbox],
input[type=radio] {
  -webkit-appearance: none;
  cursor: pointer;
  position: relative;
  float: left;
  width: 24px;
  height: 24px;
  border: 1px solid var(--color-black);
}

input[type=radio] {
  border-radius: 100%;
}
input[type=radio]:after {
  border-radius: 100%;
}

input[type=checkbox]:checked:after,
input[type=radio]:checked:after {
  content: "";
  width: 8px;
  height: 8px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: var(--color-black);
}

input[type=checkbox] + label,
input[type=radio] + label {
  display: inline-block;
  float: left;
  padding-left: var(--margin-s);
}

.o-form__file-area {
  width: 100%;
  position: relative;
}
.o-form__file-area input[type=file] {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: 0;
  cursor: pointer;
}
.o-form__file-area .file-dummy {
  width: 100%;
  padding: var(--margin-m);
  border: 2px dashed var(--color-black);
  text-align: center;
  transition: background 0.44s cubic-bezier(0.12, 0.67, 0.53, 1);
}
.o-form__file-area .file-dummy .success {
  display: none;
}
.o-form__file-area:hover .file-dummy, .o-form__file-area:focus .file-dummy {
  border: 2px solid var(--color-black);
}
.o-form__file-area input[type=file]:focus + .file-dummy {
  border: 2px dashed var(--color-black);
  outline: none;
}
.o-form__file-area input[type=file]:valid + .file-dummy {
  border: 2px solid var(--color-black);
  background-color: var(--color-black);
  color: var(--color-white);
}
.o-form__file-area input[type=file]:valid + .file-dummy .success {
  display: inline-block;
}
.o-form__file-area input[type=file]:valid + .file-dummy .default {
  display: none;
}

.o-filter:hover,
.o-filter:active,
.o-filter:focus {
  text-decoration: underline;
}

.o-filter--active,
.o-filter.is-active {
  color: var(--color-text);
  text-decoration: underline;
}

@media only screen and (min-width: 1024px) {
  .o-logo svg {
    max-height: 4.2vw;
  }
}
@media only screen and (min-width: 1280px) {
  .o-logo svg {
    max-height: 5.9rem;
  }
}
@media only screen and (min-width: 1680px) {
  .o-logo svg {
    max-height: 3.55vw;
  }
}

.o-logo svg path {
  fill: var(--color-text);
}

.o-logo-compact__text {
  text-transform: none;
  text-indent: 0.7em;
  padding-left: 0.1em;
  display: inline-block;
}

.o-logo-compact__icons {
  position: absolute;
  top: 0;
  height: 100%;
  overflow: visible;
}
.o-logo-compact__icons > svg.o-icon {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
}

.o-logo-compact__icons > svg {
  opacity: 0;
  -webkit-animation-name: pulse;
          animation-name: pulse;
  -webkit-animation-duration: 6s;
          animation-duration: 6s;
  -webkit-animation-iteration-count: infinite;
          animation-iteration-count: infinite;
  -webkit-animation-timing-function: step-start;
          animation-timing-function: step-start;
}

.o-logo-compact__icons > svg:nth-child(1) {
  -webkit-animation-delay: 1s;
          animation-delay: 1s;
}

.o-logo-compact__icons > svg:nth-child(2) {
  -webkit-animation-delay: 2s;
          animation-delay: 2s;
}

.o-logo-compact__icons > svg:nth-child(3) {
  -webkit-animation-delay: 3s;
          animation-delay: 3s;
}

.o-logo-compact__icons > svg:nth-child(4) {
  -webkit-animation-delay: 4s;
          animation-delay: 4s;
}

.o-logo-compact__icons > svg:nth-child(5) {
  -webkit-animation-delay: 5s;
          animation-delay: 5s;
}

.o-logo-compact__icons > svg:nth-child(6) {
  -webkit-animation-delay: 6s;
          animation-delay: 6s;
}

@-webkit-keyframes pulse {
  0% {
    opacity: 0;
  }
  17% {
    opacity: 1;
  }
}

@keyframes pulse {
  0% {
    opacity: 0;
  }
  17% {
    opacity: 1;
  }
}
svg path,
svg polyline,
svg rect,
svg polygon,
svg line,
svg circle {
  fill: inherit;
  stroke: inherit;
}

use.icon {
  fill: var(--color-text);
  stroke: var(--color-text);
}

use.icon-social {
  fill: var(--color-text);
}

use.icon-ui {
  stroke: var(--color-text);
  fill: none;
}

svg.o-icon {
  width: 0.7em;
  height: 0.7em;
}

svg.o-icon--inline {
  overflow: auto;
  width: 0.9em;
  height: 0.7em;
  margin-left: -0.1em;
}

svg.o-icon--social {
  width: 1em;
  height: 1em;
}
svg.o-icon--social path {
  fill: var(--color-text);
}

.o-artwork {
  position: fixed;
  z-index: 903;
  width: 100%;
  height: calc(100vh - ( var(--offset-top)*3) );
  top: calc( var(--offset-top) * 1.5);
  mix-blend-mode: multiply;
  pointer-events: none;
  opacity: 1;
  -webkit-transition-property: opacity;
  -webkit-transition-duration: 0.66s;
  -webkit-transition-timing-function: ease;
  -webkit-transition-delay: 0.1s;
  -moz-transition-property: opacity;
  -moz-transition-duration: 0.66s;
  -moz-transition-timing-function: ease;
  -moz-transition-delay: 0.1s;
  -o-transition-property: opacity;
  -o-transition-duration: 0.66s;
  -o-transition-timing-function: ease;
  -o-transition-delay: 0.1s;
  -ms-transition-property: opacity;
  -ms-transition-duration: 0.66s;
  -ms-transition-timing-function: ease;
  -ms-transition-delay: 0.1s;
  transition-property: opacity;
  transition-duration: 0.66s;
  transition-timing-function: ease;
  transition-delay: 0.1s;
}
.o-artwork svg {
  height: 100%;
  width: 100%;
}
.o-artwork.is-hidden {
  opacity: 0;
}

/* Group */
.g-banner {
  position: relative;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  padding: 0 var(--margin-m);
  height: var(--banner-height);
  overflow: hidden;
}

@media only screen and (max-width: 767px) {
  .g-banner__list[data-overflow] {
    position: relative;
  }
  .g-banner__list[data-overflow]:before {
    content: "";
    position: absolute;
    display: block;
    right: 0;
    width: 5em;
    z-index: 1;
    height: 100%;
    opacity: 1;
    pointer-events: none;
    transition: opacity 0.44s cubic-bezier(0.12, 0.67, 0.53, 1);
    background: linear-gradient(to left, var(--color-gradient-from) 25%, var(--color-gradient-to));
  }
  .g-banner__list[data-overflow]:after {
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    z-index: 1;
    content: "\2192";
    font-size: 95%;
    display: inline-block;
    width: 0.7em;
    margin-top: auto;
    margin-bottom: auto;
  }

  .g-banner__list[data-overflow=false]:before {
    opacity: 0;
  }
  .g-banner__list[data-overflow=false]:after {
    opacity: 0;
  }

  .g-banner__list[data-overflow=true]:before {
    opacity: 1;
  }
  .g-banner__list[data-overflow=true]:after {
    opacity: 1;
  }

  .g-banner__list[data-overflow] > .js-banner-overflow {
    overflow: scroll;
    white-space: nowrap;
  }
}
.g-banner + .g-banner {
  border-top: 1px solid var(--color-border);
}

.g-banner--button {
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}
.g-banner--button a {
  width: 100%;
}

.g-banner__item {
  display: inline-block;
  line-height: normal;
}

.g-banner .g-banner__item:not(.g-banner__item--container) {
  padding-top: calc(var(--margin-m) * 0.1);
  padding-bottom: calc(var(--margin-m) * 0.75);
  padding-left: calc(var(--margin-m) * 0.25);
  padding-right: calc(var(--margin-m) * 0.25);
}

.g-banner--large .g-banner__item:not(.g-banner__item--container) {
  padding-top: calc(var(--margin-m) * 0.6);
  padding-bottom: calc(var(--margin-m) * 0.5);
  padding-left: calc(var(--margin-m) * 0.25);
  padding-right: calc(var(--margin-m) * 0.25);
}

.g-banner__item:not(.g-banner__item--container):first-of-type {
  padding-left: 0;
}

.g-banner__item:not(.g-banner__item--container):last-of-type {
  padding-right: 0;
}

.g-banner .g-banner__item--container a {
  padding-top: calc(var(--margin-m) * 0.6);
  padding-bottom: calc(var(--margin-m) * 0.5);
  padding-left: calc(var(--margin-m) * 0.25);
  padding-right: calc(var(--margin-m) * 0.25);
}

.g-banner .g-banner__item--container:first-of-type a {
  padding-left: 0;
}

.g-banner .g-banner__item--container:last-of-type a {
  padding-right: 0;
}

.g-banner .g-banner__item--social a {
  padding-top: calc(var(--margin-m) * 0.33);
  padding-bottom: calc(var(--margin-m) * 0.5);
  padding-left: calc(var(--margin-m) * 0.25);
  padding-right: calc(var(--margin-m) * 0.25);
}

/* =========================================================================  */
/* Flexbox fallback */
/* =========================================================================  */
.g-cards {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  margin: var(--margin-s) var(--margin-s) var(--margin-s) var(--margin-s);
  padding-bottom: calc(var(--margin-m) * 3);
}

.g-cards.has-border-top {
  padding-top: calc(var(--margin-m) * 1);
}

.g-cards > .g-card__item {
  padding: 0 var(--margin-s) var(--margin-m) var(--margin-s);
}

.g-cards--xsmall > .g-card__item {
  width: calc(100% / 2);
}
@media only screen and (min-width: 325px) {
  .g-cards--xsmall > .g-card__item {
    width: calc(100% / 3);
  }
}
@media only screen and (min-width: 480px) {
  .g-cards--xsmall > .g-card__item {
    width: calc(100% / 4);
  }
}
@media only screen and (min-width: 768px) {
  .g-cards--xsmall > .g-card__item {
    width: calc(100% / 5);
  }
}
@media only screen and (min-width: 1024px) {
  .g-cards--xsmall > .g-card__item {
    width: calc(100% / 6);
  }
}
@media only screen and (min-width: 1280px) {
  .g-cards--xsmall > .g-card__item {
    width: calc(100% / 6);
  }
}

.g-cards--small > .g-card__item {
  width: calc(100% / 2);
}
@media only screen and (min-width: 768px) {
  .g-cards--small > .g-card__item {
    width: calc(100% / 4);
  }
}

.g-cards--medium > .g-card__item {
  width: 100%;
}
@media only screen and (min-width: 480px) {
  .g-cards--medium > .g-card__item {
    width: calc(100% / 2);
  }
}
@media only screen and (min-width: 768px) {
  .g-cards--medium > .g-card__item {
    width: calc(100% / 3);
  }
}

.g-cards--large > .g-card__item {
  width: 100%;
}
@media only screen and (min-width: 768px) {
  .g-cards--large > .g-card__item {
    width: calc(100% / 2);
  }
}

.g-cards--full > .g-card__item {
  width: 100%;
}

/* =========================================================================  */
/* CSS Grid */
/* =========================================================================  */
@supports (display: grid) {
  .g-cards {
    display: grid;
    grid-column-gap: var(--margin-m);
    grid-row-gap: var(--margin-m);
    margin: var(--margin-m) var(--margin-m) var(--margin-m) var(--margin-m);
    padding-bottom: calc(var(--margin-m) * 3);
  }

  .g-cards--xsmall {
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  }

  .g-cards--small {
    grid-template-columns: repeat(2, 1fr);
  }
  @media only screen and (min-width: 768px) {
    .g-cards--small {
      grid-template-columns: repeat(4, 1fr);
    }
  }

  .g-cards--medium {
    grid-template-columns: repeat(1, 1fr);
  }
  @media only screen and (min-width: 480px) {
    .g-cards--medium {
      grid-template-columns: repeat(2, 1fr);
    }
  }
  @media only screen and (min-width: 1024px) {
    .g-cards--medium {
      grid-template-columns: repeat(3, 1fr);
    }
  }

  .g-cards--large {
    grid-template-columns: repeat(1, 1fr);
  }

  .g-cards > .g-card__item {
    padding: 0;
    width: 100%;
    display: block;
  }
}
/* =========================================================================  */
/* Flexbox fallback */
/* =========================================================================  */
.g-gallery {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  margin: var(--margin-s);
}

.g-gallery > .g-gallery__item {
  padding: 0 var(--margin-s) var(--margin-m) var(--margin-s);
  position: relative;
}

.g-gallery__item[data-media-size=small] {
  width: 100%;
}
@media only screen and (min-width: 768px) {
  .g-gallery__item[data-media-size=small] {
    width: calc(100% / 3);
  }
}

.g-gallery__item[data-media-size=medium] {
  width: 100%;
}
@media only screen and (min-width: 768px) {
  .g-gallery__item[data-media-size=medium] {
    width: calc(100% / 2);
  }
}

.g-gallery__item[data-media-size=large] {
  width: 100%;
}
@media only screen and (min-width: 768px) {
  .g-gallery__item[data-media-size=large] {
    width: calc(100% / 1.5);
  }
}

.g-gallery__item[data-media-size=full] {
  width: 100%;
}

/* =========================================================================  */
/* CSS Grid */
/* =========================================================================  */
@supports (display: grid) {
  .g-gallery {
    display: grid;
    grid-column-gap: var(--margin-m);
    grid-row-gap: var(--margin-m);
    margin: 0 var(--margin-m);
    padding: var(--margin-m) 0;
    grid-template-columns: repeat(6, 1fr);
    border-top: 1px solid var(--color-border);
  }

  .g-gallery__item[data-media-size=small],
.g-gallery__item[data-media-size=medium],
.g-gallery__item[data-media-size=large],
.g-gallery__item[data-media-size=full] {
    padding: 0;
    width: 100%;
    display: block;
    width: 100%;
  }

  .g-gallery__item[data-media-size=small] {
    grid-column-end: span 6;
  }
  @media only screen and (min-width: 768px) {
    .g-gallery__item[data-media-size=small] {
      grid-column-end: span 2;
    }
  }

  .g-gallery__item[data-media-size=medium] {
    grid-column-end: span 6;
  }
  @media only screen and (min-width: 768px) {
    .g-gallery__item[data-media-size=medium] {
      grid-column-end: span 3;
    }
  }

  .g-gallery__item[data-media-size=large] {
    grid-column-end: span 6;
  }
  @media only screen and (min-width: 768px) {
    .g-gallery__item[data-media-size=large] {
      grid-column-end: span 4;
    }
  }

  .g-gallery__item[data-media-size=full] {
    grid-column-end: span 6;
  }
  @media only screen and (min-width: 768px) {
    .g-gallery__item[data-media-size=full] {
      grid-column-end: span 6;
    }
  }
}
.g-gallery__item__caption {
  position: absolute;
  margin-top: -1.6em;
  left: 0.6em;
  mix-blend-mode: difference;
  color: #fff;
}

.g-container {
  position: relative;
  display: block;
  width: auto;
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding-left: var(--margin-m);
  padding-right: var(--margin-m);
}
.g-container:before, .g-container:after {
  content: " ";
  display: table;
}
.g-container:after {
  clear: both;
}

.g-section {
  position: relative;
  display: block;
}
.g-section:before, .g-section:after {
  content: " ";
  display: table;
}
.g-section:after {
  clear: both;
}

.g-section-p1 {
  position: relative;
  display: block;
  margin-top: var(--margin-m);
  margin-bottom: var(--margin-m);
}
.g-section-p1:before, .g-section-p1:after {
  content: " ";
  display: table;
}
.g-section-p1:after {
  clear: both;
}

.g-section-p2 {
  position: relative;
  display: block;
  overflow: visible;
  margin-top: var(--margin-l);
  margin-bottom: var(--margin-l);
}
.g-section-p2:before, .g-section-p2:after {
  content: " ";
  display: table;
}
.g-section-p2:after {
  clear: both;
}

.g-section-p3 {
  position: relative;
  display: block;
  overflow: visible;
  margin-top: calc(var(--margin-m) * 3);
  margin-bottom: calc(var(--margin-m) * 3);
}
.g-section-p3:before, .g-section-p3:after {
  content: " ";
  display: table;
}
.g-section-p3:after {
  clear: both;
}

.g-section-p4 {
  position: relative;
  display: block;
  overflow: visible;
  margin-top: calc(var(--margin-m) * 4);
  margin-bottom: calc(var(--margin-m) * 4);
}
.g-section-p4:before, .g-section-p4:after {
  content: " ";
  display: table;
}
.g-section-p4:after {
  clear: both;
}

.g-section--block {
  border-top: 1px solid var(--color-border);
}

.g-section__header,
.g-section__end,
.g-section-banner {
  position: relative;
  display: block;
  padding-top: var(--margin-l);
  padding-bottom: var(--margin-m);
}
.g-section__header:before, .g-section__header:after,
.g-section__end:before,
.g-section__end:after,
.g-section-banner:before,
.g-section-banner:after {
  content: " ";
  display: table;
}
.g-section__header:after,
.g-section__end:after,
.g-section-banner:after {
  clear: both;
}

.has-border-top {
  border-top: 1px solid var(--color-border);
}

.has-border-bottom {
  border-bottom: 1px solid var(--color-border);
}

.g-slider {
  margin: 0 var(--margin-m);
  padding: var(--margin-m) 0;
  border-top: 1px solid var(--color-border);
}

/* Components */
.c-site-header {
  position: sticky;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 901;
  background-color: var(--color-header);
  will-change: transform, background-color;
  transition: transform 0.28s cubic-bezier(0.12, 0.67, 0.53, 1), background-color 0.28s cubic-bezier(0.12, 0.67, 0.53, 1);
  transform: translateY(0);
}
@media only screen and (min-width: 768px) {
  .c-site-header {
    background-color: var(--color-header);
  }
}

body[data-menu-open=false].header--is-minimised .c-site-header {
  transform: translateY(-80%);
}

body.is-touch.header--is-minimised .c-site-header {
  pointer-events: none;
}

.c-site-header-banner {
  font-size: 2.1rem;
  letter-spacing: -0.005em;
  line-height: 1.2em;
  display: flex;
  flex-direction: row;
  position: relative;
  width: 100%;
  margin: 0 auto;
  z-index: 902;
  height: auto;
  padding: 0;
}
@media only screen and (min-width: 1024px) {
  .c-site-header-banner {
    font-size: 2.4rem;
  }
}
@media only screen and (min-width: 1280px) {
  .c-site-header-banner {
    font-size: 2.5rem;
  }
}
@media only screen and (min-width: 1680px) {
  .c-site-header-banner {
    font-size: 2.7rem;
  }
}
.c-site-header-banner__logo {
  letter-spacing: -0.0125em;
  color: var(--color-text);
  transition: color 0.44s cubic-bezier(0.25, 0.8, 0.25, 1), transform 0.44s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.c-site-header-banner__item {
  height: 100%;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-start;
}

.c-site-header-banner__item:last-child {
  margin-right: 0;
  margin-left: auto;
}

.c-site-header-banner__item > * {
  height: 100%;
}

.c-site-header-banner__item a {
  height: 100%;
  display: flex;
  align-items: center;
  line-height: 1em;
  padding-top: calc(var(--margin-m) * 0.6);
  padding-bottom: calc(var(--margin-m) * 0.5);
  padding-left: calc(var(--margin-m) * 1);
  padding-right: calc(var(--margin-m) * 1);
}

.o-menu-icon {
  height: 100%;
  display: flex;
  align-items: center;
  line-height: 1em;
  position: absolute;
  top: 0.25em;
  right: var(--margin-s);
  padding-top: calc(var(--margin-m) * 1);
  padding-bottom: calc(var(--margin-m) * 1);
  padding-left: calc(var(--margin-m) * 1);
  padding-right: calc(var(--margin-m) * 1);
  position: relative;
  color: var(--color-text);
  width: 2em;
  height: 2em;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  outline: none;
  -webkit-transition-property: all;
  -webkit-transition-duration: 0.2s;
  -webkit-transition-timing-function: ease;
  -webkit-transition-delay: 0s;
  -moz-transition-property: all;
  -moz-transition-duration: 0.2s;
  -moz-transition-timing-function: ease;
  -moz-transition-delay: 0s;
  -o-transition-property: all;
  -o-transition-duration: 0.2s;
  -o-transition-timing-function: ease;
  -o-transition-delay: 0s;
  -ms-transition-property: all;
  -ms-transition-duration: 0.2s;
  -ms-transition-timing-function: ease;
  -ms-transition-delay: 0s;
  transition-property: all;
  transition-duration: 0.2s;
  transition-timing-function: ease;
  transition-delay: 0s;
  transform: translate(0, -12.5%);
}

.o-menu-icon:before, .o-menu-icon:after {
  content: "";
  color: inherit;
  display: block;
  position: absolute;
  width: 22px;
  right: 10px;
  height: 2px;
  top: 50%;
  background: var(--color-text);
  -webkit-transition-property: all;
  -webkit-transition-duration: 0.2s;
  -webkit-transition-timing-function: ease;
  -webkit-transition-delay: 0s;
  -moz-transition-property: all;
  -moz-transition-duration: 0.2s;
  -moz-transition-timing-function: ease;
  -moz-transition-delay: 0s;
  -o-transition-property: all;
  -o-transition-duration: 0.2s;
  -o-transition-timing-function: ease;
  -o-transition-delay: 0s;
  -ms-transition-property: all;
  -ms-transition-duration: 0.2s;
  -ms-transition-timing-function: ease;
  -ms-transition-delay: 0s;
  transition-property: all;
  transition-duration: 0.2s;
  transition-timing-function: ease;
  transition-delay: 0s;
}

.o-menu-icon:before {
  transform: translateY(-0.25em);
}

.o-menu-icon:after {
  transform: translateY(0.25em);
}

[data-menu-open=true] .o-menu-icon:before {
  transform: translateY(0) rotate(-45deg);
}

[data-menu-open=true] .o-menu-icon:after {
  transform: translateY(0) rotate(45deg);
}

.c-site-main {
  flex: 1;
}

.c-site-footer {
  border-top: 1px solid var(--color-border);
  padding: 0 var(--margin-m);
}

.c-site-footer__cols {
  display: grid;
  grid-template-columns: 1fr;
  grid-column-gap: var(--margin-m);
  grid-row-gap: var(--margin-m);
  padding-top: calc(var(--margin-m) * 2);
  padding-bottom: calc(var(--margin-m) * 2);
}
@media only screen and (min-width: 768px) {
  .c-site-footer__cols {
    padding-top: calc(var(--margin-m) * 2);
    padding-bottom: calc(var(--margin-m) * 1);
  }
}
@media only screen and (min-width: 1024px) {
  .c-site-footer__cols {
    grid-template-columns: 2fr 3fr;
  }
}
@media only screen and (min-width: 1280px) {
  .c-site-footer__cols {
    grid-template-columns: 2fr 3fr;
  }
}

.c-site-footer__cols-inside {
  display: grid;
  grid-template-columns: 1fr;
  grid-column-gap: var(--margin-m);
  grid-row-gap: var(--margin-m);
}
@media only screen and (min-width: 768px) {
  .c-site-footer__cols-inside {
    grid-template-columns: 1fr 1fr;
  }
}

.c-page-heading {
  width: 100%;
  margin: calc(var(--margin-l)*2) auto;
  text-align: center;
}

.c-page-heading__item {
  display: inline-block;
  line-height: 1em;
  padding: var(--margin-s);
}
.c-page-heading__item:first-of-type {
  padding-left: 0;
}
.c-page-heading__item:last-of-type {
  padding-right: 0;
}

body[data-menu-open=true] .c-site-header-banner__logo {
  color: var(--color-secondary-background);
}

.c-menu {
  z-index: 900;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  overflow: scroll;
}
@media only screen and (min-width: 768px) {
  .c-menu {
    overflow: hidden;
  }
}

.c-menu__col {
  position: relative;
  margin: var(--margin-menu) var(--margin-l);
}
@media only screen and (min-width: 768px) {
  .c-menu__col {
    position: fixed;
    width: 50vw;
    height: 100%;
    margin: 0;
    padding: var(--margin-menu) var(--margin-l);
  }
  .c-menu__col:first-child {
    right: 0;
  }
  .c-menu__col:last-child {
    left: 0;
  }
}

.c-menu[data-state=open] {
  opacity: 1;
  transition: all 0.44s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.c-menu[data-state=closed] {
  opacity: 0;
  transition: all 0.44s cubic-bezier(0.25, 0.8, 0.25, 1);
  pointer-events: none;
}

.c-menu-artwork a {
  width: 100%;
  height: 100%;
  overflow: hidden;
  display: block;
}
.c-menu-artwork svg {
  width: 100%;
  height: 100%;
  transition: all 0.66s cubic-bezier(0.25, 0.8, 0.25, 1);
  filter: drop-shadow(0 8px 20px rgba(0, 0, 0, 0.12));
}

.c-menu-nav ul {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-content: center;
  height: 100%;
}

.c-menu-nav ul li {
  display: flex;
  justify-content: center;
  align-content: center;
  width: 100%;
  height: calc(var(--menu-height) / 5);
  height: calc(var(--menu-height) / var(--menu-items));
  padding: calc(var(--margin-s)/2) 0;
}
.c-menu-nav ul li:first-child {
  padding-top: 0;
}
.c-menu-nav ul li:last-child {
  padding-bottom: 0;
}

.c-menu-nav ul li a {
  font-size: 2.7rem;
  letter-spacing: -0.025em;
  line-height: 1.05em;
  background-color: var(--color-secondary-background);
  color: var(--color-secondary-text);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  line-height: 1em;
  text-align: center;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
  transition: all 0.66s cubic-bezier(0.25, 0.8, 0.25, 1);
}
@media only screen and (min-width: 480px) {
  .c-menu-nav ul li a {
    font-size: 3.2rem;
  }
}
@media only screen and (min-width: 1024px) {
  .c-menu-nav ul li a {
    font-size: 4.6rem;
  }
}
@media only screen and (min-width: 1280px) {
  .c-menu-nav ul li a {
    font-size: 4.8rem;
  }
}
@media only screen and (min-width: 1680px) {
  .c-menu-nav ul li a {
    font-size: 5.4rem;
  }
}
.c-menu-nav ul li a:hover, .c-menu-nav ul li a:focus, .c-menu-nav ul li a.is-active {
  border-radius: calc(var(--menu-height)/5);
  -webkit-transition-property: all;
  -webkit-transition-duration: 0.28s;
  -webkit-transition-timing-function: ease;
  -webkit-transition-delay: 0s;
  -moz-transition-property: all;
  -moz-transition-duration: 0.28s;
  -moz-transition-timing-function: ease;
  -moz-transition-delay: 0s;
  -o-transition-property: all;
  -o-transition-duration: 0.28s;
  -o-transition-timing-function: ease;
  -o-transition-delay: 0s;
  -ms-transition-property: all;
  -ms-transition-duration: 0.28s;
  -ms-transition-timing-function: ease;
  -ms-transition-delay: 0s;
  transition-property: all;
  transition-duration: 0.28s;
  transition-timing-function: ease;
  transition-delay: 0s;
}

.c-nav {
  font-size: 2.1rem;
  letter-spacing: -0.005em;
  line-height: 1.2em;
  background-color: var(--color-header);
  position: relative;
  width: 100%;
  margin: 0 auto;
}
@media only screen and (min-width: 1024px) {
  .c-nav {
    font-size: 2.4rem;
  }
}
@media only screen and (min-width: 1280px) {
  .c-nav {
    font-size: 2.5rem;
  }
}
@media only screen and (min-width: 1680px) {
  .c-nav {
    font-size: 2.7rem;
  }
}
.c-nav__list {
  display: flex;
  flex-direction: column;
}
@media only screen and (min-width: 1024px) {
  .c-nav__list {
    flex-direction: row;
    border-top: 1px solid var(--color-border);
  }
}

.c-nav__item {
  position: relative;
  padding: 0 calc(var(--margin-m));
  border-bottom: 1px solid var(--color-border);
  display: block;
  width: 100%;
}
.c-nav__item:first-child {
  border-top: 1px solid var(--color-border);
}
@media only screen and (min-width: 1024px) {
  .c-nav__item:first-child {
    border-top: none;
  }
}

.c-nav__item a {
  display: block;
  width: 100%;
  line-height: 1em;
  padding-top: calc(var(--margin-m) * 0.75);
  padding-bottom: calc(var(--margin-m) * 0.5);
}
@media only screen and (min-width: 1024px) {
  .c-nav__item a {
    text-align: center;
  }
}

.c-nav[data-view=navigation] .c-nav__search {
  display: none;
}

.c-nav[data-view=search] .c-nav__list {
  visibility: hidden;
}
.c-nav[data-view=search] .c-nav__search {
  display: flex;
}

.c-nav[data-state=open] {
  display: block;
}

.c-nav[data-state=closed] {
  display: none;
}

.c-hero {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  height: auto;
}
@media only screen and (min-width: 768px) {
  .c-hero {
    flex-direction: row;
    height: 88vh;
    max-height: none;
    min-height: 60rem;
  }
}

.c-hero__col {
  position: relative;
  width: 100%;
  height: auto;
}
.c-hero__col:not(:first-child) {
  border-top: 1px solid var(--color-border);
}
@media only screen and (min-width: 768px) {
  .c-hero__col {
    display: flex;
    flex-shrink: 0;
    flex-direction: column;
    width: 50%;
    height: 100%;
    max-height: none;
    overflow: scroll;
    border-left: 1px solid var(--color-border);
  }
  .c-hero__col:not(:first-child) {
    border-top: 0;
  }
}

.c-hero__col--centered {
  justify-content: center;
}
.c-hero__col--centered .c-hero__content {
  padding-top: calc(var(--margin-l)*2);
  padding-bottom: calc(var(--margin-l)*2);
}

.c-hero__content {
  padding: var(--margin-m);
}

.c-hero__image-wrap {
  position: relative;
  display: flex;
  flex-shrink: 0;
  flex-direction: column;
  justify-content: center;
  width: 100%;
  height: auto;
  height: 85vh;
  max-height: 550px;
}
@media only screen and (min-width: 768px) {
  .c-hero__image-wrap {
    width: 50%;
    height: 100%;
    max-height: none;
  }
}

.c-hero__image-wrap > svg {
  padding: var(--margin-m);
}

.c-hero__events-item {
  padding: var(--margin-s) var(--margin-m);
  position: relative;
  z-index: 0;
}
.c-hero__events-item a::before {
  content: " ";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
}

.tag {
  display: block;
  padding: calc(var(--margin-s)*1.5) 0;
}

.c-search {
  position: relative;
  display: flex;
  flex-direction: row;
  width: 100%;
  margin: 0 auto;
  align-items: center;
  margin: 0 var(--margin-m);
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
}

.c-nav__search {
  position: absolute;
  margin: 0;
  height: var(--banner-height);
  border-top: none;
  border-bottom: none;
}

.c-search__icon {
  margin-right: var(--margin-m);
}

.c-search-form {
  display: flex;
  flex-wrap: wrap;
  height: 100%;
  margin: 0 auto;
}

.c-search__close {
  position: absolute;
  right: 1em;
  height: 100%;
}

input[type=search] {
  flex: 1 0;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.c-search-form__submit {
  flex: 0 1em;
  position: relative;
}
.c-search-form__submit svg {
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  pointer-events: none;
}
.c-search-form__submit input[type=submit] {
  width: 1em;
  height: 100%;
}

.c-newsletter {
  position: relative;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  margin: 0 var(--margin-m);
  height: calc(var(--margin-m)*3.75);
  border-top: 1px solid var(--color-border);
}

.c-nav__newsletter {
  height: 100%;
  border-top: none;
  border-bottom: none;
}

.c-newsletter__icon {
  margin-right: var(--margin-m);
}

.c-newsletter-form {
  display: flex;
  flex-wrap: wrap;
  height: 100%;
  margin: 0 auto;
  width: 100%;
}

.c-newsletter__close {
  position: absolute;
  right: 1em;
  height: 100%;
}

input[type=email] {
  max-width: calc(100% - 2em);
  flex: 1 0;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.c-newsletter-form__submit {
  position: absolute;
  right: 0;
  height: 100%;
}
.c-newsletter-form__submit svg {
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  pointer-events: none;
}
.c-newsletter-form__submit input[type=submit] {
  width: 1em;
  height: 100%;
}

.c-collapsible + .c-collapsible .c-collapsible__button {
  border-top: none;
}

.c-collapsible__button {
  padding: 0.5em 0;
  width: 100%;
  border: none;
  text-align: left;
  outline: none;
  border-top: 1.5px solid var(--color-text);
}

.c-collapsible__button--collapsible {
  cursor: pointer;
}

.c-collapsible__button--collapsible:after {
  content: "+";
  color: var(--color-text);
  font-weight: bold;
  float: right;
  margin-left: 5px;
}

.active.c-collapsible__button--collapsible:after {
  content: "\2212";
}

.c-collapsible__content {
  padding: 0;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.44s cubic-bezier(0.12, 0.67, 0.53, 1);
  border-bottom: 1.5px solid var(--color-text);
}

.c-collapsible__content > div {
  margin-top: calc(var(--margin-m) * 1);
  margin-bottom: calc(var(--margin-m) * 1);
}

.c-highlight {
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
  margin-bottom: -1px;
}

.c-highlight__content-wrap {
  width: calc(100%);
  padding: var(--margin-m);
}

@media only screen and (min-width: 768px) {
  .c-highlight {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    flex: 1 1 auto;
    justify-content: space-between;
  }

  .c-highlight__content-wrap {
    padding-top: calc(var(--margin-m) * 1);
    padding-bottom: calc(var(--margin-m) * 1);
  }

  .c-highlight[data-media-position=left] {
    flex-wrap: wrap;
  }
  .c-highlight[data-media-position=left] .c-highlight__media {
    padding-right: var(--margin-s);
  }

  .c-highlight[data-media-position=right] {
    flex-direction: row-reverse;
  }
  .c-highlight[data-media-position=right] .c-highlight__media {
    padding-left: var(--margin-s);
  }

  .c-highlight[data-media-size=small] .c-highlight__media {
    width: calc(100% / 3);
  }
  .c-highlight[data-media-size=small] .c-highlight__content-wrap {
    width: calc(100% / 1.5);
  }

  .c-highlight[data-media-size=medium] .c-highlight__media {
    width: calc(100% / 2);
  }
  .c-highlight[data-media-size=medium] .c-highlight__content-wrap {
    width: calc(100% / 2);
  }

  .c-highlight[data-media-size=large] .c-highlight__media {
    width: calc(100% / 1.5);
  }
  .c-highlight[data-media-size=large] .c-highlight__content-wrap {
    width: calc(100% / 3);
  }
}
.c-highlight__content {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  position: relative;
  height: 100%;
  position: relative;
  z-index: 0;
}
.c-highlight__content a::before {
  content: " ";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
}

.c-highlight__heading {
  padding-top: calc(var(--margin-m) * 0.5);
  padding-bottom: calc(var(--margin-m) * 1);
}
@media only screen and (min-width: 768px) {
  .c-highlight__heading {
    padding-top: calc(var(--margin-m) * 0);
    padding-bottom: calc(var(--margin-m) * 2);
  }
}

.c-highlight__text {
  padding-top: calc(var(--margin-m) * 0);
  padding-bottom: calc(var(--margin-m) * 3);
}
@media only screen and (min-width: 768px) {
  .c-highlight__text {
    padding-bottom: calc(var(--margin-m) * 0);
  }
}

.g-events {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}

.g-events.is-empty {
  display: none;
}

.g-events > .c-event-item {
  position: relative;
  overflow: hidden;
  width: 100%;
  display: block;
  display: flex;
  flex-wrap: wrap-reverse;
  flex-direction: row-reverse;
  flex: 1 1 auto;
  padding: var(--margin-s);
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
  margin-bottom: -1px;
}

.c-event-item-archive {
  padding: var(--margin-s) 0;
}
.c-event-item-archive .c-event-item__title {
  max-width: 85%;
}

.c-event-item .c-event-item__title {
  font-size: 2.1rem;
  letter-spacing: -0.005em;
  line-height: 1.2em;
}
@media only screen and (min-width: 1024px) {
  .c-event-item .c-event-item__title {
    font-size: 2.4rem;
  }
}
@media only screen and (min-width: 1280px) {
  .c-event-item .c-event-item__title {
    font-size: 2.5rem;
  }
}
@media only screen and (min-width: 1680px) {
  .c-event-item .c-event-item__title {
    font-size: 2.7rem;
  }
}
.c-event-item--large {
  text-align: center;
}
.c-event-item--large .c-event-item__title {
  font-size: 2.7rem;
  letter-spacing: -0.025em;
  line-height: 1.05em;
}
@media only screen and (min-width: 480px) {
  .c-event-item--large .c-event-item__title {
    font-size: 3.2rem;
  }
}
@media only screen and (min-width: 1024px) {
  .c-event-item--large .c-event-item__title {
    font-size: 4.6rem;
  }
}
@media only screen and (min-width: 1280px) {
  .c-event-item--large .c-event-item__title {
    font-size: 4.8rem;
  }
}
@media only screen and (min-width: 1680px) {
  .c-event-item--large .c-event-item__title {
    font-size: 5.4rem;
  }
}
.c-event-item__info span {
  display: inline-block;
}

.c-event-item__content-wrap {
  position: relative;
  width: 100%;
  padding: var(--margin-s);
  position: relative;
  z-index: 0;
}
.c-event-item__content-wrap a::before {
  content: " ";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
}

.c-event-item__content {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}

.c-event__header {
  text-align: center;
  position: relative;
  z-index: 0;
}
.c-event__header .c-event-item__title {
  font-size: 2.7rem;
  letter-spacing: -0.025em;
  line-height: 1.05em;
}
@media only screen and (min-width: 480px) {
  .c-event__header .c-event-item__title {
    font-size: 3.2rem;
  }
}
@media only screen and (min-width: 1024px) {
  .c-event__header .c-event-item__title {
    font-size: 4.6rem;
  }
}
@media only screen and (min-width: 1280px) {
  .c-event__header .c-event-item__title {
    font-size: 4.8rem;
  }
}
@media only screen and (min-width: 1680px) {
  .c-event__header .c-event-item__title {
    font-size: 5.4rem;
  }
}
.c-event__header a::before {
  content: " ";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
}

.c-event__text {
  padding: var(--margin-m) 0;
}

.c-event__information__media {
  width: calc(100%);
}

.c-event__information__content-wrap {
  width: calc(100%);
  padding-top: calc(var(--margin-m) * 1);
  padding-bottom: calc(var(--margin-m) * 4);
}
@media only screen and (min-width: 768px) {
  .c-event__information__content-wrap {
    width: calc(100% / 2);
    padding-top: calc(var(--margin-m) * 1);
    padding-bottom: calc(var(--margin-m) * 1);
    padding-left: calc(var(--margin-m) * 0.5);
  }
}

.c-event__information__content {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}

@media only screen and (min-width: 768px) {
  .c-event__content:not(.c-event__content--after) section:first-child div {
    border-top: none;
  }
}
.c-article__information {
  position: relative;
  overflow: hidden;
  display: flex;
  flex-wrap: wrap;
  flex: 1 1 auto;
  justify-content: space-between;
  border-top: 1px solid var(--color-border);
  margin: 0 var(--margin-m);
}

.c-article__information__media {
  width: calc(100%);
  padding-right: 0;
}
@media only screen and (min-width: 768px) {
  .c-article__information__media {
    width: calc(100% / 2);
    padding-right: var(--margin-s);
  }
}

.c-article__information__content-wrap {
  width: calc(100%);
  padding-top: calc(var(--margin-m) * 1);
  padding-bottom: calc(var(--margin-m) * 4);
}
@media only screen and (min-width: 768px) {
  .c-article__information__content-wrap {
    width: calc(100% / 2);
    padding-top: calc(var(--margin-m) * 1);
    padding-bottom: calc(var(--margin-m) * 1);
    padding-left: calc(var(--margin-m) * 0.5);
  }
}

.c-card {
  position: relative;
  z-index: 0;
}

.c-card__content {
  position: relative;
  margin-bottom: var(--margin-m);
  position: relative;
  z-index: 0;
}
.c-card__content a::before {
  content: " ";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
}

.c-card__title {
  padding: var(--margin-s) 0;
}

.c-card--archive .o-image-container {
  mix-blend-mode: multiply;
  /* Safari 6.0 - 9.0 */
  filter: grayscale(100%);
}
.c-card--archive:hover .o-image-container {
  /* Safari 6.0 - 9.0 */
  filter: grayscale(0%);
}

.c-content-block {
  display: grid;
  grid-template-columns: 1fr;
  grid-column-gap: var(--margin-m);
  grid-row-gap: var(--margin-m);
  padding: 0 var(--margin-m);
}

.c-content-block--columns {
  grid-template-columns: 1fr;
}
@media only screen and (min-width: 768px) {
  .c-content-block--columns {
    grid-template-columns: 1fr 1fr 1fr;
  }
}
.c-content-block--columns .c-content-col__title {
  padding-top: calc(var(--margin-m) * 1);
}
.c-content-block--columns .c-content-col__text {
  padding-bottom: calc(var(--margin-m) * 1);
}

.c-content-block--columns[data-col=two] {
  grid-template-columns: 1fr;
}
@media only screen and (min-width: 768px) {
  .c-content-block--columns[data-col=two] {
    grid-template-columns: 1fr 1fr;
  }
}

.c-content-block--columns[data-col=three] {
  grid-template-columns: 1fr;
}
@media only screen and (min-width: 768px) {
  .c-content-block--columns[data-col=three] {
    grid-template-columns: 1fr 1fr 1fr;
  }
}

@media only screen and (min-width: 768px) {
  .c-content-block--text,
.c-content-block--content {
    grid-template-columns: 2fr 3fr;
  }
}
@media only screen and (min-width: 1280px) {
  .c-content-block--text,
.c-content-block--content {
    grid-template-columns: 1fr 1fr;
  }
}

.c-content-block__text.style--small {
  font-size: 1.2rem;
  line-height: 1.33em;
  letter-spacing: 0rem;
  -moz-column-count: 1;
       column-count: 1;
}
@media only screen and (min-width: 1280px) {
  .c-content-block__text.style--small {
    font-size: 1.3rem;
  }
}
@media only screen and (min-width: 1680px) {
  .c-content-block__text.style--small {
    font-size: 1.4rem;
  }
}
@media only screen and (min-width: 600px) {
  .c-content-block__text.style--small {
    -moz-column-count: 2;
         column-count: 2;
    -moz-column-gap: var(--margin-m);
         column-gap: var(--margin-m);
  }
}

.c-content-block__structured-text {
  -moz-column-count: 1;
       column-count: 1;
}
@media only screen and (min-width: 600px) {
  .c-content-block__structured-text {
    -moz-column-count: 2;
         column-count: 2;
    -moz-column-gap: var(--margin-m);
         column-gap: var(--margin-m);
  }
}

.c-content-block__parts {
  padding-top: calc(var(--margin-m) * 1);
  padding-bottom: calc(var(--margin-m) * 2);
}

.c-content-block__title {
  font-size: 2.1rem;
  letter-spacing: -0.005em;
  line-height: 1.2em;
  padding-top: calc(var(--margin-m) * 1);
}
@media only screen and (min-width: 1024px) {
  .c-content-block__title {
    font-size: 2.4rem;
  }
}
@media only screen and (min-width: 1280px) {
  .c-content-block__title {
    font-size: 2.5rem;
  }
}
@media only screen and (min-width: 1680px) {
  .c-content-block__title {
    font-size: 2.7rem;
  }
}
.c-content-block__text:not(:first-child) {
  margin-top: calc(var(--margin-m) * 1);
}
.c-content-block__text:not(:last-child) {
  margin-bottom: calc(var(--margin-m) * 1);
}

.c-content-block--text .c-content-block__text {
  margin-top: calc(var(--margin-m) * 1);
  margin-bottom: calc(var(--margin-m) * 1);
}

.c-content-block__heading {
  margin-top: calc(var(--margin-m) * 1);
  margin-bottom: calc(var(--margin-m) * 1);
}

.c-content-block__heading.style--large {
  margin-left: calc(var(--margin-m) * 1);
  margin-right: calc(var(--margin-m) * 1);
  margin-top: calc(var(--margin-m) * 2);
  margin-bottom: calc(var(--margin-m) * 2);
  text-align: center;
}
@media only screen and (min-width: 600px) {
  .c-content-block__heading.style--large {
    margin-left: calc(var(--margin-m) * 2);
    margin-right: calc(var(--margin-m) * 2);
  }
}
@media only screen and (min-width: 1024px) {
  .c-content-block__heading.style--large {
    margin-left: calc(var(--margin-m) * 3);
    margin-right: calc(var(--margin-m) * 3);
  }
}

.c-cta {
  padding: var(--margin-m);
}