@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 {
  --margin-s: 0.5rem;
  --margin-m: 1.0rem;
  --margin-l: 2.0rem;
  --banner-height: 4.0rem;
}
@media only screen and (min-width: 1024px) {
  :root {
    --margin-s: 0.6rem;
    --margin-m: 1.2rem;
    --margin-l: 2.4rem;
    --banner-height: 4.6rem;
  }
}
@media only screen and (min-width: 1280px) {
  :root {
    --margin-s: 0.7rem;
    --margin-m: 1.4rem;
    --margin-l: 2.8rem;
    --banner-height: 5.2rem;
  }
}

/* =========================================================================  */
/* Layout mix-ins */
/* =========================================================================  */
@font-face {
  font-family: "GerstnerProgrammFSLWeb-Light";
  src: url("../fonts/GerstnerProgrammFSLWeb-Light.woff2") format("woff2"), url("../fonts/GerstnerProgrammFSLWeb-Light.woff") format("woff");
  font-weight: 300;
  font-stretch: normal;
  font-style: normal;
}
@font-face {
  font-family: "GerstnerProgrammFSLWeb-Regular";
  src: url("../fonts/GerstnerProgrammFSLWeb-Regular.woff2") format("woff2"), url("../fonts/GerstnerProgrammFSLWeb-Regular.woff") format("woff");
  font-weight: 400;
  font-stretch: normal;
  font-style: normal;
}
@font-face {
  font-family: "GerstnerProgrammFSLWeb-Italic";
  src: url("../fonts/GerstnerProgrammFSLWeb-Italic.woff2") format("woff2"), url("../fonts/GerstnerProgrammFSLWeb-Italic.woff") format("woff");
  font-weight: 400;
  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-background: #ffffff;
  --color-background--gray: rgb(200, 200, 200);
  --color-text: #000000;
  --color-text--gray: #8e8e8e;
  --color-border: rgba(33,33,33,1);
  --color-gradient-from: rgba(255,255,255,1);
  --color-gradient-to: rgba(255,255,255,0);
}

.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;
}

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: "GerstnerProgrammFSLWeb-Regular", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 62.5%;
}

body {
  font-size: 1.3rem;
  line-height: 1.25em;
  -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: 480px) {
  body {
    font-size: 1.4rem;
  }
}
@media only screen and (min-width: 1280px) {
  body {
    font-size: 1.8rem;
  }
}
@media only screen and (min-width: 1680px) {
  body {
    font-size: 2rem;
  }
}
a {
  color: inherit;
  text-decoration: none;
}

p {
  margin-bottom: 1.25em;
  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: "GerstnerProgrammFSLWeb-Italic", "Helvetica Neue", Helvetica, Arial, sans-serif;
}

/* =========================================================================  */
/* Typesetting */
/* =========================================================================  */
.t-small, .o-title--small {
  font-size: 1.2rem;
  line-height: 1.25em;
  letter-spacing: 0.025rem;
}
@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-medium, .o-title--medium {
  font-family: "GerstnerProgrammFSLWeb-Light", "HelveticaNeue-Light", "Helvetica Neue Light", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 2.4rem;
  letter-spacing: -0.0125em;
  line-height: 1em;
  text-transform: uppercase;
  -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;
}
@media only screen and (min-width: 1024px) {
  .t-medium, .o-title--medium {
    font-size: 2.6rem;
  }
}
@media only screen and (min-width: 1280px) {
  .t-medium, .o-title--medium {
    font-size: 3rem;
  }
}
@media only screen and (min-width: 1680px) {
  .t-medium, .o-title--medium {
    font-size: 3.2rem;
  }
}
.t-large, .o-title--large {
  font-family: "GerstnerProgrammFSLWeb-Light", "HelveticaNeue-Light", "Helvetica Neue Light", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 2.4rem;
  letter-spacing: -0.0125em;
  line-height: 1em;
  text-transform: uppercase;
  -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;
}
@media only screen and (min-width: 480px) {
  .t-large, .o-title--large {
    font-size: 5.55vw;
  }
}
@media only screen and (min-width: 1024px) {
  .t-large, .o-title--large {
    font-size: 5.78vw;
  }
}
@media only screen and (min-width: 1280px) {
  .t-large, .o-title--large {
    font-size: 8rem;
  }
}
@media only screen and (min-width: 1680px) {
  .t-large, .o-title--large {
    font-size: 5vw;
  }
}
@media only screen and (min-width: 768px) {
  .t-large, .o-title--large {
    letter-spacing: -0.033em;
  }
}
@media only screen and (min-width: 768px) {
  .t-large, .o-title--large {
    line-height: 0.9em;
  }
}
.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 {
  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;
}

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

/* =========================================================================  */
/* Type treatments */
/* =========================================================================  */
.t-italic {
  font-family: "GerstnerProgrammFSLWeb-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%;
  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";
  }
}
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;
}

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

.featherlight {
  display: none;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 999;
  text-align: center;
  white-space: nowrap;
  cursor: pointer;
  background: var(--color-background);
}

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

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

.featherlight .featherlight-content {
  /* make content container for positioned elements (close button) */
  position: relative;
  /* position: centering vertical and horizontal */
  text-align: left;
  vertical-align: middle;
  display: inline-block;
  /* dimensions: cut off images */
  overflow: auto;
  /* dimensions: handling large content */
  padding-top: calc(var(--margin-m)*3.75);
  padding-bottom: calc(var(--margin-m)*3.75);
  margin-left: var(--margin-l);
  margin-right: var(--margin-l);
  max-height: 100%;
  cursor: auto;
  white-space: normal;
}

/* contains the content */
.featherlight .featherlight-inner {
  /* make sure its visible */
  display: block;
}

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

.featherlight .featherlight-close-icon {
  /* position: centering vertical and horizontal */
  position: fixed;
  z-index: 9999;
  text-indent: -9999px;
  top: var(--margin-m);
  right: var(--margin-m);
  padding: var(--margin-s);
  width: 0.7em;
  height: 0.7em;
  font-family: "GerstnerProgrammFSLWeb-Light", "HelveticaNeue-Light", "Helvetica Neue Light", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 2.4rem;
  letter-spacing: -0.0125em;
  line-height: 1em;
  text-transform: uppercase;
  background-image: url("../images/icon-cross.svg");
  background-repeat: no-repeat;
  background-position: center;
  color: inherit;
}
@media only screen and (min-width: 1024px) {
  .featherlight .featherlight-close-icon {
    font-size: 2.6rem;
  }
}
@media only screen and (min-width: 1280px) {
  .featherlight .featherlight-close-icon {
    font-size: 3rem;
  }
}
@media only screen and (min-width: 1680px) {
  .featherlight .featherlight-close-icon {
    font-size: 3.2rem;
  }
}
@media (prefers-color-scheme: dark) {
  .featherlight .featherlight-close-icon {
    background-image: url("../images/icon-cross-white.svg");
  }
}
.featherlight .featherlight-image {
  width: 100%;
}

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

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

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

/* handling phones and small screens */
@media only screen and (max-width: 1024px) {
  .featherlight .featherlight-content {
    /* dimensions: maximize lightbox with for small screens */
    margin-left: 0;
    margin-right: 0;
    max-height: 98%;
    padding: 10px 10px 0;
    border-bottom: 10px solid transparent;
  }
}
/* hide non featherlight items when printing */
@media print {
  html.with-featherlight > * > :not(.featherlight) {
    display: none;
  }
}
/* 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, [data-collapsed=true] .c-collapsible-section__banner a: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, [data-collapsed=true] .c-collapsible-section__banner a: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, [data-collapsed=false] .c-collapsible-section__banner a: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 {
  padding: var(--margin-s) calc(var(--margin-m) / 1.5);
  border: 1px solid var(--color-border);
  cursor: pointer;
  text-decoration: none !important;
  text-transform: uppercase;
  line-height: 1em;
  display: inline-block;
  margin-top: var(--margin-m);
}

.o-button + .o-button {
  margin-left: calc(var(--margin-m) / 2);
}

.o-button:active,
.o-button:focus,
.o-button:hover {
  border: 1px solid var(--color-border);
  background-color: var(--color-black);
  color: var(--color-white);
}

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

.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:active,
.o-link--toggle:active,
.o-link:focus,
.o-link--toggle:focus,
.o-link:hover,
.o-link--toggle:hover {
  text-decoration: underline;
}

.o-link--toggle.is-active {
  text-decoration: underline;
}

.o-rich-text a {
  cursor: pointer;
  text-decoration: underline;
  -webkit-text-decoration-color: var(--color-black);
          text-decoration-color: var(--color-black);
  text-decoration-thickness: 0.04em;
  text-underline-offset: 0.1em;
  -webkit-text-decoration-skip: ink;
          text-decoration-skip-ink: auto;
}

.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-link.is-active,
.o-link:active,
.o-link:focus,
.o-link:hover {
  color: inherit !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.25em;
}
.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.25em;
}

.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-title {
  text-transform: uppercase;
  margin-bottom: 0;
}

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

.o-rich-text h3 {
  color: var(--color-text--gray);
  text-transform: uppercase;
}

.o-rich-text ul {
  padding-left: 0.8em;
  list-style-type: none;
  margin-top: 1.25em;
  margin-bottom: 1.25em;
}
.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: -0.8em;
  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.25em;
}

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

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

.o-rich-text figure {
  padding-top: calc(var(--margin-m) * 1);
  padding-bottom: calc(var(--margin-m) * 1);
}
.o-rich-text figure + figure {
  padding-top: calc(var(--margin-m) * 0);
}

.o-title {
  text-transform: uppercase;
  -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;
}

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

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

.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.25em;
  letter-spacing: 0.025rem;
  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;
}

.o-tag {
  display: inline-block;
  padding: calc(var(--margin-s) * 1.5) var(--margin-m);
  border: 1px solid var(--color-border);
  border-radius: 50px;
  margin: calc(var(--margin-m)) calc(var(--margin-s) / 4);
  transition: border-radius 0.28s, background-color 0.28s;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  pointer-events: cursor;
  line-height: 1em;
}
@media only screen and (min-width: 600px) {
  .o-tag {
    padding: var(--margin-s) var(--margin-m);
    margin: calc(var(--margin-s) * 1.25) calc(var(--margin-s) / 8);
  }
}

.o-tag:active,
.o-tag:focus,
.o-tag:hover {
  border: 1px solid var(--color-border);
  border-radius: 0;
}

.o-tag:first-child {
  margin-left: 0;
}

.o-tag.is-active {
  transition: border-radius 0.28s, background-color 0.28s;
  border-radius: 0;
  background-color: var(--color-black);
  color: var(--color-white);
}

@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);
}

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

@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;
  }
}
@media only screen and (max-width: 767px) {
  .g-banner--mobile-stacked {
    display: block !important;
    width: 100;
  }
  .g-banner--mobile-stacked .g-banner__list + .g-banner__list {
    border-top: 1px solid var(--color-black);
  }
}
.g-banner + .g-banner {
  border-top: 1px solid var(--color-black);
}

.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;
}

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

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

.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) * 1);
  padding-bottom: calc(var(--margin-m) * 1);
  padding-left: calc(var(--margin-m) * 0.5);
  padding-right: calc(var(--margin-m) * 0.5);
}

.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) * 1);
  padding-bottom: calc(var(--margin-m) * 1);
  padding-left: calc(var(--margin-m) * 0.75);
  padding-right: calc(var(--margin-m) * 0.75);
}

/* =========================================================================  */
/* Flexbox fallback */
/* =========================================================================  */
.g-cards {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  margin: 0 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% / 8);
  }
}

.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: 0 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(170px, 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-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__header,
.g-section__end,
.g-section-banner {
  position: relative;
  display: block;
  padding-top: var(--margin-m);
  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-pre-header {
  background-color: var(--color-background);
  display: grid;
  grid-column-gap: var(--margin-m);
  grid-row-gap: var(--margin-m);
  padding: var(--margin-m);
  grid-template-columns: 1fr 1fr 1fr 1fr;
}
.c-pre-header > div:nth-child(1) {
  grid-column: span 4;
}
@media only screen and (min-width: 1024px) {
  .c-pre-header > div:nth-child(1) {
    grid-column: span 2;
  }
}
@media only screen and (min-width: 480px) {
  .c-pre-header > div:nth-child(2),
.c-pre-header > div:nth-child(3) {
    grid-column: span 2;
  }
}
@media only screen and (min-width: 1024px) {
  .c-pre-header > div:nth-child(2),
.c-pre-header > div:nth-child(3) {
    grid-column: auto;
  }
}

.c-pre-header__logo {
  left: 0;
  top: 0;
  font-size: 0;
  line-height: 1em;
}

.c-pre-header__info-container {
  display: none;
}
@media only screen and (min-width: 480px) {
  .c-pre-header__info-container {
    display: block;
    padding-bottom: calc(var(--margin-m) * 0);
  }
}

.c-pre-header__info {
  display: block;
  border-top: 1px solid var(--color-border);
  padding-top: calc(var(--margin-m) * 0.5);
}

.c-site-header {
  position: -webkit-sticky;
  position: sticky;
  width: 100%;
  top: -1px;
  z-index: 901;
  padding: 0 calc(var(--margin-m));
  background-color: var(--color-background);
}

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

.c-site-footer {
  border-top: 1px solid var(--color-border);
  background-color: var(--color-background);
}

.c-page-heading {
  display: flex;
  display: flex-wrap;
  justify-content: space-between;
  margin: 0 var(--margin-m);
  padding: var(--margin-s) 0;
}

.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;
}

.c-nav {
  display: flex;
  flex-direction: row;
  position: relative;
  width: 100%;
  margin: 0 auto;
  z-index: 902;
  height: var(--banner-height);
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
  background-color: var(--color-background);
}

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

.c-nav__list:last-child {
  margin-right: 0;
  margin-left: auto;
}

.c-nav__list li {
  height: 100%;
}

.c-nav__list li a {
  height: 100%;
  display: flex;
  align-items: center;
  line-height: 1em;
  padding: 0 var(--margin-s);
}

.c-nav__list:hover li:not(.c-nav__logo) a,
.c-nav__list.has-active-item li:not(.c-nav__logo) a {
  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;
}
.c-nav__list:hover li:not(.c-nav__logo) a:hover, .c-nav__list:hover li:not(.c-nav__logo) a.active,
.c-nav__list.has-active-item li:not(.c-nav__logo) a:hover,
.c-nav__list.has-active-item li:not(.c-nav__logo) a.active {
  color: inherit;
}

.c-nav__list--desktop .c-nav__item {
  display: none;
}
@media only screen and (min-width: 1024px) {
  .c-nav__list--desktop .c-nav__item {
    display: inline-block;
  }
}

li.c-nav__toggle-mobile-nav a {
  padding-left: 0;
}

@media only screen and (min-width: 1024px) {
  li.c-nav__toggle-mobile-nav {
    display: none;
  }
}

.c-nav__list .c-nav__item--language a {
  padding-left: calc(var(--margin-s) / 2);
  padding-right: calc(var(--margin-s) / 2);
}

.c-nav__item--language a {
  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;
}
.c-nav__item--language a:hover, .c-nav__item--language a.active {
  color: inherit;
}

.c-nav__item--search span {
  display: none;
}

.c-nav__list li:first-of-type a,
.c-nav__logo + li a {
  padding-left: 0;
}

.c-nav__list li:last-of-type a {
  padding-right: 0;
}

.c-nav .c-nav__logo {
  pointer-events: none;
  padding: 0;
  width: 0;
  -webkit-transition-property: width;
  -webkit-transition-duration: 0.28s;
  -webkit-transition-timing-function: ease-in-out;
  -webkit-transition-delay: 0.28s;
  -moz-transition-property: width;
  -moz-transition-duration: 0.28s;
  -moz-transition-timing-function: ease-in-out;
  -moz-transition-delay: 0.28s;
  -o-transition-property: width;
  -o-transition-duration: 0.28s;
  -o-transition-timing-function: ease-in-out;
  -o-transition-delay: 0.28s;
  -ms-transition-property: width;
  -ms-transition-duration: 0.28s;
  -ms-transition-timing-function: ease-in-out;
  -ms-transition-delay: 0.28s;
  transition-property: width;
  transition-duration: 0.28s;
  transition-timing-function: ease-in-out;
  transition-delay: 0.28s;
}
.c-nav .c-nav__logo-container {
  opacity: 0;
  -webkit-transition-property: opacity;
  -webkit-transition-duration: 0.28s;
  -webkit-transition-timing-function: ease-in-out 0;
  -webkit-transition-delay: 0s;
  -moz-transition-property: opacity;
  -moz-transition-duration: 0.28s;
  -moz-transition-timing-function: ease-in-out 0;
  -moz-transition-delay: 0s;
  -o-transition-property: opacity;
  -o-transition-duration: 0.28s;
  -o-transition-timing-function: ease-in-out 0;
  -o-transition-delay: 0s;
  -ms-transition-property: opacity;
  -ms-transition-duration: 0.28s;
  -ms-transition-timing-function: ease-in-out 0;
  -ms-transition-delay: 0s;
  transition-property: opacity;
  transition-duration: 0.28s;
  transition-timing-function: ease-in-out 0;
  transition-delay: 0s;
}

.c-nav[stuck] .c-nav__logo {
  pointer-events: auto;
  width: 3.4em;
  -webkit-transition-property: width;
  -webkit-transition-duration: 0.28s;
  -webkit-transition-timing-function: ease-in-out;
  -webkit-transition-delay: 0s;
  -moz-transition-property: width;
  -moz-transition-duration: 0.28s;
  -moz-transition-timing-function: ease-in-out;
  -moz-transition-delay: 0s;
  -o-transition-property: width;
  -o-transition-duration: 0.28s;
  -o-transition-timing-function: ease-in-out;
  -o-transition-delay: 0s;
  -ms-transition-property: width;
  -ms-transition-duration: 0.28s;
  -ms-transition-timing-function: ease-in-out;
  -ms-transition-delay: 0s;
  transition-property: width;
  transition-duration: 0.28s;
  transition-timing-function: ease-in-out;
  transition-delay: 0s;
}
.c-nav[stuck] .c-nav__logo-container {
  opacity: 1;
  -webkit-transition-property: opacity;
  -webkit-transition-duration: 0.28s;
  -webkit-transition-timing-function: ease-in-out;
  -webkit-transition-delay: 0.28s;
  -moz-transition-property: opacity;
  -moz-transition-duration: 0.28s;
  -moz-transition-timing-function: ease-in-out;
  -moz-transition-delay: 0.28s;
  -o-transition-property: opacity;
  -o-transition-duration: 0.28s;
  -o-transition-timing-function: ease-in-out;
  -o-transition-delay: 0.28s;
  -ms-transition-property: opacity;
  -ms-transition-duration: 0.28s;
  -ms-transition-timing-function: ease-in-out;
  -ms-transition-delay: 0.28s;
  transition-property: opacity;
  transition-duration: 0.28s;
  transition-timing-function: ease-in-out;
  transition-delay: 0.28s;
}

.c-mobile-nav {
  background-color: var(--color-white);
  position: relative;
  width: 100%;
  margin: 0 auto;
}
.c-mobile-nav .c-mobile-nav__item {
  position: relative;
  border-bottom: 1px solid var(--color-border);
  display: block;
  width: 100%;
}
.c-mobile-nav .c-mobile-nav__item a {
  display: block;
  width: 100%;
  line-height: 1em;
  padding: calc(var(--margin-m) / 1.5) 0;
}
@media only screen and (min-width: 1024px) {
  .c-mobile-nav {
    display: none;
  }
}

.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-mobile-nav[data-state=open] {
  display: block;
}
@media only screen and (min-width: 1024px) {
  .c-mobile-nav[data-state=open] {
    display: none;
  }
}

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

.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-slider:after {
  content: "flickity";
  display: none;
  /*
  @include mq($br-medium) {
    content: '';
  }
  */
}

.c-slider.is-hidden {
  opacity: 0;
}

.c-slider.flickity-enabled {
  opacity: 1;
}

.c-slider {
  min-height: 50px;
  height: auto;
}

.c-slider__cell {
  display: block;
  width: auto;
  height: auto;
  padding-left: calc(var(--margin-m) * 0.5);
  padding-right: calc(var(--margin-m) * 0.5);
}

.c-slider__cell {
  opacity: 1;
}

.c-slider__cell.is-selected {
  opacity: 1;
}

.c-slider__cell__image {
  width: auto;
  max-width: none;
  max-height: 600px;
  height: calc(75vw / 1.5);
  opacity: 0;
  -webkit-transition-property: opacity;
  -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: opacity;
  -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: opacity;
  -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: opacity;
  -ms-transition-duration: 0.28s;
  -ms-transition-timing-function: cubic-bezier(0.12, 0.67, 0.53, 1);
  -ms-transition-delay: 0s;
  transition-property: opacity;
  transition-duration: 0.28s;
  transition-timing-function: cubic-bezier(0.12, 0.67, 0.53, 1);
  transition-delay: 0s;
}
@media only screen and (min-width: 1024px) {
  .c-slider__cell__image {
    height: calc(66vw / 1.5);
  }
}

/* fade in lazy loaded image */
.c-slider__cell__image.lazyloaded,
.c-slider__cell__image.flickity-lazyloaded,
.c-slider__cell__image.flickity-lazyerror {
  opacity: 1;
}

.c-slider:hover .c-slider__btn {
  opacity: 1;
}

.c-slider__btn:disabled {
  opacity: 0.3;
  cursor: auto;
}

.c-slider__btn {
  position: absolute;
  display: block;
  width: 4.4rem;
  height: 100%;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  cursor: pointer;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: 20%;
  mix-blend-mode: difference;
  color: white;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  padding: calc(var(--margin-m) * 0.5);
  border: none;
  opacity: 0;
  -webkit-transition-property: opacity;
  -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: opacity;
  -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: opacity;
  -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: opacity;
  -ms-transition-duration: 0.28s;
  -ms-transition-timing-function: cubic-bezier(0.12, 0.67, 0.53, 1);
  -ms-transition-delay: 0s;
  transition-property: opacity;
  transition-duration: 0.28s;
  transition-timing-function: cubic-bezier(0.12, 0.67, 0.53, 1);
  transition-delay: 0s;
}

body.is-touch .c-slider__btn {
  opacity: 1;
}

.c-slider__btn--prev {
  left: var(--margin-s);
}
.c-slider__btn--prev:after {
  content: "\2190";
}

.c-slider__btn--next {
  right: var(--margin-s);
}
.c-slider__btn--next:after {
  content: "\2192";
}

.c-exhibition__header--portrait .c-exhibition__subtitle {
  position: absolute;
  bottom: 0;
}

.c-exhibition__meta {
  padding-bottom: calc(var(--margin-m) * 2);
}

.c-collapsible-section__content {
  overflow: hidden;
  transition: max-height 0.44s cubic-bezier(0.12, 0.67, 0.53, 1);
}

.c-collapsible-section__inner {
  overflow: hidden;
  height: auto;
}

.c-collapsible-section__banner {
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}
.c-collapsible-section__banner a {
  width: 100%;
  display: block;
}

[data-collapsed=true] .c-collapsible-section__banner a {
  transform: rotate(0deg);
}
[data-collapsed=true] .c-collapsible-section__banner a:hover:before {
  transform: rotate(90deg);
}

[data-collapsed=true] .c-collapsible-section__content {
  max-height: 0px;
}

.no-js [data-collapsed=true] .c-collapsible-section__content,
.no-js .c-collapsible-section__content {
  display: block;
  max-height: auto;
}

.c-collapsible-text {
  position: relative;
  overflow: hidden;
  -webkit-transition-property: max-height;
  -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: max-height;
  -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: max-height;
  -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: max-height;
  -ms-transition-duration: 0.44s;
  -ms-transition-timing-function: cubic-bezier(0.12, 0.67, 0.53, 1);
  -ms-transition-delay: 0s;
  transition-property: max-height;
  transition-duration: 0.44s;
  transition-timing-function: cubic-bezier(0.12, 0.67, 0.53, 1);
  transition-delay: 0s;
  max-height: 15em;
}
.c-collapsible-text.is-hoverstate {
  max-height: calc(15em + var(--margin-m));
}

.c-collapsible-text[data-state=closed] .c-collapsible-text__toggle span.text-more {
  display: block;
}
.c-collapsible-text[data-state=closed] .c-collapsible-text__toggle span.text-less {
  display: none;
}

.c-collapsible-text[data-state=open] .c-collapsible-text__toggle span.text-more {
  display: none;
}
.c-collapsible-text[data-state=open] .c-collapsible-text__toggle span.text-less {
  display: block;
}

.no-js .c-collapsible-text {
  max-height: auto;
}

.c-collapsible-text__toggle {
  padding: var(--margin-m);
  padding-left: 0;
  cursor: pointer;
  position: absolute;
  bottom: var(--margin-s);
  text-align: center;
  z-index: 2;
}
.c-collapsible-text__toggle.is-hidden {
  display: none;
}

.o-gradient:before {
  content: "";
  position: absolute;
  display: block;
  left: 0;
  right: 0;
  z-index: 1;
  width: 100vw;
  height: 10em;
  opacity: 1;
  pointer-events: none;
  transition: opacity 0.44s cubic-bezier(0.12, 0.67, 0.53, 1);
}
@media only screen and (min-width: 768px) {
  .o-gradient:before {
    width: 100%;
  }
}

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

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

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

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

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

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

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

.c-partners {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(75px, 100px));
  grid-template-rows: auto;
  grid-column-gap: var(--margin-m);
  grid-row-gap: var(--margin-m);
}
@media only screen and (min-width: 1024px) {
  .c-partners {
    grid-template-columns: repeat(auto-fill, minmax(100px, 150px));
  }
}
@media only screen and (min-width: 1280px) {
  .c-partners {
    grid-template-columns: repeat(auto-fill, minmax(120px, 200px));
  }
}

.c-partners__image {
  margin-left: 0;
  margin-right: 0;
  position: relative;
}
.c-partners__image::before {
  content: "";
  display: block;
  padding-bottom: calc(100% / 1.5);
}

.c-partners__image > img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 66.66%;
  height: 66.66%;
  -webkit-filter: grayscale(100%);
          filter: grayscale(100%);
  -o-object-fit: contain;
     object-fit: contain;
  font-family: "object-fit: contain";
}

.c-highlight {
  margin: 0 var(--margin-m);
  border-bottom: 1px solid var(--color-border);
  margin-bottom: -1px;
}
.c-highlight:not(:first-child) {
  border-top: 1px solid var(--color-border);
}

.c-highlight__content-wrap {
  width: calc(100%);
  padding-top: calc(var(--margin-m) * 0.5);
  padding-bottom: calc(var(--margin-m) * 4);
}

@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) * 0.5);
    padding-bottom: var(--margin-m);
  }

  .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=left] .c-highlight__content-wrap {
    padding-left: var(--margin-s);
    padding-right: 0;
  }

  .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-position=right] .c-highlight__content-wrap {
    padding-right: var(--margin-s);
    padding-left: 0;
  }

  .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-bottom: calc(var(--margin-m) * 0.5);
}
@media only screen and (min-width: 768px) {
  .c-highlight__heading {
    top: 0.7em;
    position: -webkit-sticky;
    position: sticky;
    padding-bottom: calc(var(--margin-m) * 4);
  }
}

.g-events {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  margin: 0 var(--margin-s) 0 var(--margin-s);
}
@media only screen and (max-width: 479px) {
  .g-events {
    display: grid;
    grid-column-gap: var(--margin-m);
    grid-row-gap: var(--margin-m);
    grid-template-columns: repeat(1fr);
    margin: 0 var(--margin-m) var(--margin-m) var(--margin-m);
    padding-top: calc(var(--margin-m) * 1);
    padding-bottom: calc(var(--margin-m) * 3);
    border-top: 1px solid var(--color-border);
  }
}
@media only screen and (min-width: 480px) and (max-width: 767px) {
  .g-events {
    display: grid;
    grid-column-gap: var(--margin-m);
    grid-row-gap: var(--margin-m);
    grid-template-columns: repeat(2, 1fr);
    margin: 0 var(--margin-m) var(--margin-m) var(--margin-m);
    padding-top: calc(var(--margin-m) * 1);
    padding-bottom: calc(var(--margin-m) * 3);
    border-top: 1px solid var(--color-border);
  }
}

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

.g-events > .g-event__item {
  position: relative;
  z-index: 0;
  padding: 0;
  width: 100%;
  display: block;
}
@media only screen and (min-width: 768px) {
  .g-events > .g-event__item {
    position: relative;
    overflow: hidden;
    display: flex;
    flex-wrap: wrap-reverse;
    flex-direction: row-reverse;
    flex: 1 1 auto;
    justify-content: space-between;
    margin: 0 var(--margin-s) 0 var(--margin-s);
    border-top: 1px solid var(--color-border);
    border-bottom: 1px solid var(--color-border);
    margin-bottom: -1px;
  }
}

@media only screen and (max-width: 767px) {
  .c-event-item__content {
    position: relative;
    margin-bottom: var(--margin-m);
  }

  .c-event-item__title {
    padding-top: var(--margin-s);
    padding-bottom: var(--margin-s);
  }

  .c-event-item__info {
    display: none;
  }
}
@media only screen and (min-width: 768px) {
  .c-event-item__image {
    width: calc(100% / 2);
    height: 100%;
    padding-left: var(--margin-m);
  }
}
@media only screen and (min-width: 1024px) {
  .c-event-item__image {
    width: calc(100% / 4);
    height: 100%;
    padding-left: var(--margin-m);
  }
}

.c-event-item__content-wrap {
  position: relative;
  width: 100%;
  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;
}
@media only screen and (min-width: 768px) {
  .c-event-item__content-wrap {
    width: calc(100% / 2);
    padding: var(--margin-m);
    padding-left: 0;
  }
}
@media only screen and (min-width: 1024px) {
  .c-event-item__content-wrap {
    width: calc(100% / 1.35);
    padding: var(--margin-m);
    padding-left: 0;
  }
}

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

.c-event__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);
}

@media only screen and (min-width: 768px) {
  .c-event__information {
    border-bottom: 1px solid var(--color-border);
  }
}
.c-event__information__media {
  width: calc(100%);
  padding-right: 0;
}
@media only screen and (min-width: 768px) {
  .c-event__information__media {
    width: calc(100% / 2);
    padding-right: var(--margin-s);
  }
}

.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-datepicker-container {
  display: flex;
  margin: 0 var(--margin-m);
  padding: calc(var(--margin-m) / 1.5) 0;
  display: flex-wrap;
  border-top: 1px solid var(--color-black);
}

#datepicker-field {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
  top: -9999px;
}

/*!
 * Pikaday
 * Copyright © 2014 David Bushell | BSD & MIT license | https://dbushell.com/
 */
.pika-single {
  -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;
  z-index: 1;
  display: block;
  position: relative;
  color: var(--color-black);
  background: var(--color-white);
  border: none;
}
.pika-single.is-hidden {
  display: none;
}
.pika-single.is-bound {
  position: absolute;
  box-shadow: 0 5px 15px -5px rgba(0, 0, 0, 0.5);
}

.pika-single {
  *zoom: 1;
}
.pika-single:before, .pika-single:after {
  content: " ";
  display: table;
}
.pika-single:after {
  clear: both;
}

.pika-lendar {
  float: left;
  width: 100%;
  max-width: 100%;
  margin: 0;
}
@media only screen and (min-width: 480px) {
  .pika-lendar {
    max-width: 25em;
  }
}

.pika-title {
  position: relative;
  text-align: center;
  padding: calc(var(--margin-m) * 1);
}
.pika-title select {
  display: none;
}

.pika-label {
  text-transform: capitalize;
  display: inline-block;
  *display: inline;
  position: relative;
  z-index: 1;
  overflow: visible;
  margin: 0;
  padding: 0px 3px;
  font-weight: normal;
  line-height: 1em;
  color: var(--color-black);
  background-color: var(--color-white);
}

.pika-prev,
.pika-next {
  display: block;
  cursor: pointer;
  position: relative;
  outline: none;
  border: 0;
  padding: 0;
  width: 0.9em;
  height: 0.9em;
  text-indent: -9999px;
  white-space: nowrap;
  overflow: hidden;
  background-color: transparent;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: 90% 90%;
  *position: absolute;
  *top: 0;
}
.pika-prev:hover,
.pika-next:hover {
  opacity: 1;
}
.pika-prev.is-disabled,
.pika-next.is-disabled {
  cursor: default;
  opacity: 0.4;
}

.pika-prev,
.is-rtl .pika-next {
  float: left;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpolyline points='11.5 22 1.5 12 11.5 2' style='fill: none;stroke: %23000;stroke-miterlimit: 10;stroke-width: 1.75px'/%3E%3Cline x1='2.5' y1='12' x2='22' y2='12' style='fill: none;stroke: %23000;stroke-miterlimit: 10;stroke-width: 1.75px'/%3E%3C/svg%3E%0A");
  *left: 0;
}

.pika-next,
.is-rtl .pika-prev {
  float: right;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpolyline points='12 2 22 12 12 22' style='fill: none;stroke: %23000;stroke-miterlimit: 10;stroke-width: 1.75px'/%3E%3Cline x1='21' y1='12' x2='1.5' y2='12' style='fill: none;stroke: %23000;stroke-miterlimit: 10;stroke-width: 1.75px'/%3E%3C/svg%3E%0A");
  *right: 0;
}

.pika-select {
  display: none;
}

.pika-table {
  width: 100%;
  border-collapse: collapse;
  border-spacing: 0;
  border: 0;
}
.pika-table th,
.pika-table td {
  width: 14.2857142857%;
  padding: 0;
}
.pika-table th {
  padding: calc(var(--margin-m) * 1);
  color: var(--color-black);
  text-transform: capitalize;
  font-weight: normal;
  text-align: center;
}
.pika-table abbr {
  border-bottom: none;
  cursor: help;
}

.pika-button {
  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;
  cursor: pointer;
  position: relative;
  display: block;
  box-sizing: border-box;
  outline: none;
  border: none;
  margin: 0;
  width: 100%;
  padding: calc(var(--margin-m) * 1);
  color: var(--color-black);
  text-align: center;
  background: none;
}
.pika-button:before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  width: 2.25em;
  height: 2.25em;
  border: 1px solid rgba(0, 0, 0, 0);
  z-index: -1;
}
.is-today .pika-button {
  color: var(--color-black);
  font-weight: normal;
}
.is-today .pika-button:before {
  border: 1px solid black;
}
.is-selected .pika-button {
  color: var(--color-white) !important;
  font-weight: normal;
}
.is-selected .pika-button:before {
  background-color: var(--color-black);
  border: 1px solid black;
}
.is-disabled .pika-button, .is-outside-current-month .pika-button {
  color: var(--color-text--gray);
  opacity: 0.75;
}
.is-disabled .pika-button {
  pointer-events: none;
  cursor: default;
}
.pika-button:hover {
  color: var(--color-black);
}
.pika-button:hover:before {
  border: 1px solid black;
}
.pika-button .is-selection-disabled {
  pointer-events: none;
  cursor: default;
}

.pika-week {
  color: var(--color-text--gray);
}

.is-inrange .pika-button {
  background: #D5E9F7;
}

.is-startrange .pika-button {
  color: #fff;
  background: #6CB31D;
  box-shadow: none;
  border-radius: 3px;
}

.is-endrange .pika-button {
  color: #fff;
  background: #33aaff;
  box-shadow: none;
  border-radius: 3px;
}

.c-content-block {
  display: grid;
  grid-template-columns: 1fr;
  grid-column-gap: var(--margin-m);
  grid-row-gap: var(--margin-m);
  margin: 0 var(--margin-m);
  border-top: 1px solid var(--color-border);
}
@media only screen and (min-width: 768px) {
  .c-content-block:not(.c-content-block--partners) {
    grid-template-columns: 1fr 1fr;
  }
}

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

.c-content-block__text,
.c-partners {
  padding-top: calc(var(--margin-m) * 1);
  padding-bottom: calc(var(--margin-m) * 4);
}

.c-sideshow:after {
  content: "flickity";
  display: none;
}

.c-sideshow.is-hidden {
  opacity: 0;
}

.c-sideshow.flickity-enabled {
  opacity: 1;
}

.c-sideshow {
  min-height: 50px;
  height: auto;
}

.c-sideshow__cell {
  display: block;
  width: auto;
  height: auto;
}

.c-sideshow__cell {
  opacity: 1;
  -webkit-transition-property: opacity;
  -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: opacity;
  -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: opacity;
  -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: opacity;
  -ms-transition-duration: 0.28s;
  -ms-transition-timing-function: cubic-bezier(0.12, 0.67, 0.53, 1);
  -ms-transition-delay: 0s;
  transition-property: opacity;
  transition-duration: 0.28s;
  transition-timing-function: cubic-bezier(0.12, 0.67, 0.53, 1);
  transition-delay: 0s;
}

.c-sideshow__cell.is-selected {
  opacity: 1;
}

/* fade in lazy loaded image */
.c-sideshow__cell__image.lazyloaded,
.c-sideshow__cell__image.flickity-lazyloaded,
.c-sideshow__cell__image.flickity-lazyerror {
  opacity: 1;
}

.c-sideshow:hover .c-sideshow__btn {
  opacity: 1;
}

.c-sideshow__btn:disabled {
  opacity: 0.3;
  cursor: auto;
}

body.is-touch .c-sideshow__btn {
  opacity: 1;
}