
/*------------------------------------*\
  $VARS
\*------------------------------------*/
@font-face {
  font-family: "Rubik";
  src: url(/fonts/digest/rubik_compressed/rubik-light-0d1ef38a0ad1188f25860b5f299f2894e3ecb8beb009c3ccdc933c95b3b44ed1.woff2) format("woff2"), url(/fonts/digest/rubik_compressed/rubik-light-4244c6bbbfe073725687e7dc65eae9e081f7d3dbbedbb4519fb253fa60dd4ca9.woff) format("woff");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Rubik";
  src: url(/fonts/digest/rubik_compressed/rubik-regular-b8b91ca76c5901d5e6eaafac1f921efaec48b69d43f44900ad14ef892ea2b2dd.woff2) format("woff2"), url(/fonts/digest/rubik_compressed/rubik-regular-abf88c58e79475dece1988cefd4359fdd749c58622f07da2e62663f3a1faee57.woff) format("woff");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Rubik";
  src: url(/fonts/digest/rubik_compressed/rubik-medium-def205e350ffd26b7a5d1d1b58189565ddd704f6603eab2bca0c779b8ae5fd8f.woff2) format("woff2"), url(/fonts/digest/rubik_compressed/rubik-medium-ab571b1af59c9e63a341ff4c2ee041afa71888fd61148746f3782f9e97a85597.woff) format("woff");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Rubik";
  src: url(/fonts/digest/rubik_compressed/rubik-bold-2310297fa72375c94b46a2a3ed71cbd39397835823d57a55dc5a87d51e5cbd86.woff2) format("woff2"), url(/fonts/digest/rubik_compressed/rubik-bold-ad5d6cce8d0505b9cbf033100a3ae48abc0d47115d716a4597de1f2826f290a3.woff) format("woff");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Bebas Neue";
  src: url(/fonts/digest/bebas_neue/bebas_neue-regular-902c8b5373b5818522e5741c7f9ba0a952886afebe4e96998a1b3a7cf31af9e6.woff2) format("woff2"), url(/fonts/digest/bebas_neue/bebas_neue-regular-6063a2c81b2b96e12221d78ea85c3bc9c7bd464c9f0b489d3061b46efbd1a00e.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; }
 */
/**
* A SCSS mixin for creating cross-browser image filters
* SVG filters will have to be set manually (instructions below)
* Defaults to NOT including an SVG filter
* Place on the <picture> element
*
* grayscale      : grayscale(100%);
* sepia          : sepia(100%);
* saturate       : saturate(0%);
* hue-rotate     : hue-rotate(45deg);
* invert         : invert(100%);
* brightness     : brightness(15%);
* contrast       : contrast(200%);
* blur           : blur(2px);
*
* picture {  @include imageFilter(grayscale, 100%, $black, false); }
*/
/*------------------------------------*\
  $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;
}

:root {
  --cc-bg:#fff;
  --cc-text:#2d4156;
  --cc-btn-primary-bg:#2d4156;
  --cc-btn-primary-text:var(--cc-bg);
  --cc-btn-primary-hover-bg:#1d2e38;
  --cc-btn-secondary-bg:#eaeff2;
  --cc-btn-secondary-text:var(--cc-text);
  --cc-btn-secondary-hover-bg:#d8e0e6;
  --cc-toggle-bg-off:#919ea6;
  --cc-toggle-bg-on:var(--cc-btn-primary-bg);
  --cc-toggle-bg-readonly:#d5dee2;
  --cc-toggle-knob-bg:#fff;
  --cc-toggle-knob-icon-color:#ecf2fa;
  --cc-block-text:var(--cc-text);
  --cc-cookie-category-block-bg:#f0f4f7;
  --cc-cookie-category-block-bg-hover:#e9eff4;
  --cc-section-border:#f1f3f5;
  --cc-cookie-table-border:#e9edf2;
  --cc-overlay-bg:rgba(4, 6, 8, .85);
  --cc-webkit-scrollbar-bg:#cfd5db;
  --cc-webkit-scrollbar-bg-hover:#9199a0;
}

.c_darkmode {
  --cc-bg:#181b1d;
  --cc-text:#d8e5ea;
  --cc-btn-primary-bg:#a6c4dd;
  --cc-btn-primary-text:#000;
  --cc-btn-primary-hover-bg:#c2dff7;
  --cc-btn-secondary-bg:#33383c;
  --cc-btn-secondary-text:var(--cc-text);
  --cc-btn-secondary-hover-bg:#3e454a;
  --cc-toggle-bg-off:#667481;
  --cc-toggle-bg-on:var(--cc-btn-primary-bg);
  --cc-toggle-bg-readonly:#454c54;
  --cc-toggle-knob-bg:var(--cc-cookie-category-block-bg);
  --cc-toggle-knob-icon-color:var(--cc-bg);
  --cc-block-text:#b3bfc5;
  --cc-cookie-category-block-bg:#23272a;
  --cc-cookie-category-block-bg-hover:#2b3035;
  --cc-section-border:#292d31;
  --cc-cookie-table-border:#2b3035;
  --cc-webkit-scrollbar-bg:#667481;
  --cc-webkit-scrollbar-bg-hover:#9199a0;
}

.cc_div *, .cc_div :after, .cc_div :before {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  float: none;
  font-style: inherit;
  font-variant: normal;
  font-weight: inherit;
  font-family: inherit;
  line-height: 1.2;
  font-size: 1em;
  transition: none;
  animation: none;
  margin: 0;
  padding: 0;
  text-transform: none;
  letter-spacing: unset;
  color: inherit;
  background: 0 0;
  border: none;
  box-shadow: none;
  text-decoration: none;
  text-align: left;
  visibility: unset;
}

.cc_div {
  font-size: 16px;
  font-weight: 400;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  color: #2d4156;
  color: var(--cc-text);
}

#c-ttl, #s-bl td:before, #s-ttl, .cc_div .b-tl, .cc_div .c-bn {
  font-weight: 600;
}

#cm, #s-bl .act .b-acc, #s-inr, .cc_div .b-tl, .cc_div .c-bl {
  border-radius: 0.35em;
}

#s-bl .act .b-acc {
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}

.cc_div a, .cc_div button, .cc_div input {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

.cc_div a {
  border-bottom: 1px solid;
}

.cc_div a:hover {
  text-decoration: none;
  border-color: transparent;
}

#cm-ov, #cs-ov, .c--anim #cm, .c--anim #s-cnt, .c--anim #s-inr {
  transition: visibility 0.25s linear, opacity 0.25s ease, transform 0.25s ease !important;
}

.c--anim .c-bn {
  transition: background-color 0.25s ease !important;
}

.c--anim #cm.bar.slide, .c--anim .bar.slide #s-inr {
  transition: visibility 0.4s ease, opacity 0.4s ease, transform 0.4s ease !important;
}

.c--anim #cm.bar.slide + #cm-ov, .c--anim .bar.slide + #cs-ov {
  transition: visibility 0.4s ease, opacity 0.4s ease, transform 0.4s ease !important;
}

#cm.bar.slide, .cc_div .bar.slide #s-inr {
  transform: translateX(100%);
  opacity: 1;
}

#cm.bar.top.slide, .cc_div .bar.left.slide #s-inr {
  transform: translateX(-100%);
  opacity: 1;
}

#cm.slide, .cc_div .slide #s-inr {
  transform: translateY(1.6em);
}

#cm.top.slide {
  transform: translateY(-1.6em);
}

#cm.bar.slide {
  transform: translateY(100%);
}

#cm.bar.top.slide {
  transform: translateY(-100%);
}

.show--consent .c--anim #cm, .show--consent .c--anim #cm.bar, .show--settings .c--anim #s-inr, .show--settings .c--anim .bar.slide #s-inr {
  opacity: 1;
  transform: scale(1);
  visibility: visible !important;
}

.show--consent .c--anim #cm.box.middle, .show--consent .c--anim #cm.cloud.middle {
  transform: scale(1) translateY(-50%);
}

.show--settings .c--anim #s-cnt {
  visibility: visible !important;
}

.force--consent.show--consent .c--anim #cm-ov, .show--settings .c--anim #cs-ov {
  visibility: visible !important;
  opacity: 1 !important;
}

#cm {
  font-family: inherit;
  padding: 1.1em 1.8em 1.4em 1.8em;
  position: fixed;
  z-index: 1;
  background: #fff;
  background: var(--cc-bg);
  max-width: 24.2em;
  width: 100%;
  bottom: 1.25em;
  right: 1.25em;
  box-shadow: 0 0.625em 1.875em #000;
  box-shadow: 0 0.625em 1.875em rgba(2, 2, 3, 0.28);
  opacity: 0;
  visibility: hidden;
  transform: scale(0.95);
  line-height: initial;
}

#cc_div #cm {
  display: block !important;
}

#c-ttl {
  margin-bottom: 0.7em;
  font-size: 1.05em;
}

.cloud #c-ttl {
  margin-top: -0.15em;
}

#c-txt {
  font-size: 0.9em;
  line-height: 1.5em;
}

.cc_div #c-bns {
  display: flex;
  justify-content: space-between;
  margin-top: 1.4em;
}

.cc_div .c-bn {
  color: #40505a;
  color: var(--cc-btn-secondary-text);
  background: #e5ebef;
  background: var(--cc-btn-secondary-bg);
  padding: 1em 1.7em;
  display: inline-block;
  cursor: pointer;
  font-size: 0.82em;
  -moz-user-select: none;
  -khtml-user-select: none;
  -webkit-user-select: none;
  -o-user-select: none;
  user-select: none;
  text-align: center;
  border-radius: 4px;
  flex: 1;
}

#c-bns button + button, #s-c-bn, #s-cnt button + button {
  float: right;
  margin-left: 1em;
}

#s-cnt #s-rall-bn {
  float: none;
}

#cm .c_link:active, #cm .c_link:hover, #s-c-bn:active, #s-c-bn:hover, #s-cnt button + button:active, #s-cnt button + button:hover {
  background: #d8e0e6;
  background: var(--cc-btn-secondary-hover-bg);
}

#s-cnt {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 101;
  display: table;
  height: 100%;
  visibility: hidden;
}

#s-bl {
  outline: 0;
}

#s-bl .title {
  margin-top: 1.4em;
}

#s-bl .title:first-child {
  margin-top: 0;
}

#s-bl .b-bn {
  margin-top: 0;
}

#s-bl .b-acc .p {
  margin-top: 0;
  padding: 1em;
}

#s-cnt .b-bn .b-tl {
  display: block;
  font-family: inherit;
  font-size: 0.95em;
  width: 100%;
  position: relative;
  padding: 1.3em 6.4em 1.3em 2.7em;
  background: 0 0;
  transition: background-color 0.25s ease;
}

#s-cnt .b-bn .b-tl.exp {
  cursor: pointer;
}

#s-cnt .act .b-bn .b-tl {
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
}

#s-cnt .b-bn .b-tl:active, #s-cnt .b-bn .b-tl:hover {
  background: #e9eff4;
  background: var(--cc-cookie-category-block-bg-hover);
}

#s-bl .b-bn {
  position: relative;
}

#s-bl .c-bl {
  padding: 1em;
  margin-bottom: 0.5em;
  border: 1px solid #f1f3f5;
  border-color: var(--cc-section-border);
  transition: background-color 0.25s ease;
}

#s-bl .c-bl:hover {
  background: #f0f4f7;
  background: var(--cc-cookie-category-block-bg);
}

#s-bl .c-bl:last-child {
  margin-bottom: 0.5em;
}

#s-bl .c-bl:first-child {
  transition: none;
  padding: 0;
  margin-top: 0;
  border: none;
  margin-bottom: 2em;
}

#s-bl .c-bl:not(.b-ex):first-child:hover {
  background: 0 0;
  background: unset;
}

#s-bl .c-bl.b-ex {
  padding: 0;
  border: none;
  background: #f0f4f7;
  background: var(--cc-cookie-category-block-bg);
  transition: none;
}

#s-bl .c-bl.b-ex + .c-bl {
  margin-top: 2em;
}

#s-bl .c-bl.b-ex + .c-bl.b-ex {
  margin-top: 0;
}

#s-bl .c-bl.b-ex:first-child {
  margin-bottom: 1em;
}

#s-bl .c-bl.b-ex:first-child {
  margin-bottom: 0.5em;
}

#s-bl .b-acc {
  max-height: 0;
  overflow: hidden;
  padding-top: 0;
  margin-bottom: 0;
  display: none;
}

#s-bl .act .b-acc {
  max-height: 100%;
  display: block;
  overflow: hidden;
}

#s-cnt .p {
  font-size: 0.9em;
  line-height: 1.5em;
  margin-top: 0.85em;
  color: #2d4156;
  color: var(--cc-block-text);
}

.cc_div .b-tg .c-tgl:disabled {
  cursor: not-allowed;
}

#c-vln {
  display: table-cell;
  vertical-align: middle;
  position: relative;
}

#cs {
  padding: 0 1.7em;
  width: 100%;
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  height: 100%;
}

#s-inr {
  height: 100%;
  position: relative;
  max-width: 45em;
  margin: 0 auto;
  transform: scale(0.96);
  opacity: 0;
  padding-top: 4.75em;
  padding-bottom: 4.75em;
  position: relative;
  height: 100%;
  overflow: hidden;
  visibility: hidden;
  box-shadow: rgba(3, 6, 9, 0.26) 0 13px 27px -5px;
}

#s-bns, #s-hdr, #s-inr {
  background: #fff;
  background: var(--cc-bg);
}

#s-bl {
  overflow-y: auto;
  overflow-y: overlay;
  overflow-x: hidden;
  height: 100%;
  padding: 1.3em 2.1em;
  display: block;
  width: 100%;
}

#s-bns {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1em 2.1em;
  border-top: 1px solid #f1f3f5;
  border-color: var(--cc-section-border);
  height: 4.75em;
}

.cc_div .cc-link {
  color: #253b48;
  color: var(--cc-btn-primary-bg);
  border-bottom: 1px solid #253b48;
  border-color: var(--cc-btn-primary-bg);
  display: inline;
  padding-bottom: 0;
  text-decoration: none;
  cursor: pointer;
  font-weight: 600;
}

.cc_div .cc-link:active, .cc_div .cc-link:hover {
  border-color: transparent;
}

#c-bns button:first-child, #s-bns button:first-child {
  color: #fff;
  color: var(--cc-btn-primary-text);
  background: #253b48;
  background: var(--cc-btn-primary-bg);
}

#c-bns.swap button:first-child {
  color: #40505a;
  color: var(--cc-btn-secondary-text);
  background: #e5ebef;
  background: var(--cc-btn-secondary-bg);
}

#c-bns.swap button:last-child {
  color: #fff;
  color: var(--cc-btn-primary-text);
  background: #253b48;
  background: var(--cc-btn-primary-bg);
}

.cc_div .b-tg .c-tgl:checked ~ .c-tg {
  background: #253b48;
  background: var(--cc-toggle-bg-on);
}

#c-bns button:first-child:active, #c-bns button:first-child:hover, #c-bns.swap button:last-child:active, #c-bns.swap button:last-child:hover, #s-bns button:first-child:active, #s-bns button:first-child:hover {
  background: #1d2e38;
  background: var(--cc-btn-primary-hover-bg);
}

#c-bns.swap button:first-child:active, #c-bns.swap button:first-child:hover {
  background: #d8e0e6;
  background: var(--cc-btn-secondary-hover-bg);
}

#s-hdr {
  position: absolute;
  top: 0;
  width: 100%;
  display: table;
  padding: 0 2.1em;
  height: 4.75em;
  vertical-align: middle;
  z-index: 2;
  border-bottom: 1px solid #f1f3f5;
  border-color: var(--cc-section-border);
}

#s-ttl {
  display: table-cell;
  vertical-align: middle;
  font-size: 1em;
}

#s-c-bn {
  padding: 0;
  width: 1.7em;
  height: 1.7em;
  font-size: 1.45em;
  margin: 0;
  font-weight: initial;
  position: relative;
}

#s-c-bnc {
  display: table-cell;
  vertical-align: middle;
}

.cc_div span.t-lb {
  position: absolute;
  top: 0;
  z-index: -1;
  opacity: 0;
  pointer-events: none;
  overflow: hidden;
}

#c_policy__text {
  height: 31.25em;
  overflow-y: auto;
  margin-top: 1.25em;
}

#c-s-in {
  position: relative;
  transform: translateY(-50%);
  top: 50%;
  height: 100%;
  height: calc(100% - 2.5em);
  max-height: 37.5em;
}

@media screen and (min-width: 688px) {
  #s-bl::-webkit-scrollbar {
    width: 0.9em;
    height: 100%;
    background: 0 0;
    border-radius: 0 0.25em 0.25em 0;
  }
  #s-bl::-webkit-scrollbar-thumb {
    border: 0.25em solid var(--cc-bg);
    background: #cfd5db;
    background: var(--cc-webkit-scrollbar-bg);
    border-radius: 100em;
  }
  #s-bl::-webkit-scrollbar-thumb:hover {
    background: #9199a0;
    background: var(--cc-webkit-scrollbar-bg-hover);
  }
  #s-bl::-webkit-scrollbar-button {
    width: 10px;
    height: 5px;
  }
}
.cc_div .b-tg {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  display: inline-block;
  margin: auto;
  right: 1.2em;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  vertical-align: middle;
}

.cc_div .b-tg .c-tgl {
  position: absolute;
  cursor: pointer;
  display: block;
  top: 0;
  left: 0;
  margin: 0;
  border: 0;
}

.cc_div .b-tg .c-tg {
  position: absolute;
  background: #919ea6;
  background: var(--cc-toggle-bg-off);
  transition: background-color 0.25s ease, box-shadow 0.25s ease;
  pointer-events: none;
}

.cc_div .b-tg, .cc_div .b-tg .c-tg, .cc_div .b-tg .c-tgl, .cc_div span.t-lb {
  width: 3.4em;
  height: 1.5em;
  border-radius: 4em;
}

.cc_div .b-tg .c-tg.c-ro {
  cursor: not-allowed;
}

.cc_div .b-tg .c-tgl ~ .c-tg.c-ro {
  background: #d5dee2;
  background: var(--cc-toggle-bg-readonly);
}

.cc_div .b-tg .c-tgl ~ .c-tg.c-ro:after {
  box-shadow: none;
}

.cc_div .b-tg .c-tg:after {
  content: "";
  position: relative;
  display: block;
  left: 0.125em;
  top: 0.125em;
  width: 1.25em;
  height: 1.25em;
  border: none;
  box-sizing: content-box;
  background: #fff;
  background: var(--cc-toggle-knob-bg);
  box-shadow: 0 1px 2px rgba(24, 32, 35, 0.36);
  transition: transform 0.25s ease;
  border-radius: 100%;
}

.cc_div .b-tg .c-tgl:checked ~ .c-tg:after {
  transform: translateX(1.9em);
}

#s-bl table, #s-bl td, #s-bl th {
  border: none;
}

#s-bl tbody tr {
  transition: background-color 0.25s ease;
}

#s-bl tbody tr:hover {
  background: #e9eff4;
  background: var(--cc-cookie-category-block-bg-hover);
}

#s-bl table {
  text-align: left;
  border-collapse: collapse;
  width: 100%;
  padding: 0;
  margin: 0;
  overflow: hidden;
}

#s-bl td, #s-bl th {
  padding: 0.8em 0.625em;
  text-align: left;
  vertical-align: top;
  font-size: 0.8em;
  padding-left: 1.2em;
}

#s-bl th {
  font-family: inherit;
  padding: 1.2em 1.2em;
}

#s-bl thead tr:first-child {
  border-bottom: 1px solid #e9edf2;
  border-color: var(--cc-cookie-table-border);
}

.force--consent #cs, .force--consent #s-cnt {
  width: 100vw;
}

#cm-ov, #cs-ov {
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  visibility: hidden;
  opacity: 0;
  background: #070707;
  background: rgba(4, 6, 8, 0.85);
  background: var(--cc-overlay-bg);
  display: none;
  transition: none;
}

.c--anim #cs-ov, .force--consent .c--anim #cm-ov, .force--consent.show--consent #cm-ov, .show--settings #cs-ov {
  display: block;
}

#cs-ov {
  z-index: 2;
}

.force--consent .cc_div {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  width: 100%;
  width: 100vw;
  visibility: hidden;
  transition: visibility 0.25s linear;
}

.force--consent.show--consent .c--anim .cc_div, .force--consent.show--settings .c--anim .cc_div {
  visibility: visible;
}

.force--consent #cm {
  position: absolute;
}

.force--consent #cm.bar {
  width: 100vw;
  max-width: 100vw;
}

html.force--consent.show--consent {
  overflow-y: hidden !important;
}

html.force--consent.show--consent, html.force--consent.show--consent body {
  height: auto !important;
  overflow-x: hidden !important;
}

.cc_div .act .b-bn .exp::before, .cc_div .b-bn .exp::before {
  border: solid #2d4156;
  border-color: var(--cc-btn-secondary-text);
  border-width: 0 2px 2px 0;
  padding: 0.2em;
  display: inline-block;
  position: absolute;
  content: "";
  margin-right: 15px;
  position: absolute;
  transform: translateY(-50%) rotate(45deg);
  left: 1.2em;
  top: 50%;
}

.cc_div .act .b-bn .b-tl::before {
  transform: translateY(-20%) rotate(225deg);
}

.cc_div .on-i::before {
  border: solid #fff;
  border-color: var(--cc-toggle-knob-icon-color);
  border-width: 0 2px 2px 0;
  padding: 0.1em;
  display: inline-block;
  padding-bottom: 0.45em;
  content: "";
  margin: 0 auto;
  transform: rotate(45deg);
  top: 0.37em;
  left: 0.75em;
  position: absolute;
}

#s-c-bn::after, #s-c-bn::before {
  content: "";
  position: absolute;
  left: 0.82em;
  top: 0.58em;
  height: 0.6em;
  width: 1.5px;
  background: #444d53;
  background: var(--cc-btn-secondary-text);
  transform: rotate(45deg);
  border-radius: 1em;
  margin: 0 auto;
}

#s-c-bn::after {
  transform: rotate(-45deg);
}

.cc_div .off-i, .cc_div .on-i {
  height: 100%;
  width: 50%;
  position: absolute;
  right: 0;
  display: block;
  text-align: center;
  transition: opacity 0.15s ease;
}

.cc_div .on-i {
  left: 0;
  opacity: 0;
}

.cc_div .off-i::after, .cc_div .off-i::before {
  right: 0.8em;
  top: 0.42em;
  content: " ";
  height: 0.7em;
  width: 0.09375em;
  display: block;
  background: #cdd6dc;
  background: var(--cc-toggle-knob-icon-color);
  margin: 0 auto;
  position: absolute;
  transform-origin: center;
}

.cc_div .off-i::before {
  transform: rotate(45deg);
}

.cc_div .off-i::after {
  transform: rotate(-45deg);
}

.cc_div .b-tg .c-tgl:checked ~ .c-tg .on-i {
  opacity: 1;
}

.cc_div .b-tg .c-tgl:checked ~ .c-tg .off-i {
  opacity: 0;
}

#cm.box.middle, #cm.cloud.middle {
  top: 50%;
  transform: translateY(-37%);
  bottom: auto;
}

#cm.box.middle.zoom, #cm.cloud.middle.zoom {
  transform: scale(0.95) translateY(-50%);
}

#cm.box.center {
  left: 1em;
  right: 1em;
  margin: 0 auto;
}

#cm.cloud {
  max-width: 50em;
  margin: 0 auto;
  text-align: center;
  left: 1em;
  right: 1em;
  overflow: hidden;
  padding: 1.3em 2em;
  width: unset;
}

.cc_div .cloud #c-inr {
  display: table;
  width: 100%;
}

.cc_div .cloud #c-inr-i {
  width: 70%;
  display: table-cell;
  vertical-align: top;
  padding-right: 2.4em;
}

.cc_div .cloud #c-txt {
  font-size: 0.85em;
}

.cc_div .cloud #c-bns {
  min-width: 170px;
  display: table-cell;
  vertical-align: middle;
}

#cm.cloud .c-bn {
  margin: 0.625em 0 0 0;
  width: 100%;
}

#cm.cloud .c-bn:first-child {
  margin: 0;
}

#cm.cloud.left {
  margin-right: 1.25em;
}

#cm.cloud.right {
  margin-left: 1.25em;
}

#cm.bar {
  width: 100%;
  max-width: 100%;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 0;
  position: fixed;
  padding: 2em;
}

#cm.bar #c-inr {
  max-width: 32em;
  margin: 0 auto;
}

#cm.bar #c-bns {
  max-width: 33.75em;
}

#cm.bar #cs {
  padding: 0;
}

.cc_div .bar #c-s-in {
  top: 0;
  transform: none;
  height: 100%;
  max-height: 100%;
}

.cc_div .bar #s-bl, .cc_div .bar #s-bns, .cc_div .bar #s-hdr {
  padding-left: 1.6em;
  padding-right: 1.6em;
}

.cc_div .bar #cs {
  padding: 0;
}

.cc_div .bar #s-inr {
  margin: 0;
  margin-left: auto;
  margin-right: 0;
  border-radius: 0;
  max-width: 32em;
}

.cc_div .bar.left #s-inr {
  margin-left: 0;
  margin-right: auto;
}

.cc_div .bar #s-bl table, .cc_div .bar #s-bl tbody, .cc_div .bar #s-bl td, .cc_div .bar #s-bl th, .cc_div .bar #s-bl thead, .cc_div .bar #s-bl tr, .cc_div .bar #s-cnt {
  display: block;
}

.cc_div .bar #s-bl thead tr {
  position: absolute;
  top: -9999px;
  left: -9999px;
}

.cc_div .bar #s-bl tr {
  border-top: 1px solid #e3e7ed;
  border-color: var(--cc-cookie-table-border);
}

.cc_div .bar #s-bl td {
  border: none;
  position: relative;
  padding-left: 35%;
}

.cc_div .bar #s-bl td:before {
  position: absolute;
  left: 1em;
  padding-right: 0.625em;
  white-space: nowrap;
  content: attr(data-column);
  color: #000;
  color: var(--cc-text);
  overflow: hidden;
  text-overflow: ellipsis;
}

#cm.top {
  bottom: auto;
  top: 1.25em;
}

#cm.left {
  right: auto;
  left: 1.25em;
}

#cm.right {
  left: auto;
  right: 1.25em;
}

#cm.bar.left, #cm.bar.right {
  left: 0;
  right: 0;
}

#cm.bar.top {
  top: 0;
}

@media screen and (max-width: 688px) {
  #cm, #cm.cloud, #cm.left, #cm.right {
    width: auto;
    max-width: 100%;
    margin: 0;
    padding: 1.4em !important;
    right: 1em;
    left: 1em;
    bottom: 1em;
    display: block;
  }
  .force--consent #cm, .force--consent #cm.cloud {
    width: auto;
    max-width: 100vw;
  }
  #cm.top {
    top: 1em;
    bottom: auto;
  }
  #cm.bottom {
    bottom: 1em;
    top: auto;
  }
  #cm.bar.bottom {
    bottom: 0;
  }
  #cm.cloud .c-bn {
    font-size: 0.85em;
  }
  #s-bns, .cc_div .bar #s-bns {
    padding: 1em 1.3em;
  }
  .cc_div .bar #s-inr {
    max-width: 100%;
    width: 100%;
  }
  .cc_div .cloud #c-inr-i {
    padding-right: 0;
  }
  #cs {
    border-radius: 0;
    padding: 0;
  }
  #c-s-in {
    max-height: 100%;
    height: 100%;
    top: 0;
    transform: none;
  }
  .cc_div .b-tg {
    transform: scale(1.1);
    right: 1.1em;
  }
  #s-inr {
    margin: 0;
    padding-bottom: 7.9em;
    border-radius: 0;
  }
  #s-bns {
    height: 7.9em;
  }
  #s-bl, .cc_div .bar #s-bl {
    padding: 1.3em;
  }
  #s-hdr, .cc_div .bar #s-hdr {
    padding: 0 1.3em;
  }
  #s-bl table {
    width: 100%;
  }
  #s-inr.bns-t {
    padding-bottom: 10.5em;
  }
  .bns-t #s-bns {
    height: 10.5em;
  }
  .cc_div .bns-t .c-bn {
    font-size: 0.83em;
    padding: 0.9em 1.6em;
  }
  #s-cnt .b-bn .b-tl {
    padding-top: 1.2em;
    padding-bottom: 1.2em;
  }
  #s-bl table, #s-bl tbody, #s-bl td, #s-bl th, #s-bl thead, #s-bl tr, #s-cnt {
    display: block;
  }
  #s-bl thead tr {
    position: absolute;
    top: -9999px;
    left: -9999px;
  }
  #s-bl tr {
    border-top: 1px solid #e3e7ed;
    border-color: var(--cc-cookie-table-border);
  }
  #s-bl td {
    border: none;
    position: relative;
    padding-left: 35%;
  }
  #s-bl td:before {
    position: absolute;
    left: 1em;
    padding-right: 0.625em;
    white-space: nowrap;
    content: attr(data-column);
    color: #000;
    color: var(--cc-text);
    overflow: hidden;
    text-overflow: ellipsis;
  }
  #cm .c-bn, .cc_div .c-bn {
    width: 100%;
    margin-right: 0;
  }
  #s-cnt #s-rall-bn {
    margin-left: 0;
  }
  .cc_div #c-bns {
    flex-direction: column;
  }
  #c-bns button + button, #s-cnt button + button {
    margin-top: 0.625em;
    margin-left: 0;
    float: unset;
  }
  #cm.box, #cm.cloud {
    left: 1em;
    right: 1em;
    width: auto;
  }
  #cm.cloud.left, #cm.cloud.right {
    margin: 0;
  }
  .cc_div .cloud #c-bns, .cc_div .cloud #c-inr, .cc_div .cloud #c-inr-i {
    display: block;
    width: auto;
    min-width: unset;
  }
  .cc_div .cloud #c-txt {
    font-size: 0.9em;
  }
  .cc_div .cloud #c-bns {
    margin-top: 1.625em;
  }
}
.cc_div.ie #c-vln {
  height: 100%;
  padding-top: 5.62em;
}

.cc_div.ie .bar #c-vln {
  padding-top: 0;
}

.cc_div.ie #cs {
  max-height: 37.5em;
  position: relative;
  top: 0;
  margin-top: -5.625em;
}

.cc_div.ie .bar #cs {
  margin-top: 0;
  max-height: 100%;
}

.cc_div.ie #cm {
  border: 1px solid #dee6e9;
}

.cc_div.ie #c-s-in {
  top: 0;
}

.cc_div.ie .b-tg {
  padding-left: 1em;
  margin-bottom: 0.7em;
}

.cc_div.ie .b-tg .c-tgl:checked ~ .c-tg:after {
  left: 1.95em;
}

.cc_div.ie #s-bl table {
  overflow: auto;
}

.cc_div.ie .b-tg .c-tg {
  display: none;
}

.cc_div.ie .b-tg .c-tgl {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  margin-bottom: 0.2em;
  height: auto;
}

.cc_div.ie #s-cnt .b-bn .b-tl {
  padding: 1.3em 6.4em 1.3em 1.4em;
}

.cc_div.ie .bar #s-bl td:before {
  display: none;
}

.cc_div.ie .bar #s-bl td {
  padding: 0.8em 0.625em 0.8em 1.2em;
}

.cc_div.ie .bar #s-bl thead tr {
  position: relative;
}

.cc_div.ie .b-tg .t-lb {
  filter: alpha(opacity=0);
}

.cc_div.ie #cm-ov, .cc_div.ie #cs-ov {
  filter: alpha(opacity=80);
}

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

h2,
h3,
h4,
h5 {
  margin-top: 20px;
}

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: #00614F;
}
a:hover, a:active, a:focus {
  color: #00614F;
  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='%2300C19F' 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: 6px;
  background: #00C19F;
}

@media (min-width: 37.5em) {
  h1 {
    margin-top: 45px;
    margin-bottom: 25px;
  }
  h2,
  h3,
  h4,
  h5 {
    margin-top: 15px;
    margin-bottom: 10px;
  }
  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.1875rem;
    padding-left: 25px;
  }
}
@media (min-width: 60em) {
  h1 {
    margin-top: 50px;
    margin-bottom: 30px;
  }
  h2,
  h3,
  h4,
  h5 {
    margin-top: 25px;
    margin-bottom: 15px;
  }
  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.375rem;
  }
}
.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-BRAND
\*------------------------------------*/
p {
  font-weight: 300;
  font-family: "Rubik", "rubik-fallback-arial", trebuchet ms, helvetica, arial, sans-serif;
}

.intro {
  font-weight: 400;
  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: rgb(39.2045454545, 133.2954545455, 121.9696969697);
  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, #00C19F);
  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, #00C19F);
}

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

.box-decoration-title ::selection {
  background: #00C19F;
  color: #08080A;
}

.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.
 */
.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;
}
picture img {
  height: 100%;
}

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

.main-content ul,
.main-content ol {
  padding: 0;
  padding-right: 20px;
  padding-left: 20px;
  margin-left: auto;
}
.main-content ol {
  padding-left: 20px;
}
.main-content ul li {
  list-style: none;
}
.main-content ul li:before {
  content: "";
  background-color: #00C19F;
  position: absolute;
  top: 5px;
  left: calc(20px * -1 + 2px);
  height: 10px;
  width: 10px;
}
@media (min-width: 37.5em) {
  .main-content ul li:before {
    top: 6px;
    left: calc(25px * -1 + 2px);
  }
}
@media (min-width: 60em) {
  .main-content ul li:before {
    top: 7px;
    left: calc(25px * -1 + 2px);
  }
}
@media (min-width: 37.5em) {
  .main-content ul {
    padding-left: 25px;
  }
  .main-content ol {
    padding-left: 25px;
  }
}
@media (min-width: 60em) {
  .main-content ul {
    padding-left: 25px;
  }
  .main-content ol {
    padding-left: 25px;
  }
}

/*------------------------------------*\
  $TABLES
\*------------------------------------*/
table {
  width: 100%;
  max-width: 100%;
  border-collapse: collapse;
  display: block;
  margin-top: 20px;
  margin-bottom: 20px;
  padding-bottom: 10px;
  overflow-x: auto;
  position: relative;
  -webkit-overflow-scrolling: touch;
  scrollbar-face-color: #00C19F;
  scrollbar-track-color: #f5f5f5;
}
@-moz-document url-prefix() {
  table {
    scrollbar-color: #bcbcbc #f5f5f5;
  }
}
table::-webkit-scrollbar {
  height: 10px;
}
table::-webkit-scrollbar-track {
  -webkit-box-shadow: inset 0 0 2px rgba(0, 0, 0, 0.3);
  border-radius: 5px;
  background-color: #f5f5f5;
}
table::-webkit-scrollbar-thumb {
  border-radius: 5px;
  background: #bcbcbc;
}
table::-webkit-scrollbar-button {
  display: block;
  height: 10px;
  width: 0;
}
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: 20px 60px 20px 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;
  font-size: 0.9375rem;
  background-color: #ffffff;
  color: #00C19F;
}

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

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

tr {
  border: 1px solid transparent;
}

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

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

.table-wrapper {
  position: relative;
}

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

/*------------------------------------*\
  $TABLES-BRAND
\*------------------------------------*/
th,
td {
  color: #222222;
  padding-right: 40px;
  padding-left: 30px;
  background-color: transparent;
}
@media (min-width: 60em) {
  th,
  td {
    padding-top: 25px;
    padding-bottom: 25px;
    padding-right: 50px;
  }
}
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 #00C19F;
  font-size: 1rem;
}
@media (min-width: 48em) {
  th {
    font-size: 1.0625rem;
  }
}
@media (min-width: 60em) {
  th {
    font-size: 1.125rem;
  }
}

td {
  border-bottom: 1px solid #ddd;
  font-size: 0.875rem;
}
@media (min-width: 48em) {
  td {
    font-size: 0.9375rem;
  }
}
@media (min-width: 60em) {
  td {
    font-size: 1rem;
  }
}

tr {
  border: none;
  background-color: transparent;
}
tr:first-child th:nth-child(2n+2),
tr:first-child td:nth-child(2n+2) {
  border-top-left-radius: 0px;
  border-top-right-radius: 0px;
}
@media (min-width: 48em) {
  tr:first-child th:nth-child(2n+2),
  tr:first-child td:nth-child(2n+2) {
    border-top-left-radius: 0px;
    border-top-right-radius: 0px;
  }
}
tr:first-child th {
  border-color: #00C19F;
}
tr:last-child td {
  border-bottom: none;
}
tr:last-child td:nth-child(2n+2) {
  border-bottom-left-radius: 0px;
  border-bottom-right-radius: 0px;
}
@media (min-width: 48em) {
  tr:last-child td:nth-child(2n+2) {
    border-bottom-left-radius: 0px;
    border-bottom-right-radius: 0px;
  }
}
tr:last-child th {
  border-bottom: transparent;
}

/*------------------------------------*\
  $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: #434343;
  background-color: #ffffff;
  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: #ffffff;
  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 #00C19F;
  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: #434343;
  opacity: 0.6; /* Firefox */
}

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

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

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;
}
@media (min-width: 48em) {
  input[type=text],
  input[type=email],
  input[type=tel],
  input[type=search],
  input[type=number],
  input[type=date],
  input[type=url],
  input[type=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: 500;
  font-family: "Rubik", "rubik-fallback-arial", trebuchet ms, helvetica, arial, sans-serif;
  font-size: 1rem;
  margin-bottom: 10px;
}

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;
}
@media (min-width: 48em) {
  select {
    background-size: 16px 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-134.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-134 .post, .layout--cards-224 .post {
    margin-right: 20px;
    margin-bottom: 20px;
  }
}
@media (min-width: 48em) and (max-width: 59.9375em) {
  .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: 59.9375em) {
  .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;
}
.layout__container.negative-margin {
  margin-top: -140px;
}
@media (min-width: 37.5em) {
  .layout__container.negative-margin {
    margin-top: -140px;
  }
}
@media (min-width: 48em) {
  .layout__container.negative-margin {
    margin-top: -180px;
  }
}
@media (min-width: 67.5em) {
  .layout__container.negative-margin {
    margin-top: -155px;
  }
}
.layout--cards-134 .post {
  margin-bottom: 10px;
}
@media (min-width: 48em) and (max-width: 60em) {
  .layout--cards-134 .post {
    width: calc((99.99% - 2 * 20px) / 3);
    margin-right: 20px;
    margin-bottom: 20px;
  }
  .layout--cards-134 .post:nth-child(3n+3) {
    margin-right: 0;
  }
  .layout--cards-134 .post:nth-last-child(-n+3):nth-child(3n+1) {
    margin-bottom: 0;
  }
  .layout--cards-134 .post:nth-last-child(-n+3):nth-child(3n+1) ~ .post {
    margin-bottom: 0;
  }
  .layout--cards-134.grid__no-gap .post {
    width: 33.3%;
    margin-right: 0;
    margin-bottom: 0;
  }
}
@media (min-width: 60em) {
  .layout--cards-134 .post {
    width: calc((99.99% - 3 * 30px) / 4);
    margin-right: 30px;
    margin-bottom: 30px;
  }
  .layout--cards-134 .post:nth-child(2n+2) {
    margin-right: 30px;
  }
  .layout--cards-134 .post:nth-child(4n+4) {
    margin-right: 0;
  }
  .layout--cards-134 .post:nth-last-child(-n+4):nth-child(4n+1) {
    margin-bottom: 0;
  }
  .layout--cards-134 .post:nth-last-child(-n+4):nth-child(4n+1) ~ .post {
    margin-bottom: 0;
  }
  .layout--cards-134.grid__no-gap .post {
    width: 25%;
    margin-right: 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: #00C19F;
}
.nav__primary a {
  display: block;
  padding-top: 6px;
  padding-bottom: 6px;
  padding-left: 20px;
  padding-right: calc(55px + 20px);
  background-color: #00C19F;
  color: #222222;
  font-size: 1rem;
  line-height: 1.5;
}
.nav__primary a:hover, .nav__primary a:active, .nav__primary a:focus {
  background-color: #00C19F;
  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: #00C19F;
}
.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: #00C19F;
  }
  .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: #00C19F;
  }
  .nav__utility li > a:hover, .nav__utility li > a:active, .nav__utility li > a:focus {
    color: #00614F;
  }
  .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%;
  }
  @-moz-document url-prefix() {
    .nav-ul-level2 {
      scrollbar-color: #bcbcbc #f5f5f5;
    }
  }
  .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: #00C19F;
    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 {
    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: #00C19F;
  }
  .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: #00C19F;
  }
  .nav__primary .nav-li-level1 > a {
    display: block;
  }
  .nav__utility a:after {
    background-color: #00614F;
  }
  .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: #00C19F;
  }
  .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: 15px;
}
.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: 65px;
}
.page-header__logo svg,
.page-header__logo img {
  display: block;
  width: 100%;
  max-width: 65px;
  height: 30px;
}
.page-header__logo,
.page-header__logo svg,
.page-header__logo img {
  transition: all 0.2s ease-in-out;
}
.page-header__phone {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  text-decoration: none;
  margin-right: 15px;
}
.page-header__phone p {
  line-height: 1;
  margin: 0;
}
.page-header__phone svg {
  height: 24px;
  width: 24px;
}
.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;
  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 - 5px);
}
.page-header__menu svg {
  height: 40px;
  width: 40px;
  fill: #ffffff;
}
.page-header__menu .menu-toggle__close {
  height: 24px;
  width: 24px;
}
.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: #1daf97;
}
.page-header__enquiry {
  position: relative;
  padding: 20px;
  background-color: #00C19F;
  width: 100%;
}
.page-header__search[aria-expanded=false] + .page-header__enquiry {
  padding-top: 0;
}
@media (max-width: 67.49em) {
  .page-header__search {
    position: relative;
    width: 100%;
  }
}
.page-header__search--upper {
  padding: 12px 20px 18px;
  background: #00C19F;
}
.page-header__search--lower {
  background: #ddd;
  padding: 25px 20px 30px;
  z-index: 20;
}
.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 {
  background-color: #000000;
  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[aria-expanded=false] .search--close {
  display: none;
}
.page-header__search[aria-expanded=false] .search--open {
  display: block;
}
.page-header__search svg {
  fill: #00C19F;
  height: 22px;
  width: 22px;
}
.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: block;
  height: 16px;
  width: 16px;
}
.page-header__search .search--open {
  display: none;
}
.page-header__search .search__form {
  width: 100%;
}
.page-header__search .search__btn {
  height: 40px;
  width: 40px;
  position: relative;
  right: -10px;
  display: flex;
}
.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: 96px;
  }
  .page-header__logo svg,
  .page-header__logo img {
    max-width: 98px;
    height: 46px;
  }
  .page-header__phone {
    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: 140px;
    flex-shrink: 1;
    flex-grow: 1;
    flex-basis: 140px;
  }
  .page-header__logo svg,
  .page-header__logo img {
    max-width: 140px;
    height: 64px;
  }
  .page-header .phone__number {
    font-size: 1.5625rem;
  }
  .page-header__contact {
    display: block;
    margin-right: 25px;
  }
  .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 {
    right: inherit;
    height: 50px;
    width: 50px;
  }
  .page-header__search input {
    width: calc(100% - 60px);
    height: 60px;
  }
  .page-header__search button {
    height: 60px;
    width: 60px;
  }
}
@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: #00614F;
  }
  .page-header .phone__number {
    top: 0;
    color: #00C19F;
    font-size: 1.125rem;
  }
  .page-header .phone__number:after {
    background-color: #00C19F;
  }
  .page-header .phone__number:hover:after, .page-header .phone__number:active:after, .page-header .phone__number:focus:after {
    background-color: #00614F;
  }
  .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;
  }
}

/*------------------------------------*\
  $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;
  }
  .has-sticky-nav .page-header__logo--green {
    opacity: 1;
  }
}
@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;
  display: none;
}
.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;
  color: #00C19F;
}
.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: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: #1daf97;
}
.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: #00C19F;
  border-radius: 50%;
  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);
    display: flex;
  }
  .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 {
  color: #ffffff;
  position: relative;
}
.page-header__logo:hover, .page-header__logo:active, .page-header__logo:focus {
  color: #ffffff;
}
.page-header__logo--white {
  opacity: 1;
}
.page-header__logo--green {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  color: #00C19F;
  opacity: 0;
}
.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 24.027 34.049'%3E%3Cpath fill='%23fff' d='M0,25.826C0,21.283,5.38,17.6,12.014,17.6s12.013,3.681,12.013,8.223-5.378,8.223-12.013,8.223S0,30.368,0,25.826ZM4.6,21.6a5.329,5.329,0,0,0-2.684,4.23A5.329,5.329,0,0,0,4.6,30.056a13.224,13.224,0,0,0,7.411,2.073,13.224,13.224,0,0,0,7.411-2.073,5.33,5.33,0,0,0,2.683-4.231,5.329,5.329,0,0,0-2.683-4.23,13.224,13.224,0,0,0-7.411-2.073A13.224,13.224,0,0,0,4.6,21.6ZM3.8,8.218a8.217,8.217,0,1,1,8.216,8.218A8.217,8.217,0,0,1,3.8,8.218Zm1.92,0a6.3,6.3,0,1,0,6.3-6.3A6.3,6.3,0,0,0,5.716,8.218Z'/%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;
}
.nav__utility--mobile + .page-header__enquiry {
  padding-top: 25px;
}
.page-header__search svg {
  fill: #ffffff;
}
.nav__overflow > .page-header__search {
  display: none;
}
.page-header__lower-wrapper > .page-header__search {
  display: none;
}
.page-header__search--lower button {
  margin-left: 5px;
}
.page-header__search--lower span {
  display: flex;
}
.page-header__basket {
  display: none;
  margin-right: 5px;
  margin-left: 5px;
}
@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;
  }
  .nav__utility--mobile + .page-header__enquiry {
    padding-top: 30px;
  }
  .nav__overflow > .page-header__search {
    display: block;
  }
  .page-header__search--upper {
    padding-top: 0;
    display: flex;
    justify-content: flex-end;
  }
  .page-header__search--lower {
    padding-top: 0;
    background: #00C19F;
  }
  .page-header__search--lower .search__bar {
    padding: 15px;
    padding-right: 5px;
    background: #000000;
    border-radius: 0px;
  }
  .page-header__basket {
    display: block;
    margin-right: 25px;
  }
}
@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;
  }
  .nav__utility--mobile + .page-header__enquiry {
    padding-top: 35px;
  }
}
@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__phone {
    margin-right: 40px;
  }
  .page-header__account {
    margin-right: 20px;
  }
  .page-header__lower-wrapper > .page-header__account a {
    margin: 0;
    height: 50px;
    width: 50px;
  }
  .page-header__lower-wrapper > .page-header__account a:before {
    left: auto;
    position: relative;
    margin: 0;
    width: 24px;
    height: 34px;
    background-size: 24px 34px;
  }
  .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;
  }
  .page-header__contact {
    margin-right: 30px;
  }
  .page-header__basket {
    margin-right: 27px;
  }
  .page-header__search {
    margin-right: 20px;
  }
  .nav__overflow > .page-header__search {
    display: none;
  }
  .page-header__lower-wrapper > .page-header__search {
    display: block;
    width: auto;
  }
  .page-header__search--upper {
    background: transparent;
  }
  .page-header__search--lower {
    top: calc(50% + 45px);
    right: 30px;
    padding: 0;
    background: transparent;
    max-width: 446px;
  }
  .page-header__search--lower .search__bar {
    background: #00C19F;
    box-shadow: 0px 5px 7px -4px rgba(0, 0, 0, 0.3);
  }
  .page-header__search--lower button {
    margin-left: 15px;
    margin-right: 10px;
    background: #00C19F;
  }
  .page-header__search svg {
    height: 30px;
    width: 30px;
  }
  .page-header__search .search--close {
    height: 18px;
    width: 18px;
  }
  .page-header__search[aria-expanded=true] .page-header__search--upper {
    position: relative;
  }
  .page-header__search[aria-expanded=true] .page-header__search--upper:before {
    content: "";
    position: absolute;
    top: -10px;
    right: -10px;
    bottom: -40px;
    left: -10px;
    background: #00C19F;
    border-top-left-radius: 0px;
    border-top-right-radius: 0px;
  }
}
@media (min-width: 75em) {
  .page-header__contact {
    margin-right: 35px;
  }
  .page-header__contact .btn {
    padding: 0 50px;
  }
  .page-header__search--lower {
    max-width: 486px;
  }
}
@media (min-width: 90em) {
  .page-header__logo {
    margin-left: 90px;
  }
  .page-header__menu {
    margin-right: 95px;
  }
  .page-header__search--lower {
    max-width: 551px;
  }
}

/*------------------------------------*\
  $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: 1249.99em) {
  .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);
    background-color: #00C19F;
  }
  .nav__overflow:after {
    content: "";
    height: 180px;
    display: block;
  }
}
@media (min-width: 48em) and (max-width: 67.49em) {
  .nav__overflow {
    min-height: calc(100vh - 110px);
  }
}
@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;
  animation-name: fade-in;
  animation-duration: 0.4s;
  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: #00C19F;
  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: #00C19F;
}

.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: #00C19F;
}

.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;
    padding-inline-end: calc(var(--footer-inner-padding) + 3rem);
  }
  .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);
  }
}
/*------------------------------------*\
  $BLOCKS
\*------------------------------------*/
/*------------------------------------*\
  $MODAL WINDOWS
\*------------------------------------*/
.modal {
  overflow: hidden;
  max-width: 95%;
  width: 1000px;
  position: relative;
  background-color: #f8f8f8;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  border-radius: 0px;
  text-align: left;
  z-index: 30;
  -webkit-font-smoothing: antialiased;
}
.modal__wrapper {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  height: 100%;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 30;
  padding: 1px;
  animation-name: fade-in;
  animation-duration: 0.4s;
}
.modal__header {
  position: relative;
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
}
.modal__close {
  position: relative;
  display: flex;
  width: 55px;
  height: 55px;
  background-color: #ededed;
  transition: background 0.3s ease-in-out;
  z-index: 40;
  cursor: pointer;
}
.modal__close svg {
  margin: auto;
  width: 17px;
  height: 16px;
  fill: #00C19F;
}
.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: #2D998C;
}
.modal__content {
  margin: 20px;
}
.modal__content .main-content:nth-child(2) {
  margin-top: 0;
}
.modal__body {
  background-color: #ffffff;
  overflow-y: auto;
  overflow-x: hidden;
  -webkit-overflow-scrolling: touch;
  transition: max-height 0.2s ease-in;
  max-height: 80vh;
  overscroll-behavior-y: none;
  scrollbar-face-color: #a3a3a3;
  scrollbar-base-color: #ddd;
  scrollbar-shadow-color: #707070;
}
@-moz-document url-prefix() {
  .modal__body {
    scrollbar-color: #a3a3a3 #ddd;
    scrollbar-width: thin;
  }
}
.modal__body::-webkit-scrollbar {
  width: 10px;
  height: 0;
}
.modal__body::-webkit-scrollbar-track {
  -webkit-box-shadow: inset 0 0 2px rgba(0, 0, 0, 0.3);
  background-color: #ddd;
}
.modal__body::-webkit-scrollbar-thumb {
  border-radius: 10px;
  background: #a3a3a3;
}
.modal__body::-webkit-scrollbar-button {
  width: 10px;
  height: 0;
  display: block;
}
.modal-content-loading .modal__body {
  max-height: 30vh;
}
@media screen and (max-height: 800px) {
  .modal-content-loading .modal__body {
    max-height: 50vh;
  }
}
.modal .modal__back-link {
  margin: 10px auto 0 10px;
  height: 40px;
  position: relative;
}
.modal .modal__back-link svg {
  fill: #ffffff;
  width: 10px;
  height: 9px;
  margin: auto;
  pointer-events: none;
  transform: rotate(90deg);
  position: absolute;
  left: 14px;
  top: 16px;
}
.modal .modal__back-link span {
  margin-left: 5px;
}
.modal__box--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;
  border-radius: 0px;
}
.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 {
    border-radius: 0px;
  }
  .modal__body {
    max-height: 95vh;
  }
  .modal__launch--video:before {
    border-radius: 0px;
  }
  .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: 30;
}
.overlay.is-visible {
  display: inherit;
  touch-action: none;
}

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

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

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

/*------------------------------------*\
  $MAPS
\*------------------------------------*/
.map__contact {
  min-height: 400px;
  width: 100%;
}
@media (min-width: 37.5em) {
  .map__contact {
    min-height: 500px;
  }
}
.map__module {
  height: 400px;
  min-height: 400px;
  width: 100%;
}
.map__module p {
  margin-top: 0;
  margin-bottom: 0;
  font-size: 1rem;
}
.map__module p:first-child {
  font-weight: 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: #00C19F;
  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: #00C19F;
}
.btn span {
  pointer-events: none;
}
.btn--override {
  text-decoration: none;
  border: 0;
  cursor: pointer;
  -webkit-appearance: none;
  padding: 0;
  background: transparent;
}
.btn--override .visually-hidden {
  margin: 0;
}
.btn--override:hover, .btn--override:active, .btn--override:focus {
  background: transparent;
}
.btn--rounded {
  border-radius: 0px;
}
.btn--full {
  width: 100%;
}
.btn--dark {
  background-color: #000000;
  color: #FBFBFB;
}
.btn--dark:hover, .btn--dark:active, .btn--dark:focus {
  background-color: #222222;
  color: #FBFBFB;
}
.btn--brand {
  background-color: #00C19F;
  color: #000000;
}
.btn--brand:hover, .btn--brand:active, .btn--brand:focus {
  background-color: #1daf97;
  color: #000000;
}
.btn--brand.alt {
  background-color: #00C19F;
  color: #ffffff;
}
.btn--brand.alt:hover, .btn--brand.alt:active, .btn--brand.alt:focus {
  background-color: #00614F;
  color: #ffffff;
}
.btn--secondary {
  background-color: #ccc;
  color: #222222;
}
.btn--secondary:hover, .btn--secondary:active, .btn--secondary:focus {
  background-color: #a3a3a3;
  color: #222222;
}

/*------------------------------------*\
  $CTA-WIDGETS
\*------------------------------------*/
.cta-widget__link {
  position: relative;
  display: flex;
  justify-content: flex-start;
  padding: 10px 15px;
  font-weight: 500;
  font-family: "Rubik", "rubik-fallback-arial", trebuchet ms, helvetica, arial, sans-serif;
  font-size: 0.875rem;
  line-height: 1.4;
  height: auto;
  text-align: left;
  box-shadow: -1px 3px 10px 0px rgba(0, 0, 0, 0.2);
  background: #000000;
}
.cta-widget__link:after {
  content: "";
  position: absolute;
  bottom: 14px;
  right: 20px;
  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='%2300C19F' %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);
}
.cta-widget__link span:first-child {
  display: none;
}
.page-header__cta > .cta-widget__link span:first-child {
  display: block;
}
.page-header__cta > .cta-widget__link br {
  display: none;
}
@media (min-width: 48em) {
  .cta-widget__link {
    font-size: 1.25rem;
    padding: 30px;
  }
  .cta-widget__link:after {
    bottom: 38px;
    right: 40px;
  }
  .cta-widget__link span:first-child {
    display: block;
  }
  .cta-widget__link span:last-child {
    display: none;
  }
  .page-header__cta > .cta-widget__link span:first-child {
    display: block;
  }
  .page-header__cta > .cta-widget__link br {
    display: block;
  }
}
@media (min-width: 100em) {
  .cta-widget__link {
    font-size: 1.3125rem;
    padding: 35px;
  }
  .cta-widget__link:after {
    bottom: 43px;
    right: 40px;
    width: 44px;
    height: 10px;
    background-size: 44px 10px;
  }
}

/*------------------------------------*\
  $ALERTS
\*------------------------------------*/
.alert {
  position: absolute;
  top: 80px;
  right: 0;
  max-width: 400px;
  z-index: 18;
  display: flex;
  justify-content: flex-end;
  will-change: transform; /* will animate, let the browser know before time */
  transform: translateX(640px);
  animation: alert-slide-in 0.8s;
  animation-delay: 1.5s;
  animation-fill-mode: forwards;
  margin-left: 20px;
}
.alert__wrapper {
  border-radius: 0px 0 0 0px;
  background-color: #08080A;
  box-shadow: 0px 5px 7px 0 rgba(0, 0, 0, 0.3);
  height: auto;
  padding: 20px 5px 20px 15px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
}
.alert__icon {
  width: 70px;
  height: 70px;
  flex-shrink: 0;
}
.alert__icon img,
.alert__icon svg {
  width: 100%;
  height: 100%;
}
.alert__message {
  margin-right: 10px;
  margin-left: 10px;
}
.alert__message > *:first-child {
  margin-top: 0;
}
.alert__message > *:last-child {
  margin-bottom: 0;
}
.alert__message p,
.alert__message a {
  color: #ffffff;
  line-height: 1.5;
  font-size: 0.8125rem;
}
.alert__message p strong,
.alert__message a strong {
  font-weight: 500;
  font-family: "Rubik", "rubik-fallback-arial", trebuchet ms, helvetica, arial, sans-serif;
}
.alert .btn {
  padding: 0;
  background-color: transparent;
  height: 40px;
  width: 40px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
  margin-top: -10px;
  margin-bottom: -10px;
}
.alert .btn svg {
  height: 16px;
  width: 16px;
  fill: #ffffff;
}
.alert--has-icon .alert__message {
  margin-left: 15px;
}
@media (min-width: 48em) {
  .alert {
    position: fixed;
    top: 120px;
    width: 470px;
    max-width: 470px;
  }
  .alert__wrapper {
    padding-left: 20px;
    padding-right: 15px;
    margin-left: 90px;
  }
  .alert__icon {
    width: 90px;
    height: 90px;
  }
  .alert__message p,
  .alert__message a {
    font-size: 0.875rem;
  }
  .alert .btn svg {
    height: 16px;
    width: 16px;
  }
  .alert--has-icon .alert__wrapper {
    margin-left: 0;
  }
  .alert--has-icon .alert__message {
    margin-left: 20px;
  }
}
@media (min-width: 67.5em) {
  .alert {
    top: 150px;
  }
}
@media (min-width: 75em) {
  .alert {
    top: 190px;
  }
}
@media (min-width: 90em) {
  .alert {
    top: 270px;
    width: 640px;
    max-width: 640px;
  }
  .alert__wrapper {
    padding: 35px 30px 35px 35px;
    margin-left: 100px;
  }
  .alert__icon {
    width: 100px;
    height: 100px;
  }
  .alert__message {
    margin-left: 5px;
    margin-right: 20px;
  }
  .alert__message p,
  .alert__message a {
    font-size: 1rem;
  }
  .alert--has-icon .alert__message {
    margin-left: 30px;
  }
}

@keyframes alert-slide-in {
  from {
    transform: translateX(640px);
  }
  to {
    transform: translateX(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 #00C19F;
  background-color: rgba(255, 255, 255, 0.5);
  transition: opacity 300ms ease-in-out;
  opacity: 0;
}
.glide__bullet:before {
  background-color: #00C19F;
}
.glide__bullet:focus {
  outline: none;
}
.glide__bullet:hover:before, .glide__bullet:focus:before {
  opacity: 0;
}
.glide__bullet:hover:after, .glide__bullet:focus:after {
  opacity: 1;
}
.glide__bullet--active:before {
  opacity: 1;
}
.glide__bullets {
  display: block;
  z-index: 2;
  bottom: 10px;
}
@media (min-width: 37.5em) {
  .glide__bullets {
    display: none;
  }
}
.glide__slides {
  margin: 0;
}
.glide__track .glide__slides {
  padding: 0;
  margin: 0;
}
.glide__slide {
  margin-bottom: 0;
  list-style: none;
  position: relative;
  white-space: normal;
}
.glide__slide:before {
  display: none;
}
.glide__slide picture * {
  display: block;
  width: 100%;
  margin-bottom: 0;
}
.glide__slide a {
  text-decoration: none;
}
.glide--swipeable {
  cursor: default;
}
.glide img {
  margin-bottom: 0;
}
.glide__caption {
  height: 100%;
  display: flex;
  flex-direction: column;
}
.glide__caption--wrap {
  position: absolute;
  top: 0;
  right: 20px;
  left: 20px;
  height: 100%;
  padding: 0;
}
@media (min-width: 48em) {
  .glide__caption--wrap {
    right: 30px;
    left: 30px;
  }
}
@media (min-width: 90em) {
  .glide__caption--wrap {
    position: absolute;
    top: 50%;
    right: 0;
    left: 0;
    padding: 0;
    transform: translateY(-50%);
  }
}
.glide__caption--wrap .wrapper {
  position: relative;
  width: 1170px;
  height: 100%;
  max-width: 100%;
  margin: 0 auto;
}
.glide__caption a {
  text-decoration: none;
}
.glide__caption .caption__title {
  margin-top: 0;
  margin-bottom: 0;
  line-height: 1.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: #00C19F;
}
@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: #00C19F;
  fill: #00C19F;
}
.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: 125%;
    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: #00C19F;
    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: center;
  align-items: flex-start;
  padding-top: 70px;
  padding-bottom: 80px;
}
@media (min-width: 37.5em) {
  .site--home .glide__caption {
    padding-top: 60px;
    padding-bottom: 110px;
  }
}
@media (min-width: 48em) {
  .glide__caption {
    padding-top: 110px;
    padding-bottom: 130px;
  }
  .site--home .glide__caption {
    padding-top: 90px;
    padding-bottom: 130px;
  }
}
@media (min-width: 67.5em) {
  .site--home .glide__caption, .glide__caption {
    padding-top: calc(140px - 30px);
    padding-bottom: 90px;
  }
}
@media (min-width: 90em) {
  .site--home .glide__caption, .glide__caption {
    padding-bottom: 80px;
    padding-top: calc(140px + 20px);
  }
}
.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: 37.5em) {
  .glide__caption .caption__title {
    max-width: 90%;
  }
}
@media (min-width: 48em) {
  .glide__caption .caption__title {
    font-size: 3.125rem;
  }
}
@media (min-width: 60em) {
  .glide__caption .caption__title {
    font-size: 3.75rem;
    max-width: 760px;
  }
}
.glide__caption .caption__desc {
  font-size: 0.9375rem;
  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 {
    font-size: 1.0625rem;
    margin-top: 20px;
    max-width: 470px;
  }
}
@media (min-width: 60em) {
  .glide__caption .caption__desc {
    font-size: 1.5625rem;
    max-width: 650px;
  }
}
@media (min-width: 67.5em) {
  .glide__caption .caption__desc {
    font-size: 1.0625rem;
    max-width: 600px;
  }
}
@media (min-width: 75em) {
  .glide__caption .caption__desc {
    font-size: 1.4375rem;
    max-width: 650px;
  }
}
@media (min-width: 81.25em) {
  .glide__caption .caption__desc {
    font-size: 1.5625rem;
  }
}
.glide__caption .caption__link {
  display: none;
}
.glide {
  /**
  * Gallery Sliders
  */
}
.glide--gallery picture {
  position: relative;
  padding-bottom: 66%;
  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-16x9 picture {
  position: relative;
  padding-bottom: 56%;
  overflow: hidden;
}
.glide--gallery-16x9 picture img,
.glide--gallery-16x9 picture video,
.glide--gallery-16x9 picture iframe,
.glide--gallery-16x9 picture object,
.glide--gallery-16x9 picture embed {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}
.glide--gallery-16x9 picture iframe,
.glide--gallery-16x9 picture object,
.glide--gallery-16x9 picture embed {
  width: 100%;
  height: 100.2%;
}
.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__arrow,
.glide--gallery .glide__arrow svg,
.glide--gallery .glide__arrow .glide__arrow--bg {
  height: 40px;
  width: 40px;
}
@media (min-width: 37.5em) {
  .glide--gallery .glide__arrow,
  .glide--gallery .glide__arrow svg,
  .glide--gallery .glide__arrow .glide__arrow--bg {
    height: 50px;
    width: 50px;
  }
}
.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: #00C19F;
}
.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: #00C19F;
}
.glide {
  /**
  * Video Headers
  */
}
.glide--video .glide__slide {
  opacity: 1;
}
.glide__video {
  width: auto;
  display: block;
  height: 101%;
}
@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: 22;
}
.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: 22;
  }
  .has-sticky-nav.has-media-window .page-header:before {
    opacity: 1;
  }
}
@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;
}
.nav-breadcrumbs .breadcrumbs {
  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;
}
.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 .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 .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 {
  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: #00C19F;
}
.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;
}

/*------------------------------------*\
  $POSTS-BRAND
\*------------------------------------*/
.post--card {
  position: relative;
}
.post--card:before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  opacity: 0;
  background: #ededed;
  transition: opacity 0.2s ease-in-out;
}
.post--card:hover:before, .post--card:active:before, .post--card:focus:before {
  opacity: 1;
}
.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;
  padding-left: 20px;
  padding-right: 20px;
  width: 100%;
}
.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.3125rem;
}
.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%;
}
.panel--grey .post--card {
  background: #ffffff;
}
.post--news-article .post__details, .post--blog-article .post__details, .post--project .post__details {
  padding-bottom: 20px;
}
.post--page, .post--summary {
  background: #f5f5f5;
}
.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: #1daf97;
}
.post--project, .post--blog-article {
  background: #000000;
}
.post--project:before, .post--blog-article:before {
  background: #191919;
}
.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 {
  width: 65%;
}
.post--news-article .post__avatar--fallback, .post--blog-article .post__avatar--fallback {
  color: #ffffff;
  background: #000000;
}
.post--news-article {
  background: #f5f5f5;
}
.post--news-article:before {
  background: #ededed;
}
.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--fallback {
  color: #ffffff;
  background: #00C19F;
}
.post--project p,
.post--project .post__description {
  color: #FBFBFB;
}
.post--project .post__title,
.post--project .post__title a,
.post--project .post__meta {
  color: #00C19F;
}
.post--location:before {
  background: #e0e0e2;
}
.post--location-highlighted {
  background: #00C19F;
}
.post--location-highlighted:before {
  background: #1daf97;
}
.post--author picture, .post--team-member 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, .post--team-member picture img,
.post--team-member picture video,
.post--team-member picture iframe,
.post--team-member picture object,
.post--team-member picture embed {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}
.post--author picture iframe,
.post--author picture object,
.post--author picture embed, .post--team-member picture iframe,
.post--team-member picture object,
.post--team-member picture embed {
  width: 100%;
  height: 100.2%;
}
.post--product {
  text-align: center;
}
.post--product .post__details {
  align-items: center;
}
.post--product .basket__btn--viewmore {
  margin: 0;
  margin-bottom: 5px;
}
.post--product .post__price {
  margin-top: 0;
  margin-bottom: 0;
}
.post--product:hover .basket__btn--viewmore, .post--product:active .basket__btn--viewmore, .post--product:focus .basket__btn--viewmore {
  background: transparent;
}
.post--product-category {
  background: #ffffff;
  overflow: visible;
  -webkit-mask-image: none;
  flex-direction: row;
}
.post--product-category:before {
  background: #f5f5f5;
  border-radius: 0px;
}
.post--product-category:after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  box-shadow: 0px 4px 9px 0 rgba(0, 0, 0, 0.15);
  opacity: 1;
  transition: opacity 0.3s ease-in-out;
  border-radius: 0px;
}
.post--product-category figure {
  width: 100px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  background: #f5f5f5;
  border-top-left-radius: 0px;
  border-bottom-left-radius: 0px;
}
.post--product-category picture {
  position: relative;
  padding-bottom: 56%;
  overflow: hidden;
}
.post--product-category picture img,
.post--product-category picture video,
.post--product-category picture iframe,
.post--product-category picture object,
.post--product-category picture embed {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}
.post--product-category picture iframe,
.post--product-category picture object,
.post--product-category picture embed {
  width: 100%;
  height: 100.2%;
}
.post--product-category picture {
  width: 100%;
}
.post--product-category .post__details {
  padding-top: 25px;
}
.post--product-category:hover .post__title,
.post--product-category:hover .post__title a, .post--product-category:active .post__title,
.post--product-category:active .post__title a, .post--product-category:focus .post__title,
.post--product-category:focus .post__title a {
  color: #222222;
}
@media (min-width: 48em) {
  .post--card .post__details {
    padding: 25px;
  }
  .post--card .post__title {
    font-size: 1.5rem;
  }
  .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;
  }
  .post--product .post__button {
    padding-bottom: 10px;
  }
  .post--product-category {
    flex-direction: column;
  }
  .post--product-category:after, .post--product-category:before {
    border-radius: 0px;
  }
  .post--product-category figure {
    margin-top: 15px;
    width: auto;
    display: block;
    background: transparent;
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
  }
  .post--product-category .post__title {
    text-align: center;
  }
}
@media (min-width: 60em) {
  .post--card .post__details {
    padding-left: 30px;
    padding-right: 30px;
  }
  .post--card .post__title {
    font-size: 1.625rem;
  }
  .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;
  }
  .post--product .post__description {
    margin-top: 20px;
  }
  .post--product-category figure {
    margin-top: 30px;
  }
}
@media (min-width: 67.5em) {
  .post--product-category figure {
    margin-top: 25px;
  }
  .post--product-category .post__details {
    padding-bottom: 25px;
  }
}
@media (min-width: 75em) {
  .post--product-category figure {
    margin-top: 40px;
  }
  .post--product-category .post__details {
    padding-bottom: 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: #00C19F;
}
@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,
.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: #00C19F;
}
.panel--blue {
  background: #daeaf1;
}
.panel--pink {
  background: rgb(252.4, 232.1, 233.6);
}
.panel--orange {
  background: #faf0e8;
}
.panel--grey {
  background: #f5f5f5;
}
.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: 25px;
}
.panel--margin-bottom-grid-gap {
  margin-bottom: 25px;
}
.panel--padding-top-grid-gap {
  padding-top: 25px;
}
.panel--padding-bottom-grid-gap {
  padding-bottom: 25px;
}
@media (min-width: 48em) {
  .panel--margin-top-grid-gap {
    margin-top: 30px;
  }
  .panel--margin-bottom-grid-gap {
    margin-bottom: 30px;
  }
  .panel--padding-top-grid-gap {
    padding-top: 30px;
  }
  .panel--padding-bottom-grid-gap {
    padding-bottom: 30px;
  }
}
.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--green-gradient {
  background: linear-gradient(to bottom, #00C19F 0%, #2D998C 100%);
}
.panel--black {
  background: #000000;
}
.panel--custom-gradient .panel__text ::selection,
.panel--custom-gradient .text-content ::selection,
.panel--custom-gradient .cell ::selection,
.panel--custom-gradient .text-container ::selection, .panel--black .panel__text ::selection,
.panel--black .text-content ::selection,
.panel--black .cell ::selection,
.panel--black .text-container ::selection {
  background: #ffffff;
  color: #00C19F;
}
.panel--custom-gradient .panel__text > *,
.panel--custom-gradient .panel__text blockquote *,
.panel--custom-gradient .panel__text a,
.panel--custom-gradient .text-content > *,
.panel--custom-gradient .text-content blockquote *,
.panel--custom-gradient .text-content a,
.panel--custom-gradient .cell-text > *,
.panel--custom-gradient .cell-text blockquote *,
.panel--custom-gradient .cell-text a,
.panel--custom-gradient .text-container > *,
.panel--custom-gradient .text-container blockquote *,
.panel--custom-gradient .text-container a, .panel--black .panel__text > *,
.panel--black .panel__text blockquote *,
.panel--black .panel__text a,
.panel--black .text-content > *,
.panel--black .text-content blockquote *,
.panel--black .text-content a,
.panel--black .cell-text > *,
.panel--black .cell-text blockquote *,
.panel--black .cell-text a,
.panel--black .text-container > *,
.panel--black .text-container blockquote *,
.panel--black .text-container a {
  color: #ffffff;
}
.panel--custom-gradient .panel__text .snippet:before,
.panel--custom-gradient .text-content .snippet:before,
.panel--custom-gradient .cell-text .snippet:before,
.panel--custom-gradient .text-container .snippet:before, .panel--black .panel__text .snippet:before,
.panel--black .text-content .snippet:before,
.panel--black .cell-text .snippet:before,
.panel--black .text-container .snippet:before {
  background-color: #ffffff;
}
.panel--custom-gradient .panel__text blockquote:before,
.panel--custom-gradient .text-content blockquote:before,
.panel--custom-gradient .cell-text blockquote:before,
.panel--custom-gradient .text-container blockquote:before, .panel--black .panel__text blockquote:before,
.panel--black .text-content blockquote:before,
.panel--black .cell-text blockquote:before,
.panel--black .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--custom-gradient .panel__text > ul li:before,
.panel--custom-gradient .text-content > ul li:before,
.panel--custom-gradient .cell-text > ul li:before,
.panel--custom-gradient .text-container > ul li:before, .panel--black .panel__text > ul li:before,
.panel--black .text-content > ul li:before,
.panel--black .cell-text > ul li:before,
.panel--black .text-container > ul li:before {
  background-color: #ffffff;
}
.panel--custom-gradient .box-decoration-title,
.panel--custom-gradient .box-decoration-title a, .panel--black .box-decoration-title,
.panel--black .box-decoration-title a {
  color: #00C19F;
}
.panel--custom-gradient .cell a,
.panel--custom-gradient .cell figcaption, .panel--black .cell a,
.panel--black .cell figcaption {
  color: #ffffff;
}
.panel--custom-gradient .key-facts__fact > *,
.panel--custom-gradient .key-facts__fact a, .panel--black .key-facts__fact > *,
.panel--black .key-facts__fact a {
  color: #ffffff;
}
.panel--black .panel__text blockquote:before,
.panel--black .text-content blockquote:before,
.panel--black .cell blockquote:before,
.panel--black .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='%2300C19F' 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--black .panel__text blockquote p:last-child:not(:first-child),
.panel--black .text-content blockquote p:last-child:not(:first-child),
.panel--black .cell blockquote p:last-child:not(:first-child),
.panel--black .text-container blockquote p:last-child:not(:first-child) {
  color: #00C19F;
}
.panel--black .box-decoration-title > span {
  background-color: #00C19F;
}
.panel--black .box-decoration-title,
.panel--black .box-decoration-title a {
  color: #000000;
}
.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: #00C19F;
  width: 14px;
  height: 8px;
  flex-shrink: 0;
  pointer-events: none;
  transition: transform 0.2s ease-in-out;
}
.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.panel--open .panel--collapsible__btn svg {
  transform: rotate(180deg);
}
.panel--collapsible.panel--green .panel--collapsible__btn svg, .panel--collapsible.panel--custom-gradient .panel--collapsible__btn svg {
  fill: #ffffff;
}
.panel--collapsible.panel--grey .table-fade-present:after {
  background: linear-gradient(to left, hsl(0, 0%, 96.0784313725%) 0%, hsla(0, 0%, 96.0784313725%, 0.738) 19%, hsla(0, 0%, 96.0784313725%, 0.541) 34%, hsla(0, 0%, 96.0784313725%, 0.382) 47%, hsla(0, 0%, 96.0784313725%, 0.278) 56.5%, hsla(0, 0%, 96.0784313725%, 0.194) 65%, hsla(0, 0%, 96.0784313725%, 0.126) 73%, hsla(0, 0%, 96.0784313725%, 0.075) 80.2%, hsla(0, 0%, 96.0784313725%, 0.042) 86.1%, hsla(0, 0%, 96.0784313725%, 0.021) 91%, hsla(0, 0%, 96.0784313725%, 0.008) 95.2%, hsla(0, 0%, 96.0784313725%, 0.002) 98.2%, hsla(0, 0%, 96.0784313725%, 0) 100%);
}
.panel--collapsible.panel--green .table-fade-present:after {
  background: linear-gradient(to left, hsl(169.4300518135, 100%, 37.8431372549%) 0%, hsla(169.4300518135, 100%, 37.8431372549%, 0.738) 19%, hsla(169.4300518135, 100%, 37.8431372549%, 0.541) 34%, hsla(169.4300518135, 100%, 37.8431372549%, 0.382) 47%, hsla(169.4300518135, 100%, 37.8431372549%, 0.278) 56.5%, hsla(169.4300518135, 100%, 37.8431372549%, 0.194) 65%, hsla(169.4300518135, 100%, 37.8431372549%, 0.126) 73%, hsla(169.4300518135, 100%, 37.8431372549%, 0.075) 80.2%, hsla(169.4300518135, 100%, 37.8431372549%, 0.042) 86.1%, hsla(169.4300518135, 100%, 37.8431372549%, 0.021) 91%, hsla(169.4300518135, 100%, 37.8431372549%, 0.008) 95.2%, hsla(169.4300518135, 100%, 37.8431372549%, 0.002) 98.2%, hsla(169.4300518135, 100%, 37.8431372549%, 0) 100%);
}
.panel--collapsible.panel--collapsible .table-fade-present:after {
  background: linear-gradient(to left, hsl(0, 0%, 96.0784313725%) 0%, hsla(0, 0%, 96.0784313725%, 0.738) 19%, hsla(0, 0%, 96.0784313725%, 0.541) 34%, hsla(0, 0%, 96.0784313725%, 0.382) 47%, hsla(0, 0%, 96.0784313725%, 0.278) 56.5%, hsla(0, 0%, 96.0784313725%, 0.194) 65%, hsla(0, 0%, 96.0784313725%, 0.126) 73%, hsla(0, 0%, 96.0784313725%, 0.075) 80.2%, hsla(0, 0%, 96.0784313725%, 0.042) 86.1%, hsla(0, 0%, 96.0784313725%, 0.021) 91%, hsla(0, 0%, 96.0784313725%, 0.008) 95.2%, hsla(0, 0%, 96.0784313725%, 0.002) 98.2%, hsla(0, 0%, 96.0784313725%, 0) 100%);
}
@media (min-width: 48em) {
  .panel--collapsible {
    border-radius: 0px;
    width: calc(99.99% - 2 * 30px);
  }
  .panel--collapsible__btn svg {
    width: 22px;
    height: 12px;
  }
  .panel--collapsible__body {
    padding-bottom: 40px;
  }
  .panel--collapsible.panel--collapsible .table-fade-present:after {
    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%);
  }
}
@media (min-width: 60em) {
  .panel--collapsible__btn {
    padding-top: 40px;
    padding-bottom: 40px;
  }
  .panel--collapsible__btn svg {
    margin-right: 20px;
  }
}
.panel--faq {
  background: #f5f5f5;
}
.panel .panel--faq {
  margin-top: 0;
  margin-bottom: 15px;
}
@media (min-width: 48em) {
  .panel .panel--faq {
    margin-bottom: 20px;
  }
}
.panel .panel--faq:first-child {
  margin-top: 0;
}
.panel .panel--faq:last-child {
  margin-bottom: 0;
}
.panel--with-gutter {
  max-width: 1170px;
  border-radius: 0px;
  margin-right: 20px;
  margin-left: 20px;
  padding-top: 25px;
  padding-bottom: 25px;
}
.panel--with-gutter .text-content,
.panel--with-gutter .panel__text {
  padding-right: 25px;
  padding-left: 25px;
}
@media (min-width: 48em) {
  .panel--with-gutter {
    border-radius: 0px;
    margin-right: 30px;
    margin-left: 30px;
    padding-top: 30px;
    padding-bottom: 30px;
  }
  .panel--with-gutter .text-content,
  .panel--with-gutter .panel__text {
    padding-right: 30px;
    padding-left: 30px;
  }
}
@media (min-width: 60em) {
  .panel--with-gutter {
    padding-top: 40px;
    padding-bottom: 40px;
  }
  .panel--with-gutter .text-content,
  .panel--with-gutter .panel__text {
    padding-right: 40px;
    padding-left: 40px;
  }
  .panel--with-gutter .text-content > *:not(.table-wrapper),
  .panel--with-gutter .panel__text > *:not(.table-wrapper) {
    padding-right: calc((870px - 100%) * -1);
  }
}
@media (min-width: 75em) {
  .panel--with-gutter {
    margin-left: auto;
    margin-right: auto;
  }
}
@media (min-width: 60em) {
  .panel--small {
    border-radius: 0px;
  }
}
@media (min-width: 75em) {
  .panel--medium {
    border-radius: 0px;
  }
}
@media (min-width: 90em) {
  .panel--large {
    border-radius: 0px;
  }
}
@media (min-width: 103.75em) {
  .panel--xl {
    border-radius: 0px;
  }
}
.panel--basket {
  width: 100%;
}

/*------------------------------------*\
  $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 {
  margin-top: 0;
}
.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: 25px 20px 30px;
  background-color: #000000;
}
.slab--cta .slab__icon {
  height: 46px;
  width: 46px;
  margin-bottom: 20px;
}
.slab--cta .slab__icon + div .slab__title {
  color: #00C19F;
}
.slab--cta .slab__title {
  color: #ffffff;
  margin-bottom: 0;
}
.slab--cta .slab__description {
  margin-top: 10px;
  margin-bottom: 0;
  color: #ffffff;
}
.slab--cta .btn {
  margin-top: 25px;
  width: 100%;
}
.slab--cta-button .slab__content {
  padding: 0;
  background-color: #00C19F;
  max-width: 540px;
}
.slab--cta-button .slab__title {
  margin-bottom: 0;
}
.slab--cta-button .btn {
  width: 100%;
  height: auto;
  padding: 15px 20px;
  margin: 0;
  font-size: 1.4375rem;
  justify-content: space-between;
}
.slab--cta-button .btn span {
  padding-right: 20px;
  text-align: left;
  line-height: 1.3;
}
.slab--cta-button .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-button .btn:hover:after, .slab--cta-button .btn:active:after, .slab--cta-button .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 {
    justify-content: space-between;
    align-items: center;
    flex-wrap: nowrap;
    padding: 30px;
    text-align: center;
  }
  .slab--cta .slab__icon {
    height: 50px;
    width: 50px;
    margin-bottom: 0;
    margin-right: 30px;
    flex-shrink: 0;
  }
  .slab--cta .slab__text {
    margin-right: 30px;
  }
  .slab--cta .slab__title,
  .slab--cta .slab__description {
    text-align: left;
  }
  .slab--cta .slab__title {
    width: 100%;
  }
  .slab--cta .btn {
    max-width: none;
    min-width: 250px;
    width: auto;
    flex-shrink: 0;
    margin-top: 0;
  }
  .slab--cta-button .slab__content {
    justify-content: center;
    max-width: 450px;
    padding: 0;
  }
  .slab--cta-button .slab__title {
    width: 100%;
  }
  .slab--cta-button .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.9375rem;
  }
  .slab--cta .slab__content {
    justify-content: space-between;
    align-items: center;
    flex-wrap: nowrap;
    padding: 30px;
    text-align: left;
  }
  .slab--cta .slab__title {
    margin: 0;
  }
  .slab--cta .btn {
    flex-shrink: 0;
    margin-left: 120px;
  }
  .slab--cta-button .slab__content {
    max-width: 460px;
    padding: 0;
  }
  .slab--cta-button .slab__title {
    margin: 0;
  }
  .slab--cta-button .btn {
    flex-shrink: 0;
    min-height: 100px;
    height: auto;
    font-size: 1.8125rem;
    padding: 30px 40px;
    margin-left: 0;
  }
}

/*------------------------------------*\
  $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: #00C19F;
  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:not(.cell--has-bg-style) .cell-text {
    padding: 0 20px;
  }
  .cell {
    margin-bottom: 20px;
  }
  .cell:last-child {
    margin-bottom: 0;
  }
  .grid__no-gap .cell {
    margin-bottom: 0;
  }
  .grid__no-gap .cell .image-caption {
    margin-bottom: 20px;
  }
  .grid__no-gap .cell:last-child .image-caption {
    margin-bottom: 0;
  }
}
.grid__container {
  padding: 0 20px;
}
@media (min-width: 48em) {
  .grid__container {
    padding: 0 30px;
  }
}
@media (min-width: 48em) {
  .content--full .grid__container {
    padding: 0;
  }
}

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

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

@media (min-width: 48em) {
  .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 .cell-text > *:first-child {
  margin-top: 0;
}
.cell:last-of-type .cell-text > *:last-child {
  margin-bottom: 0;
}
.cell img {
  display: block;
  max-width: 100%;
  width: 100%;
  padding: 0;
  height: 100%;
  object-fit: cover;
}
.cell.text-align-centre {
  text-align: center;
}
.cell.text-align-centre ul,
.cell.text-align-centre ol {
  display: flex;
  width: auto;
  flex-direction: column;
  justify-content: center;
}
.cell.text-align-centre ul li,
.cell.text-align-centre ol li {
  margin: 0 auto;
}
.cell.text-align-right {
  text-align: right;
}
.cell--has-bg-style {
  padding: 20px 25px;
  border-radius: 0px;
}
.cell--has-bg-style .cell-text {
  color: #ffffff;
}
.cell--has-bg-style .cell-text > *:first-child {
  margin-top: 0;
}
.cell--has-bg-style .cell-text > *:last-child {
  margin-bottom: 0;
}
.cell--has-bg-style .cell-text > *,
.cell--has-bg-style .cell-text a {
  color: #ffffff;
}
.cell--has-bg-style .cell-text blockquote p {
  color: #ffffff;
}
.cell--has-bg-style .cell-text 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 .cell-text .snippet:before {
  background: #ffffff;
}
.cell--has-bg-style .cell-text > ul li:before {
  background-color: #ffffff;
}
.cell--has-bg-style .box-decoration-title,
.cell--has-bg-style .box-decoration-title a {
  color: #00C19F;
}

@media (min-width: 48em) {
  .cell .cell-text > *:first-child {
    margin-top: 0;
  }
  .cell .cell-text > *:first-child > *:first-child {
    margin-top: 0;
  }
  .cell .cell-text > *:last-child {
    margin-bottom: 0;
  }
  .cell .cell-text > *:last-child > *:last-child {
    margin-bottom: 0;
  }
  .cell--has-bg-style {
    padding: 25px 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 {
    justify-content: center;
  }
  .cell.vertically-align-bottom {
    justify-content: flex-end;
  }
}
@media (min-width: 60em) {
  .cell--has-bg-style {
    padding: 30px 35px;
  }
}
.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.key-facts__wrapper {
  padding: 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,
.key-facts__title a {
  font-size: 1.3125rem;
}
.key-facts__title a {
  text-decoration: none;
  color: inherit;
}
.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%;
  list-style: none;
  padding-left: 20px;
  padding-right: 20px;
  margin-bottom: 0;
  position: relative;
  white-space: initial;
}
.key-facts__fact:before {
  display: none;
}
.key-facts__fact.text-align-centre {
  text-align: center;
}
.key-facts__fact.text-align-centre .key-facts__image {
  margin-left: auto;
  margin-right: auto;
}
.key-facts__fact.text-align-centre .key-facts__title,
.key-facts__fact.text-align-centre p,
.key-facts__fact.text-align-centre a {
  max-width: 400px;
  margin-left: auto;
  margin-right: auto;
}
.key-facts__fact.text-align-right {
  text-align: right;
}
.key-facts__fact.text-align-right .key-facts__image {
  margin-left: auto;
}
@media (min-width: 48em) {
  .key-facts__title {
    margin-top: 0;
  }
  .key-facts__title,
  .key-facts__title a {
    font-size: 1.5rem;
  }
  .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__fact {
    padding-left: 30px;
    padding-right: 30px;
  }
  .key-facts__fact.text-align-centre .key-facts__title,
  .key-facts__fact.text-align-centre p,
  .key-facts__fact.text-align-centre a {
    max-width: 300px;
  }
}
@media (min-width: 75em) {
  .key-facts__title,
  .key-facts__title a {
    font-size: 1.625rem;
  }
  .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;
  }
  .keyfacts-slider--active .key-facts__fact {
    width: auto;
    margin-right: 0;
  }
  .key-facts__fact .key-facts__title,
  .key-facts__fact p,
  .key-facts__fact a {
    max-width: 210px;
  }
}

/*------------------------------------*\
  $PAGINATION
\*------------------------------------*/
.pagination {
  margin: 30px 0;
  height: auto;
  text-align: center;
}
.pagination .page,
.pagination .next,
.pagination .prev {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  width: 40px;
  height: 40px;
  margin-right: 5px;
  border: 1px solid #e2e2e2;
  font-size: 0.875rem;
  border-radius: 0px;
}
.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: #222222;
  background: #00C19F;
  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-iframe picture {
    width: 70px;
  }
}

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

/*------------------------------------*\
  $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: #00614F;
}
#cm a:hover, #cm a:active, #cm a:focus {
  color: #00614F;
}
@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: #222222;
}
#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: #00C19F;
  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: #1daf97;
  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: #00C19F;
}
#s-cnt #s-c-bn {
  background: #00C19F;
}
#s-cnt #s-c-bn:before, #s-cnt #s-c-bn:after {
  background: #ffffff;
}
#s-cnt .p {
  color: #000000;
}
#s-cnt .p a {
  color: #00614F;
}
#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: #00C19F;
}
#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: #00C19F;
  color: #000000;
}
#s-bns button#s-all-bn:hover, #s-bns button#s-all-bn:active, #s-bns button#s-all-bn:focus {
  background: #1daf97;
  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: #00C19F;
}

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

/*------------------------------------*\
  $MODAL-BRAND
\*------------------------------------*/
.modal {
  border-radius: 0px;
}
.modal__close {
  position: absolute;
  right: 0;
  background: transparent;
}
.modal__close svg {
  fill: #000000;
}
.modal__close:hover, .modal__close:active, .modal__close:focus {
  background: transparent;
}
.modal__close:hover svg, .modal__close:active svg, .modal__close:focus svg {
  fill: #292929;
}
.modal__box--video .modal__close {
  right: 7px;
}
.modal__box--video .modal__content {
  margin: 40px 20px;
}
.modal__box--path .modal__close {
  right: 7px;
}
.modal__box--path .modal__content > .layout__container {
  padding-left: 0;
  padding-right: 0;
}
.modal__box--path .modal__content > .layout__container > .slab {
  margin: 0;
}
.modal__box--scrape {
  width: 560px;
}
.modal__box--scrape h2 {
  margin-top: 0;
  margin-right: 30px;
}
.modal__box--scrape h3 {
  margin-top: 30px;
  margin-bottom: 25px;
}
.modal__box--scrape .modal__content {
  margin-bottom: 30px;
}
.modal__box--scrape .field {
  margin-bottom: 20px;
}
.modal__box--scrape .field--last {
  margin-left: 20px;
}
.modal__box--scrape .field__container-flex {
  display: flex;
  justify-content: flex-start;
  flex-wrap: nowrap;
}
.modal__box--scrape .btn {
  margin-top: 20px;
}
.modal__box--scrape .basket-link {
  margin-top: 20px;
  margin-bottom: 0;
  text-align: right;
}
.modal.product-listing__image .modal__content {
  margin-top: 40px;
}
.modal.product-listing__image .modal__close {
  height: 40px;
  width: 40px;
}
@media (min-width: 48em) {
  .modal {
    border-radius: 0px;
  }
  .modal__box--video .modal__content, .modal.product-listing__image .modal__content {
    margin: 40px 35px;
  }
  .modal__box--scrape .modal__content {
    margin: 30px;
    margin-bottom: 40px;
  }
  .modal__box--scrape .field {
    margin-bottom: 40px;
  }
  .modal__box--scrape .btn {
    margin-top: 35px;
  }
  .modal__box--scrape select {
    width: 210px;
  }
}
@media (min-width: 60em) {
  .modal__box--video .modal__close, .modal.product-listing__image .modal__close {
    right: 0;
    height: 50px;
    width: 50px;
  }
  .modal__box--video .modal__content, .modal.product-listing__image .modal__content {
    margin: 50px 40px;
  }
  .modal__box--scrape {
    width: 770px;
  }
  .modal__box--scrape .modal__content {
    margin-bottom: 30px;
  }
  .modal__box--scrape h3 {
    margin-bottom: 0;
    margin-right: 20px;
  }
  .modal__box--scrape .flex {
    display: flex;
    justify-content: space-between;
  }
  .modal__box--scrape .field__container-flex {
    justify-content: space-between;
  }
  .modal__box--scrape form {
    width: 320px;
    flex-shrink: 0;
  }
}

/*------------------------------------*\
  $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: #00C19F;
  scrollbar-base-color: #e0e0e2;
  scrollbar-shadow-color: #707070;
}
@-moz-document url-prefix() {
  .card-slider {
    scrollbar-color: #a3a3a3 #ddd;
    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: #00C19F;
  -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: 20px;
  margin-right: 20px;
  width: 240px;
  scroll-snap-align: start;
  background: linear-gradient(to bottom, #00C19F 0%, #2D998C 100%);
}
.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 * {
  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__details {
  padding-bottom: 35px;
}
.card-slider .post--slider-card:before {
  background: #00C19F;
}
.card-slider__highlighted-cards .post--slider-card {
  background: #000000;
}
.card-slider__highlighted-cards .post--slider-card .post__title,
.card-slider__highlighted-cards .post--slider-card .post__description,
.card-slider__highlighted-cards .post--slider-card .post__description * {
  color: #ffffff;
}
.card-slider__highlighted-cards .post--slider-card .post__title a {
  color: #ffffff;
}
.card-slider__highlighted-cards .post--slider-card:before {
  background: #191919;
}
.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-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;
}

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

/*------------------------------------*\
  $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: #00C19F;
  width: 65%;
}
.mega-header__avatar--fallback {
  color: #ffffff;
  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;
  }
}

/*------------------------------------*\
  $NEWS-LISTINGS
\*------------------------------------*/
#news_section_frame form {
  max-width: 100%;
}
#news_section_frame select {
  background-color: #00C19F;
  border: none;
  color: #000000;
  font-weight: 500;
  font-family: "Rubik", "rubik-fallback-arial", trebuchet ms, helvetica, arial, sans-serif;
  background-image: url(/background_images/application/template/select-arrow-down-black.svg);
}
#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;
  }
}

/*------------------------------------*\
  $PANEL-BACKGROUND
\*------------------------------------*/
.panel-bg {
  position: relative;
  background: transparent;
  max-width: 1600px;
  margin-right: auto;
  margin-left: auto;
}
.panel-bg picture, .panel-bg__video--wrapper {
  border-radius: 0px;
  overflow: hidden;
}
.panel-bg .layout__container, .panel-bg__video, .panel-bg__image {
  padding-left: 20px;
  padding-right: 20px;
}
.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__video--wrapper {
  display: flex;
}
.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: 47.99em) {
  .full-bleed-mobile .panel-bg__video, .full-bleed-mobile .panel-bg__image {
    padding-left: 0;
    padding-right: 0;
  }
  .full-bleed-mobile .panel-bg__video picture,
  .full-bleed-mobile .panel-bg__video .panel-bg__video--wrapper, .full-bleed-mobile .panel-bg__image picture,
  .full-bleed-mobile .panel-bg__image .panel-bg__video--wrapper {
    border-radius: 0;
  }
  .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 {
    display: flex;
  }
  .panel-bg__image, .panel-bg__video,
  .panel-bg .layout__container {
    width: 50%;
    padding-left: 30px;
    padding-right: 30px;
  }
  .panel-bg picture, .panel-bg__video--wrapper {
    border-radius: 0px;
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
  }
  .panel-bg__image, .panel-bg__video {
    height: 380px;
    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__image--right picture,
  .panel-bg__image--right .panel-bg__video--wrapper, .panel-bg__video--right picture,
  .panel-bg__video--right .panel-bg__video--wrapper {
    border-radius: 0px;
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
  }
  .panel-bg__video video {
    max-width: initial;
    max-height: initial;
  }
  .panel-bg__video--wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
  }
  .panel-bg__content {
    padding-top: 0;
    padding-bottom: 0;
    margin-bottom: 0;
  }
  .panel-bg .wrapper__variable-width {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
  }
}
@media (min-width: 67.5em) {
  .panel-bg__image {
    height: auto;
  }
  .panel-bg__image picture {
    position: relative;
    padding-bottom: 75%;
    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__video {
    height: auto;
  }
  .panel-bg__video video {
    height: 100%;
  }
  .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;
  }
}
@media (min-width: 100em) {
  .panel-bg picture, .panel-bg__video--wrapper {
    border-top-left-radius: 0px;
    border-bottom-left-radius: 0px;
  }
  .panel-bg__video--right picture,
  .panel-bg__video--right .panel-bg__video--wrapper, .panel-bg__image--right picture,
  .panel-bg__image--right .panel-bg__video--wrapper {
    border-top-right-radius: 0px;
    border-bottom-right-radius: 0px;
  }
}

/*------------------------------------*\
  $PRODUCT-LISTING
\*------------------------------------*/
.product-listing form {
  width: 100%;
  max-width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.product-listing .loading svg,
.product-listing .added svg {
  top: -1px;
}
.product-listing .added svg {
  top: 0;
  left: -25px;
  width: 15px;
  height: 15px;
}
.product-listing .layout__container {
  padding: 0;
}
.product-listing .panel--collapsible {
  width: 100%;
  margin-top: 25px;
  margin-bottom: 20px;
}
.product-listing .table-wrapper {
  margin-left: 20px;
  margin-right: 20px;
}
.product-listing th:nth-child(2n+2),
.product-listing td:nth-child(2n+2) {
  background-color: #ededed;
}
.product-listing__column {
  position: relative;
}
.product-listing__jcop-logo {
  height: 70px;
  width: 70px;
  position: absolute;
  top: -10px;
  right: -10px;
}
.product-listing__title a {
  color: inherit;
}
.product-listing__price {
  margin-top: 0;
  font-size: 1.4375rem;
}
.product-listing__downloads {
  margin: 0;
  margin-bottom: 30px;
}
.product-listing__downloads li {
  list-style: none;
}
.product-listing__downloads li:before {
  display: none;
}
.product-listing__downloads a {
  font-weight: 500;
  font-family: "Rubik", "rubik-fallback-arial", trebuchet ms, helvetica, arial, sans-serif;
  color: inherit;
}
.product-listing .product-listing__downloads {
  padding: 0;
}
.product-listing__gallery-modal-btn {
  display: none;
  width: 100%;
  justify-content: flex-end;
  position: relative;
  margin-top: -50px;
  right: 20px;
  top: -20px;
}
.product-listing__gallery-modal-btn a {
  width: 50px;
  height: 50px;
  background: rgba(255, 255, 255, 0.7);
}
.product-listing__gallery-modal-btn a:hover, .product-listing__gallery-modal-btn a:active, .product-listing__gallery-modal-btn a:focus {
  background: rgba(255, 255, 255, 0.85);
}
.product-listing__gallery-modal-btn svg {
  height: 16px;
  width: 16px;
  fill: #00C19F;
}
.product-listing__button {
  width: 100%;
  min-width: 200px;
}
.product-listing__button.btn {
  padding-right: 60px;
  padding-left: 30px;
}
.product-listing__button span {
  position: relative;
}
.product-listing__button svg {
  position: absolute;
  right: -30px;
  top: -2px;
  width: 18px;
  height: 18px;
  fill: #ffffff;
  margin-left: 15px;
}
.product-listing__button .btn--basket {
  padding-right: 50px;
}
.product-listing__button.added svg, .product-listing__button.loading svg {
  top: -1px;
}
.product-listing__contact {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 15px;
  margin-bottom: 30px;
  position: relative;
}
.product-listing__contact:hover .product-listing__phone-number, .product-listing__contact:active .product-listing__phone-number, .product-listing__contact:focus .product-listing__phone-number {
  text-decoration: underline;
  color: #00614F;
}
.product-listing__phone-btn {
  height: 40px;
  width: 40px;
  min-width: initial;
  padding-left: 0;
  padding-right: 0;
  margin-left: 30px;
  flex-shrink: 0;
}
.product-listing__phone-btn:before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}
.product-listing__phone-btn svg {
  height: 17px;
  width: 17px;
  fill: #00C19F;
}
.product-listing__phone-number {
  font-weight: 700;
  font-family: "Rubik", "rubik-fallback-arial", trebuchet ms, helvetica, arial, sans-serif;
  font-size: 1.125rem;
  color: #000000;
  text-decoration: none;
}
.product-listing__quote-text, .product-listing__phone-text {
  line-height: 1.1;
}
.product-listing__quote-text {
  margin-top: 0;
  margin-bottom: 5px;
}
.product-listing__phone-text {
  margin-top: 0;
  margin-bottom: 0;
}
.product-listing .glide__arrows {
  display: block;
}
.product-listing .panel--collapsible table {
  margin-bottom: 0;
}
.product-listing .panel--collapsible__body {
  padding-bottom: 30px;
}
@media (min-width: 37.5em) {
  .product-listing__jcop-logo {
    height: 80px;
    width: 80px;
  }
}
@media (min-width: 48em) {
  .product-listing {
    display: flex;
  }
  .product-listing .btn--basket {
    width: auto;
  }
  .product-listing__column {
    width: calc((100% - 20px) / 2);
    margin-right: 20px;
    padding-right: 30px;
  }
  .product-listing__column:last-child {
    margin-right: 0;
    padding-right: 0;
  }
  .product-listing__title {
    margin-top: 0;
  }
  .product-listing__price {
    font-size: 1.625rem;
  }
  .product-listing .product-listing__gallery-modal-btn {
    display: flex;
  }
  .product-listing__contact {
    margin-bottom: 20px;
  }
  .product-listing__contact-basket {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
  }
  .product-listing .panel--collapsible {
    background: transparent;
  }
  .product-listing .panel--collapsible__title {
    display: none;
  }
  .product-listing .panel--collapsible__body {
    padding-bottom: 0;
  }
  .product-listing .panel--collapsible .table-wrapper {
    margin-right: 0;
    margin-left: 0;
  }
  .product-listing__phone-btn {
    height: 50px;
    width: 50px;
    margin-left: 40px;
  }
  .product-listing__phone-btn svg {
    height: 20px;
    width: 20px;
  }
  .product-listing__phone-number {
    font-size: 1.25rem;
  }
}
@media (min-width: 60em) {
  .product-listing .panel--collapsible {
    margin-top: 30px;
    margin-bottom: 30px;
  }
  .product-listing__price {
    font-size: 1.8125rem;
  }
  .product-listing__jcop-logo {
    height: 90px;
    width: 90px;
  }
  .product-listing__phone-number {
    font-size: 1.5rem;
  }
  .product-listing .btn--basket {
    flex-shrink: 0;
    min-width: 170px;
  }
  .product-listing__contact {
    margin-bottom: 20px;
  }
  .product-listing__contact-basket {
    margin-top: 20px;
  }
}
@media (min-width: 67.5em) {
  .product-listing__jcop-logo {
    height: 120px;
    width: 120px;
    top: -20px;
    right: -20px;
  }
  .product-listing__contact {
    flex-grow: 1;
    margin: 0;
    margin-right: 20px;
  }
  .product-listing__contact-basket {
    flex-wrap: nowrap;
    justify-content: space-between;
    align-items: center;
  }
  .product-listing__phone-btn {
    margin-left: 10px;
  }
}
@media (min-width: 75em) {
  .product-listing__jcop-logo {
    height: 130px;
    width: 130px;
    top: -25px;
    right: -25px;
  }
  .product-listing__contact {
    margin-right: 30px;
  }
}
@media (min-width: 90em) {
  .product-listing__jcop-logo {
    height: 150px;
    width: 150px;
    top: -35px;
    right: -35px;
  }
}

.product-listing__image .cms-image picture {
  position: relative;
  padding-bottom: 66%;
  overflow: hidden;
}
.product-listing__image .cms-image picture img,
.product-listing__image .cms-image picture video,
.product-listing__image .cms-image picture iframe,
.product-listing__image .cms-image picture object,
.product-listing__image .cms-image picture embed {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}
.product-listing__image .cms-image picture iframe,
.product-listing__image .cms-image picture object,
.product-listing__image .cms-image picture embed {
  width: 100%;
  height: 100.2%;
}

/*------------------------------------*\
  $BASKET
\*------------------------------------*/
.basket input {
  background-color: #ffffff;
}
.basket ul {
  margin: 0;
  padding-right: 0;
  padding-left: 15px;
}
.basket li {
  list-style: none;
}
.basket li:before {
  display: none;
}
.basket p {
  margin: 0;
}
.basket .btn--text {
  width: auto;
  border: 0;
  cursor: pointer;
  -webkit-appearance: none;
  background: transparent;
  text-transform: uppercase;
  text-align: center;
  vertical-align: middle;
  text-decoration: none;
  padding: 0;
}
.basket .btn--text:hover, .basket .btn--text:active, .basket .btn--text:focus {
  text-decoration: underline;
}
.basket__section {
  background: transparent;
  padding: 0;
}
.basket__row {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  padding-top: 20px;
  margin-top: 20px;
  border-top: 1px solid rgba(43, 43, 43, 0.1);
}
.discounts__wrapper + .basket__row {
  border-top: 0;
  padding-top: 0;
}
.basket__row-discounts {
  color: #00C19F;
  border-top: 0;
  padding-top: 0;
}
.basket__notifications {
  color: #00C19F;
  margin-bottom: 20px;
  display: flex;
  padding-top: 20px;
  padding-bottom: 20px;
}
.basket__notifications svg {
  height: 23px;
  width: 24px;
  fill: #00C19F;
  margin-right: 10px;
  margin-top: 5px;
  flex-shrink: 0;
}
.basket__notifications ul {
  margin-top: 10px;
}
.basket__notifications ul li {
  list-style: disc;
}
.basket__notifications ul li:before {
  display: none;
}
.basket__notifications.alert {
  color: rgb(191.5543478261, 93.9456521739, 93.9456521739);
  background-color: #f2dede;
}
.basket__notifications.alert svg {
  fill: rgb(191.5543478261, 93.9456521739, 93.9456521739);
}
.basket__notifications.notice {
  color: rgb(63, 135, 166.5);
  background-color: #daeaf1;
}
.basket__notifications.notice svg {
  fill: rgb(63, 135, 166.5);
}
.basket__header {
  display: none;
}
.basket__product + .basket__row:not(.basket__product) {
  border-top: 1px solid rgba(43, 43, 43, 0.4);
}
.basket__product-title {
  width: 65%;
  margin-bottom: 15px;
}
.basket__product-title h3 {
  margin-top: 0;
  margin-bottom: 0;
}
.basket__product-price {
  width: 35%;
  text-align: right;
}
.basket__product-quantity {
  width: 65%;
  display: flex;
  align-items: center;
}
.basket__product-quantity input {
  width: 60px;
  margin-right: 10px;
}
.basket__product-quantity svg {
  flex-shrink: 0;
  height: 10px;
  width: 10px;
  margin-right: 2px;
  margin-top: 1px;
}
.basket__product-quantity .btn--text {
  display: flex;
  align-items: center;
}
.basket__product-total {
  display: flex;
  width: 100%;
  order: 1;
  margin-top: 20px;
}
.basket__product-total div {
  margin-right: auto;
}
.basket__product-remove {
  width: 35%;
  display: flex;
  align-items: center;
}
.basket__product-remove .btn--remove {
  border: 0;
  cursor: pointer;
  -webkit-appearance: none;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 30px;
  width: 30px;
  background-color: #2b2b2b;
  color: #ffffff;
  border-radius: 50%;
  margin-left: auto;
}
.basket__product-remove .btn--remove:hover, .basket__product-remove .btn--remove:active, .basket__product-remove .btn--remove:focus {
  background-color: #4e4e4e;
  text-decoration: none;
}
.basket__product-remove svg {
  height: 12px;
  width: 12px;
  fill: transparent;
}
.basket__product-delegate {
  width: 100%;
  margin-top: 15px;
}
.basket__product-delegate button {
  text-align: left;
  width: auto;
}
.basket__product-delegate .delegate__action {
  width: 100%;
}
.basket__discount-add {
  margin-top: 40px;
}
.basket__discount-add p {
  margin-bottom: 10px;
}
.basket__discount-add button {
  width: 100%;
  margin-top: 10px;
}
.basket__actions .btn {
  margin-top: 20px;
  width: 100%;
}
@media (min-width: 48em) {
  .basket__section {
    padding: 0;
  }
  .basket__row {
    padding-top: 25px;
    margin-top: 25px;
  }
  .basket__notifications {
    margin-bottom: 25px;
  }
  .basket__discount-add button {
    width: 200px;
  }
  .basket__row-discounts {
    padding-top: 0;
  }
  .basket__discount {
    display: flex;
    flex-wrap: wrap;
  }
  .basket__discount p {
    width: 100%;
  }
  .basket__discount input {
    width: calc(100% - 220px);
    margin-right: auto;
  }
  .basket__discount button {
    margin: 0;
  }
  .basket__actions {
    display: flex;
    justify-content: space-between;
  }
  .basket__actions .btn {
    width: 230px;
  }
}
@media (min-width: 60em) {
  .basket__section {
    padding: 0;
  }
  .basket__row {
    padding-top: 30px;
    margin-top: 30px;
  }
  .basket__row-value {
    padding-right: 80px;
    margin-right: 20px;
  }
  .basket__notifications {
    margin-bottom: 20px;
  }
  .basket__header {
    display: flex;
    padding-top: 0;
    margin-top: 0;
    border-top: 0;
  }
  .basket__header .basket__product-quantity {
    top: 0;
  }
  .basket__header + .basket__product {
    border-top: 1px solid rgba(43, 43, 43, 0.4);
  }
  .basket__product-title {
    display: flex;
    align-items: center;
    width: auto;
    max-width: calc(100% - 530px);
    margin-bottom: 0;
    margin-right: auto;
  }
  .basket__product-price {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    flex-shrink: 0;
    width: 130px;
    margin-right: 50px;
  }
  .basket__product-quantity {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    flex-shrink: 0;
    width: 70px;
    position: relative;
    top: 10px;
    margin-right: 20px;
  }
  .basket__product-quantity input {
    margin-right: 0;
  }
  .basket__product-quantity .btn--text {
    margin-top: 5px;
  }
  .basket__product-total {
    width: 150px;
    order: unset;
    margin-top: 0;
    align-items: center;
    justify-content: flex-end;
    flex-shrink: 0;
    margin-right: 20px;
  }
  .basket__product-total div {
    display: none;
  }
  .basket__product-remove {
    width: 80px;
    justify-content: flex-end;
    flex-shrink: 0;
  }
  .basket .delegate__list {
    width: 420px;
  }
  .basket__row-discounts {
    padding-top: 0;
    margin-top: 20px;
  }
  .basket .discounts__wrapper + .basket__row {
    margin-top: 20px;
  }
  .basket__discount-add {
    margin-top: 20px;
  }
  .basket__discount {
    display: flex;
    align-items: center;
    flex-wrap: nowrap;
  }
  .basket__discount p,
  .basket__discount input {
    margin: 0;
  }
  .basket__discount p {
    width: auto;
    margin-right: auto;
  }
  .basket__discount input,
  .basket__discount button {
    margin-left: 20px;
  }
  .basket__discount input {
    width: 320px;
  }
}

/*------------------------------------*\
  $BASKET-BRAND
\*------------------------------------*/
.basket__notifications {
  color: #222222;
}
.basket__notifications p {
  font-size: 1.125rem;
}
.basket__notifications li {
  font-size: 1rem;
}
.basket__notifications span {
  font-weight: 700;
  font-family: "Rubik", "rubik-fallback-arial", trebuchet ms, helvetica, arial, sans-serif;
}
.basket__notifications svg {
  margin-top: 3px;
}
.basket__row {
  border-top: 0;
  position: relative;
  margin-top: 15px;
  padding-top: 0;
}
.basket__product-remove {
  position: absolute;
  bottom: 0;
  right: 0;
  width: auto;
}
.basket__product-remove svg {
  fill: #000000;
  height: 16px;
  width: 16px;
}
.basket__product-title {
  width: 100%;
  display: flex;
  align-items: center;
}
.basket__product-title a {
  color: inherit;
}
.basket__product-quantity {
  width: 100%;
}
.basket__product-quantity form {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
}
.basket__product-quantity input {
  margin-right: 20px;
  text-align: center;
}
.basket__product-quantity label {
  display: block;
}
.basket .btn--remove {
  background-color: transparent;
  height: 40px;
  width: 40px;
}
.basket .btn--remove:hover, .basket .btn--remove:active, .basket .btn--remove:focus {
  background: #e0e0e2;
}
.basket .btn--text {
  width: 100%;
  justify-content: flex-end;
  padding-right: 50px;
  margin-top: 20px;
  margin-bottom: 8px;
  text-transform: none;
  font-size: 0.875rem;
  font-weight: 500;
  font-family: "Rubik", "rubik-fallback-arial", trebuchet ms, helvetica, arial, sans-serif;
}
.basket .btn--text svg {
  height: 25px;
  width: 25px;
  fill: #00C19F;
  margin: 0;
  margin-right: 12px;
}
.basket__btn--viewmore {
  height: 40px;
  width: 40px;
  margin-left: 5px;
}
.basket__btn--viewmore svg {
  fill: #00C19F;
  height: 14px;
  width: 18px;
}
.basket__product-input:nth-last-child(2) {
  flex-grow: 1;
}
@media (min-width: 30em) {
  .basket__row {
    margin-top: 40px;
  }
  .basket__product-quantity form {
    align-items: flex-end;
  }
  .basket .btn--text {
    width: auto;
    margin: 0;
    margin-left: 20px;
    padding-right: 60px;
    height: 50px;
  }
  .basket .btn--remove {
    height: 50px;
    width: 50px;
  }
}
@media (min-width: 48em) {
  .basket select {
    width: 200px;
  }
  .basket__product-title {
    width: auto;
    flex-shrink: 1;
    margin-top: 25px;
    margin-bottom: 0;
    margin-right: 30px;
  }
  .basket__product-quantity {
    width: auto;
    flex-shrink: 0;
    margin-right: 0;
    top: 0;
  }
  .basket__product-quantity form {
    flex-wrap: nowrap;
  }
  .basket__row {
    flex-wrap: nowrap;
    margin-top: 45px;
  }
  .basket .btn--text {
    font-size: 0.9375rem;
  }
  .basket__btn--viewmore svg {
    height: 17px;
    width: 22px;
  }
  .basket__actions {
    justify-content: flex-end;
  }
}
@media (min-width: 60em) {
  .basket__row-name {
    font-size: 1.125rem;
  }
  .basket__product-quantity input {
    margin-right: 50px;
  }
}

/*------------------------------------*\
  $CHECKOUT
\*------------------------------------*/
.checkout form {
  max-width: 100%;
}
.checkout__billing-address .field__container, .checkout__address-choice .field__container, .checkout__delivery-address .field__container {
  max-width: 900px;
}
.checkout__actions {
  margin-top: 20px;
}
.checkout__actions .basket__actions {
  justify-content: space-between;
}
.checkout hr {
  border: 0;
  height: 1px;
  background: rgba(43, 43, 43, 0.1);
  margin: 0;
}
.checkout__gdpr {
  margin-top: 20px;
}
@media (min-width: 60em) {
  .checkout__gdpr {
    margin-top: 30px;
  }
  .checkout__gdpr hr {
    margin-bottom: 10px;
  }
}
.checkout .field--value {
  color: #222222;
  margin-bottom: 30px;
}

/*------------------------------------*\
  $BASKET-BUTTON
\*------------------------------------*/
.basket-btn svg {
  height: 34px;
  width: 34px;
  fill: #ffffff;
  z-index: 1;
}
.basket-btn__icon {
  position: relative;
  display: block;
  height: 50px;
  width: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.basket-btn__quantity {
  display: none;
  align-items: center;
  justify-content: center;
  height: 30px;
  width: 30px;
  position: absolute;
  top: 3px;
  right: -3px;
  margin: auto;
  font-size: 1rem;
  font-weight: 500;
  font-family: "Rubik", "rubik-fallback-arial", trebuchet ms, helvetica, arial, sans-serif;
  color: #222222;
  background: #00C19F;
  border-radius: 50%;
  overflow: visible;
  clip: initial;
  z-index: 2;
}
.basket-btn__quantity:before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  height: 30px;
  width: 30px;
  background: #00C19F;
  border-radius: 50%;
  opacity: 1;
}
.basket-btn__quantity div {
  position: relative;
  z-index: 2;
}
.basket-btn--populated .basket-btn__quantity {
  display: flex;
}
.basket-btn--animated .basket-btn__quantity {
  animation: basket-animation-number-circle 0.8s ease-in-out 0s 1;
}
.basket-btn--animated .basket-btn__quantity:before {
  animation: basket-animation-number-circle-background 0.8s ease-in-out 0s 1;
}

@keyframes basket-animation-number-circle {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(0.7);
  }
  70% {
    transform: scale(1.2);
  }
  100% {
    transform: scale(1);
  }
}
@keyframes basket-animation-number-circle-background {
  0% {
    opacity: 0;
    transform: scale(0.7);
  }
  50% {
    opacity: 1;
    transform: scale(1);
  }
  100% {
    opacity: 0;
    transform: scale(3);
  }
}
/*------------------------------------*\
  $MOBILE-APP-BAR
\*------------------------------------*/
.mobile-app-bar {
  width: 100%;
  position: fixed;
  bottom: 0;
  z-index: 51;
  height: 100%;
  pointer-events: none;
}
.mobile-app-bar__wrapper {
  display: flex;
  flex-direction: column-reverse;
  height: 100%;
}
.mobile-app-bar ul {
  margin: 0;
}
.mobile-app-bar__product-listing {
  margin: 0 40px 10px;
  background: #ffffff;
  display: flex;
  flex-direction: row;
  position: relative;
  -webkit-mask-image: -webkit-radial-gradient(white, black);
  border-radius: 0px;
  overflow: hidden;
}
.mobile-app-bar__product-listing figure {
  width: 85px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  background: #ededed;
}
.mobile-app-bar__product-listing img {
  height: auto;
}
.mobile-app-bar__product-listing:hover figure, .mobile-app-bar__product-listing:active figure, .mobile-app-bar__product-listing:focus figure {
  background: #D5FFF8;
}
.mobile-app-bar__product-title {
  padding: 25px 20px;
  margin: 0;
  line-height: 1;
  flex-grow: 1;
}
.mobile-app-bar__product-title a {
  text-decoration-line: none;
  color: #222222;
  font-weight: 500;
  font-family: "Rubik", "rubik-fallback-arial", trebuchet ms, helvetica, arial, sans-serif;
  font-size: 0.75rem;
  word-break: break-word;
}
.mobile-app-bar__product-title a:before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}
.mobile-app-bar__product-title a:hover, .mobile-app-bar__product-title a:active, .mobile-app-bar__product-title a:focus {
  color: #00614F;
  text-decoration-line: underline;
}
.mobile-app-bar__nav {
  background-color: #00C19F;
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 0;
  height: 70px;
  padding-left: 15px;
  padding-right: 15px;
  pointer-events: all;
}
.mobile-app-bar__nav:before, .mobile-app-bar__nav:after {
  content: "";
  opacity: 1;
  transition: opacity 0.1s ease-in-out;
  pointer-events: none;
  position: absolute;
  bottom: 100%;
  left: 0;
  right: 0;
  width: 100%;
  height: 70px;
  z-index: 2;
}
.mobile-app-bar__nav:before {
  bottom: 0;
  box-shadow: 0px 0px 9px 0 rgba(0, 0, 0, 0.2);
  z-index: 3;
}
.mobile-app-bar__nav:after {
  opacity: 0;
  height: 40px;
  background: linear-gradient(to top, hsl(169.4300518135, 100%, 37.8431372549%) 0%, hsla(169.4300518135, 100%, 37.8431372549%, 0.738) 19%, hsla(169.4300518135, 100%, 37.8431372549%, 0.541) 34%, hsla(169.4300518135, 100%, 37.8431372549%, 0.382) 47%, hsla(169.4300518135, 100%, 37.8431372549%, 0.278) 56.5%, hsla(169.4300518135, 100%, 37.8431372549%, 0.194) 65%, hsla(169.4300518135, 100%, 37.8431372549%, 0.126) 73%, hsla(169.4300518135, 100%, 37.8431372549%, 0.075) 80.2%, hsla(169.4300518135, 100%, 37.8431372549%, 0.042) 86.1%, hsla(169.4300518135, 100%, 37.8431372549%, 0.021) 91%, hsla(169.4300518135, 100%, 37.8431372549%, 0.008) 95.2%, hsla(169.4300518135, 100%, 37.8431372549%, 0.002) 98.2%, hsla(169.4300518135, 100%, 37.8431372549%, 0) 100%);
}
.element-expanded--true .mobile-app-bar__nav:after {
  opacity: 1;
}
.mobile-app-bar__nav-item {
  height: 60px;
  flex-basis: 70px;
  list-style: none;
  padding: 0;
  margin: 0;
  z-index: 4;
}
.mobile-app-bar__nav-item a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}
.mobile-app-bar__nav-item svg {
  height: 26px;
  width: 26px;
}
.mobile-app-bar__nav-item span,
.mobile-app-bar__nav-item svg {
  pointer-events: none;
}
.mobile-app-bar__document-centre a:before {
  content: "";
  width: 17px;
  height: 26px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24.027 34.049'%3E%3Cpath fill='%23000' d='M0,25.826C0,21.283,5.38,17.6,12.014,17.6s12.013,3.681,12.013,8.223-5.378,8.223-12.013,8.223S0,30.368,0,25.826ZM4.6,21.6a5.329,5.329,0,0,0-2.684,4.23A5.329,5.329,0,0,0,4.6,30.056a13.224,13.224,0,0,0,7.411,2.073,13.224,13.224,0,0,0,7.411-2.073,5.33,5.33,0,0,0,2.683-4.231,5.329,5.329,0,0,0-2.683-4.23,13.224,13.224,0,0,0-7.411-2.073A13.224,13.224,0,0,0,4.6,21.6ZM3.8,8.218a8.217,8.217,0,1,1,8.216,8.218A8.217,8.217,0,0,1,3.8,8.218Zm1.92,0a6.3,6.3,0,1,0,6.3-6.3A6.3,6.3,0,0,0,5.716,8.218Z'/%3E%3C/svg%3E");
  background-size: 17px 26px;
  background-repeat: no-repeat;
  background-position: center center;
}
.mobile-app-bar__home a:before {
  content: "";
  width: 24px;
  height: 26px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 110'%3E%3Cpath d='M50 6.6L6.2 40.7v58.1c0 2.7 2.2 4.9 4.9 4.9h77.8c2.7 0 4.9-2.2 4.9-4.9V40.7L50 6.6M50 0c1 0 2 .3 2.8 1l45.4 35.4c1.1.9 1.8 2.2 1.8 3.6v58.9c0 6.1-5 11.1-11.1 11.1H11.1C5 109.9 0 104.9 0 98.8V39.9c0-1.4.6-2.7 1.8-3.6L47.2 1C48 .3 49 0 50 0z'/%3E%3C/svg%3E");
  background-size: 24px 26px;
  background-repeat: no-repeat;
  background-position: center center;
}
.mobile-app-bar__basket svg {
  fill: #000000;
}
.mobile-app-bar__basket .basket-btn {
  height: 100%;
}
.mobile-app-bar__basket .basket-btn__quantity {
  background: #ffffff;
  height: 26px;
  width: 26px;
  top: 5px;
  right: -2px;
}
.mobile-app-bar__basket .basket-btn__quantity:before {
  background: #ffffff;
  height: 26px;
  width: 26px;
}

.mobile-product-navigation {
  position: relative;
  overflow-y: auto;
  overflow-x: hidden;
  overscroll-behavior-y: contain;
  width: 0;
  height: 0;
}
.element-expanded--true .mobile-product-navigation {
  width: auto;
  height: calc(100% - 70px);
  background-color: #00C19F;
  pointer-events: all;
}
.mobile-product-navigation li {
  list-style: none;
  position: static;
  padding: 0;
}
.mobile-product-navigation__level1-list {
  position: relative;
  padding: 40px 0;
  background-color: #00C19F;
  opacity: 0;
  left: 100%;
  transition: opacity 0.2s ease-in-out;
  min-height: 100.05%;
}
.element-expanded--true .mobile-product-navigation__level1-list {
  left: 0;
  opacity: 1;
}
.mobile-product-navigation__level1-list-item {
  display: none;
}
.element-expanded--true .mobile-product-navigation__level1-list-item {
  display: block;
}
.mobile-product-navigation__level2 {
  left: 100%;
  position: absolute;
  top: 0;
  background-color: #00C19F;
  width: 100%;
  z-index: 1;
  min-height: 100.05%;
  transform: translate3d(0, 0, 0);
  transition: all 0.3s ease-in-out;
  will-change: transform;
  display: flex;
  flex-direction: column-reverse;
  justify-content: flex-end;
}
.mobile-product-navigation__level2--expanded {
  transform: translate3d(-100%, 0, 0);
}
.mobile-product-navigation__text-section {
  padding: 0 40px 20px;
  order: 1;
}
.mobile-product-navigation__text-section h5 {
  font-size: 2.0625rem;
}
.mobile-product-navigation__text-section p {
  color: #000000;
}
.mobile-product-navigation__text-section > *:last-child {
  margin-bottom: 0;
}
.mobile-product-navigation__back-button {
  display: inline-flex;
  align-items: center;
  font-weight: 400;
  font-family: "Rubik", "rubik-fallback-arial", trebuchet ms, helvetica, arial, sans-serif;
  font-size: 0.875rem;
  text-decoration-line: none;
  color: #222222;
  padding-right: 30px;
}
.mobile-product-navigation__back-button:before {
  content: "";
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 74'%3E%3Cpath fill='%23fff' d='M96 40.9H6c-2.2 0-4-1.8-4-4s1.8-4 4-4h90c2.2 0 4 1.8 4 4s-1.8 4-4 4z'/%3E%3Cpath fill='%23fff' d='M40.9 4c0 1.1-.4 2.1-1.2 2.8L9.6 36.9 39.7 67c1.6 1.6 1.6 4.1 0 5.6-1.6 1.6-4.1 1.6-5.6 0L1.2 39.8c-1.6-1.6-1.6-4.1 0-5.6l32.9-33c1.6-1.6 4.1-1.6 5.6 0 .8.7 1.2 1.7 1.2 2.8z'/%3E%3C/svg%3E");
  width: 40px;
  height: 40px;
  background-color: #000000;
  background-size: 19px 14px;
  background-repeat: no-repeat;
  background-position: center center;
  border-radius: 50%;
  flex-shrink: 0;
  margin-right: 15px;
}
.mobile-product-navigation__back-button:hover, .mobile-product-navigation__back-button:active, .mobile-product-navigation__back-button:focus {
  color: #222222;
  text-decoration-line: underline;
}
.mobile-product-navigation__back-button-section {
  padding: 30px 40px 0;
  order: 2;
}

.page-footer {
  margin-bottom: 70px;
}

@media (min-width: 23.75em) {
  .mobile-app-bar__product-title a {
    font-size: 0.875rem;
  }
}
@media (min-width: 30em) {
  .mobile-app-bar__nav {
    padding-left: 20%;
    padding-right: 20%;
  }
  .mobile-app-bar__product-title a {
    font-size: 0.9375rem;
  }
}
@media (min-width: 48em) {
  .mobile-app-bar {
    display: none;
  }
  .page-footer {
    margin-bottom: 0;
  }
}
.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%;
}

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

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