
/*------------------------------------*\
  $VARS
\*------------------------------------*/
@font-face {
  font-family: "Rubik";
  src: url(/fonts/rubik_compressed/rubik-light.woff2) format("woff2"), url(/fonts/rubik_compressed/rubik-light.woff) format("woff");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Rubik";
  src: url(/fonts/rubik_compressed/rubik-regular.woff2) format("woff2"), url(/fonts/rubik_compressed/rubik-regular.woff) format("woff");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Rubik";
  src: url(/fonts/rubik_compressed/rubik-medium.woff2) format("woff2"), url(/fonts/rubik_compressed/rubik-medium.woff) format("woff");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Rubik";
  src: url(/fonts/rubik_compressed/rubik-bold.woff2) format("woff2"), url(/fonts/rubik_compressed/rubik-bold.woff) format("woff");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Bebas Neue";
  src: url(/fonts/bebas_neue/bebas_neue-regular.woff2) format("woff2"), url(/fonts/bebas_neue/bebas_neue-regular.woff) format("woff");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
/*
Size adjusted local fallback font
=================================
- To minimise CLS when the self-hosted font file loads in
- Use this link to determine the "web-safe" local fallback font
- size adjustments to match whichever google font is in use.
- https://deploy-preview-15--upbeat-shirley-608546.netlify.app/perfect-ish-font-fallback
- Then assign a custom font-family name,
- And add it as the second font-family name in the `--font-stack`
*/
@font-face {
  font-family: "rubik-fallback-arial";
  size-adjust: 102%;
  ascent-override: 105%;
  src: local("Arial");
}
@font-face {
  font-family: "bebas-neue-fallback-impact";
  size-adjust: 77.6%;
  ascent-override: 105%;
  src: local("Impact");
}
/* // Set the font-family declarations ie. 'Open Sans' from @font-face rules to vars
// And define their font fallback stack by testing web-safe fallback fonts for similar x,y, and kerning values */
/*------------------------------------*\
  $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); }
 */
/**
* 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
 */
/*------------------------------------*\
  $MEDIA QUERIES
\*------------------------------------*/
/*------------------------------------*\
  $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;
}

a,
button,
input,
select,
textarea,
[role=button],
label {
  touch-action: manipulation;
}

/*------------------------------------*\
  $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((60px + 50px) * -1);
  display: block;
}
@media (min-width: 48em) {
  a[name]:not([href]).jump-link {
    top: calc((80px + 50px) * -1);
  }
}
@media (min-width: 67.5em) {
  a[name]:not([href]).jump-link {
    top: calc((90px + 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: 400;
  font-family: "Bebas Neue", "bebas-neue-fallback-impact", impact, arial narrow, arial, sans-serif;
  color: #222222;
  margin-bottom: 10px;
  line-height: 1.4;
}
h1.alt,
h2.alt,
h3.alt,
h4.alt,
h5.alt,
h6.alt {
  font-weight: 400;
  font-family: "Bebas Neue", "bebas-neue-fallback-impact", impact, arial narrow, arial, sans-serif;
}
h1 a,
h2 a,
h3 a,
h4 a,
h5 a,
h6 a {
  font-weight: 400;
  font-family: "Bebas Neue", "bebas-neue-fallback-impact", impact, arial narrow, arial, sans-serif;
  text-underline-offset: 0.1em;
  text-decoration-thickness: 0.07em;
}

h1 {
  font-size: 2.5rem;
  margin-top: 40px;
  margin-bottom: 20px;
}

h2 {
  font-size: 2.0625rem;
  margin-top: 20px;
  margin-bottom: 10px;
}

h3 {
  font-size: 1.6875rem;
}

h4 {
  font-size: 1.4375rem;
}

h5 {
  font-size: 1.3125rem;
}

h6 {
  font-size: 1.1875rem;
}

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: 500;
  font-family: "Rubik", "rubik-fallback-arial", trebuchet ms, helvetica, arial, 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: #222222;
  font-weight: 300;
  font-family: "Rubik", "rubik-fallback-arial", trebuchet ms, helvetica, arial, sans-serif;
  padding: 10px 0 0;
  text-align: right;
  z-index: 1;
  text-decoration: none;
}
.grid__no-gap figcaption {
  padding-left: 20px;
}

a {
  font-weight: 400;
  font-family: "Rubik", "rubik-fallback-arial", trebuchet ms, helvetica, arial, sans-serif;
  color: #0879a6;
}
a:hover, a:active, a:focus {
  color: #0879a6;
  text-decoration: none;
}

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

blockquote {
  position: relative;
  overflow: visible;
}
blockquote:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 40px;
  height: 25px;
  background-size: 40px 25px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 62.4'%3E%3Cpath fill='%2322AAE2' 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'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center center;
}
blockquote p {
  color: #222222;
  margin-top: 0;
  margin-bottom: 20px;
  max-width: 100%;
  font-size: 1.125rem;
  font-weight: 500;
  font-family: "Rubik", "rubik-fallback-arial", trebuchet ms, helvetica, arial, sans-serif;
}
blockquote p:first-child {
  padding-top: 40px;
}
blockquote p:last-child:not(:first-child) {
  margin-bottom: 0;
  font-size: 0.9375rem;
  font-weight: 400;
  font-family: "Rubik", "rubik-fallback-arial", trebuchet ms, helvetica, arial, sans-serif;
}
@media (min-width: 48em) {
  blockquote p {
    width: 85%;
  }
  blockquote p:first-child {
    padding-top: 50px;
  }
  .main-content-centered blockquote p {
    width: 100%;
  }
}
@media (min-width: 60em) {
  blockquote p {
    width: 100%;
  }
}

.intro {
  font-size: 1.1875rem;
  line-height: 1.4;
  color: #222222;
}

.snippet {
  padding-left: 20px;
  font-size: 1.125rem;
  line-height: 1.4;
  color: #222222;
  position: relative;
}
.snippet:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: #22AAE2;
}

@media (min-width: 37.5em) {
  h1 {
    margin-top: 45px;
    margin-bottom: 25px;
  }
  h2 {
    margin-top: 25px;
    margin-bottom: 15px;
  }
  h3 {
    margin-bottom: 15px;
  }
  p {
    margin-bottom: 15px;
  }
}
@media (min-width: 37.5em) {
  p,
  address {
    font-size: 1rem;
  }
}
@media (min-width: 48em) {
  h1 {
    font-size: 3.125rem;
  }
  h2 {
    font-size: 2.375rem;
  }
  h3 {
    font-size: 2rem;
  }
  h4 {
    font-size: 1.625rem;
  }
  h5 {
    font-size: 1.5rem;
  }
  h6 {
    font-size: 1.375rem;
  }
  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: 25px;
  }
}
@media (min-width: 60em) {
  h1 {
    margin-top: 50px;
    margin-bottom: 30px;
  }
  h2 {
    margin-top: 30px;
    margin-bottom: 20px;
  }
  h3 {
    margin-bottom: 20px;
  }
  p {
    margin-bottom: 20px;
  }
}
@media (min-width: 60em) {
  h1 {
    font-size: 3.75rem;
  }
  h2 {
    font-size: 2.625rem;
  }
  h3 {
    font-size: 2.1875rem;
  }
  h4 {
    font-size: 1.8125rem;
  }
  h5 {
    font-size: 1.625rem;
  }
  h6 {
    font-size: 1.5rem;
  }
  p,
  address {
    font-size: 1.0625rem;
  }
  blockquote p {
    font-size: 1.5625rem;
  }
  blockquote p:last-child:not(:first-child) {
    font-size: 1.125rem;
  }
  .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: 67.5em) {
  .snippet,
  blockquote {
    margin-bottom: 60px;
    margin-top: 60px;
  }
}

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

.intro {
  font-weight: 500;
  font-family: "Rubik", "rubik-fallback-arial", trebuchet ms, helvetica, arial, sans-serif;
}

.snippet {
  font-weight: 400;
  font-family: "Rubik", "rubik-fallback-arial", trebuchet ms, helvetica, arial, sans-serif;
}

.intro a,
.snippet a {
  font-weight: 500;
  font-family: "Rubik", "rubik-fallback-arial", trebuchet ms, helvetica, arial, sans-serif;
}

.snippet {
  margin-top: 25px;
  margin-bottom: 25px;
}
@media (min-width: 60em) {
  .snippet {
    margin-top: 30px;
    margin-bottom: 30px;
  }
}

h1 {
  margin-top: 30px;
}

.page__title .page__title--tag {
  display: inline-block;
  position: relative;
  padding: 10px 15px;
  margin-right: 7px;
  font-size: 1rem;
  line-height: 1;
  letter-spacing: 0;
  background-color: #f8f8f8;
}
@media (min-width: 60em) {
  .page__title .page__title--tag {
    padding: 10px 25px;
  }
}

::selection {
  background: #22AAE2;
  color: #ffffff;
}

.panel.panel--padding-top-grid-gap.panel--padding-bottom-grid-gap blockquote {
  margin-top: 5px;
  padding-bottom: 5px;
}
@media (min-width: 48em) {
  .panel.panel--padding-top-grid-gap.panel--padding-bottom-grid-gap blockquote {
    margin-top: 10px;
    padding-bottom: 10px;
  }
}

h1 strong, h1 b, h2 strong, h2 b, h3 strong, h3 b, h4 strong, h4 b, h5 strong, h5 b, h6 strong, h6 b {
  font-weight: 400;
  font-family: "Bebas Neue", "bebas-neue-fallback-impact", impact, arial narrow, arial, sans-serif;
}

h1, h2, h3 {
  line-height: 1;
}

h2, h3, h4 {
  margin-top: 2rem;
}

h2, h3 {
  margin-bottom: 1.25rem;
}

h4 {
  margin-bottom: 0.75rem;
  line-height: 1.1;
}

h5 {
  line-height: 1.2;
}

h6 {
  line-height: 1.3;
}

.box-decoration-title {
  --box-padding-block: 0.12em;
  --box-padding-inline: 0.25em;
  color: var(--color-primary, #22AAE2);
  padding-block: calc(var(--box-padding-block) + var(--box-padding-block) / 4);
  padding-inline-end: var(--box-padding-inline);
}

.box-decoration-title > span {
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
  background: var(--grey-1000, #000000);
  padding: var(--box-padding-block) var(--box-padding-inline);
}

.box-decoration-title > span > span {
  position: relative;
}

.box-decoration-title a {
  color: var(--color-primary, #22AAE2);
}

.box-decoration-title strong {
  color: var(--white, #ffffff);
}

.box-decoration-title ::selection {
  background: #22AAE2;
  color: #101010;
}

.image-caption .box-decoration-title {
  right: calc(var(--box-padding-inline) * -1);
  position: relative;
  line-height: 1;
}

@media (min-width: 37.5em) {
  h2,
  h3,
  h4 {
    margin-top: 2.25rem;
  }
}
@media (min-width: 48em) {
  h1 {
    margin-top: 50px;
  }
  h2,
  h3 {
    margin-bottom: 1.25rem;
  }
  h4 {
    margin-bottom: 1rem;
  }
}
@media (min-width: 60em) {
  h1 {
    margin-top: 56px;
  }
  h2,
  h3 {
    margin-top: 2.5rem;
    margin-bottom: 1.5rem;
  }
}
/*------------------------------------*\
  $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;
}

/**
 * Google Maps breaks if `max-width: 100%` acts upon it; use their selector
 * to remove the effects.
 *
 * If a `width` and/or `height` attribute have been explicitly defined,
 * let's not make the image fluid.
 */
.gm-style img,
img[width],
img[height] {
  max-width: none;
}

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

.image-caption {
  width: 100%;
  padding-top: 15px;
  text-align: right;
  z-index: 1;
}
.image-caption,
.image-caption p {
  font-size: 1.0625rem;
  font-weight: 400;
  font-family: "Bebas Neue", "bebas-neue-fallback-impact", impact, arial narrow, arial, sans-serif;
}
.image-caption > * {
  margin: 0;
}
@media (min-width: 48em) {
  .image-caption,
  .image-caption p {
    font-size: 1.125rem;
  }
}
@media (min-width: 60em) {
  .image-caption,
  .image-caption p {
    font-size: 1.1875rem;
  }
}

figure a {
  display: block;
}

picture {
  display: block;
}

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

dl {
  margin-bottom: 20px;
}

dt {
  font-weight: 500;
  font-family: "Rubik", "rubik-fallback-arial", trebuchet ms, helvetica, arial, 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;
}
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: 25px;
  }
  ol li:before {
    left: calc(25px * -1);
  }
}

/*------------------------------------*\
  $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;
  /* FIREFOX */
}
@-moz-document url-prefix() {
  table {
    scrollbar-color: #bcbcbc #f5f5f5;
    scrollbar-width: thin;
  }
}
table {
  scrollbar-face-color: #bcbcbc;
  scrollbar-track-color: #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 0;
  text-align: left;
  font-weight: 300;
  font-family: "Rubik", "rubik-fallback-arial", trebuchet ms, helvetica, arial, sans-serif;
  font-size: 0.9375rem;
  line-height: 1.5;
}

th {
  font-weight: 400;
  font-family: "Rubik", "rubik-fallback-arial", trebuchet ms, helvetica, arial, sans-serif;
  background-color: #ffffff;
  color: #22AAE2;
}

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

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

tr {
  border: 1px solid transparent;
}

th {
  text-transform: none;
  border: 1px solid #ddd;
}

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

[data-js-table-scroll-fade=active]: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) {
  [data-js-table-scroll-fade=active]:after {
    width: 100px;
  }
}
[data-js-table-scroll-fade=active][data-state=no-fadeout]:after {
  opacity: 0;
}

/*------------------------------------*\
  $TABLES-BRAND
\*------------------------------------*/
th,
td {
  color: #222222;
  padding: 20px 30px 25px 20px;
}
@media (min-width: 60em) {
  th,
  td {
    padding-left: 30px;
  }
}
th:nth-child(2n+2),
td:nth-child(2n+2) {
  background-color: #f5f5f5;
}
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 {
  font-weight: 500;
  font-family: "Rubik", "rubik-fallback-arial", trebuchet ms, helvetica, arial, sans-serif;
  border: none;
  border-bottom: 1px solid #ddd;
}

td {
  border-bottom: 1px solid #ddd;
}

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

@media (min-width: 37.5em) {
  th {
    font-size: 1rem;
  }
}
@media (min-width: 48em) {
  th {
    font-size: 1.125rem;
  }
  td {
    font-size: 1rem;
  }
}
/*------------------------------------*\
  $FORMS
\*------------------------------------*/
form {
  max-width: 900px;
}
.main-content-centered form {
  margin-left: auto;
  margin-right: auto;
}

fieldset {
  border: 0;
}

legend {
  margin-bottom: 20px;
  font-weight: 400;
  font-family: "Rubik", "rubik-fallback-arial", trebuchet ms, helvetica, arial, sans-serif;
  font-size: 1.125rem;
  color: #222222;
}

label,
.label {
  display: inline-block;
  margin-bottom: 5px;
  cursor: pointer;
  color: #222222;
}

input {
  display: block;
}

/**
 * 1. Remove the default browser styling from elements
 */
input,
select,
textarea {
  padding: 10px;
  width: 100%;
  font-size: 1rem;
  color: #222222;
  background-color: #ededed;
  border: 1px solid #bcbcbc;
  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 {
  height: 150px;
}

/**
 * Add an arrow to the select menu since we removed
 * the default one with `appearance: none;`
 */
select {
  background-image: url(/background_images/application/template/select-arrow-down.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 */
}

/**
 * `.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 #bcbcbc;
  background: transparent;
}
.field:last-child hr {
  margin-bottom: 0;
}
.field .file-formats {
  margin-bottom: 15px;
}

@media (min-width: 37.5em) {
  .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;
  }
}
/**
 * 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: #222222;
}

/**
 * `.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;
}
.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: #ededed;
  border: 1px solid #bcbcbc;
}
.field--checkbox .checkbox__indicator:after {
  position: absolute;
  display: none;
  content: "";
  top: 3px;
  left: 7px;
  width: 3px;
  height: 8px;
  transform: rotate(45deg);
  border: solid #22AAE2;
  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 {
  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: 2px;
}

/**
* `.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 {
    max-width: 270px;
  }
}

::placeholder { /* Chrome, Firefox, Opera, Safari 10.1+ */
  color: #222222;
  opacity: 0.6; /* Firefox */
}

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

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

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

.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: 300;
  font-family: "Rubik", "rubik-fallback-arial", trebuchet ms, helvetica, arial, sans-serif;
  font-size: 1rem;
}

input,
select,
textarea {
  font-weight: 300;
  font-family: "Rubik", "rubik-fallback-arial", trebuchet ms, helvetica, arial, sans-serif;
}

select {
  padding-left: 20px;
  padding-right: 40px;
  background-position: right 20px center;
  background-size: 13px 8px;
  font-weight: 500;
  font-family: "Rubik", "rubik-fallback-arial", trebuchet ms, helvetica, arial, sans-serif;
}
@media (min-width: 48em) {
  select {
    background-size: 15px 9px;
  }
}

/**
* `.field--value` describes contents of a field.
*/
.field--value {
  font-weight: 400;
  font-family: "Rubik", "rubik-fallback-arial", trebuchet ms, helvetica, arial, sans-serif;
  font-size: 1.125rem;
}

@media (min-width: 48em) {
  label,
  .label {
    font-size: 1rem;
  }
}
@media (min-width: 60em) {
  label,
  .label {
    font-size: 1.0625rem;
  }
}
/*------------------------------------*\
  $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: #434343;
  background-color: #f5f5f5;
  display: flex;
  flex-direction: column;
  overflow-anchor: none;
}

body {
  color: #434343;
  font-weight: 300;
  font-family: "Rubik", "rubik-fallback-arial", trebuchet ms, helvetica, arial, sans-serif;
  font-size: 1rem;
  width: 100%;
  background-color: #ffffff;
  max-width: 20000px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  min-height: 100vh;
  flex-direction: column;
  flex: 1 1 auto;
  overflow: hidden;
  position: relative;
}
@media (max-width: 67.49em) {
  .has-primary-nav body {
    position: fixed;
  }
}

.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: 30px;
    margin-bottom: 30px;
  }
}
@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 * 30px) / 3);
    margin-right: 30px;
  }
  .layout--cards-123 .post:nth-child(2n+2) {
    margin-right: 30px;
  }
  .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 * 30px) / 3);
    margin-right: 30px;
  }
  .layout--cards-223 .post:nth-child(2n+2) {
    margin-right: 30px;
  }
  .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: 400;
  font-family: "Rubik", "rubik-fallback-arial", trebuchet ms, helvetica, arial, sans-serif;
}
.nav__primary {
  margin-right: 0;
  margin-left: 0;
  clear: both;
  width: 100%;
}
.nav__primary > ul {
  padding-top: 22px;
  background-color: #22AAE2;
}
.nav__primary a {
  display: block;
  padding-top: 6px;
  padding-bottom: 6px;
  padding-left: 20px;
  padding-right: calc(55px + 20px);
  background-color: #22AAE2;
  color: #222222;
  font-size: 1rem;
  line-height: 1.5;
}
.nav__primary a:hover, .nav__primary a:active, .nav__primary a:focus {
  background-color: #22AAE2;
  color: #222222;
}
.nav__utility {
  display: none;
  margin-right: 0;
  margin-left: 0;
  width: 100%;
}
.nav__utility--mobile {
  display: block;
}
.nav__utility > ul {
  padding-top: 18px;
  padding-bottom: 18px;
  background-color: #22AAE2;
}
.nav__utility a {
  color: #222222;
  padding-left: 20px;
  padding-right: 20px;
  padding-top: 8px;
  padding-bottom: 8px;
  font-size: 0.9375rem;
  line-height: 1.5;
}
.nav__utility a:hover, .nav__utility a:active, .nav__utility a:focus {
  color: #222222;
}
.nav-ul-level2 {
  display: none;
}
@media (min-width: 1250em) {
  [aria-expanded=true] ~ .nav-ul-level2 {
    display: block;
  }
}
.nav-ul-level3 {
  display: block;
}
@media (min-width: 1250em) {
  [aria-expanded=true] ~ .nav-ul-level3 {
    display: block;
  }
}
.nav-li-level1 [aria-expanded=true] ~ .nav-ul-level2 {
  display: block;
}
.nav-li-level1 [aria-expanded=false] ~ .nav-ul-level2 {
  display: none;
}
@media (max-width: 1249.99em) {
  .nav-li-level1 [aria-expanded=true] .nav-ul-level3 {
    display: block;
  }
}
.nav-li-level2 > a {
  padding-left: calc(20px + 10px);
  font-size: 0.875rem;
}
.nav-li-level3 > a {
  padding-left: calc(20px + 10px * 2);
  font-size: 0.8125rem;
}
@media (min-width: 48em) {
  .nav__primary a {
    padding-left: 30px;
  }
  .nav__utility a {
    padding-left: 30px;
  }
  .nav-li-level2 > a {
    padding-left: calc(30px + 10px);
  }
  .nav-li-level3 > a {
    padding-left: calc(30px + 10px * 2);
  }
}
@media (min-width: 1250em) {
  .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: 10px;
    flex-shrink: 0;
    width: auto;
  }
  .nav__primary > ul {
    padding-top: 0;
    background-color: #f5f5f5;
  }
  .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;
    color: #222222;
    font-size: 1rem;
    background-color: #e2e2e2;
    overflow: hidden;
  }
  .nav__primary li > a:hover, .nav__primary li > a:active, .nav__primary li > a:focus {
    background-color: #cfcfd0;
  }
  .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: #cfcfd0;
  }
  .nav__primary li:hover > a, .nav__primary li:active > a, .nav__primary li:focus > a {
    color: #22AAE2;
  }
  .nav__utility {
    display: flex;
    justify-content: flex-end;
    margin-right: 0;
    margin-left: 0;
    width: auto;
  }
  .nav__utility--mobile {
    display: none;
  }
  .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;
    font-size: 1rem;
    color: #22AAE2;
  }
  .nav__utility li > a:hover, .nav__utility li > a:active, .nav__utility li > a:focus {
    color: rgb(27.202, 154.77, 207.298);
  }
  .nav-ul-level2 {
    display: none;
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    width: 300px;
    z-index: 16;
    height: auto;
    max-height: calc(90vh - 140px);
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }
  .edge .nav-ul-level2 {
    overflow-y: scroll;
  }
  .nav-ul-level2 li {
    margin: 0;
    width: 100%;
  }
  .nav-ul-level2 {
    /* FIREFOX */
  }
  @-moz-document url-prefix() {
    .nav-ul-level2 {
      scrollbar-color: #bcbcbc #f5f5f5;
      scrollbar-width: thin;
    }
  }
  .nav-ul-level2 {
    scrollbar-face-color: #bcbcbc;
    scrollbar-track-color: #f5f5f5;
  }
  .nav-ul-level2 .nav-li-level2 > a {
    font-size: 1rem;
  }
  .nav-ul-level3 {
    display: none;
  }
  .nav-ul-level3 .nav-li-level3:hover > a, .nav-ul-level3 .nav-li-level3:active > a, .nav-ul-level3 .nav-li-level3:focus > a {
    color: #22AAE2;
    background-color: #cfcfd0;
  }
  .nav-ul-level3 .nav-li-level3 > a {
    color: #222222;
    background-color: #e2e2e2;
    font-size: 0.875rem;
    padding-left: calc(30px + 20px);
  }
}

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

@media (max-width: 1249.99em) {
  .hide-nav-children .nav__slide-in .nav__primary,
  .hide-nav-children .nav__slide-in .nav__primary > ul,
  .hide-nav-children .nav__slide-in .nav__utility--mobile,
  .hide-nav-children .nav__slide-in .page-header__search,
  .hide-nav-children .nav__slide-in .page-header__enquiry,
  .hide-nav-children .nav__slide-in .page-header__cta {
    display: none;
  }
}

/*------------------------------------*\
  $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: 1249.99em) {
  .nav__primary a, .nav__utility a {
    padding: 0;
  }
  .nav__primary a:after {
    background-color: #222222;
  }
  .nav__primary .nav-li-level1 {
    padding-left: 20px;
    padding-right: calc(55px + 5px);
    padding-top: 6px;
    padding-bottom: 6px;
    line-height: 1.5;
  }
  .nav__primary .nav-li-level2 {
    padding-top: calc(6px - 1px);
    padding-bottom: calc(6px - 1px);
  }
  .nav__primary .nav-li-level3 {
    padding-top: calc(6px - 4px);
    padding-bottom: calc(6px - 4px);
  }
  .nav__utility li {
    padding-left: 20px;
    padding-right: 20px;
    padding-top: 8px;
    padding-bottom: 8px;
    line-height: 1;
  }
  .nav__utility a {
    padding: 0;
    line-height: 1;
  }
  .nav__utility a:after {
    background-color: #222222;
    bottom: -3px;
  }
  .nav .nav-ul-level2,
  .nav .nav-ul-level3 {
    margin-top: 8px;
  }
  .nav-li-level2, .nav-li-level3 {
    padding-left: 10px;
  }
  .nav-li-level2 > a, .nav-li-level3 > a {
    padding: 0;
  }
  .nav-li-level1 {
    padding-top: 6px;
    padding-bottom: 6px;
    padding-left: 20px;
    padding-right: calc(55px + 20px);
  }
}
@media (min-width: 48em) and (max-width: 1249.99em) {
  .nav__primary .nav-li-level1 {
    padding-left: 30px;
  }
  .nav__utility li {
    padding-left: 30px;
    padding-top: 6px;
    padding-bottom: 6px;
  }
  .nav__utility li a:after {
    bottom: 0;
  }
  .nav-li-level2, .nav-li-level3 {
    padding-left: 10px;
  }
}
@media (min-width: 60em) and (max-width: 1249.99em) {
  .nav__primary .nav-li-level1 {
    padding-top: 10px;
    padding-bottom: 10px;
  }
  .nav__utitlity li {
    padding-top: 10px;
    padding-bottom: 10px;
  }
}
@media (min-width: 1250em) {
  .nav__primary a:after {
    background-color: #22AAE2;
  }
  .nav__primary li {
    background-color: #f5f5f5;
  }
  .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:hover > a, .nav__primary li:active > a, .nav__primary li:focus > a {
    color: #222222;
  }
  .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;
    color: #22AAE2;
  }
  .nav__primary .nav-li-level1 > a {
    display: block;
  }
  .nav__utility a:after {
    background-color: rgb(27.202, 154.77, 207.298);
  }
  .nav-ul-level2 li {
    background-color: #e2e2e2;
  }
  .nav-ul-level2 li:hover, .nav-ul-level2 li:active, .nav-ul-level2 li:focus {
    background-color: #e2e2e2;
  }
  .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;
    color: #222222;
  }
  .nav-ul-level3 .nav-li-level3 > a {
    background-color: transparent;
  }
  .nav-ul-level3 .nav-li-level3 > a:hover, .nav-ul-level3 .nav-li-level3 > a:active, .nav-ul-level3 .nav-li-level3 > a:focus {
    color: #22AAE2;
  }
  .nav .nav-ul-level1 {
    margin-top: 7px;
  }
  .nav .nav-ul-level3 {
    margin-top: 3px;
  }
  .nav-li-level1 > a:after {
    display: none;
  }
  .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__primary > ul {
  padding-bottom: 17px;
}
.nav__utility {
  position: relative;
}
.nav__utility:before, .nav__utility:after {
  content: "";
  height: 1px;
  position: absolute;
  top: 0;
  left: 20px;
  right: 20px;
  background: rgba(255, 255, 255, 0.6);
}
.nav__utility:after {
  top: auto;
  bottom: 0;
}
.nav__utility a {
  font-weight: 500;
  font-family: "Rubik", "rubik-fallback-arial", trebuchet ms, helvetica, arial, sans-serif;
  font-size: 1rem;
}
.nav-li-level1 > a {
  font-weight: 500;
  font-family: "Rubik", "rubik-fallback-arial", trebuchet ms, helvetica, arial, sans-serif;
}
.nav-li-level2 a, .nav-li-level3 a {
  font-weight: 400;
  font-family: "Rubik", "rubik-fallback-arial", trebuchet ms, helvetica, arial, sans-serif;
}
@media (min-width: 48em) {
  .nav__primary a, .nav__utility a {
    font-size: 1.0625rem;
    line-height: 1.5;
  }
  .nav__utility:before, .nav__utility:after {
    left: 30px;
    right: 30px;
  }
  .nav-li-level2, .nav-li-level3 {
    padding-left: 20px;
  }
  .nav-li-level2 > a, .nav-li-level3 > a {
    font-size: 0.9375rem;
  }
}
@media (min-width: 60em) {
  .nav__primary a, .nav__utility a {
    font-size: 1.125rem;
  }
  .nav__primary > ul {
    padding-bottom: 20px;
  }
  .nav-li-level2 > a, .nav-li-level3 > a {
    font-size: 1rem;
  }
}
@media (min-width: 1250em) {
  .nav__primary > ul {
    padding-right: 30px;
    padding-left: 30px;
  }
  .nav-li-level1.has-subnav > a[aria-expanded=true]:before {
    content: "";
    position: absolute;
    bottom: -25px;
    left: 50%;
    height: 20px;
    width: 20px;
    transform: translateY(-50%) rotate(45deg);
    background: #e2e2e2;
  }
  .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%;
  }
}

@media (min-width: 60em) {
  .subnav-toggle-button {
    height: 47px;
  }
}

/*------------------------------------*\
  $HEADER
\*------------------------------------*/
.page-header {
  width: 100%;
  position: relative;
  margin: 0 auto;
  max-width: 20000px;
}
.page-header__upper, .page-header__lower {
  display: block;
}
.page-header__upper {
  background: #000000;
}
.page-header__lower {
  background: transparent;
  font-size: 0;
}
.page-header__lower-wrapper {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: wrap;
  height: 100%;
  height: 70px;
}
.page-header__logo {
  display: inline-block;
  margin-left: 20px;
  margin-right: auto;
  width: calc(100% - 2 * 20px - (50px + 20px));
  max-width: 120px;
}
.page-header__logo svg,
.page-header__logo img {
  display: block;
  width: 100%;
  max-width: 120px;
  height: 33px;
}
.page-header__logo,
.page-header__logo svg,
.page-header__logo img {
  transition: all 0.3s ease-in-out;
}
.page-header__phone {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  text-decoration: none;
  margin-right: 10px;
}
.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", "rubik-fallback-arial", trebuchet ms, helvetica, arial, sans-serif;
  display: none;
  font-size: 1.0625rem;
  position: relative;
  line-height: 1.5;
  top: -4px;
  word-break: break-word;
  word-wrap: break-word;
  color: #FBFBFB;
}
.page-header .phone__number:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  height: 1px;
  background-color: #FBFBFB;
  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__contact {
  display: none;
}
.page-header__menu {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 50px;
  width: 50px;
  background-color: transparent;
  position: relative;
  margin-right: calc(20px - 10px);
}
.page-header__menu svg {
  height: 32px;
  width: 32px;
  fill: #ffffff;
}
.page-header__menu .menu-toggle__close {
  height: 20px;
  width: 20px;
}
.page-header__menu[aria-expanded=false] .menu-toggle__open {
  display: inline-block;
}
.page-header__menu[aria-expanded=false] .menu-toggle__close {
  display: none;
}
.page-header__menu[aria-expanded=true] .menu-toggle__open {
  display: none;
}
.page-header__menu[aria-expanded=true] .menu-toggle__close {
  display: inline-block;
}
.page-header__menu:hover svg, .page-header__menu:active svg, .page-header__menu:focus svg {
  fill: #ffffff;
}
.page-header__menu:hover:before, .page-header__menu:active:before, .page-header__menu:focus:before {
  background-color: rgb(27.202, 154.77, 207.298);
}
.page-header__enquiry {
  position: relative;
  padding: 20px;
  background-color: #22AAE2;
  width: 100%;
}
.page-header__search[aria-expanded=false] + .page-header__enquiry {
  padding-top: 0;
}
@media (max-width: 1249.99em) {
  .page-header__search {
    position: relative;
    width: 100%;
  }
}
.page-header__search--upper {
  padding: 12px 20px 18px;
  background: #22AAE2;
}
.page-header__search--lower {
  background: #ddd;
  padding: 25px 20px 30px;
  z-index: 17;
}
.page-header__search--lower p {
  margin-bottom: 10px;
  font-weight: 500;
  font-family: "Rubik", "rubik-fallback-arial", trebuchet ms, helvetica, arial, sans-serif;
  color: #222222;
}
.page-header__search--lower button {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  background-color: #22AAE2;
  border: 0;
  height: 50px;
  width: 50px;
  cursor: pointer;
  display: flex;
}
.page-header__search--lower button svg {
  margin: auto;
  fill: #ffffff;
}
.page-header__search[aria-expanded=false] .page-header__search--lower {
  display: none;
}
.page-header__search svg {
  fill: #22AAE2;
  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;
}
.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 (min-width: 48em) {
  .page-header__upper, .page-header__enquiry {
    padding-left: 30px;
    padding-right: 30px;
  }
  .page-header__lower-wrapper {
    height: 110px;
  }
  .page-header__logo {
    margin-left: 30px;
    max-width: 160px;
  }
  .page-header__logo svg,
  .page-header__logo img {
    max-width: 160px;
    height: 46px;
  }
  .page-header__phone {
    padding-top: 7px;
    margin-right: 30px;
  }
  .page-header .phone__number {
    font-weight: 400;
    font-family: "Bebas Neue", "bebas-neue-fallback-impact", impact, arial narrow, arial, sans-serif;
    display: inline-block;
    font-size: 1.375rem;
  }
  .page-header .phone__icon {
    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;
  }
}
@media (min-width: 67.5em) {
  .page-header {
    position: fixed;
    left: 0;
    top: 0;
  }
  .page-header__lower-wrapper {
    height: 140px;
  }
  .page-header__logo {
    max-width: 210px;
    flex-shrink: 1;
    flex-grow: 1;
    flex-basis: 210px;
  }
  .page-header__logo svg,
  .page-header__logo img {
    max-width: 210px;
    height: 60px;
  }
  .page-header .phone__number {
    font-size: 1.5625rem;
  }
  .page-header__contact {
    display: block;
    margin-right: 25px;
  }
}
@media (min-width: 1250em) {
  .page-header__upper {
    background: #000000;
  }
  .page-header__upper .page-header__phone {
    display: flex;
  }
  .page-header__lower {
    background: #000000;
    padding-left: 30px;
    padding-right: 30px;
  }
  .page-header__lower-wrapper {
    display: flex;
    flex-wrap: nowrap;
    position: relative;
  }
  .page-header__lower .page-header__phone {
    display: none;
  }
  .page-header__logo {
    margin-left: 0;
    margin-bottom: 0;
    max-height: 50px;
    align-self: center;
    margin-right: auto;
    flex-shrink: 1;
    flex-grow: 1;
    flex-basis: 200px;
  }
  .page-header .page-header__phone {
    padding-top: 0;
    padding-bottom: 0;
    padding-right: 0;
    margin-right: 0;
  }
  .page-header .page-header__phone:after {
    display: none;
  }
  .page-header .page-header__phone:hover .phone__number, .page-header .page-header__phone:active .phone__number, .page-header .page-header__phone:focus .phone__number {
    color: rgb(27.202, 154.77, 207.298);
  }
  .page-header .phone__number {
    top: 0;
    color: #22AAE2;
    font-size: 1.125rem;
  }
  .page-header .phone__number:after {
    background-color: #22AAE2;
  }
  .page-header .phone__number:hover:after, .page-header .phone__number:active:after, .page-header .phone__number:focus:after {
    background-color: rgb(27.202, 154.77, 207.298);
  }
  .page-header__menu {
    display: none;
  }
  .page-header__enquiry {
    display: inline-block;
    width: auto;
    padding: 0;
    background-color: transparent;
    flex-shrink: 0;
  }
  .page-header__enquiry > .btn {
    height: 100%;
    display: flex;
    text-align: center;
  }
  .page-header__search {
    display: inline-block;
    margin-right: 10px;
  }
  .page-header__search--lower {
    position: absolute;
    top: 50px;
    top: calc((110px - 50px) / 2 + 50px);
    right: 0;
    width: 50%;
    padding-left: 20px;
    padding-right: 20px;
  }
  .page-header__search--upper {
    padding: 0;
  }
  .page-header__search .search__btn {
    left: inherit;
    height: 50px;
    width: 50px;
  }
  .page-header__search input {
    width: calc(100% - 60px);
    height: 60px;
  }
  .page-header__search button {
    height: 60px;
    width: 60px;
  }
}

/*------------------------------------*\
  $HEADER-STICKY
\*------------------------------------*/
@media (min-width: 67.5em) {
  .has-sticky-nav .page-header__upper {
    display: none;
  }
  .has-sticky-nav .page-header__lower-wrapper {
    height: 90px;
    display: flex;
    align-items: center;
  }
}
@media (min-width: 67.5em) {
  .is-sticky.page-content {
    padding-top: 140px;
  }
  .is-sticky.page-header:after {
    opacity: 1;
  }
}

@keyframes site-header-slide-down {
  from {
    transform: translateY(-140px);
  }
  to {
    transform: translateY(0);
  }
}
/*------------------------------------*\
  $HEADER-STICKY-MOBILE-CTA
\*------------------------------------*/
.page-header__sticky-cta {
  display: flex;
  align-items: center;
  background: #000000;
  width: 100%;
  height: 60px;
  position: fixed;
  top: calc(60px * -1);
  left: 0;
  transition: all 0.3s ease-in-out;
  z-index: 15;
  box-shadow: 0px 5px 7px 0 rgba(0, 0, 0, 0.3);
  will-change: transform;
}
.hide-mobile-sticky-cta-children .page-header__sticky-cta .page-header__logo,
.hide-mobile-sticky-cta-children .page-header__sticky-cta .page-header__phone,
.hide-mobile-sticky-cta-children .page-header__sticky-cta .page-header__enquiry {
  display: none;
}
.page-header__sticky-cta .page-header__logo {
  display: none;
}
.page-header__sticky-cta .page-header__phone {
  margin-left: 0;
  margin-right: 55px;
  flex-shrink: 0;
}
.page-header__sticky-cta .page-header__phone:hover .phone__icon, .page-header__sticky-cta .page-header__phone:active .phone__icon, .page-header__sticky-cta .page-header__phone:focus .phone__icon {
  margin-left: 20px;
  position: relative;
}
.page-header__sticky-cta .page-header__phone:hover .phone__icon:before, .page-header__sticky-cta .page-header__phone:active .phone__icon:before, .page-header__sticky-cta .page-header__phone:focus .phone__icon:before {
  background-color: rgb(27.202, 154.77, 207.298);
}
.page-header__sticky-cta .phone__icon {
  margin-left: 20px;
  position: relative;
}
.page-header__sticky-cta .phone__icon:before {
  content: "";
  position: absolute;
  height: 40px;
  width: 40px;
  top: 5px;
  left: 5px;
  background-color: #22AAE2;
  transition: background 0.3s ease-in-out;
}
.page-header__sticky-cta .phone__icon svg {
  fill: #ffffff;
  z-index: 1;
  height: 16px;
  width: 16px;
}
.page-header__sticky-cta .phone__number {
  display: none;
}
.page-header__sticky-cta .btn {
  width: 100%;
  max-width: 400px;
  height: 40px;
  margin: 0;
}
.page-header__sticky-cta .page-header__enquiry {
  display: flex;
  justify-content: flex-end;
  padding: 0;
  background: transparent;
  width: auto;
  flex-grow: 1;
  margin-right: 20px;
}
.is-sticky .page-header__sticky-cta {
  transform: translateY(60px);
}
.is-sticky .page-header__sticky-cta .page-header__enquiry {
  display: flex;
}
.enquiry-form .page-header__sticky-cta {
  display: none;
}
@media (min-width: 48em) {
  .page-header__sticky-cta {
    height: 80px;
    top: calc(80px * -1);
  }
  .page-header__sticky-cta .page-header__logo {
    display: block;
  }
  .page-header__sticky-cta .page-header__enquiry {
    width: 225px;
    margin-right: 30px;
    flex-grow: 0;
  }
  .is-sticky .page-header__sticky-cta {
    transform: translateY(80px);
  }
  .page-header__sticky-cta .page-header__phone {
    margin-right: 30px;
  }
  .page-header__sticky-cta .phone__icon {
    display: none;
  }
  .page-header__sticky-cta .phone__number {
    display: block;
  }
  .page-header__sticky-cta .btn {
    height: 50px;
  }
}
@media (min-width: 67.5em) {
  .page-header__sticky-cta {
    display: none;
  }
}

/*------------------------------------*\
  $HEADER-BRAND
\*------------------------------------*/
.page-header {
  z-index: 19;
}
.page-header:before, .page-header:after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  transition: opacity 0.2s ease-in;
  z-index: -1;
}
.page-header:before {
  background: #000000;
  opacity: 1;
}
.page-header:after {
  box-shadow: 0 5px 7px -4px rgba(0, 0, 0, 0.5);
  opacity: 0;
}
.page-header__logo svg {
  fill: #ffffff;
}
.page-header__menu svg {
  z-index: 1;
}
.page-header__account a {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-left: 30px;
}
.page-header__account a:before {
  content: "";
  position: absolute;
  left: -30px;
  margin-right: 10px;
  width: 17px;
  height: 26px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 141'%3E%3Cg fill='%23FBFBFB'%3E%3Cpath d='M50 0C31 0 15.7 15.4 15.7 34.3c0 19 15.4 34.3 34.3 34.3s34.3-15.4 34.3-34.3S69 0 50 0zm0 58.8c-13.5 0-24.4-10.9-24.4-24.4C25.6 20.8 36.5 9.9 50 9.9c13.5 0 24.4 10.9 24.4 24.4 0 13.5-10.9 24.5-24.4 24.5zM50 140.8c-12.6.2-25.1-3.2-35.8-9.9C5.8 126 .4 117.1 0 107.4c.4-9.8 5.8-18.7 14.2-23.6 22.1-13.1 49.5-13.1 71.6 0 8.4 4.9 13.8 13.7 14.2 23.4-.4 9.8-5.8 18.7-14.2 23.6-10.7 6.7-23.2 10.2-35.8 10zM19.7 92.1c-5.6 3.1-9.3 8.9-9.8 15.3.5 6.4 4.2 12.1 9.8 15.2 18.7 11 41.9 11 60.6 0 5.6-3.1 9.3-8.9 9.8-15.3-.5-6.4-4.2-12.1-9.8-15.2-18.7-10.9-41.9-10.9-60.6 0z'/%3E%3C/g%3E%3C/svg%3E");
  background-size: 17px 26px;
  background-repeat: no-repeat;
  background-position: center center;
}
.page-header__lower-wrapper > .page-header__account {
  display: none;
}
.page-header__lower-wrapper > .page-header__account span {
  position: absolute;
  overflow: hidden;
  margin: -1px;
  padding: 0;
  height: 1px;
  width: 1px;
  clip: rect(0 0 0 0);
  border: 0;
}
.page-header__cta {
  padding: 20px 20px 0;
}
.page-header__cta .cta-widget__link {
  padding: 20px 30px;
  justify-content: flex-start;
  width: 100%;
}
.page-header__cta .cta-widget__link:after {
  bottom: 25px;
  right: 18px;
  width: 30px;
  height: 7px;
  background-size: 30px 7px;
}
@media (min-width: 48em) {
  .page-header__cta {
    padding: 30px 30px 0;
  }
  .page-header__cta .cta-widget__link {
    padding: 30px;
  }
  .page-header__cta .cta-widget__link:after {
    bottom: 26px;
  }
  .page-header__cta .cta-widget__link:after {
    bottom: 34px;
    right: 25px;
    width: 42px;
    height: 11px;
    background-size: 42px 11px;
  }
}
@media (min-width: 60em) {
  .page-header__cta {
    padding-top: 35px;
  }
  .page-header__cta .cta-widget__link {
    padding-left: 35px;
  }
  .page-header__cta .cta-widget__link:after {
    bottom: 36px;
    right: 35px;
  }
  .page-header__enquiry {
    padding-top: 25px;
  }
}
@media (min-width: 67.5em) {
  .page-header__lower {
    height: auto;
  }
  .page-header__lower-wrapper {
    height: 140px;
    transition: all 0.3s ease-in-out;
    will-change: transform;
  }
  .has-sticky-nav .page-header__lower-wrapper {
    height: 90px;
  }
  .page-header__account {
    margin-right: 20px;
  }
  .page-header__lower-wrapper > .page-header__account a {
    margin: 0;
    height: 40px;
    width: 40px;
  }
  .page-header__lower-wrapper > .page-header__account a:before {
    left: auto;
    position: relative;
    margin: 0;
  }
  .page-header__lower-wrapper > .page-header__account span {
    position: absolute;
    overflow: hidden;
    margin: -1px;
    padding: 0;
    height: 1px;
    width: 1px;
    clip: rect(0 0 0 0);
    border: 0;
  }
  .page-header__lower-wrapper > .page-header__account {
    display: block;
  }
}
@media (min-width: 75em) {
  .page-header__contact {
    margin-right: 35px;
  }
  .page-header__contact .btn {
    padding: 0 50px;
  }
  .page-header__account, .page-header__phone {
    margin-right: 30px;
  }
}
@media (min-width: 90em) {
  .page-header__logo {
    margin-left: 90px;
  }
  .page-header__menu {
    margin-right: 95px;
  }
}

/*------------------------------------*\
  $NAVIGATION-SLIDE-IN
\*------------------------------------*/
@media (max-width: 1249.99em) {
  .nav__slide-in {
    position: absolute;
    left: 100%;
    width: 340px;
    max-width: 80%;
    top: 70px;
    height: calc(100vh - 70px);
    z-index: 19;
    transition: all 0.3s ease-in-out;
    transform: translate3d(0, 0, 0);
    border-top-left-radius: 0px;
    overflow: hidden;
    will-change: transform;
  }
  .has-primary-nav .nav__slide-in {
    transform: translate3d(-100%, 0, 0);
    box-shadow: 1px 11px 7px 3px rgba(0, 0, 0, 0.2);
  }
}
@media (min-width: 48em) and (max-width: 67.49em) {
  .nav__slide-in {
    width: 360px;
    top: 110px;
    height: calc(100vh - 110px);
    border-top-left-radius: 0px;
  }
}
@media (min-width: 60em) {
  .nav__slide-in {
    width: 380px;
  }
}
@media (min-width: 67.5em) {
  .nav__slide-in {
    top: 140px;
    height: calc(100vh - 140px);
  }
  .is-sticky .nav__slide-in {
    top: 90px;
    height: calc(100vh - 90px);
  }
}
@media (min-width: 1250em) {
  .nav__slide-in {
    flex-shrink: 0;
    display: flex;
  }
}
@media (max-width: 1249.99em) {
  .nav__overflow {
    overflow-y: auto;
    overflow-x: hidden;
    overscroll-behavior-y: contain;
    max-height: 100%;
    min-height: calc(100vh - 70px - 20px);
    background-color: #22AAE2;
  }
  .nav__overflow:after {
    content: "";
    height: 160px;
    display: block;
  }
}
@media (min-width: 1250em) {
  .nav__overflow {
    flex-shrink: 0;
    display: flex;
  }
}
.nav__overlay.overlay {
  position: absolute;
  top: 70px;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 18;
  transition: all 0.3s ease-in-out;
  background: transparent;
}
@media (min-width: 48em) {
  .nav__overlay.overlay {
    top: 110px;
  }
}
@media (min-width: 67.5em) {
  .nav__overlay.overlay {
    top: 140px;
  }
}

/*------------------------------------*\
  $CONTENT
\*------------------------------------*/
.page-content {
  background-color: #ffffff;
  flex: 1 1 auto;
  width: 100%;
}
.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;
}
.main-content > .text-content:first-child > *:first-child {
  margin-top: 0;
}

/*------------------------------------*\
  $CONTENT
\*------------------------------------*/
.page-content {
  max-width: 20000px;
  margin-left: auto;
  margin-right: auto;
}
@media (min-width: 67.5em) {
  .page-content {
    padding-top: 140px;
  }
  .has-media-window .page-content {
    padding-top: 0;
  }
}

/*------------------------------------*\
  $FOOTER
\*------------------------------------*/
.page-footer {
  width: 100%;
  max-width: 20000px;
  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: #22AAE2;
  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 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__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 .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-top: 20px;
}
.page-footer__copyright {
  margin-top: 0;
  margin-bottom: 0;
}
.page-footer__social-links ul {
  display: flex;
  gap: 1rem;
}
.page-footer__social-links li {
  margin: 0;
  line-height: 1;
}
.page-footer__social-links svg {
  width: 14px;
  height: 14px;
  fill: #000000;
}
.page-footer__social-links svg.twitter {
  height: calc(14px - 2px);
  width: calc(14px - 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__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__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;
  }
  .page-footer__lower a:last-child img {
    margin-right: 0;
    width: auto;
  }
  .page-footer__title {
    margin-bottom: 25px;
  }
  .page-footer__title, .page-footer__title a {
    font-size: 1.25rem;
  }
  .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 a {
    height: 48px;
    width: 48px;
  }
  .page-footer__social-links svg {
    width: 18px;
    height: 18px;
  }
  .page-footer__social-links svg.youtube {
    height: calc(18px - 2px);
    width: calc(18px + 8px);
  }
  .page-footer__social-links svg.twitter {
    height: calc(18px - 2px);
    width: calc(18px - 2px);
  }
}

/*------------------------------------*\
  $FOOTER-BRAND
\*------------------------------------*/
.page-footer {
  --footer-inner-padding: 1.25rem;
  background: #000000;
  padding-block-start: 2.5rem;
  padding-block-end: 1.25rem;
}

.page-footer ::selection {
  background: #ffffff;
  color: #22AAE2;
}

.page-footer__sign-up p {
  font-size: 1.125rem;
}

.page-footer__upper .page-footer__wrapper {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  position: relative;
  isolation: isolate;
}

.page-footer__upper .page-footer__wrapper::before,
.page-footer__upper .page-footer__wrapper::after {
  content: "";
  background: #222222;
  height: 100%;
  width: 100%;
  grid-area: 1/1/4/2;
  z-index: -1;
}

.page-footer__wrapper::after {
  background-color: #2b2b2b;
  grid-area: 4/1/7/2;
}

.page-footer__title {
  font-size: 2.0625rem;
  margin-block-start: 0;
  margin-block-end: 1.25rem;
  grid-area: 1/1/2/2;
  padding-top: var(--footer-inner-padding);
  padding-inline: var(--footer-inner-padding);
}

.page-footer address {
  grid-area: 2/1/3/2;
  padding-inline: var(--footer-inner-padding);
  margin-bottom: 1.5rem;
}

.page-footer__contact {
  grid-area: 3/1/4/2;
  padding-inline: var(--footer-inner-padding);
  padding-bottom: calc(var(--footer-inner-padding) + 0.5rem);
}

.page-footer__link-list {
  padding: var(--footer-inner-padding);
}

.page-footer__link-list-1 {
  grid-area: 4/1/5/2;
  padding-bottom: 0.5rem;
}

.page-footer__link-list-2 {
  grid-area: 5/1/6/2;
  padding-block: 0;
}

.page-footer__social-links {
  grid-area: 6/1/7/2;
  padding: var(--footer-inner-padding);
  padding-block: calc(var(--footer-inner-padding) + 0.5rem);
}

.page-footer .contact-details {
  font-weight: 400;
  font-family: "Rubik", "rubik-fallback-arial", trebuchet ms, helvetica, arial, sans-serif;
}
.page-footer .contact-details li {
  line-height: 1.3;
}
.page-footer .contact-details a {
  font-weight: 400;
  font-family: "Bebas Neue", "bebas-neue-fallback-impact", impact, arial narrow, arial, sans-serif;
  font-size: 1.125rem;
  color: #22AAE2;
}

.page-footer :where(li, address p) {
  line-height: 1.7;
  font-size: 0.875rem;
  margin-top: 0;
}

.page-footer :where(a, address p) {
  font-weight: 400;
  line-break: anywhere;
}

.page-footer .page-footer__link-list ul {
  display: grid;
  gap: 0.5rem;
}

.page-footer__divisions {
  padding: 2.25rem 2.25rem 2.5rem;
  background: #222222;
  display: grid;
  gap: 1.5rem;
  align-items: center;
  justify-items: center;
}

.page-footer__divisions .icon-contents {
  --icon-contents-max-width-mobile: 120px;
  --icon-contents-max-width-tablet: 260px;
  --icon-contents-max-width-desktop: 300px;
  --icon-contents-max-height-mobile: 34px;
  --icon-contents-max-height-tablet: 32px;
  --icon-contents-max-height-desktop: 54px;
}

.page-footer__divisions > *:first-child .icon-contents {
  --icon-contents-max-width-mobile: 230px;
  margin-bottom: 0.5rem;
}

.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", "rubik-fallback-arial", trebuchet ms, helvetica, arial, 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: 69%;
  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;
  }
}
@media (min-width: 48em) {
  .page-footer {
    --footer-inner-padding: 2rem;
    padding-block: 3.75rem;
  }
  .page-footer .contact-details li {
    margin-bottom: 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;
  }
  .page-footer__upper .page-footer__wrapper {
    grid-template-columns: 2fr 1.3fr 14rem;
    grid-template-rows: max-content 1fr auto;
  }
  .page-footer__title {
    font-size: 2.375rem;
    grid-column: 1/2;
    grid-row: 1/2;
  }
  .page-footer address {
    grid-column: 2/3;
    grid-row: 1/3;
    padding: var(--footer-inner-padding);
    padding-inline: 0;
    margin: 0;
    margin-top: -0.5rem;
  }
  .page-footer address p {
    font-size: 0.9375rem;
    line-height: 1.9;
  }
  .page-footer__contact {
    grid-column: 1/2;
    grid-row: 2/3;
    padding-bottom: var(--footer-inner-padding);
  }
  .page-footer__contact li {
    line-height: 1.4;
    font-size: 1.25rem;
  }
  .page-footer__link-list {
    padding-top: var(--footer-inner-padding);
  }
  .page-footer__link-list li {
    line-height: 1.5;
    font-size: 1rem;
  }
  .page-footer__link-list-1 {
    grid-column: 1/2;
    grid-row: 3/4;
  }
  .page-footer__link-list-2 {
    grid-column: 2/4;
    grid-row: 3/4;
    padding-inline: 0;
  }
  .page-footer__social-links {
    grid-column: 3/-1;
    grid-row: 1/3;
    padding: var(--footer-inner-padding);
    margin-top: 0;
  }
  .page-footer__social-links ul {
    margin-block: 0;
    justify-content: flex-end;
    flex-wrap: wrap;
  }
  .page-footer__social-links .svg-icon {
    height: 20px;
    width: 20px;
  }
  .page-footer__upper .page-footer__wrapper::before,
  .page-footer__upper .page-footer__wrapper::after {
    grid-column: 1/-1;
    grid-row: 1/3;
  }
  .page-footer__upper .page-footer__wrapper::after {
    background-color: transparent;
  }
  .page-footer__divisions {
    grid-template-columns: auto auto auto auto;
    grid-template-rows: auto;
    gap: 2.25rem 2.75rem;
  }
  .page-footer__divisions > *:first-child {
    width: 100%;
    display: flex;
    justify-content: center;
    grid-row: 1/2;
    grid-column: 1/-1;
  }
  .page-footer__divisions > *:first-child .icon-contents {
    margin-bottom: 0;
  }
}
@media (min-width: 60em) {
  .page-footer__divisions .icon-contents {
    --icon-contents-max-height-tablet: 42px;
  }
}
@media (min-width: 67.5em) {
  .page-footer__sign-up p {
    font-size: 1.625rem;
  }
  .page-footer__copyright-social {
    margin-top: 0;
  }
  .page-footer__financial-statement {
    margin-top: 60px;
  }
  .page-footer__divisions > *:first-child .icon-contents {
    --icon-contents-max-width-desktop: 396px;
  }
  .page-footer__copyright {
    margin-top: 2rem;
  }
}
@media (min-width: 75em) {
  .page-footer {
    --footer-inner-padding: 3.75rem;
    padding-block: var(--footer-inner-padding);
  }
  .page-footer__upper {
    padding-bottom: 60px;
  }
  .page-footer__lower {
    padding-top: 60px;
    padding-bottom: 55px;
  }
  .page-footer__legal-links li {
    margin-right: 30px;
  }
  .page-footer__upper .page-footer__wrapper {
    grid-template-columns: max-content minmax(20%, 25%) minmax(20%, 1fr) min-content;
  }
  .page-footer__upper .page-footer__wrapper::before {
    grid-column: 1/2;
    grid-row: 1/4;
  }
  .page-footer__upper .page-footer__wrapper::after {
    grid-column: 2/5;
    grid-row: 1/4;
    background-color: #2b2b2b;
  }
  .page-footer address p {
    font-size: 1rem;
  }
  .page-footer address {
    padding-inline: var(--footer-inner-padding);
    padding-block: 0 1.5rem;
  }
  .page-footer .contact-details li a {
    font-size: 1.3125rem;
  }
  .page-footer__title,
  .page-footer__social-links {
    padding-top: var(--footer-inner-padding);
  }
  .page-footer__title {
    font-size: 2.625rem;
    grid-column: 1/2;
    grid-row: 1/2;
    margin-block-end: 28px;
  }
  .page-footer address {
    grid-column: 1/2;
    grid-row: 2/3;
  }
  .page-footer__contact {
    grid-column: 1/2;
    grid-row: 3/4;
  }
  .page-footer__link-list-1 {
    grid-column: 2/3;
    grid-row: 1/4;
    padding-right: 0;
  }
  .page-footer__link-list-2 {
    grid-column: 3/4;
    grid-row: 1/4;
  }
  .page-footer__social-links {
    grid-column: 4/5;
    grid-row: 1/4;
  }
  .page-footer__link-list,
  .page-footer__social-links {
    padding-left: var(--footer-inner-padding);
  }
  .page-footer__social-links ul {
    justify-content: flex-end;
    width: 7rem;
  }
  .page-footer__divisions {
    gap: 3.75rem 4.5rem;
    padding: 4.25rem var(--footer-inner-padding) var(--footer-inner-padding);
  }
}
@media (min-width: 90em) {
  .page-footer__divisions .icon-contents {
    --icon-contents-max-width-desktop: 340px;
    --icon-contents-max-height-desktop: 64px;
  }
}
/*------------------------------------*\
  $BLOCKS
\*------------------------------------*/
/*------------------------------------*\
  $MODAL WINDOWS
\*------------------------------------*/
.modal {
  overflow: hidden;
  position: fixed;
  max-width: 95%;
  width: 1000px;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  background-color: #f8f8f8;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  text-align: left;
  animation-name: fade-in;
  animation-duration: 0.4s;
  z-index: 30;
  -webkit-font-smoothing: antialiased;
}
.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: #ededed;
  transition: background 0.3s ease-in-out;
  z-index: 40;
  cursor: pointer;
}
.modal__close svg {
  margin: auto;
  width: 17px;
  height: 16px;
  fill: #22AAE2;
}
.modal__close:hover, .modal__close:active, .modal__close:focus {
  background-color: rgb(224.25, 224.25, 224.25);
}
.modal__close:hover svg, .modal__close:active svg, .modal__close:focus svg {
  fill: rgb(27.202, 154.77, 207.298);
}
.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;
  max-height: 80vh;
  overscroll-behavior-y: none;
  scrollbar-face-color: #b1b1b1;
  scrollbar-base-color: #f5f5f5;
  scrollbar-shadow-color: #707070;
}
@-moz-document url-prefix() {
  .modal__body {
    scrollbar-color: #b1b1b1 #f5f5f5;
    scrollbar-width: thin;
  }
}
.modal__body::-webkit-scrollbar {
  width: 15px;
  height: 0;
}
.modal__body::-webkit-scrollbar-track {
  -webkit-box-shadow: inset 0 0 2px rgba(0, 0, 0, 0.3);
  background-color: #f5f5f5;
}
.modal__body::-webkit-scrollbar-thumb {
  background: #b1b1b1;
}
.modal__body::-webkit-scrollbar-button {
  width: 15px;
  height: 0;
  display: block;
}
.ajax-loading .modal__body {
  max-height: 30vh;
}
.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--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='M94.1 45.6c5.6 3.2 7.5 10.3 4.3 15.9-1 1.8-2.5 3.3-4.3 4.3l-76.6 44c-5.6 3.2-12.7 1.3-15.9-4.3-1-1.8-1.6-3.8-1.6-5.8v-88C0 5.2 5.2 0 11.7 0c2 0 4.1.5 5.8 1.6l76.6 44z'/%3E%3C/svg%3E");
  background-size: 28px 33px;
  background-position: 51% center;
  background-repeat: no-repeat;
  z-index: 1;
}
.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: 60px 67px;
    background-position: center center;
  }
}
@media (min-width: 48em) {
  .modal__body {
    max-height: 95vh;
  }
  .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;
  }
  .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: 20;
}
.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: #22AAE2;
  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: #22AAE2;
  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;
}
.message-box li {
  font-size: 0.875rem;
  display: list-item;
}
.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: 300;
  font-family: "Rubik", "rubik-fallback-arial", trebuchet ms, helvetica, arial, sans-serif;
  font-size: 1.375rem;
  line-height: 1.1;
  padding-top: 10px;
  margin-bottom: 10px;
}
.map__module p:last-child {
  padding-bottom: 15px;
}
@media (min-width: 30em) {
  .map__module {
    min-height: 500px;
  }
}
@media (min-width: 48em) {
  .map__module {
    min-height: 600px;
  }
}
@media (min-width: 60em) {
  .map__module {
    min-height: 700px;
  }
}
@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: #22AAE2;
  font: inherit;
  font-weight: 400;
  font-family: "Bebas Neue", "bebas-neue-fallback-impact", impact, arial narrow, arial, sans-serif;
  font-size: 1.125rem;
  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: 0px;
}
@media (min-width: 48em) {
  .btn {
    border-radius: 0px;
    height: 50px;
    font-size: 1.1875rem;
  }
}
.btn:hover, .btn:active, .btn:focus {
  background-color: #ededed;
  color: #22AAE2;
}
.btn--rounded {
  border-radius: 50px;
}
.btn--full {
  width: 100%;
}
.btn--dark {
  background-color: #000000;
  color: #FBFBFB;
}
.btn--dark:hover, .btn--dark:active, .btn--dark:focus {
  background-color: #2b2b2b;
  color: #FBFBFB;
}
.btn--brand {
  background-color: #22AAE2;
  color: #000000;
}
.btn--brand:hover, .btn--brand:active, .btn--brand:focus {
  background-color: rgb(27.202, 154.77, 207.298);
  color: #000000;
}
.btn--brand.alt {
  background-color: #274178;
  color: #ffffff;
}
.btn--brand.alt:hover, .btn--brand.alt:active, .btn--brand.alt:focus {
  background-color: #22AAE2;
  color: #ffffff;
}
.btn--secondary {
  background-color: #ccc;
  color: #222222;
}
.btn--secondary:hover, .btn--secondary:active, .btn--secondary:focus {
  background-color: #a3a3a3;
  color: #222222;
}
.btn--override {
  text-decoration: none;
  border: 0;
  cursor: pointer;
  -webkit-appearance: none;
  padding: 0;
}
.btn--override .visually-hidden {
  margin: 0;
}

/*------------------------------------*\
  $GLIDEJS SLIDERS
\*------------------------------------*/
.glide {
  background-color: transparent;
  max-width: 1440px;
  margin: 0 auto;
}
.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 #22AAE2;
  background-color: rgba(255, 255, 255, 0.5);
  transition: opacity 300ms ease-in-out;
  opacity: 0;
}
.glide__bullet:before {
  background-color: #22AAE2;
}
.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__slide {
  margin-bottom: 0;
  list-style: none;
  position: relative;
  white-space: normal;
}
.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.1;
  white-space: normal;
}
.glide__caption .caption__desc {
  display: none;
  margin-top: 10px;
  line-height: 1.3;
  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 Slider
   */
}
.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: 610px;
    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: #22AAE2;
}
@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 Sliders
  */
}
.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: #22AAE2;
  fill: #22AAE2;
}
.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
  */
}
.glide--hero {
  background: #707070;
}
@media (max-width: 37.49em) {
  .glide--hero picture {
    position: relative;
    padding-bottom: 112%;
    overflow: hidden;
  }
  .glide--hero picture img,
  .glide--hero picture video,
  .glide--hero picture iframe,
  .glide--hero picture object,
  .glide--hero picture embed {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
  }
  .glide--hero picture iframe,
  .glide--hero picture object,
  .glide--hero picture embed {
    width: 100%;
    height: 100.2%;
  }
}
@media (min-width: 37.5em) and (max-width: 67.49em) {
  .glide--hero picture {
    position: relative;
    padding-bottom: 56%;
    overflow: hidden;
  }
  .glide--hero picture img,
  .glide--hero picture video,
  .glide--hero picture iframe,
  .glide--hero picture object,
  .glide--hero picture embed {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
  }
  .glide--hero picture iframe,
  .glide--hero picture object,
  .glide--hero picture embed {
    width: 100%;
    height: 100.2%;
  }
}
@media (min-width: 67.5em) and (max-width: 89.99em) {
  .glide--hero picture {
    position: relative;
    padding-bottom: 42%;
    overflow: hidden;
  }
  .glide--hero picture img,
  .glide--hero picture video,
  .glide--hero picture iframe,
  .glide--hero picture object,
  .glide--hero picture embed {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
  }
  .glide--hero picture iframe,
  .glide--hero picture object,
  .glide--hero picture embed {
    width: 100%;
    height: 100.2%;
  }
}
@media (min-width: 48em) {
  .glide--hero .glide__track:before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    width: 8px;
    background: #22AAE2;
    z-index: 1;
  }
}
@media (min-width: 90em) {
  .glide--hero .glide__track:before {
    width: 18px;
  }
}
.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: flex-end;
  align-items: flex-start;
  padding-bottom: 25px;
}
@media (min-width: 30em) {
  .glide__caption {
    padding-bottom: 50px;
  }
}
@media (min-width: 37.5em) {
  .glide__caption {
    justify-content: center;
    padding-top: 50px;
    padding-bottom: 0;
  }
}
@media (min-width: 48em) {
  .glide__caption {
    padding-top: 80px;
  }
}
.glide__caption--wrap {
  z-index: 2;
}
@media (min-width: 90em) {
  .glide__caption--wrap {
    height: 610px;
  }
}
.glide__caption .caption__title {
  font-size: 2.5rem;
  text-transform: none;
  line-height: 1;
}
.glide__caption .caption__title a:before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}
@media (min-width: 48em) {
  .glide__caption .caption__title {
    max-width: 350px;
    font-size: 3.125rem;
  }
}
@media (min-width: 60em) {
  .glide__caption .caption__title {
    max-width: 760px;
    font-size: 3.75rem;
  }
}
.glide__caption .caption__desc {
  font-size: 1.125rem;
  text-transform: none;
  color: #ffffff;
  display: block;
  line-height: 1.3;
  font-weight: 400;
  font-family: "Rubik", "rubik-fallback-arial", trebuchet ms, helvetica, arial, sans-serif;
}
@media (min-width: 48em) {
  .glide__caption .caption__desc {
    max-width: 350px;
    font-size: 1.1875rem;
  }
}
@media (min-width: 60em) {
  .glide__caption .caption__desc {
    margin-top: 20px;
    max-width: 520px;
    font-size: 1.5625rem;
  }
}
.glide__caption .caption__link {
  display: none;
}
.glide {
  /**
  * Gallery Sliders
  */
}
.glide--gallery picture {
  position: relative;
  padding-bottom: 56%;
  overflow: hidden;
}
.glide--gallery picture img,
.glide--gallery picture video,
.glide--gallery picture iframe,
.glide--gallery picture object,
.glide--gallery picture embed {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}
.glide--gallery picture iframe,
.glide--gallery picture object,
.glide--gallery picture embed {
  width: 100%;
  height: 100.2%;
}
.glide--gallery picture {
  background: #e0e0e2;
}
.glide--gallery .glide__track,
.glide--gallery .glide__track picture {
  border-radius: 0px;
  -webkit-mask-image: -webkit-radial-gradient(white, black);
}
@media (min-width: 48em) {
  .glide--gallery .glide__track,
  .glide--gallery .glide__track picture {
    border-radius: 0px;
  }
}
.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%;
  border-radius: 0px;
  background: #ccc;
}
.glide--gallery .glide__bullet--active span:not(.visually-hidden) {
  background: #22AAE2;
}
.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: #22AAE2;
}
.glide {
  /**
  * Video Headers
  */
}
.glide--video .glide__slide {
  opacity: 1;
}
.glide__video {
  width: auto;
  display: block;
  height: 101%;
}
.glide__video video[poster] {
  object-fit: cover;
}
@media (max-width: 37.49em) {
  .glide__video--wrap {
    position: relative;
    padding-bottom: 112%;
    overflow: hidden;
  }
  .glide__video--wrap img,
  .glide__video--wrap video,
  .glide__video--wrap iframe,
  .glide__video--wrap object,
  .glide__video--wrap embed {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
  }
  .glide__video--wrap iframe,
  .glide__video--wrap object,
  .glide__video--wrap embed {
    width: 100%;
    height: 100.2%;
  }
}
@media (min-width: 37.5em) and (max-width: 67.49em) {
  .glide__video--wrap {
    position: relative;
    padding-bottom: 56%;
    overflow: hidden;
  }
  .glide__video--wrap img,
  .glide__video--wrap video,
  .glide__video--wrap iframe,
  .glide__video--wrap object,
  .glide__video--wrap embed {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
  }
  .glide__video--wrap iframe,
  .glide__video--wrap object,
  .glide__video--wrap embed {
    width: 100%;
    height: 100.2%;
  }
}
@media (min-width: 67.5em) and (max-width: 89.99em) {
  .glide__video--wrap {
    position: relative;
    padding-bottom: 42%;
    overflow: hidden;
  }
  .glide__video--wrap img,
  .glide__video--wrap video,
  .glide__video--wrap iframe,
  .glide__video--wrap object,
  .glide__video--wrap embed {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
  }
  .glide__video--wrap iframe,
  .glide__video--wrap object,
  .glide__video--wrap embed {
    width: 100%;
    height: 100.2%;
  }
}
.glide__video--wrap .glide__video {
  position: absolute;
  left: 50%;
  transform: translate3d(-50%, 0, 0);
  top: auto;
  bottom: auto;
  right: auto;
}
@media (min-width: 90em) {
  .glide__video {
    height: 610px;
  }
}
@media (min-width: 120em) {
  .glide__video {
    height: auto;
    width: 100%;
  }
}

/*------------------------------------*\
  $HEADER-TRANSPARENT
\*------------------------------------*/
.has-media-window .page-header {
  position: absolute;
  z-index: 21;
}
.has-media-window .page-header:before {
  opacity: 0;
}
.has-media-window .page-header__upper {
  background: rgba(51, 51, 51, 0.4);
}
.has-media-window:not(.has-sticky-nav) .page-header__lower {
  background: transparent;
}

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

@media (min-width: 67.5em) {
  .has-media-window .page-header {
    position: fixed;
  }
  .has-sticky-nav.has-media-window .page-header {
    position: fixed;
    z-index: 21;
  }
  .has-sticky-nav.has-media-window .page-header:before {
    opacity: 1;
  }
  .glide__caption {
    padding-top: calc(140px - 40px);
  }
}
@media (min-width: 67.5em) {
  .is-sticky.has-media-window.page-content {
    padding-top: 0;
  }
}
/*------------------------------------*\
  $BREADCRUMBS
\*------------------------------------*/
.nav-breadcrumbs {
  padding: 0 20px;
}
@media (min-width: 48em) {
  .nav-breadcrumbs {
    padding: 0 30px;
  }
}

.breadcrumbs {
  margin: 0 auto 20px;
  max-width: 1170px;
  padding: 0;
}
.main-content-centered .breadcrumbs {
  text-align: center;
}
.breadcrumbs__item {
  display: inline;
  font-size: 0.875rem;
  font-weight: 400;
  font-family: "Rubik", "rubik-fallback-arial", trebuchet ms, helvetica, arial, sans-serif;
}
.breadcrumbs__item a {
  font-weight: 500;
  font-family: "Rubik", "rubik-fallback-arial", trebuchet ms, helvetica, arial, sans-serif;
  color: #222222;
  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 {
  font-weight: 500;
  font-family: "Rubik", "rubik-fallback-arial", trebuchet ms, helvetica, arial, sans-serif;
  content: "/";
  margin: 0 5px;
}
.breadcrumbs__item.last:after {
  content: "";
}
@media (min-width: 48em) {
  .breadcrumbs__item {
    font-size: 0.9375rem;
  }
}

/*------------------------------------*\
  $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;
}
.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%;
}
.post--video {
  border-radius: 0px;
  -webkit-mask-image: -webkit-radial-gradient(white, black);
}
@media (min-width: 48em) {
  .post--video {
    border-radius: 0px;
  }
}
.post--card {
  background-color: #ededed;
  display: flex;
  flex-direction: column;
  position: relative;
  border-radius: 0px;
  -webkit-mask-image: -webkit-radial-gradient(white, black);
}
.post--card figure {
  overflow: hidden;
}
.post--card picture {
  position: relative;
  padding-bottom: 56%;
  overflow: hidden;
}
.post--card picture img,
.post--card picture video,
.post--card picture iframe,
.post--card picture object,
.post--card picture embed {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}
.post--card picture iframe,
.post--card picture object,
.post--card picture embed {
  width: 100%;
  height: 100.2%;
}
.post--card picture {
  transform: scale(1.02);
  transition: transform 0.2s ease-in-out;
  will-change: transform;
}
.post--card img {
  width: 100%;
}
.post--card * {
  word-break: break-word;
  word-wrap: break-word;
}
.post--card p {
  color: #000000;
  font-size: 0.875rem;
}
.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: #222222;
}
.post--card .post__description {
  margin-top: 15px;
  margin-bottom: 0;
}
.post--card .post__details {
  padding: 25px 20px;
  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__meta,
.post--card .post__location {
  font-weight: 500;
  font-family: "Rubik", "rubik-fallback-arial", trebuchet ms, helvetica, arial, sans-serif;
  font-size: 0.75rem;
}
.post--card .post__meta {
  margin-top: auto;
  padding-top: 10px;
}
.post--card:hover picture, .post--card:active picture, .post--card:focus picture {
  transform: scale(1.04);
}
@media (min-width: 48em) {
  .post--card {
    border-radius: 0px;
  }
  .post--card p {
    font-size: 0.9375rem;
  }
  .post--card .post__details {
    padding: 25px 30px 30px;
  }
  .post--card .post__meta,
  .post--card .post__location {
    font-size: 0.8125rem;
  }
}
@media (min-width: 60em) {
  .post--card .post__details {
    padding: 30px;
  }
  .post--card p {
    font-size: 1rem;
  }
  .post--card .post__meta,
  .post--card .post__location {
    font-size: 0.875rem;
  }
}
.post--location {
  display: flex;
  flex-direction: column;
}
.post--location picture {
  background-color: #f8f8f8;
  position: relative;
  padding-bottom: 56%;
  overflow: hidden;
}
.post--location picture img,
.post--location picture video,
.post--location picture iframe,
.post--location picture object,
.post--location picture embed {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}
.post--location picture iframe,
.post--location picture object,
.post--location picture embed {
  width: 100%;
  height: 100.2%;
}
.post--location h2,
.post--location h3,
.post--location p,
.post--location address {
  width: 100%;
}
.post--location p,
.post--location address {
  color: #222222;
}
.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 {
  font-size: 1.6875rem;
  margin-top: 0;
  margin-bottom: 10px;
}
.post--location .location__contact-name {
  font-weight: 400;
  font-family: "Rubik", "rubik-fallback-arial", trebuchet ms, helvetica, arial, 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: 400;
  font-family: "Rubik", "rubik-fallback-arial", trebuchet ms, helvetica, arial, sans-serif;
  color: #222222;
}
.post--location .location__telephone a,
.post--location .location__mobile a,
.post--location .location__email a,
.post--location .location__website a {
  text-decoration: 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: #222222;
  text-decoration: none;
}
.post--location .btn {
  margin-top: auto;
  width: 100%;
}
.post--location:hover p, .post--location:active p, .post--location:focus p {
  color: #222222;
}
.post--location-highlighted {
  background-color: #22AAE2;
}
.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: #f8f8f8;
}
.post--location-highlighted .btn {
  background-color: #2b2b2b;
}
.post--location-highlighted .btn:hover, .post--location-highlighted .btn:active, .post--location-highlighted .btn:focus {
  background-color: #222222;
}
.post--location-highlighted:hover p, .post--location-highlighted:active p, .post--location-highlighted:focus p {
  color: #ffffff;
}
@media (min-width: 48em) {
  .post--location .location__company-name {
    font-size: 2rem;
    margin-bottom: 15px;
  }
}
@media (min-width: 60em) {
  .post--location .location__company-name {
    font-size: 2.1875rem;
    margin-bottom: 20px;
  }
}

/*------------------------------------*\
  $POSTS-BRAND
\*------------------------------------*/
.post--card {
  position: relative;
}
.post--card picture {
  position: relative;
  padding-bottom: 66%;
  overflow: hidden;
}
.post--card picture img,
.post--card picture video,
.post--card picture iframe,
.post--card picture object,
.post--card picture embed {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}
.post--card picture iframe,
.post--card picture object,
.post--card picture embed {
  width: 100%;
  height: 100.2%;
}
.post--card a {
  text-decoration: none;
}
.post--card a:hover, .post--card a:active, .post--card a:focus {
  text-decoration: underline;
}
.post--card .btn {
  text-decoration: none;
}
.post--card .btn:hover, .post--card .btn:active, .post--card .btn:focus {
  text-decoration: none;
}
.post--card .post__details {
  z-index: 1;
  opacity: 0.99;
  padding-top: 20px;
}
.post--card .post__title {
  font-size: 1.4375rem;
}
.post--card .post__divider {
  width: 100%;
  border-bottom: 1px solid rgba(255, 255, 255, 0.6);
  margin-top: auto;
  padding-top: 20px;
  margin-bottom: 20px;
}
.post--card .post__meta {
  margin-top: 0;
  padding-top: 0;
}
.post--card .post__meta,
.post--card .post__date {
  font-size: 0.8125rem;
}
.post--card .post__button {
  margin-top: auto;
  padding-top: 20px;
  width: 100%;
}
.post--card .post__button .btn {
  padding-left: 20px;
  padding-right: 20px;
  width: 100%;
}
.post--page:before, .post--summary:before, .post--location:before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  opacity: 0;
  background: #ededed;
  transition: opacity 0.2s ease-in-out;
}
.post--page:hover:before, .post--page:active:before, .post--page:focus:before, .post--summary:hover:before, .post--summary:active:before, .post--summary:focus:before, .post--location:hover:before, .post--location:active:before, .post--location:focus:before {
  opacity: 1;
}
.post--page, .post--summary {
  background: #f8f8f8;
}
.post--page:hover .btn, .post--page:active .btn, .post--page:focus .btn, .post--summary:hover .btn, .post--summary:active .btn, .post--summary:focus .btn {
  background: rgb(27.202, 154.77, 207.298);
}
.post--location:before {
  background: #e0e0e2;
}
.post--location-highlighted:before {
  background: rgb(27.202, 154.77, 207.298);
}
.post--project .post__details {
  background: linear-gradient(to bottom, #274178 0%, #23A8DF 100%);
}
.post--project .post__title, .post--project .post__title a, .post--project .post__description, .post--project .post__meta {
  color: #ffffff;
}
.post--news-article .post__details, .post--blog-article .post__details, .post--project .post__details {
  padding-bottom: 20px;
}
.post--news-article .post__details, .post--blog-article .post__details {
  background: #22AAE2;
}
.post--news-article .post__divider, .post--blog-article .post__divider {
  border-color: rgba(0, 0, 0, 0.6);
}
.post--news-article .post__author, .post--blog-article .post__author {
  width: 100%;
  display: grid;
  align-items: center;
  grid-gap: 0;
  grid-template: "card-left-top     card-right" auto "card-left-bottom  card-right" auto/1fr auto;
}
.post--news-article .post__meta, .post--blog-article .post__meta {
  grid-area: card-left-top;
  margin-bottom: 0;
  align-self: end;
}
.post--news-article .post__date, .post--blog-article .post__date {
  grid-area: card-left-bottom;
  margin: 0;
  align-self: start;
}
.post--news-article .post__avatar, .post--blog-article .post__avatar {
  height: 40px;
  width: 40px;
  border-radius: 50%;
  overflow: hidden;
  grid-area: card-right;
  margin-left: 15px;
  align-self: end;
}
.post--news-article .post__avatar img,
.post--news-article .post__avatar picture, .post--blog-article .post__avatar img,
.post--blog-article .post__avatar picture {
  height: 100%;
  width: 100%;
}
.post--news-article .post__avatar picture, .post--blog-article .post__avatar picture {
  display: flex;
  align-items: center;
  justify-content: center;
  transform: none;
  will-change: initial;
  padding-bottom: 0;
}
.post--news-article .post__avatar img, .post--blog-article .post__avatar img {
  object-fit: cover;
}
.post--news-article .post__avatar svg, .post--blog-article .post__avatar svg {
  fill: #22AAE2;
  width: 65%;
}
.post--news-article .post__avatar--fallback, .post--blog-article .post__avatar--fallback {
  background: #000000;
}
.post--blog-article .post__details {
  background: #000000;
}
.post--blog-article .post__divider {
  border-color: rgba(255, 255, 255, 0.6);
}
.post--blog-article .post__title, .post--blog-article .post__title a, .post--blog-article .post__description, .post--blog-article .post__meta, .post--blog-article .post__date {
  color: #FBFBFB;
}
.post--blog-article .post__avatar svg {
  fill: #000000;
}
.post--blog-article .post__avatar--fallback {
  background: #22AAE2;
}
.post--author picture {
  position: relative;
  padding-bottom: 100%;
  overflow: hidden;
}
.post--author picture img,
.post--author picture video,
.post--author picture iframe,
.post--author picture object,
.post--author picture embed {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}
.post--author picture iframe,
.post--author picture object,
.post--author picture embed {
  width: 100%;
  height: 100.2%;
}
@media (min-width: 48em) {
  .post--card .post__details {
    padding: 25px;
  }
  .post--card .post__title {
    font-size: 1.625rem;
  }
  .post--card .post__divider {
    padding-top: 25px;
    margin-bottom: 25px;
  }
  .post--card .post__button {
    padding-bottom: 5px;
  }
  .post--card .post__meta,
  .post--card .post__date {
    font-size: 0.875rem;
  }
  .post--card .svg-rollover {
    padding-top: 59px;
    padding-bottom: 35px;
  }
  .post--news-article .post__avatar, .post--blog-article .post__avatar {
    height: 50px;
    width: 50px;
  }
}
@media (min-width: 60em) {
  .post--card .post__details {
    padding-left: 30px;
    padding-right: 30px;
  }
  .post--card .post__title {
    font-size: 1.8125rem;
  }
  .post--card .post__divider {
    padding-top: 25px;
    margin-bottom: 25px;
  }
  .post--card .post__meta,
  .post--card .post__date {
    font-size: 0.9375rem;
  }
  .post--card .post__button {
    padding-top: 25px;
  }
  .post--news-article .post__divider, .post--blog-article .post__divider {
    padding-top: 30px;
  }
}

/*------------------------------------*\
  $PAGE-TAGS
\*------------------------------------*/
.page-tags {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: calc(10px * -1);
}
.page-tags a {
  border: none;
  display: inline-block;
  padding: 8px 15px;
  background-color: #f8f8f8;
  color: #222222;
  text-decoration: none;
  font-weight: 500;
  font-family: "Rubik", "rubik-fallback-arial", trebuchet ms, helvetica, arial, sans-serif;
  font-size: 0.8125rem;
  letter-spacing: 0;
  margin-right: 10px;
  margin-bottom: 10px;
  border-radius: 0px;
}
.page-tags a:hover, .page-tags a:active, .page-tags a:focus {
  border: none;
  color: #222222;
  text-decoration: none;
  background-color: #22AAE2;
}
@media (min-width: 48em) {
  .page-tags {
    margin-bottom: calc((20px + 10px) * -1);
  }
  .page-tags a {
    border-radius: 0px;
    font-size: 0.9375rem;
    padding: 10px 15px;
    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 > ul,
.text-content > ol,
.panel__text > ul,
.panel__text > ol,
.cell > ul,
.cell > ol {
  padding: 0;
  padding-right: 20px;
  padding-left: 20px;
  margin-left: auto;
}
.text-content > ol,
.panel__text > ol,
.cell > ol {
  padding-left: 20px;
}
.text-content > ul li,
.panel__text > ul li,
.cell > ul li {
  list-style: none;
}
.text-content > ul li:before,
.panel__text > ul li:before,
.cell > ul li:before {
  content: "";
  background-color: #434343;
  position: absolute;
  top: 8px;
  left: calc(20px * -1 + 2px);
  height: 6px;
  width: 6px;
  border-radius: 50%;
}
@media (min-width: 37.5em) {
  .text-content > ul li:before,
  .panel__text > ul li:before,
  .cell > ul li:before {
    top: 9px;
    left: calc(25px * -1 + 2px);
  }
}
@media (min-width: 60em) {
  .text-content > ul li:before,
  .panel__text > ul li:before,
  .cell > ul li:before {
    top: 10px;
    left: calc(25px * -1 + 2px);
  }
}
@media (min-width: 37.5em) {
  .text-content > ul,
  .panel__text > ul,
  .cell > ul {
    padding-left: 25px;
  }
  .text-content > ol,
  .panel__text > ol,
  .cell > ol {
    padding-left: 25px;
  }
}
@media (min-width: 60em) {
  .text-content > ul,
  .panel__text > ul,
  .cell > ul {
    padding-left: 25px;
  }
  .text-content > ol,
  .panel__text > ol,
  .cell > ol {
    padding-left: 25px;
  }
}

.text-content,
.panel__text {
  padding: 0 20px;
}
.text-content > *,
.panel__text > * {
  max-width: 1170px;
  margin-left: auto;
  margin-right: auto;
}
.text-content.text-align-centre,
.panel__text.text-align-centre {
  text-align: center;
}
.text-content.text-align-centre blockquote:before,
.panel__text.text-align-centre blockquote:before {
  left: 50%;
  transform: translateX(-50%);
}
.text-content.text-align-centre blockquote p,
.panel__text.text-align-centre blockquote p {
  margin-left: auto;
  margin-right: auto;
}
.text-content.text-align-right,
.panel__text.text-align-right {
  text-align: right;
}
.text-content.text-align-right > blockquote:before,
.panel__text.text-align-right > blockquote:before {
  left: auto;
  right: 0;
}
.text-content.text-align-right > blockquote p,
.panel__text.text-align-right > blockquote p {
  margin-left: auto;
  margin-right: 0;
}
.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) {
  .text-content,
  .panel__text {
    padding: 0 30px;
  }
  .panel__text + .layout__container {
    margin-top: 30px;
  }
}
@media (min-width: 60em) {
  .text-content > *:not(.table-wrapper),
  .panel__text > *:not(.table-wrapper) {
    max-width: 1170px;
    padding-right: calc(1170px - 850px);
  }
  .main-content-centered .text-content > *:not(.table-wrapper),
  .main-content-centered .panel__text > *:not(.table-wrapper) {
    padding-right: calc((1170px - 850px) / 2);
    padding-left: calc((1170px - 850px) / 2);
  }
  .text-content.text-align-centre > *:not(.table-wrapper),
  .panel__text.text-align-centre > *:not(.table-wrapper) {
    padding-right: calc((1170px - 850px) / 2);
    padding-left: calc((1170px - 850px) / 2);
  }
  .text-content.text-align-right > *:not(.table-wrapper),
  .panel__text.text-align-right > *:not(.table-wrapper) {
    padding-left: calc(1170px - 850px);
    padding-right: 0;
  }
  .panel__text + .layout__container {
    margin-top: 35px;
  }
}
/*------------------------------------*\
  $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: 67.5em) {
  .panel {
    padding-top: 60px;
    padding-bottom: 60px;
    margin-top: 60px;
    margin-bottom: 60px;
  }
}
.panel--green {
  background: #dbf0df;
}
.panel--blue {
  background: linear-gradient(to bottom, #274178 0%, #23A8DF 100%);
}
.panel--pink {
  background: rgb(252.4, 232.1, 233.6);
}
.panel--orange {
  background: #faf0e8;
}
.panel--grey {
  background: #f8f8f8;
}
.panel--transparent {
  background: transparent;
}
.panel--small {
  max-width: 960px;
}
.panel--medium {
  max-width: 1170px;
}
.panel--large {
  max-width: 1440px;
}
.panel--xl {
  max-width: 1660px;
}
.panel--small, .panel--medium, .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 .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 > * {
  max-width: 1170px;
}
.content--medium .slab > * {
  max-width: 1170px;
}
.content--medium .grid__template,
.content--medium .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--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--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--blue .panel__text > *,
.panel--blue .panel__text figcaption,
.panel--blue .panel__text blockquote *,
.panel--blue .panel__text a,
.panel--blue .text-content > *,
.panel--blue .text-content figcaption,
.panel--blue .text-content blockquote *,
.panel--blue .text-content a,
.panel--blue .cell > *,
.panel--blue .cell figcaption,
.panel--blue .cell blockquote *,
.panel--blue .cell a,
.panel--blue .text-container > *,
.panel--blue .text-container figcaption,
.panel--blue .text-container blockquote *,
.panel--blue .text-container a, .panel--custom-gradient .panel__text > *,
.panel--custom-gradient .panel__text figcaption,
.panel--custom-gradient .panel__text blockquote *,
.panel--custom-gradient .panel__text a,
.panel--custom-gradient .text-content > *,
.panel--custom-gradient .text-content figcaption,
.panel--custom-gradient .text-content blockquote *,
.panel--custom-gradient .text-content a,
.panel--custom-gradient .cell > *,
.panel--custom-gradient .cell figcaption,
.panel--custom-gradient .cell blockquote *,
.panel--custom-gradient .cell a,
.panel--custom-gradient .text-container > *,
.panel--custom-gradient .text-container figcaption,
.panel--custom-gradient .text-container blockquote *,
.panel--custom-gradient .text-container a {
  color: #ffffff;
}
.panel--blue .panel__text .snippet:before,
.panel--blue .text-content .snippet:before,
.panel--blue .cell .snippet:before,
.panel--blue .text-container .snippet:before, .panel--custom-gradient .panel__text .snippet:before,
.panel--custom-gradient .text-content .snippet:before,
.panel--custom-gradient .cell .snippet:before,
.panel--custom-gradient .text-container .snippet:before {
  background-color: #ffffff;
}
.panel--blue .panel__text blockquote:before,
.panel--blue .text-content blockquote:before,
.panel--blue .cell blockquote:before,
.panel--blue .text-container blockquote:before, .panel--custom-gradient .panel__text blockquote:before,
.panel--custom-gradient .text-content blockquote:before,
.panel--custom-gradient .cell blockquote:before,
.panel--custom-gradient .text-container blockquote:before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 62.4'%3E%3Cpath fill='%23ffffff' 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'/%3E%3C/svg%3E");
}
.panel--blue .panel__text > ul li:before,
.panel--blue .text-content > ul li:before,
.panel--blue .cell > ul li:before,
.panel--blue .text-container > ul li:before, .panel--custom-gradient .panel__text > ul li:before,
.panel--custom-gradient .text-content > ul li:before,
.panel--custom-gradient .cell > ul li:before,
.panel--custom-gradient .text-container > ul li:before {
  background-color: #ffffff;
}
.panel--blue .panel__text ::selection,
.panel--blue .text-content ::selection,
.panel--blue .cell ::selection,
.panel--blue .text-container ::selection, .panel--custom-gradient .panel__text ::selection,
.panel--custom-gradient .text-content ::selection,
.panel--custom-gradient .cell ::selection,
.panel--custom-gradient .text-container ::selection {
  background: #ffffff;
  color: #22AAE2;
}
.panel--blue .panel__text .box-decoration-title,
.panel--blue .panel__text .box-decoration-title a,
.panel--blue .text-content .box-decoration-title,
.panel--blue .text-content .box-decoration-title a,
.panel--blue .cell .box-decoration-title,
.panel--blue .cell .box-decoration-title a,
.panel--blue .text-container .box-decoration-title,
.panel--blue .text-container .box-decoration-title a, .panel--custom-gradient .panel__text .box-decoration-title,
.panel--custom-gradient .panel__text .box-decoration-title a,
.panel--custom-gradient .text-content .box-decoration-title,
.panel--custom-gradient .text-content .box-decoration-title a,
.panel--custom-gradient .cell .box-decoration-title,
.panel--custom-gradient .cell .box-decoration-title a,
.panel--custom-gradient .text-container .box-decoration-title,
.panel--custom-gradient .text-container .box-decoration-title a {
  color: #22AAE2;
}
.panel--blue .key-facts__fact > *,
.panel--blue .key-facts__fact a, .panel--custom-gradient .key-facts__fact > *,
.panel--custom-gradient .key-facts__fact a {
  color: #ffffff;
}
.panel--collapsible {
  padding-top: 0;
  padding-bottom: 0;
  border-radius: 0px;
  width: calc(99.99% - 2 * 20px);
}
.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: 850px;
}
.panel--collapsible__btn svg {
  fill: #000000;
  width: 24px;
  height: 14px;
  flex-shrink: 0;
  pointer-events: none;
  transition: all 0.3s ease-in-out;
  transform: rotate(180deg);
}
.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 h2 {
  padding-right: 0;
}
.panel--collapsible.collapsed .panel--collapsible__title + .panel--collapsible__body {
  display: none;
}
.panel--collapsible.collapsed .panel--collapsible__btn svg {
  transform: rotate(0deg);
}
.panel--collapsible.panel--blue .panel--collapsible__btn svg, .panel--collapsible.panel--custom-gradient .panel--collapsible__btn svg {
  fill: #ffffff;
}
@media (min-width: 48em) {
  .panel--collapsible {
    border-radius: 0px;
    width: calc(99.99% - 2 * 30px);
  }
  .panel--collapsible__body {
    padding-bottom: 40px;
  }
}
@media (min-width: 60em) {
  .panel--collapsible__btn {
    padding-top: 40px;
    padding-bottom: 40px;
  }
  .panel--collapsible__btn svg {
    margin-right: 20px;
  }
}

/*------------------------------------*\
  $SLABS
\*------------------------------------*/
.slab {
  margin-top: 30px;
  margin-bottom: 30px;
}
.slab > * {
  max-width: 1170px;
  margin-left: auto;
  margin-right: auto;
}
.slab__content {
  padding: 30px 25px 23px;
  position: relative;
  background-color: transparent;
  text-align: center;
}
.slab__title a {
  word-break: break-word;
}
.slab__icon {
  background-size: 26px;
  background-repeat: no-repeat;
  background-position: center center;
  height: 26px;
  width: 26px;
  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: 28px;
    width: 28px;
    background-size: 28px;
  }
}
@media (min-width: 67.5em) {
  .slab {
    margin-top: 60px;
    margin-bottom: 60px;
  }
}

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

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

.slab__icon--link-external {
  background-image: url(/background_images/application/template/icon--link-external.svg);
}

/*------------------------------------*\
  $SLABS-BRAND
\*------------------------------------*/
.slab__content {
  background: #f5f5f5;
  border-radius: 0px;
}
.panel--grey .slab__content {
  background-color: #ededed;
}
.slab .slab__title a {
  text-decoration: none;
  color: #434343;
}
.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: underline;
  color: #434343;
}
.slab__icon--wrapper {
  height: 40px;
  width: 40px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
}
.slab--download .slab__title {
  margin-bottom: 15px;
}
.slab--download .slab__filesize {
  font-weight: 700;
  font-family: "Rubik", "rubik-fallback-arial", trebuchet ms, helvetica, arial, sans-serif;
  font-size: 0.8125rem;
  margin-top: 15px;
}
.slab--cta {
  text-align: center;
}
.slab--cta .slab__content {
  padding: 0;
  background-color: #22AAE2;
  max-width: 540px;
}
.slab--cta .slab__title {
  margin-bottom: 0;
}
.slab--cta .btn {
  width: 100%;
  height: auto;
  padding: 15px 20px;
  font-size: 1.4375rem;
  justify-content: space-between;
}
.slab--cta .btn span {
  padding-right: 20px;
  text-align: left;
  line-height: 1.3;
  font-weight: 400;
  font-family: "Bebas Neue", "bebas-neue-fallback-impact", impact, arial narrow, arial, sans-serif;
  color: #101010;
}
.slab--cta .btn:after {
  content: "";
  width: 44px;
  height: 10px;
  background-size: 44px 10px;
  background-position: center center;
  background-repeat: no-repeat;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 24.5'%3E%3Cg fill='%23FFFFFF'%3E%3Cpolygon points='100,12.2 86.9,24.4 86.9,0 '/%3E%3Crect y='9.8' width='91' height='4.9'/%3E%3C/g%3E%3C/svg%3E");
  transition: transform 0.2s ease-in-out;
  flex-shrink: 0;
}
.slab--cta .btn:hover:after, .slab--cta .btn:active:after, .slab--cta .btn:focus:after {
  transform: translateX(5px);
}
@media (min-width: 48em) {
  .slab__content {
    border-radius: 0px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    padding-left: 30px;
    padding-right: 35px;
  }
  .slab--download p {
    margin-bottom: 0;
    padding-right: 60px;
  }
  .slab--download .slab__content {
    padding-top: 35px;
  }
  .slab--download .slab__title {
    margin-bottom: 10px;
  }
  .slab--download .slab__group {
    width: 100%;
  }
  .slab--download .slab__filesize {
    margin-top: 20px;
  }
  .slab--download .slab__icon--wrapper {
    position: absolute;
    right: 35px;
    top: 50%;
    transform: translateY(-50%);
    margin-top: 0;
  }
  .slab--link .slab__content {
    align-items: center;
  }
  .slab--link .slab__title {
    margin: 0;
  }
  .slab--cta .slab__content {
    max-width: 450px;
  }
  .slab--cta .slab__title {
    width: 100%;
  }
  .slab--cta .btn {
    min-width: 250px;
    width: 100%;
    flex-shrink: 0;
    font-size: 1.625rem;
    padding: 20px 25px;
  }
}
@media (min-width: 60em) {
  .slab--download .slab__filesize {
    font-size: 0.875rem;
  }
  .slab--cta .slab__content {
    max-width: 560px;
  }
  .slab--cta .slab__title {
    margin: 0;
  }
  .slab--cta .btn {
    flex-shrink: 0;
    min-height: 100px;
    height: auto;
    font-size: 1.8125rem;
    padding: 30px 40px;
  }
}

/*------------------------------------*\
  $TAG-RESULTS
\*------------------------------------*/
.page__title:has(.page__title--tag) {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}

.page__title--tag {
  font-weight: 500;
  font-size: 1.5rem;
  line-height: 1.25rem;
  font-weight: 500;
  font-family: "Rubik", "rubik-fallback-arial", trebuchet ms, helvetica, arial, sans-serif;
}

.page__title .page__title--tag {
  padding: 0.5rem;
  color: #222222;
}

@media (min-width: 60em) {
  .page__title:has(.page__title--tag) {
    gap: 1.25rem;
  }
  .page__title--tag {
    font-size: 1.5rem;
    line-height: 2rem;
  }
  .page__title .page__title--tag {
    padding: 1rem 1.25rem;
  }
}
/*------------------------------------*\
  $NEWSLETTER SIGNUP FORM
\*------------------------------------*/
.newsletter-signup {
  background-color: #22AAE2;
  padding: 30px 25px 23px;
}
.newsletter-signup .newsletter-title {
  color: #ffffff;
  margin-top: 0;
}
.newsletter-signup p {
  color: #ffffff;
}
.newsletter-signup .btn {
  width: 100%;
  margin-top: 20px;
}
@media (min-width: 48em) {
  .newsletter-signup .btn {
    width: auto;
    margin-top: 0;
    margin-left: 20px;
  }
  .newsletter-signup input {
    flex: 1;
    width: auto;
  }
  .newsletter-signup .newsletter-inputs {
    display: flex;
  }
  .newsletter-signup form {
    max-width: none;
  }
}
@media (min-width: 60em) {
  .newsletter-signup .btn {
    width: 200px;
  }
}

.layout__container:last-child .panel__newsletter-signup {
  margin-bottom: 0px;
}

/*------------------------------------*\
  $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 > * {
    padding: 0 20px;
  }
  .full-bleed-mobile .grid__container .cell > figure,
  .full-bleed-mobile .grid__container .cell > .post {
    padding: 0;
  }
  .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) {
  .content--full .grid__no-gap .cell > * {
    padding: 0 20px;
  }
  .content--full .grid__no-gap .cell > figure,
  .content--full .grid__no-gap .cell > .post {
    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 > *:first-child {
  margin-top: 0;
}
.cell:last-of-type > *: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 30px;
  color: #ffffff;
  border-radius: 0px;
}
.cell--has-bg-style > *:first-child {
  margin-top: 0;
}
.cell--has-bg-style > *:last-child {
  margin-bottom: 0;
}
.cell--has-bg-style > *,
.cell--has-bg-style a {
  color: #ffffff;
}
.cell--has-bg-style blockquote p {
  color: #ffffff;
}
.cell--has-bg-style blockquote:before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 62.4'%3E%3Cpath fill='%23ffffff' 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'/%3E%3C/svg%3E");
}
.cell--has-bg-style .snippet:before {
  background: #ffffff;
}
.cell--has-bg-style > ul li:before {
  background-color: #ffffff;
}
.cell--has-bg-style .box-decoration-title,
.cell--has-bg-style .box-decoration-title a {
  color: #22AAE2;
}

@media (min-width: 48em) {
  .cell > *:first-child {
    margin-top: 0;
  }
  .cell > *:last-child {
    margin-bottom: 0;
  }
  .cell--has-bg-style {
    padding: 20px 30px;
    border-radius: 0px;
  }
  .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 > *, .cell.vertically-align-bottom > * {
    margin-top: 0;
  }
  .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;
  }
}
.grid__template picture {
  background-color: #e0e0e2;
  border-radius: 0px;
  -webkit-mask-image: -webkit-radial-gradient(white, black);
}
@media (min-width: 48em) {
  .grid__template picture {
    border-radius: 0px;
  }
}
@media (min-width: 48em) {
  .grid__template--halves > .cell-1.cell--has-text:not(.cell--has-bg-style), .grid__template--thirds > .cell-1.cell--has-text:not(.cell--has-bg-style), .grid__template--two-thirds-one-third > .cell-1.cell--has-text:not(.cell--has-bg-style), .grid__template--one-third-two-thirds > .cell-1.cell--has-text:not(.cell--has-bg-style) {
    padding-right: 20px;
  }
}
@media (min-width: 67.5em) {
  .grid__template--halves > .cell-1.cell--has-text:not(.cell--has-bg-style), .grid__template--thirds > .cell-1.cell--has-text:not(.cell--has-bg-style), .grid__template--two-thirds-one-third > .cell-1.cell--has-text:not(.cell--has-bg-style), .grid__template--one-third-two-thirds > .cell-1.cell--has-text:not(.cell--has-bg-style) {
    padding-right: 40px;
  }
}
@media (min-width: 48em) {
  .grid__template--thirds > .cell-2.cell--has-text:not(.cell--has-bg-style) {
    padding-right: 20px;
  }
}
@media (min-width: 67.5em) {
  .grid__template--thirds > .cell-2.cell--has-text:not(.cell--has-bg-style) {
    padding-right: 40px;
  }
}

/*------------------------------------*\
  $GRID-TEMPLATES-BRAND
\*------------------------------------*/
.grid__template--halves picture, .grid__template--quarters picture {
  position: relative;
  padding-bottom: 56%;
  overflow: hidden;
}
.grid__template--halves picture img,
.grid__template--halves picture video,
.grid__template--halves picture iframe,
.grid__template--halves picture object,
.grid__template--halves picture embed, .grid__template--quarters picture img,
.grid__template--quarters picture video,
.grid__template--quarters picture iframe,
.grid__template--quarters picture object,
.grid__template--quarters picture embed {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}
.grid__template--halves picture iframe,
.grid__template--halves picture object,
.grid__template--halves picture embed, .grid__template--quarters picture iframe,
.grid__template--quarters picture object,
.grid__template--quarters picture embed {
  width: 100%;
  height: 100.2%;
}
.grid__template--thirds picture {
  position: relative;
  padding-bottom: 100%;
  overflow: hidden;
}
.grid__template--thirds picture img,
.grid__template--thirds picture video,
.grid__template--thirds picture iframe,
.grid__template--thirds picture object,
.grid__template--thirds picture embed {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}
.grid__template--thirds picture iframe,
.grid__template--thirds picture object,
.grid__template--thirds picture embed {
  width: 100%;
  height: 100.2%;
}
.grid__template--one-third-two-thirds > .cell-1 picture {
  position: relative;
  padding-bottom: 100%;
  overflow: hidden;
}
.grid__template--one-third-two-thirds > .cell-1 picture img,
.grid__template--one-third-two-thirds > .cell-1 picture video,
.grid__template--one-third-two-thirds > .cell-1 picture iframe,
.grid__template--one-third-two-thirds > .cell-1 picture object,
.grid__template--one-third-two-thirds > .cell-1 picture embed {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}
.grid__template--one-third-two-thirds > .cell-1 picture iframe,
.grid__template--one-third-two-thirds > .cell-1 picture object,
.grid__template--one-third-two-thirds > .cell-1 picture embed {
  width: 100%;
  height: 100.2%;
}
.grid__template--one-third-two-thirds > .cell-2 picture {
  position: relative;
  padding-bottom: 50%;
  overflow: hidden;
}
.grid__template--one-third-two-thirds > .cell-2 picture img,
.grid__template--one-third-two-thirds > .cell-2 picture video,
.grid__template--one-third-two-thirds > .cell-2 picture iframe,
.grid__template--one-third-two-thirds > .cell-2 picture object,
.grid__template--one-third-two-thirds > .cell-2 picture embed {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}
.grid__template--one-third-two-thirds > .cell-2 picture iframe,
.grid__template--one-third-two-thirds > .cell-2 picture object,
.grid__template--one-third-two-thirds > .cell-2 picture embed {
  width: 100%;
  height: 100.2%;
}
.grid__template--two-thirds-one-third > .cell-1 picture {
  position: relative;
  padding-bottom: 50%;
  overflow: hidden;
}
.grid__template--two-thirds-one-third > .cell-1 picture img,
.grid__template--two-thirds-one-third > .cell-1 picture video,
.grid__template--two-thirds-one-third > .cell-1 picture iframe,
.grid__template--two-thirds-one-third > .cell-1 picture object,
.grid__template--two-thirds-one-third > .cell-1 picture embed {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}
.grid__template--two-thirds-one-third > .cell-1 picture iframe,
.grid__template--two-thirds-one-third > .cell-1 picture object,
.grid__template--two-thirds-one-third > .cell-1 picture embed {
  width: 100%;
  height: 100.2%;
}
.grid__template--two-thirds-one-third > .cell-2 picture {
  position: relative;
  padding-bottom: 100%;
  overflow: hidden;
}
.grid__template--two-thirds-one-third > .cell-2 picture img,
.grid__template--two-thirds-one-third > .cell-2 picture video,
.grid__template--two-thirds-one-third > .cell-2 picture iframe,
.grid__template--two-thirds-one-third > .cell-2 picture object,
.grid__template--two-thirds-one-third > .cell-2 picture embed {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}
.grid__template--two-thirds-one-third > .cell-2 picture iframe,
.grid__template--two-thirds-one-third > .cell-2 picture object,
.grid__template--two-thirds-one-third > .cell-2 picture embed {
  width: 100%;
  height: 100.2%;
}

/*------------------------------------*\
  $KEY-FACTS
\*------------------------------------*/
.key-facts {
  text-align: center;
  display: block;
  margin: 0;
}
.key-facts__title,
.key-facts p {
  margin: 0;
}
* + .key-facts__title,
* + .key-facts p {
  margin-top: 20px;
}
.key-facts__title + p,
.key-facts p + p {
  margin-top: 10px;
}
.key-facts__title {
  font-size: 1.4375rem;
}
.key-facts__title a {
  font-size: 1.4375rem;
  text-decoration: none;
  color: #222222;
}
.key-facts__title a:before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1;
}
.key-facts__image {
  height: 80px;
  margin-top: 0;
  display: block;
  width: auto;
}
.key-facts__fact {
  width: 100%;
  margin-bottom: 30px;
  display: block;
  padding: 20px;
}
.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;
}
.key-facts__fact--link:hover, .key-facts__fact--link:active, .key-facts__fact--link:focus {
  background: linear-gradient(to bottom, #274178 0%, #23A8DF 100%);
}
.key-facts__fact--link:hover .key-facts__title a, .key-facts__fact--link:active .key-facts__title a, .key-facts__fact--link:focus .key-facts__title a {
  text-decoration: underline;
}
.key-facts__fact--link:hover .key-facts__title,
.key-facts__fact--link:hover .key-facts__title a,
.key-facts__fact--link:hover p, .key-facts__fact--link:active .key-facts__title,
.key-facts__fact--link:active .key-facts__title a,
.key-facts__fact--link:active p, .key-facts__fact--link:focus .key-facts__title,
.key-facts__fact--link:focus .key-facts__title a,
.key-facts__fact--link:focus p {
  color: #ffffff;
}
.panel--custom-gradient .key-facts__fact--link:hover, .panel--blue .key-facts__fact--link:hover, .panel--custom-gradient .key-facts__fact--link:active, .panel--blue .key-facts__fact--link:active, .panel--custom-gradient .key-facts__fact--link:focus, .panel--blue .key-facts__fact--link:focus {
  background: transparent;
}
@media (min-width: 48em) {
  .key-facts {
    display: flex;
    flex-wrap: wrap;
  }
  .key-facts__title {
    margin-top: 0;
  }
  .key-facts__title + p {
    margin-top: 15px;
  }
  .key-facts p {
    margin-bottom: 0;
  }
  .key-facts__image + .key-facts__title,
  .key-facts__image + p {
    margin-top: 25px;
  }
  .key-facts__image {
    height: 85px;
  }
  .key-facts__title, .key-facts__title a {
    font-size: 1.625rem;
  }
  .key-facts__fact {
    padding: 30px;
    width: calc((99.99% - 40px) / 2);
    margin-right: 40px;
    margin-bottom: 20px;
    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;
  }
  .key-facts--has-dividers .key-facts__fact:after {
    content: "";
    position: absolute;
    top: 50%;
    height: 50%;
    max-height: 120px;
    width: 1px;
    background: rgba(0, 0, 0, 0.15);
    right: calc(40px / 2 * -1);
    transform: translateY(-50%);
  }
  .panel--custom-gradient .key-facts--has-dividers .key-facts__fact:after, .panel--blue .key-facts--has-dividers .key-facts__fact:after {
    background: rgba(255, 255, 255, 0.5);
  }
  .key-facts--has-dividers .key-facts__fact:nth-child(even):after, .key-facts--has-dividers .key-facts__fact:last-child:after {
    display: none;
  }
}
@media (min-width: 75em) {
  .key-facts__title + p {
    margin-top: 20px;
  }
  .key-facts__image {
    height: 90px;
  }
  .key-facts__image + .key-facts__title,
  .key-facts__image + p {
    margin-top: 30px;
  }
  .key-facts__title, .key-facts__title a {
    font-size: 1.8125rem;
  }
  .key-facts__fact {
    padding: 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;
  }
  .key-facts--has-dividers .key-facts__fact:nth-child(even):after {
    display: block;
  }
  .key-facts--has-dividers .key-facts__fact:nth-child(4n+4):after {
    display: none;
  }
  .key-facts--has-dividers .key-facts__fact:last-child:after {
    display: none;
  }
}

/*------------------------------------*\
  $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;
  width: 40px;
  height: 40px;
  margin-right: 5px;
  border: 1px solid #e2e2e2;
  font-size: 0.875rem;
}
.pagination .first,
.pagination .last,
.pagination .next,
.pagination .prev {
  text-transform: none;
}
.pagination .next,
.pagination .prev {
  width: 60px;
  font-size: 0.875rem;
}
.pagination a,
.pagination .current,
.pagination .gap {
  font-weight: 500;
  font-family: "Rubik", "rubik-fallback-arial", trebuchet ms, helvetica, arial, sans-serif;
}
.pagination a {
  text-decoration: none;
  height: 100%;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #434343;
}
.pagination a:hover, .pagination a:active, .pagination a:focus {
  text-decoration: underline;
}
.pagination .gap {
  border: none;
}
.pagination .current {
  color: #ffffff;
  background: #22AAE2;
  border-color: transparent;
}
.pagination .page__text {
  height: 100%;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.pagination__pages {
  font-size: 0;
}
@media (max-width: 29.99em) {
  .pagination .next,
  .pagination .prev {
    display: none;
  }
}
@media (min-width: 48em) {
  .pagination .page,
  .pagination .next,
  .pagination .prev {
    width: 50px;
    height: 50px;
    margin-right: 10px;
    font-size: 0.9375rem;
  }
  .pagination .next,
  .pagination .prev {
    width: 70px;
  }
}
.pagination__pages > *:last-child {
  margin-right: 0;
}

.logo-strip {
  display: flex;
  align-items: center;
}
.logo-strip img {
  height: 100%;
  width: 100%;
  object-fit: contain;
}
.logo-strip__wrapper {
  padding-top: 30px;
  padding-bottom: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}
.logo-strip__wrapper .glide__track {
  width: 1440px;
}
.logo-strip__item picture {
  height: 64px;
}
.logo-strip__item img {
  max-width: 120px;
}
.logo-strip__item a {
  height: 100%;
  width: 100%;
}
.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__wrapper {
    padding-top: 40px;
    padding-bottom: 40px;
  }
}
@media (min-width: 60em) {
  .logo-strip__wrapper {
    padding-top: 35px;
    padding-bottom: 35px;
  }
}
@media (min-width: 75em) {
  .logo-strip__item img {
    max-width: 180px;
  }
}
@media (min-width: 90em) {
  .logo-strip__item picture {
    height: 70px;
  }
  .logo-strip__item img {
    max-width: 200px;
  }
  .logo-strip__item-iframe picture {
    width: 70px;
  }
}

/*------------------------------------*\
  $LOGO-SLIDER
\*------------------------------------*/
.logo-slider__image img {
  max-width: 125px;
  max-height: 85px;
  width: initial;
}
.logo-slider__slides {
  flex-wrap: wrap;
}
.logo-slider__slide {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 85px;
}
@media (max-width: 47.99em) {
  .logo-slider__slide {
    width: calc((99.99% - 10px) / 2);
    margin-right: 10px;
    margin-bottom: 50px;
  }
  .logo-slider__slide:nth-child(2n+2) {
    margin-right: 0;
  }
  .logo-slider__slide:nth-last-child(-n+2):nth-child(2n+1) {
    margin-bottom: 0;
  }
  .logo-slider__slide:nth-last-child(-n+2):nth-child(2n+1) ~ .logo-slider__slide {
    margin-bottom: 0;
  }
  .logo-slider__slide:last-child:nth-child(odd) {
    width: 100%;
    margin-right: 0;
  }
}
@media (min-width: 48em) {
  .logo-slider__slides {
    flex-wrap: nowrap;
  }
  .logo-slider__slide {
    min-width: 20%;
    flex: 1;
  }
  .logo-slider--active .logo-slider__slide {
    min-width: auto;
    flex: initial;
  }
}
@media (min-width: 75em) {
  .logo-slider__slide {
    height: 110px;
  }
  .logo-slider__image img {
    max-width: 180px;
    max-height: 110px;
  }
}

/*------------------------------------*\
  $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: 60px;
  }
}
.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-THEME
\*------------------------------------*/
.cc_div {
  font-weight: 300;
  font-family: "Rubik", "rubik-fallback-arial", trebuchet ms, helvetica, arial, sans-serif;
}

#cm-ov,
#cs-ov {
  background: rgba(4, 6, 8, 0.85);
}

#cm {
  background: #ffffff;
  max-width: 400px;
  max-height: none;
  left: 20px;
  right: 20px;
  bottom: 20px;
  width: auto;
  height: auto;
  margin-left: auto;
  border-radius: 0px;
  color: #000000;
  animation-name: fade-in-slide-up;
}
#cm a {
  color: #0879a6;
}
#cm a:hover, #cm a:active, #cm a:focus {
  color: #0879a6;
}
@media (min-width: 48em) {
  #cm {
    border-radius: 0px;
  }
}

#c-ttl {
  font-weight: 500;
  font-family: "Rubik", "rubik-fallback-arial", trebuchet ms, helvetica, arial, sans-serif;
  color: #0879a6;
}
#c-txt {
  line-height: 1.7;
}
#c-bns {
  display: flex;
  flex-direction: column-reverse;
}
#c-bns button#c-s-bn {
  background: #ccc;
  color: #222222;
}
#c-bns button:first-child {
  margin-top: 0;
  background: #22AAE2;
  color: #000000;
}
#c-bns button + button {
  margin-top: 10px;
}
#c-bns button:hover#c-s-bn, #c-bns button:active#c-s-bn, #c-bns button:focus#c-s-bn {
  background: #a3a3a3;
  color: #222222;
}
#c-bns button:hover:first-child, #c-bns button:active:first-child, #c-bns button:focus:first-child {
  background: rgb(27.202, 154.77, 207.298);
  color: #000000;
}
@media screen and (min-width: 688px) {
  #c-bns {
    flex-direction: row-reverse;
    justify-content: space-between;
  }
  #c-bns button + button {
    margin-top: 0;
    margin-left: 0;
    margin-right: 10px;
  }
  #c-bns button:first-child {
    margin-top: 0;
  }
}

#s-cnt {
  color: #0879a6;
}
#s-cnt #s-c-bn {
  background: #22AAE2;
}
#s-cnt #s-c-bn:before, #s-cnt #s-c-bn:after {
  background: #ffffff;
}
#s-cnt .p {
  color: #000000;
}
#s-cnt .p a {
  color: #0879a6;
}
#s-cnt .b-ex .p {
  color: #222222;
}
#s-cnt .b-bn .b-tl:hover, #s-cnt .b-bn .b-tl:active, #s-cnt .b-bn .b-tl:focus {
  background: #ccc;
}
#s-cnt .c-tg {
  background: #535659;
}
#s-cnt .c-tgl:checked ~ .c-tg {
  background: #22AAE2;
}
#s-cnt table {
  color: #222222;
  margin-bottom: 10px;
}
@media (min-width: 48em) {
  #s-cnt table th,
  #s-cnt table td {
    padding: 10px;
  }
}
#s-inr {
  background: transparent;
}
#s-hdr, #s-bl, #s-bns {
  background: #ffffff;
  padding-left: 20px;
  padding-right: 20px;
}
#s-bl {
  color: #000000;
  overscroll-behavior-y: contain;
}
#s-hdr {
  border-bottom: 1px solid #000000;
  color: #000000;
}
#s-bns {
  height: auto;
}
#s-bns button#s-all-bn {
  background: #22AAE2;
  color: #000000;
}
#s-bns button#s-all-bn:hover, #s-bns button#s-all-bn:active, #s-bns button#s-all-bn:focus {
  background: rgb(27.202, 154.77, 207.298);
  color: #000000;
}
#s-bns button#s-rall-bn, #s-bns button#s-sv-bn {
  background: #ccc;
  color: #222222;
}
#s-bns button#s-rall-bn:hover, #s-bns button#s-rall-bn:active, #s-bns button#s-rall-bn:focus, #s-bns button#s-sv-bn:hover, #s-bns button#s-sv-bn:active, #s-bns button#s-sv-bn:focus {
  background: #a3a3a3;
  color: #222222;
}

.show--settings {
  width: 100%;
  overflow: hidden;
}

.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(/background_images/application/template/video-not-allowed.jpg);
  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-color: #22AAE2;
}

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

/*------------------------------------*\
  $CTA-WIDGETS
\*------------------------------------*/
.cta-widget {
  box-shadow: -1px 3px 10px 0px rgba(0, 0, 0, 0.2);
}
.cta-widgets {
  position: fixed;
  right: 0;
  bottom: 40px;
  width: 160px;
  z-index: 18;
  will-change: transform; /* will animate, let the browser know before time */
  transform: translateX(320px);
  animation: cta-widget-slide-in 0.5s;
  animation-delay: 2s;
  animation-fill-mode: forwards;
}
.cta-widget__link {
  position: relative;
  display: flex;
  padding: 10px 12px;
  font-size: 1.4375rem;
  line-height: 1;
  height: auto;
  text-align: left;
}
.cta-widget__link:after {
  content: "";
  position: absolute;
  bottom: 14px;
  right: 15px;
  width: 37px;
  height: 9px;
  background-size: 37px 9px;
  background-position: center center;
  background-repeat: no-repeat;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 24.5'%3E%3Cg fill='%2322AAE2'%3E%3Cpolygon points='100,12.2 86.9,24.4 86.9,0 '/%3E%3Crect y='9.8' width='91' height='4.9'/%3E%3C/g%3E%3C/svg%3E");
  transition: transform 0.2s ease-in-out;
}
.cta-widget__link:hover:after, .cta-widget__link:active:after, .cta-widget__link:focus:after {
  transform: translateX(5px);
}
@media (min-width: 48em) {
  .cta-widgets {
    top: 390px;
    bottom: auto;
    width: 260px;
  }
  .cta-widget__link {
    width: 260px;
    font-size: 1.625rem;
    padding: 25px 30px 25px 20px;
  }
  .cta-widget__link:after {
    bottom: 32px;
    right: 30px;
  }
  .cta-widget br {
    display: none;
  }
}
@media (min-width: 60em) {
  .cta-widgets {
    width: 320px;
  }
  .cta-widget__link {
    font-size: 1.8125rem;
    width: 320px;
    padding: 35px 50px 35px 30px;
  }
  .cta-widget__link:after {
    bottom: 43px;
    right: 40px;
    width: 44px;
    height: 10px;
    background-size: 44px 10px;
  }
}
@media (min-width: 67.5em) {
  .cta-widgets {
    top: 450px;
  }
}
@media (min-width: 100em) {
  .cta-widgets {
    top: 545px;
  }
}

@keyframes cta-widget-slide-in {
  from {
    transform: translateX(320px);
  }
  to {
    transform: translateX(0);
  }
}
/*------------------------------------*\
  $MODULAR-OPTIONS
\*------------------------------------*/
.modular-option__button {
  height: 120px;
  background: #f8f8f8;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  color: #222222;
  text-decoration: none;
  margin-bottom: 10px;
  font-weight: 500;
  font-family: "Rubik", "rubik-fallback-arial", trebuchet ms, helvetica, arial, sans-serif;
  font-size: 0.9375rem;
  position: relative;
}
.modular-option__button:last-child {
  margin-bottom: 0;
}
.modular-option__button:before {
  content: "";
  position: absolute;
  top: 50%;
  left: 30px;
  transform: translateY(-50%);
  width: 72px;
  height: 75px;
  background-size: 72px 75px;
  background-repeat: no-repeat;
  background-position: center center;
}
.modular-option__button span {
  margin-left: 120px;
  margin-right: 10px;
  font-size: 0.9375rem;
}
.modular-option__button:hover, .modular-option__button:active, .modular-option__button:focus {
  background: linear-gradient(to bottom, #274178 0%, #23A8DF 100%);
  color: #ffffff;
  text-decoration: none;
}
.modular-option__sector:before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 83 87.2'%3E%3Cg fill='%231D1D1B'%3E%3Cpath d='M83,25.4c0-1.3-0.5-2.6-1.5-3.6l-5.3-5.3c-1-1-2.3-1.5-3.6-1.5c-1.3,0-2.6,0.5-3.6,1.5l0,0L26.8,59.2 c-0.1,0.1-0.2,0.2-0.2,0.4l-5.4,16.5c-0.1,0.4,0,0.8,0.2,1c0.3,0.3,0.7,0.4,1,0.2l16.5-5.4c0.2-0.1,0.3-0.1,0.4-0.2L81.5,29l0,0 C82.5,28,83,26.7,83,25.4z M39.2,68.9l-9.7-9.7L64,24.4l9.7,9.7C73.7,34,39.2,68.9,39.2,68.9z M28.2,60.8l9.4,9.4l-14,4.6 C23.7,74.8,28.2,60.8,28.2,60.8z M80.1,27.6L80.1,27.6l-5,5l-9.7-9.7l5-5c0.6-0.6,1.4-0.9,2.2-0.9c0.8,0,1.6,0.3,2.2,0.9l5.3,5.3 c0.6,0.6,0.9,1.4,0.9,2.2C81,26.2,80.7,27,80.1,27.6L80.1,27.6z'/%3E%3Cpath d='M38.6,79.8c-0.6,0-1,0.5-1,1h0v4.3H2V49.5l25.4,0c0.6,0,1-0.5,1-1c0-0.6-0.5-1-1-1L1,47.5 c-0.3,0-0.5,0.1-0.7,0.3C0.1,48,0,48.2,0,48.5v37.6c0,0.3,0.1,0.5,0.3,0.7C0.5,87,0.7,87.1,1,87.1h37.6c0.3,0,0.5-0.1,0.7-0.3 c0.2-0.2,0.3-0.4,0.3-0.7v-5.3C39.7,80.2,39.2,79.8,38.6,79.8z'/%3E%3Cpath d='M1,39.7h37.6c0.3,0,0.5-0.1,0.7-0.3c0.2-0.2,0.3-0.4,0.3-0.7V21.8c0-0.6-0.5-1-1-1c-0.6,0-1,0.5-1,1h0 c0,6.9,0,13.4,0,15.9H2L2,2h27.5c0.6,0,1-0.5,1-1c0-0.6-0.5-1-1-1C24,0,16.9,0,11.1,0C5.4,0,1,0,1,0C0.7,0,0.5,0.1,0.3,0.3 C0.1,0.5,0,0.7,0,1v37.6c0,0.3,0.1,0.5,0.3,0.7C0.5,39.6,0.7,39.7,1,39.7L1,39.7z'/%3E%3Cpath d='M12.9,15.6c-0.4-0.4-1-0.4-1.4,0c-0.4,0.4-0.4,1,0,1.4c1.5,1.5,3.6,3.6,5.2,5.2c1.7,1.7,2.9,2.9,2.9,2.9 c0.2,0.2,0.4,0.3,0.7,0.3c0.3,0,0.5-0.1,0.7-0.3L42.2,4c0.4-0.4,0.4-1,0-1.4c-0.4-0.4-1-0.4-1.4,0l0,0L20.3,23.1 C18.8,21.5,15.2,18,12.9,15.6L12.9,15.6z'/%3E%3C/g%3E%3C/svg%3E%0A");
}
.modular-option__sector:hover:before, .modular-option__sector:active:before, .modular-option__sector:focus:before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 83 87.2'%3E%3Cg fill='%23FFFFFF'%3E%3Cpath d='M83,25.4c0-1.3-0.5-2.6-1.5-3.6l-5.3-5.3c-1-1-2.3-1.5-3.6-1.5c-1.3,0-2.6,0.5-3.6,1.5l0,0L26.8,59.2 c-0.1,0.1-0.2,0.2-0.2,0.4l-5.4,16.5c-0.1,0.4,0,0.8,0.2,1c0.3,0.3,0.7,0.4,1,0.2l16.5-5.4c0.2-0.1,0.3-0.1,0.4-0.2L81.5,29l0,0 C82.5,28,83,26.7,83,25.4z M39.2,68.9l-9.7-9.7L64,24.4l9.7,9.7C73.7,34,39.2,68.9,39.2,68.9z M28.2,60.8l9.4,9.4l-14,4.6 C23.7,74.8,28.2,60.8,28.2,60.8z M80.1,27.6L80.1,27.6l-5,5l-9.7-9.7l5-5c0.6-0.6,1.4-0.9,2.2-0.9c0.8,0,1.6,0.3,2.2,0.9l5.3,5.3 c0.6,0.6,0.9,1.4,0.9,2.2C81,26.2,80.7,27,80.1,27.6L80.1,27.6z'/%3E%3Cpath d='M38.6,79.8c-0.6,0-1,0.5-1,1h0v4.3H2V49.5l25.4,0c0.6,0,1-0.5,1-1c0-0.6-0.5-1-1-1L1,47.5 c-0.3,0-0.5,0.1-0.7,0.3C0.1,48,0,48.2,0,48.5v37.6c0,0.3,0.1,0.5,0.3,0.7C0.5,87,0.7,87.1,1,87.1h37.6c0.3,0,0.5-0.1,0.7-0.3 c0.2-0.2,0.3-0.4,0.3-0.7v-5.3C39.7,80.2,39.2,79.8,38.6,79.8z'/%3E%3Cpath d='M1,39.7h37.6c0.3,0,0.5-0.1,0.7-0.3c0.2-0.2,0.3-0.4,0.3-0.7V21.8c0-0.6-0.5-1-1-1c-0.6,0-1,0.5-1,1h0 c0,6.9,0,13.4,0,15.9H2L2,2h27.5c0.6,0,1-0.5,1-1c0-0.6-0.5-1-1-1C24,0,16.9,0,11.1,0C5.4,0,1,0,1,0C0.7,0,0.5,0.1,0.3,0.3 C0.1,0.5,0,0.7,0,1v37.6c0,0.3,0.1,0.5,0.3,0.7C0.5,39.6,0.7,39.7,1,39.7L1,39.7z'/%3E%3Cpath d='M12.9,15.6c-0.4-0.4-1-0.4-1.4,0c-0.4,0.4-0.4,1,0,1.4c1.5,1.5,3.6,3.6,5.2,5.2c1.7,1.7,2.9,2.9,2.9,2.9 c0.2,0.2,0.4,0.3,0.7,0.3c0.3,0,0.5-0.1,0.7-0.3L42.2,4c0.4-0.4,0.4-1,0-1.4c-0.4-0.4-1-0.4-1.4,0l0,0L20.3,23.1 C18.8,21.5,15.2,18,12.9,15.6L12.9,15.6z'/%3E%3C/g%3E%3C/svg%3E%0A");
}
.modular-option__talk span {
  margin-left: 130px;
}
.modular-option__talk:before {
  width: 75px;
  background-size: 75px 75px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 87 87'%3E%3Cg fill='%231D1D1B'%3E%3Cpath d='M81.2,57.2c3.6-5.8,5.8-12.6,5.8-19.9C87,16.7,70.3,0,49.7,0C29.1,0,12.3,16.7,12.3,37.3c0,20.6,16.7,37.3,37.3,37.3 c7.3,0,14.1-2.1,19.9-5.8l16.1,5.7c0.4,0.1,0.8,0,1.1-0.2c0.3-0.3,0.4-0.7,0.2-1.1C86.9,73.3,81.2,57.2,81.2,57.2z M69.8,66.8 c-0.3-0.1-0.6-0.1-0.9,0.1c-5.5,3.6-12.1,5.7-19.2,5.7c-9.8,0-18.6-4-25-10.3c-6.4-6.4-10.3-15.2-10.3-25c0-9.8,4-18.6,10.3-25 C31.1,6,39.9,2,49.7,2c9.8,0,18.6,4,25,10.3C81,18.8,85,27.6,85,37.3c0,7.1-2.1,13.7-5.7,19.2c-0.2,0.3-0.2,0.6-0.1,0.9L84.3,72 L69.8,66.8L69.8,66.8z'/%3E%3Cpath d='M46.7,81L46.7,81c-4.4,2.5-9.5,4-14.9,4c-6,0-11.6-1.8-16.2-4.8C15.4,80,15,79.9,14.7,80L2.7,84.3L7,72.3 C7.1,72,7,71.6,6.8,71.4C3.8,66.7,2,61.1,2,55.1c0-5.6,1.5-10.8,4.2-15.2c0.3-0.5,0.1-1.1-0.4-1.4c-0.5-0.3-1.1-0.1-1.4,0.4 C1.6,43.6,0,49.2,0,55.1c0,6.2,1.8,12,4.9,16.9L0.1,85.7c-0.1,0.4,0,0.8,0.2,1.1C0.6,87,1,87.1,1.3,86.9L15,82.1 c4.9,3.1,10.7,4.9,16.9,4.9c5.8,0,11.2-1.5,15.9-4.2c0.5-0.3,0.6-0.9,0.4-1.4C47.8,80.9,47.2,80.7,46.7,81L46.7,81z'/%3E%3Cpath d='M30.1,31.7c-2.8,0-5.1,2.3-5.1,5.1c0,2.8,2.3,5.1,5.1,5.1c2.8,0,5.1-2.3,5.1-5.1C35.2,33.9,33,31.7,30.1,31.7z M30.1,39.8 c-1.7,0-3.1-1.4-3.1-3.1c0-1.7,1.4-3.1,3.1-3.1c1.7,0,3.1,1.4,3.1,3.1C33.2,38.5,31.8,39.8,30.1,39.8z'/%3E%3Cpath d='M49.7,31.7c-2.8,0-5.1,2.3-5.1,5.1c0,2.8,2.3,5.1,5.1,5.1c2.8,0,5.1-2.3,5.1-5.1C54.8,33.9,52.5,31.7,49.7,31.7z M49.7,39.8 c-1.7,0-3.1-1.4-3.1-3.1c0-1.7,1.4-3.1,3.1-3.1c1.7,0,3.1,1.4,3.1,3.1C52.7,38.5,51.4,39.8,49.7,39.8z'/%3E%3Cpath d='M69.2,31.7c-2.8,0-5.1,2.3-5.1,5.1c0,2.8,2.3,5.1,5.1,5.1c2.8,0,5.1-2.3,5.1-5.1C74.3,33.9,72,31.7,69.2,31.7z M69.2,39.8 c-1.7,0-3.1-1.4-3.1-3.1c0-1.7,1.4-3.1,3.1-3.1c1.7,0,3.1,1.4,3.1,3.1C72.3,38.5,70.9,39.8,69.2,39.8z'/%3E%3C/g%3E%3C/svg%3E%0A");
}
.modular-option__talk:hover:before, .modular-option__talk:active:before, .modular-option__talk:focus:before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 87 87'%3E%3Cg fill='%23FFFFFF'%3E%3Cpath d='M81.2,57.2c3.6-5.8,5.8-12.6,5.8-19.9C87,16.7,70.3,0,49.7,0C29.1,0,12.3,16.7,12.3,37.3c0,20.6,16.7,37.3,37.3,37.3 c7.3,0,14.1-2.1,19.9-5.8l16.1,5.7c0.4,0.1,0.8,0,1.1-0.2c0.3-0.3,0.4-0.7,0.2-1.1C86.9,73.3,81.2,57.2,81.2,57.2z M69.8,66.8 c-0.3-0.1-0.6-0.1-0.9,0.1c-5.5,3.6-12.1,5.7-19.2,5.7c-9.8,0-18.6-4-25-10.3c-6.4-6.4-10.3-15.2-10.3-25c0-9.8,4-18.6,10.3-25 C31.1,6,39.9,2,49.7,2c9.8,0,18.6,4,25,10.3C81,18.8,85,27.6,85,37.3c0,7.1-2.1,13.7-5.7,19.2c-0.2,0.3-0.2,0.6-0.1,0.9L84.3,72 L69.8,66.8L69.8,66.8z'/%3E%3Cpath d='M46.7,81L46.7,81c-4.4,2.5-9.5,4-14.9,4c-6,0-11.6-1.8-16.2-4.8C15.4,80,15,79.9,14.7,80L2.7,84.3L7,72.3 C7.1,72,7,71.6,6.8,71.4C3.8,66.7,2,61.1,2,55.1c0-5.6,1.5-10.8,4.2-15.2c0.3-0.5,0.1-1.1-0.4-1.4c-0.5-0.3-1.1-0.1-1.4,0.4 C1.6,43.6,0,49.2,0,55.1c0,6.2,1.8,12,4.9,16.9L0.1,85.7c-0.1,0.4,0,0.8,0.2,1.1C0.6,87,1,87.1,1.3,86.9L15,82.1 c4.9,3.1,10.7,4.9,16.9,4.9c5.8,0,11.2-1.5,15.9-4.2c0.5-0.3,0.6-0.9,0.4-1.4C47.8,80.9,47.2,80.7,46.7,81L46.7,81z'/%3E%3Cpath d='M30.1,31.7c-2.8,0-5.1,2.3-5.1,5.1c0,2.8,2.3,5.1,5.1,5.1c2.8,0,5.1-2.3,5.1-5.1C35.2,33.9,33,31.7,30.1,31.7z M30.1,39.8 c-1.7,0-3.1-1.4-3.1-3.1c0-1.7,1.4-3.1,3.1-3.1c1.7,0,3.1,1.4,3.1,3.1C33.2,38.5,31.8,39.8,30.1,39.8z'/%3E%3Cpath d='M49.7,31.7c-2.8,0-5.1,2.3-5.1,5.1c0,2.8,2.3,5.1,5.1,5.1c2.8,0,5.1-2.3,5.1-5.1C54.8,33.9,52.5,31.7,49.7,31.7z M49.7,39.8 c-1.7,0-3.1-1.4-3.1-3.1c0-1.7,1.4-3.1,3.1-3.1c1.7,0,3.1,1.4,3.1,3.1C52.7,38.5,51.4,39.8,49.7,39.8z'/%3E%3Cpath d='M69.2,31.7c-2.8,0-5.1,2.3-5.1,5.1c0,2.8,2.3,5.1,5.1,5.1c2.8,0,5.1-2.3,5.1-5.1C74.3,33.9,72,31.7,69.2,31.7z M69.2,39.8 c-1.7,0-3.1-1.4-3.1-3.1c0-1.7,1.4-3.1,3.1-3.1c1.7,0,3.1,1.4,3.1,3.1C72.3,38.5,70.9,39.8,69.2,39.8z'/%3E%3C/g%3E%3C/svg%3E%0A");
}
.modular-option__seperator {
  display: none;
  font-weight: 500;
  font-family: "Rubik", "rubik-fallback-arial", trebuchet ms, helvetica, arial, sans-serif;
  margin: 0 15px;
  font-size: 0.875rem;
}
@media (min-width: 30em) {
  .modular-option__button {
    justify-content: center;
  }
  .modular-option__button:before {
    position: relative;
    top: auto;
    left: 0;
    transform: none;
  }
  .modular-option__button span {
    margin-left: 25px;
    margin-right: 0;
  }
  .modular-option__talk span {
    margin-right: 15px;
  }
  .modular-option__sector span {
    margin-left: 20px;
  }
}
@media (min-width: 48em) {
  .modular-option {
    display: flex;
    align-items: center;
  }
  .modular-option__button {
    flex: 1;
    flex-direction: column;
    height: 170px;
    margin-bottom: 0;
  }
  .modular-option__button span {
    margin-top: 20px;
    margin-left: 0;
  }
  .modular-option__sector:before {
    width: 77px;
    height: 80px;
    background-size: 77px 80px;
  }
  .modular-option__talk span {
    margin-right: 0;
  }
  .modular-option__talk:before {
    width: 80px;
    height: 80px;
    background-size: 80px 80px;
  }
  .modular-option__seperator {
    display: block;
  }
}
@media (min-width: 60em) {
  .modular-option {
    width: 66%;
  }
  .modular-option__button {
    height: 250px;
  }
  .modular-option__button span {
    margin-top: 35px;
    font-size: 1.25rem;
  }
  .modular-option__seperator {
    display: block;
    font-size: 1.125rem;
    margin: 0 25px;
  }
}
@media (min-width: 67.5em) {
  .modular-option__button span {
    font-size: 1.5rem;
  }
  .modular-option__seperator {
    font-size: 1.25rem;
  }
}
@media (min-width: 75em) {
  .modular-option__sector:before {
    width: 81px;
    height: 85px;
    background-size: 81px 85px;
  }
  .modular-option__talk:before {
    width: 85px;
    height: 85px;
    background-size: 85px 85px;
  }
}

/*------------------------------------*\
  $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: #22AAE2;
  scrollbar-base-color: #e0e0e2;
  scrollbar-shadow-color: #707070;
  /* FIREFOX */
}
@-moz-document url-prefix() {
  .card-slider {
    scrollbar-color: #22AAE2 #e0e0e2;
    scrollbar-width: thin;
  }
}
.card-slider {
  /* Track width if vertical, Track height if horzontal */
}
.card-slider::-webkit-scrollbar {
  height: 6px;
}
.card-slider {
  /* Track */
}
.card-slider::-webkit-scrollbar-track {
  -webkit-border-radius: 6px;
  border-radius: 6px;
  background-color: #e0e0e2;
}
.card-slider {
  /* Handle */
}
.card-slider::-webkit-scrollbar-thumb {
  border-radius: 6px;
  background: #22AAE2;
  -webkit-border-radius: 6px;
}
.card-slider {
  /* Block at start / end of scrollbar (2 at each end) */
}
.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: 30px;
  margin-right: 20px;
  width: 240px;
  scroll-snap-align: start;
  background: linear-gradient(to bottom, #274178 0%, #23A8DF 100%);
}
.card-slider .post--slider-card:before {
  display: none;
}
.card-slider .post--slider-card figure {
  width: 100%;
}
.card-slider .post--slider-card picture {
  position: relative;
  padding-bottom: 68%;
  overflow: hidden;
}
.card-slider .post--slider-card picture img,
.card-slider .post--slider-card picture video,
.card-slider .post--slider-card picture iframe,
.card-slider .post--slider-card picture object,
.card-slider .post--slider-card picture embed {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}
.card-slider .post--slider-card picture iframe,
.card-slider .post--slider-card picture object,
.card-slider .post--slider-card picture embed {
  width: 100%;
  height: 100.2%;
}
.card-slider .post--slider-card .post__title,
.card-slider .post--slider-card .post__description,
.card-slider .post--slider-card .post__description * {
  color: #ffffff;
  text-align: center;
}
.card-slider .post--slider-card .post__description * {
  font-weight: 400;
  font-family: "Rubik", "rubik-fallback-arial", trebuchet ms, helvetica, arial, sans-serif;
}
.card-slider .post--slider-card .post__title a {
  color: #ffffff;
}
.card-slider .post--slider-card .post__details {
  padding-bottom: 35px;
}
.card-slider__highlighted-cards .post--slider-card {
  background: #000000;
}
.card-slider__highlighted-cards .post--slider-card:hover, .card-slider__highlighted-cards .post--slider-card:active, .card-slider__highlighted-cards .post--slider-card:focus {
  background: #22AAE2;
}
.card-slider__card-spacer {
  padding-left: 1px;
}
.card-slider .svg-rollover {
  padding-top: 55px;
  padding-bottom: 30px;
}
@media (min-width: 48em) {
  .card-slider::-webkit-scrollbar-button:increment {
    width: 30px;
  }
  .card-slider .post--slider-card {
    width: 280px;
    margin-bottom: 30px;
  }
  .content--full .card-slider__full {
    padding-left: 30px;
  }
  .card-slider .svg-rollover {
    padding-bottom: 40px;
    padding-top: 60px;
  }
}
@media (min-width: 60em) {
  .card-slider .post--slider-card {
    margin-bottom: 50px;
    margin-right: 30px;
  }
  .card-slider .post--slider-card .post__details {
    padding-bottom: 40px;
  }
  .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: 30px;
  }
  .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: 40px;
  }
  .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);
    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);
  }
}

/*------------------------------------*\
  $SVG-ROLLOVER
\*------------------------------------*/
.svg-rollover {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 40px 30px 20px;
}
.svg-rollover svg {
  height: 100%;
  width: 100%;
  transition: transform 0.2s ease-in-out;
  will-change: transform;
}
@media (min-width: 48em) {
  .svg-rollover {
    padding-top: 50px;
    padding-bottom: 20px;
  }
}

.post--card:hover .svg-rollover__picture, .post--card:active .svg-rollover__picture, .post--card:focus .svg-rollover__picture {
  transform: scale(1.02);
}
.post--card:hover .svg-rollover__picture svg, .post--card:active .svg-rollover__picture svg, .post--card:focus .svg-rollover__picture svg {
  transform: scale(1.03);
}

.key-facts .svg-rollover {
  padding: 0;
}
.key-facts .svg-rollover__picture {
  position: relative;
}
.key-facts__fact.text-align-left svg {
  width: auto;
}

/*------------------------------------*\
  $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 {
  position: relative;
  padding-bottom: 66%;
  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 {
  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 {
  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 {
  max-width: 100%;
  max-height: 100%;
}
.panel-bg__content {
  z-index: 1;
  padding-top: 20px;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding-top: 20px;
}
.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-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__description .intro {
  margin-bottom: 20px;
}
.panel-bg__icon {
  margin-bottom: 15px;
}
.panel-bg__icon img,
.panel-bg__icon svg {
  display: block;
  height: 60px;
  width: auto;
}
.panel-bg .btn {
  width: 100%;
}
@media (max-width: 59.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;
    padding-right: 40px;
    padding-left: 40px;
    height: 50px;
  }
}
@media (min-width: 37.5em) {
  .panel-bg__icon img,
  .panel-bg__icon svg {
    height: 80px;
  }
  .panel-bg .btn {
    margin-top: 25px;
  }
}
@media (min-width: 48em) {
  .panel-bg .layout__container, .panel-bg__video, .panel-bg__image {
    padding-left: 30px;
    padding-right: 30px;
  }
}
@media (min-width: 60em) {
  .panel-bg {
    display: flex;
  }
  .panel-bg__content {
    padding-top: 0;
  }
  .panel-bg__image, .panel-bg__video,
  .panel-bg .layout__container {
    width: 50%;
  }
  .panel-bg .wrapper__variable-width {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  .panel-bg__image, .panel-bg__video {
    min-height: 580px;
    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: 30px;
    padding-bottom: 30px;
    margin-bottom: 0;
  }
}
@media (min-width: 67.5em) {
  .panel-bg .btn {
    margin-top: 30px;
  }
  .panel-bg h2 {
    margin-bottom: 25px;
  }
  .panel-bg__icon {
    margin-bottom: 30px;
  }
  .panel-bg__icon img,
  .panel-bg__icon svg {
    height: 80px;
  }
  .panel-bg__content {
    max-width: 515px;
  }
}
@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: 70px;
  }
  .panel-bg__image--left + .layout__container, .panel-bg__video--left + .layout__container {
    padding-left: 70px;
  }
}

/*------------------------------------*\
  $MEGA-HEADER
\*------------------------------------*/
.mega-header {
  margin-top: 30px;
  margin-bottom: 30px;
}
.mega-header__wrapper {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-end;
}
.mega-header .page__title {
  margin-top: 0;
}
.mega-header .page__title, .mega-header__summary {
  width: 100%;
}
.mega-header__authored-details {
  width: calc(100% - 50px);
}
.mega-header__author-details {
  width: 100%;
  margin-bottom: 20px;
}
.mega-header__job-title, .mega-header__authored {
  margin-top: 0;
  margin-bottom: 0;
}
.mega-header__job-title {
  margin-bottom: 15px;
}
.mega-header__authored,
.mega-header__authored a {
  font-weight: 500;
  font-family: "Rubik", "rubik-fallback-arial", trebuchet ms, helvetica, arial, sans-serif;
  color: #222222;
}
.mega-header__authored a {
  text-decoration: none;
}
.mega-header__authored a:hover, .mega-header__authored a:active, .mega-header__authored a:focus {
  text-decoration: underline;
  color: #222222;
}
.mega-header__author-bio, .mega-header__date {
  margin: 0;
}
.mega-header__author-bio {
  font-size: 0.875rem;
  font-weight: 300;
  font-family: "Rubik", "rubik-fallback-arial", trebuchet ms, helvetica, arial, sans-serif;
}
.mega-header__summary {
  font-size: 1.125rem;
  font-weight: 400;
  font-family: "Rubik", "rubik-fallback-arial", trebuchet ms, helvetica, arial, sans-serif;
  margin-top: 0;
  margin-bottom: 15px;
}
.mega-header__avatar {
  height: 50px;
  width: 50px;
  border-radius: 50%;
  overflow: hidden;
}
.mega-header__avatar picture {
  display: flex;
  align-items: center;
  justify-content: center;
}
.mega-header__avatar img,
.mega-header__avatar picture {
  height: 100%;
  width: 100%;
}
.mega-header__avatar img {
  object-fit: cover;
}
.mega-header__avatar svg {
  fill: #22AAE2;
  width: 65%;
}
.mega-header__avatar--fallback {
  background: #000000;
}
@media (min-width: 48em) {
  .mega-header {
    margin-bottom: 45px;
  }
  .mega-header__wrapper {
    display: grid;
    grid-gap: 0;
    grid-template: "mh-left-top     mh-right" auto "mh-left-middle  mh-right" auto "mh-left-bottom  mh-right" auto/1fr auto;
  }
  .mega-header__author-bio {
    font-size: 0.9375rem;
    grid-area: mh-left-top;
  }
  .mega-header__summary {
    font-size: 1.1875rem;
    grid-area: mh-left-middle;
    margin-bottom: 30px;
  }
  .mega-header__author-details, .mega-header__authored-details {
    width: auto;
  }
  .mega-header__author-details {
    grid-area: mh-left-middle;
    margin-bottom: 0;
  }
  .mega-header__authored-details {
    grid-area: mh-left-bottom;
  }
  .mega-header__job-title {
    margin-top: 0;
  }
  .mega-header__avatar {
    height: 100px;
    width: 100px;
    grid-area: mh-right;
    margin-left: 30px;
  }
}
@media (min-width: 60em) {
  .mega-header__job-title {
    margin-bottom: 20px;
  }
  .mega-header__author-bio {
    font-size: 1rem;
  }
  .mega-header__summary {
    font-size: 1.25rem;
    margin-bottom: 30px;
  }
  .mega-header__avatar {
    height: 190px;
    width: 190px;
    margin-left: 80px;
  }
}
@media (min-width: 67.5em) {
  .mega-header {
    margin-bottom: 60px;
  }
}

/*------------------------------------*\
  $LAYOUT-TOOL
\*------------------------------------*/
.layout-tool {
  display: flex;
}
.layout-tool__sidebar {
  max-height: 900px;
  overflow-y: scroll;
  overscroll-behavior: contain;
}

/*------------------------------------*\
  $NEWS-LISTINGS
\*------------------------------------*/
#news_section_frame form {
  max-width: 100%;
}
#news_section_frame select {
  background-color: #22AAE2;
  border: none;
}
#news_section_frame select:last-child {
  margin-top: 15px;
}
@media (min-width: 48em) {
  #news_section_frame .panel:first-child {
    display: flex;
  }
  #news_section_frame select {
    width: 250px;
  }
  #news_section_frame select:last-child {
    margin-top: 0;
    margin-left: 30px;
  }
}
@media (min-width: 60em) {
  #news_section_frame select {
    width: 300px;
  }
}

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

.recaptcha-text.field--last {
  margin-bottom: 0;
}
.recaptcha-text,
.recaptcha-text > * {
  font-size: 0.75rem;
  line-height: 1.3;
  color: #222222;
}

#recaptcha {
  width: 100%;
}

.icon-contents {
  --icon-contents-max-width-mobile: 240px;
  --icon-contents-max-width-tablet: 270px;
  --icon-contents-max-width-desktop: 334px;
  --icon-contents-max-width: var(--icon-contents-max-width-mobile);
  --icon-contents-max-height-mobile: 32px;
  --icon-contents-max-height-tablet: 40px;
  --icon-contents-max-height-desktop: 50px;
  --icon-contents-max-height: var(--icon-contents-max-height-mobile);
}
@media (min-width: 768px) {
  .icon-contents {
    --icon-contents-max-width: var(--icon-contents-max-width-tablet);
    --icon-contents-max-height: var(--icon-contents-max-height-tablet);
  }
}
@media (min-width: 1080px) {
  .icon-contents {
    --icon-contents-max-width: var(--icon-contents-max-width-desktop);
    --icon-contents-max-height: var(--icon-contents-max-height-desktop);
  }
}

.icon-contents figure,
figure.icon-contents {
  display: flex;
  padding: 0;
}

.icon-contents picture {
  --target-width: min(
    var(--icon-contents-max-width),
    calc(var(--icon-contents-max-height) * (var(--w) / var(--h)))
  );
  width: var(--target-width);
  aspect-ratio: var(--w)/var(--h);
  height: auto;
  max-height: var(--icon-contents-max-height);
  min-width: 0;
  --placeholder-image-bg: transparent;
  transform: none;
  display: flex;
  align-items: center;
}

:hover .icon-contents picture,
:active .icon-contents picture {
  transform: none;
}

.icon-contents svg,
.icon-contents img {
  min-width: 0;
  object-fit: contain;
  object-position: left bottom;
  height: 100%;
  width: 100%;
}

canvas {
  border: 1px solid #bbb;
  height: 900px;
  width: 900px;
}

/*------------------------------------*\
  $ALTERNATIVE-THEME
\*------------------------------------*/
.alt-theme.has-media-window:not(.has-sticky-nav) .page-header__logo svg {
  fill: #22AAE2;
}
.alt-theme.has-media-window:not(.has-sticky-nav) .page-header .phone__icon svg {
  fill: #000000;
}
.alt-theme.has-media-window:not(.has-sticky-nav) .page-header .phone__number {
  color: #000000;
}
.alt-theme.has-media-window:not(.has-sticky-nav) .page-header .phone__number:after {
  background-color: #000000;
}
.alt-theme.has-media-window:not(.has-sticky-nav) .page-header__contact .btn {
  background-color: #000000;
  color: #FBFBFB;
}
.alt-theme.has-media-window:not(.has-sticky-nav) .page-header__contact .btn:hover, .alt-theme.has-media-window:not(.has-sticky-nav) .page-header__contact .btn:active, .alt-theme.has-media-window:not(.has-sticky-nav) .page-header__contact .btn:focus {
  background-color: #2b2b2b;
  color: #FBFBFB;
}
.alt-theme.has-media-window:not(.has-sticky-nav) .page-header__lower-wrapper > .page-header__account a:before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 141'%3E%3Cg fill='%23000000'%3E%3Cpath d='M50 0C31 0 15.7 15.4 15.7 34.3c0 19 15.4 34.3 34.3 34.3s34.3-15.4 34.3-34.3S69 0 50 0zm0 58.8c-13.5 0-24.4-10.9-24.4-24.4C25.6 20.8 36.5 9.9 50 9.9c13.5 0 24.4 10.9 24.4 24.4 0 13.5-10.9 24.5-24.4 24.5zM50 140.8c-12.6.2-25.1-3.2-35.8-9.9C5.8 126 .4 117.1 0 107.4c.4-9.8 5.8-18.7 14.2-23.6 22.1-13.1 49.5-13.1 71.6 0 8.4 4.9 13.8 13.7 14.2 23.4-.4 9.8-5.8 18.7-14.2 23.6-10.7 6.7-23.2 10.2-35.8 10zM19.7 92.1c-5.6 3.1-9.3 8.9-9.8 15.3.5 6.4 4.2 12.1 9.8 15.2 18.7 11 41.9 11 60.6 0 5.6-3.1 9.3-8.9 9.8-15.3-.5-6.4-4.2-12.1-9.8-15.2-18.7-10.9-41.9-10.9-60.6 0z'/%3E%3C/g%3E%3C/svg%3E");
}
.alt-theme.has-media-window:not(.has-sticky-nav) .page-header__menu svg {
  fill: #ffffff;
}
.alt-theme.has-media-window:not(.has-sticky-nav) .page-header__menu:before {
  background-color: #000000;
}
.alt-theme.has-media-window:not(.has-sticky-nav) .page-header__menu:hover:before, .alt-theme.has-media-window:not(.has-sticky-nav) .page-header__menu:active:before, .alt-theme.has-media-window:not(.has-sticky-nav) .page-header__menu:focus:before {
  background-color: #2b2b2b;
}
.alt-theme.has-media-window .glide--hero .glide__slide:before,
.alt-theme.has-media-window .glide--hero picture:before {
  opacity: 0;
}
.alt-theme.has-media-window .glide--hero picture:after {
  opacity: 0;
}

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

/*# sourceMappingURL=application.css.map */
