/*****************************************************************************
 * 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: #282828;
  font-size: 0.9rem;
  font-family: "roboto", Roboto, sans-serif;
  font-weight: 400;
}

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

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

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

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

figure {
  margin: 0;
  padding: 0;
}

picture {
  display: block;
}

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

/* Grouping content
  ---------------------------------------------------------------------------- */
hr {
  background: #282828;
  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 + 15px + 15px);
  padding: 0 15px;
}

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

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

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

[class*=col-] {
  padding-right: calc(15px / 2 );
  padding-left: calc(15px / 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 + 25px + 25px);
    padding: 0 25px;
  }

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

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

  .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--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(760px + 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--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(760px + 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--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: 1175px) {
  .container {
    max-width: calc(1160px + 40px + 40px);
    padding: 0 40px;
  }

  .container--small {
    max-width: calc(760px + 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--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(760px + 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--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: #0699d6;
  border: 2px solid transparent;
  color: #ffffff;
  cursor: pointer;
  display: inline-flex;
  font: 700 0.8rem/1 "roboto", Roboto, sans-serif;
  justify-content: space-between;
  outline: none;
  overflow: hidden;
  padding: 0.825rem 1.1rem;
  position: relative;
  text-decoration: none;
  transition: background 0.1s linear, border 0.1s linear, color 0.1s linear;
  z-index: 1;
}
.button:hover {
  background: #092d74;
  color: #ffffff;
}
.button:active, .button:focus {
  border-color: #0699d6;
  background: #0699d6;
  color: #ffffff;
  opacity: 100%;
  text-decoration: none;
}
.button:disabled, .button.disabled {
  background: #092d74;
  color: rgba(40, 40, 40, 0.3);
  text-decoration: none;
}
.button--secondary {
  background: transparent;
  border: 2px solid #092d74;
  color: #092d74;
}
.button--secondary:hover {
  background: #092d74;
  border-color: #092d74;
  color: #ffffff;
}
.button--secondary:active, .button--secondary:focus {
  background: #0699d6;
  color: #0fffff;
  border-color: #0699d6;
  opacity: 1;
}

/*****************************************************************************
 * 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.8rem;
  line-height: 1.88;
}
.hs-form .hs-form-field {
  margin-bottom: 1rem;
}
.hs-form .hs-form-field > label {
  color: #031d40;
  font-weight: 400;
}
.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: #dd2e1a;
  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 a,
.hs-form .legal-consent-container label {
  color: #282828;
  font-size: 0.7rem;
  font-weight: 400;
  line-height: 1.43rem;
}
.hs-form .legal-consent-container a {
  text-decoration: underline;
}
.hs-form .legal-consent-container a:hover {
  color: #282828;
}
.hs-form .legal-consent-container label {
  align-items: center;
  display: flex;
}
.hs-form .legal-consent-container .hs-error-msgs label {
  color: #dd2e1a;
}
.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,
.hs-form .hs-fieldtype-textarea,
.hs-form .hs-fieldtype-select {
  border: 1px solid rgba(9, 45, 116, 0.4);
  color: #282828;
  font-family: "roboto", Roboto, sans-serif;
  font-size: 0.8rem;
  font-weight: 400;
  position: relative;
}
.hs-form .hs-fieldtype-text.input--focused,
.hs-form .hs-fieldtype-textarea.input--focused,
.hs-form .hs-fieldtype-select.input--focused {
  border-color: #0699d6;
}
.hs-form .hs-fieldtype-text.input--focused label,
.hs-form .hs-fieldtype-textarea.input--focused label,
.hs-form .hs-fieldtype-select.input--focused label {
  color: #0699d6;
}
.hs-form .hs-fieldtype-text.input--focused .hs-error-msgs li,
.hs-form .hs-fieldtype-textarea.input--focused .hs-error-msgs li,
.hs-form .hs-fieldtype-select.input--focused .hs-error-msgs li {
  display: none;
}
.hs-form .hs-fieldtype-text > label,
.hs-form .hs-fieldtype-textarea > label,
.hs-form .hs-fieldtype-select > label {
  left: 0.725rem;
  pointer-events: none;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  transition: color 0.15s linear, font-size 0.15s linear, top 0.15s linear, transform 0.15s linear;
  z-index: 1;
}
.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.6rem;
  padding: 0 0.2rem;
  left: 0.8rem;
  line-height: 1;
  pointer-events: none;
  position: absolute;
  top: 0;
}
.hs-form .hs-fieldtype-text.input--error,
.hs-form .hs-fieldtype-textarea.input--error,
.hs-form .hs-fieldtype-select.input--error {
  border-color: #dd2e1a;
}
.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: #dd2e1a;
}
.hs-form .hs-fieldtype-text .hs-error-msgs,
.hs-form .hs-fieldtype-textarea .hs-error-msgs,
.hs-form .hs-fieldtype-select .hs-error-msgs {
  background: #ffffff;
  left: 0.8rem;
  line-height: 1;
  pointer-events: none;
  position: absolute;
  top: -0.6rem;
  transition: color 0.15s linear, font-size 0.15s linear, top 0.15s linear, transform 0.15s linear;
}
.hs-form .hs-fieldtype-text .hs-error-msgs li,
.hs-form .hs-fieldtype-textarea .hs-error-msgs li,
.hs-form .hs-fieldtype-select .hs-error-msgs li {
  display: inline-block;
  line-height: 1;
  margin: 0 0.1rem;
}
.hs-form .hs-fieldtype-text .hs-error-msgs li a,
.hs-form .hs-fieldtype-textarea .hs-error-msgs li a,
.hs-form .hs-fieldtype-select .hs-error-msgs li a {
  color: inherit;
  font-size: inherit;
}
.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: 0;
  border-radius: 0;
  color: #282828;
  display: block;
  font-family: "roboto", Roboto, sans-serif;
  font-size: 0.8rem;
  line-height: 1.63;
  outline: none;
  padding: 0.725rem 0.8rem;
  width: 100%;
}
.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://8565747.fs1.hubspotusercontent-na1.net/hubfs/8565747/_system/icons/chevron-down-dark.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: #282828;
  font-size: 0.7rem;
}
.hs-form .hs-form-radio-display::before {
  background: #ffffff;
  border: 1px solid #092d74;
  border-radius: 50%;
  content: "";
  cursor: pointer;
  display: inline-block;
  height: 24px;
  min-width: 24px;
  margin-right: 0.5rem;
  width: 24px;
}
.hs-form .hs-form-radio-display.checked::before {
  background: radial-gradient(#ffffff 35%, #0699d6 45%), #0699d6;
  border-color: #0699d6;
}
.hs-form .hs-form-radio-display input[type=radio] {
  display: none;
}
.hs-form .hs-form-checkbox-display,
.hs-form .hs-form-booleancheckbox-display {
  color: #282828;
  font-size: 0.7rem;
}
.hs-form .hs-form-checkbox-display::before,
.hs-form .hs-form-booleancheckbox-display::before {
  background: #ffffff;
  border: 1px solid #092d74;
  border-radius: 0.2rem;
  content: "";
  cursor: pointer;
  display: inline-block;
  height: 24px;
  min-width: 24px;
  margin-right: 0.8rem;
  width: 24px;
}
.hs-form .hs-form-checkbox-display.checked::before,
.hs-form .hs-form-booleancheckbox-display.checked::before {
  background: url("https://8565747.fs1.hubspotusercontent-na1.net/hubfs/8565747/_system/icons/checkmark-white.svg") center/14px 10px no-repeat, #0699d6;
  border-color: #0699d6;
}
.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: 576px) {
  .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 .hs-button.primary,
.hs-form input[type=submit],
.hs-form input[type=button] {
  align-items: center;
  background-color: #0699d6;
  border: 0;
  color: #ffffff;
  cursor: pointer;
  display: inline-flex;
  font: 700 0.8rem/1 "roboto", Roboto, sans-serif;
  outline: none;
  overflow: hidden;
  padding: 0.975rem 1.5rem;
  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: #092d74;
}
@media only screen and (min-width: 992px) {
  .hs-form .hs-button.primary,
.hs-form input[type=submit],
.hs-form input[type=button] {
    font-size: 0.8rem;
  }
}
.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: #031d40;
  color: #fff;
}
.hs-form--primary .actions input[type=submit]:hover {
  background: #fff;
  color: #031d40;
}
.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
 ***************************************************************************** */
/* Submit buttons (selectors for all non-CTA buttons) 
   ========================================================================== */
.hs-button.primary,
input[type=submit],
input[type=button] {
  align-items: center;
  background-color: #0699d6;
  border: 0;
  color: #ffffff;
  cursor: pointer;
  display: inline-flex;
  font: 700 0.8rem/1 "roboto", Roboto, sans-serif;
  outline: none;
  overflow: hidden;
  padding: 0.975rem 1.5rem;
  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-button.primary:hover,
input[type=submit]:hover,
input[type=button]:hover {
  color: #ffffff;
  background-color: #092d74;
}

@media only screen and (min-width: 992px) {
  .hs-button.primary,
input[type=submit],
input[type=button] {
    font-size: 0.8rem;
  }
}
/*****************************************************************************
 * 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(40, 40, 40, 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;
  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: #f3f6fc;
}

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.63;
  color: #282828;
}

/* -- Heading -- */
h1,
h2,
h3,
h4,
h5,
h6,
.h1,
.h2,
.h3,
.h4,
.h5,
.h6 {
  color: #031d40;
  font-family: "roboto", Roboto, sans-serif;
  font-weight: 700;
}
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;
  line-height: 1.21;
}

h2,
.h2 {
  font-size: 2rem;
  line-height: 1.2;
}

h3,
.h3 {
  font-size: 2rem;
  line-height: 1.33;
}

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

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

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

h1.alternative,
h2.alternative,
h3.alternative,
h4.alternative,
h5.alternative,
h6.alternative {
  color: #031d40;
}

h2.alternative {
  font-weight: 500;
}

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

/* -- Blockquote -- */
blockquote {
  color: #031d40;
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1.25;
}

/* -- Link -- */
a {
  color: #0699d6;
  font-weight: 500;
  transition: color 0.1s linear;
  text-decoration: none;
}
a:hover {
  color: #092d74;
}
a:focus {
  color: #092d74;
  text-decoration: underline;
}
a:active {
  color: #092d74;
}
a:disabled {
  color: rgba(3, 29, 64, 0.54);
}

/* -- 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: 2.8rem;
    line-height: 1.29;
  }

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

  h3,
.h3 {
    font-size: 2rem;
    line-height: 1.4;
  }

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

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

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

  /* -- Blockquote -- */
  blockquote {
    color: #031d40;
    font-size: 1.6rem;
    font-weight: 500;
    line-height: 1.25;
  }

  /* -- Paragraph -- */
  p,
li,
a {
    font-size: 0.9rem;
  }

  a {
    color: #0699d6;
    font-weight: 500;
  }
  a:hover {
    color: #092d74;
  }
  a:focus {
    text-decoration: underline;
  }
  a:active {
    color: #092d74;
  }

  /* -- 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: #000000;
}
.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 .button--secondary {
  background: transparent;
  border: 2px solid #ffffff;
  color: #ffffff;
}
.bg_black .button--secondary:hover {
  background: #ffffff;
  border-color: #ffffff;
  color: #092d74;
}
.bg_black .button--secondary:active, .bg_black .button--secondary:focus {
  background: #ffffff;
  color: rgba(3, 29, 64, 0.54);
  border-color: rgba(255, 255, 255, 0.4);
  opacity: 1;
}

.bg_base {
  background: #282828;
}
.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_base .button--secondary {
  background: transparent;
  border: 2px solid #ffffff;
  color: #ffffff;
}
.bg_base .button--secondary:hover {
  background: #ffffff;
  border-color: #ffffff;
  color: #092d74;
}
.bg_base .button--secondary:active, .bg_base .button--secondary:focus {
  background: #ffffff;
  color: rgba(3, 29, 64, 0.54);
  border-color: rgba(255, 255, 255, 0.4);
  opacity: 1;
}

.bg_primary {
  background: #031d40;
}
.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_primary .button--secondary {
  background: transparent;
  border: 2px solid #ffffff;
  color: #ffffff;
}
.bg_primary .button--secondary:hover {
  background: #ffffff;
  border-color: #ffffff;
  color: #092d74;
}
.bg_primary .button--secondary:active, .bg_primary .button--secondary:focus {
  background: #ffffff;
  color: rgba(3, 29, 64, 0.54);
  border-color: rgba(255, 255, 255, 0.4);
  opacity: 1;
}

.bg_secondary {
  background: #092d74;
}
.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_secondary .button--secondary {
  background: transparent;
  border: 2px solid #ffffff;
  color: #ffffff;
}
.bg_secondary .button--secondary:hover {
  background: #ffffff;
  border-color: #ffffff;
  color: #092d74;
}
.bg_secondary .button--secondary:active, .bg_secondary .button--secondary:focus {
  background: #ffffff;
  color: rgba(3, 29, 64, 0.54);
  border-color: rgba(255, 255, 255, 0.4);
  opacity: 1;
}

.bg_action {
  background: #0699d6;
}
.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_action .button--secondary {
  background: transparent;
  border: 2px solid #ffffff;
  color: #ffffff;
}
.bg_action .button--secondary:hover {
  background: #ffffff;
  border-color: #ffffff;
  color: #092d74;
}
.bg_action .button--secondary:active, .bg_action .button--secondary:focus {
  background: #ffffff;
  color: rgba(3, 29, 64, 0.54);
  border-color: rgba(255, 255, 255, 0.4);
  opacity: 1;
}

.bg_theme {
  background: #ef772d;
}
.bg_theme h1:not(.keep-default),
.bg_theme h2:not(.keep-default),
.bg_theme h3:not(.keep-default),
.bg_theme h4:not(.keep-default),
.bg_theme h5:not(.keep-default),
.bg_theme h6:not(.keep-default),
.bg_theme p:not(.keep-default),
.bg_theme a:not(.button):not(.cta_button):not(.keep-default),
.bg_theme li:not(.keep-default) {
  color: #ffffff;
}
.bg_theme .button--secondary {
  background: transparent;
  border: 2px solid #ffffff;
  color: #ffffff;
}
.bg_theme .button--secondary:hover {
  background: #ffffff;
  border-color: #ffffff;
  color: #092d74;
}
.bg_theme .button--secondary:active, .bg_theme .button--secondary:focus {
  background: #ffffff;
  color: rgba(3, 29, 64, 0.54);
  border-color: rgba(255, 255, 255, 0.4);
  opacity: 1;
}

.bg_theme_1 {
  background: #ef772d;
}
.bg_theme_1 h1:not(.keep-default),
.bg_theme_1 h2:not(.keep-default),
.bg_theme_1 h3:not(.keep-default),
.bg_theme_1 h4:not(.keep-default),
.bg_theme_1 h5:not(.keep-default),
.bg_theme_1 h6:not(.keep-default),
.bg_theme_1 p:not(.keep-default),
.bg_theme_1 a:not(.button):not(.cta_button):not(.keep-default),
.bg_theme_1 li:not(.keep-default) {
  color: #ffffff;
}
.bg_theme_1 .button--secondary {
  background: transparent;
  border: 2px solid #ffffff;
  color: #ffffff;
}
.bg_theme_1 .button--secondary:hover {
  background: #ffffff;
  border-color: #ffffff;
  color: #092d74;
}
.bg_theme_1 .button--secondary:active, .bg_theme_1 .button--secondary:focus {
  background: #ffffff;
  color: rgba(3, 29, 64, 0.54);
  border-color: rgba(255, 255, 255, 0.4);
  opacity: 1;
}

.bg_theme_2 {
  background: #FFDD00;
}
.bg_theme_2 h1:not(.keep-default),
.bg_theme_2 h2:not(.keep-default),
.bg_theme_2 h3:not(.keep-default),
.bg_theme_2 h4:not(.keep-default),
.bg_theme_2 h5:not(.keep-default),
.bg_theme_2 h6:not(.keep-default),
.bg_theme_2 p:not(.keep-default),
.bg_theme_2 a:not(.button):not(.cta_button):not(.keep-default),
.bg_theme_2 li:not(.keep-default) {
  color: #ffffff;
}
.bg_theme_2 .button--secondary {
  background: transparent;
  border: 2px solid #ffffff;
  color: #ffffff;
}
.bg_theme_2 .button--secondary:hover {
  background: #ffffff;
  border-color: #ffffff;
  color: #092d74;
}
.bg_theme_2 .button--secondary:active, .bg_theme_2 .button--secondary:focus {
  background: #ffffff;
  color: rgba(3, 29, 64, 0.54);
  border-color: rgba(255, 255, 255, 0.4);
  opacity: 1;
}

.bg_theme_3 {
  background: #dd2e1a;
}
.bg_theme_3 h1:not(.keep-default),
.bg_theme_3 h2:not(.keep-default),
.bg_theme_3 h3:not(.keep-default),
.bg_theme_3 h4:not(.keep-default),
.bg_theme_3 h5:not(.keep-default),
.bg_theme_3 h6:not(.keep-default),
.bg_theme_3 p:not(.keep-default),
.bg_theme_3 a:not(.button):not(.cta_button):not(.keep-default),
.bg_theme_3 li:not(.keep-default) {
  color: #ffffff;
}
.bg_theme_3 .button--secondary {
  background: transparent;
  border: 2px solid #ffffff;
  color: #ffffff;
}
.bg_theme_3 .button--secondary:hover {
  background: #ffffff;
  border-color: #ffffff;
  color: #092d74;
}
.bg_theme_3 .button--secondary:active, .bg_theme_3 .button--secondary:focus {
  background: #ffffff;
  color: rgba(3, 29, 64, 0.54);
  border-color: rgba(255, 255, 255, 0.4);
  opacity: 1;
}

.bg_red {
  background: #dd2e1a;
}
.bg_red h1:not(.keep-default),
.bg_red h2:not(.keep-default),
.bg_red h3:not(.keep-default),
.bg_red h4:not(.keep-default),
.bg_red h5:not(.keep-default),
.bg_red h6:not(.keep-default),
.bg_red p:not(.keep-default),
.bg_red a:not(.button):not(.cta_button):not(.keep-default),
.bg_red li:not(.keep-default) {
  color: #ffffff;
}
.bg_red .button--secondary {
  background: transparent;
  border: 2px solid #ffffff;
  color: #ffffff;
}
.bg_red .button--secondary:hover {
  background: #ffffff;
  border-color: #ffffff;
  color: #092d74;
}
.bg_red .button--secondary:active, .bg_red .button--secondary:focus {
  background: #ffffff;
  color: rgba(3, 29, 64, 0.54);
  border-color: rgba(255, 255, 255, 0.4);
  opacity: 1;
}

.bg_green {
  background: #7ba728;
}
.bg_green h1:not(.keep-default),
.bg_green h2:not(.keep-default),
.bg_green h3:not(.keep-default),
.bg_green h4:not(.keep-default),
.bg_green h5:not(.keep-default),
.bg_green h6:not(.keep-default),
.bg_green p:not(.keep-default),
.bg_green a:not(.button):not(.cta_button):not(.keep-default),
.bg_green li:not(.keep-default) {
  color: #ffffff;
}
.bg_green .button--secondary {
  background: transparent;
  border: 2px solid #ffffff;
  color: #ffffff;
}
.bg_green .button--secondary:hover {
  background: #ffffff;
  border-color: #ffffff;
  color: #092d74;
}
.bg_green .button--secondary:active, .bg_green .button--secondary:focus {
  background: #ffffff;
  color: rgba(3, 29, 64, 0.54);
  border-color: rgba(255, 255, 255, 0.4);
  opacity: 1;
}

.bg_white {
  background: #ffffff;
}

.bg_light-grey {
  background: #f3f6fc;
}

.bg_pattern {
  background: #031d40;
  position: relative;
}
.bg_pattern::before {
  background-image: linear-gradient(249deg, #031d40 55%, rgba(3, 29, 64, 0.7) 100%), url("https://8565747.fs1.hubspotusercontent-na1.net/hubfs/8565747/_system/icons/deco.svg");
  background-size: auto, 63px;
  background-repeat: repeat, round;
  content: "";
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
}
.bg_pattern h1:not(.keep-default),
.bg_pattern h2:not(.keep-default),
.bg_pattern h3:not(.keep-default),
.bg_pattern h4:not(.keep-default),
.bg_pattern h5:not(.keep-default),
.bg_pattern h6:not(.keep-default),
.bg_pattern p:not(.keep-default),
.bg_pattern a:not(.button):not(.cta_button):not(.keep-default),
.bg_pattern li:not(.keep-default) {
  color: #ffffff;
}
.bg_pattern .button--secondary {
  background: transparent;
  border: 2px solid #ffffff;
  color: #ffffff;
}
.bg_pattern .button--secondary:hover {
  background: #ffffff;
  border-color: #ffffff;
  color: #092d74;
}
.bg_pattern .button--secondary:active, .bg_pattern .button--secondary:focus {
  background: #ffffff;
  color: rgba(3, 29, 64, 0.54);
  border-color: rgba(255, 255, 255, 0.4);
  opacity: 1;
}

/*****************************************************************************
 * 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: -15px;
}

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

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

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

.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: -25px;
  }

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

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

  .element_push-left-mobile {
    margin-left: -25px;
  }
}
@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: 1175px) {
  .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 {
  color: #092d74;
  font-size: 0.8rem;
  font-weight: 700;
  line-height: 1.63;
  margin-bottom: 0;
  text-transform: uppercase;
}

/*****************************************************************************
 * 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
 ***************************************************************************** */
.line-artwork {
  top: calc(50% - 2px);
  right: 50%;
}
.line-artwork, .line-artwork::before, .line-artwork::after {
  background: rgba(9, 45, 116, 0.16);
  height: 2px;
  position: absolute;
  width: 50vw;
}
.line-artwork::before, .line-artwork::after {
  content: "";
}
.line-artwork::before {
  top: -20vw;
}
.line-artwork::after {
  top: 20vw;
}

@media only screen and (min-width: 768px) {
  .line-artwork::before {
    top: -12vw;
  }
  .line-artwork::after {
    top: 12vw;
  }
}
@media only screen and (min-width: 992px) {
  .line-artwork::before {
    top: -108px;
  }
  .line-artwork::after {
    top: 108px;
  }
}
/*****************************************************************************
 * 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
 *****************************************/
.link_arrow-right,
.link_arrow-left {
  align-items: center;
  display: inline-flex;
  font-size: 0.8rem;
  font-weight: 500;
  justify-content: space-between;
  line-height: 1.625;
}
.link_arrow-right--small,
.link_arrow-left--small {
  font-size: 0.75rem;
}
.link_arrow-right--spaced,
.link_arrow-left--spaced {
  padding: 1rem;
}
.link_arrow-right::before, .link_arrow-right::after,
.link_arrow-left::before,
.link_arrow-left::after {
  background: url("https://8565747.fs1.hubspotusercontent-na1.net/hubfs/8565747/_system/icons/arrow-right-blue.svg") center/cover;
  display: inline-block;
  flex: 0 0 16px;
  height: 14px;
  transition: transform 0.1s linear;
  width: 16px;
}
.link_arrow-right:hover,
.link_arrow-left:hover {
  text-decoration: none;
  color: #0699d6;
}
.link_arrow-right:active,
.link_arrow-left:active {
  color: #0699d6;
  text-decoration: underline;
}
.link_arrow-right--white,
.link_arrow-left--white {
  color: #ffffff;
}
.link_arrow-right--white::before, .link_arrow-right--white::after,
.link_arrow-left--white::before,
.link_arrow-left--white::after {
  background: url("https://8565747.fs1.hubspotusercontent-na1.net/hubfs/8565747/_system/icons/arrow-right-white.svg") center/cover;
}
.link_arrow-right--white:hover,
.link_arrow-left--white:hover {
  color: #ffffff;
}
.link_arrow-right--dark,
.link_arrow-left--dark {
  color: #031d40;
}
.link_arrow-right--dark::before, .link_arrow-right--dark::after,
.link_arrow-left--dark::before,
.link_arrow-left--dark::after {
  background: url("https://8565747.fs1.hubspotusercontent-na1.net/hubfs/8565747/_system/icons/arrow-right-dark.svg") center/cover;
}
.link_arrow-right--dark:hover,
.link_arrow-left--dark:hover {
  color: #031d40;
}

.link_arrow-right::after {
  content: "";
  margin-left: 0.95rem;
}
.link_arrow-right:hover::after {
  transform: translateX(5px);
}

.link_arrow-left::before {
  content: "";
  transform: scaleX(-1);
  margin-right: 0.95rem;
}
.link_arrow-left:hover::before {
  transform: scaleX(-1) translateX(5px);
}

@media only screen and (min-width: 992px) {
  .link_arrow-right--spaced {
    padding-left: 1.5rem;
  }
}
/*****************************************************************************
 * 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: 2.25rem;
  position: relative;
}

ul.list_checkmark li::before {
  background: url("https://8565747.fs1.hubspotusercontent-na1.net/hubfs/8565747/_system/icons/checkmark.svg") center/cover;
  content: "";
  height: 16px;
  left: 0;
  position: absolute;
  top: 10px;
  width: 20px;
}

.loop-video {
  height: 100%;
  pointer-events: none;
  position: absolute;
  width: 100%;
}
.loop-video--internal {
  left: 50%;
  transform: translateX(-50%);
  width: auto;
}
.loop-video-wrapper {
  height: 100%;
  pointer-events: none;
  position: absolute;
  width: 100%;
}

/*****************************************************************************
 * 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-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_video {
  display: block;
  position: relative;
}
.media_video .play-icon {
  height: 60px;
  left: 32px;
  position: absolute;
  bottom: 32px;
  width: 60px;
}
.media_video .play-icon--right {
  left: auto;
  right: 32px;
}

/*****************************************************************************
 * 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(1.25rem * 0.0666);
}
.module_top-padding-xs {
  padding-top: calc(1.25rem * 0.25);
}
.module_top-padding-s {
  padding-top: calc(1.25rem * 0.5);
}
.module_top-padding-m {
  padding-top: calc(1.25rem * 1);
}
.module_top-padding-l {
  padding-top: calc(1.25rem * 1.5);
}
.module_top-padding-xl {
  padding-top: calc(1.25rem * 2);
}
.module_top-padding-xxl {
  padding-top: calc(1.25rem * 2.5);
}
.module_top-padding-0 {
  padding-top: 0;
}

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

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

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

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

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

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

  .module_bottom-padding-xxs {
    padding-bottom: calc(3.75rem * 0.0666);
  }
  .module_bottom-padding-xs {
    padding-bottom: calc(3.75rem * 0.25);
  }
  .module_bottom-padding-s {
    padding-bottom: calc(3.75rem * 0.5);
  }
  .module_bottom-padding-m {
    padding-bottom: calc(3.75rem * 1);
  }
  .module_bottom-padding-l {
    padding-bottom: calc(3.75rem * 1.5);
  }
  .module_bottom-padding-xl {
    padding-bottom: calc(3.75rem * 2);
  }
  .module_bottom-padding-xxl {
    padding-bottom: calc(3.75rem * 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: #000000;
}

body .text_color-primary {
  color: #031d40;
}

body .text_color-secondary {
  color: #092d74;
}

body .text_color-action {
  color: #0699d6;
}

body .text_color-light-grey {
  color: #f3f6fc;
}

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

/* -- 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-medium {
  font-weight: 500;
}
.text_weight-strong {
  font-weight: 700;
}

/* -- Sizes -- */
.text_size-xxl {
  font-size: 1.2rem;
  line-height: 1.4;
}
.text_size-xl {
  font-size: 1.1rem;
  line-height: 1.4;
}
.text_size-l {
  font-size: 1rem;
  line-height: 1.33;
}
.text_size-m {
  font-size: 1rem;
  line-height: 1.8;
}
.text_size-s {
  font-size: 0.8rem;
  line-height: 1.625;
}
.text_size-xs {
  font-size: 0.7rem;
  line-height: 1.42;
}

.uppercase {
  text-transform: uppercase;
}

.lowercase {
  text-transform: lowercase;
}

/* -- 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: #000000;
}
.rich-text-container--color-primary p,
.rich-text-container--color-primary li,
.rich-text-container--color-primary a {
  color: #031d40;
}
.rich-text-container--color-secondary p,
.rich-text-container--color-secondary li,
.rich-text-container--color-secondary a {
  color: #092d74;
}
.rich-text-container--color-action p,
.rich-text-container--color-action li,
.rich-text-container--color-action a {
  color: #0699d6;
}
.rich-text-container--color-light-grey p,
.rich-text-container--color-light-grey li,
.rich-text-container--color-light-grey a {
  color: #f3f6fc;
}
.rich-text-container--color-white p,
.rich-text-container--color-white li,
.rich-text-container--color-white a {
  color: #ffffff;
}
.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: #0699d6;
  border-radius: 50%;
  content: "";
  height: 5px;
  left: 0;
  position: absolute;
  top: 10px;
  width: 5px;
}
.rich-text-container--xl p,
.rich-text-container--xl li,
.rich-text-container--xl a {
  font-size: 1.1rem;
  line-height: 1.33;
}
.rich-text-container--l p,
.rich-text-container--l li,
.rich-text-container--l a {
  font-size: 1rem;
  line-height: 1.33;
}
.rich-text-container--m p,
.rich-text-container--m li,
.rich-text-container--m a {
  font-size: 1rem;
  line-height: 1.8;
}
.rich-text-container--s h6 {
  font-size: 0.9rem;
}
.rich-text-container--s p,
.rich-text-container--s li,
.rich-text-container--s a {
  font-size: 0.8rem;
  line-height: 1.63;
}
.rich-text-container--xs p,
.rich-text-container--xs li,
.rich-text-container--xs a {
  font-size: 0.7rem;
  line-height: 1.42;
}

.overline-heading {
  position: relative;
  z-index: 1;
}
.overline-heading h6 {
  display: inline-block;
  padding-right: 1.2rem;
}
.overline-heading::before {
  background: rgba(9, 45, 116, 0.16);
  content: "";
  height: 2px;
  left: 0;
  position: absolute;
  top: 0.8rem;
  width: 100%;
  z-index: -1;
}

/* Medium screens
  ---------------------------------------------------------------------------- */
@media only screen and (min-width: 992px) {
  /* -- Sizes -- */
  .text_size-xxl {
    font-size: 2rem;
  }
  .text_size-xl {
    font-size: 1.4rem;
  }
  .text_size-l {
    font-size: 1.2rem;
  }
  .text_size-m {
    font-size: 1rem;
    line-height: 1.8;
  }

  .rich-text-container--xl p,
.rich-text-container--xl li,
.rich-text-container--xl a {
    font-size: 1.4rem;
  }
  .rich-text-container--l p,
.rich-text-container--l li,
.rich-text-container--l a {
    font-size: 1.2rem;
  }
  .rich-text-container--m p,
.rich-text-container--m li,
.rich-text-container--m a {
    font-size: 1rem;
    line-height: 1.8;
  }
  .rich-text-container--s p,
.rich-text-container--s li,
.rich-text-container--s a {
    font-size: 0.8rem;
    line-height: 1.63;
  }
}