@charset "UTF-8";
/*------------------------------------*\
  $MEDIA QUERIES
\*------------------------------------*/
/*------------------------------------*\
  $VARS
\*------------------------------------*/
@font-face {
  font-family: "Rubik";
  src: url("/assets/rubik_compressed/rubik-light-f03be705.woff2") format("woff2"), url("/assets/rubik_compressed/rubik-light-ee2e7bda.woff") format("woff");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Rubik";
  src: url("/assets/rubik_compressed/rubik-regular-56d4ea11.woff2") format("woff2"), url("/assets/rubik_compressed/rubik-regular-0c26bfa0.woff") format("woff");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Rubik";
  src: url("/assets/rubik_compressed/rubik-medium-eecf8a67.woff2") format("woff2"), url("/assets/rubik_compressed/rubik-medium-3413c48c.woff") format("woff");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Rubik";
  src: url("/assets/rubik_compressed/rubik-bold-70f895b3.woff2") format("woff2"), url("/assets/rubik_compressed/rubik-bold-13094e12.woff") format("woff");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
/*------------------------------------*\
  $MIXINS
\*------------------------------------*/
/**
 * Target devices based on pixel ratio
 */
/**
 * Link states
 *
 * @include states {
 *   color: blue;
 * }
 */
/**
 * Style all headings at once
 *
 * @include headings {
 *   color: red;
 * }
 */
/**
 * Vertically align an element
 * inside its container
 *
 * .thing {  @include vertically-align; }
 */
/**
 * Horizontally align an element
 * inside its container
 *
 * .thing {  @include horizontally-align; }
 */
/**
 * Centrally align an element
 * inside its container
 *
 * .thing {  @include centrally-align; }
 */
/**
 * SVG background images with fallback
 *
 * .thing { @include svg-background(icon-red); }
 */
/**
 * Set font-size and line-height in PX at once
 * Convert font-size to REMS
 * Convert line-height to EMS
 *
 * .text { @include fslh(16, 20); }
 */
/**
 * Set the position and top, right, bottom, left values
 *
 * .thing {  @include position(relative, 0, 1px, 10px, 0); }
 */
/**
 * Add aspect ratio sized boxes for image containers
 * So height of boxes are maintained while content loads
 * And we therefore avoid content shifting
 *
 * .image-container { @include aspect-ratio(1600, 900); }
 */
/**
 * Aspect ratio sized height for image/video containers
 * So height of boxes are maintained while content is
 * placed using `object-fit: cover;`
 *
 * .glide__video--wrap:before { @include aspect-ratio-padding(1600, 900); }
 */
/**
* A SCSS mixin for creating scrim gradients
* Inspired by Andreas Larson - https://github.com/larsenwork
* https://css-tricks.com/easing-linear-gradients/
*
* .gradient {  @include scrimGradient(#000000, 'to top'); }
*/
/**
 * Visually hide an element
 * Use this mixin, don't use @extand on the class
 * Useful for making forms accesible whilst maintaining design
 *
 * .thing {  @include visually-hidden; }
 */
/*------------------------------------*\
  $FUNCTIONS
\*------------------------------------*/
/**
 * Quickly get an em value
 */
/**
 * Quickly get a rem value
 */
/**
 * Font sizing in rems
 */
/**
 * Add hexcodes & hexcode variables into background image encoded URLs
 */
/*------------------------------------*\
  $GLIDE-CORE
\*------------------------------------*/
.glide {
  position: relative;
  width: 100%;
  box-sizing: border-box;
}
.glide * {
  box-sizing: inherit;
}
.glide__track {
  overflow: hidden;
}
.glide__slides {
  position: relative;
  width: 100%;
  list-style: none;
  backface-visibility: hidden;
  transform-style: preserve-3d;
  touch-action: pan-Y;
  overflow: hidden;
  padding: 0;
  white-space: nowrap;
  display: flex;
  flex-wrap: nowrap;
  will-change: transform;
}
.glide__slides--dragging {
  user-select: none;
}
.glide__slide {
  width: 100%;
  height: 100%;
  flex-shrink: 0;
  white-space: initial;
  user-select: none;
  -webkit-touch-callout: none;
  -webkit-tap-highlight-color: transparent;
}
.glide__slide a {
  user-select: none;
  -webkit-user-drag: none;
  -moz-user-select: none;
  -ms-user-select: none;
}
.glide__arrows {
  -webkit-touch-callout: none;
  user-select: none;
}
.glide__bullets {
  -webkit-touch-callout: none;
  user-select: none;
}
.glide__arrow {
  position: absolute;
  display: block;
  top: 50%;
  z-index: 2;
  color: #fff;
  text-transform: uppercase;
  padding: 9px 12px;
  background-color: transparent;
  border: 2px solid rgba(255, 255, 255, 0.5);
  border-radius: 4px;
  box-shadow: 0 0.25em 0.5em 0 rgba(0, 0, 0, 0.1);
  text-shadow: 0 0.25em 0.5em rgba(0, 0, 0, 0.1);
  opacity: 1;
  cursor: pointer;
  transition: opacity 150ms ease, border 300ms ease-in-out;
  transform: translateY(-50%);
  line-height: 1;
}
.glide__arrow:hover {
  border-color: #fff;
}
.glide__arrow--left {
  left: 2em;
}
.glide__arrow--right {
  right: 2em;
}
.glide__arrow--disabled {
  opacity: 0.33;
}
.glide__bullets {
  position: absolute;
  z-index: 2;
  bottom: 2em;
  left: 50%;
  display: inline-flex;
  list-style: none;
  transform: translateX(-50%);
}
.glide__bullet {
  background-color: rgba(255, 255, 255, 0.5);
  width: 9px;
  height: 9px;
  padding: 0;
  border-radius: 50%;
  border: 2px solid transparent;
  transition: all 300ms ease-in-out;
  cursor: pointer;
  line-height: 0;
  box-shadow: 0 0.25em 0.5em 0 rgba(0, 0, 0, 0.1);
  margin: 0 0.25em;
}
.glide__bullet:focus {
  outline: none;
}
.glide__bullet:hover, .glide__bullet:focus {
  border: 2px solid #fff;
  background-color: rgba(255, 255, 255, 0.5);
}
.glide__bullet--active {
  background-color: #fff;
}
.glide--swipeable {
  cursor: grab;
  cursor: -moz-grab;
  cursor: -webkit-grab;
}
.glide--dragging {
  cursor: grabbing;
  cursor: -moz-grabbing;
  cursor: -webkit-grabbing;
}

/*------------------------------------*\
  $RESET

  A modified reset based on the work
  of Eric Myer.
  http://meyerweb.com/eric/tools/css/reset/
\*------------------------------------*/
html, body, div, span, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
abbr, address, cite, code,
del, dfn, em, img, ins, kbd, q, samp,
small, strong, sub, sup, var,
b, i,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, figcaption, figure,
footer, header, menu, nav, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
  background: transparent;
}

article, aside, details, figcaption, figure,
footer, header, menu, nav, section, main {
  display: block;
}

body {
  line-height: 1;
}

blockquote, q {
  quotes: none;
}

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

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

/*------------------------------------*\
  $BOX SIZING
\*------------------------------------*/
html {
  box-sizing: border-box;
}

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

/*------------------------------------*\
  $UTILITIES
\*------------------------------------*/
.cf:after {
  content: "";
  display: table;
  clear: both;
}

.flexbox {
  display: flex;
}

/*------------------------------------*\
  $ACCESSIBILITY
\*------------------------------------*/
.skip-content {
  position: absolute;
  padding: 1em;
  top: -3.5em;
  left: 2em;
  z-index: 100;
  color: #fff;
}
.skip-content:hover, .skip-content:active, .skip-content:focus {
  position: absolute;
  top: 0;
  background-color: #000;
  color: #fff;
}

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

a[name]:not([href]).jump-link {
  position: relative;
  top: calc((80px + 50px) * -1);
  display: block;
}
@media (min-width: 48em) {
  a[name]:not([href]).jump-link {
    top: calc((100px + 50px) * -1);
  }
}
@media (min-width: 75em) {
  a[name]:not([href]).jump-link {
    top: calc((100px + 60px) * -1);
  }
}

button:focus,
select:focus {
  outline: none;
}

body.user-is-tabbing *:focus,
body.user-is-tabbing *:focus ~ .checkbox__indicator {
  outline: 2px solid #7AACFE !important;
  outline: 5px auto -webkit-focus-ring-color !important;
}

/*------------------------------------*\
  $TYPE
\*------------------------------------*/
h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 500;
  font-family: "Rubik", helvetica, sans-serif;
  color: #000;
  margin-bottom: 10px;
  line-height: 1.4;
}
h1.alt,
h2.alt,
h3.alt,
h4.alt,
h5.alt,
h6.alt {
  font-weight: 500;
  font-family: "Rubik", helvetica, sans-serif;
}
h1 a,
h2 a,
h3 a,
h4 a,
h5 a,
h6 a {
  color: inherit;
}

h1 {
  font-size: 1.875rem;
  margin-top: 30px;
  margin-bottom: 20px;
}

h2,
h3,
h4 {
  margin-top: 30px;
  margin-bottom: 10px;
}

h2 {
  font-size: 1.6875rem;
}

h3 {
  font-size: 1.4375rem;
}

h4 {
  font-size: 1.25rem;
}

h5 {
  font-size: 1.125rem;
}

h6 {
  font-size: 1rem;
}

p,
address {
  font-size: 1rem;
  line-height: 1.6;
}
@media (min-width: 37.5em) {
  p,
  address {
    font-size: 1rem;
  }
}

p {
  margin-top: 10px;
  margin-bottom: 10px;
}

address {
  margin-bottom: 20px;
}

strong,
b {
  font-weight: bold;
}
p strong,
p b {
  font-weight: 500;
  font-family: "Rubik", helvetica, sans-serif;
}

small {
  font-size: 75%;
}

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

sup {
  vertical-align: super;
  font-size: smaller;
}

sub {
  vertical-align: sub;
  font-size: smaller;
}

del {
  text-decoration: line-through;
}

mark {
  background: yellow;
}

abbr[title],
dfn[title] {
  border-bottom: 1px dotted;
  cursor: help;
}

figcaption {
  width: 100%;
  background-color: transparent;
  font-size: 0.875rem;
  color: #2b2b2b;
  font-weight: 400;
  font-family: "Rubik", helvetica, sans-serif;
  padding: 10px 0 0;
  text-align: right;
  z-index: 1;
  text-decoration-line: none;
}
.grid__no-gap figcaption {
  padding-left: 20px;
}

a {
  color: inherit;
  text-underline-offset: 0.2em;
  text-decoration-thickness: 0.07em;
}
a:hover, a:active, a:focus {
  color: inherit;
  text-decoration-line: none;
}

q {
  quotes: "“" "”" "‘" "’";
}
q:before {
  content: open-quote;
}
q:after {
  content: close-quote;
}

blockquote {
  color: #000;
  position: relative;
  overflow: visible;
}
blockquote:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 50px;
  height: 32px;
  background-size: 50px 32px;
  background-repeat: no-repeat;
  background-position: center center;
  background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 62.4"><defs><linearGradient id="blockquote-grad"><stop offset="0%" stop-color="%23fdc715"/><stop offset="50%" stop-color="%2300C19F"/><stop offset="100%" stop-color="%2322AAE2"/></linearGradient></defs><path fill="url(%23blockquote-grad)" d="M5 62.3c-1.3 0-2.6-.6-3.5-1.5-1-1-1.6-2.4-1.5-3.8 0-1.3.3-2.5.8-3.6L18.7 7c.9-1.9 2.1-3.6 3.5-5.2 1.6-1.3 3.6-2 5.7-1.8h14.2c1.4 0 2.7.6 3.6 1.7 1 1.3 1.4 2.9 1.1 4.5l-7.3 47.2c-.3 2.4-1.2 4.6-2.8 6.4-1.6 1.7-3.8 2.6-6.1 2.5H5zm53.1 0c-1.3 0-2.6-.6-3.5-1.5-1-1-1.6-2.3-1.5-3.8 0-1.3.3-2.5.8-3.6L71.8 7c.7-2 1.9-3.8 3.5-5.2C76.9.6 78.9-.1 81 0h14.2c1.5-.1 2.9.5 3.8 1.7.9 1.3 1.2 2.9 1 4.5l-7.3 47.2c-.3 2.4-1.2 4.6-2.8 6.4-1.6 1.7-3.8 2.6-6.1 2.5H58.1z"/></svg>');
  background-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0naHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmcnIHZpZXdCb3g9JzAgMCAxMDAgNjIuNCc+DQogIDxkZWZzPg0KICAgIDxsaW5lYXJHcmFkaWVudCBpZD0iYmxvY2txdW90ZS1ncmFkIj4NCiAgICAgIDxzdG9wIG9mZnNldD0iMCUiIHN0b3AtY29sb3I9IiNmZGM3MTUiLz4NCiAgICAgIDxzdG9wIG9mZnNldD0iNTAlIiBzdG9wLWNvbG9yPSIjMDBDMTlGIi8+DQogICAgICA8c3RvcCBvZmZzZXQ9IjEwMCUiIHN0b3AtY29sb3I9IiMyMkFBRTIiLz4NCiAgICA8L2xpbmVhckdyYWRpZW50Pg0KICA8L2RlZnM+DQogIDxwYXRoIGZpbGw9InVybCgjYmxvY2txdW90ZS1ncmFkKSIgZD0nTTUgNjIuM2MtMS4zIDAtMi42LS42LTMuNS0xLjUtMS0xLTEuNi0yLjQtMS41LTMuOCAwLTEuMy4zLTIuNS44LTMuNkwxOC43IDdjLjktMS45IDIuMS0zLjYgMy41LTUuMiAxLjYtMS4zIDMuNi0yIDUuNy0xLjhoMTQuMmMxLjQgMCAyLjcuNiAzLjYgMS43IDEgMS4zIDEuNCAyLjkgMS4xIDQuNWwtNy4zIDQ3LjJjLS4zIDIuNC0xLjIgNC42LTIuOCA2LjQtMS42IDEuNy0zLjggMi42LTYuMSAyLjVINXptNTMuMSAwYy0xLjMgMC0yLjYtLjYtMy41LTEuNS0xLTEtMS42LTIuMy0xLjUtMy44IDAtMS4zLjMtMi41LjgtMy42TDcxLjggN2MuNy0yIDEuOS0zLjggMy41LTUuMkM3Ni45LjYgNzguOS0uMSA4MSAwaDE0LjJjMS41LS4xIDIuOS41IDMuOCAxLjcuOSAxLjMgMS4yIDIuOSAxIDQuNWwtNy4zIDQ3LjJjLS4zIDIuNC0xLjIgNC42LTIuOCA2LjQtMS42IDEuNy0zLjggMi42LTYuMSAyLjVINTguMXonLz4NCjwvc3ZnPg==");
}
blockquote p {
  font-weight: 500;
  font-family: "Rubik", helvetica, sans-serif;
  margin-top: 0;
  margin-bottom: 20px;
  max-width: 100%;
  font-size: 1.125rem;
}
blockquote p:first-child {
  padding-top: 40px;
}
blockquote p:last-child:not(:first-child) {
  font-weight: 300;
  font-family: "Rubik", helvetica, sans-serif;
  margin-bottom: 0;
  font-size: 1rem;
}
@media (min-width: 48em) {
  blockquote p {
    width: 85%;
  }
  blockquote p:first-child {
    padding-top: 50px;
  }
  .main-content-centered blockquote p {
    width: 100%;
  }
  blockquote:before {
    top: 0;
    height: 35px;
    width: 56px;
    background-size: 56px 35px;
  }
}

.intro {
  font-weight: 300;
  font-family: "Rubik", helvetica, sans-serif;
  font-size: 1.1875rem;
  line-height: 1.4;
  color: #222223;
}

.snippet {
  font-weight: 500;
  font-family: "Rubik", helvetica, sans-serif;
  padding-left: 20px;
  font-size: 1.125rem;
  line-height: 1.4;
  color: #000;
  position: relative;
}
.snippet:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 5px;
  border-radius: 0;
  background: linear-gradient(to bottom, #fdc715 0%, #00C19F 50%, #22AAE2 100%);
}

@media (min-width: 37.5em) {
  h1 {
    margin-top: 45px;
    margin-bottom: 25px;
  }
  h2,
  h3,
  h4 {
    margin-top: 35px;
    margin-bottom: 15px;
  }
  p {
    margin-bottom: 15px;
  }
}
@media (min-width: 37.5em) {
  p,
  address {
    font-size: 1rem;
  }
}
@media (min-width: 48em) {
  h1 {
    font-size: 2.25rem;
  }
  h2 {
    font-size: 1.9375rem;
  }
  h3 {
    font-size: 1.5625rem;
  }
  h4 {
    font-size: 1.3125rem;
  }
  h5 {
    font-size: 1.1875rem;
  }
  h6 {
    font-size: 1.0625rem;
  }
  blockquote p {
    font-size: 1.25rem;
  }
  blockquote p:last-child:not(:first-child) {
    font-size: 1rem;
  }
  .intro {
    font-size: 1.1875rem;
  }
  .snippet {
    font-size: 1.25rem;
    padding-left: 30px;
  }
}
@media (min-width: 60em) {
  h1 {
    margin-top: 50px;
    margin-bottom: 30px;
  }
  h2,
  h3,
  h4 {
    margin-top: 40px;
    margin-bottom: 20px;
  }
  p {
    margin-bottom: 20px;
  }
}
@media (min-width: 60em) {
  h1 {
    font-size: 2.75rem;
  }
  h2 {
    font-size: 2.5rem;
  }
  h3 {
    font-size: 2rem;
  }
  h4 {
    font-size: 1.6875rem;
  }
  h5 {
    font-size: 1.375rem;
  }
  h6 {
    font-size: 1.25rem;
  }
  p,
  address {
    font-size: 1.0625rem;
  }
  blockquote p {
    font-size: 1.5625rem;
  }
  blockquote p:last-child:not(:first-child) {
    font-size: 1.0625rem;
  }
  .intro {
    font-size: 1.5625rem;
  }
  .snippet {
    font-size: 1.5625rem;
  }
}
.snippet,
blockquote {
  margin-bottom: 30px;
  margin-top: 30px;
}
@media (min-width: 48em) {
  .snippet,
  blockquote {
    margin-bottom: 45px;
    margin-top: 45px;
  }
}
@media (min-width: 60em) {
  .snippet,
  blockquote {
    margin-bottom: 80px;
    margin-top: 80px;
  }
}

/*------------------------------------*\
  $TYPE
\*------------------------------------*/
p {
  font-weight: 300;
  font-family: "Rubik", helvetica, sans-serif;
}

h1 {
  line-height: 1.3;
}

blockquote p {
  color: #000;
}

.page__title {
  color: #000;
}
.page__title--tag {
  display: inline-block;
  position: relative;
  top: -4px;
  padding: 10px 15px;
  margin-right: 7px;
  font-weight: 400;
  font-family: "Rubik", helvetica, sans-serif;
  font-size: 1rem;
  line-height: 1;
  letter-spacing: 0;
  border-radius: 50px;
  background: #f8f8f8;
}
@media (min-width: 48em) {
  .page__title--tag {
    top: -6px;
  }
}
@media (min-width: 60em) {
  .page__title--tag {
    top: -7px;
    padding: 10px 25px;
  }
}
.page__title--tagged {
  margin-right: 7px;
}

::selection {
  background: #000;
  color: #ffffff;
}

@media (min-width: 48em) {
  h2,
  h3 {
    line-height: 1.3;
  }
}
@media (min-width: 60em) {
  h4 {
    line-height: 1.3;
  }
}
/*------------------------------------*\
  $IMAGES
\*------------------------------------*/
img {
  max-width: 100%;
  font-style: italic;
  vertical-align: middle;
  margin: 0;
}
img.lazyload, img.lazyloading {
  opacity: 0;
}
img.lazyloaded {
  opacity: 1;
  transition: opacity 0.4s;
}

figure a {
  display: block;
}

picture {
  display: block;
}
picture img {
  height: 100%;
}

.cms-image {
  width: 100%;
}
.cms-image a,
.cms-image picture,
.cms-image img {
  width: 100%;
}
.cms-image picture {
  border-radius: 3px;
  -webkit-mask-image: -webkit-radial-gradient(white, black);
}
@media (min-width: 48em) {
  .cms-image picture {
    border-radius: 3px;
  }
}

.image-caption {
  width: 100%;
  padding-top: 15px;
  text-align: right;
  z-index: 1;
}
.image-caption,
.image-caption p {
  font-size: 0.9375rem;
  font-weight: 300;
  font-family: "Rubik", helvetica, sans-serif;
}
.image-caption > * {
  margin: 0;
}

/*------------------------------------*\
  $LISTS
\*------------------------------------*/
ul,
ol {
  margin-bottom: 20px;
  margin-left: 20px;
}

dl {
  margin-bottom: 20px;
}

dt {
  font-weight: 700;
  font-family: "Rubik", helvetica, sans-serif;
}

dt,
dd {
  margin-bottom: 5px;
}

ul {
  margin-bottom: 15px;
}
ul li {
  list-style: disc;
}

li {
  position: relative;
  margin-bottom: 5px;
  font-size: 1rem;
  text-align: left;
  line-height: 1.7;
  color: inherit;
}
li > ul,
li > ol {
  margin: 5px 0 0 20px;
}
@media (min-width: 37.5em) {
  li {
    font-size: 1rem;
  }
}
@media (min-width: 60em) {
  li {
    font-size: 1.0625rem;
  }
}

ol {
  list-style: none;
  counter-reset: item;
  padding-left: 20px;
  margin-left: 0;
}
ol li {
  counter-increment: item;
}
ol li:before {
  content: counter(item) ". ";
  text-align: center;
  display: inline-block;
  position: absolute;
  top: 0;
  left: calc(20px * -1);
}
@media (min-width: 37.5em) {
  ol {
    padding-left: 25px;
  }
  ol li:before {
    left: calc(25px * -1);
  }
}
@media (min-width: 60em) {
  ol {
    padding-left: 30px;
  }
  ol li:before {
    left: calc(30px * -1);
  }
}

.main-content ul,
.main-content ol {
  padding: 0;
  padding-left: 20px;
  margin-left: auto;
}
.main-content ol {
  padding-left: 20px;
}
.main-content ul li {
  list-style: none;
}
.main-content ul li:before {
  content: "";
  background-color: #292929;
  position: absolute;
  top: 0.6em;
  left: calc(20px * -1 + 2px);
  height: 8px;
  width: 8px;
  border-radius: 50%;
}
@media (min-width: 37.5em) {
  .main-content ul li:before {
    left: calc(25px * -1 + 2px);
  }
}
@media (min-width: 60em) {
  .main-content ul li:before {
    left: calc(30px * -1 + 2px);
  }
}
@media (min-width: 37.5em) {
  .main-content ul {
    padding-left: 25px;
  }
  .main-content ol {
    padding-left: 25px;
  }
}
@media (min-width: 60em) {
  .main-content ul {
    padding-left: 30px;
  }
  .main-content ol {
    padding-left: 30px;
  }
}

/*------------------------------------*\
  $TABLES
\*------------------------------------*/
table {
  width: 100%;
  max-width: 100%;
  border-collapse: collapse;
  display: block;
  margin-top: 20px;
  margin-bottom: 20px;
  padding-bottom: 10px;
  overflow-x: auto;
  position: relative;
  -webkit-overflow-scrolling: touch;
  scrollbar-face-color: #bcbcbc;
  scrollbar-track-color: #f5f5f5;
}
@-moz-document url-prefix() {
  table {
    scrollbar-color: #bcbcbc #f5f5f5;
  }
}
table::-webkit-scrollbar {
  height: 10px;
}
table::-webkit-scrollbar-track {
  -webkit-box-shadow: inset 0 0 2px rgba(0, 0, 0, 0.3);
  border-radius: 5px;
  background-color: #f5f5f5;
}
table::-webkit-scrollbar-thumb {
  border-radius: 5px;
  background: #bcbcbc;
}
table::-webkit-scrollbar-button {
  display: block;
  height: 10px;
}
table::-webkit-scrollbar-corner {
  display: block;
  background: rgba(0, 0, 0, 0.5);
}
table caption {
  width: 100%;
  padding-top: 15px;
  padding-bottom: 15px;
  text-align: left;
}
table caption:first-child {
  padding-top: 0;
}
table caption:last-child {
  padding-bottom: 0;
}

th,
td {
  padding: 25px 60px 25px 0px;
  text-align: left;
  font-weight: 400;
  font-family: "Rubik", helvetica, sans-serif;
  font-size: 0.9375rem;
  line-height: 1.5;
}

th {
  font-weight: 500;
  font-family: "Rubik", helvetica, sans-serif;
  font-size: 0.9375rem;
  background-color: #ffffff;
  color: #000;
}

td {
  color: #292929;
  padding: 25px 60px 25px 0px;
}

td,
tr {
  background-color: #fff;
}

tr {
  border: 1px solid transparent;
}

th {
  text-transform: uppercase;
  border: 1px solid #a3a3a3;
}

.table-container {
  padding: 10px 20px;
  margin-bottom: 15px;
  background-color: #fff;
  border-radius: 5px;
  overflow-y: scroll;
}
.table-container table {
  width: 600px;
  max-width: 600px;
}
@media (min-width: 48em) {
  .table-container table {
    width: 100%;
  }
}

.table-wrapper {
  position: relative;
}

.table-fade-present:after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  width: 60px;
  background: linear-gradient(to left, hsl(0, 0%, 100%) 0%, hsla(0, 0%, 100%, 0.738) 19%, hsla(0, 0%, 100%, 0.541) 34%, hsla(0, 0%, 100%, 0.382) 47%, hsla(0, 0%, 100%, 0.278) 56.5%, hsla(0, 0%, 100%, 0.194) 65%, hsla(0, 0%, 100%, 0.126) 73%, hsla(0, 0%, 100%, 0.075) 80.2%, hsla(0, 0%, 100%, 0.042) 86.1%, hsla(0, 0%, 100%, 0.021) 91%, hsla(0, 0%, 100%, 0.008) 95.2%, hsla(0, 0%, 100%, 0.002) 98.2%, hsla(0, 0%, 100%, 0) 100%);
  opacity: 1;
  transition: opacity 0.2s;
  pointer-events: none;
}
@media (min-width: 30em) {
  .table-fade-present:after {
    width: 100px;
  }
}
.table-fade-present.table-fade-inactive:after {
  opacity: 0;
}

/*------------------------------------*\
  $TABLES-BRAND
\*------------------------------------*/
th,
td {
  color: #222223;
  padding-right: 60px;
  padding-left: 30px;
}
@media (min-width: 60em) {
  th,
  td {
    padding-left: 50px;
  }
}
th:nth-child(2n+2),
td:nth-child(2n+2) {
  background-color: #f8f8f8;
}
th:first-child,
td:first-child {
  padding-left: 0;
  padding-right: 30px;
}
@media (min-width: 60em) {
  th:first-child,
  td:first-child {
    padding-right: 40px;
  }
}

th {
  text-transform: none;
  font-weight: 500;
  font-family: "Rubik", helvetica, sans-serif;
  border: none;
  border-bottom: 1px solid #a3a3a3;
}

td {
  font-weight: 300;
  font-family: "Rubik", helvetica, sans-serif;
  border-bottom: 1px solid #cfcfd0;
}

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

/*------------------------------------*\
  $FORMS
\*------------------------------------*/
.main-content-centered form {
  margin-left: auto;
  margin-right: auto;
}

fieldset {
  border: 0;
}

legend {
  margin-bottom: 20px;
  font-weight: 500;
  font-family: "Rubik", helvetica, sans-serif;
  font-size: 1.125rem;
  color: #222223;
}

label,
.label {
  display: inline-block;
  margin-bottom: 5px;
  cursor: pointer;
  color: #222223;
  line-height: 1.4;
}

input {
  display: block;
}

/**
 * 1. Remove the default browser styling from elements
 */
input,
select,
textarea {
  padding: 10px;
  width: 100%;
  font-size: 1rem;
  color: #4e4e4e;
  background-color: #ffffff;
  border: 1px solid #c3c3c3;
  border-radius: 0;
  -webkit-appearance: none; /* 1 */
  -moz-appearance: none; /* 1 */
}

/**
 * Apply consistent height to form fields
 */
input[type=text],
input[type=email],
input[type=tel],
input[type=search],
input[type=number],
input[type=date],
input[type=url],
input[type=password] {
  height: 50px;
  line-height: 50px;
}

meter,
progress,
input[type=range] {
  width: 100%;
}

/**
 * It should be clear that the textarea allows
 * for longer prose, the default is a little too small
 */
textarea {
  resize: vertical;
  min-height: 150px;
  max-height: 600px;
}

/**
 * Add an arrow to the select menu since we removed
 * the default one with `appearance: none;`
 */
select {
  background-image: url("/assets/application/template/select-arrow-down-b6c1c8af.svg");
  background-repeat: no-repeat;
  background-position: right 10px center;
  height: 50px;
  padding-right: 30px;
  background-size: 12px 8px;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
}
select::-ms-expand {
  display: none;
}

/**
 * Give checkboxes and radio buttons
 * some breathing space next to labels
 */
input[type=radio],
input[type=checkbox] {
  margin-right: 5px;
  display: inline-block;
}

/**
 * 1. Remove the default browser styling from elements
 * 2. Fixed an issue where [type="submit"] gets an
 *    additional 2px padding in Firefox.
 */
input[type=submit],
button {
  -webkit-appearance: none; /* 1 */
  -moz-appearance: none; /* 1 */
}
input[type=submit]::-moz-focus-inner, input[type=submit]::-moz-focus-inner,
button::-moz-focus-inner,
button::-moz-focus-inner {
  border: 0; /* 2 */
  padding: 0; /* 2 */
}

input[type=file] {
  cursor: pointer;
}

/**
 * `.field` should wrap a label and input
 */
.field {
  margin-bottom: 30px;
}
.field p {
  margin-bottom: 0;
}
.field input, .field select {
  display: block;
}
.field hr {
  margin: 60px 0 60px;
  border: 0;
  border-bottom: 1px solid #c3c3c3;
  background: transparent;
}
.field:last-child hr {
  margin-bottom: 0;
}
.field .file-formats {
  margin-bottom: 15px;
}

@media (min-width: 37.5em) {
  label,
  .label {
    margin-bottom: 10px;
  }
  .field__container-flex {
    display: flex;
    flex-wrap: wrap;
  }
  .field--half {
    width: calc((100% - 30px) / 2);
    margin-right: 30px;
  }
  .field--third {
    width: calc((100% - 2 * 30px) / 3);
    margin-right: 30px;
  }
  .field--two-thirds {
    width: calc((100% - 2 * 30px) / 3 * 2 + 30px);
    margin-right: 30px;
  }
  .field--full {
    width: 100%;
  }
  .field--full.input--half select,
  .field--full.input--half input {
    width: calc(50% - 30px / 2);
  }
  .field--full.input--third select,
  .field--full.input--third input {
    width: calc((100% - 2 * 30px) / 3);
  }
  .field--full.input--two-thirds select,
  .field--full.input--two-thirds input {
    width: calc((100% - 2 * 30px) / 3 * 2 + 30px);
  }
  .field--last {
    margin-right: 0;
  }
}
@media (min-width: 48em) {
  form {
    max-width: 525px;
  }
}
/**
 * full width error messages
 * so submit button won't mis-align when an error is before it
 */
.field__container .message-text {
  width: 100%;
}

/**
* `.field--hidden` is for hiding 'honey-trap' form elements.
*/
.field--hidden {
  display: none;
}
.field--hidden * {
  display: none;
}

/**
* `.field--value` describes contents of a field.
*/
.field--value {
  color: #000;
}

/**
 * `.field--choice` contains either
 * radio buttons or checkboxes
 */
.field--choice label:last-child {
  margin-bottom: 0;
}

/**
 * `.field--error` modifies the defaults
 * only when the input errors
 */
.field--error input,
.field--error textarea {
  color: rgb(149.9347826087, 59.0652173913, 59.0652173913);
  background-color: #f2dede;
  border: 1px solid rgb(149.9347826087, 59.0652173913, 59.0652173913);
}

/**
* `.field--checkbox` is a custom checkbox
* requiring a .checkbox__indicator div inside the input
*/
.field--checkbox {
  position: relative;
  display: inline-block;
  cursor: pointer;
  margin-left: 30px;
  margin-bottom: 15px;
  user-select: none;
  line-height: 1;
}
.field--checkbox input {
  position: absolute;
  overflow: hidden;
  margin: -1px;
  padding: 0;
  height: 1px;
  width: 1px;
  clip: rect(0 0 0 0);
  border: 0;
}
.field--checkbox [type=checkbox]::-ms-check,
.field--checkbox [type=radio]::-ms-check {
  position: absolute;
  overflow: hidden;
  margin: -1px;
  padding: 0;
  height: 1px;
  width: 1px;
  clip: rect(0 0 0 0);
  border: 0;
}
.field--checkbox input:checked ~ .checkbox__indicator {
  background: #ededed;
}
.field--checkbox:hover input ~ .checkbox__indicator, .field--checkbox input:focus ~ .checkbox__indicator {
  background: #e0e0e2;
}
.field--checkbox:hover input:not([disabled]):checked ~ .checkbox__indicator, .field--checkbox input:checked:focus ~ .checkbox__indicator {
  background: #e0e0e2;
}
.field--checkbox input:disabled ~ .checkbox__indicator {
  pointer-events: none;
  opacity: 0.5;
  background: #ededed;
}
.field--checkbox input:checked ~ .checkbox__indicator:after {
  display: block;
}
.field--checkbox input:disabled ~ .checkbox__indicator:after {
  border-color: #707070;
}
.field--checkbox label {
  display: inline;
}
.field--checkbox .checkbox__indicator {
  position: absolute;
  top: -2px;
  left: -30px;
  width: 20px;
  height: 20px;
  background: #ffffff;
  border: 1px solid #c3c3c3;
}
.field--checkbox .checkbox__indicator:after {
  position: absolute;
  display: none;
  content: "";
  top: 3px;
  left: 7px;
  width: 3px;
  height: 8px;
  transform: rotate(45deg);
  border: solid #000;
  border-width: 0 2px 2px 0;
  box-sizing: content-box;
}

/**
* `.field--uploader` is a container with an input and a button
* Used primarily for uploaders
*/
.field--uploader {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 40px;
  clear: both;
}
.field--uploader .btn--upload {
  position: relative;
  margin-top: 20px;
}
.field--uploader .btn--upload .btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 165px;
}
@media (min-width: 37.5em) {
  .field--uploader .btn--upload {
    margin-top: 0;
    margin-left: 20px;
    width: 165px;
  }
}
.field--uploader .btn--upload .file-upload {
  position: absolute;
  overflow: hidden;
  margin: -1px;
  padding: 0;
  height: 1px;
  width: 1px;
  clip: rect(0 0 0 0);
  border: 0;
  top: 0;
  left: 0;
}
.field--uploader .btn--upload .file-upload:hover + label, .field--uploader .btn--upload .file-upload:active + label, .field--uploader .btn--upload .file-upload:focus + label {
  background-color: #ededed;
}
.field--uploader .message-text {
  margin-top: 5px;
  margin-bottom: 0;
  line-height: 1.2;
  display: block;
  width: 100%;
}

/**
* `.field--required` indicates required form fields
* This will add a red asterix after the input label
*/
.field--required label:after,
.field--required .label:after,
.field--required legend:after {
  padding-left: 2px;
  content: "*";
  color: #cb2027;
  display: inline;
}

/**
* `.field--gdpr` indicates gdpr checkbox fields.
* Class should be appended to `.field--checkbox` divs where necessary
* This will tweak spacings and line-heights for consecutive checkboxes
*/
.field--gdpr.field--checkbox {
  margin-top: 10px;
  margin-bottom: 10px;
}
@media (min-width: 37.5em) {
  .field--gdpr.field--checkbox + .field--checkbox {
    margin-top: 5px;
  }
}
.field--gdpr.field--checkbox label {
  line-height: 1.6;
}
.field--gdpr .checkbox__indicator {
  top: 1px;
}

/**
* `.field--btn` holds a form submission button
* Submit buttons should generally live on their own line
*/
.field--btn {
  text-align: right;
}
.field--btn.btn-align-left {
  text-align: left;
}
.field--btn .btn {
  width: 100%;
}
@media (min-width: 37.5em) {
  .field--btn .btn {
    min-width: 150px;
    width: auto;
  }
}

/**
* `.field__wrapper` is a section with a different coloured background
* and some padding, to visually separate a group of inputs from others
*/
.field__wrapper {
  border-radius: 3px;
  padding: 20px 15px;
  background-color: #ededed;
  margin-bottom: 30px;
}
.field__wrapper .field:last-child {
  margin-bottom: 0;
}
@media (min-width: 37.5em) {
  .field__wrapper {
    padding: 20px;
  }
}
@media (min-width: 48em) {
  .field__wrapper {
    border-radius: 3px;
    padding: 30px 20px;
  }
}

::placeholder { /* Chrome, Firefox, Opera, Safari 10.1+ */
  color: #4e4e4e;
  opacity: 1; /* Firefox */
}

:-ms-input-placeholder { /* Internet Explorer 10-11 */
  color: #4e4e4e;
}

::-ms-input-placeholder { /* Microsoft Edge */
  color: #4e4e4e;
}

input[type=text],
input[type=email],
input[type=tel],
input[type=search],
input[type=number],
input[type=date],
input[type=url],
input[type=file],
input[type=password],
select,
textarea {
  border-radius: 3px;
}

.layout--system .field--btn {
  margin-top: 60px;
}

.layout--enquiry-form .field--select,
.layout--system .field--select {
  margin-bottom: 35px;
}
.layout--enquiry-form .field--checkbox,
.layout--system .field--checkbox {
  margin-top: 10px;
  display: block;
}
.layout--enquiry-form .field--btn,
.layout--system .field--btn {
  margin-top: 20px;
}

/*------------------------------------*\
  $FORMS-BRAND
\*------------------------------------*/
label,
.label {
  font-weight: 400;
  font-family: "Rubik", helvetica, sans-serif;
  font-size: 0.875rem;
}

input,
select,
textarea {
  font-weight: 300;
  font-family: "Rubik", helvetica, sans-serif;
}

/**
* `.field--value` describes contents of a field.
*/
.field--value {
  font-weight: 500;
  font-family: "Rubik", helvetica, sans-serif;
  font-size: 1.125rem;
}

.field--btn {
  margin-top: 15px;
  margin-bottom: 0;
}

.field--gdpr label {
  font-size: 0.75rem;
}
.field--gdpr label a {
  color: #2b2b2b;
}
.field--gdpr .checkbox__indicator {
  top: -1px;
  border-radius: 50%;
}

@media (min-width: 48em) {
  input[type=text],
  input[type=email],
  input[type=tel],
  input[type=search],
  input[type=number],
  input[type=date],
  input[type=url],
  input[type=file],
  input[type=password],
  select,
  textarea {
    border-radius: 3px;
    padding-left: 20px;
    padding-right: 20px;
  }
  .field--btn {
    margin-top: 20px;
  }
}
/*------------------------------------*\
  $PAGE
\*------------------------------------*/
/**
 * [1] Fonts on OSX will look more consistent with
 *     other systems that do not render text using
 *     sub-pixel anti-aliasing.
 */
html {
  overflow-y: scroll;
  min-height: 100%;
  text-size-adjust: 100%;
  -moz-osx-font-smoothing: grayscale; /* 1 */
  -webkit-font-smoothing: antialiased; /* 1 */
  color: #292929;
  background: #f5f5f5;
  display: flex;
  flex-direction: column;
  overflow-anchor: none;
}

body {
  color: #292929;
  font-weight: 300;
  font-family: "Rubik", helvetica, sans-serif;
  font-size: 1rem;
  width: 100%;
  background-color: #ffffff;
  max-width: 30000px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  min-height: 100vh;
  flex-direction: column;
  flex: 1 1 auto;
  overflow: hidden;
  position: relative;
}

.main-content-centered {
  text-align: center;
}

/*------------------------------------*\
  $LAYOUTS
\*------------------------------------*/
.layout__container {
  padding: 0 20px;
}
@media (min-width: 48em) {
  .layout__container {
    padding: 0 30px;
  }
}
.layout--cards {
  display: flex;
  flex-wrap: wrap;
}
.layout--cards-2.grid__no-gap .post, .layout--cards-3.grid__no-gap .post, .layout--cards-4.grid__no-gap .post, .layout--cards-123.grid__no-gap .post, .layout--cards-124.grid__no-gap .post, .layout--cards-223.grid__no-gap .post, .layout--cards-224.grid__no-gap .post {
  margin-bottom: 0;
  margin-right: 0;
}
@media (min-width: 48em) {
  .layout--cards .post {
    padding: 0;
  }
  .layout--cards-2 .post, .layout--cards-3 .post, .layout--cards-4 .post {
    margin-bottom: 20px;
  }
}
@media (min-width: 48em) and (min-width: 48em) {
  .layout--cards-2 .post, .layout--cards-3 .post, .layout--cards-4 .post {
    margin-right: 20px;
    margin-bottom: 20px;
  }
}
@media (min-width: 48em) and (min-width: 60em) {
  .layout--cards-2 .post, .layout--cards-3 .post, .layout--cards-4 .post {
    margin-right: 20px;
    margin-bottom: 20px;
  }
}
@media (min-width: 48em) {
  .layout--cards-2 .post {
    width: calc((99.99% - 20px) / 2);
  }
}
@media (min-width: 48em) and (min-width: 48em) {
  .layout--cards-2 .post {
    width: calc((99.99% - 20px) / 2);
  }
}
@media (min-width: 48em) and (min-width: 60em) {
  .layout--cards-2 .post {
    width: calc((99.99% - 20px) / 2);
  }
}
@media (min-width: 48em) {
  .layout--cards-2 .post:nth-child(2n+2) {
    margin-right: 0;
  }
  .layout--cards-2 .post:nth-last-child(-n+2):nth-child(2n+1) {
    margin-bottom: 0;
  }
  .layout--cards-2 .post:nth-last-child(-n+2):nth-child(2n+1) ~ .post {
    margin-bottom: 0;
  }
  .layout--cards-2.grid__no-gap .post {
    width: 50%;
  }
  .layout--cards-3 .post {
    width: calc((99.99% - 2 * 20px) / 3);
  }
}
@media (min-width: 48em) and (min-width: 48em) {
  .layout--cards-3 .post {
    width: calc((99.99% - 2 * 20px) / 3);
  }
}
@media (min-width: 48em) and (min-width: 60em) {
  .layout--cards-3 .post {
    width: calc((99.99% - 2 * 20px) / 3);
  }
}
@media (min-width: 48em) {
  .layout--cards-3 .post:nth-child(3n+3) {
    margin-right: 0;
  }
  .layout--cards-3 .post:nth-last-child(-n+3):nth-child(3n+1) {
    margin-bottom: 0;
  }
  .layout--cards-3 .post:nth-last-child(-n+3):nth-child(3n+1) ~ .post {
    margin-bottom: 0;
  }
  .layout--cards-3.grid__no-gap .post {
    width: 33.33%;
  }
  .layout--cards-4 .post {
    width: calc((99.99% - 3 * 20px) / 4);
  }
}
@media (min-width: 48em) and (min-width: 48em) {
  .layout--cards-4 .post {
    width: calc((99.99% - 3 * 20px) / 4);
  }
}
@media (min-width: 48em) and (min-width: 60em) {
  .layout--cards-4 .post {
    width: calc((99.99% - 3 * 20px) / 4);
  }
}
@media (min-width: 48em) {
  .layout--cards-4 .post:nth-child(4n+4) {
    margin-right: 0;
  }
  .layout--cards-4 .post:nth-last-child(-n+4):nth-child(4n+1) {
    margin-bottom: 0;
  }
  .layout--cards-4 .post:nth-last-child(-n+4):nth-child(4n+1) ~ .post {
    margin-bottom: 0;
  }
  .layout--cards-4.grid__no-gap .post {
    width: 25%;
  }
}
.layout--cards-123 .post, .layout--cards-124 .post {
  margin-bottom: 20px;
}
@media (min-width: 48em) {
  .layout--cards-123 .post, .layout--cards-124 .post {
    margin-right: 20px;
    margin-bottom: 20px;
  }
}
@media (max-width: 47.99em) {
  .layout--cards-123 .post:last-child, .layout--cards-124 .post:last-child {
    margin-bottom: 0;
  }
}
.layout--cards-223 .post, .layout--cards-224 .post {
  margin-right: 10px;
  margin-bottom: 10px;
}
@media (min-width: 48em) {
  .layout--cards-223 .post, .layout--cards-224 .post {
    margin-right: 20px;
    margin-bottom: 20px;
  }
}
@media (min-width: 60em) {
  .layout--cards-123 .post, .layout--cards-223 .post {
    margin-right: 20px;
    margin-bottom: 20px;
  }
}
@media (min-width: 60em) {
  .layout--cards-124 .post, .layout--cards-224 .post {
    margin-right: 20px;
    margin-bottom: 20px;
  }
}
@media (min-width: 48em) and (max-width: 60em) {
  .layout--cards-123 .post {
    width: calc((99.99% - 20px) / 2);
  }
  .layout--cards-123 .post:nth-child(2n+2) {
    margin-right: 0;
  }
  .layout--cards-123 .post:nth-last-child(-n+2):nth-child(2n+1) {
    margin-bottom: 0;
  }
  .layout--cards-123 .post:nth-last-child(-n+2):nth-child(2n+1) ~ .post {
    margin-bottom: 0;
  }
  .layout--cards-123.grid__no-gap .post {
    width: 50%;
    margin-right: 0;
  }
}
@media (min-width: 60em) {
  .layout--cards-123 .post {
    width: calc((99.99% - 2 * 20px) / 3);
    margin-right: 20px;
  }
  .layout--cards-123 .post:nth-child(2n+2) {
    margin-right: 20px;
  }
  .layout--cards-123 .post:nth-child(3n+3) {
    margin-right: 0;
  }
  .layout--cards-123 .post:nth-last-child(-n+3):nth-child(3n+1) {
    margin-bottom: 0;
  }
  .layout--cards-123 .post:nth-last-child(-n+3):nth-child(3n+1) ~ .post {
    margin-bottom: 0;
  }
  .layout--cards-123.grid__no-gap .post {
    width: 33.33%;
    margin-right: 0;
  }
}
@media (min-width: 48em) and (max-width: 60em) {
  .layout--cards-124 .post {
    width: calc((99.99% - 20px) / 2);
  }
  .layout--cards-124 .post:nth-child(2n+2) {
    margin-right: 0;
  }
  .layout--cards-124 .post:nth-last-child(-n+2):nth-child(2n+1) {
    margin-bottom: 0;
  }
  .layout--cards-124 .post:nth-last-child(-n+2):nth-child(2n+1) ~ .post {
    margin-bottom: 0;
  }
  .layout--cards-124.grid__no-gap .post {
    width: 50%;
    margin-right: 0;
  }
}
@media (min-width: 60em) {
  .layout--cards-124 .post {
    width: calc((99.99% - 3 * 20px) / 4);
    margin-right: 20px;
  }
  .layout--cards-124 .post:nth-child(2n+2) {
    margin-right: 20px;
  }
  .layout--cards-124 .post:nth-child(4n+4) {
    margin-right: 0;
  }
  .layout--cards-124 .post:nth-last-child(-n+4):nth-child(4n+1) {
    margin-bottom: 0;
  }
  .layout--cards-124 .post:nth-last-child(-n+4):nth-child(4n+1) ~ .post {
    margin-bottom: 0;
  }
  .layout--cards-124.grid__no-gap .post {
    width: 25%;
    margin-right: 0;
  }
}
.layout--cards-223 .post {
  width: calc((99.99% - 10px) / 2);
}
@media (min-width: 48em) {
  .layout--cards-223 .post {
    width: calc((99.99% - 20px) / 2);
  }
}
.layout--cards-223.grid__no-gap .post {
  width: 50%;
  margin-right: 0;
}
@media (max-width: 60em) {
  .layout--cards-223 .post:nth-child(2n+2) {
    margin-right: 0;
  }
  .layout--cards-223 .post:nth-last-child(-n+2):nth-child(2n+1) {
    margin-bottom: 0;
  }
  .layout--cards-223 .post:nth-last-child(-n+2):nth-child(2n+1) ~ .post {
    margin-bottom: 0;
  }
}
@media (min-width: 60em) {
  .layout--cards-223 .post {
    width: calc((99.99% - 2 * 20px) / 3);
    margin-right: 20px;
  }
  .layout--cards-223 .post:nth-child(2n+2) {
    margin-right: 20px;
  }
  .layout--cards-223 .post:nth-child(3n+3) {
    margin-right: 0;
  }
  .layout--cards-223 .post:nth-last-child(-n+3):nth-child(3n+1) {
    margin-bottom: 0;
  }
  .layout--cards-223 .post:nth-last-child(-n+3):nth-child(3n+1) ~ .post {
    margin-bottom: 0;
  }
  .layout--cards-223.grid__no-gap .post {
    width: 33.33%;
    margin-right: 0;
  }
}
.layout--cards-224 .post {
  width: calc((99.99% - 10px) / 2);
}
@media (min-width: 48em) {
  .layout--cards-224 .post {
    width: calc((99.99% - 20px) / 2);
  }
}
.layout--cards-224.grid__no-gap .post {
  width: 50%;
  margin-right: 0;
}
@media (max-width: 60em) {
  .layout--cards-224 .post:nth-child(2n+2) {
    margin-right: 0;
  }
  .layout--cards-224 .post:nth-last-child(-n+2):nth-child(2n+1) {
    margin-bottom: 0;
  }
  .layout--cards-224 .post:nth-last-child(-n+2):nth-child(2n+1) ~ .post {
    margin-bottom: 0;
  }
}
@media (min-width: 60em) {
  .layout--cards-224 .post {
    width: calc((99.99% - 3 * 20px) / 4);
    margin-right: 20px;
  }
  .layout--cards-224 .post:nth-child(2n+2) {
    margin-right: 20px;
  }
  .layout--cards-224 .post:nth-child(4n+4) {
    margin-right: 0;
  }
  .layout--cards-224 .post:nth-last-child(-n+4):nth-child(4n+1) {
    margin-bottom: 0;
  }
  .layout--cards-224 .post:nth-last-child(-n+4):nth-child(4n+1) ~ .post {
    margin-bottom: 0;
  }
  .layout--cards-224.grid__no-gap .post {
    width: 25%;
    margin-right: 0;
  }
}

/*------------------------------------*\
  $LAYOUTS-BRAND
\*------------------------------------*/
.grid__template .layout__container {
  padding: 0;
}

/*------------------------------------*\
  $WRAPPERS
\*------------------------------------*/
.wrapper__content-small {
  margin: 0 auto;
  max-width: 960px;
}
.wrapper__content-medium {
  margin: 0 auto;
  max-width: 1170px;
}
.wrapper__content-large {
  margin: 0 auto;
  max-width: 1440px;
}
.wrapper__content-xl {
  margin: 0 auto;
  max-width: 1660px;
}

/*------------------------------------*\
  $NAVIGATION
\*------------------------------------*/
.nav {
  display: block;
  user-select: none;
}
.nav ul {
  margin: 0;
  font-size: 0;
  text-align: left;
}
.nav li {
  list-style: none;
  font-size: 1rem;
  margin: 0;
  position: relative;
}
.nav li a {
  outline-offset: -3px;
}
.nav a {
  display: block;
  text-decoration: none;
  font-weight: 500;
  font-family: "Rubik", helvetica, sans-serif;
}
.nav__primary {
  margin-right: 0;
  margin-left: 0;
  clear: both;
  width: 100%;
}
.nav__primary > ul {
  padding-top: 18px;
  background-color: transparent;
}
.nav__primary a {
  display: block;
  padding-top: 10px;
  padding-bottom: 10px;
  padding-left: 25px;
  padding-right: calc(55px + 20px);
  background-color: transparent;
  color: #000000;
  font-size: 0.9375rem;
  line-height: 1.5;
}
.nav__primary a:hover, .nav__primary a:active, .nav__primary a:focus {
  background-color: transparent;
  color: #000000;
}
.nav__utility {
  display: none;
  margin-right: 0;
  margin-left: 0;
  width: 100%;
}
.nav__utility--mobile {
  display: block;
}
.nav__utility > ul {
  padding-top: 20px;
  padding-bottom: 20px;
  background-color: #000;
}
.nav__utility a {
  color: #ffffff;
  padding-left: 20px;
  padding-right: 20px;
  padding-top: 7px;
  padding-bottom: 7px;
  font-size: 0.9375rem;
  line-height: 1.5;
}
.nav__utility a:hover, .nav__utility a:active, .nav__utility a:focus {
  color: #ffffff;
}
.nav-ul-level2 {
  display: none;
}
.nav-ul-level3 {
  display: block;
}
.nav .nav-ul-level2.element-expanded--true {
  display: block;
}
.nav .nav-ul-level2.element-expanded--false {
  display: none;
}
.nav-li-level2 > a {
  padding-left: calc(25px + 20px);
  font-size: 0.875rem;
  color: #000000;
}
.nav-li-level2 > a:hover, .nav-li-level2 > a:active, .nav-li-level2 > a:focus {
  color: #000000;
}
.nav-li-level3 > a {
  padding-left: calc(25px + 20px * 2);
  font-size: 0.875rem;
  color: #000000;
}
.nav-li-level3 > a:hover, .nav-li-level3 > a:active, .nav-li-level3 > a:focus {
  color: #000000;
}
@media (min-width: 48em) {
  .nav__primary a {
    padding-left: 35px;
    font-size: 1rem;
  }
  .nav__utility a {
    padding-left: 35px;
    font-size: 0.9375rem;
  }
  .nav-li-level2 > a {
    padding-left: calc(35px + 20px);
    font-size: 0.9375rem;
  }
  .nav-li-level3 > a {
    padding-left: calc(35px + 20px * 2);
    font-size: 0.9375rem;
  }
}
@media (min-width: 1875em) {
  .nav > ul {
    text-align: right;
  }
  .nav li {
    display: inline-block;
  }
  .nav li:not(.has-subnav):last-of-type {
    margin-right: 0;
  }
  .nav__primary {
    display: inline-block;
    margin-right: 10px;
    margin-left: 0;
    flex-shrink: 0;
    width: auto;
  }
  .nav__primary > ul {
    padding-top: 0;
    background-color: transparent;
  }
  .nav__primary a {
    font-size: 1.0625rem;
    color: #ffffff;
  }
  .nav__primary a:hover, .nav__primary a:active, .nav__primary a:focus {
    color: #ffffff;
  }
  .nav__primary li {
    margin-right: 20px;
    background-color: transparent;
  }
  .nav__primary li > a {
    padding-top: 13px;
    padding-bottom: 13px;
    padding-left: 10px;
    padding-right: 10px;
    background-color: hsl(0, 0%, -5%);
    overflow: hidden;
  }
  .nav__primary li > a:hover, .nav__primary li > a:active, .nav__primary li > a:focus {
    background-color: hsl(0, 0%, -5%);
  }
  .nav__primary li.nav-li-level1 > a {
    background-color: transparent;
  }
  .nav__primary li.nav-li-level1:hover, .nav__primary li.nav-li-level1:active, .nav__primary li.nav-li-level1:focus {
    background-color: transparent;
  }
  .nav__primary li .nav-li-level2 > a {
    padding-left: 30px;
    padding-right: 70px;
  }
  .nav__primary li:hover, .nav__primary li:active, .nav__primary li:focus {
    background-color: hsl(0, 0%, -5%);
  }
  .nav-li-level2 > a {
    font-size: 1rem;
    color: #ffffff;
  }
  .nav-li-level2 > a:hover, .nav-li-level2 > a:active, .nav-li-level2 > a:focus {
    color: #ffffff;
  }
  .nav-li-level3 > a {
    font-size: 0.875rem;
    color: #ffffff;
  }
  .nav-li-level3 > a:hover, .nav-li-level3 > a:active, .nav-li-level3 > a:focus {
    color: #ffffff;
  }
  .nav__utility {
    display: flex;
    justify-content: flex-end;
    margin-right: 0;
    margin-left: 0;
    width: auto;
  }
  .nav__utility--mobile {
    display: none;
  }
  .nav__utility a {
    font-size: 1rem;
  }
  .nav__utility > ul {
    background-color: transparent;
    padding-top: 15px;
    padding-bottom: 15px;
  }
  .nav__utility li {
    margin-right: 20px;
  }
  .nav__utility li > a {
    padding: 0;
    padding-left: 0;
    padding-right: 0;
    color: #ffffff;
  }
  .nav__utility li > a:hover, .nav__utility li > a:active, .nav__utility li > a:focus {
    color: #ffffff;
  }
  .nav-ul-level2 {
    display: none;
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    width: 300px;
    z-index: 16;
    height: auto;
    border-radius: 3px;
    max-height: calc(90vh - 130px);
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior-y: contain;
  }
  .edge .nav-ul-level2 {
    overflow-y: scroll;
  }
  .nav-ul-level2 li {
    margin: 0;
    width: 100%;
  }
  .nav-ul-level2 {
    scrollbar-face-color: #bcbcbc;
    scrollbar-track-color: #f5f5f5;
  }
  @-moz-document url-prefix() {
    .nav-ul-level2 {
      scrollbar-color: #bcbcbc #f5f5f5;
    }
  }
  .nav-ul-level3 {
    display: none;
  }
  .nav-ul-level3.element-expanded--true {
    display: block;
  }
  .nav-ul-level3 .nav-li-level3:hover > a, .nav-ul-level3 .nav-li-level3:active > a, .nav-ul-level3 .nav-li-level3:focus > a {
    background-color: hsl(0, 0%, -5%);
  }
  .nav-ul-level3 .nav-li-level3 > a {
    background-color: hsl(0, 0%, -5%);
    padding-left: calc(30px + 20px);
  }
}

.subnav-toggle-button {
  position: absolute;
  right: 10px;
  top: 0px;
  width: 55px;
  height: calc(2 * 10px + 15 * 1px * 1.5);
  cursor: pointer;
  display: flex;
  z-index: 10;
  background-color: transparent;
  border: none;
}
.subnav-toggle-button svg {
  fill: #000000;
  width: 12px;
  height: 20px;
  margin: auto;
  will-change: transform;
  transform: rotate(0deg);
  pointer-events: none;
  transition: transform 0.2s ease-in-out;
}
.subnav-toggle-button.element-expanded--true svg {
  fill: #000000;
  transform: rotate(180deg);
}
@media (max-width: 1874.99em) {
  .nav-li-level2 .subnav-toggle-button {
    display: none;
  }
}
@media (min-width: 1875em) {
  .nav-li-level1 > .subnav-toggle-button {
    margin-top: 2px;
  }
}
.subnav-toggle-button:hover svg, .subnav-toggle-button:active svg, .subnav-toggle-button:focus svg {
  fill: #000000;
}
@media (min-width: 48em) {
  .subnav-toggle-button {
    right: 20px;
  }
}
@media (min-width: 1875em) {
  .subnav-toggle-button {
    right: -15px;
    background-color: transparent;
    height: calc(2 * 13px + 17 * 1px * 1.5);
    width: 25px;
  }
  .subnav-toggle-button svg {
    fill: #ffffff;
  }
  .subnav-toggle-button.element-expanded--true svg {
    fill: #ffffff;
  }
  .subnav-toggle-button:hover svg, .subnav-toggle-button:active svg, .subnav-toggle-button:focus svg {
    fill: #ffffff;
  }
  .nav-li-level2 .subnav-toggle-button svg {
    fill: #ffffff;
  }
  .nav-li-level2 .subnav-toggle-button.element-expanded--true svg {
    fill: #ffffff;
  }
  .nav-li-level2 .subnav-toggle-button:hover svg, .nav-li-level2 .subnav-toggle-button:active svg, .nav-li-level2 .subnav-toggle-button:focus svg {
    fill: #ffffff;
  }
  .nav-ul-level2 .subnav-toggle-button {
    right: 0;
    width: 70px;
    height: calc(2 * 7px + 16 * 1px * 1.5);
  }
}

/*------------------------------------*\
  $NAVIGATION-ANIMATED-LINKS
\*------------------------------------*/
.nav li a {
  outline-offset: 0;
}
.nav__primary li, .nav__utility li {
  line-height: 1.3;
  font-size: 0;
}
.nav__primary a, .nav__utility a {
  position: relative;
  word-break: break-word;
  display: inline-block;
  word-wrap: break-word;
}
.nav__primary a:after, .nav__utility a:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  height: 1px;
  width: 0;
  display: block;
  transition: width 0.2s ease-in-out;
}
.nav__primary a:hover, .nav__primary a:active, .nav__primary a:focus, .nav__utility a:hover, .nav__utility a:active, .nav__utility a:focus {
  background: transparent;
}
.nav__primary a:hover:after, .nav__primary a:active:after, .nav__primary a:focus:after, .nav__utility a:hover:after, .nav__utility a:active:after, .nav__utility a:focus:after {
  width: 100%;
}
.nav-li-level2 a, .nav-li-level3 a {
  padding: 0;
}
@media (max-width: 1874.99em) {
  .nav__primary a, .nav__utility a {
    padding: 0;
  }
  .nav__primary a:after {
    background-color: #000000;
  }
  .nav__primary .nav-li-level1 {
    padding-left: 25px;
    padding-right: calc(55px + 10px);
    padding-top: 10px;
    padding-bottom: 10px;
    line-height: 1.5;
  }
  .nav__primary .nav-li-level2 {
    padding-top: calc(10px - 1px);
    padding-bottom: calc(10px - 1px);
  }
  .nav__primary .nav-li-level3 {
    padding-top: calc(10px - 4px);
    padding-bottom: calc(10px - 4px);
  }
  .nav__utility li {
    padding-left: 20px;
    padding-right: 20px;
    padding-top: 7px;
    padding-bottom: 7px;
    line-height: 1;
  }
  .nav__utility a {
    padding: 0;
    line-height: 1;
  }
  .nav__utility a:after {
    background-color: #ffffff;
    bottom: -3px;
  }
  .nav-li-level2 > a:after {
    background-color: #000000;
  }
  .nav-li-level3 > a:after {
    background-color: #000000;
  }
  .nav .nav-ul-level2,
  .nav .nav-ul-level3 {
    margin-top: 8px;
  }
  .nav-li-level2, .nav-li-level3 {
    padding-left: 20px;
  }
  .nav-li-level2 > a, .nav-li-level3 > a {
    padding: 0;
  }
  .nav-li-level1 {
    padding-top: 10px;
    padding-bottom: 10px;
    padding-left: 25px;
    padding-right: calc(55px + 20px);
  }
}
@media (min-width: 48em) and (max-width: 1874.99em) {
  .nav__primary .nav-li-level1 {
    padding-left: 35px;
  }
  .nav__utility li {
    padding-left: 35px;
  }
  .nav-li-level2, .nav-li-level3 {
    padding-left: 20px;
  }
}
@media (min-width: 1875em) {
  .nav__primary a:after {
    background-color: #ffffff;
  }
  .nav__primary li {
    background-color: transparent;
  }
  .nav__primary li .nav-li-level2 > a,
  .nav__primary li .nav-li-level3 > a {
    padding: 0;
  }
  .nav__primary li:hover, .nav__primary li:active, .nav__primary li:focus {
    background-color: transparent;
  }
  .nav__primary li > a {
    background-color: transparent;
  }
  .nav__primary li > a:hover, .nav__primary li > a:active, .nav__primary li > a:focus {
    background-color: transparent;
  }
  .nav__primary .nav-li-level1 > a {
    display: block;
  }
  .nav__utility a:after {
    background-color: #ffffff;
  }
  .nav-ul-level2 li {
    background-color: hsl(0, 0%, -5%);
  }
  .nav-ul-level2 li:hover, .nav-ul-level2 li:active, .nav-ul-level2 li:focus {
    background-color: hsl(0, 0%, -5%);
  }
  .nav-ul-level3 .nav-li-level3:hover > a, .nav-ul-level3 .nav-li-level3:active > a, .nav-ul-level3 .nav-li-level3:focus > a {
    background-color: transparent;
  }
  .nav-ul-level3 .nav-li-level3 > a {
    background-color: transparent;
  }
  .nav .nav-ul-level1 {
    margin-top: 7px;
  }
  .nav .nav-ul-level3 {
    margin-top: 3px;
  }
  .nav-li-level1 > a:after {
    bottom: 10px;
    left: 10px;
    right: 10px;
  }
  .nav-li-level1 > a:hover, .nav-li-level1 > a:active, .nav-li-level1 > a:focus {
    background: transparent;
  }
  .nav-li-level1 > a:hover:after, .nav-li-level1 > a:active:after, .nav-li-level1 > a:focus:after {
    width: calc(100% - 2 * 10px);
  }
  .nav-li-level2 > a:after {
    background-color: #ffffff;
  }
  .nav-li-level3 > a:after {
    background-color: #ffffff;
  }
  .nav-li-level2, .nav-li-level3 {
    padding-top: 13px;
    padding-bottom: 13px;
    padding-left: 10px;
    padding-right: 10px;
  }
  .nav-li-level2 {
    padding-left: 30px;
    padding-right: 30px;
  }
  .nav-li-level2.has-subnav {
    padding-right: 70px;
  }
}

/*------------------------------------*\
  $NAVIGATION-BRAND
\*------------------------------------*/
.nav__utility a {
  font-weight: 500;
  font-family: "Rubik", helvetica, sans-serif;
}
.nav-li-level2 a, .nav-li-level3 a {
  font-weight: 400;
  font-family: "Rubik", helvetica, sans-serif;
}
@media (min-width: 48em) {
  .nav__primary > ul {
    padding-top: 23px;
  }
}
@media (min-width: 1875em) {
  .nav__primary > ul {
    padding-right: 10px;
    padding-left: 10px;
  }
  .nav-li-level1.has-subnav > a.element-expanded--true:before {
    content: "";
    position: absolute;
    bottom: -25px;
    left: 50%;
    height: 20px;
    width: 20px;
    transform: translateY(-50%) rotate(45deg);
    background: hsl(0, 0%, -5%);
  }
  .nav-li-level1.has-subnav:last-child {
    margin-right: 10px;
  }
  .nav-li-level1.has-subnav:last-child .nav-ul-level2 {
    left: 0;
  }
  .nav-li-level2 {
    padding-top: 7px;
    padding-bottom: 7px;
  }
  .nav-li-level2:first-child {
    padding-top: calc(7px + 20px);
  }
  .nav-li-level2:first-child > .subnav-toggle-button {
    margin-top: 20px;
  }
  .nav-li-level2:last-child {
    padding-bottom: calc(7px + 20px);
  }
  .nav-li-level3 {
    padding-top: 3px;
    padding-bottom: 3px;
  }
}
@media (min-width: 100em) {
  .nav-li-level1.has-subnav:last-child .nav-ul-level2 {
    left: 50%;
  }
}

/*------------------------------------*\
  $HEADER
\*------------------------------------*/
.page-header {
  width: 100%;
  position: relative;
  margin: 0 auto;
  max-width: 30000px;
}
.page-header__upper, .page-header__lower {
  display: block;
}
.page-header__upper {
  background: hsl(0, 0%, -5%);
}
.page-header__lower {
  background: #000;
  font-size: 0;
  height: 90px;
}
.page-header__lower-wrapper {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: wrap;
  height: 100%;
}
.page-header__logo {
  display: inline-block;
  margin-left: 20px;
  margin-right: auto;
  width: auto;
  max-width: 160px;
}
.page-header__logo svg,
.page-header__logo img {
  display: block;
  width: 100%;
  max-width: 160px;
  height: 50px;
}
.page-header__logo,
.page-header__logo svg,
.page-header__logo img {
  transition: all 0.5s ease;
}
.page-header__phone {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  text-decoration: none;
}
.page-header__phone p {
  line-height: 1;
  margin: 0;
}
.page-header__phone svg {
  height: 20px;
  width: 20px;
}
.page-header__upper .page-header__phone {
  display: none;
}
.page-header .phone__number {
  font-weight: 500;
  font-family: "Rubik", helvetica, sans-serif;
  display: none;
  font-size: 1.5rem;
  position: relative;
  line-height: 1.5;
  top: -4px;
  word-break: break-word;
  word-wrap: break-word;
  color: #ffffff;
}
.page-header .phone__number:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  height: 1px;
  background-color: #ffffff;
  width: 0;
  display: block;
  transition: width 0.2s ease-in-out;
}
.page-header .phone__number:hover:after, .page-header .phone__number:active:after, .page-header .phone__number:focus:after {
  width: 100%;
}
.page-header .phone__icon {
  height: 50px;
  width: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.page-header .phone__icon svg {
  fill: #ffffff;
}
.page-header__menu {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 50px;
  width: 50px;
  background: transparent;
  position: relative;
  margin-right: calc(20px - 5px);
}
.page-header__menu svg {
  height: 14px;
  width: 18px;
  fill: #000000;
}
.page-header__menu .menu-toggle__close {
  height: 14px;
  width: 14px;
}
.page-header__menu.element-expanded--false .menu-toggle__open {
  display: inline-block;
}
.page-header__menu.element-expanded--false .menu-toggle__close {
  display: none;
}
.page-header__menu.element-expanded--true .menu-toggle__open {
  display: none;
}
.page-header__menu.element-expanded--true .menu-toggle__close {
  display: inline-block;
}
.page-header__menu:hover, .page-header__menu:active, .page-header__menu:focus {
  background: transparent;
}
.page-header__menu:hover svg, .page-header__menu:active svg, .page-header__menu:focus svg {
  fill: #000000;
}
.page-header__support-centre, .page-header__enquiry {
  position: relative;
  padding: 20px 25px;
  background-color: transparent;
  width: 100%;
}
.page-header__support-centre {
  padding-bottom: 5px;
}
.page-header__search.element-expanded--false + .page-header__enquiry {
  padding-top: 0;
}
@media (max-width: 1874.99em) {
  .page-header__search {
    position: relative;
    width: 100%;
  }
}
.page-header__search--upper {
  padding: 12px 20px 18px;
}
.page-header__search--lower {
  background: #000;
  padding: 10px 20px 30px;
  z-index: 17;
}
.page-header__search--lower p {
  margin-top: 0;
  margin-bottom: 10px;
  font-weight: 700;
  font-family: "Rubik", helvetica, sans-serif;
  color: #ffffff;
}
.page-header__search--lower button {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  background-color: #000;
  border: 0;
  height: 50px;
  width: 50px;
  cursor: pointer;
  display: flex;
}
.page-header__search--lower button svg {
  margin: auto;
  fill: #ffffff;
}
.page-header__search.element-expanded--false .page-header__search--lower {
  display: none;
}
.page-header__search svg {
  fill: #ffffff;
  height: 16px;
  width: 16px;
}
.page-header__search .search--close,
.page-header__search .search--open {
  position: relative;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
.page-header__search .search--close {
  display: none;
}
.page-header__search .search--open {
  display: block;
}
.page-header__search .search__form {
  width: 100%;
}
.page-header__search .search__btn {
  height: 40px;
  width: 40px;
  position: relative;
  left: -10px;
  display: flex;
  background: transparent;
  border-radius: 3px;
}
.page-header__search .search__btn[data-visible] .search--close {
  display: block;
}
.page-header__search .search__btn[data-visible] .search--open {
  display: none;
}
.page-header__search .search__bar {
  position: relative;
}
.page-header__search input {
  width: calc(100% - 50px);
  height: 50px;
}
@media (max-width: 47.99em) {
  .page-header__lower-wrapper > .page-header__support-centre {
    display: none;
  }
}
@media (min-width: 48em) {
  .page-header__upper, .page-header__enquiry {
    padding-left: 30px;
    padding-right: 30px;
  }
  .page-header__lower {
    height: 120px;
  }
  .page-header__logo {
    margin-left: 30px;
  }
  .page-header__logo,
  .page-header__logo svg,
  .page-header__logo img {
    max-width: 180px;
  }
  .page-header__phone svg {
    height: 28px;
    width: 28px;
  }
  .page-header__support-centre {
    padding: 0;
    width: auto;
    margin-left: 25px;
  }
  .nav__overflow .page-header__support-centre {
    display: none;
  }
  .page-header__menu {
    margin-right: 30px;
  }
  .page-header__search--lower {
    padding-left: 30px;
    padding-right: 30px;
  }
  .page-header__search--upper {
    padding-left: 30px;
    padding-right: 30px;
  }
  .page-header__search .search__btn {
    border-radius: 3px;
  }
}
@media (min-width: 67.5em) {
  .page-header__phone {
    padding-top: 7px;
    margin-right: 15px;
  }
  .page-header .phone__number {
    display: inline-block;
    font-size: 1.125rem;
  }
  .page-header .phone__icon {
    display: none;
  }
}
@media (min-width: 75em) {
  .page-header__logo {
    margin-bottom: 0;
    max-height: 50px;
    align-self: center;
    margin-right: auto;
  }
  .page-header__logo,
  .page-header__logo svg,
  .page-header__logo img {
    max-width: 214px;
  }
}

/*------------------------------------*\
  $HEADER-STICKY
\*------------------------------------*/
@media (max-width: 1874.99em) {
  .page-header {
    position: fixed;
    z-index: 21;
  }
  .page-header__lower {
    position: relative;
    background: #000;
  }
  .page-header__lower:before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: #000;
    box-shadow: 0px 2px 6px 0 rgba(0, 0, 0, 0.3);
    z-index: -1;
    opacity: 0;
    transition: opacity 0.2s ease-in;
  }
  .has-header-bg-fade .page-header__lower:before {
    opacity: 1;
  }
}
@media (min-width: 48em) and (max-width: 1874.99em) {
  .page-header__lower {
    transition: all 0.3s ease-in-out;
    will-change: transform;
  }
  .has-sticky-nav .page-header__lower {
    height: 100px;
  }
}
@media (min-width: 75em) {
  .has-sticky-nav .page-header__lower {
    height: 100px;
  }
}
@media (min-width: 1875em) {
  .has-sticky-nav .page-header__upper {
    display: none;
  }
  .has-sticky-nav .page-header__lower-wrapper {
    height: 100px;
    display: flex;
    align-items: center;
  }
  .has-sticky-nav .page-header__lower:before {
    box-shadow: 0px 5px 7px 0 rgba(0, 0, 0, 0.3);
  }
}
@media (min-width: 1875em) {
  .is-sticky.page-content {
    padding-top: 130px;
  }
  .is-sticky.page-header {
    will-change: transform;
    position: fixed;
    width: 100%;
    z-index: 15;
    transform: translateY(-130px);
    animation: site-header-slide-down 0.5s;
    animation-delay: 0.5s;
    animation-fill-mode: forwards;
    box-shadow: 0px 5px 7px 0 rgba(0, 0, 0, 0.3);
  }
}

@keyframes site-header-slide-down {
  from {
    transform: translateY(-130px);
  }
  to {
    transform: translateY(0);
  }
}
/*------------------------------------*\
  $HEADER-TRANSPARENT
\*------------------------------------*/
.has-media-window .page-header__upper {
  background: rgba(51, 51, 51, 0.4);
}
@media (max-width: 1874.99em) {
  .has-media-window .page-header__lower {
    background: transparent;
  }
}
.has-media-window:not(.has-header-bg-fade) .page-header__lower:before {
  opacity: 0;
}

.glide--hero picture:before,
.glide--hero .glide__video--wrap:before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: linear-gradient(to bottom, hsl(0, 0%, 0%) 0%, hsla(0, 0%, 0%, 0.738) 19%, hsla(0, 0%, 0%, 0.541) 34%, hsla(0, 0%, 0%, 0.382) 47%, hsla(0, 0%, 0%, 0.278) 56.5%, hsla(0, 0%, 0%, 0.194) 65%, hsla(0, 0%, 0%, 0.126) 73%, hsla(0, 0%, 0%, 0.075) 80.2%, hsla(0, 0%, 0%, 0.042) 86.1%, hsla(0, 0%, 0%, 0.021) 91%, hsla(0, 0%, 0%, 0.008) 95.2%, hsla(0, 0%, 0%, 0.002) 98.2%, hsla(0, 0%, 0%, 0) 100%);
  opacity: 0.6;
  pointer-events: none;
  z-index: 1;
}
.glide--hero picture:after,
.glide--hero .glide__video--wrap:after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: #000000;
  opacity: 0.15;
  pointer-events: none;
  z-index: 1;
}
.glide--hero .glide__video--wrap:after {
  opacity: 0.5;
}

@media (min-width: 1875em) {
  .has-sticky-nav.has-media-window .page-header {
    position: fixed;
    z-index: 21;
  }
  .has-media-window .page-header {
    position: absolute;
    z-index: 21;
  }
  .has-media-window:not(.has-sticky-nav) .page-header__lower {
    background: transparent;
  }
  .glide__caption {
    padding-top: calc(130px - 20px);
  }
}
@media (min-width: 1875em) {
  .is-sticky.has-media-window.page-content {
    padding-top: 0;
  }
}
/*------------------------------------*\
  $HEADER-BRAND
\*------------------------------------*/
.page-header__menu {
  margin-left: 10px;
}
.page-header__menu:before {
  content: "";
  top: 5px;
  bottom: 5px;
  left: 5px;
  right: 5px;
  position: absolute;
  background-image: linear-gradient(to right, #fdc715 0%, #00C19F 50%, #22AAE2 100%);
  border-radius: 50%;
  transform: rotate(0);
  transition: transform 0.4s;
}
.has-primary-nav .page-header__menu:before {
  transform: rotate(35deg);
}
.page-header__menu:hover:before {
  transform: rotate(35deg);
}
.page-header__menu svg {
  position: relative;
  z-index: 1;
}
.page-header__grad-bar {
  height: 10px;
  background: linear-gradient(to right, #fdc715 0%, #00C19F 50%, #22AAE2 100%);
  position: relative;
}
.page-header__grad-bar:before {
  content: "";
  position: absolute;
  bottom: 100%;
  left: 0;
  right: 0;
  height: 500px;
  background: linear-gradient(to right, #fdc715 0%, #00C19F 50%, #22AAE2 100%);
}
.has-media-window .page-header__grad-bar:before {
  display: none;
}
@media (min-width: 48em) {
  .page-header__menu {
    margin-left: 35px;
    transition: margin 0.5s ease;
  }
  .page-header__menu:before {
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
  }
  .page-header__menu svg {
    height: 14px;
    width: 22px;
  }
  .page-header__menu .menu-toggle__close {
    height: 16px;
    width: 16px;
  }
  .page-header__grad-bar {
    height: 11px;
  }
}
@media (min-width: 67.5em) {
  .page-header__menu {
    margin-left: 40px;
  }
  .page-header__grad-bar {
    height: 13px;
  }
}
@media (min-width: 75em) {
  .page-header__lower {
    height: 130px;
  }
}
@media (min-width: 90em) {
  .page-header__logo {
    margin-left: 130px;
  }
  .page-header__menu {
    margin-right: 130px;
  }
}

/*------------------------------------*\
  $NAVIGATION-SLIDE-IN
\*------------------------------------*/
@media (max-width: 1874.99em) {
  .nav__slide-in {
    position: absolute;
    inset-inline-start: 100%;
    width: 385px;
    max-width: 85%;
    top: calc(90px + 0px);
    height: calc(100vh - 90px - 0px);
    z-index: 20;
    transition: all 0.3s ease-in-out;
    transform: translate3d(0, 0, 0);
    overflow: hidden;
    will-change: transform;
    background: linear-gradient(to right, #fdc715 0%, #00C19F 50%, #22AAE2 100%);
    overflow-y: auto;
    overflow-x: hidden;
    overscroll-behavior-y: contain;
  }
  .has-primary-nav .nav__slide-in {
    transform: translate3d(-100%, 0, 0);
    box-shadow: 1px 0px 7px 3px rgba(0, 0, 0, 0.2);
  }
}
@media (min-width: 48em) and (max-width: 74.99em) {
  .nav__slide-in {
    top: calc(120px + 0px);
    height: calc(100vh - 120px - 0px);
  }
  .is-sticky .nav__slide-in {
    top: calc(100px + 0px);
    height: calc(100vh - 100px - 0px);
  }
}
@media (min-width: 75em) and (max-width: 1874.99em) {
  .nav__slide-in {
    top: calc(130px + 0px);
    height: calc(100vh - 130px - 0px);
  }
  .is-sticky .nav__slide-in {
    top: calc(100px + 0px);
    height: calc(100vh - 100px - 0px);
  }
}
@media (min-width: 1875em) {
  .nav__slide-in {
    flex-shrink: 0;
    display: flex;
    margin-inline-start: 30px;
  }
}
@media (max-width: 1874.99em) {
  .nav__overflow {
    max-height: 100%;
    min-height: calc(100.1vh - 90px - 0px);
  }
  .nav__overflow:after {
    content: "";
    height: 180px;
    display: block;
  }
}
@media (min-width: 48em) and (max-width: 74.99em) {
  .nav__overflow {
    min-height: calc(100.1vh - 120px - 0px);
  }
  .is-sticky .nav__overflow {
    min-height: calc(100.1vh - 100px - 0px);
  }
}
@media (min-width: 75em) and (max-width: 1874.99em) {
  .nav__overflow {
    min-height: calc(100.1vh - 130px - 0px);
  }
  .is-sticky .nav__overflow {
    min-height: calc(100.1vh - 100px - 0px);
  }
}
@media (min-width: 1875em) {
  .nav__overflow {
    flex-shrink: 0;
    display: flex;
  }
}
.nav__overlay.overlay {
  position: absolute;
  top: 90px;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 19;
  animation-name: fade-in;
  animation-duration: 0.4s;
  background: transparent;
}
@media (min-width: 48em) {
  .nav__overlay.overlay {
    top: 120px;
  }
}
@media (min-width: 75em) {
  .nav__overlay.overlay {
    top: 130px;
  }
}

@media (max-width: 1874.99em) {
  .has-primary-nav {
    width: 100%;
    overflow: hidden;
  }
}

/*------------------------------------*\
  $CONTENT
\*------------------------------------*/
.page-content {
  background-color: #ffffff;
  flex: 1 1 auto;
  width: 100%;
  padding-top: 90px;
}
.has-media-window .page-content {
  padding-top: 0;
}
@media (min-width: 48em) {
  .page-content {
    padding-top: 120px;
  }
}
@media (min-width: 75em) {
  .page-content {
    padding-top: 130px;
  }
}
.site--home .page-content {
  background-color: #ffffff;
}

.main-content {
  margin-top: 40px;
  margin-bottom: 40px;
}
@media (min-width: 48em) {
  .main-content {
    margin-top: 60px;
    margin-bottom: 60px;
  }
}
@media (min-width: 60em) {
  .main-content {
    margin-top: 80px;
    margin-bottom: 80px;
  }
}
.page--margin-bottom-none .main-content {
  margin-bottom: 0;
}
.site--home .main-content {
  margin-top: 0;
}
.main-content > .text-content:first-child > *:first-child {
  margin-top: 0;
}

/*------------------------------------*\
  $CONTENT
\*------------------------------------*/
.page-content {
  max-width: 30000px;
  margin-left: auto;
  margin-right: auto;
}

/*------------------------------------*\
  $FOOTER
\*------------------------------------*/
.page-footer {
  width: 100%;
  max-width: 30000px;
  margin: 0 auto;
}
.page-footer p,
.page-footer li,
.page-footer a {
  color: #ffffff;
  font-size: 0.875rem;
}
.page-footer ul {
  margin: 0;
}
.page-footer li {
  display: block;
}
.page-footer li:last-child {
  margin: 0;
}
.page-footer a {
  text-decoration-line: none;
}
.page-footer a:hover, .page-footer a:active, .page-footer a:focus {
  text-decoration-line: underline;
  color: #ffffff;
}
.page-footer address p {
  margin-top: 0;
  margin-bottom: 0;
}
.page-footer .btn {
  min-width: 170px;
}
.page-footer__logo {
  padding-bottom: 30px;
}
.page-footer__logo img,
.page-footer__logo svg {
  width: 170px;
}
.page-footer__sign-up {
  background-color: #000;
  padding-top: 30px;
  padding-bottom: 30px;
}
.page-footer__sign-up .page-footer__wrapper {
  padding: 0;
}
.page-footer__sign-up .page-footer__wrapper > *:first-child {
  margin-top: 0;
}
.page-footer__sign-up .page-footer__wrapper > *:last-child {
  margin-bottom: 0;
}
.page-footer__upper {
  padding-bottom: 35px;
}
.page-footer__lower {
  padding: 35px 20px;
}
.page-footer__lower h2 {
  color: #FBFBFB;
  font-size: 0.8125rem;
  margin: 0 0 20px;
}
.page-footer__lower img {
  width: 120px;
  margin-bottom: 20px;
}
.page-footer__lower a img {
  filter: grayscale(100%) brightness(100);
}
.page-footer__lower a:hover img, .page-footer__lower a:active img, .page-footer__lower a:focus img {
  filter: none;
}
.page-footer__lower .page-footer__wrapper {
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
  background: #191919;
  padding: 30px;
}
.page-footer__lower .page-footer__wrapper > picture:last-child img {
  width: 72px;
  margin-bottom: 0;
}
.page-footer__divider .divider-module hr {
  background-image: linear-gradient(to right, rgba(255, 255, 255, 0.8) 0%, rgba(255, 255, 255, 0.8) 25%, rgba(255, 255, 255, 0) 25%, rgba(255, 255, 255, 0) 100%);
}
.page-footer__contact, .page-footer__link-list {
  padding-top: 25px;
}
.page-footer__link-list li {
  margin-bottom: 5px;
}
.page-footer__link-list a {
  font-weight: 300;
  font-family: "Rubik", helvetica, sans-serif;
}
.page-footer .btn:hover, .page-footer .btn:active, .page-footer .btn:focus {
  text-decoration: none;
}
.page-footer__title {
  margin-bottom: 20px;
}
.page-footer__title,
.page-footer__title a {
  margin-top: 0;
  color: #ffffff;
  font-size: 1.125rem;
}
.page-footer__credits {
  padding-bottom: 35px;
  padding-top: 20px;
}
.page-footer__copyright {
  margin-top: 0;
  margin-bottom: 0;
}
.page-footer__social-links ul {
  display: flex;
}
.page-footer__social-links li {
  margin: 0;
  margin-right: 20px;
  line-height: 1;
}
.page-footer__social-links svg {
  width: 18px;
  height: 18px;
  fill: #000000;
}
.page-footer__social-links svg.twitter {
  height: calc(18px - 2px);
  width: calc(18px - 2px);
}
.page-footer__social-links a {
  height: 40px;
  width: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.page-footer__copyright-social {
  margin-top: 30px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.page-footer__social-links {
  margin-top: 20px;
}
.page-footer__legal-links {
  margin-bottom: 5px;
}
@media (min-width: 37.5em) {
  .page-footer__legal-links ul {
    display: flex;
    flex-wrap: wrap;
  }
  .page-footer__credits br {
    display: none;
  }
}
@media (min-width: 48em) {
  .page-footer p,
  .page-footer li,
  .page-footer a {
    font-size: 0.9375rem;
  }
  .page-footer address p {
    line-height: 1.7;
  }
  .page-footer__contact, .page-footer__link-list {
    padding-top: 45px;
  }
  .page-footer__sign-up .page-footer__wrapper, .page-footer__about .page-footer__wrapper {
    width: 100%;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .page-footer__sign-up .page-footer__wrapper > *, .page-footer__about .page-footer__wrapper > * {
    margin-top: 0;
    margin-bottom: 0;
  }
  .page-footer__sign-up .btn, .page-footer__about .btn {
    margin-top: 0;
    margin-left: 20px;
  }
  .page-footer__upper {
    padding-bottom: 40px;
  }
  .page-footer__upper .page-footer__wrapper {
    display: flex;
    justify-content: flex-start;
  }
  .page-footer__lower {
    padding: 40px 30px 35px;
  }
  .page-footer__lower h2 {
    width: 100%;
    font-size: 0.875rem;
    margin-bottom: 15px;
  }
  .page-footer__lower img {
    width: auto;
    margin-bottom: 0;
    height: 32px;
    margin-right: 50px;
  }
  .page-footer__lower a:last-child img {
    margin-right: 0;
    width: auto;
  }
  .page-footer__lower .page-footer__wrapper {
    flex-wrap: wrap;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    padding: 25px 20px;
  }
  .page-footer__lower .page-footer__wrapper > picture:last-child img {
    margin-right: 0;
  }
  .page-footer__title {
    margin-bottom: 25px;
  }
  .page-footer__title, .page-footer__title a {
    font-size: 1.25rem;
  }
  .page-footer__contact {
    margin-right: 65px;
  }
  .page-footer__copyright-social {
    justify-content: space-between;
    flex-direction: row;
    margin-top: 30px;
    align-items: flex-end;
  }
  .page-footer__legal-links li {
    margin-right: 25px;
  }
  .page-footer__social-links {
    margin: 0;
    margin-left: 30px;
  }
  .page-footer__social-links li {
    margin-right: 20px;
  }
  .page-footer__social-links a {
    height: 44px;
    width: 44px;
  }
  .page-footer__social-links svg {
    width: 20px;
    height: 20px;
  }
  .page-footer__social-links svg.youtube {
    height: calc(20px - 2px);
    width: calc(20px + 8px);
  }
  .page-footer__social-links svg.twitter {
    height: calc(20px - 2px);
    width: calc(20px - 2px);
  }
}
@media (min-width: 60em) {
  .page-footer__lower img {
    height: 44px;
  }
  .page-footer__lower .page-footer__wrapper {
    justify-content: space-between;
  }
  .page-footer__lower .page-footer__wrapper > picture:last-child img {
    width: auto;
  }
}
@media (min-width: 67.5em) {
  .page-footer p,
  .page-footer li,
  .page-footer a {
    font-size: 1rem;
  }
  .page-footer__contact, .page-footer__link-list {
    padding-top: 60px;
  }
  .page-footer__lower {
    padding-bottom: 40px;
  }
  .page-footer__lower h2 {
    font-size: 1.375rem;
    margin-bottom: 35px;
  }
  .page-footer__lower img {
    height: 50px;
  }
  .page-footer__lower .page-footer__wrapper {
    padding: 45px 40px;
  }
  .page-footer__title {
    margin-bottom: 30px;
  }
  .page-footer__title,
  .page-footer__title a {
    font-size: 1.5rem;
  }
  .page-footer__social-links li {
    margin-right: 20px;
  }
}
@media (min-width: 75em) {
  .page-footer__lower img {
    margin-right: 45px;
  }
}

/*------------------------------------*\
  $FOOTER
\*------------------------------------*/
.page-footer {
  background: #000000;
}
.page-footer ::selection {
  background: #ffffff;
  color: #000;
}
.page-footer__sign-up p {
  font-size: 1.125rem;
}
.page-footer__upper {
  padding-top: 25px;
}
.page-footer__contact {
  padding-top: 0;
}
.page-footer__contact:last-child {
  margin-top: 15px;
}
.page-footer address {
  margin-bottom: 0;
}
.page-footer .contact-details {
  font-weight: 400;
  font-family: "Rubik", helvetica, sans-serif;
}
.page-footer .contact-details a {
  font-weight: 400;
  font-family: "Rubik", helvetica, sans-serif;
}
.page-footer__title,
.page-footer__title a {
  font-weight: 500;
  font-family: "Rubik", helvetica, sans-serif;
}
.page-footer__legal-links ul {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.page-footer__credits {
  padding-top: 0;
}
.page-footer__credits p,
.page-footer__credits p a {
  font-weight: 300;
  font-family: "Rubik", helvetica, sans-serif;
}
.page-footer__social-links .btn {
  min-width: auto;
}
.page-footer__financial-statement {
  margin-top: 40px;
  margin-bottom: 0px;
}
.page-footer__financial-statement p {
  max-width: 860px;
  margin-bottom: 0;
}
.page-footer__financial-statement p a {
  text-decoration-line: underline;
  text-underline-offset: 0.2em;
}
.page-footer__financial-statement p a:hover, .page-footer__financial-statement p a:active, .page-footer__financial-statement p a:focus {
  text-decoration-line: none;
}
@media (max-width: 47.99em) {
  .page-footer__contact a, .page-footer__link-list a, .page-footer__legal-links a {
    display: inline-flex;
  }
  .page-footer__contact li, .page-footer__link-list li, .page-footer__legal-links li {
    margin-bottom: 0;
  }
  .page-footer__link-list {
    padding-top: 35px;
  }
}
@media (min-width: 48em) {
  .page-footer__sign-up p {
    font-size: 1.5rem;
  }
  .page-footer__upper {
    padding-top: 40px;
  }
  .page-footer .contact-details li {
    margin-bottom: 0;
  }
  .page-footer__contact {
    padding-top: 0;
  }
  .page-footer__contact:last-child {
    margin-top: 0;
  }
  .page-footer__legal-links ul {
    flex-direction: row;
  }
  .page-footer__legal-links li {
    margin-right: 20px;
    margin-bottom: 0;
  }
  .page-footer__legal-links li:last-child {
    margin-right: 0;
  }
}
@media (min-width: 67.5em) {
  .page-footer__sign-up p {
    font-size: 1.625rem;
  }
  .page-footer__credits {
    padding-bottom: 75px;
  }
  .page-footer__copyright-social {
    margin-top: 0;
  }
  .page-footer__financial-statement {
    margin-top: 60px;
  }
}
@media (min-width: 75em) {
  .page-footer__upper {
    padding-top: 70px;
    padding-bottom: 60px;
  }
  .page-footer__lower {
    padding-top: 60px;
    padding-bottom: 55px;
  }
  .page-footer__lower .page-footer__wrapper {
    padding: 50px;
  }
  .page-footer__lower img {
    height: 55px;
  }
  .page-footer__legal-links li {
    margin-right: 30px;
  }
}

/*------------------------------------*\
  $BLOCKS
\*------------------------------------*/
/*------------------------------------*\
  $MODAL WINDOWS
\*------------------------------------*/
.modal {
  overflow: hidden;
  max-width: 95%;
  width: 1000px;
  position: relative;
  background-color: #ffffff;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  border-radius: 3px;
  text-align: left;
  z-index: 30;
  -webkit-font-smoothing: antialiased;
}
.modal__wrapper {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  height: 100%;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 30;
  padding: 1px;
  animation-name: fade-in;
  animation-duration: 0.4s;
}
.modal__header {
  position: relative;
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
}
.modal__close {
  position: relative;
  display: flex;
  width: 55px;
  height: 55px;
  background-color: #000000;
  transition: background 0.3s ease-in-out;
  z-index: 40;
  cursor: pointer;
}
.modal__close svg {
  margin: auto;
  width: 17px;
  height: 16px;
  fill: #ffffff;
}
.modal__close:hover, .modal__close:active, .modal__close:focus {
  background-color: #2b2b2b;
}
.modal__close:hover svg, .modal__close:active svg, .modal__close:focus svg {
  fill: #ffffff;
}
.modal__content {
  margin: 20px;
}
.modal__content .main-content:nth-child(2) {
  margin-top: 0;
}
.modal__body {
  background-color: #ffffff;
  overflow-y: auto;
  overflow-x: hidden;
  -webkit-overflow-scrolling: touch;
  transition: max-height 0.2s ease-in;
  max-height: 80vh;
  overscroll-behavior-y: none;
  scrollbar-face-color: #a3a3a3;
  scrollbar-base-color: #ddd;
  scrollbar-shadow-color: #707070;
}
@-moz-document url-prefix() {
  .modal__body {
    scrollbar-color: #a3a3a3 #ddd;
    scrollbar-width: thin;
  }
}
.modal__body::-webkit-scrollbar {
  width: 10px;
  height: 0;
}
.modal__body::-webkit-scrollbar-track {
  -webkit-box-shadow: inset 0 0 2px rgba(0, 0, 0, 0.3);
  background-color: #ddd;
}
.modal__body::-webkit-scrollbar-thumb {
  border-radius: 10px;
  background: #a3a3a3;
}
.modal__body::-webkit-scrollbar-button {
  width: 10px;
  height: 0;
  display: block;
}
.modal-content-loading .modal__body {
  max-height: 30vh;
}
@media screen and (max-height: 800px) {
  .modal-content-loading .modal__body {
    max-height: 50vh;
  }
}
.modal .modal__back-link {
  margin: 10px auto 0 10px;
  height: 40px;
  position: relative;
}
.modal .modal__back-link svg {
  fill: #ffffff;
  width: 10px;
  height: 9px;
  margin: auto;
  pointer-events: none;
  transform: rotate(90deg);
  position: absolute;
  left: 14px;
  top: 16px;
}
.modal .modal__back-link span {
  margin-left: 5px;
}
.modal__box--path .modal__content {
  margin: 0;
}
.modal__box--video .modal__header {
  position: absolute;
  right: 0;
}
.modal__box--video .modal__close {
  height: 40px;
  width: 40px;
}
.modal__box--video .modal__content {
  margin: 40px;
}
.modal__box--video .video__wrap {
  width: 100%;
  position: relative;
  overflow: hidden;
  display: block;
}
.modal__box--video .video__wrap:before {
  content: "";
  display: block;
}
.modal__box--video .video__wrap--16x9:before {
  padding-bottom: 56.25%;
}
.modal__box--video .video__wrap--4x3:before {
  padding-bottom: 75%;
}
.modal__box--video .video__wrap--3x2:before {
  padding-bottom: 66.66%;
}
.modal__box--video .video__wrap--square:before {
  padding-bottom: 100%;
}
.modal__box--video .video__wrap iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.modal__launch--video {
  position: relative;
  display: block;
}
.modal__launch--video:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.2);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 112'%3E%3Cpath fill='%23FFF' d='M96.6 50.1c3.2 1.8 4.3 5.9 2.5 9.1-.6 1-1.5 1.9-2.5 2.5L10 111c-3.2 1.8-7.3.7-9.1-2.5-.6-1-.9-2.2-.9-3.3V6.7C0 3 3 0 6.7 0 7.9 0 9 .3 10 .9l86.6 49.2z'/%3E%3C/svg%3E");
  background-size: 28px 33px;
  background-position: 51% center;
  background-repeat: no-repeat;
  z-index: 1;
  border-radius: 3px;
}
.modal__launch--video:hover:before, .modal__launch--video:active:before, .modal__launch--video:focus:before {
  background-color: rgba(0, 0, 0, 0.3);
}
.modal__launch--video.btn {
  display: inline-flex;
}
.modal__launch--video.btn:before {
  display: none;
}
.modal__launch--scrape {
  cursor: pointer;
}
.modal__hidden-data {
  display: none;
  position: absolute;
  overflow: hidden;
  margin: -1px;
  padding: 0;
  height: 1px;
  width: 1px;
  clip: rect(0 0 0 0);
  border: 0;
}
@media (min-width: 30em) {
  .modal__launch--video:before {
    background-size: 50px 57px;
    background-position: center center;
  }
}
@media (min-width: 48em) {
  .modal {
    border-radius: 3px;
  }
  .modal__body {
    max-height: 95vh;
  }
  .modal__launch--video:before {
    border-radius: 3px;
  }
  .cell .modal__launch--video:before {
    background-size: 28px 33px;
    background-position: 51% center;
  }
}
@media (min-width: 60em) {
  .modal__close {
    height: 70px;
    width: 70px;
  }
  .modal__content {
    margin: 40px;
  }
  .modal .modal__back-link {
    margin-top: 15px;
    margin-left: 15px;
    height: 40px;
  }
  .modal__box--video .modal__close {
    height: 50px;
    width: 50px;
  }
  .modal__box--video .modal__content {
    margin: 50px;
  }
  .modal__launch--video:before {
    background-size: 80px 90px;
    background-position: center center;
  }
  .cell .modal__launch--video:before {
    background-size: 60px 67px;
    background-position: center center;
  }
}

.has-modal {
  width: 100%;
  overflow: hidden;
}

.overlay {
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  display: none;
  background-color: rgba(0, 0, 0, 0.5);
  animation-name: fade-in;
  animation-duration: 0.4s;
  z-index: 30;
}
.overlay.is-visible {
  display: inherit;
  touch-action: none;
}

@keyframes fade-in {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes fade-in-slide-down {
  from {
    transform: translate(-50%, -100%);
    opacity: 0;
  }
  to {
    transform: translate(-50%, -50%);
    opacity: 1;
  }
}
@keyframes fade-in-slide-up {
  from {
    transform: translate(-50%, 0%);
    opacity: 0;
  }
  to {
    transform: translate(-50%, -50%);
    opacity: 1;
  }
}
.loader-pulsing {
  display: block;
  z-index: 50;
  position: relative;
  margin: 80px auto;
  width: 30px;
  height: 30px;
}
.loader-pulsing:before {
  content: "";
  position: absolute;
  display: block;
  width: 300%;
  height: 300%;
  box-sizing: border-box;
  margin-left: -100%;
  margin-top: -100%;
  border-radius: 50%;
  background-color: #000;
  animation: pulse-ring 1.25s cubic-bezier(0.215, 0.61, 0.355, 1) infinite;
}
.loader-pulsing:after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  display: block;
  width: 100%;
  height: 100%;
  background-color: #000;
  border-radius: 50%;
  animation: pulse-dot 1.25s cubic-bezier(0.455, 0.03, 0.515, 0.955) -0.4s infinite;
}

@keyframes pulse-ring {
  0% {
    transform: scale(0.33);
  }
  80%, 100% {
    opacity: 0;
  }
}
@keyframes pulse-dot {
  0% {
    transform: scale(0.8);
  }
  50% {
    transform: scale(1);
  }
  100% {
    transform: scale(0.8);
  }
}
/*------------------------------------*\
  $MESSAGES
\*------------------------------------*/
.message-box, .message-text, .message-banner {
  margin-top: 5px;
}
.message-box p, .message-text p, .message-banner p {
  margin: 0;
}
.message-box--error,
.message-box--error p,
.message-box--error li, .message-box--warning,
.message-box--warning p,
.message-box--warning li, .message-text--error,
.message-text--error p,
.message-text--error li, .message-text--warning,
.message-text--warning p,
.message-text--warning li, .message-banner--error,
.message-banner--error p,
.message-banner--error li, .message-banner--warning,
.message-banner--warning p,
.message-banner--warning li {
  color: rgb(149.9347826087, 59.0652173913, 59.0652173913);
}
.message-box--success,
.message-box--success p,
.message-box--success li, .message-text--success,
.message-text--success p,
.message-text--success li, .message-banner--success,
.message-banner--success p,
.message-banner--success li {
  color: rgb(40.3333333333, 71.5, 27.5);
}
.message-box--error, .message-box--warning, .message-banner--error, .message-banner--warning {
  background-color: #f2dede;
}
.message-box--success, .message-banner--success {
  background-color: #dff0d8;
}
.message-box {
  margin-top: 20px;
  margin-bottom: 20px;
  padding: 15px;
}
.message-box p {
  margin-bottom: 10px;
}
.message-box ul {
  margin-bottom: 0;
  margin-left: 20px;
  padding: 0;
}
.message-box ul li {
  list-style: disc;
}
.message-box li {
  font-size: 0.875rem;
  display: list-item;
}
.message-box li:before {
  display: none;
}
.message-banner {
  margin: 0;
  padding: 25px 20px;
  display: flex;
  align-items: center;
  z-index: 14;
  position: relative;
  width: 100%;
}
.message-banner p {
  font-size: 0.875rem;
  line-height: 1.2;
  margin: 0;
}
@media (min-width: 37.5em) {
  .message-banner p {
    font-size: 1rem;
  }
}
@media (min-width: 48em) {
  .message-banner {
    padding: 30px 30px;
  }
  .message-banner p {
    font-size: 1.125rem;
  }
}
@media (min-width: 60em) {
  .message-banner {
    padding-top: 35px;
    padding-bottom: 35px;
  }
}

.js-notice {
  text-align: center;
}

/*------------------------------------*\
  $MAPS
\*------------------------------------*/
.map__contact {
  min-height: 400px;
  width: 100%;
}
@media (min-width: 37.5em) {
  .map__contact {
    min-height: 500px;
  }
}
.map__module {
  height: 400px;
  min-height: 400px;
  width: 100%;
}
.map__module p {
  margin-top: 0;
  margin-bottom: 0;
  font-size: 1rem;
}
.map__module p:first-child {
  font-weight: 400;
  font-family: "Rubik", helvetica, sans-serif;
  font-size: 1.375rem;
  line-height: 1.1;
  padding-top: 10px;
  margin-bottom: 10px;
}
.map__module p:last-child {
  padding-bottom: 15px;
}
.map__module + .map__cards {
  margin-top: 30px;
}
@media (min-width: 30em) {
  .map__module {
    min-height: 500px;
  }
}
@media (min-width: 48em) {
  .map__module {
    min-height: 600px;
  }
  .map__module + .map__cards {
    margin-top: 45px;
  }
}
@media (min-width: 60em) {
  .map__module {
    min-height: 700px;
  }
}
@media (min-width: 75em) {
  .map__module + .map__cards {
    margin-top: 80px;
  }
}
@media (min-width: 37.5em) {
  .map__infowindow {
    padding-left: 10px;
    padding-right: 10px;
  }
}
@media (min-width: 60em) {
  .map__infowindow {
    padding: 10px 20px;
  }
}

/*------------------------------------*\
  $BUTTONS
\*------------------------------------*/
.btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  height: 40px;
  padding: 0 30px;
  background-color: #ffffff;
  color: #000;
  font: inherit;
  font-weight: 500;
  font-family: "Rubik", helvetica, sans-serif;
  font-size: 0.875rem;
  text-align: center;
  vertical-align: middle;
  text-decoration: none;
  width: auto;
  border: 0;
  cursor: pointer;
  -webkit-appearance: none;
  transition: background 0.3s ease-in-out;
  border-radius: 3px;
}
.btn span {
  pointer-events: none;
}
@media (min-width: 48em) {
  .btn {
    border-radius: 3px;
    height: 50px;
    font-size: 0.9375rem;
  }
}
@media (min-width: 60em) {
  .btn {
    font-size: 1rem;
  }
}
.btn:hover, .btn:active, .btn:focus {
  background-color: #ededed;
  color: #000;
}
.btn--rounded {
  border-radius: 50px;
}
.btn--full {
  width: 100%;
}
.btn--dark {
  background-color: #000000;
  color: #ffffff;
  border-radius: 50px;
}
.btn--dark:hover, .btn--dark:active, .btn--dark:focus {
  background-color: #2b2b2b;
  color: #ffffff;
}
.btn--white {
  background-color: #ffffff;
  color: #000000;
}
.btn--white:hover, .btn--white:active, .btn--white:focus {
  background-color: #e0e0e2;
  color: #000000;
}
.btn--brand {
  background-color: #000;
  color: #ffffff;
  border-radius: 50px;
}
.btn--brand:hover, .btn--brand:active, .btn--brand:focus {
  background-color: #2b2b2b;
  color: #ffffff;
}
.btn--brand.alt {
  background-color: #000;
  color: #ffffff;
}
.btn--brand.alt:hover, .btn--brand.alt:active, .btn--brand.alt:focus {
  background-color: #000;
  color: #ffffff;
}
.btn--secondary {
  background-color: #f8f8f8;
  color: #2b2b2b;
}
.btn--secondary:hover, .btn--secondary:active, .btn--secondary:focus {
  background-color: #ededed;
  color: #2b2b2b;
}
.btn--override {
  text-decoration: none;
  border: 0;
  cursor: pointer;
  -webkit-appearance: none;
  padding: 0;
}
.btn--override .visually-hidden {
  margin: 0;
}
.btn--icon {
  position: relative;
  padding-right: 50px;
}
.btn--icon:after {
  content: "";
  position: absolute;
  right: 20px;
  height: 10px;
  width: 12px;
  background-image: url("/assets/application/template/icon--link-internal-ecc634d7.svg");
  background-repeat: no-repeat;
  background-size: 12px 10px;
  transform: translateX(0);
  will-change: transform;
  transition: transform 0.2s;
}
.btn--icon:hover:after, .btn--icon:active:after, .btn--icon:focus:after {
  transform: translateX(5px);
}
@media (min-width: 48em) {
  .btn--icon {
    padding-right: 55px;
  }
  .btn--icon:after {
    right: 25px;
  }
}
.btn--select {
  border-radius: 3px;
  width: 100%;
  text-align: start;
  padding-inline-start: 20px;
  padding-inline-end: 50px;
  background-position: right 20px center;
  background-image: url("/assets/application/template/select-arrow-down-white-37bf1d5f.svg");
}
@media (min-width: 37.5em) {
  .btn--select {
    width: auto;
  }
}
@media (min-width: 48em) {
  .btn--select {
    border-radius: 3px;
  }
}
.btn--gradient {
  position: relative;
  overflow: hidden;
  background: none;
  color: #2b2b2b;
}
.btn--gradient::before {
  content: "";
  position: absolute;
  top: -80%;
  left: -5%;
  width: 120%;
  height: 400%;
  background: linear-gradient(to right, #fdc715 0%, #fdc715 10%, #00C19F 50%, #22AAE2 90%, #22AAE2 100%);
  transform-origin: center;
  transform: rotate(0deg);
  transition: transform 0.4s ease-in-out;
  z-index: -1;
}
.btn--gradient:hover, .btn--gradient:active, .btn--gradient:focus {
  color: #2b2b2b;
  background: none;
}
.btn--gradient:hover::before, .btn--gradient:active::before, .btn--gradient:focus::before {
  transform: rotate(50deg);
}

/*------------------------------------*\
  $GLIDEJS SLIDERS
\*------------------------------------*/
.glide {
  background-color: transparent;
  max-width: 1440px;
  margin: 0 auto;
  /**
   * Hero Slider
   */
  /**
  * Gallery Sliders
  */
}
.glide__track {
  position: relative;
  width: 1170px;
  max-width: 100%;
  padding: 0;
}
.panel .glide__track {
  width: 100%;
}
.glide__arrows {
  pointer-events: none;
}
.glide__arrow {
  padding: 0;
  background-color: transparent;
  border: none;
  box-shadow: none;
  text-shadow: none;
  line-height: 1;
  width: 40px;
  height: 40px;
  border-radius: 0;
  pointer-events: all;
}
.glide__arrow--left span, .glide__arrow--right span {
  position: absolute !important;
  top: -9999px !important;
  left: -9999px !important;
}
.glide__arrow--disabled {
  opacity: 0.33;
}
.glide__bullet {
  background-color: rgba(255, 255, 255, 0.5);
  width: 10px;
  height: 10px;
  padding: 0;
  border-radius: 50%;
  border: 2px solid transparent;
  cursor: pointer;
  line-height: 0;
  box-shadow: 0 0.25em 0.5em 0 rgba(0, 0, 0, 0.1);
  margin: 0 9px;
  position: relative;
}
.glide__bullet:before, .glide__bullet:after {
  content: "";
  position: absolute;
  top: -2px;
  left: -2px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 2px solid #000;
  background-color: rgba(255, 255, 255, 0.5);
  transition: opacity 300ms ease-in-out;
  opacity: 0;
}
.glide__bullet:before {
  background-color: #000;
}
.glide__bullet:focus {
  outline: none;
}
.glide__bullet:hover:before, .glide__bullet:focus:before {
  opacity: 0;
}
.glide__bullet:hover:after, .glide__bullet:focus:after {
  opacity: 1;
}
.glide__bullet--active:before {
  opacity: 1;
}
.glide__bullets {
  display: block;
  z-index: 2;
  bottom: 10px;
}
@media (min-width: 37.5em) {
  .glide__bullets {
    display: none;
  }
}
.glide__slides {
  margin: 0;
}
.glide__track .glide__slides {
  padding: 0;
  margin: 0;
}
.glide__slide {
  margin-bottom: 0;
  list-style: none;
  position: relative;
  white-space: normal;
}
.glide__slide:before {
  display: none;
}
.glide__slide picture * {
  display: block;
  width: 100%;
  margin-bottom: 0;
}
.glide__slide a {
  text-decoration: none;
}
.glide--swipeable {
  cursor: default;
}
.glide img {
  margin-bottom: 0;
}
.glide__caption {
  height: 100%;
  display: flex;
  flex-direction: column;
}
.glide__caption--wrap {
  position: absolute;
  top: 0;
  right: 20px;
  left: 20px;
  height: 100%;
  padding: 0;
}
@media (min-width: 48em) {
  .glide__caption--wrap {
    right: 30px;
    left: 30px;
  }
}
@media (min-width: 90em) {
  .glide__caption--wrap {
    position: absolute;
    top: 50%;
    right: 0;
    left: 0;
    padding: 0;
    transform: translateY(-50%);
  }
}
.glide__caption--wrap .wrapper {
  position: relative;
  width: 1170px;
  height: 100%;
  max-width: 100%;
  margin: 0 auto;
}
.glide__caption a {
  text-decoration: none;
}
.glide__caption .caption__title {
  margin-top: 0;
  margin-bottom: 0;
  line-height: 1.2;
  white-space: normal;
}
.glide__caption .caption__desc {
  display: none;
  margin-top: 20px;
  line-height: 1.5;
  margin-bottom: 0;
}
.glide__caption .caption__link {
  display: none;
  line-height: 1rem;
  margin-top: 10px;
  width: auto;
}
@media (min-width: 48em) {
  .glide__caption .caption__link {
    display: inline-flex;
  }
}
.glide__slide--active .glide__caption {
  opacity: 0;
  animation-name: fade-in;
  animation-duration: 0.4s;
  animation-delay: 0.6s;
  animation-fill-mode: forwards;
}
.glide--hero {
  max-width: 100%;
  margin-bottom: 0;
}
.glide--hero .glide__slide--active {
  z-index: 1;
}
.glide--hero .glide__track {
  width: 100%;
}
@media (min-width: 90em) {
  .glide--hero {
    overflow: hidden;
    height: 700px;
    position: relative;
  }
  .glide--hero .glide__track {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
  }
}
.glide--hero .glide__arrow {
  height: 40px;
  width: 40px;
  pointer-events: all;
}
.glide--hero .glide__arrows {
  width: 70px;
  position: absolute;
  height: 30px;
  bottom: 30px;
  right: 30px;
  pointer-events: none;
}
@media (min-width: 30em) {
  .glide--hero .glide__arrows {
    bottom: 40px;
  }
}
@media (min-width: 48em) {
  .glide--hero .glide__arrows {
    width: 95px;
    right: 60px;
    bottom: 45px;
  }
}
@media (min-width: 75em) {
  .glide--hero .glide__arrows {
    bottom: 65px;
    left: 60px;
    width: auto;
    max-width: 1170px;
    margin: 0 auto;
  }
}
.glide--hero .glide__arrow--bg {
  width: 20px;
  margin-left: 10px;
}
@media (min-width: 48em) {
  .glide--hero .glide__arrow--bg {
    margin-left: 0;
  }
}
.glide--hero .glide__arrow svg {
  height: 8px;
  width: 13px;
  fill: #000;
}
@media (min-width: 48em) {
  .glide--hero .glide__arrow svg {
    height: 12px;
    width: 20px;
  }
}
.glide--hero .glide__arrow--left {
  left: 0;
}
@media (min-width: 75em) {
  .glide--hero .glide__arrow--left {
    left: auto;
    right: 60px;
  }
}
.glide--hero .glide__arrow--left svg {
  transform: rotate(90deg);
}
.glide--hero .glide__arrow--right {
  right: 0;
}
.glide--hero .glide__arrow--right svg {
  transform: rotate(-90deg);
}
.glide--hero .glide__arrow--right .glide__arrow--bg {
  margin-left: auto;
}
.glide--gallery .glide__slide--active {
  z-index: 1;
}
.glide--gallery .glide__arrow {
  background-color: transparent;
}
@media (min-width: 48em) {
  .glide--gallery .glide__arrow {
    height: 60px;
    width: 60px;
  }
}
.glide--gallery .glide__arrow svg {
  color: #000;
  fill: #000;
}
.glide--gallery .glide__arrow svg,
.glide--gallery .glide__arrow .glide__arrow--bg {
  width: 40px;
  height: 40px;
  margin: auto;
}
@media (min-width: 48em) {
  .glide--gallery .glide__arrow svg,
  .glide--gallery .glide__arrow .glide__arrow--bg {
    width: 60px;
    height: 60px;
  }
}
.glide--gallery .glide__arrow--left {
  left: 10px;
}
@media (min-width: 37.5em) {
  .glide--gallery .glide__arrow--left {
    left: 20px;
  }
}
.glide--gallery .glide__arrow--left svg {
  transform: rotate(180deg);
}
.glide--gallery .glide__arrow--right {
  right: 10px;
}
@media (min-width: 37.5em) {
  .glide--gallery .glide__arrow--right {
    right: 20px;
  }
}

/*------------------------------------*\
  $GLIDEJS-BRAND
\*------------------------------------*/
.glide {
  /**
  * Hero Slider
  */
  /**
  * Gallery Sliders
  */
  /**
  * Video Header
  */
  /**
  * Video Header
  */
}
.glide--hero {
  background: #707070;
}
.glide--hero .glide__slides {
  margin: 0;
  transform: translate3d(0, 0, 0) !important;
  width: auto !important;
}
.glide--hero .glide__slides:after {
  content: "";
  display: table;
  clear: both;
}
.glide--hero .glide__slide {
  opacity: 0;
  z-index: 0;
  transition: opacity 0.4s ease;
  height: auto;
  top: 0;
  position: relative;
  left: 100%;
  margin-left: -100% !important;
  float: left;
}
.glide--hero .glide__slide.glide__slide--active {
  opacity: 1;
  z-index: 1;
}
@media (min-width: 90em) {
  .glide--hero .glide__slide picture {
    position: absolute;
    left: 0;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
  }
  .glide--hero .glide__slides {
    height: 100%;
  }
  .glide--hero .glide__track {
    position: absolute;
    bottom: 0;
    top: 0;
    transform: none;
  }
}
.glide__caption {
  justify-content: center;
  align-items: center;
  text-align: center;
  padding-top: 40px;
}
.glide__caption--wrap {
  z-index: 2;
}
@media (min-width: 90em) {
  .glide__caption--wrap {
    height: 700px;
  }
}
.glide__caption .caption__title {
  font-size: 1.875rem;
  text-transform: none;
  max-width: 300px;
  font-weight: 500;
  font-family: "Rubik", helvetica, sans-serif;
}
.glide__caption .caption__title,
.glide__caption .caption__title a {
  color: #ffffff;
}
.glide__caption .caption__title a:before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}
@media (min-width: 30em) {
  .glide__caption .caption__title {
    font-size: 2rem;
    max-width: 400px;
  }
}
@media (min-width: 37.5em) {
  .glide__caption .caption__title {
    max-width: 450px;
  }
}
@media (min-width: 48em) {
  .glide__caption .caption__title {
    max-width: 95%;
    font-size: 2.25rem;
    padding-top: 0;
  }
}
@media (min-width: 60em) {
  .glide__caption .caption__title {
    max-width: 880px;
    font-size: 3rem;
  }
}
@media (min-width: 67.5em) {
  .glide__caption .caption__title {
    padding-top: 20px;
    font-size: 3.75rem;
  }
}
@media (min-width: 90em) {
  .glide__caption .caption__title {
    padding-top: 50px;
  }
}
.glide__caption .caption__desc {
  font-size: 1rem;
  text-transform: none;
  color: #ffffff;
  max-width: 75%;
}
@media (min-width: 30em) {
  .glide__caption .caption__desc {
    max-width: 50%;
  }
}
@media (min-width: 60em) {
  .glide__caption .caption__desc {
    display: block;
    font-size: 1.25rem;
  }
}
.glide__caption .caption__link {
  display: none;
}
.glide--gallery picture {
  background: #e0e0e2;
}
.glide--gallery .glide__track,
.glide--gallery .glide__track picture {
  border-radius: 3px;
  -webkit-mask-image: -webkit-radial-gradient(white, black);
}
@media (min-width: 48em) {
  .glide--gallery .glide__track,
  .glide--gallery .glide__track picture {
    border-radius: 3px;
  }
}
.glide--gallery .glide__arrows {
  display: none;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
}
@media (min-width: 37.5em) {
  .glide--gallery .glide__arrows {
    display: block;
  }
}
.glide--gallery .glide__bullets {
  position: relative;
  top: auto;
  right: auto;
  bottom: auto;
  left: auto;
  transform: none;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}
.glide--gallery .glide__bullet {
  flex: 1 1 0%;
  width: 60px;
  max-width: 60px;
  min-width: 30px;
  height: 30px;
  box-shadow: none;
  background: transparent;
  border: none;
  margin-right: 5px;
  margin-left: 5px;
}
.glide--gallery .glide__bullet:before, .glide--gallery .glide__bullet:after {
  display: none;
}
.glide--gallery .glide__bullet span:not(.visually-hidden) {
  display: block;
  height: 6px;
  width: 100%;
  background: #ccc;
}
.glide--gallery .glide__bullet--active span:not(.visually-hidden) {
  background: #000;
}
.glide--gallery .glide__bullet:hover, .glide--gallery .glide__bullet:active, .glide--gallery .glide__bullet:focus {
  border: none;
}
.glide--gallery .glide__bullet:hover span, .glide--gallery .glide__bullet:active span, .glide--gallery .glide__bullet:focus span {
  background: #000;
}
.glide__video {
  display: block;
  object-fit: cover;
  height: 100%;
  width: 100%;
}
.glide__video--wrap, .glide__video--aspect-ratio {
  height: 100%;
}
.glide__video--aspect-ratio {
  display: flex;
}
.glide__video--aspect-ratio:before {
  content: "";
  width: 1px;
  float: left;
  display: block;
  padding-bottom: 119%;
}
@media (min-width: 37.5em) {
  .glide__video--aspect-ratio:before {
    padding-bottom: 56.25%;
  }
}
@media (min-width: 67.5em) {
  .glide__video {
    position: absolute;
  }
  .glide__video--aspect-ratio:before {
    padding-bottom: 48.6111111111%;
  }
}
@media (min-width: 90em) {
  .glide__video--wrap {
    height: 700px;
  }
  .glide__video--aspect-ratio:before {
    padding-bottom: 0;
  }
}
.glide__video {
  display: block;
  object-fit: cover;
  height: 100%;
  width: 100%;
}
.glide__video--wrap, .glide__video--aspect-ratio {
  height: 100%;
}
.glide__video--aspect-ratio {
  display: flex;
}
.glide__video--aspect-ratio:before {
  content: "";
  width: 1px;
  float: left;
  display: block;
  padding-bottom: 119%;
}
@media (min-width: 37.5em) {
  .glide__video--aspect-ratio:before {
    padding-bottom: 56.25%;
  }
}
@media (min-width: 67.5em) {
  .glide__video {
    position: absolute;
  }
  .glide__video--aspect-ratio:before {
    padding-bottom: 42.3611111111%;
  }
}
@media (min-width: 90em) {
  .glide__video--wrap {
    height: 700px;
  }
  .glide__video--aspect-ratio:before {
    padding-bottom: 0;
  }
}

/*------------------------------------*\
  $BREADCRUMBS
\*------------------------------------*/
.nav-breadcrumbs {
  padding: 0 20px;
}
@media (min-width: 48em) {
  .nav-breadcrumbs {
    padding: 0 30px;
  }
}

.breadcrumbs {
  margin: 0 auto 20px;
  max-width: 1170px;
}
.nav-breadcrumbs .breadcrumbs {
  padding: 0;
}
.main-content-centered .breadcrumbs {
  text-align: center;
}
.breadcrumbs__item {
  display: inline;
  font-size: 0.8125rem;
}
@media (min-width: 48em) {
  .breadcrumbs__item {
    font-size: 0.875rem;
  }
}
@media (min-width: 67.5em) {
  .breadcrumbs__item {
    font-size: 0.9375rem;
  }
}
.breadcrumbs__item a {
  font-weight: 500;
  font-family: "Rubik", helvetica, sans-serif;
  text-decoration: none;
}
.breadcrumbs__item a:hover, .breadcrumbs__item a:active, .breadcrumbs__item a:focus {
  text-decoration: underline;
}
.breadcrumbs__item:before {
  display: none;
}
.breadcrumbs__item:after {
  content: "/";
  margin: 0 5px;
}
.breadcrumbs__item.last:after {
  content: "";
}

/*------------------------------------*\
  $POSTS
\*------------------------------------*/
.post {
  width: 100%;
}
.post__img {
  width: 100%;
  max-width: 100%;
  display: block;
}
.post__img img {
  width: 100%;
}
.post--video {
  position: relative;
  width: 100%;
  height: 0;
  position: relative;
  padding-bottom: 56%;
  overflow: hidden;
  border-radius: 3px;
  -webkit-mask-image: -webkit-radial-gradient(white, black);
}
.post--video img,
.post--video video,
.post--video iframe,
.post--video object,
.post--video embed {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}
.post--video iframe,
.post--video object,
.post--video embed {
  width: 100%;
  height: 100.2%;
}
@media (min-width: 48em) {
  .post--video {
    border-radius: 3px;
  }
}
.post--card {
  background-color: #ededed;
  display: flex;
  flex-direction: column;
  position: relative;
  border-radius: 3px;
  -webkit-mask-image: -webkit-radial-gradient(white, black);
}
@media (min-width: 48em) {
  .post--card {
    border-radius: 3px;
  }
}
.post--card figure {
  overflow: hidden;
}
.post--card picture {
  transform: scale(1.02);
  transition: transform 0.2s ease-in-out;
  will-change: transform;
  background-color: #e0e0e2;
}
.post--card img {
  width: 100%;
}
.post--card * {
  word-break: break-word;
  word-wrap: break-word;
}
.post--card p {
  color: #000000;
}
.post--card .post__title,
.post--card .post__description {
  width: 100%;
}
.post--card .post__title {
  margin-bottom: 0;
}
.post--card .post__title a:before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1;
}
.post--card .post__title,
.post--card .post__title a {
  color: #2b2b2b;
}
.post--card .post__description {
  margin-top: 20px;
  margin-bottom: 0;
}
.post--card .post__details {
  padding: 25px 25px;
  padding-bottom: 30px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  flex-grow: 1;
}
.post--card .post__details > *:first-child,
.post--card .post__description > *:first-child {
  margin-top: 0;
}
.post--card .post__details > *:last-child,
.post--card .post__description > *:last-child {
  margin-bottom: 0;
}
.post--card .post__divider {
  width: 100%;
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
  margin-top: auto;
  padding-top: 20px;
  margin-bottom: 15px;
}
.post--card .post__meta,
.post--card .post__location {
  font-weight: 300;
  font-family: "Rubik", helvetica, sans-serif;
  font-size: 0.9375rem;
}
.post--card .post__meta {
  margin-top: 0;
  padding-top: 0;
}
.post--card:hover, .post--card:active, .post--card:focus {
  background-color: #000;
}
.post--card:hover picture, .post--card:active picture, .post--card:focus picture {
  transform: scale(1.04);
}
.post--card:hover p,
.post--card:hover .post__title,
.post--card:hover .post__title a, .post--card:active p,
.post--card:active .post__title,
.post--card:active .post__title a, .post--card:focus p,
.post--card:focus .post__title,
.post--card:focus .post__title a {
  color: #ffffff;
}
.post--card:hover .post__divider, .post--card:active .post__divider, .post--card:focus .post__divider {
  border-bottom: 1px solid rgba(255, 255, 255, 0.6);
}
@media (min-width: 48em) {
  .post--card .post__details {
    padding: 30px 30px 35px;
  }
  .post--card .post__divider {
    padding-top: 25px;
  }
  .post--card .post__meta,
  .post--card .post__location {
    font-size: 0.9375rem;
  }
}
@media (min-width: 60em) {
  .post--card .post__details {
    padding: 30px;
  }
  .post--card .post__divider {
    padding-top: 30px;
    margin-bottom: 25px;
  }
  .post--card .post__meta,
  .post--card .post__location {
    font-size: 1rem;
  }
}
.post--location {
  display: flex;
  flex-direction: column;
}
.post--location picture {
  background-color: #f8f8f8;
}
.post--location h2,
.post--location h3,
.post--location p,
.post--location address {
  width: 100%;
}
.post--location p,
.post--location address {
  color: #2b2b2b;
}
.post--location p {
  margin: 0;
}
.post--location p:last-of-type {
  margin-bottom: 25px;
}
.post--location span {
  display: block;
}
.post--location .post__details {
  padding-bottom: 30px;
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  justify-content: flex-start;
  flex-grow: 1;
}
.post--location .location__company-name {
  margin-top: 0;
  margin-bottom: 10px;
}
.post--location .location__contact-name {
  font-weight: 500;
  font-family: "Rubik", helvetica, sans-serif;
  margin-bottom: 10px;
}
.post--location .location__address {
  margin-bottom: 10px;
}
.post--location .location__telephone,
.post--location .location__mobile,
.post--location .location__email,
.post--location .location__website {
  word-break: break-all;
}
.post--location .location__telephone, .post--location .location__telephone a,
.post--location .location__mobile,
.post--location .location__mobile a,
.post--location .location__email,
.post--location .location__email a,
.post--location .location__website,
.post--location .location__website a {
  font-weight: 500;
  font-family: "Rubik", helvetica, sans-serif;
  color: #2b2b2b;
}
.post--location .location__telephone a,
.post--location .location__mobile a,
.post--location .location__email a,
.post--location .location__website a {
  text-decoration-line: underline;
}
.post--location .location__telephone a:hover, .post--location .location__telephone a:active, .post--location .location__telephone a:focus,
.post--location .location__mobile a:hover,
.post--location .location__mobile a:active,
.post--location .location__mobile a:focus,
.post--location .location__email a:hover,
.post--location .location__email a:active,
.post--location .location__email a:focus,
.post--location .location__website a:hover,
.post--location .location__website a:active,
.post--location .location__website a:focus {
  color: #2b2b2b;
  text-decoration-line: none;
}
.post--location .btn {
  margin-top: auto;
  width: 100%;
}
.post--location:hover, .post--location:active, .post--location:focus {
  background-color: #ededed;
}
.post--location:hover .location__company-name,
.post--location:hover p, .post--location:active .location__company-name,
.post--location:active p, .post--location:focus .location__company-name,
.post--location:focus p {
  color: #2b2b2b;
}
.post--location-highlighted {
  background-color: #000;
}
.post--location-highlighted .location__company-name,
.post--location-highlighted .location__company-name span,
.post--location-highlighted .location__company-name a,
.post--location-highlighted .location__contact-name,
.post--location-highlighted .location__contact-name span,
.post--location-highlighted .location__contact-name a,
.post--location-highlighted .location__address,
.post--location-highlighted .location__address span,
.post--location-highlighted .location__address a,
.post--location-highlighted .location__telephone,
.post--location-highlighted .location__telephone span,
.post--location-highlighted .location__telephone a,
.post--location-highlighted .location__mobile,
.post--location-highlighted .location__mobile span,
.post--location-highlighted .location__mobile a,
.post--location-highlighted .location__website,
.post--location-highlighted .location__website span,
.post--location-highlighted .location__website a,
.post--location-highlighted .location__email,
.post--location-highlighted .location__email span,
.post--location-highlighted .location__email a {
  color: #ffffff;
}
.post--location-highlighted .location__company-name:hover, .post--location-highlighted .location__company-name:active, .post--location-highlighted .location__company-name:focus,
.post--location-highlighted .location__company-name span:hover,
.post--location-highlighted .location__company-name span:active,
.post--location-highlighted .location__company-name span:focus,
.post--location-highlighted .location__company-name a:hover,
.post--location-highlighted .location__company-name a:active,
.post--location-highlighted .location__company-name a:focus,
.post--location-highlighted .location__contact-name:hover,
.post--location-highlighted .location__contact-name:active,
.post--location-highlighted .location__contact-name:focus,
.post--location-highlighted .location__contact-name span:hover,
.post--location-highlighted .location__contact-name span:active,
.post--location-highlighted .location__contact-name span:focus,
.post--location-highlighted .location__contact-name a:hover,
.post--location-highlighted .location__contact-name a:active,
.post--location-highlighted .location__contact-name a:focus,
.post--location-highlighted .location__address:hover,
.post--location-highlighted .location__address:active,
.post--location-highlighted .location__address:focus,
.post--location-highlighted .location__address span:hover,
.post--location-highlighted .location__address span:active,
.post--location-highlighted .location__address span:focus,
.post--location-highlighted .location__address a:hover,
.post--location-highlighted .location__address a:active,
.post--location-highlighted .location__address a:focus,
.post--location-highlighted .location__telephone:hover,
.post--location-highlighted .location__telephone:active,
.post--location-highlighted .location__telephone:focus,
.post--location-highlighted .location__telephone span:hover,
.post--location-highlighted .location__telephone span:active,
.post--location-highlighted .location__telephone span:focus,
.post--location-highlighted .location__telephone a:hover,
.post--location-highlighted .location__telephone a:active,
.post--location-highlighted .location__telephone a:focus,
.post--location-highlighted .location__mobile:hover,
.post--location-highlighted .location__mobile:active,
.post--location-highlighted .location__mobile:focus,
.post--location-highlighted .location__mobile span:hover,
.post--location-highlighted .location__mobile span:active,
.post--location-highlighted .location__mobile span:focus,
.post--location-highlighted .location__mobile a:hover,
.post--location-highlighted .location__mobile a:active,
.post--location-highlighted .location__mobile a:focus,
.post--location-highlighted .location__website:hover,
.post--location-highlighted .location__website:active,
.post--location-highlighted .location__website:focus,
.post--location-highlighted .location__website span:hover,
.post--location-highlighted .location__website span:active,
.post--location-highlighted .location__website span:focus,
.post--location-highlighted .location__website a:hover,
.post--location-highlighted .location__website a:active,
.post--location-highlighted .location__website a:focus,
.post--location-highlighted .location__email:hover,
.post--location-highlighted .location__email:active,
.post--location-highlighted .location__email:focus,
.post--location-highlighted .location__email span:hover,
.post--location-highlighted .location__email span:active,
.post--location-highlighted .location__email span:focus,
.post--location-highlighted .location__email a:hover,
.post--location-highlighted .location__email a:active,
.post--location-highlighted .location__email a:focus {
  color: #ffffff;
}
.post--location-highlighted:hover, .post--location-highlighted:active, .post--location-highlighted:focus {
  background-color: #000;
}
.post--location-highlighted:hover .location__company-name,
.post--location-highlighted:hover p, .post--location-highlighted:active .location__company-name,
.post--location-highlighted:active p, .post--location-highlighted:focus .location__company-name,
.post--location-highlighted:focus p {
  color: #ffffff;
}
@media (min-width: 48em) {
  .post--location .location__company-name {
    margin-bottom: 15px;
  }
}
@media (min-width: 60em) {
  .post--location .location__company-name {
    margin-bottom: 20px;
  }
}

/*------------------------------------*\
  $POSTS-BRAND
\*------------------------------------*/
.post--card .post__title {
  font-size: 1.125rem;
}
.post--card .post__title a {
  text-decoration-line: none;
}
.post--card .post__title a:hover, .post--card .post__title a:active, .post--card .post__title a:focus {
  text-decoration-line: underline;
}
.post--card .post__logo {
  background: linear-gradient(to right, #fdc715 0%, #00C19F 50%, #22AAE2 100%);
  padding: 20px 25px;
}
.post--card .post__logo img,
.post--card .post__logo svg {
  height: 30px;
  width: auto;
}
.post--card .post__logo.post--brand-group img,
.post--card .post__logo.post--brand-group svg {
  padding-top: 5px;
  padding-bottom: 5px;
}
.post--card .post__logo.post--brand-modular {
  background: #22AAE2;
}
.post--card .post__logo.post--brand-hire {
  background: #00C19F;
}
.post--card .post__logo.post--brand-containers {
  background: #fdc715;
}
.post--card .post__location {
  padding-top: 20px;
  margin-top: auto;
  font-weight: 500;
  font-family: "Rubik", helvetica, sans-serif;
}
.post--card .post__location span {
  font-weight: 300;
  font-family: "Rubik", helvetica, sans-serif;
}
.post--news, .post--news-article {
  background: #000;
}
.post--news .post__title, .post--news-article .post__title {
  margin-top: 0;
}
.post--news .post__title,
.post--news .post__title a, .post--news-article .post__title,
.post--news-article .post__title a {
  color: #ffffff;
}
.post--news p, .post--news-article p {
  color: #ffffff;
}
.post--news:hover, .post--news:active, .post--news:focus, .post--news-article:hover, .post--news-article:active, .post--news-article:focus {
  background: linear-gradient(to right, #fdc715 0%, #00C19F 50%, #22AAE2 100%);
}
.post--news:hover .post__title,
.post--news:hover .post__title a, .post--news:active .post__title,
.post--news:active .post__title a, .post--news:focus .post__title,
.post--news:focus .post__title a, .post--news-article:hover .post__title,
.post--news-article:hover .post__title a, .post--news-article:active .post__title,
.post--news-article:active .post__title a, .post--news-article:focus .post__title,
.post--news-article:focus .post__title a {
  color: #000000;
}
.post--news:hover p, .post--news:active p, .post--news:focus p, .post--news-article:hover p, .post--news-article:active p, .post--news-article:focus p {
  color: #000000;
}
.post--news:hover.post--hire, .post--news:active.post--hire, .post--news:focus.post--hire, .post--news-article:hover.post--hire, .post--news-article:active.post--hire, .post--news-article:focus.post--hire {
  background: #00C19F;
}
.post--news:hover.post--modular, .post--news:active.post--modular, .post--news:focus.post--modular, .post--news-article:hover.post--modular, .post--news-article:active.post--modular, .post--news-article:focus.post--modular {
  background: #22AAE2;
}
.post--news:hover.post--containers, .post--news:active.post--containers, .post--news:focus.post--containers, .post--news-article:hover.post--containers, .post--news-article:active.post--containers, .post--news-article:focus.post--containers {
  background: #fdc715;
}
.post--team-member .post__button {
  padding-top: 30px;
  margin-top: auto;
  width: 100%;
}
.post--team-member .btn {
  width: 100%;
}
.post--team-member:hover, .post--team-member:active, .post--team-member:focus {
  background: #e0e0e2;
}
.post--team-member:hover .post__title a,
.post--team-member:hover .post__title,
.post--team-member:hover p, .post--team-member:active .post__title a,
.post--team-member:active .post__title,
.post--team-member:active p, .post--team-member:focus .post__title a,
.post--team-member:focus .post__title,
.post--team-member:focus p {
  color: #2b2b2b;
}
@media (min-width: 48em) {
  .post--card .post__title {
    font-size: 1.1875rem;
  }
  .post--card .post__logo {
    padding: 25px 30px;
  }
}
@media (min-width: 60em) {
  .post--card .post__title {
    font-size: 1.25rem;
  }
}

/*------------------------------------*\
  $PAGE-TAGS
\*------------------------------------*/
.page-tags {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: calc(10px * -1);
}
.page-tags a {
  border: none;
  display: inline-block;
  padding: 10px 20px;
  background-color: #f8f8f8;
  color: #000;
  text-decoration: none;
  font-weight: 500;
  font-family: "Rubik", helvetica, sans-serif;
  font-size: 0.875rem;
  letter-spacing: 0;
  margin-right: 5px;
  margin-bottom: 10px;
  border-radius: 30px;
}
.page-tags a:hover, .page-tags a:active, .page-tags a:focus {
  border: none;
  color: #ffffff;
  text-decoration: none;
  background-color: #000;
}
@media (min-width: 48em) {
  .page-tags {
    margin-bottom: -10px;
  }
  .page-tags a {
    margin-right: 10px;
    margin-bottom: 10px;
    font-size: 1rem;
  }
}
@media (min-width: 60em) {
  .page-tags {
    margin-bottom: -20px;
  }
  .page-tags a {
    margin-right: 20px;
    margin-bottom: 20px;
  }
}

/*------------------------------------*\
  $COMMENTS
\*------------------------------------*/
.comments {
  margin: 30px 0;
}
.comments h2 {
  margin-bottom: 15px;
  font-size: 1.25rem;
}

.new_comment h2 {
  margin-bottom: 10px;
  font-size: 1.25rem;
}

.comment {
  margin-top: 30px;
}
.comment__name {
  margin-bottom: 5px;
  font-size: 1rem;
}

/*------------------------------------*\
  $TEXT-CONTENT
\*------------------------------------*/
.text-content,
.panel__text {
  padding: 0 20px;
}
.text-content > *,
.panel__text > * {
  max-width: 1170px;
  margin-left: auto;
  margin-right: auto;
}

.cell--has-caption.text-align-centre .image-caption {
  text-align: center;
}

.cell--has-text.text-align-centre,
.text-content.text-align-centre,
.panel__text.text-align-centre {
  text-align: center;
}
.cell--has-text.text-align-centre blockquote:before,
.text-content.text-align-centre blockquote:before,
.panel__text.text-align-centre blockquote:before {
  left: 50%;
  transform: translateX(-50%);
}
.cell--has-text.text-align-centre blockquote p,
.text-content.text-align-centre blockquote p,
.panel__text.text-align-centre blockquote p {
  margin-left: auto;
  margin-right: auto;
}
.cell--has-text.text-align-centre ul,
.cell--has-text.text-align-centre ol,
.text-content.text-align-centre ul,
.text-content.text-align-centre ol,
.panel__text.text-align-centre ul,
.panel__text.text-align-centre ol {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.cell--has-text.text-align-centre li,
.text-content.text-align-centre li,
.panel__text.text-align-centre li {
  display: inline-block;
  text-align: center;
}
.cell--has-text.text-align-centre ol li:before,
.text-content.text-align-centre ol li:before,
.panel__text.text-align-centre ol li:before {
  left: auto;
  right: calc(100% + 5px);
}
.cell--has-text.text-align-centre ul li:before,
.text-content.text-align-centre ul li:before,
.panel__text.text-align-centre ul li:before {
  left: -20px;
}
@media (min-width: 60em) {
  .cell--has-text.text-align-centre .snippet:before,
  .text-content.text-align-centre .snippet:before,
  .panel__text.text-align-centre .snippet:before {
    left: calc((1170px - 900px) / 2 - 30px);
  }
}
.cell--has-text.text-align-right,
.text-content.text-align-right,
.panel__text.text-align-right {
  text-align: right;
}
.cell--has-text.text-align-right > blockquote:before,
.text-content.text-align-right > blockquote:before,
.panel__text.text-align-right > blockquote:before {
  left: auto;
  right: 0;
}
.cell--has-text.text-align-right > blockquote p,
.text-content.text-align-right > blockquote p,
.panel__text.text-align-right > blockquote p {
  margin-left: auto;
  margin-right: 0;
}
.cell--has-text > table,
.text-content > table,
.panel__text > table {
  width: 100%;
  overflow-x: auto;
  display: block;
}

.panel > .text-content > *:first-child,
.panel > .panel__text > *:first-child {
  margin-top: 0;
}
.panel > .text-content > *:last-child,
.panel > .panel__text > *:last-child {
  margin-bottom: 0;
}

.panel__text + .grid__container,
.panel__text + .layout__container,
.text-content + .layout__container {
  margin-top: 20px;
}
@media (min-width: 48em) {
  .panel__text + .grid__container,
  .panel__text + .layout__container,
  .text-content + .layout__container {
    margin-top: 30px;
  }
}
@media (min-width: 60em) {
  .panel__text + .grid__container,
  .panel__text + .layout__container,
  .text-content + .layout__container {
    margin-top: 35px;
  }
}

@media (min-width: 48em) {
  .text-content,
  .panel__text {
    padding: 0 30px;
  }
}
@media (min-width: 60em) {
  .text-content > *:not(.table-wrapper),
  .panel__text > *:not(.table-wrapper) {
    max-width: 1170px;
    padding-right: calc(1170px - 900px);
  }
  .main-content-centered .text-content > *:not(.table-wrapper),
  .main-content-centered .panel__text > *:not(.table-wrapper) {
    padding-right: calc((1170px - 900px) / 2);
    padding-left: calc((1170px - 900px) / 2);
  }
  .text-content.text-align-centre > *:not(.table-wrapper),
  .panel__text.text-align-centre > *:not(.table-wrapper) {
    padding-right: calc((1170px - 900px) / 2);
    padding-left: calc((1170px - 900px) / 2);
  }
  .text-content.text-align-right > *:not(.table-wrapper),
  .panel__text.text-align-right > *:not(.table-wrapper) {
    padding-left: calc(1170px - 900px);
    padding-right: 0;
  }
}
/*------------------------------------*\
  $PANELS
\*------------------------------------*/
.panel {
  padding-top: 30px;
  padding-bottom: 30px;
  margin-top: 30px;
  margin-bottom: 30px;
}
@media (min-width: 48em) {
  .panel {
    padding-top: 45px;
    padding-bottom: 45px;
    margin-top: 45px;
    margin-bottom: 45px;
  }
}
@media (min-width: 75em) {
  .panel {
    padding-top: 80px;
    padding-bottom: 80px;
    margin-top: 80px;
    margin-bottom: 80px;
  }
}
.panel--green {
  background: #00C19F;
}
.panel--blue {
  background: #22AAE2;
}
.panel--pink {
  background: rgb(252.4, 232.1, 233.6);
}
.panel--grey {
  background: #f8f8f8;
}
.panel--black {
  background: #000000;
}
.panel--yellow {
  background: #fdc715;
}
.panel--transparent {
  background: transparent;
}
.panel--small {
  max-width: 960px;
}
.panel--medium, .panel--medium-gutter {
  max-width: 1170px;
}
.panel--large {
  max-width: 1440px;
}
.panel--xl {
  max-width: 1660px;
}
.panel--small, .panel--medium, .panel--medium-gutter, .panel--large, .panel--xl {
  margin-left: auto;
  margin-right: auto;
}
.panel--margin-top-none {
  margin-top: 0;
}
.panel--margin-bottom-none {
  margin-bottom: 0;
}
.panel--padding-top-none {
  padding-top: 0;
}
.panel--padding-bottom-none {
  padding-bottom: 0;
}
.panel--margin-top-grid-gap {
  margin-top: 20px;
}
.panel--margin-bottom-grid-gap {
  margin-bottom: 20px;
}
.panel--padding-top-grid-gap {
  padding-top: 20px;
}
.panel--padding-bottom-grid-gap {
  padding-bottom: 20px;
}
.panel--margin-top-reduced {
  margin-top: 20px;
}
.panel--margin-bottom-reduced {
  margin-bottom: 20px;
}
.panel--padding-top-reduced {
  padding-top: 20px;
}
.panel--padding-bottom-reduced {
  padding-bottom: 20px;
}
@media (min-width: 48em) {
  .panel--margin-top-reduced {
    margin-top: 45px;
  }
  .panel--margin-bottom-reduced {
    margin-bottom: 45px;
  }
  .panel--padding-top-reduced {
    padding-top: 45px;
  }
  .panel--padding-bottom-reduced {
    padding-bottom: 45px;
  }
}
@media (min-width: 75em) {
  .panel--margin-top-reduced {
    margin-top: 60px;
  }
  .panel--margin-bottom-reduced {
    margin-bottom: 60px;
  }
  .panel--padding-top-reduced {
    padding-top: 60px;
  }
  .panel--padding-bottom-reduced {
    padding-bottom: 60px;
  }
}
.panel .slab {
  margin-top: 0;
  margin-bottom: 0;
}
.panel .slab > * {
  max-width: none;
}

.content--small > .panel__text > * {
  max-width: 960px;
}
.content--small .slab > * {
  max-width: 960px;
}
.content--small .grid__template,
.content--small .wrapper__variable-width {
  max-width: 960px;
}
.content--medium > .panel__text > *, .content--medium-gutter > .panel__text > * {
  max-width: 1170px;
}
.content--medium .slab > *, .content--medium-gutter .slab > * {
  max-width: 1170px;
}
.content--medium .grid__template,
.content--medium .wrapper__variable-width, .content--medium-gutter .grid__template,
.content--medium-gutter .wrapper__variable-width {
  max-width: 1170px;
}
.content--large > .panel__text > * {
  max-width: 1170px;
}
.content--large .slab > * {
  max-width: 1440px;
}
.content--large .grid__template,
.content--large .wrapper__variable-width {
  max-width: 1440px;
}
.content--xl > .panel__text > * {
  max-width: 1170px;
}
.content--xl .slab > * {
  max-width: 1660px;
}
.content--xl .grid__template,
.content--xl .wrapper__variable-width {
  max-width: 1660px;
}
.content--full > .panel__text > * {
  max-width: 1170px;
}
.content--full .slab > * {
  max-width: 100%;
}
.content--full figcaption,
.content--full .image-caption {
  padding-left: 10px;
  padding-right: 10px;
}
.content--full .grid__template,
.content--full .wrapper__variable-width {
  max-width: none;
}
@media (min-width: 48em) {
  .content--full .layout__container,
  .content--full .grid__container {
    padding-left: 0;
    padding-right: 0;
  }
}
.content--small > .panel__text > *, .content--medium > .panel__text > *, .content--medium-gutter > .panel__text > *, .content--large > .panel__text > *, .content--xl > .panel__text > * {
  margin-left: auto;
  margin-right: auto;
}
.content--small .grid__template,
.content--small .wrapper__variable-width, .content--medium .grid__template,
.content--medium .wrapper__variable-width, .content--medium-gutter .grid__template,
.content--medium-gutter .wrapper__variable-width, .content--large .grid__template,
.content--large .wrapper__variable-width, .content--xl .grid__template,
.content--xl .wrapper__variable-width {
  margin-left: auto;
  margin-right: auto;
}

/*------------------------------------*\
  $PANELS-BRAND
\*------------------------------------*/
.panel--custom-gradient .panel__text ::selection,
.panel--custom-gradient .text-content ::selection,
.panel--custom-gradient .cell ::selection, .panel--black .panel__text ::selection,
.panel--black .text-content ::selection,
.panel--black .cell ::selection {
  background: #ffffff;
  color: #000;
}
.panel--custom-gradient .panel__text > *,
.panel--custom-gradient .panel__text blockquote *,
.panel--custom-gradient .panel__text a,
.panel--custom-gradient .text-content > *,
.panel--custom-gradient .text-content blockquote *,
.panel--custom-gradient .text-content a,
.panel--custom-gradient .cell-text > *,
.panel--custom-gradient .cell-text blockquote *,
.panel--custom-gradient .cell-text a, .panel--black .panel__text > *,
.panel--black .panel__text blockquote *,
.panel--black .panel__text a,
.panel--black .text-content > *,
.panel--black .text-content blockquote *,
.panel--black .text-content a,
.panel--black .cell-text > *,
.panel--black .cell-text blockquote *,
.panel--black .cell-text a {
  color: #ffffff;
}
.panel--custom-gradient .panel__text .snippet:before,
.panel--custom-gradient .text-content .snippet:before,
.panel--custom-gradient .cell-text .snippet:before, .panel--black .panel__text .snippet:before,
.panel--black .text-content .snippet:before,
.panel--black .cell-text .snippet:before {
  background-color: #ffffff;
}
.panel--custom-gradient .panel__text > ul li:before,
.panel--custom-gradient .text-content > ul li:before,
.panel--custom-gradient .cell-text > ul li:before, .panel--black .panel__text > ul li:before,
.panel--black .text-content > ul li:before,
.panel--black .cell-text > ul li:before {
  background-color: #ffffff;
}
.panel--custom-gradient .cell a,
.panel--custom-gradient .cell figcaption, .panel--black .cell a,
.panel--black .cell figcaption {
  color: #ffffff;
}
.panel--custom-gradient .key-facts__fact > *,
.panel--custom-gradient .key-facts__fact a, .panel--black .key-facts__fact > *,
.panel--black .key-facts__fact a {
  color: #ffffff;
}
.panel--collapsible {
  padding-top: 0;
  padding-bottom: 0;
  border-radius: 3px;
  width: calc(99.99% - 2 * 20px);
}
.panel--collapsible__btn {
  display: inline-flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  background: transparent;
}
h4 .panel--collapsible__btn, h3 .panel--collapsible__btn, h2 .panel--collapsible__btn {
  all: inherit;
  position: relative;
  display: inline-flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  margin: 0;
  padding: 25px 0;
  text-align: left;
  cursor: pointer;
  background: transparent;
  font-size: inherit;
}
.panel--collapsible__btn span {
  padding-right: 20px;
  max-width: 900px;
}
.panel--collapsible__btn svg {
  fill: #000;
  width: 14px;
  height: 8px;
  flex-shrink: 0;
  pointer-events: none;
  transition: transform 0.2s ease-in-out;
}
.panel--collapsible__btn:hover, .panel--collapsible__btn:active, .panel--collapsible__btn:focus {
  background-color: transparent;
}
.panel--collapsible__body {
  padding-bottom: 25px;
}
.panel--collapsible__body .text-content > *:first-child {
  margin-top: 0;
}
.panel--collapsible__body .text-content > *:last-child {
  margin-bottom: 0;
}
.panel--collapsible .panel--collapsible__title-text {
  padding-right: 0;
}
.panel--collapsible.panel--open .panel--collapsible__btn svg {
  transform: rotate(180deg);
}
@media (min-width: 48em) {
  .panel--collapsible {
    border-radius: 3px;
    width: calc(99.99% - 2 * 30px);
  }
  .panel--collapsible__btn svg {
    width: 22px;
    height: 12px;
  }
  .panel--collapsible__body {
    padding-bottom: 40px;
  }
}
@media (min-width: 60em) and (min-width: 60em) {
  h4 .panel--collapsible__btn, h3 .panel--collapsible__btn, h2 .panel--collapsible__btn {
    padding-top: 40px;
    padding-bottom: 40px;
  }
  .panel--collapsible__btn svg {
    margin-inline-end: 20px;
  }
}
.panel--faqs .panel--collapsible__title-text {
  font-size: 1.25rem;
}
.panel .panel--faqs {
  margin-top: 0;
  margin-bottom: 15px;
}
.panel .panel--faqs:first-child {
  margin-top: 0;
}
.panel .panel--faqs:last-child {
  margin-bottom: 0;
}
@media (min-width: 48em) {
  .panel .panel--faqs {
    margin-bottom: 20px;
  }
}
@media (min-width: 60em) {
  .panel .panel--faqs {
    margin-bottom: 30px;
  }
}
.panel--faqs.panel--grey .table-fade-present:after, .panel--faqs.panel--collapsible .table-fade-present:after {
  background: linear-gradient(to left, hsl(0, 0%, 97.2549019608%) 0%, hsla(0, 0%, 97.2549019608%, 0.738) 19%, hsla(0, 0%, 97.2549019608%, 0.541) 34%, hsla(0, 0%, 97.2549019608%, 0.382) 47%, hsla(0, 0%, 97.2549019608%, 0.278) 56.5%, hsla(0, 0%, 97.2549019608%, 0.194) 65%, hsla(0, 0%, 97.2549019608%, 0.126) 73%, hsla(0, 0%, 97.2549019608%, 0.075) 80.2%, hsla(0, 0%, 97.2549019608%, 0.042) 86.1%, hsla(0, 0%, 97.2549019608%, 0.021) 91%, hsla(0, 0%, 97.2549019608%, 0.008) 95.2%, hsla(0, 0%, 97.2549019608%, 0.002) 98.2%, hsla(0, 0%, 97.2549019608%, 0) 100%);
}
.panel--faqs.panel--custom-gradient .panel--collapsible__btn svg, .panel--faqs.panel--black .panel--collapsible__btn svg {
  fill: #ffffff;
}
@media (min-width: 48em) {
  .panel--faqs .panel--collapsible__title-text {
    font-size: 1.3125rem;
  }
}
@media (min-width: 60em) {
  .panel--faqs .panel--collapsible__title-text {
    font-size: 1.6875rem;
  }
}
.panel--medium-gutter {
  width: calc(100% - 2 * 20px);
  border-radius: 3px;
  overflow: hidden;
}
@media (min-width: 48em) {
  .panel--medium-gutter {
    border-radius: 3px;
    width: calc(100% - 2 * 30px);
  }
}
@media (min-width: 75em) {
  .panel--page-tags {
    margin-top: 60px;
    margin-bottom: 60px;
  }
}

/*------------------------------------*\
  $SLABS
\*------------------------------------*/
.slab {
  margin-top: 30px;
  margin-bottom: 30px;
}
.slab > * {
  max-width: 1170px;
  margin-left: auto;
  margin-right: auto;
}
.slab__content {
  padding: 30px 25px 20px;
  position: relative;
  background-color: transparent;
  text-align: center;
}
.slab__title {
  margin-top: 0;
}
.slab__title a {
  word-break: break-word;
}
.slab__icon {
  background-size: 20px;
  background-repeat: no-repeat;
  background-position: center center;
  height: 20px;
  width: 20px;
  display: inline-block;
}
.slab--cta {
  text-align: left;
}
.slab--cta .slab__title {
  margin-bottom: 20px;
}
@media (min-width: 48em) {
  .slab {
    margin-top: 45px;
    margin-bottom: 45px;
  }
  .slab__content {
    padding-top: 30px;
    padding-bottom: 30px;
    text-align: left;
  }
  .slab__icon {
    height: 22px;
    width: 22px;
    background-size: 22px;
  }
}
@media (min-width: 75em) {
  .slab {
    margin-top: 80px;
    margin-bottom: 80px;
  }
}

.slab__icon--download {
  background-image: url("/assets/application/template/icon--download-b270e7a1.svg");
}

.slab__icon--link-internal {
  background-image: url("/assets/application/template/icon--link-internal-ecc634d7.svg");
}

.slab__icon--link-external {
  background-image: url("/assets/application/template/icon--link-external-964502f8.svg");
}

/*------------------------------------*\
  $SLABS-BRAND
\*------------------------------------*/
.slab__content {
  background: #000;
  border-radius: 3px;
}
.slab__content p {
  color: #ffffff;
}
.slab .slab__title {
  color: #ffffff;
}
.slab .slab__title,
.slab .slab__title a {
  font-size: 1.25rem;
}
.slab .slab__title a {
  color: #ffffff;
  text-decoration-line: none;
}
.slab .slab__title a:before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1;
}
.slab .slab__title a:hover, .slab .slab__title a:active, .slab .slab__title a:focus {
  text-decoration-line: underline;
}
.slab__icon--wrapper {
  height: 40px;
  width: 40px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
}
.slab--download ::selection, .slab--link ::selection {
  background: #ffffff;
  color: #000;
}
.slab--download .slab__group {
  padding-bottom: 15px;
  margin-bottom: 10px;
  background-image: linear-gradient(to right, rgba(255, 255, 255, 0.8) 0%, rgba(255, 255, 255, 0.8) 25%, rgba(0, 0, 0, 0) 25%, rgba(0, 0, 0, 0) 100%);
  background-size: 6px 1px;
  background-repeat: repeat-x;
  background-position: bottom;
}
.slab--download .slab__title {
  margin-bottom: 15px;
}
.slab--download .slab__filesize {
  font-weight: 500;
  font-family: "Rubik", helvetica, sans-serif;
  font-size: 0.75rem;
  margin-top: 25px;
}
.slab--cta {
  text-align: center;
}
.slab--cta .slab__group {
  width: 100%;
  margin-bottom: 30px;
}
.slab--cta .slab__content {
  padding-bottom: 30px;
  padding-top: 25px;
  background: linear-gradient(to right, #fdc715 0%, #00C19F 50%, #22AAE2 100%);
}
.slab--cta .slab__title {
  color: #000;
  margin-bottom: 15px;
}
.slab--cta .slab__description {
  color: #000;
  margin-top: 15px;
  margin-bottom: 0;
}
.slab--cta .btn {
  width: 100%;
}
@media (min-width: 48em) {
  .slab__title,
  .slab__title a {
    font-size: 1.3125rem;
  }
}
@media (min-width: 48em) {
  .slab__content {
    border-radius: 3px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    padding: 30px;
  }
  .slab--download p {
    margin-bottom: 0;
  }
  .slab--download .slab__group {
    width: 100%;
    padding-bottom: 30px;
  }
  .slab--download .slab__filesize {
    font-size: 0.875rem;
    margin-top: 30px;
  }
  .slab--download .slab__icon--wrapper {
    margin-top: 20px;
  }
  .slab--link .slab__content {
    align-items: center;
  }
  .slab--link .slab__title {
    margin: 0;
  }
  .slab--cta .slab__content {
    justify-content: center;
    flex-wrap: wrap;
    padding: 40px 80px;
    text-align: center;
  }
  .slab--cta .slab__title {
    width: 100%;
  }
  .slab--cta .btn {
    margin-top: 0;
    max-width: none;
    min-width: none;
    width: auto;
    flex-shrink: 0;
  }
}
@media (min-width: 60em) {
  .slab__title,
  .slab__title a {
    font-size: 1.6875rem;
  }
  .slab--cta .slab__content {
    justify-content: space-between;
    align-items: center;
    flex-wrap: nowrap;
    padding: 40px 30px;
    text-align: left;
  }
  .slab--cta .slab__group {
    margin-bottom: 0;
  }
  .slab--cta .slab__title {
    margin: 0;
  }
  .slab--cta .slab__description {
    margin-top: 10px;
  }
  .slab--cta .btn {
    flex-shrink: 0;
    margin-left: 120px;
  }
}

/*------------------------------------*\
  $TAG-RESULTS
\*------------------------------------*/
/*------------------------------------*\
  $GRID-TEMPLATES
\*------------------------------------*/
.grid__template {
  display: block;
  background-color: transparent;
}

@media (max-width: 47.99em) {
  .full-bleed-mobile .layout__container,
  .full-bleed-mobile .grid__container {
    padding: 0;
  }
  .full-bleed-mobile figcaption,
  .full-bleed-mobile .image-caption {
    padding-left: 10px;
    padding-right: 10px;
  }
  .full-bleed-mobile .grid__container .cell:not(.cell--has-bg-style) .cell-text {
    padding: 0 20px;
  }
  .cell {
    margin-bottom: 20px;
  }
  .cell:last-child {
    margin-bottom: 0;
  }
  .grid__no-gap .cell {
    margin-bottom: 0;
  }
  .grid__no-gap .cell .image-caption {
    margin-bottom: 20px;
  }
  .grid__no-gap .cell:last-child .image-caption {
    margin-bottom: 0;
  }
}
.grid__container {
  padding: 0 20px;
}
@media (min-width: 48em) {
  .grid__container {
    padding: 0 30px;
  }
}
@media (min-width: 48em) {
  .content--full .grid__container {
    padding: 0;
  }
}

.container__small-gutter .layout__container,
.container__small-gutter .grid__container {
  padding: 0 10px;
}
@media (min-width: 48em) {
  .container__small-gutter .layout__container,
  .container__small-gutter .grid__container {
    padding: 0 20px;
  }
}
@media (min-width: 60em) {
  .container__small-gutter .layout__container,
  .container__small-gutter .grid__container {
    padding: 0 30px;
  }
}
@media (min-width: 48em) {
  .container__small-gutter.content--full .layout__container,
  .container__small-gutter.content--full .grid__container {
    padding: 0;
  }
}

.container__no-gutter .layout__container,
.container__no-gutter .grid__container {
  padding: 0;
}

@media (min-width: 48em) {
  .grid__template--halves {
    display: grid;
    grid-gap: 20px;
    grid-template-columns: 1fr 1fr;
  }
  .grid__template--halves.grid__no-gap {
    grid-gap: 0;
  }
  .grid__template--thirds {
    display: grid;
    grid-gap: 20px;
    grid-template-columns: 1fr 1fr 1fr;
  }
  .grid__template--thirds.grid__no-gap {
    grid-gap: 0;
  }
  .grid__template--quarters {
    display: grid;
    grid-gap: 20px;
    grid-template-columns: 1fr 1fr 1fr 1fr;
  }
  .grid__template--quarters.grid__no-gap {
    grid-gap: 0;
  }
  .grid__template--one-third-two-thirds {
    display: grid;
    grid-gap: 20px;
    grid-template-columns: 1fr 2fr;
  }
  .grid__template--one-third-two-thirds.grid__no-gap {
    grid-gap: 0;
  }
  .grid__template--two-thirds-one-third {
    display: grid;
    grid-gap: 20px;
    grid-template-columns: 2fr 1fr;
  }
  .grid__template--two-thirds-one-third.grid__no-gap {
    grid-gap: 0;
  }
}
.cell:first-of-type .cell-text > *:first-child {
  margin-top: 0;
}
.cell:last-of-type .cell-text > *:last-child {
  margin-bottom: 0;
}
.cell img {
  display: block;
  max-width: 100%;
  width: 100%;
  padding: 0;
  height: 100%;
  object-fit: cover;
}
.cell.text-align-centre {
  text-align: center;
}
.cell.text-align-centre ul,
.cell.text-align-centre ol {
  display: flex;
  width: auto;
  flex-direction: column;
  justify-content: center;
}
.cell.text-align-centre ul li,
.cell.text-align-centre ol li {
  margin: 0 auto;
}
.cell.text-align-right {
  text-align: right;
}
.cell--has-bg-style {
  padding: 20px 25px;
  border-radius: 3px;
}
.cell--has-bg-style ::selection {
  background: #ffffff;
  color: #000;
}
.cell--has-bg-style .cell-text {
  color: #ffffff;
}
.cell--has-bg-style .cell-text > *:first-child {
  margin-top: 0;
}
.cell--has-bg-style .cell-text > *:last-child {
  margin-bottom: 0;
}
.cell--has-bg-style .cell-text > *,
.cell--has-bg-style .cell-text a {
  color: #ffffff;
}
.cell--has-bg-style .cell-text blockquote p {
  color: #ffffff;
}
.cell--has-bg-style .cell-text > ul li:before {
  background-color: #ffffff;
}
.cell--has-video {
  overflow: hidden;
  border-radius: 3px;
}
.cell--has-video video {
  height: 100%;
  width: 100%;
  object-fit: cover;
}
.cell--has-video .cell__video {
  overflow: hidden;
  border-radius: 3px;
}
.grid__template--halves .cell--has-video .cell__video {
  position: relative;
  padding-bottom: 56%;
  overflow: hidden;
}
.grid__template--halves .cell--has-video .cell__video img,
.grid__template--halves .cell--has-video .cell__video video,
.grid__template--halves .cell--has-video .cell__video iframe,
.grid__template--halves .cell--has-video .cell__video object,
.grid__template--halves .cell--has-video .cell__video embed {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}
.grid__template--halves .cell--has-video .cell__video iframe,
.grid__template--halves .cell--has-video .cell__video object,
.grid__template--halves .cell--has-video .cell__video embed {
  width: 100%;
  height: 100.2%;
}
.grid__template--thirds .cell--has-video .cell__video {
  position: relative;
  padding-bottom: 56%;
  overflow: hidden;
}
.grid__template--thirds .cell--has-video .cell__video img,
.grid__template--thirds .cell--has-video .cell__video video,
.grid__template--thirds .cell--has-video .cell__video iframe,
.grid__template--thirds .cell--has-video .cell__video object,
.grid__template--thirds .cell--has-video .cell__video embed {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}
.grid__template--thirds .cell--has-video .cell__video iframe,
.grid__template--thirds .cell--has-video .cell__video object,
.grid__template--thirds .cell--has-video .cell__video embed {
  width: 100%;
  height: 100.2%;
}
.grid__template--quarters .cell--has-video .cell__video {
  position: relative;
  padding-bottom: 56%;
  overflow: hidden;
}
.grid__template--quarters .cell--has-video .cell__video img,
.grid__template--quarters .cell--has-video .cell__video video,
.grid__template--quarters .cell--has-video .cell__video iframe,
.grid__template--quarters .cell--has-video .cell__video object,
.grid__template--quarters .cell--has-video .cell__video embed {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}
.grid__template--quarters .cell--has-video .cell__video iframe,
.grid__template--quarters .cell--has-video .cell__video object,
.grid__template--quarters .cell--has-video .cell__video embed {
  width: 100%;
  height: 100.2%;
}
.grid__template--thirds .cell--has-video .cell__video {
  position: relative;
  padding-bottom: 100%;
  overflow: hidden;
}
.grid__template--thirds .cell--has-video .cell__video img,
.grid__template--thirds .cell--has-video .cell__video video,
.grid__template--thirds .cell--has-video .cell__video iframe,
.grid__template--thirds .cell--has-video .cell__video object,
.grid__template--thirds .cell--has-video .cell__video embed {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}
.grid__template--thirds .cell--has-video .cell__video iframe,
.grid__template--thirds .cell--has-video .cell__video object,
.grid__template--thirds .cell--has-video .cell__video embed {
  width: 100%;
  height: 100.2%;
}
.grid__template--two-thirds-one-third .cell--has-video.cell-1 .cell__video {
  position: relative;
  padding-bottom: 56%;
  overflow: hidden;
}
.grid__template--two-thirds-one-third .cell--has-video.cell-1 .cell__video img,
.grid__template--two-thirds-one-third .cell--has-video.cell-1 .cell__video video,
.grid__template--two-thirds-one-third .cell--has-video.cell-1 .cell__video iframe,
.grid__template--two-thirds-one-third .cell--has-video.cell-1 .cell__video object,
.grid__template--two-thirds-one-third .cell--has-video.cell-1 .cell__video embed {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}
.grid__template--two-thirds-one-third .cell--has-video.cell-1 .cell__video iframe,
.grid__template--two-thirds-one-third .cell--has-video.cell-1 .cell__video object,
.grid__template--two-thirds-one-third .cell--has-video.cell-1 .cell__video embed {
  width: 100%;
  height: 100.2%;
}
.grid__template--two-thirds-one-third .cell--has-video.cell-2 .cell__video {
  position: relative;
  padding-bottom: 112%;
  overflow: hidden;
}
.grid__template--two-thirds-one-third .cell--has-video.cell-2 .cell__video img,
.grid__template--two-thirds-one-third .cell--has-video.cell-2 .cell__video video,
.grid__template--two-thirds-one-third .cell--has-video.cell-2 .cell__video iframe,
.grid__template--two-thirds-one-third .cell--has-video.cell-2 .cell__video object,
.grid__template--two-thirds-one-third .cell--has-video.cell-2 .cell__video embed {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}
.grid__template--two-thirds-one-third .cell--has-video.cell-2 .cell__video iframe,
.grid__template--two-thirds-one-third .cell--has-video.cell-2 .cell__video object,
.grid__template--two-thirds-one-third .cell--has-video.cell-2 .cell__video embed {
  width: 100%;
  height: 100.2%;
}
.grid__template--one-third-two-thirds .cell--has-video.cell-1 .cell__video {
  position: relative;
  padding-bottom: 112%;
  overflow: hidden;
}
.grid__template--one-third-two-thirds .cell--has-video.cell-1 .cell__video img,
.grid__template--one-third-two-thirds .cell--has-video.cell-1 .cell__video video,
.grid__template--one-third-two-thirds .cell--has-video.cell-1 .cell__video iframe,
.grid__template--one-third-two-thirds .cell--has-video.cell-1 .cell__video object,
.grid__template--one-third-two-thirds .cell--has-video.cell-1 .cell__video embed {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}
.grid__template--one-third-two-thirds .cell--has-video.cell-1 .cell__video iframe,
.grid__template--one-third-two-thirds .cell--has-video.cell-1 .cell__video object,
.grid__template--one-third-two-thirds .cell--has-video.cell-1 .cell__video embed {
  width: 100%;
  height: 100.2%;
}
.grid__template--one-third-two-thirds .cell--has-video.cell-2 .cell__video {
  position: relative;
  padding-bottom: 56%;
  overflow: hidden;
}
.grid__template--one-third-two-thirds .cell--has-video.cell-2 .cell__video img,
.grid__template--one-third-two-thirds .cell--has-video.cell-2 .cell__video video,
.grid__template--one-third-two-thirds .cell--has-video.cell-2 .cell__video iframe,
.grid__template--one-third-two-thirds .cell--has-video.cell-2 .cell__video object,
.grid__template--one-third-two-thirds .cell--has-video.cell-2 .cell__video embed {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}
.grid__template--one-third-two-thirds .cell--has-video.cell-2 .cell__video iframe,
.grid__template--one-third-two-thirds .cell--has-video.cell-2 .cell__video object,
.grid__template--one-third-two-thirds .cell--has-video.cell-2 .cell__video embed {
  width: 100%;
  height: 100.2%;
}

@media (min-width: 48em) {
  .cell--has-video .cell__video {
    border-radius: 3px;
  }
}
@media (min-width: 48em) {
  .cell .cell-text > *:first-child {
    margin-top: 0;
  }
  .cell .cell-text > *:first-child > *:first-child {
    margin-top: 0;
  }
  .cell .cell-text > *:last-child {
    margin-bottom: 0;
  }
  .cell .cell-text > *:last-child > *:last-child {
    margin-bottom: 0;
  }
  .grid__template--halves .cell .cell-text {
    max-width: calc((1170px - 20px) / 2);
  }
  .cell .cell-text blockquote p {
    width: 100%;
  }
  .cell--has-bg-style {
    padding: 20px 30px;
    border-radius: 3px;
  }
  .cell.vertically-align-middle, .cell.vertically-align-bottom {
    display: flex;
    flex-direction: column;
  }
  .cell.vertically-align-middle figure, .cell.vertically-align-bottom figure {
    width: 100%;
  }
  .cell.vertically-align-middle {
    justify-content: center;
  }
  .cell.vertically-align-bottom {
    justify-content: flex-end;
  }
}
@media (min-width: 60em) {
  .cell--has-bg-style {
    padding: 20px 30px;
  }
  .cell--has-image + .cell--has-text .cell-text {
    padding-left: 30px;
  }
}
.grid__template picture {
  background-color: #e0e0e2;
  border-radius: 3px;
  -webkit-mask-image: -webkit-radial-gradient(white, black);
}
@media (min-width: 48em) {
  .grid__template picture {
    border-radius: 3px;
  }
}
@media (min-width: 48em) {
  .grid__template--halves > .cell-1.cell--has-text:not(.cell--has-bg-style) .cell-text, .grid__template--thirds > .cell-1.cell--has-text:not(.cell--has-bg-style) .cell-text, .grid__template--two-thirds-one-third > .cell-1.cell--has-text:not(.cell--has-bg-style) .cell-text, .grid__template--one-third-two-thirds > .cell-1.cell--has-text:not(.cell--has-bg-style) .cell-text {
    padding-right: 20px;
  }
  .content--full .grid__template--halves > .cell-1.cell--has-text:not(.cell--has-bg-style) .cell-text, .content--full .grid__template--thirds > .cell-1.cell--has-text:not(.cell--has-bg-style) .cell-text, .content--full .grid__template--two-thirds-one-third > .cell-1.cell--has-text:not(.cell--has-bg-style) .cell-text, .content--full .grid__template--one-third-two-thirds > .cell-1.cell--has-text:not(.cell--has-bg-style) .cell-text {
    padding-left: 30px;
  }
}
@media (min-width: 67.5em) {
  .grid__template--halves > .cell-1.cell--has-text:not(.cell--has-bg-style) .cell-text, .grid__template--thirds > .cell-1.cell--has-text:not(.cell--has-bg-style) .cell-text, .grid__template--two-thirds-one-third > .cell-1.cell--has-text:not(.cell--has-bg-style) .cell-text, .grid__template--one-third-two-thirds > .cell-1.cell--has-text:not(.cell--has-bg-style) .cell-text {
    padding-right: 40px;
  }
}
@media (min-width: 48em) {
  .content--full .grid__template--halves > .cell-2.cell--has-text:not(.cell--has-bg-style) .cell-text, .content--full .grid__template--two-thirds-one-third > .cell-2.cell--has-text:not(.cell--has-bg-style) .cell-text, .content--full .grid__template--one-third-two-thirds > .cell-2.cell--has-text:not(.cell--has-bg-style) .cell-text {
    margin-right: 30px;
  }
}
@media (min-width: 48em) {
  .grid__template--thirds > .cell-2.cell--has-text:not(.cell--has-bg-style) .cell-text {
    padding-right: 20px;
  }
}
@media (min-width: 67.5em) {
  .grid__template--thirds > .cell-2.cell--has-text:not(.cell--has-bg-style) .cell-text {
    padding-right: 40px;
  }
}

/*------------------------------------*\
  $KEY-FACTS
\*------------------------------------*/
.key-facts {
  text-align: center;
  display: block;
  margin: 0;
}
.key-facts.key-facts__wrapper {
  padding: 0;
}
.key-facts__title,
.key-facts p {
  margin: 0;
}
* + .key-facts__title,
* + .key-facts p {
  margin-top: 30px;
}
.key-facts__title + p,
.key-facts p + p {
  margin-top: 10px;
}
.key-facts__title {
  font-size: 2.375rem;
}
.key-facts p {
  font-size: 1rem;
  font-weight: 500;
  font-family: "Rubik", helvetica, sans-serif;
}
.key-facts__image {
  height: 70px;
  margin-top: 0;
  display: block;
  width: auto;
}
.key-facts__image + p {
  margin-top: 30px;
}
.key-facts__fact {
  width: 100%;
  margin-bottom: 45px;
  display: block;
  padding: 0;
}
.key-facts__fact:before {
  display: none;
}
.key-facts__fact.text-align-centre {
  text-align: center;
}
.key-facts__fact.text-align-centre .key-facts__image {
  margin-left: auto;
  margin-right: auto;
}
.key-facts__fact.text-align-centre .key-facts__title,
.key-facts__fact.text-align-centre p,
.key-facts__fact.text-align-centre a {
  max-width: 400px;
  margin-left: auto;
  margin-right: auto;
}
.key-facts__fact.text-align-right {
  text-align: right;
}
.key-facts__fact.text-align-right .key-facts__image {
  margin-left: auto;
}
.key-facts__fact:last-child {
  margin-bottom: 0;
}
@media (min-width: 48em) {
  .key-facts {
    display: flex;
    flex-wrap: wrap;
  }
  .key-facts__title {
    margin-top: 0;
    font-size: 2.625rem;
  }
  .key-facts__title + p {
    margin-top: 20px;
  }
  .key-facts p {
    margin-bottom: 0;
    font-size: 1.0625rem;
  }
  .key-facts__image + .key-facts__title,
  .key-facts__image + p {
    margin-top: 35px;
  }
  .key-facts__image {
    height: 75px;
  }
  .key-facts__fact {
    padding-inline: 50px;
    width: calc((99.99% - 40px) / 2);
    margin-right: 40px;
    margin-bottom: 60px;
    position: relative;
  }
  .key-facts__fact:nth-child(even) {
    margin-right: 0;
  }
  .key-facts__fact:nth-last-child(-n+2):nth-child(2n+1) {
    margin-bottom: 0;
  }
  .key-facts__fact:nth-last-child(-n+2):nth-child(2n+1) ~ .key-facts__fact {
    margin-bottom: 0;
  }
  .key-facts__fact.text-align-centre .key-facts__title,
  .key-facts__fact.text-align-centre p,
  .key-facts__fact.text-align-centre a {
    max-width: 300px;
  }
}
@media (min-width: 60em) {
  .key-facts__title {
    font-size: 2.8125rem;
  }
  .key-facts p {
    font-size: 1.125rem;
  }
}
@media (min-width: 75em) {
  .key-facts__image {
    height: 80px;
  }
  .key-facts__image + .key-facts__title,
  .key-facts__image + p {
    margin-top: 40px;
  }
  .key-facts__fact {
    padding-inline: 30px;
    width: calc((99.99% - 3 * 40px) / 4);
    margin-right: 40px;
  }
  .key-facts__fact:nth-child(even) {
    margin-right: 40px;
  }
  .key-facts__fact:nth-child(4n+4) {
    margin-right: 0;
  }
  .key-facts__fact:nth-last-child(-n+4):nth-child(4n+1) {
    margin-bottom: 0;
  }
  .key-facts__fact:nth-last-child(-n+4):nth-child(4n+1) ~ .key-facts__fact {
    margin-bottom: 0;
  }
  .key-facts__fact .key-facts__title,
  .key-facts__fact p,
  .key-facts__fact a {
    max-width: 210px;
  }
}

/*------------------------------------*\
  $PAGINATION
\*------------------------------------*/
.pagination {
  margin: 30px 0;
  height: auto;
  text-align: center;
}
.pagination .page,
.pagination .next,
.pagination .prev {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  flex-basis: 40px;
  height: 40px;
  margin-right: 5px;
  margin-bottom: 5px;
  border: 1px solid #e2e2e2;
  font-size: 0.875rem;
  border-radius: 3px;
}
.pagination .first,
.pagination .last,
.pagination .next,
.pagination .prev {
  text-transform: none;
}
.pagination .next,
.pagination .prev {
  padding-left: 3px;
  padding-right: 3px;
  flex-basis: 60px;
  font-size: 0.875rem;
}
.pagination a,
.pagination .current,
.pagination .gap {
  font-weight: 500;
  font-family: "Rubik", helvetica, sans-serif;
}
.pagination a {
  text-decoration-line: none;
  height: 100%;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #000;
}
.pagination a:hover, .pagination a:active, .pagination a:focus {
  text-decoration-line: underline;
}
.pagination .gap {
  border: none;
}
.pagination .current {
  color: #ffffff;
  background: #000;
  border-color: transparent;
}
.pagination .page__text {
  height: 100%;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.pagination__pages {
  font-size: 0;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}
@media (max-width: 29.99em) {
  .pagination .next,
  .pagination .prev {
    display: none;
  }
}
@media (min-width: 48em) {
  .pagination .page,
  .pagination .next,
  .pagination .prev {
    flex-basis: 50px;
    height: 50px;
    margin-right: 10px;
    margin-bottom: 10px;
    font-size: 0.9375rem;
  }
  .pagination .next,
  .pagination .prev {
    flex-basis: 70px;
    padding-left: 10px;
    padding-right: 10px;
  }
}
.pagination__pages > *:last-child {
  margin-right: 0;
}

/*------------------------------------*\
  $LOGO-CONTENTS
\*------------------------------------*/
.logo-contents__image img {
  max-width: 155px;
  max-height: 60px;
  width: initial;
}
.logo-contents__slide {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 1;
  height: 60px;
}
.logo-contents--active .logo-contents__slide {
  width: auto;
  margin-right: 0;
  margin-bottom: 0;
}
@media (min-width: 48em) {
  .logo-contents__slides {
    flex-wrap: nowrap;
  }
  .logo-contents__slide {
    min-width: 20%;
    height: 70px;
  }
  .logo-contents__image img {
    max-width: 155px;
  }
  .logo-contents--active .logo-contents__slide {
    min-width: auto;
    flex: initial;
  }
}
@media (min-width: 75em) {
  .logo-contents__slide {
    height: 70px;
  }
  .logo-contents__image img {
    max-width: 185px;
    max-height: 70px;
  }
}

/*------------------------------------*\
  $LOAD-MORE
\*------------------------------------*/
.results__load-more {
  margin-top: 30px;
  margin-bottom: 30px;
  text-align: center;
}
@media (min-width: 48em) {
  .results__load-more {
    margin-bottom: 45px;
  }
}
@media (min-width: 67.5em) {
  .results__load-more {
    margin-top: 40px;
    margin-bottom: 80px;
  }
}
.panel .results__load-more {
  margin-bottom: 0;
}

/*------------------------------------*\
  $DIVIDERS
\*------------------------------------*/
.divider-module hr {
  border: 0;
  margin-top: 0;
  margin-bottom: 0;
  height: 1px;
  background-image: linear-gradient(to right, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.8) 25%, rgba(0, 0, 0, 0) 25%, rgba(0, 0, 0, 0) 100%);
  background-size: 4px 1px;
  background-repeat: repeat-x;
  background-position: center center;
}
.divider-module hr.solid {
  background: rgba(112, 112, 112, 0.5);
}

/*------------------------------------*\
  $COOKIE-CONSENT
\*------------------------------------*/
#cc-main {
  /* Reset only specific elements */
  /* Restore outline and cursor*/
}
#cc-main div,
#cc-main span,
#cc-main a,
#cc-main h2,
#cc-main p,
#cc-main button,
#cc-main input,
#cc-main ::before,
#cc-main ::after {
  all: unset;
  box-sizing: border-box;
}
#cc-main button,
#cc-main .pm__badge {
  all: initial;
  box-sizing: border-box;
  color: unset;
  visibility: unset;
}
#cc-main a,
#cc-main button,
#cc-main input,
#cc-main .pm__badge {
  font-family: inherit;
  font-size: 100%;
  line-height: normal;
  margin: 0;
  outline: revert;
  outline-offset: 2px;
  cursor: pointer;
  overflow: hidden;
  -webkit-appearance: none;
  appearance: none;
}
#cc-main table,
#cc-main thead,
#cc-main tbody,
#cc-main tr,
#cc-main th,
#cc-main td {
  all: revert;
  font-family: inherit;
  font-weight: inherit;
  color: inherit;
  font-size: inherit;
}
#cc-main {
  background: transparent;
}

/**
 * Global styles/variables
 */
:root {
  --cc-font-family: -apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Helvetica,Arial,sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol";
  --cc-modal-border-radius: .5rem;
  --cc-btn-border-radius: .4rem;
  --cc-modal-transition-duration: .25s;
  --cc-link-color: var(--cc-btn-primary-bg);
  --cc-modal-margin: 1rem;
  --cc-z-index: 2147483647;
}

#cc-main {
  color: var(--cc-primary-color);
  font-family: var(--cc-font-family);
  font-size: 16px;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  position: relative;
  line-height: 1.15;
  -webkit-text-size-adjust: 100%;
  z-index: var(--cc-z-index);
  position: fixed;
  /* Use Firefox's thin style scrollbar */
  /* Show webkit's "cool" scrollbar only on non mobile screens */
}
#cc-main.cc--rtl {
  direction: rtl;
}
#cc-main b,
#cc-main em,
#cc-main strong,
#cc-main a,
#cc-main .cm__title {
  font-weight: 600;
}
#cc-main button > span {
  pointer-events: none;
}
#cc-main a,
#cc-main .cc__link {
  font-weight: 600;
  position: relative;
  background-image: linear-gradient(currentColor, currentColor);
  background-position: 0% 100%;
  background-repeat: no-repeat;
  background-size: 0% 1px;
  transition: background-size 0.25s, color 0.25s ease;
}
#cc-main a:hover,
#cc-main .cc__link:hover {
  color: var(--cc-primary-color);
  background-size: 100% 1px;
}
#cc-main .cc__link {
  color: var(--cc-link-color);
}
#cc-main .cm__desc,
#cc-main .pm__body {
  scrollbar-width: thin;
  overscroll-behavior: auto contain;
}
@media screen and (min-width: 640px) {
  #cc-main ::-webkit-scrollbar,
  #cc-main ::-webkit-scrollbar-track,
  #cc-main ::-webkit-scrollbar-thumb {
    all: revert;
  }
  #cc-main ::-webkit-scrollbar-thumb {
    border: 0.25rem solid var(--cc-bg);
    -webkit-background-clip: padding-box;
    background-clip: padding-box;
    border-radius: 1rem;
    background: var(--cc-toggle-readonly-bg);
  }
  #cc-main ::-webkit-scrollbar-thumb:hover {
    background: var(--cc-toggle-off-bg);
  }
  #cc-main ::-webkit-scrollbar {
    background: transparent;
    width: 12px;
  }
}

/** Disable page scroll **/
html.disable--interaction.show--consent, html.disable--interaction.show--consent body {
  height: auto !important;
  overflow: hidden !important;
}

@media (prefers-reduced-motion) {
  #cc-main {
    --cc-modal-transition-duration: 0s;
  }
}
/** Light color-scheme **/
:root {
  --cc-bg: #ffffff;
  --cc-primary-color: #2c2f31;
  --cc-secondary-color: #5e6266;
  --cc-btn-primary-bg: #30363c;
  --cc-btn-primary-color: #ffffff;
  --cc-btn-primary-border-color: var(--cc-btn-primary-bg);
  --cc-btn-primary-hover-bg: #000000;
  --cc-btn-primary-hover-color: #ffffff;
  --cc-btn-primary-hover-border-color: var(--cc-btn-primary-hover-bg);
  --cc-btn-secondary-bg: #eaeff2;
  --cc-btn-secondary-color: var(--cc-primary-color);
  --cc-btn-secondary-border-color: var(--cc-btn-secondary-bg);
  --cc-btn-secondary-hover-bg: #d4dae0;
  --cc-btn-secondary-hover-color: #000000;
  --cc-btn-secondary-hover-border-color: #d4dae0;
  --cc-separator-border-color: #f0f4f7;
  --cc-toggle-on-bg: var(--cc-btn-primary-bg);
  --cc-toggle-off-bg: #667481;
  --cc-toggle-on-knob-bg: #ffffff;
  --cc-toggle-off-knob-bg: var(--cc-toggle-on-knob-bg);
  --cc-toggle-enabled-icon-color: var(--cc-bg);
  --cc-toggle-disabled-icon-color: var(--cc-bg);
  --cc-toggle-readonly-bg: #d5dee2;
  --cc-toggle-readonly-knob-bg: #fff;
  --cc-toggle-readonly-knob-icon-color: var(--cc-toggle-readonly-bg);
  --cc-section-category-border: var(--cc-cookie-category-block-bg);
  --cc-cookie-category-block-bg: #f0f4f7;
  --cc-cookie-category-block-border: #f0f4f7;
  --cc-cookie-category-block-hover-bg: #e9eff4;
  --cc-cookie-category-block-hover-border: #e9eff4;
  --cc-cookie-category-expanded-block-bg: transparent;
  --cc-cookie-category-expanded-block-hover-bg: #dee4e9;
  --cc-overlay-bg: rgba(0, 0, 0, 0.65);
  --cc-webkit-scrollbar-bg: var(--cc-section-category-border);
  --cc-webkit-scrollbar-hover-bg: var(--cc-btn-primary-hover-bg);
  --cc-footer-bg: var(--cc-btn-secondary-bg);
  --cc-footer-color: var(--cc-secondary-color);
  --cc-footer-border-color: #e4eaed;
}

/** Dark color-scheme **/
#cc-main {
  /* START: Buttons section */
  /** Start: Layout with 2 buttons, one of
  which is the show preferences btn **/
  /** End **/
  /* START: Box layout */
  /* END: Box layout */
  /** START: Cloud layout **/
  /* END: Cloud layout */
  /* START: Bar layout */
  /* END: Bar layout */
}
#cc-main .cm {
  opacity: 0;
  position: fixed;
  max-width: 24rem;
  display: flex;
  flex-direction: column;
  background: var(--cc-bg);
  border-radius: var(--cc-modal-border-radius);
  z-index: 1;
  overflow: hidden;
  box-shadow: 0 0.625em 1.875em rgba(0, 0, 2, 0.3);
  visibility: hidden;
  opacity: 0;
  /* START: Vertical align modal */
  /* END: Vertical align modal */
  /* START: Horizontal align modal */
  /* END: Horizontal align modal */
}
#cc-main .cm--bottom {
  bottom: var(--cc-modal-margin);
}
#cc-main .cm--right {
  right: var(--cc-modal-margin);
  margin-left: var(--cc-modal-margin);
}
#cc-main .cm__body {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
#cc-main .cm__btns,
#cc-main .cm__links {
  width: unset;
  padding: 1rem 1.3rem;
}
#cc-main .cm__texts {
  display: flex;
  flex-direction: column;
  justify-content: center;
  flex: 1;
  padding: 1rem 0 0;
}
#cc-main .cm__title,
#cc-main .cm__desc {
  padding: 0 1.3rem;
}
#cc-main .cm__title {
  font-size: 1.05em;
}
#cc-main .cm__title + .cm__desc {
  margin-top: 1.1em;
}
#cc-main .cm__desc {
  color: var(--cc-secondary-color);
  line-height: 1.5;
  font-size: 0.9em;
  max-height: 40vh;
  overflow-x: visible;
  overflow-y: auto;
  padding-bottom: 1em;
}
#cc-main .cm__btns {
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-top: 1px solid var(--cc-separator-border-color);
}
#cc-main .cm__btn-group {
  display: grid;
  grid-auto-columns: minmax(0, 1fr);
}
#cc-main .cm__btn + .cm__btn,
#cc-main .cm__btn-group + .cm__btn-group {
  margin-top: 0.375rem;
}
#cc-main .cm--flip .cm__btn + .cm__btn,
#cc-main .cm--flip .cm__btn-group + .cm__btn-group {
  margin-top: 0;
  margin-bottom: 0.375rem;
}
#cc-main .cm--inline .cm__btn + .cm__btn {
  margin-top: 0;
  margin-left: 0.375rem;
}
#cc-main .cm--inline.cm--flip .cm__btn + .cm__btn {
  margin-bottom: 0;
  margin-left: 0;
  margin-right: 0.375rem;
}
#cc-main .cm--inline.cm--flip .cm__btn-group + .cm__btn-group {
  margin-right: 0;
  margin-bottom: 0.375rem;
}
#cc-main .cm__btn {
  color: var(--cc-btn-primary-color);
  background: var(--cc-btn-primary-bg);
  border: 1px solid var(--cc-btn-primary-border-color);
  text-align: center;
  font-weight: 600;
  font-size: 0.82em;
  min-height: 42px;
  padding: 0.5em 1em;
  border-radius: var(--cc-btn-border-radius);
  /* Secondary btn colors */
}
#cc-main .cm__btn:hover {
  color: var(--cc-btn-primary-hover-color);
  background: var(--cc-btn-primary-hover-bg);
  border-color: var(--cc-btn-primary-hover-border-color);
}
#cc-main .cm__btn--secondary {
  color: var(--cc-btn-secondary-color);
  background: var(--cc-btn-secondary-bg);
  border-color: var(--cc-btn-secondary-border-color);
}
#cc-main .cm__btn--secondary:hover {
  color: var(--cc-btn-secondary-hover-color);
  background: var(--cc-btn-secondary-hover-bg);
  border-color: var(--cc-btn-secondary-hover-border-color);
}
#cc-main .cm__btn--close {
  display: none;
  position: absolute;
  right: 0;
  top: 0;
  width: 42px;
  height: 42px;
  border-radius: 0;
  border-bottom-left-radius: var(--cc-btn-border-radius);
  border-top: none;
  border-right: none;
  padding: 0 !important;
  min-width: auto !important;
  font-size: 1em;
  overflow: hidden;
}
#cc-main .cm__btn--close svg {
  stroke: var(--cc-btn-primary-color);
  transform: scale(0.5);
  transition: stroke 0.15s ease;
}
#cc-main .cm__btn--close:hover svg {
  stroke: var(--cc-btn-primary-hover-color);
}
#cc-main .cm__btn--close.cm__btn--secondary svg {
  stroke: var(--cc-btn-secondary-color);
}
#cc-main .cm__btn--close.cm__btn--secondary:hover svg {
  stroke: var(--cc-btn-secondary-hover-color);
}
#cc-main .cm__btn--close + .cm__texts .cm__title {
  padding-right: 3rem;
}
#cc-main .cm--inline .cm__btn-group {
  grid-auto-flow: column;
}
#cc-main .cm__footer {
  color: var(--cc-footer-color);
  background: var(--cc-footer-bg);
  border-top: 1px solid var(--cc-footer-border-color);
  padding: 0.4em 0 0.5em 0;
}
#cc-main .cm__links {
  padding-top: 0;
  padding-bottom: 0;
  display: flex;
  flex-direction: row;
}
#cc-main .cm__link-group {
  font-size: 0.8em;
  display: flex;
  flex-direction: row;
  width: 100%;
}
#cc-main .cm__link-group > * + * {
  margin-left: 1.3rem;
}
#cc-main .cm--flip .cm__btn:last-child {
  grid-row: 1;
}
#cc-main .cm--inline .cm__btn-group {
  grid-auto-flow: column;
}
#cc-main .cm--inline.cm--flip .cm__btn:last-child {
  grid-column: 1;
}
#cc-main .cm--box .cm__btn--close {
  display: block;
}
#cc-main .cm--box.cm--flip .cm__btns {
  flex-direction: column-reverse;
}
#cc-main .cc--anim .cm, #cc-main .cc--anim.cm-wrapper::before {
  transition: opacity var(--cc-modal-transition-duration) ease, visibility var(--cc-modal-transition-duration) ease, transform var(--cc-modal-transition-duration) ease;
}
#cc-main .cc--anim .cm__close,
#cc-main .cc--anim .cm__btn {
  transition: background-color 0.15s ease, border-color 0.15s ease, color 0.15s ease;
}

/* START: Dark overlay */
.disable--interaction #cc-main .cm-wrapper::before {
  content: "";
  opacity: 0;
  visibility: hidden;
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  z-index: 0;
  background: var(--cc-overlay-bg);
}

/* END: Dark overlay */
#cc-main .cm {
  transform: translateY(1.6em);
}

.show--consent #cc-main .cc--anim .cm {
  opacity: 1;
  visibility: visible !important;
  transform: translateY(0);
}
.show--consent #cc-main .cc--anim.cm-wrapper::before {
  opacity: 1;
  visibility: visible;
}

/* Start: fix RTL layout */
/* End: Fix RTL alyout */
@media screen and (max-width: 640px) {
  #cc-main {
    --cc-modal-margin: .5em;
  }
  #cc-main .cm {
    max-width: none !important;
    width: auto !important;
  }
  #cc-main .cm__body {
    flex-direction: column !important;
    padding: 0 !important;
  }
  #cc-main .cm__title,
  #cc-main .cm__desc,
  #cc-main .cm__btns,
  #cc-main .cm__links {
    padding-left: 1.1rem !important;
    padding-right: 1.1rem !important;
  }
  #cc-main .cm__btns {
    flex-direction: column !important;
    max-width: none !important;
    min-width: auto !important;
    border-left: none !important;
    border-top: 1px solid var(--cc-separator-border-color) !important;
  }
  #cc-main .cm__btn + .cm__btn,
  #cc-main .cm__btn-group + .cm__btn-group {
    margin: 0 !important;
    margin-top: 0.375rem !important;
  }
  #cc-main .cm--flip .cm__btn + .cm__btn,
  #cc-main .cm--flip .cm__btn-group + .cm__btn-group {
    margin-top: 0 !important;
    margin-bottom: 0.375rem !important;
  }
  #cc-main .cm__btn-group {
    display: flex !important;
    flex-direction: column !important;
    min-width: auto !important;
  }
  #cc-main .cm__btn {
    flex: auto !important;
  }
  #cc-main .cm__link-group {
    justify-content: center !important;
  }
  #cc-main .cm--flip .cm__btns,
  #cc-main .cm--flip .cm__btn-group {
    flex-direction: column-reverse !important;
  }
}
:root {
  --cc-pm-toggle-border-radius: 4em;
}

#cc-main {
  /* Make sure the preferences modal is always on top of the consent modal */
  /* START: Services counter badge */
  /* END: Services counter badge */
  /* START: Section Toggle */
  /* END: Section Toggle */
  /* START: Table style */
  /* END: Table style */
  /* START: Box layout */
  /* END: Box layout */
  /* START: Bar layout */
  /* END: Bar layout */
  /* Dark overlay */
}
#cc-main .pm-wrapper {
  position: relative;
  z-index: 2;
}
#cc-main .pm {
  position: fixed;
  display: flex;
  width: 100%;
  width: unset;
  background: var(--cc-bg);
  flex-direction: column;
  border-radius: var(--cc-modal-border-radius);
  opacity: 0;
  visibility: hidden;
  overflow: hidden;
  z-index: 1;
  box-shadow: 0 0.625em 1.875em rgba(0, 0, 2, 0.3);
}
#cc-main svg {
  fill: none;
  width: 100%;
}
#cc-main .pm__header,
#cc-main .pm__body,
#cc-main .pm__footer {
  padding: 1em 1.4em;
}
#cc-main .pm__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid var(--cc-separator-border-color);
}
#cc-main .pm__title {
  display: flex;
  align-items: center;
  flex: 1;
  font-weight: 600;
  margin-right: 2em;
}
#cc-main .pm__close-btn {
  width: calc(42px - 2px);
  height: calc(42px - 2px);
  position: relative;
  background: var(--cc-btn-secondary-bg);
  border-radius: var(--cc-btn-border-radius);
  border: 1px solid var(--cc-btn-secondary-border-color);
  transition: all 0.15s ease;
}
#cc-main .pm__close-btn span {
  display: flex;
  height: 100%;
  width: 100%;
}
#cc-main .pm__close-btn svg {
  stroke: var(--cc-btn-secondary-color);
  transform: scale(0.5);
  transition: stroke 0.15s ease;
}
#cc-main .pm__close-btn:hover {
  border-color: var(--cc-btn-secondary-hover-border-color);
  background: var(--cc-btn-secondary-hover-bg);
}
#cc-main .pm__close-btn:hover svg {
  stroke: var(--cc-btn-secondary-hover-color);
}
#cc-main .pm__body {
  flex: 1;
  overflow-y: auto;
  overflow-y: overlay;
}
#cc-main .pm__section,
#cc-main .pm__section--toggle {
  display: flex;
  flex-direction: column;
  margin-bottom: 0.5em;
  border-radius: var(--cc-btn-border-radius);
}
#cc-main .pm__section--toggle .pm__section-desc-wrapper {
  overflow: hidden;
  margin-top: 0 !important;
}
#cc-main .pm__section {
  padding: 1em;
  border: 1px solid var(--cc-separator-border-color);
  transition: background-color 0.25s ease, border-color 0.25s ease;
}
#cc-main .pm__section:first-child {
  margin-bottom: 2em;
  transition: none;
  padding: 0;
  margin-top: 0;
  border: none;
  margin-bottom: 2em;
}
#cc-main .pm__section:not(:first-child):hover {
  background: var(--cc-cookie-category-block-bg);
  border-color: var(--cc-cookie-category-block-border);
}
#cc-main .pm__section-toggles {
  /* If after this section, there is a normal
    * "non-expandable" section => add more margin
    */
}
#cc-main .pm__section-toggles + .pm__section {
  margin-top: 2em;
}
#cc-main .pm__section--toggle {
  background: var(--cc-cookie-category-block-bg);
  border-top: none;
  margin-bottom: 0.375rem;
  /* Hide description by default */
}
#cc-main .pm__section--toggle .pm__section-title {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: var(--cc-cookie-category-block-bg);
  position: relative;
  padding: 1.1em 5.4em 1.1em 1.2em;
  border: 1px solid var(--cc-cookie-category-block-border);
  transition: background-color 0.25s ease, border-color 0.25s ease;
  min-height: 58px;
}
#cc-main .pm__section--toggle .pm__section-title:hover {
  background: var(--cc-cookie-category-block-hover-bg);
  border-color: var(--cc-cookie-category-block-hover-border);
}
#cc-main .pm__section--toggle .pm__section-desc-wrapper {
  display: none;
  border: 1px solid var(--cc-cookie-category-block-border);
  border-top: none;
  border-radius: var(--cc-btn-border-radius);
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}
#cc-main .pm__section--toggle .pm__section-desc {
  padding: 1em;
  margin-top: 0;
}
#cc-main .pm__section--toggle.is-expanded {
  --cc-cookie-category-block-bg: var(--cc-cookie-category-expanded-block-bg);
  --cc-cookie-category-block-border: var(--cc-cookie-category-expanded-block-hover-bg);
}
#cc-main .pm__section--toggle.is-expanded .pm__section-title {
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}
#cc-main .pm__section--toggle.is-expanded .pm__section-arrow svg {
  transform: scale(0.5) rotate(180deg);
}
#cc-main .pm__section--toggle.is-expanded .pm__section-desc-wrapper {
  display: flex;
}
#cc-main .pm__section--expandable .pm__section-title {
  padding-left: 3.4em;
  cursor: pointer;
}
#cc-main .pm__section--expandable .pm__section-arrow {
  width: 20px;
  height: 20px;
  position: absolute;
  left: 18px;
  background: var(--cc-toggle-readonly-bg);
  display: flex;
  justify-content: center;
  border-radius: 100%;
  pointer-events: none;
}
#cc-main .pm__section--expandable .pm__section-arrow svg {
  stroke: var(--cc-btn-secondary-color);
  transform: scale(0.5);
}
#cc-main .pm__section-title-wrapper {
  position: relative;
  display: flex;
  align-items: center;
}
#cc-main .pm__section-title-wrapper + .pm__section-desc-wrapper {
  margin-top: 0.85em;
}
#cc-main .pm__section-title {
  font-weight: 600;
  border-radius: var(--cc-btn-border-radius);
  font-size: 0.95em;
}
#cc-main .pm__badge {
  display: flex;
  flex: none;
  margin-left: 1em;
  border-radius: 5em;
  font-weight: 600;
  font-size: 0.8em;
  background: var(--cc-btn-secondary-bg);
  color: var(--cc-secondary-color);
  position: relative;
  height: 23px;
  width: auto;
  min-width: 23px;
  align-items: center;
  text-align: center;
  justify-content: center;
  padding: 0 0.6em 1px 0.6em;
  white-space: nowrap;
  overflow: hidden;
}
#cc-main .pm__service-counter {
  padding: 0;
  width: 23px;
  background: var(--cc-btn-primary-bg);
  color: var(--cc-btn-primary-color);
}
#cc-main .pm__service-counter[data-counterlabel] {
  padding: 0 0.6em 1px 0.6em;
  width: auto;
}
#cc-main .section__toggle-wrapper,
#cc-main .section__toggle,
#cc-main .toggle__label,
#cc-main .toggle__icon {
  width: 50px;
  height: 23px;
  border-radius: var(--cc-pm-toggle-border-radius);
  transform: translateZ(0); /* Fix safari weird glitch */
}
#cc-main .section__toggle-wrapper {
  position: absolute;
  right: 18px;
  cursor: pointer;
  z-index: 1;
}
#cc-main .toggle-service {
  position: relative;
  right: 0;
  width: 42px;
  height: 19px;
}
#cc-main .toggle-service .section__toggle,
#cc-main .toggle-service .toggle__icon,
#cc-main .toggle-service .toggle__label {
  width: 42px;
  height: 19px;
}
#cc-main .toggle-service .toggle__icon {
  position: relative;
}
#cc-main .toggle-service .toggle__icon-circle {
  height: 19px;
  width: 19px;
}
#cc-main .toggle-service .section__toggle:checked ~ .toggle__icon .toggle__icon-circle {
  transform: translateX(23px);
}
#cc-main .pm__section--toggle:nth-child(2) .section__toggle-wrapper::after {
  display: none !important;
}
#cc-main .section__toggle {
  position: absolute;
  cursor: pointer;
  display: block;
  top: 0;
  left: 0;
  margin: 0;
  border: 0;
}
#cc-main .section__toggle:disabled {
  cursor: not-allowed;
}
#cc-main .toggle__icon {
  position: absolute;
  background: var(--cc-toggle-off-bg);
  box-shadow: 0 0 0 1px var(--cc-toggle-off-bg);
  transition: all 0.25s ease;
  pointer-events: none;
  display: flex;
  flex-direction: row;
}
#cc-main .toggle__icon-circle {
  position: absolute;
  display: block;
  left: 0;
  top: 0;
  width: 23px;
  height: 23px;
  border: none;
  background: var(--cc-toggle-off-knob-bg);
  box-shadow: 0 1px 2px rgba(24, 32, 3, 0.36);
  transition: transform 0.25s ease, background-color 0.25s ease;
  border-radius: var(--cc-pm-toggle-border-radius);
}
#cc-main .toggle__icon-on,
#cc-main .toggle__icon-off {
  height: 100%;
  position: absolute;
  width: 100%;
  transition: opacity 0.15s ease;
}
#cc-main .toggle__icon-on {
  opacity: 0;
  transform: rotate(45deg);
}
#cc-main .toggle__icon-on svg {
  stroke: var(--cc-toggle-on-bg);
  transform: scale(0.55) rotate(-45deg);
}
#cc-main .toggle__icon-off {
  opacity: 1;
}
#cc-main .toggle__icon-off svg {
  stroke: var(--cc-toggle-off-bg);
  transform: scale(0.55);
}
#cc-main .section__toggle:checked ~ .toggle__icon {
  background: var(--cc-toggle-on-bg);
  box-shadow: 0 0 0 1px var(--cc-toggle-on-bg);
}
#cc-main .section__toggle:checked ~ .toggle__icon .toggle__icon-circle {
  transform: translateX(27px);
  background-color: var(--cc-toggle-on-knob-bg);
}
#cc-main .section__toggle:checked ~ .toggle__icon .toggle__icon-on {
  opacity: 1;
}
#cc-main .section__toggle:checked ~ .toggle__icon .toggle__icon-off {
  opacity: 0;
}
#cc-main .section__toggle:checked:disabled ~ .toggle__icon {
  background: var(--cc-toggle-readonly-bg);
  box-shadow: 0 0 0 1px var(--cc-toggle-readonly-bg);
}
#cc-main .section__toggle:checked:disabled ~ .toggle__icon .toggle__icon-circle {
  background: var(--cc-toggle-readonly-knob-bg);
  box-shadow: none;
}
#cc-main .section__toggle:checked:disabled ~ .toggle__icon svg {
  stroke: var(--cc-toggle-readonly-knob-icon-color);
}
#cc-main .toggle__label {
  position: absolute;
  top: 0;
  z-index: -1;
  opacity: 0;
  pointer-events: none;
  overflow: hidden;
}
#cc-main .pm__section-desc-wrapper {
  display: flex;
  flex-direction: column;
  font-size: 0.9em;
  color: var(--cc-secondary-color);
}
#cc-main .pm__section-desc-wrapper > *:not(:last-child) {
  border-bottom: 1px solid var(--cc-cookie-category-block-border);
}
#cc-main .pm__section-services {
  display: flex;
  flex-direction: column;
}
#cc-main .pm__service {
  padding: 0.4em 1.2em;
  position: relative;
  display: flex;
  justify-content: space-between;
  transition: background-color 0.15s ease;
  align-items: center;
}
#cc-main .pm__service:hover {
  background-color: var(--cc-cookie-category-block-hover-bg);
}
#cc-main .pm__service-header {
  display: flex;
  align-items: center;
  width: 100%;
  margin-right: 1em;
}
#cc-main .pm__service-icon {
  min-width: 8px;
  height: 8px;
  border: 2px solid currentColor;
  border-radius: 100%;
  margin-left: 6px;
  margin-right: 20px;
  margin-top: 1px;
}
#cc-main .pm__service-title {
  font-size: 0.95em;
  word-break: break-word;
  width: 100%;
}
#cc-main .pm__section-desc {
  line-height: 1.5em;
}
#cc-main .pm__section-table {
  text-align: left;
  border-collapse: collapse;
  width: 100%;
  padding: 0;
  margin: 0;
  overflow: hidden;
  font-size: 0.9em;
}
#cc-main .pm__table-caption {
  text-align: left;
}
#cc-main .pm__table-caption,
#cc-main .pm__table-head > tr {
  font-weight: 600;
  color: var(--cc-primary-color);
  border-bottom: 1px dashed var(--cc-separator-border-color);
}
#cc-main .pm__table-tr {
  transition: background-color 0.15s ease;
}
#cc-main .pm__table-tr:hover {
  background: var(--cc-cookie-category-block-hover-bg);
}
#cc-main .pm__table-caption,
#cc-main .pm__table-th,
#cc-main .pm__table-td {
  padding: 0.625em;
  vertical-align: top;
  padding-left: 1.2em;
}
#cc-main .pm__footer {
  display: flex;
  justify-content: space-between;
  border-top: 1px solid var(--cc-separator-border-color);
}
#cc-main .pm__btn-group {
  display: flex;
}
#cc-main .pm__btn + .pm__btn,
#cc-main .pm__btn-group + .pm__btn-group {
  margin-left: 0.375rem;
}
#cc-main .pm--flip .pm__btn + .pm__btn,
#cc-main .pm--flip .pm__btn-group + .pm__btn-group {
  margin-left: 0;
  margin-right: 0.375rem;
}
#cc-main .pm__btn {
  color: var(--cc-btn-primary-color);
  background: var(--cc-btn-primary-bg);
  border: 1px solid var(--cc-btn-primary-border-color);
  text-align: center;
  flex: auto;
  min-width: 110px;
  font-weight: 600;
  font-size: 0.82em;
  padding: 0.5em 1.5em;
  min-height: 42px;
  border-radius: var(--cc-btn-border-radius);
  transition: background-color 0.15s ease, border-color 0.15s ease, color 0.15s ease;
  /* Secondary btn colors */
}
#cc-main .pm__btn:hover {
  background: var(--cc-btn-primary-hover-bg);
  border-color: var(--cc-btn-primary-hover-border-color);
  color: var(--cc-btn-primary-hover-color);
}
#cc-main .pm__btn--secondary {
  color: var(--cc-btn-secondary-color);
  background: var(--cc-btn-secondary-bg);
  border-color: var(--cc-btn-secondary-border-color);
}
#cc-main .pm__btn--secondary:hover {
  background: var(--cc-btn-secondary-hover-bg);
  border-color: var(--cc-btn-secondary-hover-border-color);
  color: var(--cc-btn-secondary-hover-color);
}
#cc-main .pm--box {
  left: var(--cc-modal-margin);
  right: var(--cc-modal-margin);
  margin: 0 auto;
  top: 50%;
  max-width: 43em;
  max-height: 37.5em;
  height: calc(100% - 2em);
}
#cc-main .pm--box.pm--flip .pm__footer,
#cc-main .pm--box.pm--flip .pm__btn-group {
  flex-direction: row-reverse;
}
#cc-main .pm-overlay {
  content: "";
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  z-index: 1;
  background: var(--cc-overlay-bg);
  opacity: 0;
  visibility: hidden;
}
#cc-main .cc--anim .pm,
#cc-main .cc--anim .pm-overlay {
  transition: opacity var(--cc-modal-transition-duration) ease, visibility var(--cc-modal-transition-duration) ease, transform var(--cc-modal-transition-duration) ease;
}

#cc-main .pm--box {
  transform: translateY(calc(-50% + 1.6em));
}

.show--preferences #cc-main .cc--anim .pm {
  opacity: 1;
  visibility: visible !important;
}
.show--preferences #cc-main .cc--anim .pm--box {
  transform: translateY(-50%);
}
.show--preferences #cc-main .cc--anim .pm-overlay {
  opacity: 1;
  visibility: visible;
}

/* Start: fix RTL layout */
/* End: Fix RTL alyout */
@media screen and (max-width: 640px) {
  #cc-main {
    /* Start: Table -> vertical table */
    /* End: Table */
    /* Fill width */
  }
  #cc-main .pm {
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    max-height: 100%;
    height: auto;
    transform: translateY(1.6em);
    border-radius: 0;
    max-width: none !important;
  }
  #cc-main .pm__header,
  #cc-main .pm__body,
  #cc-main .pm__footer {
    padding: 0.9em !important;
  }
  #cc-main .pm__badge {
    display: none;
  }
  #cc-main .pm__section-table,
  #cc-main .pm__table-caption,
  #cc-main .pm__table-body,
  #cc-main .pm__table-tr,
  #cc-main .pm__table-th,
  #cc-main .pm__table-td {
    display: block;
  }
  #cc-main .pm__table-head {
    display: none;
  }
  #cc-main .pm__table-tr:not(:last-child) {
    border-bottom: 1px solid var(--cc-separator-border-color);
  }
  #cc-main .pm__table-td {
    display: flex;
    justify-content: space-between;
  }
  #cc-main .pm__table-td::before {
    content: attr(data-column);
    padding-right: 2em;
    font-weight: 600;
    color: var(--cc-primary-color);
    overflow: hidden;
    text-overflow: ellipsis;
    flex: 1;
    min-width: 100px;
  }
  #cc-main .pm__table-td > div {
    flex: 3;
  }
  #cc-main .pm__footer {
    flex-direction: column !important;
  }
  #cc-main .pm__btn-group {
    display: flex !important;
    flex-direction: column !important;
  }
  #cc-main .pm__btn + .pm__btn,
  #cc-main .pm__btn-group + .pm__btn-group {
    margin: 0 !important;
    margin-top: 0.375rem !important;
  }
  #cc-main .pm--flip .pm__btn + .pm__btn,
  #cc-main .pm--flip .pm__btn-group + .pm__btn-group {
    margin-top: 0 !important;
    margin-bottom: 0.375rem !important;
  }
  #cc-main .pm--flip .pm__footer,
  #cc-main .pm--flip .pm__btn-group {
    flex-direction: column-reverse !important;
  }
  .show--preferences #cc-main .cc--anim .pm {
    transform: translateY(0) !important;
  }
}
:root {
  --cc-btn-primary-bg: #278637;
  --cc-btn-primary-hover-bg: #227430;
  --cc-btn-primary-border-color: transparent;
  --cc-btn-secondary-border-color: transparent;
  --cc-btn-secondary-hover-border-color: transparent;
}

#cc-main .cm__btns {
  border-top: transparent !important;
  padding-top: 5px;
}
#cc-main .cm__btn-group .cm__btn,
#cc-main .cm__btn-group .pm__btn,
#cc-main .pm__btn-group .cm__btn,
#cc-main .pm__btn-group .pm__btn {
  transition: background 0.3s ease-in-out;
}
#cc-main .cm__btn-group .cm__btn:first-child:not(:last-child),
#cc-main .cm__btn-group .pm__btn:first-child:not(:last-child),
#cc-main .pm__btn-group .cm__btn:first-child:not(:last-child),
#cc-main .pm__btn-group .pm__btn:first-child:not(:last-child) {
  background: var(--cc-btn-primary-bg);
  border-color: var(--cc-btn-primary-border-color);
  color: var(--cc-btn-primary-color);
}
#cc-main .cm__btn-group .cm__btn:first-child:not(:last-child):hover, #cc-main .cm__btn-group .cm__btn:first-child:not(:last-child):active, #cc-main .cm__btn-group .cm__btn:first-child:not(:last-child):focus,
#cc-main .cm__btn-group .pm__btn:first-child:not(:last-child):hover,
#cc-main .cm__btn-group .pm__btn:first-child:not(:last-child):active,
#cc-main .cm__btn-group .pm__btn:first-child:not(:last-child):focus,
#cc-main .pm__btn-group .cm__btn:first-child:not(:last-child):hover,
#cc-main .pm__btn-group .cm__btn:first-child:not(:last-child):active,
#cc-main .pm__btn-group .cm__btn:first-child:not(:last-child):focus,
#cc-main .pm__btn-group .pm__btn:first-child:not(:last-child):hover,
#cc-main .pm__btn-group .pm__btn:first-child:not(:last-child):active,
#cc-main .pm__btn-group .pm__btn:first-child:not(:last-child):focus {
  background: var(--cc-btn-primary-hover-bg);
  border-color: var(--cc-btn-primary-hover-bg);
  color: var(--cc-btn-primary-color);
}
#cc-main .cm__btn-group .cm__btn:last-child:not(:first-child),
#cc-main .cm__btn-group .pm__btn:last-child:not(:first-child),
#cc-main .pm__btn-group .cm__btn:last-child:not(:first-child),
#cc-main .pm__btn-group .pm__btn:last-child:not(:first-child) {
  background: var(--cc-btn-secondary-bg);
  border-color: var(--cc-btn-secondary-border-color);
  color: var(--cc-btn-secondary-color);
}
#cc-main .cm__btn-group .cm__btn:last-child:not(:first-child):hover, #cc-main .cm__btn-group .cm__btn:last-child:not(:first-child):active, #cc-main .cm__btn-group .cm__btn:last-child:not(:first-child):focus,
#cc-main .cm__btn-group .pm__btn:last-child:not(:first-child):hover,
#cc-main .cm__btn-group .pm__btn:last-child:not(:first-child):active,
#cc-main .cm__btn-group .pm__btn:last-child:not(:first-child):focus,
#cc-main .pm__btn-group .cm__btn:last-child:not(:first-child):hover,
#cc-main .pm__btn-group .cm__btn:last-child:not(:first-child):active,
#cc-main .pm__btn-group .cm__btn:last-child:not(:first-child):focus,
#cc-main .pm__btn-group .pm__btn:last-child:not(:first-child):hover,
#cc-main .pm__btn-group .pm__btn:last-child:not(:first-child):active,
#cc-main .pm__btn-group .pm__btn:last-child:not(:first-child):focus {
  background: var(--cc-btn-secondary-hover-bg);
  border-color: var(--cc-btn-secondary-hover-border-color);
  color: var(--cc-btn-secondary-hover-color);
}

html.disable--interaction.show--consent,
html.disable--interaction.show--consent body {
  overflow: auto !important;
}

.cookie-control__not-allowed {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  background-image: url("/assets/application/template/video-not-allowed-6bdfdd8b.webp");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 75% 75%;
}
.cookie-control__not-allowed p {
  text-align: center;
  max-width: 350px;
  margin-right: auto;
  margin-left: auto;
}

/*------------------------------------*\
  $TURBO-PROGRESS
\*------------------------------------*/
.turbo-progress-bar {
  height: 5px;
  background: linear-gradient(to right, #fdc715 0%, #00C19F 50%, #22AAE2 100%);
}

/*------------------------------------*\
  $MODALS_TEST_SUITE
\*------------------------------------*/
.modals-test-suite {
  background: #ededed;
  padding: 10px;
}
.modals-test-suite .btn {
  margin-bottom: 20px;
}

/*------------------------------------*\
  $RECAPTCHA
\*------------------------------------*/
.grecaptcha-badge {
  visibility: hidden;
}

.recaptcha-text {
  margin-top: 20px;
}
.recaptcha-text a {
  color: #2b2b2b;
}
.recaptcha-text.field--last {
  margin-bottom: 0;
}
.recaptcha-text,
.recaptcha-text > * {
  font-size: 0.75rem;
  font-weight: 400;
  font-family: "Rubik", helvetica, sans-serif;
  line-height: 1.4;
  color: #2b2b2b;
}

#recaptcha {
  width: 100%;
}

[data-recaptcha-target] {
  margin-top: 15px;
}

@media (min-width: 48em) {
  .recaptcha-text {
    margin-top: 25px;
  }
}
@media (min-width: 60em) {
  .recaptcha-text {
    margin-top: 25px;
  }
}
/*------------------------------------*\
  $FORM-MODULE
\*------------------------------------*/
.form-module__intro p {
  margin-bottom: 25px;
}
.form-module--help-centre textarea {
  min-height: 250px;
}
.form-module--help-centre fieldset {
  width: 100%;
}
@media (min-width: 37.5em) {
  .form-module .field--btn {
    text-align: right;
  }
  .form-module .field--btn .btn {
    max-width: 100%;
  }
  .form-module--email-signup .field--btn {
    margin-top: 10px;
  }
}
@media (min-width: 48em) {
  .form-module {
    max-width: 525px;
    margin-right: auto;
  }
  .form-module__intro p {
    margin-bottom: 30px;
  }
  .form-module .field--btn .btn {
    width: auto;
    min-width: 150px;
  }
  .form-module--help-centre,
  .form-module--help-centre form {
    max-width: 725px;
  }
}

/*------------------------------------*\
  $TAG-FILTER
\*------------------------------------*/
.tag-filter {
  width: 100%;
  background: transparent;
}
.tag-filter__reset {
  width: 100%;
  margin-top: 10px;
}
.tag-filter__reset a {
  font-weight: 400;
  font-family: "Rubik", helvetica, sans-serif;
  font-size: 0.8125rem;
  padding-top: 10px;
  color: #ffffff;
}
.tag-filter .panel--collapsible__title {
  background: #000000;
  display: inline-flex;
  height: 42px;
  border-radius: 3px;
  width: 100%;
  cursor: pointer;
  padding: 0;
}
.tag-filter .panel--collapsible__title-text {
  width: 100%;
}
.tag-filter .panel--collapsible__btn {
  width: 100%;
  color: #ffffff;
  padding-left: 20px;
  padding-right: 20px;
}
.tag-filter .panel--collapsible__btn svg {
  fill: #ffffff;
  height: 6px;
  width: 10px;
  margin-top: 2px;
}
.tag-filter .panel--collapsible__body {
  background: #000000;
  padding: 10px 20px 25px;
  border-bottom-left-radius: 3px;
  border-bottom-right-radius: 3px;
}
.tag-filter .panel--collapsible__body form {
  max-width: 100%;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.tag-filter.panel--open .panel--collapsible__title {
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}
.tag-filter .field--checkbox {
  padding: 0;
  margin: 0;
  cursor: none;
}
.tag-filter .field--checkbox label {
  cursor: default;
}
.tag-filter .field--checkbox .checkbox__text {
  font-weight: 500;
  font-family: "Rubik", helvetica, sans-serif;
  font-size: 0.875rem;
  position: relative;
  z-index: 2;
  color: #292929;
  cursor: pointer;
  padding: 5px 10px;
  display: block;
}
.tag-filter .field--checkbox .checkbox__indicator {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  height: auto;
  width: auto;
  background-color: #ddd;
  border: none;
  cursor: pointer;
  border-radius: 30px;
}
.tag-filter .field--checkbox .checkbox__indicator:after {
  display: none;
}
.tag-filter .field--checkbox input {
  cursor: pointer;
}
.tag-filter .field--checkbox input:checked ~ .checkbox__indicator {
  background-color: #ccc;
}
.tag-filter .field--checkbox input:checked ~ .checkbox__text {
  color: #000000;
}
.tag-filter .field--checkbox input:focus ~ .checkbox__indicator {
  background-color: #ccc;
}
.tag-filter .field--checkbox:hover input ~ .checkbox__indicator {
  background-color: #ccc;
}
.tag-filter .field--checkbox:hover input ~ .checkbox__text {
  color: #000000;
}
.tag-filter .field--checkbox:hover input:not([disabled]):checked ~ .checkbox__indicator, .tag-filter .field--checkbox input:checked:focus ~ .checkbox__indicator {
  background-color: #bcbcbc;
}
.tag-filter .field--checkbox:hover input:not([disabled]):checked ~ .checkbox__text, .tag-filter .field--checkbox input:checked:focus ~ .checkbox__text {
  color: #000000;
}
.tag-filter .field--checkbox input:disabled {
  cursor: not-allowed;
}
.tag-filter .field--checkbox input:disabled ~ .checkbox__indicator {
  pointer-events: none;
  opacity: 0.5;
  background: #ddd;
  cursor: not-allowed;
}
.tag-filter .field--checkbox input:disabled ~ .checkbox__text {
  opacity: 0.5;
  color: #292929;
  cursor: not-allowed;
}
.tag-filter .field--checkbox input:disabled:hover input {
  cursor: not-allowed;
}
.tag-filter .field--checkbox input:disabled:hover input ~ .checkbox__indicator {
  pointer-events: none;
  opacity: 0.5;
  background: #ededed;
  cursor: not-allowed;
}
.tag-filter .field--checkbox input:disabled:hover input ~ .checkbox__text {
  opacity: 0.5;
  cursor: not-allowed;
}
.tag-filter .field--checkbox input:checked ~ .checkbox__indicator:after {
  display: none;
}
@media (min-width: 37.5em) {
  .tag-filter .panel--collapsible__title {
    width: auto;
  }
  .tag-filter .panel--collapsible__title-text {
    width: auto;
  }
  .tag-filter .panel--collapsible__btn {
    width: auto;
  }
  .tag-filter .panel--collapsible__btn span {
    padding-right: 15px;
  }
  .tag-filter .panel--collapsible__body {
    border-radius: 3px;
    border-top-left-radius: 0;
    padding-top: 20px;
  }
}
@media (min-width: 48em) {
  .tag-filter__reset {
    margin-top: 5px;
    text-align: right;
  }
  .tag-filter__reset a {
    font-size: 0.875rem;
    padding-top: 10px;
    padding-left: 20px;
  }
  .tag-filter .panel--collapsible__title {
    display: inline-flex;
    height: 50px;
    border-radius: 3px;
  }
  .tag-filter .panel--collapsible__body {
    padding: 25px;
    border-radius: 3px;
    border-top-left-radius: 0;
  }
  .tag-filter .panel--collapsible__body form {
    gap: 20px;
  }
  .tag-filter .panel--collapsible__body .layout__container {
    padding-left: 25px;
    padding-right: 25px;
  }
  .tag-filter .checkbox__text {
    font-size: 0.9375rem;
  }
  .tag-filter .field--checkbox .checkbox__text {
    font-size: 0.9375rem;
    padding: 8px 20px;
  }
}
@media (min-width: 60em) {
  .tag-filter__reset {
    margin-top: 30px;
  }
  .tag-filter .panel--collapsible__btn {
    padding-top: 0;
    padding-bottom: 0;
  }
  .tag-filter .panel--collapsible__btn svg {
    margin-right: 0;
  }
}
@media (min-width: 67.5em) {
  .tag-filter .panel--collapsible__body {
    padding: 40px;
  }
}

/*------------------------------------*\
  $CARD-SLIDERS
\*------------------------------------*/
.card-slider {
  display: flex;
  user-select: none;
  cursor: grab;
  cursor: -webkit-grab;
  overflow-y: hidden;
  overflow-x: scroll;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  scrollbar-face-color: #000;
  scrollbar-base-color: #e0e0e2;
  scrollbar-shadow-color: #707070;
  /* FIREFOX */
  /* Track width if vertical, Track height if horzontal */
  /* Track */
  /* Handle */
  /* Block at start / end of scrollbar (2 at each end) */
}
@-moz-document url-prefix() {
  .card-slider {
    scrollbar-color: #000 #e0e0e2;
    scrollbar-width: thin;
  }
}
.card-slider::-webkit-scrollbar {
  height: 10px;
}
.card-slider::-webkit-scrollbar-track {
  -webkit-border-radius: 10px;
  border-radius: 10px;
  background-color: #e0e0e2;
}
.card-slider::-webkit-scrollbar-thumb {
  border-radius: 10px;
  background: #000;
  -webkit-border-radius: 10px;
}
.card-slider::-webkit-scrollbar-button:increment {
  display: block;
  background-color: transparent;
  width: 20px;
}
.card-slider::-webkit-scrollbar-button:decrement {
  width: 0;
}
.card-slider::-webkit-scrollbar-button:start:increment {
  width: 0;
}
.card-slider__half.layout__container, .card-slider__full.layout__container {
  margin-top: 30px;
  padding-right: 0;
}
.card-slider.active {
  cursor: grabbing;
}
.card-slider.active .post__title a {
  cursor: grabbing;
}
.card-slider .post--slider-card {
  flex-shrink: 0;
  margin-bottom: 20px;
  margin-right: 20px;
  width: 230px;
  scroll-snap-align: start;
  background: #000;
  border-radius: 3px;
}
.card-slider .post--slider-card:before {
  display: none;
}
.card-slider .post--slider-card figure {
  width: 100%;
}
.card-slider .post--slider-card p {
  color: #ffffff;
}
.card-slider .post--slider-card .post__title,
.card-slider .post--slider-card .post__title a {
  color: #ffffff;
  font-size: 1rem;
}
.card-slider .post--slider-card .post__description,
.card-slider .post--slider-card .post__description * {
  color: #ffffff;
}
.card-slider .post--slider-card:hover.post--has-link, .card-slider .post--slider-card:active.post--has-link, .card-slider .post--slider-card:focus.post--has-link {
  background: hsl(0, 0%, -5%);
}
.card-slider .post--slider-card:hover.post--no-link picture, .card-slider .post--slider-card:active.post--no-link picture, .card-slider .post--slider-card:focus.post--no-link picture {
  transform: scale(1.02);
}
.card-slider .post--slider-card:hover.post--no-link picture:after, .card-slider .post--slider-card:active.post--no-link picture:after, .card-slider .post--slider-card:focus.post--no-link picture:after {
  opacity: 0;
}
.card-slider__highlighted-cards .post--slider-card {
  background: #f8f8f8;
}
.card-slider__highlighted-cards .post--slider-card .post__title,
.card-slider__highlighted-cards .post--slider-card .post__title a {
  color: #000;
}
.card-slider__highlighted-cards .post--slider-card .post__description,
.card-slider__highlighted-cards .post--slider-card .post__description * {
  color: #2b2b2b;
}
.card-slider__highlighted-cards .post--slider-card:hover.post--has-link, .card-slider__highlighted-cards .post--slider-card:active.post--has-link, .card-slider__highlighted-cards .post--slider-card:focus.post--has-link {
  background: rgb(240.35, 240.35, 240.35);
}
.card-slider__card-spacer {
  padding-left: 1px;
}
@media (min-width: 48em) {
  .card-slider::-webkit-scrollbar-button:increment {
    width: 30px;
  }
  .card-slider .post--slider-card {
    width: 280px;
    margin-bottom: 30px;
  }
  .card-slider .post--slider-card .post__title,
  .card-slider .post--slider-card .post__title a {
    font-size: 1.1875rem;
  }
  .content--full .card-slider__full {
    padding-left: 30px;
  }
}
@media (min-width: 60em) {
  .card-slider .post--slider-card {
    width: 280px;
    margin-right: 20px;
  }
  .card-slider .post--slider-card .post__title,
  .card-slider .post--slider-card .post__title a {
    font-size: 1.25rem;
  }
  .content--small .card-slider__half.layout__container, .content--small .card-slider__full.layout__container {
    padding-left: 0;
  }
  .content--small .card-slider__half .wrapper__variable-width, .content--small .card-slider__full .wrapper__variable-width {
    max-width: 100%;
    margin-left: calc((100% - 960px) / 2);
  }
  .content--small .card-slider__full .card-slider::-webkit-scrollbar-button:end:increment {
    width: calc(100% - 960px);
  }
}
@media (min-width: 75em) {
  .card-slider__wrapper {
    display: flex;
    align-items: center;
  }
  .card-slider__wrapper .layout__container {
    margin: 0;
  }
  .card-slider__wrapper .card-slider__text > *:last-child {
    margin-bottom: 0;
  }
  .card-slider__full::-webkit-scrollbar-button:end:increment {
    width: calc((100% - 695px) / 2);
  }
  .card-slider__full::-webkit-scrollbar-button:start:increment {
    width: calc((100% - 695px) / 2);
  }
  .content--medium .card-slider__full .wrapper__variable-width {
    max-width: 100%;
  }
  .card-slider__half {
    width: 50%;
    padding-left: 0;
    padding-right: 0;
  }
  .card-slider__half .card-slider::-webkit-scrollbar-button:start:increment {
    width: 0;
  }
  .card-slider__half .card-slider::-webkit-scrollbar-button:end:increment {
    width: 30px;
  }
  .content--small .card-slider__half:first-child {
    margin-left: auto;
    width: calc((960px - 10px) / 2);
  }
  .content--small .card-slider__half .wrapper__variable-width {
    max-width: 960px;
    margin-left: auto;
  }
  .card-slider__half:first-child {
    padding-left: 30px;
    margin-right: 20px;
  }
  .card-slider__half:first-child > *:first-child {
    margin-top: 0;
  }
  .card-slider__half .post--slider-card {
    scroll-margin-left: 0;
    scroll-snap-margin-left: 0;
  }
  .card-slider__half.card-slider__text > * {
    padding-right: 50px;
  }
  .card-slider.card-slider__half {
    margin-top: 0;
  }
}
@media (min-width: 77.5em) {
  .content--medium .card-slider__full {
    padding: 0;
  }
  .content--medium .card-slider__full .wrapper__variable-width {
    max-width: 100%;
    margin-left: calc((100% - 1170px) / 2);
  }
  .content--medium .card-slider__full .card-slider::-webkit-scrollbar-button:end:increment {
    width: calc(100% - 1170px);
  }
}
@media (min-width: 81.25em) {
  .card-slider__half:first-child {
    padding-left: 0;
    max-width: calc((1170px - 2 * 30px) / 2 + 20px / 2);
    margin-left: auto;
  }
}
@media (min-width: 90em) {
  .content--small .card-slider__half .wrapper__variable-width {
    max-width: 100%;
  }
}
@media (min-width: 92.5em) {
  .content--large .card-slider__full {
    padding: 0;
  }
  .content--large .card-slider__full .wrapper__variable-width {
    max-width: 100%;
    margin-left: calc((100% - 1440px) / 2);
  }
  .content--large .card-slider__full .card-slider::-webkit-scrollbar-button:end:increment {
    width: calc(100% - 1440px);
  }
}

/*------------------------------------*\
  $ALERTS
\*------------------------------------*/
.alert {
  background-color: #000;
  position: absolute;
  top: 140px;
  right: 0;
  width: calc(100% - 15px);
  max-width: 420px;
  height: auto;
  padding: 25px 15px 25px 20px;
  z-index: 18;
  border-radius: 3px 0 0 3px;
  box-shadow: 0px 5px 7px 0 rgba(0, 0, 0, 0.3);
  will-change: transform; /* will animate, let the browser know before time */
  transform: translateX(600px);
  animation: alert-slide-in 0.8s;
  animation-delay: 1.5s;
  animation-fill-mode: forwards;
}
.alert__wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
}
.alert__message {
  padding-right: 10px;
  display: flex;
  align-items: center;
}
.alert__message:before {
  content: "!";
  font-size: 2.5rem;
  line-height: 0.7;
  margin-right: 15px;
}
.alert__message,
.alert__message p,
.alert__message a {
  color: #ffffff;
  margin: 0;
  line-height: 1.5;
}
.alert .btn {
  padding: 0;
  background-color: transparent;
  height: 40px;
  width: 40px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
  margin-top: -10px;
  margin-bottom: -10px;
}
.alert svg {
  height: 14px;
  width: 14px;
  fill: #ffffff;
}
@media (min-width: 48em) {
  .alert {
    position: fixed;
    top: 180px;
    width: 560px;
    max-width: 560px;
    padding: 35px 25px 35px 45px;
  }
  .alert__message:before {
    font-size: 3.125rem;
    margin-right: 25px;
  }
  .alert__message,
  .alert__message p,
  .alert__message a {
    font-size: 1.0625rem;
  }
  .alert svg {
    height: 16px;
    width: 16px;
  }
}
@media (min-width: 60em) {
  .alert {
    padding: 40px 30px 40px 45px;
    top: 250px;
    width: 600px;
    max-width: 600px;
  }
  .alert__message:before {
    font-size: 3.5rem;
  }
  .alert__message,
  .alert__message p,
  .alert__message a {
    font-size: 1.125rem;
  }
}

@keyframes alert-slide-in {
  from {
    transform: translateX(600px);
  }
  to {
    transform: translateX(0);
  }
}
/*------------------------------------*\
  $LANDING-PAGE
\*------------------------------------*/
.landing-page .page__title {
  line-height: 1.2;
}
.landing-page__intro {
  margin-bottom: 30px;
}
.landing-page__intro li {
  margin-bottom: 10px;
}
.landing-page__intro-image {
  margin-top: 20px;
  margin-bottom: 20px;
}
.landing-page__intro-image picture {
  border-radius: 3px;
  -webkit-mask-image: -webkit-radial-gradient(white, black);
}
@media (min-width: 48em) {
  .landing-page__intro-image picture {
    border-radius: 3px;
  }
}
.landing-page__intro-text {
  padding: 0;
}
.landing-page__intro-text .intro {
  font-size: 1.375rem;
}
.landing-page__form {
  background: #f8f8f8;
  padding: 5px 20px 20px;
  border-radius: 3px;
}
.landing-page__form form {
  max-width: 100%;
}
.landing-page__form input,
.landing-page__form select,
.landing-page__form textarea {
  background: #ffffff;
  padding-left: 20px;
  max-width: 100%;
}
.landing-page__form .visually-hidden {
  position: absolute;
  overflow: hidden;
  margin: -1px;
  padding: 0;
  height: 1px;
  width: 1px;
  clip: rect(0 0 0 0);
  border: 0;
}
.landing-page__form-heading {
  font-weight: 700;
  font-family: "Rubik", helvetica, sans-serif;
  padding-top: 15px;
  font-size: 1.375rem;
  color: #000;
}
.landing-page__form-checkboxes {
  margin-top: 10px;
}
.landing-page__form-checkboxes legend {
  font-size: 0.9375rem;
}
.landing-page__form-contact {
  padding-top: 25px;
  margin-top: 30px;
  position: relative;
  width: 100%;
  text-align: center;
}
.landing-page__form-contact:before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  background: #222223;
  height: 1px;
}
.landing-page__form-contact p {
  margin: 0;
}
.landing-page__form-contact a {
  text-decoration-line: none;
}
.landing-page__form-contact a:hover, .landing-page__form-contact a:active, .landing-page__form-contact a:focus {
  text-decoration-line: underline;
}
.landing-page__form .field {
  margin-bottom: 15px;
}
.landing-page__form .field--checkbox {
  margin-bottom: 5px;
}
.landing-page__form .field--checkbox input {
  padding: 0;
}
.landing-page__form .checkbox__indicator {
  background: #ffffff;
}
.landing-page__form .btn {
  margin-top: 15px;
  max-width: 100%;
  width: 100%;
}
.landing-page__form .recaptcha-text {
  margin-bottom: 0;
}
@media (min-width: 48em) {
  .landing-page__intro-image {
    margin-top: 35px;
    margin-bottom: 35px;
  }
  .landing-page__intro-text .intro {
    font-size: 1.5rem;
  }
  .landing-page__form {
    padding: 10px 30px 30px;
    border-radius: 3px;
  }
  .landing-page__form-heading {
    padding-top: 25px;
    font-size: 1.4375rem;
  }
  .landing-page__form-contact p {
    font-size: 1.0625rem;
  }
}
@media (min-width: 60em) {
  .landing-page {
    display: flex;
    justify-content: space-between;
  }
  .landing-page .page__title {
    margin-top: 0;
  }
  .landing-page__intro {
    width: 66%;
    padding-right: 30px;
    margin-bottom: 0;
  }
  .landing-page__intro-image {
    margin-top: 45px;
  }
  .landing-page__intro-text .intro {
    font-size: 1.625rem;
  }
  .landing-page__form {
    width: 33%;
    height: 100%;
    min-width: 360px;
  }
  .landing-page__form-heading {
    font-size: 1.5rem;
    margin-bottom: 25px;
  }
  .landing-page__form-contact p {
    font-size: 1.125rem;
  }
}
@media (min-width: 67.5em) {
  .landing-page__intro {
    padding-right: 70px;
  }
}

/*------------------------------------*\
  $GLIDE-PROGRESS-BAR
\*------------------------------------*/
.glide__progress-bar {
  background: #000;
  position: absolute;
  inset-inline-end: 0;
  inset-block-end: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 200px;
  height: auto;
  padding: 20px;
}
.glide__progress-bar label {
  margin: 0;
  display: flex;
  width: 100%;
}
.glide__progress-bar progress[value] {
  width: 100%;
  height: 10px;
  appearance: none;
  border: none;
  background: #ddd;
  border-radius: 5px;
}
.glide__progress-bar progress[value]::-webkit-progress-bar {
  background: #ddd;
  border-radius: 5px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.25) inset;
}
.glide__progress-bar progress[value]::-webkit-progress-value {
  background: linear-gradient(rgba(255, 255, 255, 0.5), rgba(255, 255, 255, 0)), repeating-linear-gradient(135deg, rgba(0, 0, 0, 0.45) 0 10px, rgba(0, 0, 0, 0) 0 20px), #4e4e4e;
  border-radius: 5px;
  transition: width 0.1s ease;
}
.glide__progress-bar progress[value]::-moz-progress-bar {
  background: linear-gradient(rgba(255, 255, 255, 0.5), rgba(255, 255, 255, 0)), repeating-linear-gradient(135deg, rgba(0, 0, 0, 0.45) 0 10px, rgba(0, 0, 0, 0) 0 20px), #4e4e4e;
  border-radius: 5px;
  transition: width 0.1s ease;
}
.glide__progress-bar progress[value="0"]::-webkit-progress-value {
  transition: none;
}
.glide__progress-bar progress[value="0"]::-moz-progress-bar {
  transition: none;
}

.logo-strip {
  display: flex;
  align-items: center;
}
.logo-strip img {
  height: 100%;
  width: 100%;
  object-fit: contain;
  filter: grayscale(100%);
}
.logo-strip__wrapper {
  padding-top: 30px;
  padding-bottom: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.4);
  border-bottom: 1px solid rgba(255, 255, 255, 0.4);
}
.logo-strip__wrapper .glide__track {
  width: 1440px;
}
.logo-strip__item picture {
  height: 55px;
  max-width: 75%;
}
.logo-strip__item--trustpilot img {
  padding-bottom: 7px;
}
.logo-strip .logo-strip__item {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (min-width: 48em) {
  .logo-strip {
    flex-direction: row;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 30px 0;
  }
  .logo-strip__wrapper {
    padding-top: 40px;
    padding-bottom: 40px;
  }
  .logo-strip__item {
    width: auto;
    margin-bottom: 0;
    max-width: 16%;
    margin-bottom: 0;
  }
  .logo-strip__item:nth-last-child(4) {
    margin-left: 16.7%;
  }
  .logo-strip .logo-strip__item:last-child {
    margin-right: 16.7%;
  }
  .logo-strip__item picture {
    height: 50px;
    max-width: min(100px, 75%);
  }
  .logo-strip__item--trustpilot img {
    padding-bottom: 4px;
  }
}
@media (min-width: 60em) {
  .logo-strip__wrapper {
    padding-top: 35px;
    padding-bottom: 35px;
  }
  .logo-strip__item picture {
    max-width: 75%;
  }
}
@media (min-width: 67.5em) {
  .logo-strip__item picture {
    height: 55px;
    max-width: 130px;
  }
  .logo-strip__item--trustpilot img {
    padding-bottom: 6px;
  }
}
@media (min-width: 75em) {
  .logo-strip__wrapper {
    padding-top: 60px;
    padding-bottom: 60px;
  }
  .logo-strip__item picture {
    height: 60px;
    max-width: 160px;
  }
}

/*------------------------------------*\
  $PANEL-BACKGROUND
\*------------------------------------*/
.panel-bg {
  position: relative;
  background: transparent;
  max-width: 1600px;
  margin-right: auto;
  margin-left: auto;
}
.panel-bg .layout__container, .panel-bg__video, .panel-bg__image {
  padding-left: 20px;
  padding-right: 20px;
}
.full-bleed-mobile .panel-bg__video, .full-bleed-mobile .panel-bg__image {
  padding-left: 0;
  padding-right: 0;
}
.panel-bg__image picture, .panel-bg__video--wrapper {
  position: relative;
  padding-bottom: 85%;
  overflow: hidden;
}
.panel-bg__image picture img,
.panel-bg__image picture video,
.panel-bg__image picture iframe,
.panel-bg__image picture object,
.panel-bg__image picture embed, .panel-bg__video--wrapper img,
.panel-bg__video--wrapper video,
.panel-bg__video--wrapper iframe,
.panel-bg__video--wrapper object,
.panel-bg__video--wrapper embed {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}
.panel-bg__image picture iframe,
.panel-bg__image picture object,
.panel-bg__image picture embed, .panel-bg__video--wrapper iframe,
.panel-bg__video--wrapper object,
.panel-bg__video--wrapper embed {
  width: 100%;
  height: 100.2%;
}
.panel-bg__image picture {
  background: #e0e0e2;
}
.panel-bg__image--left img {
  left: 0;
  transform: none;
}
.panel-bg__image--right img {
  left: auto;
  right: 0;
  transform: none;
}
.panel-bg__video video {
  height: 101%;
  width: 101%;
  object-fit: cover;
}
.panel-bg__content {
  z-index: 1;
  padding-top: 30px;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.panel-bg__content--right {
  margin-left: auto;
}
.panel-bg__content--centre {
  margin-left: auto;
  margin-right: auto;
}
.panel-bg__content--centre p,
.panel-bg__content--centre h2 {
  text-align: center;
}
.panel-bg__content--centre .panel-bg__icon img,
.panel-bg__content--centre .panel-bg__icon svg {
  margin-right: auto;
  margin-left: auto;
}
.panel-bg__content--centre .panel-bg__button .btn {
  width: 100%;
}
.panel-bg__content .btn {
  margin-top: 20px;
}
.panel--medium-gutter .panel-bg__content {
  text-align: center;
}
.panel-bg__description > *:first-child {
  margin-top: 0;
}
.panel-bg__description > *:last-child {
  margin-bottom: 0;
}
.panel-bg__description h2 {
  margin-top: 0;
  margin-bottom: 10px;
}
.panel-bg__icon {
  margin-bottom: 25px;
  max-height: 42px;
  width: 100%;
  overflow: hidden;
}
.panel-bg__icon img,
.panel-bg__icon svg {
  display: block;
  width: auto;
  height: 100%;
  width: 100%;
  object-fit: contain;
  object-position: left;
  max-height: 42px;
  max-width: 155px;
}
.panel--medium-gutter .panel-bg__icon img,
.panel--medium-gutter .panel-bg__icon svg {
  margin-left: auto;
  margin-right: auto;
  object-position: center center;
}
.panel-bg .btn {
  width: 100%;
  margin-top: 0;
}
.panel-bg__button {
  margin-top: 30px;
}
@media (max-width: 47.99em) {
  .panel--padding-bottom-none .panel-bg__text {
    padding-bottom: 30px;
  }
  .main-content > .panel:last-child .panel-bg__text {
    padding-bottom: 0;
  }
}
@media (min-width: 30em) {
  .panel-bg .btn {
    width: auto;
    height: 50px;
  }
}
@media (min-width: 48em) {
  .panel-bg {
    display: flex;
  }
  .panel-bg .layout__container, .panel-bg__video, .panel-bg__image {
    width: 50%;
    padding-left: 30px;
    padding-right: 30px;
  }
  .panel-bg__image picture, .panel-bg__video--wrapper {
    position: relative;
    padding-bottom: 100%;
    overflow: hidden;
  }
  .panel-bg__image picture img,
  .panel-bg__image picture video,
  .panel-bg__image picture iframe,
  .panel-bg__image picture object,
  .panel-bg__image picture embed, .panel-bg__video--wrapper img,
  .panel-bg__video--wrapper video,
  .panel-bg__video--wrapper iframe,
  .panel-bg__video--wrapper object,
  .panel-bg__video--wrapper embed {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
  }
  .panel-bg__image picture iframe,
  .panel-bg__image picture object,
  .panel-bg__image picture embed, .panel-bg__video--wrapper iframe,
  .panel-bg__video--wrapper object,
  .panel-bg__video--wrapper embed {
    width: 100%;
    height: 100.2%;
  }
  .panel-bg__image, .panel-bg__video {
    min-height: 360px;
    padding-left: 0;
    padding-right: 0;
  }
  .panel-bg__image figure,
  .panel-bg__image picture, .panel-bg__video figure,
  .panel-bg__video picture {
    height: 100%;
    width: 100%;
  }
  .panel-bg__image img, .panel-bg__video img {
    object-fit: cover;
    max-width: none;
    height: 100%;
    width: 100%;
  }
  .panel-bg__image--right, .panel-bg__video--right {
    order: 2;
  }
  .panel-bg__video--wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
  }
  .panel-bg__content {
    padding-top: 40px;
    padding-bottom: 40px;
    margin-bottom: 0;
  }
  .panel-bg__icon {
    margin-bottom: 40px;
    max-height: 46px;
  }
  .panel-bg__icon img,
  .panel-bg__icon svg {
    max-height: 46px;
    max-width: 180px;
  }
  .panel-bg .wrapper__variable-width {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
}
@media (min-width: 60em) {
  .panel-bg__icon {
    max-height: 56px;
  }
  .panel-bg__icon img,
  .panel-bg__icon svg {
    max-height: 56px;
    max-width: 200px;
  }
}
@media (min-width: 67.5em) {
  .panel-bg .btn {
    margin-top: 30px;
  }
  .panel-bg h2 {
    margin-bottom: 25px;
  }
  .panel-bg__image, .panel-bg__video {
    min-height: 500px;
  }
  .panel-bg__image picture, .panel-bg__video--wrapper {
    position: relative;
    padding-bottom: 85%;
    overflow: hidden;
  }
  .panel-bg__image picture img,
  .panel-bg__image picture video,
  .panel-bg__image picture iframe,
  .panel-bg__image picture object,
  .panel-bg__image picture embed, .panel-bg__video--wrapper img,
  .panel-bg__video--wrapper video,
  .panel-bg__video--wrapper iframe,
  .panel-bg__video--wrapper object,
  .panel-bg__video--wrapper embed {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
  }
  .panel-bg__image picture iframe,
  .panel-bg__image picture object,
  .panel-bg__image picture embed, .panel-bg__video--wrapper iframe,
  .panel-bg__video--wrapper object,
  .panel-bg__video--wrapper embed {
    width: 100%;
    height: 100.2%;
  }
  .panel-bg__icon {
    margin-bottom: 35px;
    max-height: 70px;
  }
  .panel-bg__icon img,
  .panel-bg__icon svg {
    max-height: 70px;
    max-width: 280px;
  }
  .panel-bg__content {
    max-width: 540px;
  }
}
@media (min-width: 75em) {
  .panel-bg__image--right, .panel-bg__video--right {
    order: 2;
  }
  .panel-bg__image--right + .layout__container, .panel-bg__video--right + .layout__container {
    padding-right: 50px;
  }
  .panel-bg__image--left + .layout__container, .panel-bg__video--left + .layout__container {
    padding-left: 50px;
  }
  .panel-bg__content {
    max-width: 533px;
  }
}

/*------------------------------------*\
  $NEWS-HEADER
\*------------------------------------*/
.news-header {
  margin-block: 30px;
}
.news-header .post__meta {
  margin: 0;
  font-size: 0.875rem;
  font-weight: 500;
  font-family: "Rubik", helvetica, sans-serif;
}
.news-header .post__meta span {
  font-weight: 300;
  font-family: "Rubik", helvetica, sans-serif;
}
@media (min-width: 48em) {
  .news-header {
    margin-block: 45px;
  }
  .news-header .post__meta {
    font-size: 0.9375rem;
  }
}
@media (min-width: 60em) {
  .news-header {
    margin-block: 50px;
  }
  .news-header .post__meta {
    font-size: 1rem;
  }
}

/*------------------------------------*\
  $CAREERS
\*------------------------------------*/
.careers__card {
  background: #f5f5f5;
  padding: 30px;
  margin-bottom: 20px;
  border-radius: 3px;
  -webkit-mask-image: -webkit-radial-gradient(white, black);
}
@media (min-width: 48em) {
  .careers__card {
    border-radius: 3px;
  }
}
.careers__card h3 {
  margin-top: 0;
  margin-bottom: 25px;
}
.careers__date, .careers__location {
  font-weight: 600;
}
.careers__date span, .careers__location span {
  font-weight: 400;
}
.careers__location {
  margin-bottom: 0;
}
.careers__body {
  margin-top: 20px;
}
.careers__body > *:first-child {
  margin-top: 0;
}
.careers__body > *:last-child {
  margin-bottom: 0;
}
.careers__body--toggle {
  background: transparent;
  position: relative;
  min-width: 140px;
  justify-content: flex-start;
}
.careers__body--toggle:hover, .careers__body--toggle:active, .careers__body--toggle:focus {
  background: transparent;
  text-decoration: underline;
}
.careers__body--toggle:before {
  content: "";
  height: 30px;
  width: 30px;
  border-radius: 3px;
  margin-right: 15px;
  display: block;
  /* Define the image first, then the gradient */
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100'%3E%3Crect y='40' fill='%23000' width='100' height='20'/%3E%3Crect x='40' y='0' fill='%23000' width='20' height='100'/%3E%3C/svg%3E") center center/12px 12px no-repeat, linear-gradient(to right, #fdc715 0%, #00C19F 50%, #22AAE2 100%);
}
.panel--open .careers__body--toggle:before {
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100'%3E%3Crect y='40' fill='%23000' width='100' height='20'/%3E%3C/svg%3E") center center/12px 12px no-repeat, linear-gradient(to right, #fdc715 0%, #00C19F 50%, #22AAE2 100%);
}
.careers__divider {
  margin-block: 25px;
  width: 100%;
}
.careers__divider hr {
  margin: 0;
}
.careers__buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 15px 20px;
  justify-content: space-between;
}
.careers__form {
  max-width: none;
}
.careers__form .btn {
  height: 50px;
  line-height: 1.2;
}
.careers__form .btn--upload .btn {
  min-width: 190px;
  width: auto;
}
@media (min-width: 48em) {
  .careers__card {
    margin-bottom: 30px;
  }
  .careers__details > div {
    display: flex;
    gap: 40px;
    justify-content: space-between;
  }
  .careers__date {
    margin-top: 7px;
    flex-shrink: 0;
  }
  .careers__form .btn--upload .btn {
    min-width: 200px;
  }
}
@media (min-width: 60em) {
  .careers__card {
    padding: 40px;
  }
  .careers__details > div {
    gap: 50px;
  }
  .careers__divider {
    margin-block: 35px;
  }
  .careers__date {
    margin-top: 11px;
  }
  .careers__form .btn--upload .btn {
    min-width: 210px;
  }
}

/*------------------------------------*\
  $TRUMPS
\*------------------------------------*/

/*# sourceMappingURL=/assets/application/application-1904197f.css.map */
