/*****************************************************************************
 * Responsive breakpoints are used bottom-up; extra small means a screen size
 * between 576px and 787px (just before the small breakpoint);
 * 
 * @media only screen and (min-width: xxx) { }
 ***************************************************************************** */
/*****************************************************************************
 * Responsive breakpoints are used bottom-up; extra small means a screen size
 * between 576px and 787px (just before the small breakpoint);
 * 
 * @media only screen and (min-width: xxx) { }
 ***************************************************************************** */
/*****************************************************************************
 * Colors
 * 
 * May include opiniated colors as color_blue, color_yellow etc. Use base,
 * primary, secondary etc. as much as possible to ensure consistency
 ***************************************************************************** */
/*****************************************************************************
 * The size-related variables (small/medium etc.) are directly related to the
 * responsive breakpoints.
 ***************************************************************************** */
/* Container
  --------------------------------------------------------------------------- */
/*
 * Maximum container width. The container padding will added to this with so 
 * the actual content will have this (maximum) size.
 */
/* Gutters
  --------------------------------------------------------------------------- */
/*****************************************************************************
 * Generic module settings
 ***************************************************************************** */
/*****************************************************************************
 * Responsive breakpoints are used bottom-up; extra small means a screen size
 * between 576px and 787px (just before the small breakpoint);
 * 
 * @media only screen and (min-width: xxx) { }
 ***************************************************************************** */
/*****************************************************************************
 * Responsive breakpoints are used bottom-up; extra small means a screen size
 * between 576px and 787px (just before the small breakpoint);
 * 
 * @media only screen and (min-width: xxx) { }
 ***************************************************************************** */
/*****************************************************************************
 * Colors
 * 
 * May include opiniated colors as color_blue, color_yellow etc. Use base,
 * primary, secondary etc. as much as possible to ensure consistency
 ***************************************************************************** */
/*****************************************************************************
 * The size-related variables (small/medium etc.) are directly related to the
 * responsive breakpoints.
 ***************************************************************************** */
/* Container
  --------------------------------------------------------------------------- */
/*
 * Maximum container width. The container padding will added to this with so 
 * the actual content will have this (maximum) size.
 */
/* Gutters
  --------------------------------------------------------------------------- */
/*****************************************************************************
 * Generic module settings
 ***************************************************************************** */
/*****************************************************************************
 * Opiniated defaults
 * 
 * Based on Normalize.css:
 * normalize.css v8.0.0 | MIT License | github.com/necolas/normalize.css
 ***************************************************************************** */
/* Document
  ---------------------------------------------------------------------------- */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  line-height: 1.15;
  margin: 0;
  overflow-x: hidden;
  padding: 0;
  text-rendering: optimizeLegibility;
  width: 100%;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  -webkit-text-size-adjust: 100%;
}

html {
  font-size: 20px;
}

/* Typography
  ---------------------------------------------------------------------------- */
body {
  color: #2E2E2B;
  font-size: 0.8rem;
  font-family: "roboto", serif;
  font-weight: 400;
}

h1, h2, h3, h4, h5, h6 {
  margin-bottom: 0.8rem;
  margin-top: 0;
}

p {
  margin-bottom: 0.8rem;
  margin-top: 0;
}

p:last-child {
  margin-bottom: 0;
}

ul, ol {
  margin-bottom: 0.8rem;
  margin-top: 0;
}

figure {
  margin: 0;
  padding: 0;
}

picture {
  display: block;
}

a.cta_button {
  box-sizing: border-box !important;
}

/* Grouping content
  ---------------------------------------------------------------------------- */
hr {
  background: #2E2E2B;
  border: none;
  height: 1px;
}

/*****************************************************************************
 * Responsive breakpoints are used bottom-up; extra small means a screen size
 * between 576px and 787px (just before the small breakpoint);
 * 
 * @media only screen and (min-width: xxx) { }
 ***************************************************************************** */
/*****************************************************************************
 * Responsive breakpoints are used bottom-up; extra small means a screen size
 * between 576px and 787px (just before the small breakpoint);
 * 
 * @media only screen and (min-width: xxx) { }
 ***************************************************************************** */
/*****************************************************************************
 * Colors
 * 
 * May include opiniated colors as color_blue, color_yellow etc. Use base,
 * primary, secondary etc. as much as possible to ensure consistency
 ***************************************************************************** */
/*****************************************************************************
 * The size-related variables (small/medium etc.) are directly related to the
 * responsive breakpoints.
 ***************************************************************************** */
/* Container
  --------------------------------------------------------------------------- */
/*
 * Maximum container width. The container padding will added to this with so 
 * the actual content will have this (maximum) size.
 */
/* Gutters
  --------------------------------------------------------------------------- */
/*****************************************************************************
 * Generic module settings
 ***************************************************************************** */
/*****************************************************************************
 * Setup of container and grid. A row is a flex container by default; use 
 * flexbox modifiers to change direction, order, alignment etc. 
 ***************************************************************************** */
/* Setup
  ---------------------------------------------------------------------------- */
.container {
  margin: 0 auto;
  position: relative;
  width: 100%;
}

.row {
  display: flex;
  flex: 0 1 auto;
  flex-direction: row;
  flex-wrap: wrap;
}

.row--justify-center {
  justify-content: center;
}

.row--justify-flex-start {
  justify-content: flex-start;
}

.row--justify-flex-end {
  justify-content: flex-end;
}

.row--align-stretch {
  align-items: stretch;
}

.row--align-center {
  align-items: center;
}

.row--reverse .col-12:first-child {
  order: 1;
}

/* Default
  ---------------------------------------------------------------------------- */
.container {
  max-width: calc(1160px + 24px + 24px);
  padding: 0 24px;
}

.container--small {
  max-width: calc(700px + 24px + 24px);
  padding: 0 24px;
}

.container--large {
  max-width: calc(1440px + 24px + 24px);
  padding: 0 24px;
}

.row {
  margin-left: calc((-10px) / 2);
  margin-right: calc((-10px) / 2);
}

[class*=col-] {
  padding-right: calc(10px / 2 );
  padding-left: calc(10px / 2 );
}

.col,
.col-1,
.col-2,
.col-3,
.col-4,
.col-5,
.col-6,
.col-7,
.col-8,
.col-9,
.col-10,
.col-11,
.col-12 {
  flex: 0 0 auto;
}

.col {
  flex-grow: 1;
  flex-basis: 0;
  max-width: 100%;
}

.col-1 {
  flex-basis: 8.333%;
  max-width: 8.333%;
}

.col-2 {
  flex-basis: 16.667%;
  max-width: 16.667%;
}

.col-3 {
  flex-basis: 25%;
  max-width: 25%;
}

.col-4 {
  flex-basis: 33.333%;
  max-width: 33.333%;
}

.col-5 {
  flex-basis: 41.667%;
  max-width: 41.667%;
}

.col-6 {
  flex-basis: 50%;
  max-width: 50%;
}

.col-7 {
  flex-basis: 58.333%;
  max-width: 58.333%;
}

.col-8 {
  flex-basis: 66.667%;
  max-width: 66.667%;
}

.col-9 {
  flex-basis: 75%;
  max-width: 75%;
}

.col-10 {
  flex-basis: 83.333%;
  max-width: 83.333%;
}

.col-11 {
  flex-basis: 91.667%;
  max-width: 91.667%;
}

.col-12 {
  flex-basis: 100%;
  max-width: 100%;
}

.col-offset-1 {
  margin-left: 8.333%;
}

.col-offset-2 {
  margin-left: 16.667%;
}

.col-offset-3 {
  margin-left: 25%;
}

.col-offset-4 {
  margin-left: 33.333%;
}

.col-offset-5 {
  margin-left: 41.667%;
}

.col-offset-6 {
  margin-left: 50%;
}

.col-offset-7 {
  margin-left: 58.333%;
}

.col-offset-8 {
  margin-left: 66.667%;
}

.col-offset-9 {
  margin-left: 75%;
}

.col-offset-10 {
  margin-left: 83.333%;
}

.col-offset-11 {
  margin-left: 91.667%;
}

/* Extra small screens
  ---------------------------------------------------------------------------- */
@media only screen and (min-width: 576px) {
  .container {
    max-width: calc(1160px + 24px + 24px);
    padding: 0 24px;
  }

  .container--small {
    max-width: calc(700px + 24px + 24px);
    padding: 0 24px;
  }

  .container--large {
    max-width: calc(1440px + 24px + 24px);
    padding: 0 24px;
  }

  .row {
    margin-left: calc((-25px) / 2);
    margin-right: calc((-25px) / 2);
  }

  .row--justify-center-xs {
    justify-content: center;
  }

  .row--justify-flex-start-xs {
    justify-content: flex-start;
  }

  .row--justify-flex-end-xs {
    justify-content: flex-end;
  }

  .row--align-stretch-xs {
    align-items: stretch;
  }

  .row--align-center-xs {
    align-items: center;
  }

  .row--reverse-xs .col-12:first-child {
    order: 1;
  }

  [class*=col-] {
    padding-right: calc(25px / 2 );
    padding-left: calc(25px / 2 );
  }

  .col-xs,
.col-xs-1,
.col-xs-2,
.col-xs-3,
.col-xs-4,
.col-xs-5,
.col-xs-6,
.col-xs-7,
.col-xs-8,
.col-xs-9,
.col-xs-10,
.col-xs-11,
.col-xs-12 {
    flex: 0 0 auto;
  }

  .col-xs {
    flex-grow: 1;
    flex-basis: 0;
    max-width: 100%;
  }

  .col-xs-1 {
    flex-basis: 8.333%;
    max-width: 8.333%;
  }

  .col-xs-2 {
    flex-basis: 16.667%;
    max-width: 16.667%;
  }

  .col-xs-3 {
    flex-basis: 25%;
    max-width: 25%;
  }

  .col-xs-4 {
    flex-basis: 33.333%;
    max-width: 33.333%;
  }

  .col-xs-5 {
    flex-basis: 41.667%;
    max-width: 41.667%;
  }

  .col-xs-6 {
    flex-basis: 50%;
    max-width: 50%;
  }

  .col-xs-7 {
    flex-basis: 58.333%;
    max-width: 58.333%;
  }

  .col-xs-8 {
    flex-basis: 66.667%;
    max-width: 66.667%;
  }

  .col-xs-9 {
    flex-basis: 75%;
    max-width: 75%;
  }

  .col-xs-10 {
    flex-basis: 83.333%;
    max-width: 83.333%;
  }

  .col-xs-11 {
    flex-basis: 91.667%;
    max-width: 91.667%;
  }

  .col-xs-12 {
    flex-basis: 100%;
    max-width: 100%;
  }

  .col-xs-offset-0 {
    margin-left: 0;
  }

  .col-xs-offset-1 {
    margin-left: 8.333%;
  }

  .col-xs-offset-2 {
    margin-left: 16.667%;
  }

  .col-xs-offset-3 {
    margin-left: 25%;
  }

  .col-xs-offset-4 {
    margin-left: 33.333%;
  }

  .col-xs-offset-5 {
    margin-left: 41.667%;
  }

  .col-xs-offset-6 {
    margin-left: 50%;
  }

  .col-xs-offset-7 {
    margin-left: 58.333%;
  }

  .col-xs-offset-8 {
    margin-left: 66.667%;
  }

  .col-xs-offset-9 {
    margin-left: 75%;
  }

  .col-xs-offset-10 {
    margin-left: 83.333%;
  }

  .col-xs-offset-11 {
    margin-left: 91.667%;
  }
}
/* Small screens
  ---------------------------------------------------------------------------- */
@media only screen and (min-width: 768px) {
  .container {
    max-width: calc(1160px + 30px + 30px);
    padding: 0 30px;
  }

  .container--small {
    max-width: calc(700px + 30px + 30px);
    padding: 0 30px;
  }

  .container--large {
    max-width: calc(1440px + 30px + 30px);
    padding: 0 30px;
  }

  .row {
    margin-left: calc((-30px) / 2);
    margin-right: calc((-30px) / 2);
  }

  .row--justify-center-sm {
    justify-content: center;
  }

  .row--justify-flex-start-sm {
    justify-content: flex-start;
  }

  .row--justify-flex-end-sm {
    justify-content: flex-end;
  }

  .row--align-stretch-sm {
    align-items: stretch;
  }

  .row--align-center-sm {
    align-items: center;
  }

  .row--reverse-sm .col-12:first-child {
    order: 1;
  }

  [class*=col-] {
    padding-right: calc(30px / 2 );
    padding-left: calc(30px / 2 );
  }

  .col-sm,
.col-sm-1,
.col-sm-2,
.col-sm-3,
.col-sm-4,
.col-sm-5,
.col-sm-6,
.col-sm-7,
.col-sm-8,
.col-sm-9,
.col-sm-10,
.col-sm-11,
.col-sm-12 {
    flex: 0 0 auto;
  }

  .col-sm {
    flex-grow: 1;
    flex-basis: 0;
    max-width: 100%;
  }

  .col-sm-1 {
    flex-basis: 8.333%;
    max-width: 8.333%;
  }

  .col-sm-2 {
    flex-basis: 16.667%;
    max-width: 16.667%;
  }

  .col-sm-3 {
    flex-basis: 25%;
    max-width: 25%;
  }

  .col-sm-4 {
    flex-basis: 33.333%;
    max-width: 33.333%;
  }

  .col-sm-5 {
    flex-basis: 41.667%;
    max-width: 41.667%;
  }

  .col-sm-6 {
    flex-basis: 50%;
    max-width: 50%;
  }

  .col-sm-7 {
    flex-basis: 58.333%;
    max-width: 58.333%;
  }

  .col-sm-8 {
    flex-basis: 66.667%;
    max-width: 66.667%;
  }

  .col-sm-9 {
    flex-basis: 75%;
    max-width: 75%;
  }

  .col-sm-10 {
    flex-basis: 83.333%;
    max-width: 83.333%;
  }

  .col-sm-11 {
    flex-basis: 91.667%;
    max-width: 91.667%;
  }

  .col-sm-12 {
    flex-basis: 100%;
    max-width: 100%;
  }

  .col-sm-offset-0 {
    margin-left: 0;
  }

  .col-sm-offset-1 {
    margin-left: 8.333%;
  }

  .col-sm-offset-2 {
    margin-left: 16.667%;
  }

  .col-sm-offset-3 {
    margin-left: 25%;
  }

  .col-sm-offset-4 {
    margin-left: 33.333%;
  }

  .col-sm-offset-5 {
    margin-left: 41.667%;
  }

  .col-sm-offset-6 {
    margin-left: 50%;
  }

  .col-sm-offset-7 {
    margin-left: 58.333%;
  }

  .col-sm-offset-8 {
    margin-left: 66.667%;
  }

  .col-sm-offset-9 {
    margin-left: 75%;
  }

  .col-sm-offset-10 {
    margin-left: 83.333%;
  }

  .col-sm-offset-11 {
    margin-left: 91.667%;
  }
}
/* Medium screens
  ---------------------------------------------------------------------------- */
@media only screen and (min-width: 992px) {
  .container {
    max-width: calc(1160px + 40px + 40px);
    padding: 0 40px;
  }

  .container--small {
    max-width: calc(700px + 40px + 40px);
    padding: 0 40px;
  }

  .container--large {
    max-width: calc(1440px + 40px + 40px);
    padding: 0 40px;
  }

  .row {
    margin-left: calc((-40px) / 2);
    margin-right: calc((-40px) / 2);
  }

  .row--justify-center-md {
    justify-content: center;
  }

  .row--justify-flex-start-md {
    justify-content: flex-start;
  }

  .row--justify-flex-end-md {
    justify-content: flex-end;
  }

  .row--align-stretch-md {
    align-items: stretch;
  }

  .row--align-center-md {
    align-items: center;
  }

  .row--reverse-md .col-12:first-child {
    order: 1;
  }

  [class*=col-] {
    padding-right: calc(40px / 2 );
    padding-left: calc(40px / 2 );
  }

  .col-md,
.col-md-1,
.col-md-2,
.col-md-3,
.col-md-4,
.col-md-5,
.col-md-6,
.col-md-7,
.col-md-8,
.col-md-9,
.col-md-10,
.col-md-11,
.col-md-12 {
    flex: 0 0 auto;
  }

  .col-md {
    flex-grow: 1;
    flex-basis: 0;
    max-width: 100%;
  }

  .col-md-1 {
    flex-basis: 8.333%;
    max-width: 8.333%;
  }

  .col-md-2 {
    flex-basis: 16.667%;
    max-width: 16.667%;
  }

  .col-md-3 {
    flex-basis: 25%;
    max-width: 25%;
  }

  .col-md-4 {
    flex-basis: 33.333%;
    max-width: 33.333%;
  }

  .col-md-5 {
    flex-basis: 41.667%;
    max-width: 41.667%;
  }

  .col-md-6 {
    flex-basis: 50%;
    max-width: 50%;
  }

  .col-md-7 {
    flex-basis: 58.333%;
    max-width: 58.333%;
  }

  .col-md-8 {
    flex-basis: 66.667%;
    max-width: 66.667%;
  }

  .col-md-9 {
    flex-basis: 75%;
    max-width: 75%;
  }

  .col-md-10 {
    flex-basis: 83.333%;
    max-width: 83.333%;
  }

  .col-md-11 {
    flex-basis: 91.667%;
    max-width: 91.667%;
  }

  .col-md-12 {
    flex-basis: 100%;
    max-width: 100%;
  }

  .col-md-offset-0 {
    margin-left: 0;
  }

  .col-md-offset-1 {
    margin-left: 8.333%;
  }

  .col-md-offset-2 {
    margin-left: 16.667%;
  }

  .col-md-offset-3 {
    margin-left: 25%;
  }

  .col-md-offset-4 {
    margin-left: 33.333%;
  }

  .col-md-offset-5 {
    margin-left: 41.667%;
  }

  .col-md-offset-6 {
    margin-left: 50%;
  }

  .col-md-offset-7 {
    margin-left: 58.333%;
  }

  .col-md-offset-8 {
    margin-left: 66.667%;
  }

  .col-md-offset-9 {
    margin-left: 75%;
  }

  .col-md-offset-10 {
    margin-left: 83.333%;
  }

  .col-md-offset-11 {
    margin-left: 91.667%;
  }
}
/* Large screens
  ---------------------------------------------------------------------------- */
@media only screen and (min-width: 1200px) {
  .container {
    max-width: calc(1160px + 40px + 40px);
    padding: 0 40px;
  }

  .container--small {
    max-width: calc(700px + 40px + 40px);
    padding: 0 40px;
  }

  .container--large {
    max-width: calc(1440px + 40px + 40px);
    padding: 0 40px;
  }

  .row {
    margin-left: calc((-40px) / 2);
    margin-right: calc((-40px) / 2);
  }

  .row--justify-center-lg {
    justify-content: center;
  }

  .row--justify-flex-start-lg {
    justify-content: flex-start;
  }

  .row--justify-flex-end-lg {
    justify-content: flex-end;
  }

  .row--align-stretch-lg {
    align-items: stretch;
  }

  .row--align-center-lg {
    align-items: center;
  }

  .row--reverse-lg .col-12:first-child {
    order: 1;
  }

  [class*=col-] {
    padding-right: calc(40px / 2 );
    padding-left: calc(40px / 2 );
  }

  .col-lg,
.col-lg-1,
.col-lg-2,
.col-lg-3,
.col-lg-4,
.col-lg-5,
.col-lg-6,
.col-lg-7,
.col-lg-8,
.col-lg-9,
.col-lg-10,
.col-lg-11,
.col-lg-12 {
    flex: 0 0 auto;
  }

  .col-lg {
    flex-grow: 1;
    flex-basis: 0;
    max-width: 100%;
  }

  .col-lg-1 {
    flex-basis: 8.333%;
    max-width: 8.333%;
  }

  .col-lg-2 {
    flex-basis: 16.667%;
    max-width: 16.667%;
  }

  .col-lg-3 {
    flex-basis: 25%;
    max-width: 25%;
  }

  .col-lg-4 {
    flex-basis: 33.333%;
    max-width: 33.333%;
  }

  .col-lg-5 {
    flex-basis: 41.667%;
    max-width: 41.667%;
  }

  .col-lg-6 {
    flex-basis: 50%;
    max-width: 50%;
  }

  .col-lg-7 {
    flex-basis: 58.333%;
    max-width: 58.333%;
  }

  .col-lg-8 {
    flex-basis: 66.667%;
    max-width: 66.667%;
  }

  .col-lg-9 {
    flex-basis: 75%;
    max-width: 75%;
  }

  .col-lg-10 {
    flex-basis: 83.333%;
    max-width: 83.333%;
  }

  .col-lg-11 {
    flex-basis: 91.667%;
    max-width: 91.667%;
  }

  .col-lg-12 {
    flex-basis: 100%;
    max-width: 100%;
  }

  .col-lg-offset-0 {
    margin-left: 0;
  }

  .col-lg-offset-1 {
    margin-left: 8.333%;
  }

  .col-lg-offset-2 {
    margin-left: 16.667%;
  }

  .col-lg-offset-3 {
    margin-left: 25%;
  }

  .col-lg-offset-4 {
    margin-left: 33.333%;
  }

  .col-lg-offset-5 {
    margin-left: 41.667%;
  }

  .col-lg-offset-6 {
    margin-left: 50%;
  }

  .col-lg-offset-7 {
    margin-left: 58.333%;
  }

  .col-lg-offset-8 {
    margin-left: 66.667%;
  }

  .col-lg-offset-9 {
    margin-left: 75%;
  }

  .col-lg-offset-10 {
    margin-left: 83.333%;
  }

  .col-lg-offset-11 {
    margin-left: 91.667%;
  }
}
/* Extra large screens
  ---------------------------------------------------------------------------- */
@media only screen and (min-width: 1440px) {
  .container {
    max-width: calc(1160px + 40px + 40px);
    padding: 0 40px;
  }

  .container--small {
    max-width: calc(700px + 40px + 40px);
    padding: 0 40px;
  }

  .container--large {
    max-width: calc(1440px + 40px + 40px);
    padding: 0 40px;
  }

  .row {
    margin-left: calc((-40px) / 2);
    margin-right: calc((-40px) / 2);
  }

  .row--justify-center-xl {
    justify-content: center;
  }

  .row--justify-flex-start-xl {
    justify-content: flex-start;
  }

  .row--justify-flex-end-xl {
    justify-content: flex-end;
  }

  .row--align-stretch-xl {
    align-items: stretch;
  }

  .row--align-center-xl {
    align-items: center;
  }

  .row--reverse-xl .col-12:first-child {
    order: 1;
  }

  [class*=col-] {
    padding-right: calc(40px / 2 );
    padding-left: calc(40px / 2 );
  }

  .col-xl,
.col-xl-1,
.col-xl-2,
.col-xl-3,
.col-xl-4,
.col-xl-5,
.col-xl-6,
.col-xl-7,
.col-xl-8,
.col-xl-9,
.col-xl-10,
.col-xl-11,
.col-xl-12 {
    flex: 0 0 auto;
  }

  .col-xl {
    flex-grow: 1;
    flex-basis: 0;
    max-width: 100%;
  }

  .col-xl-1 {
    flex-basis: 8.333%;
    max-width: 8.333%;
  }

  .col-xl-2 {
    flex-basis: 16.667%;
    max-width: 16.667%;
  }

  .col-xl-3 {
    flex-basis: 25%;
    max-width: 25%;
  }

  .col-xl-4 {
    flex-basis: 33.333%;
    max-width: 33.333%;
  }

  .col-xl-5 {
    flex-basis: 41.667%;
    max-width: 41.667%;
  }

  .col-xl-6 {
    flex-basis: 50%;
    max-width: 50%;
  }

  .col-xl-7 {
    flex-basis: 58.333%;
    max-width: 58.333%;
  }

  .col-xl-8 {
    flex-basis: 66.667%;
    max-width: 66.667%;
  }

  .col-xl-9 {
    flex-basis: 75%;
    max-width: 75%;
  }

  .col-xl-10 {
    flex-basis: 83.333%;
    max-width: 83.333%;
  }

  .col-xl-11 {
    flex-basis: 91.667%;
    max-width: 91.667%;
  }

  .col-xl-12 {
    flex-basis: 100%;
    max-width: 100%;
  }

  .col-xl-offset-0 {
    margin-left: 0;
  }

  .col-xl-offset-1 {
    margin-left: 8.333%;
  }

  .col-xl-offset-2 {
    margin-left: 16.667%;
  }

  .col-xl-offset-3 {
    margin-left: 25%;
  }

  .col-xl-offset-4 {
    margin-left: 33.333%;
  }

  .col-xl-offset-5 {
    margin-left: 41.667%;
  }

  .col-xl-offset-6 {
    margin-left: 50%;
  }

  .col-xl-offset-7 {
    margin-left: 58.333%;
  }

  .col-xl-offset-8 {
    margin-left: 66.667%;
  }

  .col-xl-offset-9 {
    margin-left: 75%;
  }

  .col-xl-offset-10 {
    margin-left: 83.333%;
  }

  .col-xl-offset-11 {
    margin-left: 91.667%;
  }
}
/*****************************************************************************
 * Responsive breakpoints are used bottom-up; extra small means a screen size
 * between 576px and 787px (just before the small breakpoint);
 * 
 * @media only screen and (min-width: xxx) { }
 ***************************************************************************** */
/*****************************************************************************
 * Responsive breakpoints are used bottom-up; extra small means a screen size
 * between 576px and 787px (just before the small breakpoint);
 * 
 * @media only screen and (min-width: xxx) { }
 ***************************************************************************** */
/*****************************************************************************
 * Colors
 * 
 * May include opiniated colors as color_blue, color_yellow etc. Use base,
 * primary, secondary etc. as much as possible to ensure consistency
 ***************************************************************************** */
/*****************************************************************************
 * The size-related variables (small/medium etc.) are directly related to the
 * responsive breakpoints.
 ***************************************************************************** */
/* Container
  --------------------------------------------------------------------------- */
/*
 * Maximum container width. The container padding will added to this with so 
 * the actual content will have this (maximum) size.
 */
/* Gutters
  --------------------------------------------------------------------------- */
/*****************************************************************************
 * Generic module settings
 ***************************************************************************** */
/*****************************************************************************
 * Buttons
 ***************************************************************************** */
/* -- Base -- */
.button {
  align-items: center;
  background: #00BF78;
  border-radius: 40px;
  color: #ffffff;
  cursor: pointer;
  display: inline-flex;
  font: 600 0.8rem/1 "poppins", sans-serif;
  justify-content: space-between;
  line-height: 1.5;
  outline: none;
  overflow: hidden;
  padding: 0.4rem 1.2rem;
  position: relative;
  text-decoration: none;
  transition: background 0.1s linear, border 0.1s linear, color 0.5s linear;
  z-index: 1;
  -webkit-transform: translate3d(0, 0, 0);
  -webkit-backface-visibility: hidden;
  -webkit-transform-style: preserve-3d;
}
.button::before {
  background: #7FDEBB;
  border-radius: 2rem;
  content: "";
  display: block;
  height: 102%;
  left: -100%;
  position: absolute;
  top: -1%;
  transition: left 0.5s ease 0s;
  width: 100%;
  z-index: -2;
}
.button::after {
  background-position: center;
  content: "";
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  transition: background 0.5s ease-out, width 0.5s ease 0s;
  width: 100%;
  z-index: -1;
}
.button:hover, .parent-trigger:hover .button {
  color: #ffffff;
}
.button:hover::before, .parent-trigger:hover .button::before {
  left: 0;
}
.button:hover::after, .parent-trigger:hover .button::after {
  background: transparent radial-gradient(circle, transparent 1%, #00BF78 1%) center/15000%;
}
.button:active, .parent-trigger:active .button {
  border: 0;
  color: #ffffff;
  outline: 0;
}
.button:active::after, .parent-trigger:active .button::after {
  background-color: #7FDEBB;
  background-size: 100%;
  transition: background 0s;
}
.button:disabled, .button.disabled, .parent-trigger .button.disabled {
  background: #CBCBCB;
  border: 0;
  color: #595958;
}
.button:disabled::before, .button:disabled::after, .button.disabled::before, .button.disabled::after, .parent-trigger .button.disabled::before, .parent-trigger .button.disabled::after {
  display: none;
}
.button--black {
  background: #2E2E2B;
}
.button--black::before {
  background: #00BF78;
}
.button--black:hover, .parent-trigger:hover .button--black {
  color: #ffffff;
}
.button--black:active, .parent-trigger:active .button--black {
  color: #ffffff;
}
.button--black:active::after, .parent-trigger:active .button--black::after {
  background-color: #2E2E2B;
  background-size: 100%;
  transition: background 0s;
}
.button--black:disabled, .button--black.disabled, .parent-trigger .button--black.disabled {
  background: #CBCBCB;
  color: #595958;
}
.button--white {
  background: #ffffff;
  color: #2E2E2B;
}
.button--white::before {
  background: #F2F2ED;
}
.button--white:hover, .parent-trigger:hover .button--white {
  color: #2E2E2B;
}
.button--white:active, .parent-trigger:active .button--white {
  color: #2E2E2B;
}
.button--white:active::after, .parent-trigger:active .button--white::after {
  background-color: #ffffff;
  background-size: 100%;
  transition: background 0s;
}
.button--white:disabled, .button--white.disabled, .parent-trigger .button--white.disabled {
  background: #CBCBCB;
  color: #595958;
}
.button--outline {
  background: transparent;
  border: 1px solid #CBCBCB;
  color: #00BF78;
}
.button--outline::before {
  background: #00BF78;
}
.button--outline:hover,
.button--outline .parent-trigger:hover .button {
  border-color: #00BF78;
  color: #ffffff;
}
.button--outline:focus, .parent-trigger:focus .button--outline {
  border: 1px solid #00BF78;
}
.button--outline:active, .parent-trigger:active .button--outline {
  border-color: #00BF78;
  color: #ffffff;
}
.button--outline:disabled, .button--outline.disabled, .parent-trigger .button--outline.disabled {
  background: transparent;
  border: 1px solid #CBCBCB;
  color: #595958;
}

/*****************************************************************************
 * Responsive breakpoints are used bottom-up; extra small means a screen size
 * between 576px and 787px (just before the small breakpoint);
 * 
 * @media only screen and (min-width: xxx) { }
 ***************************************************************************** */
/*****************************************************************************
 * Responsive breakpoints are used bottom-up; extra small means a screen size
 * between 576px and 787px (just before the small breakpoint);
 * 
 * @media only screen and (min-width: xxx) { }
 ***************************************************************************** */
/*****************************************************************************
 * Colors
 * 
 * May include opiniated colors as color_blue, color_yellow etc. Use base,
 * primary, secondary etc. as much as possible to ensure consistency
 ***************************************************************************** */
/*****************************************************************************
 * The size-related variables (small/medium etc.) are directly related to the
 * responsive breakpoints.
 ***************************************************************************** */
/* Container
  --------------------------------------------------------------------------- */
/*
 * Maximum container width. The container padding will added to this with so 
 * the actual content will have this (maximum) size.
 */
/* Gutters
  --------------------------------------------------------------------------- */
/*****************************************************************************
 * Generic module settings
 ***************************************************************************** */
/*****************************************************************************
 * Forms
 ***************************************************************************** */
/*  Elements and fields
   =========================================================================== */
.hs-form {
  /* Descriptions (targets class applied to Help Text divs) */
  /* Labels (selects field labels and error messages) */
  /* Form Field (selector for form field wrapper) */
  /*****************************************************************************
   * Responsive breakpoints are used bottom-up; extra small means a screen size
   * between 576px and 787px (just before the small breakpoint);
   * 
   * @media only screen and (min-width: xxx) { }
   ***************************************************************************** */
  /*****************************************************************************
   * Responsive breakpoints are used bottom-up; extra small means a screen size
   * between 576px and 787px (just before the small breakpoint);
   * 
   * @media only screen and (min-width: xxx) { }
   ***************************************************************************** */
  /*****************************************************************************
   * Colors
   * 
   * May include opiniated colors as color_blue, color_yellow etc. Use base,
   * primary, secondary etc. as much as possible to ensure consistency
   ***************************************************************************** */
  /*****************************************************************************
   * The size-related variables (small/medium etc.) are directly related to the
   * responsive breakpoints.
   ***************************************************************************** */
  /* Container
    --------------------------------------------------------------------------- */
  /*
   * Maximum container width. The container padding will added to this with so 
   * the actual content will have this (maximum) size.
   */
  /* Gutters
    --------------------------------------------------------------------------- */
  /*****************************************************************************
   * Generic module settings
   ***************************************************************************** */
  /* Error message (selector for validation messages)
     ========================================================================== */
  /*****************************************************************************
   * Responsive breakpoints are used bottom-up; extra small means a screen size
   * between 576px and 787px (just before the small breakpoint);
   * 
   * @media only screen and (min-width: xxx) { }
   ***************************************************************************** */
  /*****************************************************************************
   * Responsive breakpoints are used bottom-up; extra small means a screen size
   * between 576px and 787px (just before the small breakpoint);
   * 
   * @media only screen and (min-width: xxx) { }
   ***************************************************************************** */
  /*****************************************************************************
   * Colors
   * 
   * May include opiniated colors as color_blue, color_yellow etc. Use base,
   * primary, secondary etc. as much as possible to ensure consistency
   ***************************************************************************** */
  /*****************************************************************************
   * The size-related variables (small/medium etc.) are directly related to the
   * responsive breakpoints.
   ***************************************************************************** */
  /* Container
    --------------------------------------------------------------------------- */
  /*
   * Maximum container width. The container padding will added to this with so 
   * the actual content will have this (maximum) size.
   */
  /* Gutters
    --------------------------------------------------------------------------- */
  /*****************************************************************************
   * Generic module settings
   ***************************************************************************** */
  /* Fancy fields (label slide up when input is focused)
     ========================================================================== */
  /*****************************************************************************
   * Responsive breakpoints are used bottom-up; extra small means a screen size
   * between 576px and 787px (just before the small breakpoint);
   * 
   * @media only screen and (min-width: xxx) { }
   ***************************************************************************** */
  /*****************************************************************************
   * Responsive breakpoints are used bottom-up; extra small means a screen size
   * between 576px and 787px (just before the small breakpoint);
   * 
   * @media only screen and (min-width: xxx) { }
   ***************************************************************************** */
  /*****************************************************************************
   * Colors
   * 
   * May include opiniated colors as color_blue, color_yellow etc. Use base,
   * primary, secondary etc. as much as possible to ensure consistency
   ***************************************************************************** */
  /*****************************************************************************
   * The size-related variables (small/medium etc.) are directly related to the
   * responsive breakpoints.
   ***************************************************************************** */
  /* Container
    --------------------------------------------------------------------------- */
  /*
   * Maximum container width. The container padding will added to this with so 
   * the actual content will have this (maximum) size.
   */
  /* Gutters
    --------------------------------------------------------------------------- */
  /*****************************************************************************
   * Generic module settings
   ***************************************************************************** */
  /* Inputs (selectors for all inputs)
     ========================================================================== */
  /* Multi-line inputs (selectors to target multi-line fields
     ========================================================================== */
  /*****************************************************************************
   * Responsive breakpoints are used bottom-up; extra small means a screen size
   * between 576px and 787px (just before the small breakpoint);
   * 
   * @media only screen and (min-width: xxx) { }
   ***************************************************************************** */
  /*****************************************************************************
   * Responsive breakpoints are used bottom-up; extra small means a screen size
   * between 576px and 787px (just before the small breakpoint);
   * 
   * @media only screen and (min-width: xxx) { }
   ***************************************************************************** */
  /*****************************************************************************
   * Colors
   * 
   * May include opiniated colors as color_blue, color_yellow etc. Use base,
   * primary, secondary etc. as much as possible to ensure consistency
   ***************************************************************************** */
  /*****************************************************************************
   * The size-related variables (small/medium etc.) are directly related to the
   * responsive breakpoints.
   ***************************************************************************** */
  /* Container
    --------------------------------------------------------------------------- */
  /*
   * Maximum container width. The container padding will added to this with so 
   * the actual content will have this (maximum) size.
   */
  /* Gutters
    --------------------------------------------------------------------------- */
  /*****************************************************************************
   * Generic module settings
   ***************************************************************************** */
  /* Multi-select (selectors for multi-select fields)
     ========================================================================== */
  /* Stylized radio display */
  /*****************************************************************************
   * Responsive breakpoints are used bottom-up; extra small means a screen size
   * between 576px and 787px (just before the small breakpoint);
   * 
   * @media only screen and (min-width: xxx) { }
   ***************************************************************************** */
  /*****************************************************************************
   * Responsive breakpoints are used bottom-up; extra small means a screen size
   * between 576px and 787px (just before the small breakpoint);
   * 
   * @media only screen and (min-width: xxx) { }
   ***************************************************************************** */
  /*****************************************************************************
   * Colors
   * 
   * May include opiniated colors as color_blue, color_yellow etc. Use base,
   * primary, secondary etc. as much as possible to ensure consistency
   ***************************************************************************** */
  /*****************************************************************************
   * The size-related variables (small/medium etc.) are directly related to the
   * responsive breakpoints.
   ***************************************************************************** */
  /* Container
    --------------------------------------------------------------------------- */
  /*
   * Maximum container width. The container padding will added to this with so 
   * the actual content will have this (maximum) size.
   */
  /* Gutters
    --------------------------------------------------------------------------- */
  /*****************************************************************************
   * Generic module settings
   ***************************************************************************** */
  /* Multi Column Form (selectors for fieldsets and field wrappers) 
     ========================================================================== */
  /*****************************************************************************
   * Responsive breakpoints are used bottom-up; extra small means a screen size
   * between 576px and 787px (just before the small breakpoint);
   * 
   * @media only screen and (min-width: xxx) { }
   ***************************************************************************** */
  /*****************************************************************************
   * Responsive breakpoints are used bottom-up; extra small means a screen size
   * between 576px and 787px (just before the small breakpoint);
   * 
   * @media only screen and (min-width: xxx) { }
   ***************************************************************************** */
  /*****************************************************************************
   * Colors
   * 
   * May include opiniated colors as color_blue, color_yellow etc. Use base,
   * primary, secondary etc. as much as possible to ensure consistency
   ***************************************************************************** */
  /*****************************************************************************
   * The size-related variables (small/medium etc.) are directly related to the
   * responsive breakpoints.
   ***************************************************************************** */
  /* Container
    --------------------------------------------------------------------------- */
  /*
   * Maximum container width. The container padding will added to this with so 
   * the actual content will have this (maximum) size.
   */
  /* Gutters
    --------------------------------------------------------------------------- */
  /*****************************************************************************
   * Generic module settings
   ***************************************************************************** */
  /* Submit buttons (selectors for all non-CTA buttons) 
     ========================================================================== */
  /* Form Variations 
     ========================================================================== */
}
.hs-form .hs-field-desc {
  line-height: 1;
}
.hs-form label {
  font-size: 0.7rem;
  line-height: 1.7;
}
.hs-form .hs-form-field {
  margin-bottom: 0.8rem;
}
.hs-form .hs-form-field > label {
  color: #2E2E2B;
  font-weight: 500;
}
.hs-form .hs-error-msgs {
  list-style: none;
  margin: 0;
  padding: 0;
}
.hs-form .hs-error-msgs li:last-child {
  margin-right: 0;
}
.hs-form .hs-error-msgs label {
  color: #AD2A49;
  font-size: 0.6rem;
}
.hs-form .hs-dependent-field ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.hs-form .legal-consent-container {
  margin-bottom: 1.5rem;
}
.hs-form .legal-consent-container .field.hs-form-field {
  margin-bottom: 1rem;
}
.hs-form .legal-consent-container,
.hs-form .legal-consent-container p,
.hs-form .legal-consent-container label {
  color: #2E2E2B;
  font-size: 0.7rem;
  font-weight: 400;
  line-height: 1.7;
}
.hs-form .legal-consent-container label {
  align-items: center;
  display: flex;
}
.hs-form .legal-consent-container .hs-error-msgs label {
  color: #AD2A49;
}
.hs-form .legal-consent-container .hs-form-booleancheckbox {
  margin: 0.5rem 0;
}
.hs-form .legal-consent-container .hs-form-booleancheckbox-display > span {
  margin: 0;
}
@media only screen and (min-width: 992px) {
  .hs-form .legal-consent-container {
    margin-bottom: 2.5rem;
  }
}
.hs-form .hs-fieldtype-text.input--filled label,
.hs-form .hs-fieldtype-textarea.input--filled label,
.hs-form .hs-fieldtype-select.input--filled label {
  background: #ffffff;
  font-size: 0.7rem;
}
.hs-form .hs-fieldtype-text.input--error,
.hs-form .hs-fieldtype-textarea.input--error,
.hs-form .hs-fieldtype-select.input--error {
  border-color: #AD2A49;
}
.hs-form .hs-fieldtype-text.input--error > label,
.hs-form .hs-fieldtype-textarea.input--error > label,
.hs-form .hs-fieldtype-select.input--error > label {
  color: #AD2A49;
}
.hs-form .hs-fieldtype-textarea > label {
  top: 1.125rem;
}
.hs-form input[type=text],
.hs-form input[type=password],
.hs-form input[type=datetime],
.hs-form input[type=datetime-local],
.hs-form input[type=date],
.hs-form input[type=month],
.hs-form input[type=time],
.hs-form input[type=week],
.hs-form input[type=number],
.hs-form input[type=email],
.hs-form input[type=url],
.hs-form input[type=search],
.hs-form input[type=tel],
.hs-form input[type=color],
.hs-form input[type=file],
.hs-form textarea,
.hs-form select {
  background: transparent;
  border: 1px solid #CBCBCB;
  border-radius: 4px;
  caret-color: #00BF78;
  color: #2E2E2B;
  display: block;
  font-family: "roboto", serif;
  font-size: 0.7rem;
  line-height: 1.7;
  outline: none;
  padding: 0.3rem 0.6rem;
  width: 100%;
}
.hs-form input[type=text].error,
.hs-form input[type=password].error,
.hs-form input[type=datetime].error,
.hs-form input[type=datetime-local].error,
.hs-form input[type=date].error,
.hs-form input[type=month].error,
.hs-form input[type=time].error,
.hs-form input[type=week].error,
.hs-form input[type=number].error,
.hs-form input[type=email].error,
.hs-form input[type=url].error,
.hs-form input[type=search].error,
.hs-form input[type=tel].error,
.hs-form input[type=color].error,
.hs-form input[type=file].error,
.hs-form textarea.error,
.hs-form select.error {
  border-color: #AD2A49;
}
.hs-form input[type=file] {
  display: flex;
  padding: 0.4rem 0.3rem;
}
.hs-form select {
  -webkit-appearance: none;
  -moz-appearance: none;
}
.hs-form .hs-fieldtype-select .input {
  position: relative;
}
.hs-form .hs-fieldtype-select .input::after {
  background: url("https://19574975.fs1.hubspotusercontent-na1.net/hubfs/19574975/_system/icons/chevron-down-black.svg") center/cover;
  content: "";
  height: 8px;
  pointer-events: none;
  position: absolute;
  right: 1rem;
  top: 50%;
  transform: translateY(-50%);
  width: 14px;
}
.hs-form .hs-fieldtype-select .input select {
  padding-right: 2rem;
}
.hs-form textarea {
  height: 180px;
  min-height: 68px;
  min-width: 100%;
  max-width: 100%;
  resize: vertical;
}
.hs-form .hs-form-field ul.inputs-list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.hs-form .hs-form-field ul.inputs-list li label {
  align-items: center;
  display: inline-flex;
}
.hs-form .hs-form-radio-display {
  color: #2E2E2B;
  font-size: 0.7rem;
}
.hs-form .hs-form-radio-display::before {
  background: #ffffff;
  border: 1px solid #CBCBCB;
  border-radius: 50%;
  content: "";
  cursor: pointer;
  display: inline-block;
  height: 16px;
  min-width: 16px;
  margin-right: 0.5rem;
  width: 16px;
}
.hs-form .hs-form-radio-display.checked::before {
  background: radial-gradient(#ffffff 35%, #00BF78 45%), #00BF78;
  border-color: #00BF78;
}
.hs-form .hs-form-radio-display input[type=radio] {
  display: none;
}
.hs-form .hs-form-checkbox-display,
.hs-form .hs-form-booleancheckbox-display {
  color: #2E2E2B;
  font-size: 0.7rem;
  line-height: 1.7;
}
.hs-form .hs-form-checkbox-display::before,
.hs-form .hs-form-booleancheckbox-display::before {
  background: #ffffff;
  border: 1px solid #CBCBCB;
  border-radius: 0.2rem;
  content: "";
  cursor: pointer;
  display: inline-block;
  height: 16px;
  min-width: 16px;
  margin-right: 0.55rem;
  width: 16px;
}
.hs-form .hs-form-checkbox-display.checked::before,
.hs-form .hs-form-booleancheckbox-display.checked::before {
  background: url("https://19574975.fs1.hubspotusercontent-na1.net/hubfs/19574975/_system/icons/checkmark-green.svg") center/8px 8px no-repeat;
  border-color: #00BF78;
}
.hs-form .hs-form-checkbox-display input[type=checkbox],
.hs-form .hs-form-booleancheckbox-display input[type=checkbox] {
  display: none;
}
.hs-form fieldset.form-columns-1, .hs-form fieldset.form-columns-2, .hs-form fieldset.form-columns-3 {
  max-width: 100%;
}
.hs-form fieldset.form-columns-1 .hs-form-field .input, .hs-form fieldset.form-columns-2 .hs-form-field .input, .hs-form fieldset.form-columns-3 .hs-form-field .input {
  margin-right: 0;
}
.hs-form fieldset.form-columns-1 .hs-form-field .input .hs-input, .hs-form fieldset.form-columns-2 .hs-form-field .input .hs-input, .hs-form fieldset.form-columns-3 .hs-form-field .input .hs-input {
  width: 100% !important;
}
.hs-form fieldset.form-columns-2 .hs-form-field {
  width: 100%;
}
@media only screen and (min-width: 481px) {
  .hs-form fieldset.form-columns-2 .hs-form-field {
    margin-right: 3.49%;
    width: 48.253% !important;
  }
  .hs-form fieldset.form-columns-2 .hs-form-field:last-of-type {
    margin-right: 0;
  }
  .hs-form fieldset.form-columns-3 .hs-form-field {
    margin-right: 1.6233766%;
    width: 32.2510823% !important;
  }
  .hs-form fieldset.form-columns-3 .hs-form-field:last-of-type {
    margin-right: 0;
  }
}
.hs-form .actions {
  align-items: center;
  display: flex;
  justify-content: center;
  position: relative;
}
.hs-form .actions::before {
  background: #CBCBCB;
  content: "";
  display: block;
  height: 1px;
  position: absolute;
  left: 0;
  width: 100%;
  top: 50%;
}
.hs-form .hs-button.primary,
.hs-form input[type=submit],
.hs-form input[type=button] {
  align-items: center;
  background-color: #00BF78;
  border: 0;
  border-radius: 40px;
  box-shadow: 0 0 0 20px white;
  color: #ffffff;
  cursor: pointer;
  display: inline-flex;
  font: 600 0.8rem/1 "poppins", sans-serif;
  outline: none;
  overflow: hidden;
  padding: 0.6rem 1.2rem;
  position: relative;
  text-decoration: none;
  transition: background 0.1s linear, border 0.1s linear, color 0.1s linear;
  -moz-appearance: none;
  -webkit-appearance: none;
  z-index: 1;
}
.hs-form .hs-button.primary:hover,
.hs-form input[type=submit]:hover,
.hs-form input[type=button]:hover {
  color: #ffffff;
  background-color: #7FDEBB;
}
.hs-form--small .hs-form-field {
  margin-bottom: 0.5rem;
}
.hs-form--small .actions {
  margin-top: 1.3rem;
}
.hs-form--full-width-actions .actions input[type=submit] {
  width: 100%;
}
.hs-form--rounded-actions .actions input[type=submit] {
  border-radius: 5rem;
}
.hs-form--centered-actions .actions input[type=submit] {
  justify-content: center;
}
.hs-form--primary .actions input[type=submit] {
  background: #00BF78;
  color: #fff;
}
.hs-form--primary .actions input[type=submit]:hover {
  background: #fff;
  color: #00BF78;
}
.hs-form--no-labels .hs-form-field > label {
  display: none;
}

/*****************************************************************************
 * Responsive breakpoints are used bottom-up; extra small means a screen size
 * between 576px and 787px (just before the small breakpoint);
 * 
 * @media only screen and (min-width: xxx) { }
 ***************************************************************************** */
/*****************************************************************************
 * Responsive breakpoints are used bottom-up; extra small means a screen size
 * between 576px and 787px (just before the small breakpoint);
 * 
 * @media only screen and (min-width: xxx) { }
 ***************************************************************************** */
/*****************************************************************************
 * Colors
 * 
 * May include opiniated colors as color_blue, color_yellow etc. Use base,
 * primary, secondary etc. as much as possible to ensure consistency
 ***************************************************************************** */
/*****************************************************************************
 * The size-related variables (small/medium etc.) are directly related to the
 * responsive breakpoints.
 ***************************************************************************** */
/* Container
  --------------------------------------------------------------------------- */
/*
 * Maximum container width. The container padding will added to this with so 
 * the actual content will have this (maximum) size.
 */
/* Gutters
  --------------------------------------------------------------------------- */
/*****************************************************************************
 * Generic module settings
 ***************************************************************************** */
::-webkit-input-placeholder,
:-moz-placeholder,
::-moz-placeholder,
:-ms-input-placeholder {
  color: rgba(46, 46, 43, 0.8);
}

/*****************************************************************************
 * Responsive breakpoints are used bottom-up; extra small means a screen size
 * between 576px and 787px (just before the small breakpoint);
 * 
 * @media only screen and (min-width: xxx) { }
 ***************************************************************************** */
/*****************************************************************************
 * Responsive breakpoints are used bottom-up; extra small means a screen size
 * between 576px and 787px (just before the small breakpoint);
 * 
 * @media only screen and (min-width: xxx) { }
 ***************************************************************************** */
/*****************************************************************************
 * Colors
 * 
 * May include opiniated colors as color_blue, color_yellow etc. Use base,
 * primary, secondary etc. as much as possible to ensure consistency
 ***************************************************************************** */
/*****************************************************************************
 * The size-related variables (small/medium etc.) are directly related to the
 * responsive breakpoints.
 ***************************************************************************** */
/* Container
  --------------------------------------------------------------------------- */
/*
 * Maximum container width. The container padding will added to this with so 
 * the actual content will have this (maximum) size.
 */
/* Gutters
  --------------------------------------------------------------------------- */
/*****************************************************************************
 * Generic module settings
 ***************************************************************************** */
/*****************************************************************************
 * Tables
 ***************************************************************************** */
table {
  border: 0.05rem solid #F2F2ED;
  border-collapse: collapse;
  margin: 1rem 0 2rem;
  overflow: auto;
  width: 100%;
}

table th {
  text-align: left;
}

table thead tr,
table tfoot tr,
table tbody tr:nth-child(even) {
  background: #F2F2ED;
}

table th,
table td {
  padding: 0.5rem 1rem;
}

/*****************************************************************************
 * Responsive breakpoints are used bottom-up; extra small means a screen size
 * between 576px and 787px (just before the small breakpoint);
 * 
 * @media only screen and (min-width: xxx) { }
 ***************************************************************************** */
/*****************************************************************************
 * Responsive breakpoints are used bottom-up; extra small means a screen size
 * between 576px and 787px (just before the small breakpoint);
 * 
 * @media only screen and (min-width: xxx) { }
 ***************************************************************************** */
/*****************************************************************************
 * Colors
 * 
 * May include opiniated colors as color_blue, color_yellow etc. Use base,
 * primary, secondary etc. as much as possible to ensure consistency
 ***************************************************************************** */
/*****************************************************************************
 * The size-related variables (small/medium etc.) are directly related to the
 * responsive breakpoints.
 ***************************************************************************** */
/* Container
  --------------------------------------------------------------------------- */
/*
 * Maximum container width. The container padding will added to this with so 
 * the actual content will have this (maximum) size.
 */
/* Gutters
  --------------------------------------------------------------------------- */
/*****************************************************************************
 * Generic module settings
 ***************************************************************************** */
/*****************************************************************************
 * Typography
 ***************************************************************************** */
/* Default
  ---------------------------------------------------------------------------- */
/* -- Base typography -- */
body {
  line-height: 1.75;
  color: #2E2E2B;
}

/* -- Heading -- */
h1,
h2,
h3,
h4,
h5,
h6,
.h1,
.h2,
.h3,
.h4,
.h5,
.h6 {
  color: #2E2E2B;
  font-family: "poppins", sans-serif;
  font-weight: 600;
}
h1.no-margin,
h2.no-margin,
h3.no-margin,
h4.no-margin,
h5.no-margin,
h6.no-margin,
.h1.no-margin,
.h2.no-margin,
.h3.no-margin,
.h4.no-margin,
.h5.no-margin,
.h6.no-margin {
  margin: 0;
}

h1,
.h1 {
  font-size: 2rem;
  letter-spacing: -0.05em;
  line-height: 1.2;
}

h2,
.h2 {
  font-size: 2rem;
  letter-spacing: -0.05em;
  line-height: 1.2;
}

h3,
.h3 {
  font-size: 1.8rem;
  letter-spacing: -0.05em;
  line-height: 1.22;
}

h4,
.h4 {
  font-size: 1.5rem;
  letter-spacing: -0.05em;
  line-height: 1.33;
}

h5,
.h5 {
  font-size: 1.2rem;
  letter-spacing: -0.025em;
  line-height: 1.33;
}

h6,
.h6 {
  font-size: 1rem;
  letter-spacing: -0.025em;
  line-height: 1.5;
}

/* -- Paragraph -- */
p,
li,
a {
  font-size: 0.8rem;
  line-height: 1.75;
}

/* -- Link -- */
a {
  color: #2E2E2B;
  font-family: "poppins", sans-serif;
  font-weight: 600;
  line-height: 1.5;
  transition: color 0.1s linear;
  text-decoration: none;
}
a:hover {
  color: #00BF78;
}
a:active {
  color: #00BF78;
}
a:disabled {
  color: #969694;
}

/* -- Pre -- */
pre {
  font-family: "Courier New", "Lucida Console", sans-serif;
  font-size: 0.7rem;
}

/* Desktop
  ---------------------------------------------------------------------------- */
@media only screen and (min-width: 992px) {
  h1,
.h1 {
    font-size: 3.2rem;
    line-height: 1.1;
  }

  h2,
.h2 {
    font-size: 2.4rem;
    line-height: 1.17;
  }

  h4,
.h4 {
    font-size: 1.5rem;
    line-height: 1.25;
  }

  h5,
.h5 {
    font-size: 1.4rem;
    line-height: 1.43;
  }

  h6,
.h6 {
    font-size: 1.2rem;
    line-height: 1.33;
  }

  /* -- Pre -- */
  pre {
    font-family: "Courier New", "Lucida Console", sans-serif;
    font-size: 0.9rem;
  }
}
/*****************************************************************************
 * Responsive breakpoints are used bottom-up; extra small means a screen size
 * between 576px and 787px (just before the small breakpoint);
 * 
 * @media only screen and (min-width: xxx) { }
 ***************************************************************************** */
/*****************************************************************************
 * Responsive breakpoints are used bottom-up; extra small means a screen size
 * between 576px and 787px (just before the small breakpoint);
 * 
 * @media only screen and (min-width: xxx) { }
 ***************************************************************************** */
/*****************************************************************************
 * Colors
 * 
 * May include opiniated colors as color_blue, color_yellow etc. Use base,
 * primary, secondary etc. as much as possible to ensure consistency
 ***************************************************************************** */
/*****************************************************************************
 * The size-related variables (small/medium etc.) are directly related to the
 * responsive breakpoints.
 ***************************************************************************** */
/* Container
  --------------------------------------------------------------------------- */
/*
 * Maximum container width. The container padding will added to this with so 
 * the actual content will have this (maximum) size.
 */
/* Gutters
  --------------------------------------------------------------------------- */
/*****************************************************************************
 * Generic module settings
 ***************************************************************************** */
/*****************************************************************************
 * Backgrounds
 ***************************************************************************** */
.bg_black {
  background: #2E2E2B;
}
.bg_black h1:not(.keep-default),
.bg_black h2:not(.keep-default),
.bg_black h3:not(.keep-default),
.bg_black h4:not(.keep-default),
.bg_black h5:not(.keep-default),
.bg_black h6:not(.keep-default),
.bg_black p:not(.keep-default),
.bg_black a:not(.button):not(.cta_button):not(.keep-default),
.bg_black li:not(.keep-default) {
  color: #ffffff;
}

.bg_black-75 {
  background: #595958;
}
.bg_black-75 h1:not(.keep-default),
.bg_black-75 h2:not(.keep-default),
.bg_black-75 h3:not(.keep-default),
.bg_black-75 h4:not(.keep-default),
.bg_black-75 h5:not(.keep-default),
.bg_black-75 h6:not(.keep-default),
.bg_black-75 p:not(.keep-default),
.bg_black-75 a:not(.button):not(.cta_button):not(.keep-default),
.bg_black-75 li:not(.keep-default) {
  color: #ffffff;
}

.bg_black-50 {
  background: #969694;
}
.bg_black-50 h1:not(.keep-default),
.bg_black-50 h2:not(.keep-default),
.bg_black-50 h3:not(.keep-default),
.bg_black-50 h4:not(.keep-default),
.bg_black-50 h5:not(.keep-default),
.bg_black-50 h6:not(.keep-default),
.bg_black-50 p:not(.keep-default),
.bg_black-50 a:not(.button):not(.cta_button):not(.keep-default),
.bg_black-50 li:not(.keep-default) {
  color: #ffffff;
}

.bg_black-25 {
  background: #CBCBCB;
}
.bg_black-25 h1:not(.keep-default),
.bg_black-25 h2:not(.keep-default),
.bg_black-25 h3:not(.keep-default),
.bg_black-25 h4:not(.keep-default),
.bg_black-25 h5:not(.keep-default),
.bg_black-25 h6:not(.keep-default),
.bg_black-25 p:not(.keep-default),
.bg_black-25 a:not(.button):not(.cta_button):not(.keep-default),
.bg_black-25 li:not(.keep-default) {
  color: #ffffff;
}

.bg_base {
  background: #2E2E2B;
}
.bg_base h1:not(.keep-default),
.bg_base h2:not(.keep-default),
.bg_base h3:not(.keep-default),
.bg_base h4:not(.keep-default),
.bg_base h5:not(.keep-default),
.bg_base h6:not(.keep-default),
.bg_base p:not(.keep-default),
.bg_base a:not(.button):not(.cta_button):not(.keep-default),
.bg_base li:not(.keep-default) {
  color: #ffffff;
}

.bg_primary {
  background: #00BF78;
}
.bg_primary h1:not(.keep-default),
.bg_primary h2:not(.keep-default),
.bg_primary h3:not(.keep-default),
.bg_primary h4:not(.keep-default),
.bg_primary h5:not(.keep-default),
.bg_primary h6:not(.keep-default),
.bg_primary p:not(.keep-default),
.bg_primary a:not(.button):not(.cta_button):not(.keep-default),
.bg_primary li:not(.keep-default) {
  color: #ffffff;
}

.bg_secondary {
  background: #2E2E2B;
}
.bg_secondary h1:not(.keep-default),
.bg_secondary h2:not(.keep-default),
.bg_secondary h3:not(.keep-default),
.bg_secondary h4:not(.keep-default),
.bg_secondary h5:not(.keep-default),
.bg_secondary h6:not(.keep-default),
.bg_secondary p:not(.keep-default),
.bg_secondary a:not(.button):not(.cta_button):not(.keep-default),
.bg_secondary li:not(.keep-default) {
  color: #ffffff;
}

.bg_action {
  background: #00BF78;
}
.bg_action h1:not(.keep-default),
.bg_action h2:not(.keep-default),
.bg_action h3:not(.keep-default),
.bg_action h4:not(.keep-default),
.bg_action h5:not(.keep-default),
.bg_action h6:not(.keep-default),
.bg_action p:not(.keep-default),
.bg_action a:not(.button):not(.cta_button):not(.keep-default),
.bg_action li:not(.keep-default) {
  color: #ffffff;
}

.bg_error {
  background: #AD2A49;
}
.bg_error h1:not(.keep-default),
.bg_error h2:not(.keep-default),
.bg_error h3:not(.keep-default),
.bg_error h4:not(.keep-default),
.bg_error h5:not(.keep-default),
.bg_error h6:not(.keep-default),
.bg_error p:not(.keep-default),
.bg_error a:not(.button):not(.cta_button):not(.keep-default),
.bg_error li:not(.keep-default) {
  color: #ffffff;
}

.bg_land {
  background: #EB486A;
}
.bg_land h1:not(.keep-default),
.bg_land h2:not(.keep-default),
.bg_land h3:not(.keep-default),
.bg_land h4:not(.keep-default),
.bg_land h5:not(.keep-default),
.bg_land h6:not(.keep-default),
.bg_land p:not(.keep-default),
.bg_land a:not(.button):not(.cta_button):not(.keep-default),
.bg_land li:not(.keep-default) {
  color: #ffffff;
}

.bg_land-dark {
  background: #AD2A49;
}
.bg_land-dark h1:not(.keep-default),
.bg_land-dark h2:not(.keep-default),
.bg_land-dark h3:not(.keep-default),
.bg_land-dark h4:not(.keep-default),
.bg_land-dark h5:not(.keep-default),
.bg_land-dark h6:not(.keep-default),
.bg_land-dark p:not(.keep-default),
.bg_land-dark a:not(.button):not(.cta_button):not(.keep-default),
.bg_land-dark li:not(.keep-default) {
  color: #ffffff;
}

.bg_marine {
  background: #0070DE;
}
.bg_marine h1:not(.keep-default),
.bg_marine h2:not(.keep-default),
.bg_marine h3:not(.keep-default),
.bg_marine h4:not(.keep-default),
.bg_marine h5:not(.keep-default),
.bg_marine h6:not(.keep-default),
.bg_marine p:not(.keep-default),
.bg_marine a:not(.button):not(.cta_button):not(.keep-default),
.bg_marine li:not(.keep-default) {
  color: #ffffff;
}

.bg_marine-dark {
  background: #004A8C;
}
.bg_marine-dark h1:not(.keep-default),
.bg_marine-dark h2:not(.keep-default),
.bg_marine-dark h3:not(.keep-default),
.bg_marine-dark h4:not(.keep-default),
.bg_marine-dark h5:not(.keep-default),
.bg_marine-dark h6:not(.keep-default),
.bg_marine-dark p:not(.keep-default),
.bg_marine-dark a:not(.button):not(.cta_button):not(.keep-default),
.bg_marine-dark li:not(.keep-default) {
  color: #ffffff;
}

.bg_media {
  background: #FDB01C;
}
.bg_media h1:not(.keep-default),
.bg_media h2:not(.keep-default),
.bg_media h3:not(.keep-default),
.bg_media h4:not(.keep-default),
.bg_media h5:not(.keep-default),
.bg_media h6:not(.keep-default),
.bg_media p:not(.keep-default),
.bg_media a:not(.button):not(.cta_button):not(.keep-default),
.bg_media li:not(.keep-default) {
  color: #ffffff;
}

.bg_media-dark {
  background: #D87600;
}
.bg_media-dark h1:not(.keep-default),
.bg_media-dark h2:not(.keep-default),
.bg_media-dark h3:not(.keep-default),
.bg_media-dark h4:not(.keep-default),
.bg_media-dark h5:not(.keep-default),
.bg_media-dark h6:not(.keep-default),
.bg_media-dark p:not(.keep-default),
.bg_media-dark a:not(.button):not(.cta_button):not(.keep-default),
.bg_media-dark li:not(.keep-default) {
  color: #ffffff;
}

.bg_mobility {
  background: #8073F7;
}
.bg_mobility h1:not(.keep-default),
.bg_mobility h2:not(.keep-default),
.bg_mobility h3:not(.keep-default),
.bg_mobility h4:not(.keep-default),
.bg_mobility h5:not(.keep-default),
.bg_mobility h6:not(.keep-default),
.bg_mobility p:not(.keep-default),
.bg_mobility a:not(.button):not(.cta_button):not(.keep-default),
.bg_mobility li:not(.keep-default) {
  color: #ffffff;
}

.bg_mobility-dark {
  background: #4040A8;
}
.bg_mobility-dark h1:not(.keep-default),
.bg_mobility-dark h2:not(.keep-default),
.bg_mobility-dark h3:not(.keep-default),
.bg_mobility-dark h4:not(.keep-default),
.bg_mobility-dark h5:not(.keep-default),
.bg_mobility-dark h6:not(.keep-default),
.bg_mobility-dark p:not(.keep-default),
.bg_mobility-dark a:not(.button):not(.cta_button):not(.keep-default),
.bg_mobility-dark li:not(.keep-default) {
  color: #ffffff;
}

.bg_white {
  background: #ffffff;
}

.bg_cloud-white {
  background: #F2F2ED;
}

.bg_land-50 {
  background: #F6A6B5;
}

.bg_land-25 {
  background: #FCD1DA;
}

.bg_marine-50 {
  background: #8FB5ED;
}

.bg_marine-25 {
  background: #C5DBF9;
}

.bg_media-50 {
  background: #FDD69A;
}

.bg_media-25 {
  background: #FFEBD0;
}

.bg_mobility-50 {
  background: #BEBAFF;
}

.bg_mobility-25 {
  background: #DEDDFB;
}

/*****************************************************************************
 * Display
 * 
 * @TODO expand
 ***************************************************************************** */
.display_is-hidden {
  display: none;
}

.display_is-visible {
  display: initial;
}

.display_inline-block {
  display: inline-block;
}

/*****************************************************************************
 * Responsive breakpoints are used bottom-up; extra small means a screen size
 * between 576px and 787px (just before the small breakpoint);
 * 
 * @media only screen and (min-width: xxx) { }
 ***************************************************************************** */
/*****************************************************************************
 * Responsive breakpoints are used bottom-up; extra small means a screen size
 * between 576px and 787px (just before the small breakpoint);
 * 
 * @media only screen and (min-width: xxx) { }
 ***************************************************************************** */
/*****************************************************************************
 * Colors
 * 
 * May include opiniated colors as color_blue, color_yellow etc. Use base,
 * primary, secondary etc. as much as possible to ensure consistency
 ***************************************************************************** */
/*****************************************************************************
 * The size-related variables (small/medium etc.) are directly related to the
 * responsive breakpoints.
 ***************************************************************************** */
/* Container
  --------------------------------------------------------------------------- */
/*
 * Maximum container width. The container padding will added to this with so 
 * the actual content will have this (maximum) size.
 */
/* Gutters
  --------------------------------------------------------------------------- */
/*****************************************************************************
 * Generic module settings
 ***************************************************************************** */
/*****************************************
 * Element utilities
 *****************************************/
.element_push-right {
  margin-right: -24px;
}

.element_push-left {
  margin-left: -24px;
}

.element_push-right-mobile {
  margin-right: -24px;
}

.element_push-left-mobile {
  margin-left: -24px;
}

.element_line-left {
  padding-left: 1rem;
  position: relative;
}

.element_line-left::before {
  background: rgba(255, 255, 255, 0.5);
  content: "";
  height: calc(100% - 10px);
  left: 0;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 3px;
}

.element_fade-in {
  opacity: 0;
  transform: translate(0%, 14%) matrix(1, 0, 0, 1, 0, 0);
  transition: transform 1s linear, opacity 1s linear;
}
.element_fade-in.show {
  opacity: 1;
  transform: matrix(1, 0, 0, 1, 0, 0);
}

.hs-inline-edit .element_fade-in {
  opacity: 1;
}

@media only screen and (min-width: 576px) {
  .element_push-right {
    margin-right: -24px;
  }

  .element_push-left {
    margin-left: -24px;
  }

  .element_push-right-mobile {
    margin-right: -24px;
  }

  .element_push-left-mobile {
    margin-left: -24px;
  }
}
@media only screen and (min-width: 768px) {
  .element_push-right {
    margin-right: -30px;
  }

  .element_push-left {
    margin-left: -30px;
  }

  .element_push-right-mobile {
    margin-right: 0;
  }

  .element_push-left-mobile {
    margin-left: 0;
  }

  .element_push-right-tablet {
    margin-right: -30px;
  }

  .element_push-left-tablet {
    margin-left: -30px;
  }

  .element_line-left {
    padding-left: 1.6rem;
  }
}
@media only screen and (min-width: 992px) {
  .element_push-right {
    margin-right: -40px;
  }

  .element_push-left {
    margin-left: -40px;
  }

  .element_push-right-tablet {
    margin-right: 0;
  }

  .element_push-left-tablet {
    margin-left: 0;
  }

  .element_push-right-desktop {
    margin-right: -40px;
  }

  .element_push-left-desktop {
    margin-left: -40px;
  }
}
@media only screen and (min-width: 1200px) {
  .element_push-right {
    margin-right: -40px;
  }

  .element_push-left {
    margin-left: -40px;
  }

  .element_push-right-desktop {
    margin-right: -40px;
  }

  .element_push-left-desktop {
    margin-left: -40px;
  }
}
@media only screen and (min-width: 1440px) {
  .element_push-right {
    margin-right: -40px;
  }

  .element_push-left {
    margin-left: -40px;
  }

  .element_push-right-desktop {
    margin-right: -40px;
  }

  .element_push-left-desktop {
    margin-left: -40px;
  }
}
/*****************************************************************************
 * Responsive breakpoints are used bottom-up; extra small means a screen size
 * between 576px and 787px (just before the small breakpoint);
 * 
 * @media only screen and (min-width: xxx) { }
 ***************************************************************************** */
/*****************************************************************************
 * Responsive breakpoints are used bottom-up; extra small means a screen size
 * between 576px and 787px (just before the small breakpoint);
 * 
 * @media only screen and (min-width: xxx) { }
 ***************************************************************************** */
/*****************************************************************************
 * Colors
 * 
 * May include opiniated colors as color_blue, color_yellow etc. Use base,
 * primary, secondary etc. as much as possible to ensure consistency
 ***************************************************************************** */
/*****************************************************************************
 * The size-related variables (small/medium etc.) are directly related to the
 * responsive breakpoints.
 ***************************************************************************** */
/* Container
  --------------------------------------------------------------------------- */
/*
 * Maximum container width. The container padding will added to this with so 
 * the actual content will have this (maximum) size.
 */
/* Gutters
  --------------------------------------------------------------------------- */
/*****************************************************************************
 * Generic module settings
 ***************************************************************************** */
/*****************************************
 * Heading utilities
 *****************************************/
.heading-fancy {
  margin-bottom: 1.2rem;
  padding-bottom: 1.6rem;
  position: relative;
}
.heading-fancy span {
  color: #00BF78;
}
.heading-fancy::before {
  background: #00BF78;
  border-radius: 1rem;
  bottom: 0;
  content: "";
  display: block;
  height: 8px;
  left: 0;
  position: absolute;
  width: 60px;
}
.heading-fancy.text_center::before {
  left: calc(50% - 30px);
}
.heading-fancy.text_right::before {
  left: unset;
  right: 0;
}
.heading-fancy--land span {
  color: #EB486A;
}
.heading-fancy--land::before {
  background: #EB486A;
}
.heading-fancy--marine span {
  color: #0070DE;
}
.heading-fancy--marine::before {
  background: #0070DE;
}
.heading-fancy--media span {
  color: #FDB01C;
}
.heading-fancy--media::before {
  background: #FDB01C;
}
.heading-fancy--mobility span {
  color: #8073F7;
}
.heading-fancy--mobility::before {
  background: #8073F7;
}

/*****************************************************************************
 * Responsive breakpoints are used bottom-up; extra small means a screen size
 * between 576px and 787px (just before the small breakpoint);
 * 
 * @media only screen and (min-width: xxx) { }
 ***************************************************************************** */
/*****************************************************************************
 * Responsive breakpoints are used bottom-up; extra small means a screen size
 * between 576px and 787px (just before the small breakpoint);
 * 
 * @media only screen and (min-width: xxx) { }
 ***************************************************************************** */
/*****************************************************************************
 * Colors
 * 
 * May include opiniated colors as color_blue, color_yellow etc. Use base,
 * primary, secondary etc. as much as possible to ensure consistency
 ***************************************************************************** */
/*****************************************************************************
 * The size-related variables (small/medium etc.) are directly related to the
 * responsive breakpoints.
 ***************************************************************************** */
/* Container
  --------------------------------------------------------------------------- */
/*
 * Maximum container width. The container padding will added to this with so 
 * the actual content will have this (maximum) size.
 */
/* Gutters
  --------------------------------------------------------------------------- */
/*****************************************************************************
 * Generic module settings
 ***************************************************************************** */
/*****************************************
 * Link variations
 *****************************************/
@keyframes slideOverLeftRight {
  0% {
    transform: translateX(0);
  }
  50% {
    transform: translateX(100%);
  }
  100% {
    transform: translateX(100%);
  }
}
.link_fancy-right,
.link_fancy-left {
  align-items: center;
  color: #2E2E2B;
  display: inline-flex;
  font-weight: 600;
  line-height: 1.5;
  position: relative;
  text-decoration: none;
  transition: color 0.4s linear;
}
.link_fancy-right span,
.link_fancy-left span {
  position: relative;
  display: inline-block;
  color: #2E2E2B;
  overflow: hidden;
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-size: 200% 100%;
  transition: background-position 0.4s linear;
  text-decoration: none;
}
.link_fancy-right svg,
.link_fancy-left svg {
  display: inline-block;
  flex: 0 0 24px;
  height: 24px;
  transition: background 0.1s linear;
  width: 24px;
}
.link_fancy-right:hover,
.link_fancy-left:hover {
  color: rgba(46, 46, 43, 0);
  transition: color 0.8s linear 0s;
}
.link_fancy-right:hover svg .hover-block,
.link_fancy-left:hover svg .hover-block {
  animation-name: slideOverLeftRight;
  animation-duration: 0.4s;
  animation-fill-mode: forwards;
  animation-timing-function: linear;
  animation-delay: 0.4s;
  animation-direction: normal;
}

.link_fancy-right span {
  background-image: linear-gradient(to right, #00BF78, #00BF78 50%, #2E2E2B 50%);
  background-position: 100%;
}
.link_fancy-right svg {
  margin-left: 0.8rem;
}
.link_fancy-right:hover span {
  background-position: 0 100%;
}

.link_fancy-left span {
  background-image: linear-gradient(to left, #00BF78, #00BF78 51%, #2E2E2B 50%);
  background-position: 0;
  order: 1;
}
.link_fancy-left svg {
  margin-right: 0.6rem;
  transform: scaleX(-1);
}
.link_fancy-left:hover span {
  background-position: 100% 0;
}

/*****************************************************************************
 * Responsive breakpoints are used bottom-up; extra small means a screen size
 * between 576px and 787px (just before the small breakpoint);
 * 
 * @media only screen and (min-width: xxx) { }
 ***************************************************************************** */
/*****************************************************************************
 * Responsive breakpoints are used bottom-up; extra small means a screen size
 * between 576px and 787px (just before the small breakpoint);
 * 
 * @media only screen and (min-width: xxx) { }
 ***************************************************************************** */
/*****************************************************************************
 * Colors
 * 
 * May include opiniated colors as color_blue, color_yellow etc. Use base,
 * primary, secondary etc. as much as possible to ensure consistency
 ***************************************************************************** */
/*****************************************************************************
 * The size-related variables (small/medium etc.) are directly related to the
 * responsive breakpoints.
 ***************************************************************************** */
/* Container
  --------------------------------------------------------------------------- */
/*
 * Maximum container width. The container padding will added to this with so 
 * the actual content will have this (maximum) size.
 */
/* Gutters
  --------------------------------------------------------------------------- */
/*****************************************************************************
 * Generic module settings
 ***************************************************************************** */
/*****************************************
 * List variations
 *****************************************/
/* -- Checkmark -- */
ul.list_checkmark {
  list-style: none;
  padding-left: 0;
}
ul.list_checkmark li {
  padding-left: 1.2rem;
  position: relative;
}
ul.list_checkmark li::before {
  background: #00BF78;
  border-radius: 50%;
  content: "";
  height: 5px;
  left: 0;
  position: absolute;
  top: 10px;
  width: 5px;
}

/*****************************************************************************
 * Responsive breakpoints are used bottom-up; extra small means a screen size
 * between 576px and 787px (just before the small breakpoint);
 * 
 * @media only screen and (min-width: xxx) { }
 ***************************************************************************** */
/*****************************************************************************
 * Responsive breakpoints are used bottom-up; extra small means a screen size
 * between 576px and 787px (just before the small breakpoint);
 * 
 * @media only screen and (min-width: xxx) { }
 ***************************************************************************** */
/*****************************************************************************
 * Colors
 * 
 * May include opiniated colors as color_blue, color_yellow etc. Use base,
 * primary, secondary etc. as much as possible to ensure consistency
 ***************************************************************************** */
/*****************************************************************************
 * The size-related variables (small/medium etc.) are directly related to the
 * responsive breakpoints.
 ***************************************************************************** */
/* Container
  --------------------------------------------------------------------------- */
/*
 * Maximum container width. The container padding will added to this with so 
 * the actual content will have this (maximum) size.
 */
/* Gutters
  --------------------------------------------------------------------------- */
/*****************************************************************************
 * Generic module settings
 ***************************************************************************** */
/*****************************************************************************
 * Media utilities
 * 
 * Images, videos, embeds, etc.
 ***************************************************************************** */
.media_image-responsive {
  display: block;
  height: auto;
  width: 100%;
}
.media_image-rounded {
  border-radius: 50%;
}
.media_image-rounded img {
  border-radius: 50%;
}
.media_image-cover, .media_image-contain {
  display: block;
  height: 0;
  overflow: hidden;
  padding-bottom: 56%;
  position: relative;
}
.media_image-cover img, .media_image-contain img {
  display: block;
  height: 100%;
  position: absolute;
  width: 100%;
}
.media_image-cover img {
  object-fit: cover;
}
.media_image-contain img {
  object-fit: contain;
}
.media_image-fancy-circle {
  margin-bottom: 18px;
  overflow: visible;
}
.media_image-fancy-circle img {
  border-radius: 50%;
}
.media_image-fancy-circle::before {
  border-radius: 50%;
  bottom: -18px;
  content: "";
  display: block;
  height: 100%;
  left: 0;
  right: 0;
  position: absolute;
  width: 100%;
}
.media_image-fancy-circle--primary::before {
  background: #00BF78;
}
.media_image-fancy-circle--land::before {
  background: #EB486A;
}
.media_image-fancy-circle--marine::before {
  background: #0070DE;
}
.media_image-fancy-circle--media::before {
  background: #FDB01C;
}
.media_image-fancy-circle--mobility::before {
  background: #8073F7;
}
.media_image-bubble {
  overflow: visible;
  padding-bottom: 100%;
}
.media_image-bubble img {
  border-radius: 50%;
}
.media_image-bubble .bubble {
  align-items: center;
  background: #00BF78;
  border-radius: 50%;
  display: flex;
  height: 32.6086957%;
  justify-content: center;
  padding: 1rem;
  position: absolute;
  top: 0;
  left: 0;
  width: 32.6086957%;
}
.media_image-bubble .bubble img {
  border-radius: 0;
  display: block;
  object-fit: contain;
  height: 100%;
  position: unset;
  width: 100%;
}
.media_image-bubble--land .bubble {
  background: #EB486A;
}
.media_image-bubble--marine .bubble {
  background: #0070DE;
}
.media_image-bubble--media .bubble {
  background: #FDB01C;
}
.media_image-bubble--mobility .bubble {
  background: #8073F7;
}
.media_image-bubble--small span {
  height: 22.1428571%;
  width: 22.1428571%;
}
.media_image-bubble-alternative {
  overflow: visible;
  padding-bottom: 100%;
}
.media_image-bubble-alternative img {
  border-radius: 50%;
}
.media_image-bubble-alternative::before {
  background: #00BF78;
  border-radius: 50%;
  content: "";
  display: block;
  height: 22.1428571%;
  right: 20px;
  position: absolute;
  width: 22.1428571%;
  top: 20px;
  z-index: 1;
}
.media_image-bubble-alternative--land .bubble {
  background: #EB486A;
}
.media_image-bubble-alternative--marine .bubble {
  background: #0070DE;
}
.media_image-bubble-alternative--media .bubble {
  background: #FDB01C;
}
.media_image-bubble-alternative--mobility .bubble {
  background: #8073F7;
}
.media_image-bubble-alternative--small span {
  height: 22.1428571%;
  width: 22.1428571%;
}
.media_image-overlay-hover {
  overflow: hidden;
}
.media_image-overlay-hover.media_image-bubble {
  border-radius: 50%;
}
.media_image-overlay-hover::after {
  background: #00BF78;
  border-radius: 50%;
  content: "";
  height: 300%;
  left: -150%;
  opacity: 0.5;
  position: absolute;
  top: -150%;
  transform: scale(0) translateX(0) translateY(0);
  -webkit-transform: scale(0) translateX(0) translateY(0);
  transition: transform 0.4s ease, -webkit-transform 0.4s ease;
  width: 300%;
  z-index: 1;
}
.media_image-overlay-hover--portrait::after {
  left: -250%;
  width: 500%;
}
.media_image-overlay-hover--landscape::after {
  top: -250%;
  height: 500%;
}
.media_image-overlay-hover:hover::after {
  transform: scale(0.74) translateX(25%) translateY(10%);
  -webkit-transform: scale(0.74) translateX(25%) translateY(10%);
}

.media_video {
  display: block;
  position: relative;
}
.media_video .play-icon {
  height: 50px;
  left: 50%;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 50px;
}

@media only screen and (min-width: 768px) {
  .media_video .play-icon {
    height: 90px;
    width: 90px;
  }
}
@media only screen and (min-width: 992px) {
  .media_image-fancy-circle {
    margin-bottom: 32px;
  }
  .media_image-fancy-circle::before {
    bottom: -32px;
  }
  .media_image-bubble .bubble {
    padding: 2rem;
  }
}
@media only screen and (min-width: 1200px) {
  .media_video .play-icon {
    height: 120px;
    width: 120px;
  }
}
/*****************************************************************************
 * Responsive breakpoints are used bottom-up; extra small means a screen size
 * between 576px and 787px (just before the small breakpoint);
 * 
 * @media only screen and (min-width: xxx) { }
 ***************************************************************************** */
/*****************************************************************************
 * Responsive breakpoints are used bottom-up; extra small means a screen size
 * between 576px and 787px (just before the small breakpoint);
 * 
 * @media only screen and (min-width: xxx) { }
 ***************************************************************************** */
/*****************************************************************************
 * Colors
 * 
 * May include opiniated colors as color_blue, color_yellow etc. Use base,
 * primary, secondary etc. as much as possible to ensure consistency
 ***************************************************************************** */
/*****************************************************************************
 * The size-related variables (small/medium etc.) are directly related to the
 * responsive breakpoints.
 ***************************************************************************** */
/* Container
  --------------------------------------------------------------------------- */
/*
 * Maximum container width. The container padding will added to this with so 
 * the actual content will have this (maximum) size.
 */
/* Gutters
  --------------------------------------------------------------------------- */
/*****************************************************************************
 * Generic module settings
 ***************************************************************************** */
/*****************************************************************************
* Module options
***************************************************************************** */
.module_top-padding-xxs {
  padding-top: calc(2rem * 0.0666);
}
.module_top-padding-xs {
  padding-top: calc(2rem * 0.25);
}
.module_top-padding-s {
  padding-top: calc(2rem * 0.5);
}
.module_top-padding-m {
  padding-top: calc(2rem * 1);
}
.module_top-padding-l {
  padding-top: calc(2rem * 1.5);
}
.module_top-padding-xl {
  padding-top: calc(2rem * 2);
}
.module_top-padding-xxl {
  padding-top: calc(2rem * 2.5);
}
.module_top-padding-0 {
  padding-top: 0;
}

.module_bottom-padding-xxs {
  padding-bottom: calc(2rem * 0.0666);
}
.module_bottom-padding-xs {
  padding-bottom: calc(2rem * 0.25);
}
.module_bottom-padding-s {
  padding-bottom: calc(2rem * 0.5);
}
.module_bottom-padding-m {
  padding-bottom: calc(2rem * 1);
}
.module_bottom-padding-l {
  padding-bottom: calc(2rem * 1.5);
}
.module_bottom-padding-xl {
  padding-bottom: calc(2rem * 2);
}
.module_bottom-padding-xxl {
  padding-bottom: calc(2rem * 2.5);
}
.module_bottom-padding-0 {
  padding-bottom: 0;
}

@media only screen and (min-width: 576px) {
  .module_top-padding-xxs {
    padding-top: calc(2rem * 0.0666);
  }
  .module_top-padding-xs {
    padding-top: calc(2rem * 0.25);
  }
  .module_top-padding-s {
    padding-top: calc(2rem * 0.5);
  }
  .module_top-padding-m {
    padding-top: calc(2rem * 1);
  }
  .module_top-padding-l {
    padding-top: calc(2rem * 1.5);
  }
  .module_top-padding-xl {
    padding-top: calc(2rem * 2);
  }
  .module_top-padding-xxl {
    padding-top: calc(2rem * 2.5);
  }
  .module_top-padding-0 {
    padding-top: 0;
  }

  .module_bottom-padding-xxs {
    padding-bottom: calc(2rem * 0.0666);
  }
  .module_bottom-padding-xs {
    padding-bottom: calc(2rem * 0.25);
  }
  .module_bottom-padding-s {
    padding-bottom: calc(2rem * 0.5);
  }
  .module_bottom-padding-m {
    padding-bottom: calc(2rem * 1);
  }
  .module_bottom-padding-l {
    padding-bottom: calc(2rem * 1.5);
  }
  .module_bottom-padding-xl {
    padding-bottom: calc(2rem * 2);
  }
  .module_bottom-padding-xxl {
    padding-bottom: calc(2rem * 2.5);
  }
  .module_bottom-padding-0 {
    padding-bottom: 0;
  }
}
@media only screen and (min-width: 768px) {
  .module_top-padding-xxs {
    padding-top: calc(3rem * 0.0666);
  }
  .module_top-padding-xs {
    padding-top: calc(3rem * 0.25);
  }
  .module_top-padding-s {
    padding-top: calc(3rem * 0.5);
  }
  .module_top-padding-m {
    padding-top: calc(3rem * 1);
  }
  .module_top-padding-l {
    padding-top: calc(3rem * 1.5);
  }
  .module_top-padding-xl {
    padding-top: calc(3rem * 2);
  }
  .module_top-padding-xxl {
    padding-top: calc(3rem * 2.5);
  }
  .module_top-padding-0 {
    padding-top: 0;
  }

  .module_bottom-padding-xxs {
    padding-bottom: calc(3rem * 0.0666);
  }
  .module_bottom-padding-xs {
    padding-bottom: calc(3rem * 0.25);
  }
  .module_bottom-padding-s {
    padding-bottom: calc(3rem * 0.5);
  }
  .module_bottom-padding-m {
    padding-bottom: calc(3rem * 1);
  }
  .module_bottom-padding-l {
    padding-bottom: calc(3rem * 1.5);
  }
  .module_bottom-padding-xl {
    padding-bottom: calc(3rem * 2);
  }
  .module_bottom-padding-xxl {
    padding-bottom: calc(3rem * 2.5);
  }
  .module_bottom-padding-0 {
    padding-bottom: 0;
  }
}
@media only screen and (min-width: 992px) {
  .module_top-padding-xxs {
    padding-top: calc(4rem * 0.0666);
  }
  .module_top-padding-xs {
    padding-top: calc(4rem * 0.25);
  }
  .module_top-padding-s {
    padding-top: calc(4rem * 0.5);
  }
  .module_top-padding-m {
    padding-top: calc(4rem * 1);
  }
  .module_top-padding-l {
    padding-top: calc(4rem * 1.5);
  }
  .module_top-padding-xl {
    padding-top: calc(4rem * 2);
  }
  .module_top-padding-xxl {
    padding-top: calc(4rem * 2.5);
  }
  .module_top-padding-0 {
    padding-top: 0;
  }

  .module_bottom-padding-xxs {
    padding-bottom: calc(4rem * 0.0666);
  }
  .module_bottom-padding-xs {
    padding-bottom: calc(4rem * 0.25);
  }
  .module_bottom-padding-s {
    padding-bottom: calc(4rem * 0.5);
  }
  .module_bottom-padding-m {
    padding-bottom: calc(4rem * 1);
  }
  .module_bottom-padding-l {
    padding-bottom: calc(4rem * 1.5);
  }
  .module_bottom-padding-xl {
    padding-bottom: calc(4rem * 2);
  }
  .module_bottom-padding-xxl {
    padding-bottom: calc(4rem * 2.5);
  }
  .module_bottom-padding-0 {
    padding-bottom: 0;
  }
}
@media only screen and (min-width: 1200px) {
  .module_top-padding-xxs {
    padding-top: calc(4rem * 0.0666);
  }
  .module_top-padding-xs {
    padding-top: calc(4rem * 0.25);
  }
  .module_top-padding-s {
    padding-top: calc(4rem * 0.5);
  }
  .module_top-padding-m {
    padding-top: calc(4rem * 1);
  }
  .module_top-padding-l {
    padding-top: calc(4rem * 1.5);
  }
  .module_top-padding-xl {
    padding-top: calc(4rem * 2);
  }
  .module_top-padding-xxl {
    padding-top: calc(4rem * 2.5);
  }
  .module_top-padding-0 {
    padding-top: 0;
  }

  .module_bottom-padding-xxs {
    padding-bottom: calc(4rem * 0.0666);
  }
  .module_bottom-padding-xs {
    padding-bottom: calc(4rem * 0.25);
  }
  .module_bottom-padding-s {
    padding-bottom: calc(4rem * 0.5);
  }
  .module_bottom-padding-m {
    padding-bottom: calc(4rem * 1);
  }
  .module_bottom-padding-l {
    padding-bottom: calc(4rem * 1.5);
  }
  .module_bottom-padding-xl {
    padding-bottom: calc(4rem * 2);
  }
  .module_bottom-padding-xxl {
    padding-bottom: calc(4rem * 2.5);
  }
  .module_bottom-padding-0 {
    padding-bottom: 0;
  }
}
@media only screen and (min-width: 1440px) {
  .module_top-padding-xxs {
    padding-top: calc(4rem * 0.0666);
  }
  .module_top-padding-xs {
    padding-top: calc(4rem * 0.25);
  }
  .module_top-padding-s {
    padding-top: calc(4rem * 0.5);
  }
  .module_top-padding-m {
    padding-top: calc(4rem * 1);
  }
  .module_top-padding-l {
    padding-top: calc(4rem * 1.5);
  }
  .module_top-padding-xl {
    padding-top: calc(4rem * 2);
  }
  .module_top-padding-xxl {
    padding-top: calc(4rem * 2.5);
  }
  .module_top-padding-0 {
    padding-top: 0;
  }

  .module_bottom-padding-xxs {
    padding-bottom: calc(4rem * 0.0666);
  }
  .module_bottom-padding-xs {
    padding-bottom: calc(4rem * 0.25);
  }
  .module_bottom-padding-s {
    padding-bottom: calc(4rem * 0.5);
  }
  .module_bottom-padding-m {
    padding-bottom: calc(4rem * 1);
  }
  .module_bottom-padding-l {
    padding-bottom: calc(4rem * 1.5);
  }
  .module_bottom-padding-xl {
    padding-bottom: calc(4rem * 2);
  }
  .module_bottom-padding-xxl {
    padding-bottom: calc(4rem * 2.5);
  }
  .module_bottom-padding-0 {
    padding-bottom: 0;
  }
}
/*****************************************************************************
 * Responsive breakpoints are used bottom-up; extra small means a screen size
 * between 576px and 787px (just before the small breakpoint);
 * 
 * @media only screen and (min-width: xxx) { }
 ***************************************************************************** */
/*****************************************************************************
 * Responsive breakpoints are used bottom-up; extra small means a screen size
 * between 576px and 787px (just before the small breakpoint);
 * 
 * @media only screen and (min-width: xxx) { }
 ***************************************************************************** */
/*****************************************************************************
 * Colors
 * 
 * May include opiniated colors as color_blue, color_yellow etc. Use base,
 * primary, secondary etc. as much as possible to ensure consistency
 ***************************************************************************** */
/*****************************************************************************
 * The size-related variables (small/medium etc.) are directly related to the
 * responsive breakpoints.
 ***************************************************************************** */
/* Container
  --------------------------------------------------------------------------- */
/*
 * Maximum container width. The container padding will added to this with so 
 * the actual content will have this (maximum) size.
 */
/* Gutters
  --------------------------------------------------------------------------- */
/*****************************************************************************
 * Generic module settings
 ***************************************************************************** */
/*****************************************************************************
 * Text utilities
 * 
 * @TODO: Add responsive utility selectors
 ***************************************************************************** */
/* -- Color -- */
body .text_color-black {
  color: #2E2E2B;
}

body .text_color-primary {
  color: #00BF78;
}

body .text_color-secondary {
  color: #2E2E2B;
}

body .text_color-action {
  color: #00BF78;
}

body .text_color-cloud-white {
  color: #F2F2ED;
}

body .text_color-white {
  color: #ffffff;
}

body .text_color-black-75 {
  color: #595958;
}

/* -- Text-Color -- */
.text-color--white span {
  color: #ffffff;
}
.text-color--black span {
  color: #2E2E2B;
}
.text-color--primary span {
  color: #00BF78;
}
.text-color--land span {
  color: #EB486A;
}
.text-color--marine span {
  color: #0070DE;
}
.text-color--media span {
  color: #FDB01C;
}
.text-color--mobility span {
  color: #8073F7;
}

/* -- Alignment -- */
.text_left {
  text-align: left;
}

.text_right {
  text-align: right;
}

.text_center {
  text-align: center;
}

/* -- Weight -- */
.text_weight-light {
  font-weight: 300;
}
.text_weight-semibold {
  font-weight: 600;
}

/* -- Sizes -- */
.text_size-l {
  font-size: 1rem;
  line-height: 1.5;
}
.text_size-m {
  font-size: 0.8rem;
  line-height: 1.75;
}
.text_size-s {
  font-size: 0.7rem;
  line-height: 1.7;
}

/* -- Rich text -- */
.rich-text-container img {
  max-width: 100%;
}
.rich-text-container--color-black p,
.rich-text-container--color-black li,
.rich-text-container--color-black a {
  color: #2E2E2B;
}
.rich-text-container--color-primary p,
.rich-text-container--color-primary li,
.rich-text-container--color-primary a {
  color: #00BF78;
}
.rich-text-container--color-secondary p,
.rich-text-container--color-secondary li,
.rich-text-container--color-secondary a {
  color: #2E2E2B;
}
.rich-text-container--color-action p,
.rich-text-container--color-action li,
.rich-text-container--color-action a {
  color: #00BF78;
}
.rich-text-container--color-cloud-white p,
.rich-text-container--color-cloud-white li,
.rich-text-container--color-cloud-white a {
  color: #F2F2ED;
}
.rich-text-container--color-white p,
.rich-text-container--color-white li,
.rich-text-container--color-white a {
  color: #ffffff;
}
.rich-text-container--color-black-75 p,
.rich-text-container--color-black-75 li,
.rich-text-container--color-black-75 a {
  color: #595958;
}
.rich-text-container--checklist ul:not([style*=list-style-type]) {
  list-style: none;
  margin: 0;
  padding: 0;
}
.rich-text-container--checklist ul:not([style*=list-style-type]) li {
  padding-left: 2rem;
  position: relative;
}
.rich-text-container--checklist ul:not([style*=list-style-type]) li::before {
  background: #00BF78;
  border-radius: 50%;
  content: "";
  height: 5px;
  left: 0;
  position: absolute;
  top: 10px;
  width: 5px;
}
.rich-text-container--l p,
.rich-text-container--l li,
.rich-text-container--l a {
  font-size: 1rem;
  line-height: 1.5;
}
.rich-text-container--m p,
.rich-text-container--m li,
.rich-text-container--m a {
  font-size: 0.8rem;
  line-height: 1.75;
}
.rich-text-container--s p,
.rich-text-container--s li,
.rich-text-container--s a {
  font-size: 0.7rem;
  line-height: 1.7;
}

/* Medium screens
  ---------------------------------------------------------------------------- */
@media only screen and (min-width: 992px) {
  /* -- Sizes -- */
}