@charset "UTF-8";
@import url("https://use.typekit.net/ymk4eoq.css");
:root {
  --smallFontSizeb: 13px;
  --smallFontSizea: 16px;
  --standardFontSizeb: 16px;
  --standardFontSizea: 18px;
  --largeFontSizeb: 20px;
  --largeFontSizea: 22px;
  --headerFontSize1a: 60px;
  --headerFontSize1b: 44px;
  --headerFontSize2a: 36px;
  --headerFontSize2b: 36px;
  --headerFontSize3a: 28px;
  --headerFontSize3b: 28px;
  --headerFontSize4a: 24px;
  --headerFontSize4b: 24px;
  --headerFontSize5a: 20px;
  --headerFontSize5b: 20px;
  --impactFontHuge: 150px;
  --impactFontLarge: 90px;
  --impactFontMedium: 60px;
  --impactFontSmall: 44px;
  --impactFontTiny: 32px;
}

/*

@import 'util/util';


// 1. Global
// ---------


//---- BREAKPOINTS ---------------------------------------------

$breakpoints: (
    small: 0,
    medium: 640px,
    ipad: 768px,
    medlarge: 850px,
    desktop: 960px,
    large: 1024px,
    xlarge: 1200px,
    xxlarge: 1440px,
    xxxlarge: 1570px,
    full: 1650px, // Should match $design-file-container + $spacer
);
$print-breakpoint: large;
$breakpoint-classes: (small medium large);


//---- COLORS --------------------------------------------------

$navy: #002642;
$steel-blue: #1380CD;
$sky-blue: #48B2FE;
$pale-blue: #48B2FE;
$white: #ffffff;

$orange: #FF5F15;
$scarlet: #F43601;

$black: $navy;
$offblack: $steel-blue;
$offwhite: $pale-blue;
$grey: $sky-blue;

$orange-dark: $scarlet;

$blue: $sky-blue;
$blue-dark: $steel-blue;

$mantis-green: #4CBD5B;

$green: $mantis-green;

$red: $scarlet; // Used for Warning

// Gradient
// $gradient: linear-gradient(0deg, rgba(0,0,0,1) 0%, rgba(255,255,255,1) 100%); // Black bottom -> White top


/////////////

$primary: $blue;
$secondary: $blue;
$tertiary: $green;

$primary-dark: $blue-dark;
$primary-on: $primary-dark;
$secondary-dark: $blue-dark;
$secondary-on: $secondary-dark;

$accent: $orange;
$cta: $accent;

$text-color: $navy;
$title-color: $text-color;

$body-background: $white;


$warning: $red; //// Red

$foundation-palette: (
    primary: $primary,
    secondary: $secondary,
    success: $primary,
    warning: $warning,
    alert: $secondary,
);


//---- FONTS -----------------------------------------------------

// Google Fonts
//@import url('https://fonts.googleapis.com/css2?family=Urbanist:ital,wght@0,400;0,500;0,600;0,700;1,400;1,700&family=Open+Sans:wght@400;600;700&display=swap'); // 400 | 500 | 600 | 700

// Adobe Fonts
@import url("https://use.typekit.net/ymk4eoq.css");

$gibson: "canada-type-gibson", sans-serif; // 300, 400, 600, 700
$freely: "p22-freely", sans-serif;

$titlefont: $gibson;
$bodyfont: $gibson;

$titleLineHeight: 110%;
$bodyLineHeight: 150%;

// Font Sizes

:root {
    --smallFontSizeb: 14px;
    --smallFontSizea: 15px;
    --standardFontSizeb: 16px;
    --standardFontSizea: 18px; // p
    --largeFontSizeb: 20px;
    --largeFontSizea: 22px;
    --headerFontSize1a: 60px; // H1
    --headerFontSize1b: 60px;
    --headerFontSize2a: 36px; // H2
    --headerFontSize2b: 36px;
    --headerFontSize3a: 28px; // H3
    --headerFontSize3b: 28px;
    --headerFontSize4a: 24px; // H4
    --headerFontSize4b: 24px;
    --headerFontSize5a: 20px; // H5
    --headerFontSize5b: 20px;
}


//---- SPACING ----------------------------------------------------

$design-file-container: 1420px;
$spacer: 20px;


/////////////

//$column-width-duet: calc(($design-file-container - (11 * $spacer)) / 12);
$column-width-duet: calc($design-file-container / 12);
$global-width: calc($design-file-container + $spacer); // Main Container: (Container + (2 * $spacer))

$contained-wide-column-count: 10;
//$contained-wide: calc(($column-width-duet * $contained-wide-column-count) + (($contained-wide-column-count - 1) * $spacer));
$contained-wide: calc(($column-width-duet * $contained-wide-column-count) - $spacer);

$contained-column-count: 8;
//$contained: calc(($column-width-duet * $contained-column-count) + (($contained-column-count - 1) * $spacer));
$contained: calc(($column-width-duet * $contained-column-count) - $spacer);

$contained-narrow-column-count: 6;
//$contained-narrow: calc(($column-width-duet * $contained-narrow-column-count) + (($contained-narrow-column-count - 1) * $spacer));
$contained-narrow: calc(($column-width-duet * $contained-narrow-column-count) - $spacer);

$column-width-duet-offset-use: calc($design-file-container / 12);

$spacer-small: calc($spacer / 2);
$spacer-small: 20px;


$border-radius: 5px;
$border-radius-big: 15px;
$header-height: 100px ; // Header (90px) + $spacer (50px)

$header-height-small: calc($header-height - 20px);


//---- TRANSITIONS --------------------------------------------------

$transition: all 0.2s ease-in-out;
$transition3: all 0.3s ease-in-out;
$transition5: all 0.5s ease-in-out;


//---- GENERAL -------------------------------------------------------

//$body-background: $white;
$body-font-color: $text-color;
$body-font-family: $bodyfont;
$body-antialiased: true;
$global-margin: 1rem;
$global-padding: 1rem;
$global-position: 1rem;
$global-weight-normal: 300; // Change to 400 if needed
$global-weight-bold: 700; // Change to 700 if needed
$global-radius: 0;
$global-menu-padding: 0.7rem 1rem;
$global-menu-nested-margin: 1rem;
$global-text-direction: ltr;
$global-flexbox: true;
$global-prototype-breakpoints: false;
$global-button-cursor: auto;
$global-color-pick-contrast-tolerance: 0;
$print-transparent-backgrounds: true;

@include add-foundation-colors;


// 2. Breakpoints
// --------------

// Now above


// 3. The Grid
// -----------

$grid-row-width: $global-width;
$grid-column-count: 12;
$grid-column-gutter: (
    small: $spacer,
    medium: $spacer,
);
$grid-column-align-edge: true;
$grid-column-alias: 'columns';
$block-grid-max: 8;


// 4. Base Typography
// ------------------

$header-font-family: $titlefont;
$titlefont: $header-font-family;
$header-font-weight: 700;
$header-font-style: normal;



*/
/**
 * Foundation for Sites by ZURB
 * Version 6.4.3
 * foundation.zurb.com
 * Licensed under MIT Open Source
 */
@media print, screen and (min-width: 40em) {
  .reveal.large, .reveal.small, .reveal.tiny, .reveal {
    right: auto;
    left: auto;
    margin: 0 auto;
  }
}
/*! normalize-scss | MIT/GPLv2 License | bit.ly/normalize-scss */
/* Document
   ========================================================================== */
/**
 * 1. Change the default font family in all browsers (opinionated).
 * 2. Correct the line height in all browsers.
 * 3. Prevent adjustments of font size after orientation changes in
 *    IE on Windows Phone and in iOS.
 */
html {
  font-family: sans-serif; /* 1 */
  line-height: 1.15; /* 2 */
  -ms-text-size-adjust: 100%; /* 3 */
  -webkit-text-size-adjust: 100%; /* 3 */
}

/* Sections
   ========================================================================== */
/**
 * Remove the margin in all browsers (opinionated).
 */
body {
  margin: 0;
}

/**
 * Add the correct display in IE 9-.
 */
article,
aside,
footer,
header,
nav,
section {
  display: block;
}

/**
 * Correct the font size and margin on `h1` elements within `section` and
 * `article` contexts in Chrome, Firefox, and Safari.
 */
h1 {
  font-size: 2em;
  margin: 0.67em 0;
}

/* Grouping content
   ========================================================================== */
/**
 * Add the correct display in IE 9-.
 */
figcaption,
figure {
  display: block;
}

/**
 * Add the correct margin in IE 8.
 */
figure {
  margin: 1em 40px;
}

/**
 * 1. Add the correct box sizing in Firefox.
 * 2. Show the overflow in Edge and IE.
 */
hr {
  box-sizing: content-box; /* 1 */
  height: 0; /* 1 */
  overflow: visible; /* 2 */
}

/**
 * Add the correct display in IE.
 */
main {
  display: block;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
pre {
  font-family: monospace, monospace; /* 1 */
  font-size: 1em; /* 2 */
}

/* Links
   ========================================================================== */
/**
 * 1. Remove the gray background on active links in IE 10.
 * 2. Remove gaps in links underline in iOS 8+ and Safari 8+.
 */
a {
  background-color: transparent; /* 1 */
  -webkit-text-decoration-skip: objects; /* 2 */
}

/**
 * Remove the outline on focused links when they are also active or hovered
 * in all browsers (opinionated).
 */
a:active,
a:hover {
  outline-width: 0;
}

/* Text-level semantics
   ========================================================================== */
/**
 * 1. Remove the bottom border in Firefox 39-.
 * 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari.
 */
abbr[title] {
  border-bottom: none; /* 1 */
  text-decoration: underline; /* 2 */
  text-decoration: underline dotted; /* 2 */
}

/**
 * Prevent the duplicate application of `bolder` by the next rule in Safari 6.
 */
b,
strong {
  font-weight: inherit;
}

/**
 * Add the correct font weight in Chrome, Edge, and Safari.
 */
b,
strong {
  font-weight: bolder;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
code,
kbd,
samp {
  font-family: monospace, monospace; /* 1 */
  font-size: 1em; /* 2 */
}

/**
 * Add the correct font style in Android 4.3-.
 */
dfn {
  font-style: italic;
}

/**
 * Add the correct background and color in IE 9-.
 */
mark {
  background-color: #ff0;
  color: #000;
}

/**
 * Add the correct font size in all browsers.
 */
small {
  font-size: 80%;
}

/**
 * Prevent `sub` and `sup` elements from affecting the line height in
 * all browsers.
 */
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

/* Embedded content
   ========================================================================== */
/**
 * Add the correct display in IE 9-.
 */
audio,
video {
  display: inline-block;
}

/**
 * Add the correct display in iOS 4-7.
 */
audio:not([controls]) {
  display: none;
  height: 0;
}

/**
 * Remove the border on images inside links in IE 10-.
 */
img {
  border-style: none;
}

/**
 * Hide the overflow in IE.
 */
svg:not(:root) {
  overflow: hidden;
}

/* Forms
   ========================================================================== */
/**
 * 1. Change the font styles in all browsers (opinionated).
 * 2. Remove the margin in Firefox and Safari.
 */
button,
input,
optgroup,
select,
textarea {
  font-family: sans-serif; /* 1 */
  font-size: 100%; /* 1 */
  line-height: 1.15; /* 1 */
  margin: 0; /* 2 */
}

/**
 * Show the overflow in IE.
 */
button {
  overflow: visible;
}

/**
 * Remove the inheritance of text transform in Edge, Firefox, and IE.
 * 1. Remove the inheritance of text transform in Firefox.
 */
button,
select { /* 1 */
  text-transform: none;
}

/**
 * 1. Prevent a WebKit bug where (2) destroys native `audio` and `video`
 *    controls in Android 4.
 * 2. Correct the inability to style clickable types in iOS and Safari.
 */
button,
html [type=button],
[type=reset],
[type=submit] {
  -webkit-appearance: button; /* 2 */
}

button,
[type=button],
[type=reset],
[type=submit] {
  /**
   * Remove the inner border and padding in Firefox.
   */
  /**
   * Restore the focus styles unset by the previous rule.
   */
}
button::-moz-focus-inner,
[type=button]::-moz-focus-inner,
[type=reset]::-moz-focus-inner,
[type=submit]::-moz-focus-inner {
  border-style: none;
  padding: 0;
}
button:-moz-focusring,
[type=button]:-moz-focusring,
[type=reset]:-moz-focusring,
[type=submit]:-moz-focusring {
  outline: 1px dotted ButtonText;
}

/**
 * Show the overflow in Edge.
 */
input {
  overflow: visible;
}

/**
 * 1. Add the correct box sizing in IE 10-.
 * 2. Remove the padding in IE 10-.
 */
[type=checkbox],
[type=radio] {
  box-sizing: border-box; /* 1 */
  padding: 0; /* 2 */
}

/**
 * Correct the cursor style of increment and decrement buttons in Chrome.
 */
[type=number]::-webkit-inner-spin-button,
[type=number]::-webkit-outer-spin-button {
  height: auto;
}

/**
 * 1. Correct the odd appearance in Chrome and Safari.
 * 2. Correct the outline style in Safari.
 */
[type=search] {
  -webkit-appearance: textfield; /* 1 */
  outline-offset: -2px; /* 2 */
  /**
   * Remove the inner padding and cancel buttons in Chrome and Safari on macOS.
   */
}
[type=search]::-webkit-search-cancel-button, [type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}

/**
 * 1. Correct the inability to style clickable types in iOS and Safari.
 * 2. Change font properties to `inherit` in Safari.
 */
::-webkit-file-upload-button {
  -webkit-appearance: button; /* 1 */
  font: inherit; /* 2 */
}

/**
 * Change the border, margin, and padding in all browsers (opinionated).
 */
fieldset {
  border: 1px solid #c0c0c0;
  margin: 0 2px;
  padding: 0.35em 0.625em 0.75em;
}

/**
 * 1. Correct the text wrapping in Edge and IE.
 * 2. Correct the color inheritance from `fieldset` elements in IE.
 * 3. Remove the padding so developers are not caught out when they zero out
 *    `fieldset` elements in all browsers.
 */
legend {
  box-sizing: border-box; /* 1 */
  display: table; /* 1 */
  max-width: 100%; /* 1 */
  padding: 0; /* 3 */
  color: inherit; /* 2 */
  white-space: normal; /* 1 */
}

/**
 * 1. Add the correct display in IE 9-.
 * 2. Add the correct vertical alignment in Chrome, Firefox, and Opera.
 */
progress {
  display: inline-block; /* 1 */
  vertical-align: baseline; /* 2 */
}

/**
 * Remove the default vertical scrollbar in IE.
 */
textarea {
  overflow: auto;
}

/* Interactive
   ========================================================================== */
/*
 * Add the correct display in Edge, IE, and Firefox.
 */
details {
  display: block;
}

/*
 * Add the correct display in all browsers.
 */
summary {
  display: list-item;
}

/*
 * Add the correct display in IE 9-.
 */
menu {
  display: block;
}

/* Scripting
   ========================================================================== */
/**
 * Add the correct display in IE 9-.
 */
canvas {
  display: inline-block;
}

/**
 * Add the correct display in IE.
 */
template {
  display: none;
}

/* Hidden
   ========================================================================== */
/**
 * Add the correct display in IE 10-.
 */
[hidden] {
  display: none;
}

.foundation-mq {
  font-family: "small=0em&medium=40em&ipad=48em&medlarge=53.125em&desktop=60em&large=64em&xlarge=75em&xxlarge=90em&xxxlarge=98.125em&full=103.125em";
}

html {
  box-sizing: border-box;
  font-size: 20px;
}

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

body {
  margin: 0;
  padding: 0;
  background: #ffffff;
  font-family: "canada-type-gibson", sans-serif;
  font-weight: 400;
  line-height: 2.25;
  color: #335168;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img {
  display: inline-block;
  vertical-align: middle;
  max-width: 100%;
  height: auto;
  -ms-interpolation-mode: bicubic;
}

textarea {
  height: auto;
  min-height: 50px;
  border-radius: 0;
}

select {
  box-sizing: border-box;
  width: 100%;
  border-radius: 0;
}

.map_canvas img,
.map_canvas embed,
.map_canvas object,
.mqa-display img,
.mqa-display embed,
.mqa-display object {
  max-width: none !important;
}

button {
  padding: 0;
  appearance: none;
  border: 0;
  border-radius: 0;
  background: transparent;
  line-height: 1;
  cursor: auto;
}
[data-whatinput=mouse] button {
  outline: 0;
}

pre {
  overflow: auto;
}

button,
input,
optgroup,
select,
textarea {
  font-family: inherit;
}

.is-visible {
  display: block !important;
}

.is-hidden {
  display: none !important;
}

.grid-container {
  padding-right: 1rem;
  padding-left: 1rem;
  max-width: 1480px;
  margin: 0 auto;
}
@media print, screen and (min-width: 40em) {
  .grid-container {
    padding-right: 1rem;
    padding-left: 1rem;
  }
}
.grid-container.fluid {
  padding-right: 1rem;
  padding-left: 1rem;
  max-width: 100%;
  margin: 0 auto;
}
@media print, screen and (min-width: 40em) {
  .grid-container.fluid {
    padding-right: 1rem;
    padding-left: 1rem;
  }
}
.grid-container.full {
  padding-right: 0;
  padding-left: 0;
  max-width: 100%;
  margin: 0 auto;
}

.grid-x {
  display: flex;
  flex-flow: row wrap;
}

.cell {
  flex: 0 0 auto;
  min-height: 0px;
  min-width: 0px;
  width: 100%;
}
.cell.auto {
  flex: 1 1 0px;
}
.cell.shrink {
  flex: 0 0 auto;
}

.grid-x > .auto {
  width: auto;
}
.grid-x > .shrink {
  width: auto;
}

.grid-x > .small-shrink, .grid-x > .small-full, .grid-x > .small-1, .grid-x > .small-2, .grid-x > .small-3, .grid-x > .small-4, .grid-x > .small-5, .grid-x > .small-6, .grid-x > .small-7, .grid-x > .small-8, .grid-x > .small-9, .grid-x > .small-10, .grid-x > .small-11, .grid-x > .small-12 {
  flex-basis: auto;
}

@media print, screen and (min-width: 40em) {
  .grid-x > .medium-shrink, .grid-x > .medium-full, .grid-x > .medium-1, .grid-x > .medium-2, .grid-x > .medium-3, .grid-x > .medium-4, .grid-x > .medium-5, .grid-x > .medium-6, .grid-x > .medium-7, .grid-x > .medium-8, .grid-x > .medium-9, .grid-x > .medium-10, .grid-x > .medium-11, .grid-x > .medium-12 {
    flex-basis: auto;
  }
}
@media print, screen and (min-width: 64em) {
  .grid-x > .large-shrink, .grid-x > .large-full, .grid-x > .large-1, .grid-x > .large-2, .grid-x > .large-3, .grid-x > .large-4, .grid-x > .large-5, .grid-x > .large-6, .grid-x > .large-7, .grid-x > .large-8, .grid-x > .large-9, .grid-x > .large-10, .grid-x > .large-11, .grid-x > .large-12 {
    flex-basis: auto;
  }
}
.grid-x > .small-1 {
  width: 8.3333333333%;
}

.grid-x > .small-2 {
  width: 16.6666666667%;
}

.grid-x > .small-3 {
  width: 25%;
}

.grid-x > .small-4 {
  width: 33.3333333333%;
}

.grid-x > .small-5 {
  width: 41.6666666667%;
}

.grid-x > .small-6 {
  width: 50%;
}

.grid-x > .small-7 {
  width: 58.3333333333%;
}

.grid-x > .small-8 {
  width: 66.6666666667%;
}

.grid-x > .small-9 {
  width: 75%;
}

.grid-x > .small-10 {
  width: 83.3333333333%;
}

.grid-x > .small-11 {
  width: 91.6666666667%;
}

.grid-x > .small-12 {
  width: 100%;
}

@media print, screen and (min-width: 40em) {
  .grid-x > .medium-auto {
    flex: 1 1 0px;
    width: auto;
  }
  .grid-x > .medium-shrink {
    flex: 0 0 auto;
    width: auto;
  }
  .grid-x > .medium-1 {
    width: 8.3333333333%;
  }
  .grid-x > .medium-2 {
    width: 16.6666666667%;
  }
  .grid-x > .medium-3 {
    width: 25%;
  }
  .grid-x > .medium-4 {
    width: 33.3333333333%;
  }
  .grid-x > .medium-5 {
    width: 41.6666666667%;
  }
  .grid-x > .medium-6 {
    width: 50%;
  }
  .grid-x > .medium-7 {
    width: 58.3333333333%;
  }
  .grid-x > .medium-8 {
    width: 66.6666666667%;
  }
  .grid-x > .medium-9 {
    width: 75%;
  }
  .grid-x > .medium-10 {
    width: 83.3333333333%;
  }
  .grid-x > .medium-11 {
    width: 91.6666666667%;
  }
  .grid-x > .medium-12 {
    width: 100%;
  }
}
@media print, screen and (min-width: 64em) {
  .grid-x > .large-auto {
    flex: 1 1 0px;
    width: auto;
  }
  .grid-x > .large-shrink {
    flex: 0 0 auto;
    width: auto;
  }
  .grid-x > .large-1 {
    width: 8.3333333333%;
  }
  .grid-x > .large-2 {
    width: 16.6666666667%;
  }
  .grid-x > .large-3 {
    width: 25%;
  }
  .grid-x > .large-4 {
    width: 33.3333333333%;
  }
  .grid-x > .large-5 {
    width: 41.6666666667%;
  }
  .grid-x > .large-6 {
    width: 50%;
  }
  .grid-x > .large-7 {
    width: 58.3333333333%;
  }
  .grid-x > .large-8 {
    width: 66.6666666667%;
  }
  .grid-x > .large-9 {
    width: 75%;
  }
  .grid-x > .large-10 {
    width: 83.3333333333%;
  }
  .grid-x > .large-11 {
    width: 91.6666666667%;
  }
  .grid-x > .large-12 {
    width: 100%;
  }
}
.grid-margin-x:not(.grid-x) > .cell {
  width: auto;
}

.grid-margin-y:not(.grid-y) > .cell {
  height: auto;
}

.grid-margin-x {
  margin-left: - 1rem;
  margin-right: - 1rem;
}
@media print, screen and (min-width: 40em) {
  .grid-margin-x {
    margin-left: - 1rem;
    margin-right: - 1rem;
  }
}
.grid-margin-x > .cell {
  width: calc(100% - 2rem);
  margin-left: 1rem;
  margin-right: 1rem;
}
@media print, screen and (min-width: 40em) {
  .grid-margin-x > .cell {
    width: calc(100% - 2rem);
    margin-left: 1rem;
    margin-right: 1rem;
  }
}
.grid-margin-x > .auto {
  width: auto;
}
.grid-margin-x > .shrink {
  width: auto;
}
.grid-margin-x > .small-1 {
  width: calc(8.3333333333% - 2rem);
}
.grid-margin-x > .small-2 {
  width: calc(16.6666666667% - 2rem);
}
.grid-margin-x > .small-3 {
  width: calc(25% - 2rem);
}
.grid-margin-x > .small-4 {
  width: calc(33.3333333333% - 2rem);
}
.grid-margin-x > .small-5 {
  width: calc(41.6666666667% - 2rem);
}
.grid-margin-x > .small-6 {
  width: calc(50% - 2rem);
}
.grid-margin-x > .small-7 {
  width: calc(58.3333333333% - 2rem);
}
.grid-margin-x > .small-8 {
  width: calc(66.6666666667% - 2rem);
}
.grid-margin-x > .small-9 {
  width: calc(75% - 2rem);
}
.grid-margin-x > .small-10 {
  width: calc(83.3333333333% - 2rem);
}
.grid-margin-x > .small-11 {
  width: calc(91.6666666667% - 2rem);
}
.grid-margin-x > .small-12 {
  width: calc(100% - 2rem);
}
@media print, screen and (min-width: 40em) {
  .grid-margin-x > .auto {
    width: auto;
  }
  .grid-margin-x > .shrink {
    width: auto;
  }
  .grid-margin-x > .small-1 {
    width: calc(8.3333333333% - 2rem);
  }
  .grid-margin-x > .small-2 {
    width: calc(16.6666666667% - 2rem);
  }
  .grid-margin-x > .small-3 {
    width: calc(25% - 2rem);
  }
  .grid-margin-x > .small-4 {
    width: calc(33.3333333333% - 2rem);
  }
  .grid-margin-x > .small-5 {
    width: calc(41.6666666667% - 2rem);
  }
  .grid-margin-x > .small-6 {
    width: calc(50% - 2rem);
  }
  .grid-margin-x > .small-7 {
    width: calc(58.3333333333% - 2rem);
  }
  .grid-margin-x > .small-8 {
    width: calc(66.6666666667% - 2rem);
  }
  .grid-margin-x > .small-9 {
    width: calc(75% - 2rem);
  }
  .grid-margin-x > .small-10 {
    width: calc(83.3333333333% - 2rem);
  }
  .grid-margin-x > .small-11 {
    width: calc(91.6666666667% - 2rem);
  }
  .grid-margin-x > .small-12 {
    width: calc(100% - 2rem);
  }
  .grid-margin-x > .medium-auto {
    width: auto;
  }
  .grid-margin-x > .medium-shrink {
    width: auto;
  }
  .grid-margin-x > .medium-1 {
    width: calc(8.3333333333% - 2rem);
  }
  .grid-margin-x > .medium-2 {
    width: calc(16.6666666667% - 2rem);
  }
  .grid-margin-x > .medium-3 {
    width: calc(25% - 2rem);
  }
  .grid-margin-x > .medium-4 {
    width: calc(33.3333333333% - 2rem);
  }
  .grid-margin-x > .medium-5 {
    width: calc(41.6666666667% - 2rem);
  }
  .grid-margin-x > .medium-6 {
    width: calc(50% - 2rem);
  }
  .grid-margin-x > .medium-7 {
    width: calc(58.3333333333% - 2rem);
  }
  .grid-margin-x > .medium-8 {
    width: calc(66.6666666667% - 2rem);
  }
  .grid-margin-x > .medium-9 {
    width: calc(75% - 2rem);
  }
  .grid-margin-x > .medium-10 {
    width: calc(83.3333333333% - 2rem);
  }
  .grid-margin-x > .medium-11 {
    width: calc(91.6666666667% - 2rem);
  }
  .grid-margin-x > .medium-12 {
    width: calc(100% - 2rem);
  }
}
@media print, screen and (min-width: 64em) {
  .grid-margin-x > .large-auto {
    width: auto;
  }
  .grid-margin-x > .large-shrink {
    width: auto;
  }
  .grid-margin-x > .large-1 {
    width: calc(8.3333333333% - 2rem);
  }
  .grid-margin-x > .large-2 {
    width: calc(16.6666666667% - 2rem);
  }
  .grid-margin-x > .large-3 {
    width: calc(25% - 2rem);
  }
  .grid-margin-x > .large-4 {
    width: calc(33.3333333333% - 2rem);
  }
  .grid-margin-x > .large-5 {
    width: calc(41.6666666667% - 2rem);
  }
  .grid-margin-x > .large-6 {
    width: calc(50% - 2rem);
  }
  .grid-margin-x > .large-7 {
    width: calc(58.3333333333% - 2rem);
  }
  .grid-margin-x > .large-8 {
    width: calc(66.6666666667% - 2rem);
  }
  .grid-margin-x > .large-9 {
    width: calc(75% - 2rem);
  }
  .grid-margin-x > .large-10 {
    width: calc(83.3333333333% - 2rem);
  }
  .grid-margin-x > .large-11 {
    width: calc(91.6666666667% - 2rem);
  }
  .grid-margin-x > .large-12 {
    width: calc(100% - 2rem);
  }
}

.grid-padding-x .grid-padding-x {
  margin-right: - 1rem;
  margin-left: - 1rem;
}
@media print, screen and (min-width: 40em) {
  .grid-padding-x .grid-padding-x {
    margin-right: - 1rem;
    margin-left: - 1rem;
  }
}
.grid-container:not(.full) > .grid-padding-x {
  margin-right: - 1rem;
  margin-left: - 1rem;
}
@media print, screen and (min-width: 40em) {
  .grid-container:not(.full) > .grid-padding-x {
    margin-right: - 1rem;
    margin-left: - 1rem;
  }
}
.grid-padding-x > .cell {
  padding-right: 1rem;
  padding-left: 1rem;
}
@media print, screen and (min-width: 40em) {
  .grid-padding-x > .cell {
    padding-right: 1rem;
    padding-left: 1rem;
  }
}

.small-up-1 > .cell {
  width: 100%;
}

.small-up-2 > .cell {
  width: 50%;
}

.small-up-3 > .cell {
  width: 33.3333333333%;
}

.small-up-4 > .cell {
  width: 25%;
}

.small-up-5 > .cell {
  width: 20%;
}

.small-up-6 > .cell {
  width: 16.6666666667%;
}

.small-up-7 > .cell {
  width: 14.2857142857%;
}

.small-up-8 > .cell {
  width: 12.5%;
}

@media print, screen and (min-width: 40em) {
  .medium-up-1 > .cell {
    width: 100%;
  }
  .medium-up-2 > .cell {
    width: 50%;
  }
  .medium-up-3 > .cell {
    width: 33.3333333333%;
  }
  .medium-up-4 > .cell {
    width: 25%;
  }
  .medium-up-5 > .cell {
    width: 20%;
  }
  .medium-up-6 > .cell {
    width: 16.6666666667%;
  }
  .medium-up-7 > .cell {
    width: 14.2857142857%;
  }
  .medium-up-8 > .cell {
    width: 12.5%;
  }
}
@media print, screen and (min-width: 64em) {
  .large-up-1 > .cell {
    width: 100%;
  }
  .large-up-2 > .cell {
    width: 50%;
  }
  .large-up-3 > .cell {
    width: 33.3333333333%;
  }
  .large-up-4 > .cell {
    width: 25%;
  }
  .large-up-5 > .cell {
    width: 20%;
  }
  .large-up-6 > .cell {
    width: 16.6666666667%;
  }
  .large-up-7 > .cell {
    width: 14.2857142857%;
  }
  .large-up-8 > .cell {
    width: 12.5%;
  }
}
.grid-margin-x.small-up-1 > .cell {
  width: calc(100% - 2rem);
}

.grid-margin-x.small-up-2 > .cell {
  width: calc(50% - 2rem);
}

.grid-margin-x.small-up-3 > .cell {
  width: calc(33.3333333333% - 2rem);
}

.grid-margin-x.small-up-4 > .cell {
  width: calc(25% - 2rem);
}

.grid-margin-x.small-up-5 > .cell {
  width: calc(20% - 2rem);
}

.grid-margin-x.small-up-6 > .cell {
  width: calc(16.6666666667% - 2rem);
}

.grid-margin-x.small-up-7 > .cell {
  width: calc(14.2857142857% - 2rem);
}

.grid-margin-x.small-up-8 > .cell {
  width: calc(12.5% - 2rem);
}

@media print, screen and (min-width: 40em) {
  .grid-margin-x.small-up-1 > .cell {
    width: calc(100% - 2rem);
  }
  .grid-margin-x.small-up-2 > .cell {
    width: calc(50% - 2rem);
  }
  .grid-margin-x.small-up-3 > .cell {
    width: calc(33.3333333333% - 2rem);
  }
  .grid-margin-x.small-up-4 > .cell {
    width: calc(25% - 2rem);
  }
  .grid-margin-x.small-up-5 > .cell {
    width: calc(20% - 2rem);
  }
  .grid-margin-x.small-up-6 > .cell {
    width: calc(16.6666666667% - 2rem);
  }
  .grid-margin-x.small-up-7 > .cell {
    width: calc(14.2857142857% - 2rem);
  }
  .grid-margin-x.small-up-8 > .cell {
    width: calc(12.5% - 2rem);
  }
  .grid-margin-x.medium-up-1 > .cell {
    width: calc(100% - 2rem);
  }
  .grid-margin-x.medium-up-2 > .cell {
    width: calc(50% - 2rem);
  }
  .grid-margin-x.medium-up-3 > .cell {
    width: calc(33.3333333333% - 2rem);
  }
  .grid-margin-x.medium-up-4 > .cell {
    width: calc(25% - 2rem);
  }
  .grid-margin-x.medium-up-5 > .cell {
    width: calc(20% - 2rem);
  }
  .grid-margin-x.medium-up-6 > .cell {
    width: calc(16.6666666667% - 2rem);
  }
  .grid-margin-x.medium-up-7 > .cell {
    width: calc(14.2857142857% - 2rem);
  }
  .grid-margin-x.medium-up-8 > .cell {
    width: calc(12.5% - 2rem);
  }
}
@media print, screen and (min-width: 64em) {
  .grid-margin-x.large-up-1 > .cell {
    width: calc(100% - 2rem);
  }
  .grid-margin-x.large-up-2 > .cell {
    width: calc(50% - 2rem);
  }
  .grid-margin-x.large-up-3 > .cell {
    width: calc(33.3333333333% - 2rem);
  }
  .grid-margin-x.large-up-4 > .cell {
    width: calc(25% - 2rem);
  }
  .grid-margin-x.large-up-5 > .cell {
    width: calc(20% - 2rem);
  }
  .grid-margin-x.large-up-6 > .cell {
    width: calc(16.6666666667% - 2rem);
  }
  .grid-margin-x.large-up-7 > .cell {
    width: calc(14.2857142857% - 2rem);
  }
  .grid-margin-x.large-up-8 > .cell {
    width: calc(12.5% - 2rem);
  }
}
.small-margin-collapse {
  margin-right: 0;
  margin-left: 0;
}
.small-margin-collapse > .cell {
  margin-right: 0;
  margin-left: 0;
}
.small-margin-collapse > .small-1 {
  width: 8.3333333333%;
}
.small-margin-collapse > .small-2 {
  width: 16.6666666667%;
}
.small-margin-collapse > .small-3 {
  width: 25%;
}
.small-margin-collapse > .small-4 {
  width: 33.3333333333%;
}
.small-margin-collapse > .small-5 {
  width: 41.6666666667%;
}
.small-margin-collapse > .small-6 {
  width: 50%;
}
.small-margin-collapse > .small-7 {
  width: 58.3333333333%;
}
.small-margin-collapse > .small-8 {
  width: 66.6666666667%;
}
.small-margin-collapse > .small-9 {
  width: 75%;
}
.small-margin-collapse > .small-10 {
  width: 83.3333333333%;
}
.small-margin-collapse > .small-11 {
  width: 91.6666666667%;
}
.small-margin-collapse > .small-12 {
  width: 100%;
}
@media print, screen and (min-width: 40em) {
  .small-margin-collapse > .medium-1 {
    width: 8.3333333333%;
  }
  .small-margin-collapse > .medium-2 {
    width: 16.6666666667%;
  }
  .small-margin-collapse > .medium-3 {
    width: 25%;
  }
  .small-margin-collapse > .medium-4 {
    width: 33.3333333333%;
  }
  .small-margin-collapse > .medium-5 {
    width: 41.6666666667%;
  }
  .small-margin-collapse > .medium-6 {
    width: 50%;
  }
  .small-margin-collapse > .medium-7 {
    width: 58.3333333333%;
  }
  .small-margin-collapse > .medium-8 {
    width: 66.6666666667%;
  }
  .small-margin-collapse > .medium-9 {
    width: 75%;
  }
  .small-margin-collapse > .medium-10 {
    width: 83.3333333333%;
  }
  .small-margin-collapse > .medium-11 {
    width: 91.6666666667%;
  }
  .small-margin-collapse > .medium-12 {
    width: 100%;
  }
}
@media print, screen and (min-width: 64em) {
  .small-margin-collapse > .large-1 {
    width: 8.3333333333%;
  }
  .small-margin-collapse > .large-2 {
    width: 16.6666666667%;
  }
  .small-margin-collapse > .large-3 {
    width: 25%;
  }
  .small-margin-collapse > .large-4 {
    width: 33.3333333333%;
  }
  .small-margin-collapse > .large-5 {
    width: 41.6666666667%;
  }
  .small-margin-collapse > .large-6 {
    width: 50%;
  }
  .small-margin-collapse > .large-7 {
    width: 58.3333333333%;
  }
  .small-margin-collapse > .large-8 {
    width: 66.6666666667%;
  }
  .small-margin-collapse > .large-9 {
    width: 75%;
  }
  .small-margin-collapse > .large-10 {
    width: 83.3333333333%;
  }
  .small-margin-collapse > .large-11 {
    width: 91.6666666667%;
  }
  .small-margin-collapse > .large-12 {
    width: 100%;
  }
}

.small-padding-collapse {
  margin-right: 0;
  margin-left: 0;
}
.small-padding-collapse > .cell {
  padding-right: 0;
  padding-left: 0;
}

@media print, screen and (min-width: 40em) {
  .medium-margin-collapse {
    margin-right: 0;
    margin-left: 0;
  }
  .medium-margin-collapse > .cell {
    margin-right: 0;
    margin-left: 0;
  }
}
@media print, screen and (min-width: 40em) {
  .medium-margin-collapse > .small-1 {
    width: 8.3333333333%;
  }
  .medium-margin-collapse > .small-2 {
    width: 16.6666666667%;
  }
  .medium-margin-collapse > .small-3 {
    width: 25%;
  }
  .medium-margin-collapse > .small-4 {
    width: 33.3333333333%;
  }
  .medium-margin-collapse > .small-5 {
    width: 41.6666666667%;
  }
  .medium-margin-collapse > .small-6 {
    width: 50%;
  }
  .medium-margin-collapse > .small-7 {
    width: 58.3333333333%;
  }
  .medium-margin-collapse > .small-8 {
    width: 66.6666666667%;
  }
  .medium-margin-collapse > .small-9 {
    width: 75%;
  }
  .medium-margin-collapse > .small-10 {
    width: 83.3333333333%;
  }
  .medium-margin-collapse > .small-11 {
    width: 91.6666666667%;
  }
  .medium-margin-collapse > .small-12 {
    width: 100%;
  }
}
@media print, screen and (min-width: 40em) {
  .medium-margin-collapse > .medium-1 {
    width: 8.3333333333%;
  }
  .medium-margin-collapse > .medium-2 {
    width: 16.6666666667%;
  }
  .medium-margin-collapse > .medium-3 {
    width: 25%;
  }
  .medium-margin-collapse > .medium-4 {
    width: 33.3333333333%;
  }
  .medium-margin-collapse > .medium-5 {
    width: 41.6666666667%;
  }
  .medium-margin-collapse > .medium-6 {
    width: 50%;
  }
  .medium-margin-collapse > .medium-7 {
    width: 58.3333333333%;
  }
  .medium-margin-collapse > .medium-8 {
    width: 66.6666666667%;
  }
  .medium-margin-collapse > .medium-9 {
    width: 75%;
  }
  .medium-margin-collapse > .medium-10 {
    width: 83.3333333333%;
  }
  .medium-margin-collapse > .medium-11 {
    width: 91.6666666667%;
  }
  .medium-margin-collapse > .medium-12 {
    width: 100%;
  }
}
@media print, screen and (min-width: 64em) {
  .medium-margin-collapse > .large-1 {
    width: 8.3333333333%;
  }
  .medium-margin-collapse > .large-2 {
    width: 16.6666666667%;
  }
  .medium-margin-collapse > .large-3 {
    width: 25%;
  }
  .medium-margin-collapse > .large-4 {
    width: 33.3333333333%;
  }
  .medium-margin-collapse > .large-5 {
    width: 41.6666666667%;
  }
  .medium-margin-collapse > .large-6 {
    width: 50%;
  }
  .medium-margin-collapse > .large-7 {
    width: 58.3333333333%;
  }
  .medium-margin-collapse > .large-8 {
    width: 66.6666666667%;
  }
  .medium-margin-collapse > .large-9 {
    width: 75%;
  }
  .medium-margin-collapse > .large-10 {
    width: 83.3333333333%;
  }
  .medium-margin-collapse > .large-11 {
    width: 91.6666666667%;
  }
  .medium-margin-collapse > .large-12 {
    width: 100%;
  }
}

@media print, screen and (min-width: 40em) {
  .medium-padding-collapse {
    margin-right: 0;
    margin-left: 0;
  }
  .medium-padding-collapse > .cell {
    padding-right: 0;
    padding-left: 0;
  }
}

@media print, screen and (min-width: 64em) {
  .large-margin-collapse {
    margin-right: 0;
    margin-left: 0;
  }
  .large-margin-collapse > .cell {
    margin-right: 0;
    margin-left: 0;
  }
}
@media print, screen and (min-width: 64em) {
  .large-margin-collapse > .small-1 {
    width: 8.3333333333%;
  }
  .large-margin-collapse > .small-2 {
    width: 16.6666666667%;
  }
  .large-margin-collapse > .small-3 {
    width: 25%;
  }
  .large-margin-collapse > .small-4 {
    width: 33.3333333333%;
  }
  .large-margin-collapse > .small-5 {
    width: 41.6666666667%;
  }
  .large-margin-collapse > .small-6 {
    width: 50%;
  }
  .large-margin-collapse > .small-7 {
    width: 58.3333333333%;
  }
  .large-margin-collapse > .small-8 {
    width: 66.6666666667%;
  }
  .large-margin-collapse > .small-9 {
    width: 75%;
  }
  .large-margin-collapse > .small-10 {
    width: 83.3333333333%;
  }
  .large-margin-collapse > .small-11 {
    width: 91.6666666667%;
  }
  .large-margin-collapse > .small-12 {
    width: 100%;
  }
}
@media print, screen and (min-width: 64em) {
  .large-margin-collapse > .medium-1 {
    width: 8.3333333333%;
  }
  .large-margin-collapse > .medium-2 {
    width: 16.6666666667%;
  }
  .large-margin-collapse > .medium-3 {
    width: 25%;
  }
  .large-margin-collapse > .medium-4 {
    width: 33.3333333333%;
  }
  .large-margin-collapse > .medium-5 {
    width: 41.6666666667%;
  }
  .large-margin-collapse > .medium-6 {
    width: 50%;
  }
  .large-margin-collapse > .medium-7 {
    width: 58.3333333333%;
  }
  .large-margin-collapse > .medium-8 {
    width: 66.6666666667%;
  }
  .large-margin-collapse > .medium-9 {
    width: 75%;
  }
  .large-margin-collapse > .medium-10 {
    width: 83.3333333333%;
  }
  .large-margin-collapse > .medium-11 {
    width: 91.6666666667%;
  }
  .large-margin-collapse > .medium-12 {
    width: 100%;
  }
}
@media print, screen and (min-width: 64em) {
  .large-margin-collapse > .large-1 {
    width: 8.3333333333%;
  }
  .large-margin-collapse > .large-2 {
    width: 16.6666666667%;
  }
  .large-margin-collapse > .large-3 {
    width: 25%;
  }
  .large-margin-collapse > .large-4 {
    width: 33.3333333333%;
  }
  .large-margin-collapse > .large-5 {
    width: 41.6666666667%;
  }
  .large-margin-collapse > .large-6 {
    width: 50%;
  }
  .large-margin-collapse > .large-7 {
    width: 58.3333333333%;
  }
  .large-margin-collapse > .large-8 {
    width: 66.6666666667%;
  }
  .large-margin-collapse > .large-9 {
    width: 75%;
  }
  .large-margin-collapse > .large-10 {
    width: 83.3333333333%;
  }
  .large-margin-collapse > .large-11 {
    width: 91.6666666667%;
  }
  .large-margin-collapse > .large-12 {
    width: 100%;
  }
}

@media print, screen and (min-width: 64em) {
  .large-padding-collapse {
    margin-right: 0;
    margin-left: 0;
  }
  .large-padding-collapse > .cell {
    padding-right: 0;
    padding-left: 0;
  }
}

.small-offset-0 {
  margin-left: 0%;
}

.grid-margin-x > .small-offset-0 {
  margin-left: calc(0% + 1rem);
}

.small-offset-1 {
  margin-left: 8.3333333333%;
}

.grid-margin-x > .small-offset-1 {
  margin-left: calc(8.3333333333% + 1rem);
}

.small-offset-2 {
  margin-left: 16.6666666667%;
}

.grid-margin-x > .small-offset-2 {
  margin-left: calc(16.6666666667% + 1rem);
}

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

.grid-margin-x > .small-offset-3 {
  margin-left: calc(25% + 1rem);
}

.small-offset-4 {
  margin-left: 33.3333333333%;
}

.grid-margin-x > .small-offset-4 {
  margin-left: calc(33.3333333333% + 1rem);
}

.small-offset-5 {
  margin-left: 41.6666666667%;
}

.grid-margin-x > .small-offset-5 {
  margin-left: calc(41.6666666667% + 1rem);
}

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

.grid-margin-x > .small-offset-6 {
  margin-left: calc(50% + 1rem);
}

.small-offset-7 {
  margin-left: 58.3333333333%;
}

.grid-margin-x > .small-offset-7 {
  margin-left: calc(58.3333333333% + 1rem);
}

.small-offset-8 {
  margin-left: 66.6666666667%;
}

.grid-margin-x > .small-offset-8 {
  margin-left: calc(66.6666666667% + 1rem);
}

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

.grid-margin-x > .small-offset-9 {
  margin-left: calc(75% + 1rem);
}

.small-offset-10 {
  margin-left: 83.3333333333%;
}

.grid-margin-x > .small-offset-10 {
  margin-left: calc(83.3333333333% + 1rem);
}

.small-offset-11 {
  margin-left: 91.6666666667%;
}

.grid-margin-x > .small-offset-11 {
  margin-left: calc(91.6666666667% + 1rem);
}

@media print, screen and (min-width: 40em) {
  .medium-offset-0 {
    margin-left: 0%;
  }
  .grid-margin-x > .medium-offset-0 {
    margin-left: calc(0% + 1rem);
  }
  .medium-offset-1 {
    margin-left: 8.3333333333%;
  }
  .grid-margin-x > .medium-offset-1 {
    margin-left: calc(8.3333333333% + 1rem);
  }
  .medium-offset-2 {
    margin-left: 16.6666666667%;
  }
  .grid-margin-x > .medium-offset-2 {
    margin-left: calc(16.6666666667% + 1rem);
  }
  .medium-offset-3 {
    margin-left: 25%;
  }
  .grid-margin-x > .medium-offset-3 {
    margin-left: calc(25% + 1rem);
  }
  .medium-offset-4 {
    margin-left: 33.3333333333%;
  }
  .grid-margin-x > .medium-offset-4 {
    margin-left: calc(33.3333333333% + 1rem);
  }
  .medium-offset-5 {
    margin-left: 41.6666666667%;
  }
  .grid-margin-x > .medium-offset-5 {
    margin-left: calc(41.6666666667% + 1rem);
  }
  .medium-offset-6 {
    margin-left: 50%;
  }
  .grid-margin-x > .medium-offset-6 {
    margin-left: calc(50% + 1rem);
  }
  .medium-offset-7 {
    margin-left: 58.3333333333%;
  }
  .grid-margin-x > .medium-offset-7 {
    margin-left: calc(58.3333333333% + 1rem);
  }
  .medium-offset-8 {
    margin-left: 66.6666666667%;
  }
  .grid-margin-x > .medium-offset-8 {
    margin-left: calc(66.6666666667% + 1rem);
  }
  .medium-offset-9 {
    margin-left: 75%;
  }
  .grid-margin-x > .medium-offset-9 {
    margin-left: calc(75% + 1rem);
  }
  .medium-offset-10 {
    margin-left: 83.3333333333%;
  }
  .grid-margin-x > .medium-offset-10 {
    margin-left: calc(83.3333333333% + 1rem);
  }
  .medium-offset-11 {
    margin-left: 91.6666666667%;
  }
  .grid-margin-x > .medium-offset-11 {
    margin-left: calc(91.6666666667% + 1rem);
  }
}
@media print, screen and (min-width: 64em) {
  .large-offset-0 {
    margin-left: 0%;
  }
  .grid-margin-x > .large-offset-0 {
    margin-left: calc(0% + 1rem);
  }
  .large-offset-1 {
    margin-left: 8.3333333333%;
  }
  .grid-margin-x > .large-offset-1 {
    margin-left: calc(8.3333333333% + 1rem);
  }
  .large-offset-2 {
    margin-left: 16.6666666667%;
  }
  .grid-margin-x > .large-offset-2 {
    margin-left: calc(16.6666666667% + 1rem);
  }
  .large-offset-3 {
    margin-left: 25%;
  }
  .grid-margin-x > .large-offset-3 {
    margin-left: calc(25% + 1rem);
  }
  .large-offset-4 {
    margin-left: 33.3333333333%;
  }
  .grid-margin-x > .large-offset-4 {
    margin-left: calc(33.3333333333% + 1rem);
  }
  .large-offset-5 {
    margin-left: 41.6666666667%;
  }
  .grid-margin-x > .large-offset-5 {
    margin-left: calc(41.6666666667% + 1rem);
  }
  .large-offset-6 {
    margin-left: 50%;
  }
  .grid-margin-x > .large-offset-6 {
    margin-left: calc(50% + 1rem);
  }
  .large-offset-7 {
    margin-left: 58.3333333333%;
  }
  .grid-margin-x > .large-offset-7 {
    margin-left: calc(58.3333333333% + 1rem);
  }
  .large-offset-8 {
    margin-left: 66.6666666667%;
  }
  .grid-margin-x > .large-offset-8 {
    margin-left: calc(66.6666666667% + 1rem);
  }
  .large-offset-9 {
    margin-left: 75%;
  }
  .grid-margin-x > .large-offset-9 {
    margin-left: calc(75% + 1rem);
  }
  .large-offset-10 {
    margin-left: 83.3333333333%;
  }
  .grid-margin-x > .large-offset-10 {
    margin-left: calc(83.3333333333% + 1rem);
  }
  .large-offset-11 {
    margin-left: 91.6666666667%;
  }
  .grid-margin-x > .large-offset-11 {
    margin-left: calc(91.6666666667% + 1rem);
  }
}
.grid-y {
  display: flex;
  flex-flow: column nowrap;
}
.grid-y > .cell {
  width: auto;
}
.grid-y > .auto {
  height: auto;
}
.grid-y > .shrink {
  height: auto;
}
.grid-y > .small-shrink, .grid-y > .small-full, .grid-y > .small-1, .grid-y > .small-2, .grid-y > .small-3, .grid-y > .small-4, .grid-y > .small-5, .grid-y > .small-6, .grid-y > .small-7, .grid-y > .small-8, .grid-y > .small-9, .grid-y > .small-10, .grid-y > .small-11, .grid-y > .small-12 {
  flex-basis: auto;
}
@media print, screen and (min-width: 40em) {
  .grid-y > .medium-shrink, .grid-y > .medium-full, .grid-y > .medium-1, .grid-y > .medium-2, .grid-y > .medium-3, .grid-y > .medium-4, .grid-y > .medium-5, .grid-y > .medium-6, .grid-y > .medium-7, .grid-y > .medium-8, .grid-y > .medium-9, .grid-y > .medium-10, .grid-y > .medium-11, .grid-y > .medium-12 {
    flex-basis: auto;
  }
}
@media print, screen and (min-width: 64em) {
  .grid-y > .large-shrink, .grid-y > .large-full, .grid-y > .large-1, .grid-y > .large-2, .grid-y > .large-3, .grid-y > .large-4, .grid-y > .large-5, .grid-y > .large-6, .grid-y > .large-7, .grid-y > .large-8, .grid-y > .large-9, .grid-y > .large-10, .grid-y > .large-11, .grid-y > .large-12 {
    flex-basis: auto;
  }
}
.grid-y > .small-1 {
  height: 8.3333333333%;
}
.grid-y > .small-2 {
  height: 16.6666666667%;
}
.grid-y > .small-3 {
  height: 25%;
}
.grid-y > .small-4 {
  height: 33.3333333333%;
}
.grid-y > .small-5 {
  height: 41.6666666667%;
}
.grid-y > .small-6 {
  height: 50%;
}
.grid-y > .small-7 {
  height: 58.3333333333%;
}
.grid-y > .small-8 {
  height: 66.6666666667%;
}
.grid-y > .small-9 {
  height: 75%;
}
.grid-y > .small-10 {
  height: 83.3333333333%;
}
.grid-y > .small-11 {
  height: 91.6666666667%;
}
.grid-y > .small-12 {
  height: 100%;
}
@media print, screen and (min-width: 40em) {
  .grid-y > .medium-auto {
    flex: 1 1 0px;
    height: auto;
  }
  .grid-y > .medium-shrink {
    height: auto;
  }
  .grid-y > .medium-1 {
    height: 8.3333333333%;
  }
  .grid-y > .medium-2 {
    height: 16.6666666667%;
  }
  .grid-y > .medium-3 {
    height: 25%;
  }
  .grid-y > .medium-4 {
    height: 33.3333333333%;
  }
  .grid-y > .medium-5 {
    height: 41.6666666667%;
  }
  .grid-y > .medium-6 {
    height: 50%;
  }
  .grid-y > .medium-7 {
    height: 58.3333333333%;
  }
  .grid-y > .medium-8 {
    height: 66.6666666667%;
  }
  .grid-y > .medium-9 {
    height: 75%;
  }
  .grid-y > .medium-10 {
    height: 83.3333333333%;
  }
  .grid-y > .medium-11 {
    height: 91.6666666667%;
  }
  .grid-y > .medium-12 {
    height: 100%;
  }
}
@media print, screen and (min-width: 64em) {
  .grid-y > .large-auto {
    flex: 1 1 0px;
    height: auto;
  }
  .grid-y > .large-shrink {
    height: auto;
  }
  .grid-y > .large-1 {
    height: 8.3333333333%;
  }
  .grid-y > .large-2 {
    height: 16.6666666667%;
  }
  .grid-y > .large-3 {
    height: 25%;
  }
  .grid-y > .large-4 {
    height: 33.3333333333%;
  }
  .grid-y > .large-5 {
    height: 41.6666666667%;
  }
  .grid-y > .large-6 {
    height: 50%;
  }
  .grid-y > .large-7 {
    height: 58.3333333333%;
  }
  .grid-y > .large-8 {
    height: 66.6666666667%;
  }
  .grid-y > .large-9 {
    height: 75%;
  }
  .grid-y > .large-10 {
    height: 83.3333333333%;
  }
  .grid-y > .large-11 {
    height: 91.6666666667%;
  }
  .grid-y > .large-12 {
    height: 100%;
  }
}

.grid-padding-y .grid-padding-y {
  margin-top: - 1rem;
  margin-bottom: - 1rem;
}
@media print, screen and (min-width: 40em) {
  .grid-padding-y .grid-padding-y {
    margin-top: - 1rem;
    margin-bottom: - 1rem;
  }
}
.grid-padding-y > .cell {
  padding-top: 1rem;
  padding-bottom: 1rem;
}
@media print, screen and (min-width: 40em) {
  .grid-padding-y > .cell {
    padding-top: 1rem;
    padding-bottom: 1rem;
  }
}

.grid-margin-y {
  margin-top: - 1rem;
  margin-bottom: - 1rem;
}
@media print, screen and (min-width: 40em) {
  .grid-margin-y {
    margin-top: - 1rem;
    margin-bottom: - 1rem;
  }
}
.grid-margin-y > .cell {
  height: calc(100% - 2rem);
  margin-top: 1rem;
  margin-bottom: 1rem;
}
@media print, screen and (min-width: 40em) {
  .grid-margin-y > .cell {
    height: calc(100% - 2rem);
    margin-top: 1rem;
    margin-bottom: 1rem;
  }
}
.grid-margin-y > .auto {
  height: auto;
}
.grid-margin-y > .shrink {
  height: auto;
}
.grid-margin-y > .small-1 {
  height: calc(8.3333333333% - 2rem);
}
.grid-margin-y > .small-2 {
  height: calc(16.6666666667% - 2rem);
}
.grid-margin-y > .small-3 {
  height: calc(25% - 2rem);
}
.grid-margin-y > .small-4 {
  height: calc(33.3333333333% - 2rem);
}
.grid-margin-y > .small-5 {
  height: calc(41.6666666667% - 2rem);
}
.grid-margin-y > .small-6 {
  height: calc(50% - 2rem);
}
.grid-margin-y > .small-7 {
  height: calc(58.3333333333% - 2rem);
}
.grid-margin-y > .small-8 {
  height: calc(66.6666666667% - 2rem);
}
.grid-margin-y > .small-9 {
  height: calc(75% - 2rem);
}
.grid-margin-y > .small-10 {
  height: calc(83.3333333333% - 2rem);
}
.grid-margin-y > .small-11 {
  height: calc(91.6666666667% - 2rem);
}
.grid-margin-y > .small-12 {
  height: calc(100% - 2rem);
}
@media print, screen and (min-width: 40em) {
  .grid-margin-y > .auto {
    height: auto;
  }
  .grid-margin-y > .shrink {
    height: auto;
  }
  .grid-margin-y > .small-1 {
    height: calc(8.3333333333% - 2rem);
  }
  .grid-margin-y > .small-2 {
    height: calc(16.6666666667% - 2rem);
  }
  .grid-margin-y > .small-3 {
    height: calc(25% - 2rem);
  }
  .grid-margin-y > .small-4 {
    height: calc(33.3333333333% - 2rem);
  }
  .grid-margin-y > .small-5 {
    height: calc(41.6666666667% - 2rem);
  }
  .grid-margin-y > .small-6 {
    height: calc(50% - 2rem);
  }
  .grid-margin-y > .small-7 {
    height: calc(58.3333333333% - 2rem);
  }
  .grid-margin-y > .small-8 {
    height: calc(66.6666666667% - 2rem);
  }
  .grid-margin-y > .small-9 {
    height: calc(75% - 2rem);
  }
  .grid-margin-y > .small-10 {
    height: calc(83.3333333333% - 2rem);
  }
  .grid-margin-y > .small-11 {
    height: calc(91.6666666667% - 2rem);
  }
  .grid-margin-y > .small-12 {
    height: calc(100% - 2rem);
  }
  .grid-margin-y > .medium-auto {
    height: auto;
  }
  .grid-margin-y > .medium-shrink {
    height: auto;
  }
  .grid-margin-y > .medium-1 {
    height: calc(8.3333333333% - 2rem);
  }
  .grid-margin-y > .medium-2 {
    height: calc(16.6666666667% - 2rem);
  }
  .grid-margin-y > .medium-3 {
    height: calc(25% - 2rem);
  }
  .grid-margin-y > .medium-4 {
    height: calc(33.3333333333% - 2rem);
  }
  .grid-margin-y > .medium-5 {
    height: calc(41.6666666667% - 2rem);
  }
  .grid-margin-y > .medium-6 {
    height: calc(50% - 2rem);
  }
  .grid-margin-y > .medium-7 {
    height: calc(58.3333333333% - 2rem);
  }
  .grid-margin-y > .medium-8 {
    height: calc(66.6666666667% - 2rem);
  }
  .grid-margin-y > .medium-9 {
    height: calc(75% - 2rem);
  }
  .grid-margin-y > .medium-10 {
    height: calc(83.3333333333% - 2rem);
  }
  .grid-margin-y > .medium-11 {
    height: calc(91.6666666667% - 2rem);
  }
  .grid-margin-y > .medium-12 {
    height: calc(100% - 2rem);
  }
}
@media print, screen and (min-width: 64em) {
  .grid-margin-y > .large-auto {
    height: auto;
  }
  .grid-margin-y > .large-shrink {
    height: auto;
  }
  .grid-margin-y > .large-1 {
    height: calc(8.3333333333% - 2rem);
  }
  .grid-margin-y > .large-2 {
    height: calc(16.6666666667% - 2rem);
  }
  .grid-margin-y > .large-3 {
    height: calc(25% - 2rem);
  }
  .grid-margin-y > .large-4 {
    height: calc(33.3333333333% - 2rem);
  }
  .grid-margin-y > .large-5 {
    height: calc(41.6666666667% - 2rem);
  }
  .grid-margin-y > .large-6 {
    height: calc(50% - 2rem);
  }
  .grid-margin-y > .large-7 {
    height: calc(58.3333333333% - 2rem);
  }
  .grid-margin-y > .large-8 {
    height: calc(66.6666666667% - 2rem);
  }
  .grid-margin-y > .large-9 {
    height: calc(75% - 2rem);
  }
  .grid-margin-y > .large-10 {
    height: calc(83.3333333333% - 2rem);
  }
  .grid-margin-y > .large-11 {
    height: calc(91.6666666667% - 2rem);
  }
  .grid-margin-y > .large-12 {
    height: calc(100% - 2rem);
  }
}

.grid-frame {
  overflow: hidden;
  position: relative;
  flex-wrap: nowrap;
  align-items: stretch;
  width: 100vw;
}

.cell .grid-frame {
  width: 100%;
}

.cell-block {
  overflow-x: auto;
  max-width: 100%;
  -webkit-overflow-scrolling: touch;
  -ms-overflow-stype: -ms-autohiding-scrollbar;
}

.cell-block-y {
  overflow-y: auto;
  max-height: 100%;
  -webkit-overflow-scrolling: touch;
  -ms-overflow-stype: -ms-autohiding-scrollbar;
}

.cell-block-container {
  display: flex;
  flex-direction: column;
  max-height: 100%;
}
.cell-block-container > .grid-x {
  max-height: 100%;
  flex-wrap: nowrap;
}

@media print, screen and (min-width: 40em) {
  .medium-grid-frame {
    overflow: hidden;
    position: relative;
    flex-wrap: nowrap;
    align-items: stretch;
    width: 100vw;
  }
  .cell .medium-grid-frame {
    width: 100%;
  }
  .medium-cell-block {
    overflow-x: auto;
    max-width: 100%;
    -webkit-overflow-scrolling: touch;
    -ms-overflow-stype: -ms-autohiding-scrollbar;
  }
  .medium-cell-block-container {
    display: flex;
    flex-direction: column;
    max-height: 100%;
  }
  .medium-cell-block-container > .grid-x {
    max-height: 100%;
    flex-wrap: nowrap;
  }
  .medium-cell-block-y {
    overflow-y: auto;
    max-height: 100%;
    -webkit-overflow-scrolling: touch;
    -ms-overflow-stype: -ms-autohiding-scrollbar;
  }
}
@media print, screen and (min-width: 64em) {
  .large-grid-frame {
    overflow: hidden;
    position: relative;
    flex-wrap: nowrap;
    align-items: stretch;
    width: 100vw;
  }
  .cell .large-grid-frame {
    width: 100%;
  }
  .large-cell-block {
    overflow-x: auto;
    max-width: 100%;
    -webkit-overflow-scrolling: touch;
    -ms-overflow-stype: -ms-autohiding-scrollbar;
  }
  .large-cell-block-container {
    display: flex;
    flex-direction: column;
    max-height: 100%;
  }
  .large-cell-block-container > .grid-x {
    max-height: 100%;
    flex-wrap: nowrap;
  }
  .large-cell-block-y {
    overflow-y: auto;
    max-height: 100%;
    -webkit-overflow-scrolling: touch;
    -ms-overflow-stype: -ms-autohiding-scrollbar;
  }
}
.grid-y.grid-frame {
  width: auto;
  overflow: hidden;
  position: relative;
  flex-wrap: nowrap;
  align-items: stretch;
  height: 100vh;
}
@media print, screen and (min-width: 40em) {
  .grid-y.medium-grid-frame {
    width: auto;
    overflow: hidden;
    position: relative;
    flex-wrap: nowrap;
    align-items: stretch;
    height: 100vh;
  }
}
@media print, screen and (min-width: 64em) {
  .grid-y.large-grid-frame {
    width: auto;
    overflow: hidden;
    position: relative;
    flex-wrap: nowrap;
    align-items: stretch;
    height: 100vh;
  }
}

.cell .grid-y.grid-frame {
  height: 100%;
}
@media print, screen and (min-width: 40em) {
  .cell .grid-y.medium-grid-frame {
    height: 100%;
  }
}
@media print, screen and (min-width: 64em) {
  .cell .grid-y.large-grid-frame {
    height: 100%;
  }
}

.grid-margin-y {
  margin-top: - 1rem;
  margin-bottom: - 1rem;
}
@media print, screen and (min-width: 40em) {
  .grid-margin-y {
    margin-top: - 1rem;
    margin-bottom: - 1rem;
  }
}
.grid-margin-y > .cell {
  height: calc(100% - 2rem);
  margin-top: 1rem;
  margin-bottom: 1rem;
}
@media print, screen and (min-width: 40em) {
  .grid-margin-y > .cell {
    height: calc(100% - 2rem);
    margin-top: 1rem;
    margin-bottom: 1rem;
  }
}
.grid-margin-y > .auto {
  height: auto;
}
.grid-margin-y > .shrink {
  height: auto;
}
.grid-margin-y > .small-1 {
  height: calc(8.3333333333% - 2rem);
}
.grid-margin-y > .small-2 {
  height: calc(16.6666666667% - 2rem);
}
.grid-margin-y > .small-3 {
  height: calc(25% - 2rem);
}
.grid-margin-y > .small-4 {
  height: calc(33.3333333333% - 2rem);
}
.grid-margin-y > .small-5 {
  height: calc(41.6666666667% - 2rem);
}
.grid-margin-y > .small-6 {
  height: calc(50% - 2rem);
}
.grid-margin-y > .small-7 {
  height: calc(58.3333333333% - 2rem);
}
.grid-margin-y > .small-8 {
  height: calc(66.6666666667% - 2rem);
}
.grid-margin-y > .small-9 {
  height: calc(75% - 2rem);
}
.grid-margin-y > .small-10 {
  height: calc(83.3333333333% - 2rem);
}
.grid-margin-y > .small-11 {
  height: calc(91.6666666667% - 2rem);
}
.grid-margin-y > .small-12 {
  height: calc(100% - 2rem);
}
@media print, screen and (min-width: 40em) {
  .grid-margin-y > .auto {
    height: auto;
  }
  .grid-margin-y > .shrink {
    height: auto;
  }
  .grid-margin-y > .small-1 {
    height: calc(8.3333333333% - 2rem);
  }
  .grid-margin-y > .small-2 {
    height: calc(16.6666666667% - 2rem);
  }
  .grid-margin-y > .small-3 {
    height: calc(25% - 2rem);
  }
  .grid-margin-y > .small-4 {
    height: calc(33.3333333333% - 2rem);
  }
  .grid-margin-y > .small-5 {
    height: calc(41.6666666667% - 2rem);
  }
  .grid-margin-y > .small-6 {
    height: calc(50% - 2rem);
  }
  .grid-margin-y > .small-7 {
    height: calc(58.3333333333% - 2rem);
  }
  .grid-margin-y > .small-8 {
    height: calc(66.6666666667% - 2rem);
  }
  .grid-margin-y > .small-9 {
    height: calc(75% - 2rem);
  }
  .grid-margin-y > .small-10 {
    height: calc(83.3333333333% - 2rem);
  }
  .grid-margin-y > .small-11 {
    height: calc(91.6666666667% - 2rem);
  }
  .grid-margin-y > .small-12 {
    height: calc(100% - 2rem);
  }
  .grid-margin-y > .medium-auto {
    height: auto;
  }
  .grid-margin-y > .medium-shrink {
    height: auto;
  }
  .grid-margin-y > .medium-1 {
    height: calc(8.3333333333% - 2rem);
  }
  .grid-margin-y > .medium-2 {
    height: calc(16.6666666667% - 2rem);
  }
  .grid-margin-y > .medium-3 {
    height: calc(25% - 2rem);
  }
  .grid-margin-y > .medium-4 {
    height: calc(33.3333333333% - 2rem);
  }
  .grid-margin-y > .medium-5 {
    height: calc(41.6666666667% - 2rem);
  }
  .grid-margin-y > .medium-6 {
    height: calc(50% - 2rem);
  }
  .grid-margin-y > .medium-7 {
    height: calc(58.3333333333% - 2rem);
  }
  .grid-margin-y > .medium-8 {
    height: calc(66.6666666667% - 2rem);
  }
  .grid-margin-y > .medium-9 {
    height: calc(75% - 2rem);
  }
  .grid-margin-y > .medium-10 {
    height: calc(83.3333333333% - 2rem);
  }
  .grid-margin-y > .medium-11 {
    height: calc(91.6666666667% - 2rem);
  }
  .grid-margin-y > .medium-12 {
    height: calc(100% - 2rem);
  }
}
@media print, screen and (min-width: 64em) {
  .grid-margin-y > .large-auto {
    height: auto;
  }
  .grid-margin-y > .large-shrink {
    height: auto;
  }
  .grid-margin-y > .large-1 {
    height: calc(8.3333333333% - 2rem);
  }
  .grid-margin-y > .large-2 {
    height: calc(16.6666666667% - 2rem);
  }
  .grid-margin-y > .large-3 {
    height: calc(25% - 2rem);
  }
  .grid-margin-y > .large-4 {
    height: calc(33.3333333333% - 2rem);
  }
  .grid-margin-y > .large-5 {
    height: calc(41.6666666667% - 2rem);
  }
  .grid-margin-y > .large-6 {
    height: calc(50% - 2rem);
  }
  .grid-margin-y > .large-7 {
    height: calc(58.3333333333% - 2rem);
  }
  .grid-margin-y > .large-8 {
    height: calc(66.6666666667% - 2rem);
  }
  .grid-margin-y > .large-9 {
    height: calc(75% - 2rem);
  }
  .grid-margin-y > .large-10 {
    height: calc(83.3333333333% - 2rem);
  }
  .grid-margin-y > .large-11 {
    height: calc(91.6666666667% - 2rem);
  }
  .grid-margin-y > .large-12 {
    height: calc(100% - 2rem);
  }
}

.grid-frame.grid-margin-y {
  height: calc(100vh + 2rem);
}
@media print, screen and (min-width: 40em) {
  .grid-frame.grid-margin-y {
    height: calc(100vh + 2rem);
  }
}
@media print, screen and (min-width: 64em) {
  .grid-frame.grid-margin-y {
    height: calc(100vh + 2rem);
  }
}

@media print, screen and (min-width: 40em) {
  .grid-margin-y.medium-grid-frame {
    height: calc(100vh + 2rem);
  }
}
@media print, screen and (min-width: 64em) {
  .grid-margin-y.large-grid-frame {
    height: calc(100vh + 2rem);
  }
}
div,
dl,
dt,
dd,
ul,
ol,
li,
h1,
h2,
h3,
h4,
h5,
h6,
pre,
form,
p,
blockquote,
th,
td {
  margin: 0;
  padding: 0;
}

p {
  margin-bottom: 1rem;
  font-size: inherit;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
}

em,
i {
  font-style: italic;
  line-height: inherit;
}

strong,
b {
  font-weight: 600;
  line-height: inherit;
}

small {
  font-size: 80%;
  line-height: inherit;
}

h1, .h1,
h2, .h2,
h3, .h3,
h4, .h4,
h5, .h5,
h6, .h6 {
  font-family: "canada-type-gibson", sans-serif;
  font-style: normal;
  font-weight: 600;
  color: inherit;
  text-rendering: optimizeLegibility;
}
h1 small, .h1 small,
h2 small, .h2 small,
h3 small, .h3 small,
h4 small, .h4 small,
h5 small, .h5 small,
h6 small, .h6 small {
  line-height: 0;
  color: #99a8b3;
}

h1, .h1 {
  font-size: 1.5rem;
  line-height: 1.6666666667;
  margin-top: 0;
  margin-bottom: 0.5rem;
}

h2, .h2 {
  font-size: 1.3rem;
  line-height: 1.7307692308;
  margin-top: 0;
  margin-bottom: 0.5rem;
}

h3, .h3 {
  font-size: 0.8rem;
  line-height: 2.34375;
  margin-top: 0;
  margin-bottom: 0.5rem;
}

h4, .h4 {
  font-size: 0.9rem;
  line-height: 1.4;
  margin-top: 0;
  margin-bottom: 0.5rem;
}

h5, .h5 {
  font-size: 0.85rem;
  line-height: 1.4;
  margin-top: 0;
  margin-bottom: 0.5rem;
}

h6, .h6 {
  font-size: 0.8rem;
  line-height: 1.4;
  margin-top: 0;
  margin-bottom: 0.5rem;
}

@media print, screen and (min-width: 40em) {
  h1, .h1 {
    font-size: 2.2rem;
    line-height: 1.5909090909;
  }
  h2, .h2 {
    font-size: 1.6rem;
    line-height: 1.71875;
  }
  h3, .h3 {
    font-size: 1rem;
    line-height: 2.125;
  }
  h4, .h4 {
    font-size: 1.25rem;
  }
  h5, .h5 {
    font-size: 1rem;
  }
  h6, .h6 {
    font-size: 0.8rem;
  }
}
@media print, screen and (min-width: 64em) {
  h1, .h1 {
    font-size: 3rem;
    line-height: 1.5416666667;
  }
  h2, .h2 {
    font-size: 2rem;
    line-height: 1.6875;
  }
  h3, .h3 {
    font-size: 1rem;
    line-height: 2.125;
  }
  h4, .h4 {
    font-size: 1.25rem;
  }
  h5, .h5 {
    font-size: 1rem;
  }
  h6, .h6 {
    font-size: 0.8rem;
  }
}
a {
  line-height: inherit;
  color: #1380cd;
  text-decoration: none;
  cursor: pointer;
}
a:hover, a:focus {
  color: rgb(16.34, 110.08, 176.3);
}
a img {
  border: 0;
}

hr {
  clear: both;
  max-width: 1480px;
  height: 0;
  margin: 1rem auto;
  border-top: 0;
  border-right: 0;
  border-bottom: 1px solid #99a8b3;
  border-left: 0;
}

ul,
ol,
dl {
  margin-bottom: 1rem;
  list-style-position: outside;
  line-height: 1.6;
}

li {
  font-size: inherit;
}

ul {
  margin-left: 1.25rem;
  list-style-type: disc;
}

ol {
  margin-left: 1.25rem;
}

ul ul, ul ol, ol ul, ol ol {
  margin-left: 1.25rem;
  margin-bottom: 0;
}

dl {
  margin-bottom: 1rem;
}
dl dt {
  margin-bottom: 0.3rem;
  font-weight: 600;
}

blockquote {
  margin: 0 0 1rem;
  padding: 0.45rem 1rem 0 0.95rem;
  border-left: 1px solid #99a8b3;
}
blockquote, blockquote p {
  line-height: 1.6;
  color: #335168;
}

cite {
  display: block;
  font-size: 0.65rem;
  color: #99a8b3;
}
cite:before {
  content: "— ";
}

abbr, abbr[title] {
  border-bottom: 1px dotted #002642;
  cursor: help;
  text-decoration: none;
}

figure {
  margin: 0;
}

code {
  padding: 0.1rem 0.25rem 0.05rem;
  border: 1px solid #99a8b3;
  background-color: #99a8b3;
  font-family: Consolas, "Liberation Mono", Courier, monospace;
  font-weight: 400;
  color: #002642;
}

kbd {
  margin: 0;
  padding: 0.1rem 0.2rem 0;
  background-color: #99a8b3;
  font-family: Consolas, "Liberation Mono", Courier, monospace;
  color: #002642;
}

.subheader {
  margin-top: 0.2rem;
  margin-bottom: 0.5rem;
  font-weight: 400;
  line-height: 1.4;
  color: #99a8b3;
}

.lead {
  font-size: 25px;
  line-height: 1.6;
}

.stat {
  font-size: 2.5rem;
  line-height: 1;
}
p + .stat {
  margin-top: -1rem;
}

ul.no-bullet, ol.no-bullet {
  margin-left: 0;
  list-style: none;
}

.text-left {
  text-align: left;
}

.text-right {
  text-align: right;
}

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

.text-justify {
  text-align: justify;
}

@media print, screen and (min-width: 40em) {
  .medium-text-left {
    text-align: left;
  }
  .medium-text-right {
    text-align: right;
  }
  .medium-text-center {
    text-align: center;
  }
  .medium-text-justify {
    text-align: justify;
  }
}
@media print, screen and (min-width: 64em) {
  .large-text-left {
    text-align: left;
  }
  .large-text-right {
    text-align: right;
  }
  .large-text-center {
    text-align: center;
  }
  .large-text-justify {
    text-align: justify;
  }
}
.show-for-print {
  display: none !important;
}

@media print {
  * {
    background: transparent !important;
    box-shadow: none !important;
    color: black !important;
    text-shadow: none !important;
  }
  .show-for-print {
    display: block !important;
  }
  .hide-for-print {
    display: none !important;
  }
  table.show-for-print {
    display: table !important;
  }
  thead.show-for-print {
    display: table-header-group !important;
  }
  tbody.show-for-print {
    display: table-row-group !important;
  }
  tr.show-for-print {
    display: table-row !important;
  }
  td.show-for-print {
    display: table-cell !important;
  }
  th.show-for-print {
    display: table-cell !important;
  }
  a,
  a:visited {
    text-decoration: underline;
  }
  a[href]:after {
    content: " (" attr(href) ")";
  }
  .ir a:after,
  a[href^="javascript:"]:after,
  a[href^="#"]:after {
    content: "";
  }
  abbr[title]:after {
    content: " (" attr(title) ")";
  }
  pre,
  blockquote {
    border: 1px solid #8a8a8a;
    page-break-inside: avoid;
  }
  thead {
    display: table-header-group;
  }
  tr,
  img {
    page-break-inside: avoid;
  }
  img {
    max-width: 100% !important;
  }
  @page {
    margin: 0.5cm;
  }
  p,
  h2,
  h3 {
    orphans: 3;
    widows: 3;
  }
  h2,
  h3 {
    page-break-after: avoid;
  }
  .print-break-inside {
    page-break-inside: auto;
  }
}
.button {
  display: inline-block;
  vertical-align: middle;
  margin: 0 0 1rem 0;
  font-family: inherit;
  padding: 0.85em 1em;
  -webkit-appearance: none;
  border: 1px solid transparent;
  border-radius: 0;
  transition: background-color 0.25s ease-out, color 0.25s ease-out;
  font-size: 0.9rem;
  line-height: 1;
  text-align: center;
  cursor: pointer;
  background-color: #1380cd;
  color: #ffffff;
}
[data-whatinput=mouse] .button {
  outline: 0;
}
.button:hover, .button:focus {
  background-color: rgb(15.2, 102.4, 164);
  color: #ffffff;
}
.button.tiny {
  font-size: 0.6rem;
}
.button.small {
  font-size: 0.75rem;
}
.button.large {
  font-size: 1.25rem;
}
.button.expanded {
  display: block;
  width: 100%;
  margin-right: 0;
  margin-left: 0;
}
.button.primary {
  background-color: #1380cd;
  color: #ffffff;
}
.button.primary:hover, .button.primary:focus {
  background-color: rgb(15.2, 102.4, 164);
  color: #ffffff;
}
.button.secondary {
  background-color: #1380cd;
  color: #ffffff;
}
.button.secondary:hover, .button.secondary:focus {
  background-color: rgb(15.2, 102.4, 164);
  color: #ffffff;
}
.button.success {
  background-color: #1380cd;
  color: #ffffff;
}
.button.success:hover, .button.success:focus {
  background-color: rgb(15.2, 102.4, 164);
  color: #ffffff;
}
.button.warning {
  background-color: #f43601;
  color: #ffffff;
}
.button.warning:hover, .button.warning:focus {
  background-color: rgb(195.2, 43.2, 0.8);
  color: #ffffff;
}
.button.alert {
  background-color: #1380cd;
  color: #ffffff;
}
.button.alert:hover, .button.alert:focus {
  background-color: rgb(15.2, 102.4, 164);
  color: #ffffff;
}
.button.disabled, .button[disabled] {
  opacity: 0.25;
  cursor: not-allowed;
}
.button.disabled, .button.disabled:hover, .button.disabled:focus, .button[disabled], .button[disabled]:hover, .button[disabled]:focus {
  background-color: #1380cd;
  color: #ffffff;
}
.button.disabled.primary, .button[disabled].primary {
  opacity: 0.25;
  cursor: not-allowed;
}
.button.disabled.primary, .button.disabled.primary:hover, .button.disabled.primary:focus, .button[disabled].primary, .button[disabled].primary:hover, .button[disabled].primary:focus {
  background-color: #1380cd;
  color: #ffffff;
}
.button.disabled.secondary, .button[disabled].secondary {
  opacity: 0.25;
  cursor: not-allowed;
}
.button.disabled.secondary, .button.disabled.secondary:hover, .button.disabled.secondary:focus, .button[disabled].secondary, .button[disabled].secondary:hover, .button[disabled].secondary:focus {
  background-color: #1380cd;
  color: #ffffff;
}
.button.disabled.success, .button[disabled].success {
  opacity: 0.25;
  cursor: not-allowed;
}
.button.disabled.success, .button.disabled.success:hover, .button.disabled.success:focus, .button[disabled].success, .button[disabled].success:hover, .button[disabled].success:focus {
  background-color: #1380cd;
  color: #ffffff;
}
.button.disabled.warning, .button[disabled].warning {
  opacity: 0.25;
  cursor: not-allowed;
}
.button.disabled.warning, .button.disabled.warning:hover, .button.disabled.warning:focus, .button[disabled].warning, .button[disabled].warning:hover, .button[disabled].warning:focus {
  background-color: #f43601;
  color: #ffffff;
}
.button.disabled.alert, .button[disabled].alert {
  opacity: 0.25;
  cursor: not-allowed;
}
.button.disabled.alert, .button.disabled.alert:hover, .button.disabled.alert:focus, .button[disabled].alert, .button[disabled].alert:hover, .button[disabled].alert:focus {
  background-color: #1380cd;
  color: #ffffff;
}
.button.hollow {
  border: 1px solid #1380cd;
  color: #1380cd;
}
.button.hollow, .button.hollow:hover, .button.hollow:focus {
  background-color: transparent;
}
.button.hollow.disabled, .button.hollow.disabled:hover, .button.hollow.disabled:focus, .button.hollow[disabled], .button.hollow[disabled]:hover, .button.hollow[disabled]:focus {
  background-color: transparent;
}
.button.hollow:hover, .button.hollow:focus {
  border-color: rgb(9.5, 64, 102.5);
  color: rgb(9.5, 64, 102.5);
}
.button.hollow:hover.disabled, .button.hollow:hover[disabled], .button.hollow:focus.disabled, .button.hollow:focus[disabled] {
  border: 1px solid #1380cd;
  color: #1380cd;
}
.button.hollow.primary {
  border: 1px solid #1380cd;
  color: #1380cd;
}
.button.hollow.primary:hover, .button.hollow.primary:focus {
  border-color: rgb(9.5, 64, 102.5);
  color: rgb(9.5, 64, 102.5);
}
.button.hollow.primary:hover.disabled, .button.hollow.primary:hover[disabled], .button.hollow.primary:focus.disabled, .button.hollow.primary:focus[disabled] {
  border: 1px solid #1380cd;
  color: #1380cd;
}
.button.hollow.secondary {
  border: 1px solid #1380cd;
  color: #1380cd;
}
.button.hollow.secondary:hover, .button.hollow.secondary:focus {
  border-color: rgb(9.5, 64, 102.5);
  color: rgb(9.5, 64, 102.5);
}
.button.hollow.secondary:hover.disabled, .button.hollow.secondary:hover[disabled], .button.hollow.secondary:focus.disabled, .button.hollow.secondary:focus[disabled] {
  border: 1px solid #1380cd;
  color: #1380cd;
}
.button.hollow.success {
  border: 1px solid #1380cd;
  color: #1380cd;
}
.button.hollow.success:hover, .button.hollow.success:focus {
  border-color: rgb(9.5, 64, 102.5);
  color: rgb(9.5, 64, 102.5);
}
.button.hollow.success:hover.disabled, .button.hollow.success:hover[disabled], .button.hollow.success:focus.disabled, .button.hollow.success:focus[disabled] {
  border: 1px solid #1380cd;
  color: #1380cd;
}
.button.hollow.warning {
  border: 1px solid #f43601;
  color: #f43601;
}
.button.hollow.warning:hover, .button.hollow.warning:focus {
  border-color: rgb(122, 27, 0.5);
  color: rgb(122, 27, 0.5);
}
.button.hollow.warning:hover.disabled, .button.hollow.warning:hover[disabled], .button.hollow.warning:focus.disabled, .button.hollow.warning:focus[disabled] {
  border: 1px solid #f43601;
  color: #f43601;
}
.button.hollow.alert {
  border: 1px solid #1380cd;
  color: #1380cd;
}
.button.hollow.alert:hover, .button.hollow.alert:focus {
  border-color: rgb(9.5, 64, 102.5);
  color: rgb(9.5, 64, 102.5);
}
.button.hollow.alert:hover.disabled, .button.hollow.alert:hover[disabled], .button.hollow.alert:focus.disabled, .button.hollow.alert:focus[disabled] {
  border: 1px solid #1380cd;
  color: #1380cd;
}
.button.clear {
  border: 1px solid #1380cd;
  color: #1380cd;
}
.button.clear, .button.clear:hover, .button.clear:focus {
  background-color: transparent;
}
.button.clear.disabled, .button.clear.disabled:hover, .button.clear.disabled:focus, .button.clear[disabled], .button.clear[disabled]:hover, .button.clear[disabled]:focus {
  background-color: transparent;
}
.button.clear:hover, .button.clear:focus {
  border-color: rgb(9.5, 64, 102.5);
  color: rgb(9.5, 64, 102.5);
}
.button.clear:hover.disabled, .button.clear:hover[disabled], .button.clear:focus.disabled, .button.clear:focus[disabled] {
  border: 1px solid #1380cd;
  color: #1380cd;
}
.button.clear, .button.clear.disabled, .button.clear[disabled], .button.clear:hover, .button.clear:hover.disabled, .button.clear:hover[disabled], .button.clear:focus, .button.clear:focus.disabled, .button.clear:focus[disabled] {
  border-color: transparent;
}
.button.clear.primary {
  border: 1px solid #1380cd;
  color: #1380cd;
}
.button.clear.primary:hover, .button.clear.primary:focus {
  border-color: rgb(9.5, 64, 102.5);
  color: rgb(9.5, 64, 102.5);
}
.button.clear.primary:hover.disabled, .button.clear.primary:hover[disabled], .button.clear.primary:focus.disabled, .button.clear.primary:focus[disabled] {
  border: 1px solid #1380cd;
  color: #1380cd;
}
.button.clear.primary, .button.clear.primary.disabled, .button.clear.primary[disabled], .button.clear.primary:hover, .button.clear.primary:hover.disabled, .button.clear.primary:hover[disabled], .button.clear.primary:focus, .button.clear.primary:focus.disabled, .button.clear.primary:focus[disabled] {
  border-color: transparent;
}
.button.clear.secondary {
  border: 1px solid #1380cd;
  color: #1380cd;
}
.button.clear.secondary:hover, .button.clear.secondary:focus {
  border-color: rgb(9.5, 64, 102.5);
  color: rgb(9.5, 64, 102.5);
}
.button.clear.secondary:hover.disabled, .button.clear.secondary:hover[disabled], .button.clear.secondary:focus.disabled, .button.clear.secondary:focus[disabled] {
  border: 1px solid #1380cd;
  color: #1380cd;
}
.button.clear.secondary, .button.clear.secondary.disabled, .button.clear.secondary[disabled], .button.clear.secondary:hover, .button.clear.secondary:hover.disabled, .button.clear.secondary:hover[disabled], .button.clear.secondary:focus, .button.clear.secondary:focus.disabled, .button.clear.secondary:focus[disabled] {
  border-color: transparent;
}
.button.clear.success {
  border: 1px solid #1380cd;
  color: #1380cd;
}
.button.clear.success:hover, .button.clear.success:focus {
  border-color: rgb(9.5, 64, 102.5);
  color: rgb(9.5, 64, 102.5);
}
.button.clear.success:hover.disabled, .button.clear.success:hover[disabled], .button.clear.success:focus.disabled, .button.clear.success:focus[disabled] {
  border: 1px solid #1380cd;
  color: #1380cd;
}
.button.clear.success, .button.clear.success.disabled, .button.clear.success[disabled], .button.clear.success:hover, .button.clear.success:hover.disabled, .button.clear.success:hover[disabled], .button.clear.success:focus, .button.clear.success:focus.disabled, .button.clear.success:focus[disabled] {
  border-color: transparent;
}
.button.clear.warning {
  border: 1px solid #f43601;
  color: #f43601;
}
.button.clear.warning:hover, .button.clear.warning:focus {
  border-color: rgb(122, 27, 0.5);
  color: rgb(122, 27, 0.5);
}
.button.clear.warning:hover.disabled, .button.clear.warning:hover[disabled], .button.clear.warning:focus.disabled, .button.clear.warning:focus[disabled] {
  border: 1px solid #f43601;
  color: #f43601;
}
.button.clear.warning, .button.clear.warning.disabled, .button.clear.warning[disabled], .button.clear.warning:hover, .button.clear.warning:hover.disabled, .button.clear.warning:hover[disabled], .button.clear.warning:focus, .button.clear.warning:focus.disabled, .button.clear.warning:focus[disabled] {
  border-color: transparent;
}
.button.clear.alert {
  border: 1px solid #1380cd;
  color: #1380cd;
}
.button.clear.alert:hover, .button.clear.alert:focus {
  border-color: rgb(9.5, 64, 102.5);
  color: rgb(9.5, 64, 102.5);
}
.button.clear.alert:hover.disabled, .button.clear.alert:hover[disabled], .button.clear.alert:focus.disabled, .button.clear.alert:focus[disabled] {
  border: 1px solid #1380cd;
  color: #1380cd;
}
.button.clear.alert, .button.clear.alert.disabled, .button.clear.alert[disabled], .button.clear.alert:hover, .button.clear.alert:hover.disabled, .button.clear.alert:hover[disabled], .button.clear.alert:focus, .button.clear.alert:focus.disabled, .button.clear.alert:focus[disabled] {
  border-color: transparent;
}
.button.dropdown::after {
  display: block;
  width: 0;
  height: 0;
  border: inset 0.4em;
  content: "";
  border-bottom-width: 0;
  border-top-style: solid;
  border-color: #ffffff transparent transparent;
  position: relative;
  top: 0.4em;
  display: inline-block;
  float: right;
  margin-left: 1em;
}
.button.dropdown.hollow::after {
  border-top-color: #1380cd;
}
.button.dropdown.hollow.primary::after {
  border-top-color: #1380cd;
}
.button.dropdown.hollow.secondary::after {
  border-top-color: #1380cd;
}
.button.dropdown.hollow.success::after {
  border-top-color: #1380cd;
}
.button.dropdown.hollow.warning::after {
  border-top-color: #f43601;
}
.button.dropdown.hollow.alert::after {
  border-top-color: #1380cd;
}
.button.arrow-only::after {
  top: -0.1em;
  float: none;
  margin-left: 0;
}

a.button:hover, a.button:focus {
  text-decoration: none;
}

[type=text], [type=password], [type=date], [type=datetime], [type=datetime-local], [type=month], [type=week], [type=email], [type=number], [type=search], [type=tel], [type=time], [type=url], [type=color],
textarea {
  display: block;
  box-sizing: border-box;
  width: 100%;
  height: 2.55rem;
  margin: 0 0 0.8rem;
  padding: 0.4rem;
  border: 1px solid #99a8b3;
  border-radius: 0;
  background-color: #ffffff;
  box-shadow: inset 0 1px 2px rgba(0, 38, 66, 0.1);
  font-family: inherit;
  font-size: 0.8rem;
  font-weight: 400;
  line-height: 2.25;
  color: #002642;
  transition: box-shadow 0.5s, border-color 0.25s ease-in-out;
  appearance: none;
}
[type=text]:focus, [type=password]:focus, [type=date]:focus, [type=datetime]:focus, [type=datetime-local]:focus, [type=month]:focus, [type=week]:focus, [type=email]:focus, [type=number]:focus, [type=search]:focus, [type=tel]:focus, [type=time]:focus, [type=url]:focus, [type=color]:focus,
textarea:focus {
  outline: none;
  border: 1px solid #99a8b3;
  background-color: #ffffff;
  box-shadow: 0 0 5px #99a8b3;
  transition: box-shadow 0.5s, border-color 0.25s ease-in-out;
}

textarea {
  max-width: 100%;
}
textarea[rows] {
  height: auto;
}

input::placeholder,
textarea::placeholder {
  color: #99a8b3;
}
input:disabled, input[readonly],
textarea:disabled,
textarea[readonly] {
  background-color: #99a8b3;
  cursor: not-allowed;
}

[type=submit],
[type=button] {
  appearance: none;
  border-radius: 0;
}

input[type=search] {
  box-sizing: border-box;
}

[type=file],
[type=checkbox],
[type=radio] {
  margin: 0 0 0.8rem;
}

[type=checkbox] + label,
[type=radio] + label {
  display: inline-block;
  vertical-align: baseline;
  margin-left: 0.4rem;
  margin-right: 0.8rem;
  margin-bottom: 0;
}
[type=checkbox] + label[for],
[type=radio] + label[for] {
  cursor: pointer;
}

label > [type=checkbox],
label > [type=radio] {
  margin-right: 0.4rem;
}

[type=file] {
  width: 100%;
}

label {
  display: block;
  margin: 0;
  font-size: 0.7rem;
  font-weight: 400;
  line-height: 1.8;
  color: #002642;
}
label.middle {
  margin: 0 0 0.8rem;
  padding: 0.45rem 0;
}

.help-text {
  margin-top: -0.4rem;
  font-size: 0.65rem;
  font-style: italic;
  color: #002642;
}

.input-group {
  display: flex;
  width: 100%;
  margin-bottom: 0.8rem;
  align-items: stretch;
}
.input-group > :first-child {
  border-radius: 0 0 0 0;
}
.input-group > :last-child > * {
  border-radius: 0 0 0 0;
}

.input-group-button a,
.input-group-button input,
.input-group-button button,
.input-group-button label, .input-group-button, .input-group-field, .input-group-label {
  margin: 0;
  white-space: nowrap;
}

.input-group-label {
  padding: 0 1rem;
  border: 1px solid #99a8b3;
  background: #99a8b3;
  color: #002642;
  text-align: center;
  white-space: nowrap;
  display: flex;
  flex: 0 0 auto;
  align-items: center;
}
.input-group-label:first-child {
  border-right: 0;
}
.input-group-label:last-child {
  border-left: 0;
}

.input-group-field {
  border-radius: 0;
  flex: 1 1 0px;
  height: auto;
  min-width: 0;
}

.input-group-button {
  padding-top: 0;
  padding-bottom: 0;
  text-align: center;
  display: flex;
  flex: 0 0 auto;
}
.input-group-button a,
.input-group-button input,
.input-group-button button,
.input-group-button label {
  height: auto;
  align-self: stretch;
  padding-top: 0;
  padding-bottom: 0;
  font-size: 0.8rem;
}

fieldset {
  margin: 0;
  padding: 0;
  border: 0;
}

legend {
  max-width: 100%;
  margin-bottom: 0.4rem;
}

.fieldset {
  margin: 0.9rem 0;
  padding: 1rem;
  border: 1px solid #99a8b3;
}
.fieldset legend {
  margin: 0;
  margin-left: -0.15rem;
  padding: 0 0.15rem;
}

select {
  height: 2.55rem;
  margin: 0 0 0.8rem;
  padding: 0.4rem;
  appearance: none;
  border: 1px solid #99a8b3;
  border-radius: 0;
  background-color: #ffffff;
  font-family: inherit;
  font-size: 0.8rem;
  font-weight: 400;
  line-height: 2.25;
  color: #002642;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' version='1.1' width='32' height='24' viewBox='0 0 32 24'><polygon points='0,0 32,0 16,24' style='fill: rgb%28153, 168, 179%29'></polygon></svg>");
  background-origin: content-box;
  background-position: right -0.8rem center;
  background-repeat: no-repeat;
  background-size: 9px 6px;
  padding-right: 1.2rem;
  transition: box-shadow 0.5s, border-color 0.25s ease-in-out;
}
@media screen and (min-width: 0\0 ) {
  select {
    background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACAAAAAYCAYAAACbU/80AAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAMBJREFUeNrEllsOhCAMRVszC9IlzU7KCmVHTJsoMWYMUtpyv9BgbuXQB5ZSdgBYYY4ycgBivk8KYFsQMfMiTTBP4o3nUzCKzOabLJbLy2/g31evGkAginR4/ZegKH5qX3bJCscA3t0x3kgO5tQFyhhFf50xRqFLbyMUNJQzgyjGS/wgCpvKqkRBpuWrE4V9d+1E4dPUXqIg107SQOE/2DRQxMwTDygIInVDET9T3lCoj/6j/VCmGjZOl2lKpZ8AAwDQP7zIimDGFQAAAABJRU5ErkJggg==");
  }
}
select:focus {
  outline: none;
  border: 1px solid #99a8b3;
  background-color: #ffffff;
  box-shadow: 0 0 5px #99a8b3;
  transition: box-shadow 0.5s, border-color 0.25s ease-in-out;
}
select:disabled {
  background-color: #99a8b3;
  cursor: not-allowed;
}
select::-ms-expand {
  display: none;
}
select[multiple] {
  height: auto;
  background-image: none;
}

.is-invalid-input:not(:focus) {
  border-color: #1380cd;
  background-color: rgb(231.4, 242.3, 250);
}
.is-invalid-input:not(:focus)::placeholder {
  color: #1380cd;
}

.is-invalid-label {
  color: #1380cd;
}

.form-error {
  display: none;
  margin-top: -0.4rem;
  margin-bottom: 0.8rem;
  font-size: 0.6rem;
  font-weight: 600;
  color: #1380cd;
}
.form-error.is-visible {
  display: block;
}

.accordion {
  margin-left: 0;
  background: #ffffff;
  list-style-type: none;
}
.accordion[disabled] .accordion-title {
  cursor: not-allowed;
}

.accordion-item:first-child > :first-child {
  border-radius: 0 0 0 0;
}
.accordion-item:last-child > :last-child {
  border-radius: 0 0 0 0;
}

.accordion-title {
  position: relative;
  display: block;
  padding: 1.25rem 1rem;
  border: 1px solid #99a8b3;
  border-bottom: 0;
  font-size: 0.6rem;
  line-height: 1;
  color: #1380cd;
}
:last-child:not(.is-active) > .accordion-title {
  border-bottom: 1px solid #99a8b3;
  border-radius: 0 0 0 0;
}
.accordion-title:hover, .accordion-title:focus {
  background-color: #99a8b3;
}
.accordion-title::before {
  position: absolute;
  top: 50%;
  right: 1rem;
  margin-top: -0.5rem;
  content: "+";
}
.is-active > .accordion-title::before {
  content: "–";
}

.accordion-content {
  display: none;
  padding: 1rem;
  border: 1px solid #99a8b3;
  border-bottom: 0;
  background-color: #ffffff;
  color: #335168;
}
:last-child > .accordion-content:last-child {
  border-bottom: 1px solid #99a8b3;
}

.accordion-menu li {
  width: 100%;
}
.accordion-menu a {
  padding: 0.7rem 1rem;
}
.accordion-menu .is-accordion-submenu a {
  padding: 0.7rem 1rem;
}
.accordion-menu .nested.is-accordion-submenu {
  margin-right: 0;
  margin-left: 1rem;
}
.accordion-menu.align-right .nested.is-accordion-submenu {
  margin-right: 1rem;
  margin-left: 0;
}
.accordion-menu .is-accordion-submenu-parent:not(.has-submenu-toggle) > a {
  position: relative;
}
.accordion-menu .is-accordion-submenu-parent:not(.has-submenu-toggle) > a::after {
  display: block;
  width: 0;
  height: 0;
  border: inset 6px;
  content: "";
  border-bottom-width: 0;
  border-top-style: solid;
  border-color: #1380cd transparent transparent;
  position: absolute;
  top: 50%;
  margin-top: -3px;
  right: 1rem;
}
.accordion-menu.align-left .is-accordion-submenu-parent > a::after {
  left: auto;
  right: 1rem;
}
.accordion-menu.align-right .is-accordion-submenu-parent > a::after {
  right: auto;
  left: 1rem;
}
.accordion-menu .is-accordion-submenu-parent[aria-expanded=true] > a::after {
  transform: rotate(180deg);
  transform-origin: 50% 50%;
}

.is-accordion-submenu-parent {
  position: relative;
}

.has-submenu-toggle > a {
  margin-right: 40px;
}

.submenu-toggle {
  position: absolute;
  top: 0;
  right: 0;
  cursor: pointer;
  width: 40px;
  height: 40px;
}
.submenu-toggle::after {
  display: block;
  width: 0;
  height: 0;
  border: inset 6px;
  content: "";
  border-bottom-width: 0;
  border-top-style: solid;
  border-color: #1380cd transparent transparent;
  top: 0;
  bottom: 0;
  margin: auto;
}

.submenu-toggle[aria-expanded=true]::after {
  transform: scaleY(-1);
  transform-origin: 50% 50%;
}

.submenu-toggle-text {
  position: absolute !important;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  clip-path: inset(50%);
  border: 0;
}

.badge {
  display: inline-block;
  min-width: 2.1em;
  padding: 0.3em;
  border-radius: 50%;
  font-size: 0.6rem;
  text-align: center;
  background: #1380cd;
  color: #ffffff;
}
.badge.primary {
  background: #1380cd;
  color: #ffffff;
}
.badge.secondary {
  background: #1380cd;
  color: #ffffff;
}
.badge.success {
  background: #1380cd;
  color: #ffffff;
}
.badge.warning {
  background: #f43601;
  color: #ffffff;
}
.badge.alert {
  background: #1380cd;
  color: #ffffff;
}

.breadcrumbs {
  margin: 0 0 1rem 0;
  list-style: none;
}
.breadcrumbs::before, .breadcrumbs::after {
  display: table;
  content: " ";
  flex-basis: 0;
  order: 1;
}
.breadcrumbs::after {
  clear: both;
}
.breadcrumbs li {
  float: left;
  font-size: 0.55rem;
  color: #002642;
  cursor: default;
  text-transform: uppercase;
}
.breadcrumbs li:not(:last-child)::after {
  position: relative;
  margin: 0 0.75rem;
  opacity: 1;
  content: "/";
  color: #99a8b3;
}
.breadcrumbs a {
  color: #1380cd;
}
.breadcrumbs a:hover {
  text-decoration: underline;
}
.breadcrumbs .disabled {
  color: #99a8b3;
  cursor: not-allowed;
}

.button-group {
  margin-bottom: 1rem;
  display: flex;
  flex-wrap: nowrap;
  align-items: stretch;
}
.button-group::before, .button-group::after {
  display: table;
  content: " ";
  flex-basis: 0;
  order: 1;
}
.button-group::after {
  clear: both;
}
.button-group .button {
  margin: 0;
  margin-right: 1px;
  margin-bottom: 1px;
  font-size: 0.9rem;
  flex: 0 0 auto;
}
.button-group .button:last-child {
  margin-right: 0;
}
.button-group.tiny .button {
  font-size: 0.6rem;
}
.button-group.small .button {
  font-size: 0.75rem;
}
.button-group.large .button {
  font-size: 1.25rem;
}
.button-group.expanded .button {
  flex: 1 1 0px;
}
.button-group.primary .button {
  background-color: #1380cd;
  color: #ffffff;
}
.button-group.primary .button:hover, .button-group.primary .button:focus {
  background-color: rgb(15.2, 102.4, 164);
  color: #ffffff;
}
.button-group.secondary .button {
  background-color: #1380cd;
  color: #ffffff;
}
.button-group.secondary .button:hover, .button-group.secondary .button:focus {
  background-color: rgb(15.2, 102.4, 164);
  color: #ffffff;
}
.button-group.success .button {
  background-color: #1380cd;
  color: #ffffff;
}
.button-group.success .button:hover, .button-group.success .button:focus {
  background-color: rgb(15.2, 102.4, 164);
  color: #ffffff;
}
.button-group.warning .button {
  background-color: #f43601;
  color: #ffffff;
}
.button-group.warning .button:hover, .button-group.warning .button:focus {
  background-color: rgb(195.2, 43.2, 0.8);
  color: #ffffff;
}
.button-group.alert .button {
  background-color: #1380cd;
  color: #ffffff;
}
.button-group.alert .button:hover, .button-group.alert .button:focus {
  background-color: rgb(15.2, 102.4, 164);
  color: #ffffff;
}
.button-group.stacked, .button-group.stacked-for-small, .button-group.stacked-for-medium {
  flex-wrap: wrap;
}
.button-group.stacked .button, .button-group.stacked-for-small .button, .button-group.stacked-for-medium .button {
  flex: 0 0 100%;
}
.button-group.stacked .button:last-child, .button-group.stacked-for-small .button:last-child, .button-group.stacked-for-medium .button:last-child {
  margin-bottom: 0;
}
@media print, screen and (min-width: 40em) {
  .button-group.stacked-for-small .button {
    flex: 1 1 0px;
    margin-bottom: 0;
  }
}
@media print, screen and (min-width: 64em) {
  .button-group.stacked-for-medium .button {
    flex: 1 1 0px;
    margin-bottom: 0;
  }
}
@media screen and (max-width: 39.9375em) {
  .button-group.stacked-for-small.expanded {
    display: block;
  }
  .button-group.stacked-for-small.expanded .button {
    display: block;
    margin-right: 0;
  }
}

.callout {
  position: relative;
  margin: 0 0 1rem 0;
  padding: 1rem;
  border: 1px solid rgba(0, 38, 66, 0.25);
  border-radius: 0;
  background-color: white;
  color: #335168;
}
.callout > :first-child {
  margin-top: 0;
}
.callout > :last-child {
  margin-bottom: 0;
}
.callout.primary {
  background-color: rgb(215.7388392857, 236.6142857143, 251.3611607143);
  color: #335168;
}
.callout.secondary {
  background-color: rgb(215.7388392857, 236.6142857143, 251.3611607143);
  color: #335168;
}
.callout.success {
  background-color: rgb(215.7388392857, 236.6142857143, 251.3611607143);
  color: #335168;
}
.callout.warning {
  background-color: rgb(254.837755102, 224.0112244898, 215.412244898);
  color: #335168;
}
.callout.alert {
  background-color: rgb(215.7388392857, 236.6142857143, 251.3611607143);
  color: #335168;
}
.callout.small {
  padding-top: 0.5rem;
  padding-right: 0.5rem;
  padding-bottom: 0.5rem;
  padding-left: 0.5rem;
}
.callout.large {
  padding-top: 3rem;
  padding-right: 3rem;
  padding-bottom: 3rem;
  padding-left: 3rem;
}

.card {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  margin-bottom: 1rem;
  border: 1px solid #99a8b3;
  border-radius: 0;
  background: #ffffff;
  box-shadow: none;
  overflow: hidden;
  color: #335168;
}
.card > :last-child {
  margin-bottom: 0;
}

.card-divider {
  flex: 0 1 auto;
  display: flex;
  padding: 1rem;
  background: #99a8b3;
}
.card-divider > :last-child {
  margin-bottom: 0;
}

.card-section {
  flex: 1 0 auto;
  padding: 1rem;
}
.card-section > :last-child {
  margin-bottom: 0;
}

.card-image {
  min-height: 1px;
}

.close-button {
  position: absolute;
  color: #99a8b3;
  cursor: pointer;
}
[data-whatinput=mouse] .close-button {
  outline: 0;
}
.close-button:hover, .close-button:focus {
  color: #002642;
}
.close-button.small {
  right: 0.66rem;
  top: 0.33em;
  font-size: 1.5em;
  line-height: 1;
}
.close-button, .close-button.medium {
  right: 1rem;
  top: 0.5rem;
  font-size: 2em;
  line-height: 1;
}

.menu {
  padding: 0;
  margin: 0;
  list-style: none;
  position: relative;
  display: flex;
  flex-wrap: wrap;
}
[data-whatinput=mouse] .menu li {
  outline: 0;
}
.menu a,
.menu .button {
  line-height: 1;
  text-decoration: none;
  display: block;
  padding: 0.7rem 1rem;
}
.menu input,
.menu select,
.menu a,
.menu button {
  margin-bottom: 0;
}
.menu input {
  display: inline-block;
}
.menu, .menu.horizontal {
  flex-wrap: wrap;
  flex-direction: row;
}
.menu.vertical {
  flex-wrap: nowrap;
  flex-direction: column;
}
.menu.expanded li {
  flex: 1 1 0px;
}
.menu.simple {
  align-items: center;
}
.menu.simple li + li {
  margin-left: 1rem;
}
.menu.simple a {
  padding: 0;
}
@media print, screen and (min-width: 40em) {
  .menu.medium-horizontal {
    flex-wrap: wrap;
    flex-direction: row;
  }
  .menu.medium-vertical {
    flex-wrap: nowrap;
    flex-direction: column;
  }
  .menu.medium-expanded li {
    flex: 1 1 0px;
  }
  .menu.medium-simple li {
    flex: 1 1 0px;
  }
}
@media print, screen and (min-width: 64em) {
  .menu.large-horizontal {
    flex-wrap: wrap;
    flex-direction: row;
  }
  .menu.large-vertical {
    flex-wrap: nowrap;
    flex-direction: column;
  }
  .menu.large-expanded li {
    flex: 1 1 0px;
  }
  .menu.large-simple li {
    flex: 1 1 0px;
  }
}
.menu.nested {
  margin-right: 0;
  margin-left: 1rem;
}
.menu.icons a {
  display: flex;
}
.menu.icon-top a, .menu.icon-right a, .menu.icon-bottom a, .menu.icon-left a {
  display: flex;
}
.menu.icon-left li a {
  flex-flow: row nowrap;
}
.menu.icon-left li a img,
.menu.icon-left li a i,
.menu.icon-left li a svg {
  margin-right: 0.25rem;
}
.menu.icon-right li a {
  flex-flow: row nowrap;
}
.menu.icon-right li a img,
.menu.icon-right li a i,
.menu.icon-right li a svg {
  margin-left: 0.25rem;
}
.menu.icon-top li a {
  flex-flow: column nowrap;
}
.menu.icon-top li a img,
.menu.icon-top li a i,
.menu.icon-top li a svg {
  align-self: stretch;
  margin-bottom: 0.25rem;
  text-align: center;
}
.menu.icon-bottom li a {
  flex-flow: column nowrap;
}
.menu.icon-bottom li a img,
.menu.icon-bottom li a i,
.menu.icon-bottom li a svg {
  align-self: stretch;
  margin-bottom: 0.25rem;
  text-align: center;
}
.menu .is-active > a {
  background: #1380cd;
  color: #ffffff;
}
.menu .active > a {
  background: #1380cd;
  color: #ffffff;
}
.menu.align-left {
  justify-content: flex-start;
}
.menu.align-right li {
  display: flex;
  justify-content: flex-end;
}
.menu.align-right li .submenu li {
  justify-content: flex-start;
}
.menu.align-right.vertical li {
  display: block;
  text-align: right;
}
.menu.align-right.vertical li .submenu li {
  text-align: right;
}
.menu.align-right .nested {
  margin-right: 1rem;
  margin-left: 0;
}
.menu.align-center li {
  display: flex;
  justify-content: center;
}
.menu.align-center li .submenu li {
  justify-content: flex-start;
}
.menu .menu-text {
  padding: 0.7rem 1rem;
  font-weight: bold;
  line-height: 1;
  color: inherit;
}

.menu-centered > .menu {
  justify-content: center;
}
.menu-centered > .menu li {
  display: flex;
  justify-content: center;
}
.menu-centered > .menu li .submenu li {
  justify-content: flex-start;
}

.no-js [data-responsive-menu] ul {
  display: none;
}

.menu-icon {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  width: 20px;
  height: 16px;
  cursor: pointer;
}
.menu-icon::after {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 2px;
  background: #ffffff;
  box-shadow: 0 7px 0 #ffffff, 0 14px 0 #ffffff;
  content: "";
}
.menu-icon:hover::after {
  background: #99a8b3;
  box-shadow: 0 7px 0 #99a8b3, 0 14px 0 #99a8b3;
}

.menu-icon.dark {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  width: 20px;
  height: 16px;
  cursor: pointer;
}
.menu-icon.dark::after {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 2px;
  background: #002642;
  box-shadow: 0 7px 0 #002642, 0 14px 0 #002642;
  content: "";
}
.menu-icon.dark:hover::after {
  background: #8a8a8a;
  box-shadow: 0 7px 0 #8a8a8a, 0 14px 0 #8a8a8a;
}

.is-drilldown {
  position: relative;
  overflow: hidden;
}
.is-drilldown li {
  display: block;
}
.is-drilldown.animate-height {
  transition: height 0.5s;
}

.drilldown a {
  padding: 0.7rem 1rem;
  background: #ffffff;
}
.drilldown .is-drilldown-submenu {
  position: absolute;
  top: 0;
  left: 100%;
  z-index: -1;
  width: 100%;
  background: #ffffff;
  transition: transform 0.15s linear;
}
.drilldown .is-drilldown-submenu.is-active {
  z-index: 1;
  display: block;
  transform: translateX(-100%);
}
.drilldown .is-drilldown-submenu.is-closing {
  transform: translateX(100%);
}
.drilldown .is-drilldown-submenu a {
  padding: 0.7rem 1rem;
}
.drilldown .nested.is-drilldown-submenu {
  margin-right: 0;
  margin-left: 0;
}
.drilldown .drilldown-submenu-cover-previous {
  min-height: 100%;
}
.drilldown .is-drilldown-submenu-parent > a {
  position: relative;
}
.drilldown .is-drilldown-submenu-parent > a::after {
  position: absolute;
  top: 50%;
  margin-top: -6px;
  right: 1rem;
  display: block;
  width: 0;
  height: 0;
  border: inset 6px;
  content: "";
  border-right-width: 0;
  border-left-style: solid;
  border-color: transparent transparent transparent #1380cd;
}
.drilldown.align-left .is-drilldown-submenu-parent > a::after {
  left: auto;
  right: 1rem;
  display: block;
  width: 0;
  height: 0;
  border: inset 6px;
  content: "";
  border-right-width: 0;
  border-left-style: solid;
  border-color: transparent transparent transparent #1380cd;
}
.drilldown.align-right .is-drilldown-submenu-parent > a::after {
  right: auto;
  left: 1rem;
  display: block;
  width: 0;
  height: 0;
  border: inset 6px;
  content: "";
  border-left-width: 0;
  border-right-style: solid;
  border-color: transparent #1380cd transparent transparent;
}
.drilldown .js-drilldown-back > a::before {
  display: block;
  width: 0;
  height: 0;
  border: inset 6px;
  content: "";
  border-left-width: 0;
  border-right-style: solid;
  border-color: transparent #1380cd transparent transparent;
  border-left-width: 0;
  display: inline-block;
  vertical-align: middle;
  margin-right: 0.75rem;
  border-left-width: 0;
}

.dropdown-pane {
  position: absolute;
  z-index: 10;
  width: 300px;
  padding: 1rem;
  visibility: hidden;
  display: none;
  border: 1px solid #99a8b3;
  border-radius: 0;
  background-color: #ffffff;
  font-size: 1rem;
}
.dropdown-pane.is-opening {
  display: block;
}
.dropdown-pane.is-open {
  visibility: visible;
  display: block;
}

.dropdown-pane.tiny {
  width: 100px;
}

.dropdown-pane.small {
  width: 200px;
}

.dropdown-pane.large {
  width: 400px;
}

.dropdown.menu > li.opens-left > .is-dropdown-submenu {
  top: 100%;
  right: 0;
  left: auto;
}
.dropdown.menu > li.opens-right > .is-dropdown-submenu {
  top: 100%;
  right: auto;
  left: 0;
}
.dropdown.menu > li.is-dropdown-submenu-parent > a {
  position: relative;
  padding-right: 1.5rem;
}
.dropdown.menu > li.is-dropdown-submenu-parent > a::after {
  display: block;
  width: 0;
  height: 0;
  border: inset 6px;
  content: "";
  border-bottom-width: 0;
  border-top-style: solid;
  border-color: #1380cd transparent transparent;
  right: 5px;
  left: auto;
  margin-top: -3px;
}
.dropdown.menu a {
  padding: 0.7rem 1rem;
}
[data-whatinput=mouse] .dropdown.menu a {
  outline: 0;
}
.dropdown.menu .is-active > a {
  background: transparent;
  color: #1380cd;
}
.no-js .dropdown.menu ul {
  display: none;
}
.dropdown.menu .nested.is-dropdown-submenu {
  margin-right: 0;
  margin-left: 0;
}
.dropdown.menu.vertical > li .is-dropdown-submenu {
  top: 0;
}
.dropdown.menu.vertical > li.opens-left > .is-dropdown-submenu {
  right: 100%;
  left: auto;
  top: 0;
}
.dropdown.menu.vertical > li.opens-right > .is-dropdown-submenu {
  right: auto;
  left: 100%;
}
.dropdown.menu.vertical > li > a::after {
  right: 14px;
}
.dropdown.menu.vertical > li.opens-left > a::after {
  right: auto;
  left: 5px;
  display: block;
  width: 0;
  height: 0;
  border: inset 6px;
  content: "";
  border-left-width: 0;
  border-right-style: solid;
  border-color: transparent #1380cd transparent transparent;
}
.dropdown.menu.vertical > li.opens-right > a::after {
  display: block;
  width: 0;
  height: 0;
  border: inset 6px;
  content: "";
  border-right-width: 0;
  border-left-style: solid;
  border-color: transparent transparent transparent #1380cd;
}
@media print, screen and (min-width: 40em) {
  .dropdown.menu.medium-horizontal > li.opens-left > .is-dropdown-submenu {
    top: 100%;
    right: 0;
    left: auto;
  }
  .dropdown.menu.medium-horizontal > li.opens-right > .is-dropdown-submenu {
    top: 100%;
    right: auto;
    left: 0;
  }
  .dropdown.menu.medium-horizontal > li.is-dropdown-submenu-parent > a {
    position: relative;
    padding-right: 1.5rem;
  }
  .dropdown.menu.medium-horizontal > li.is-dropdown-submenu-parent > a::after {
    display: block;
    width: 0;
    height: 0;
    border: inset 6px;
    content: "";
    border-bottom-width: 0;
    border-top-style: solid;
    border-color: #1380cd transparent transparent;
    right: 5px;
    left: auto;
    margin-top: -3px;
  }
  .dropdown.menu.medium-vertical > li .is-dropdown-submenu {
    top: 0;
  }
  .dropdown.menu.medium-vertical > li.opens-left > .is-dropdown-submenu {
    right: 100%;
    left: auto;
    top: 0;
  }
  .dropdown.menu.medium-vertical > li.opens-right > .is-dropdown-submenu {
    right: auto;
    left: 100%;
  }
  .dropdown.menu.medium-vertical > li > a::after {
    right: 14px;
  }
  .dropdown.menu.medium-vertical > li.opens-left > a::after {
    right: auto;
    left: 5px;
    display: block;
    width: 0;
    height: 0;
    border: inset 6px;
    content: "";
    border-left-width: 0;
    border-right-style: solid;
    border-color: transparent #1380cd transparent transparent;
  }
  .dropdown.menu.medium-vertical > li.opens-right > a::after {
    display: block;
    width: 0;
    height: 0;
    border: inset 6px;
    content: "";
    border-right-width: 0;
    border-left-style: solid;
    border-color: transparent transparent transparent #1380cd;
  }
}
@media print, screen and (min-width: 64em) {
  .dropdown.menu.large-horizontal > li.opens-left > .is-dropdown-submenu {
    top: 100%;
    right: 0;
    left: auto;
  }
  .dropdown.menu.large-horizontal > li.opens-right > .is-dropdown-submenu {
    top: 100%;
    right: auto;
    left: 0;
  }
  .dropdown.menu.large-horizontal > li.is-dropdown-submenu-parent > a {
    position: relative;
    padding-right: 1.5rem;
  }
  .dropdown.menu.large-horizontal > li.is-dropdown-submenu-parent > a::after {
    display: block;
    width: 0;
    height: 0;
    border: inset 6px;
    content: "";
    border-bottom-width: 0;
    border-top-style: solid;
    border-color: #1380cd transparent transparent;
    right: 5px;
    left: auto;
    margin-top: -3px;
  }
  .dropdown.menu.large-vertical > li .is-dropdown-submenu {
    top: 0;
  }
  .dropdown.menu.large-vertical > li.opens-left > .is-dropdown-submenu {
    right: 100%;
    left: auto;
    top: 0;
  }
  .dropdown.menu.large-vertical > li.opens-right > .is-dropdown-submenu {
    right: auto;
    left: 100%;
  }
  .dropdown.menu.large-vertical > li > a::after {
    right: 14px;
  }
  .dropdown.menu.large-vertical > li.opens-left > a::after {
    right: auto;
    left: 5px;
    display: block;
    width: 0;
    height: 0;
    border: inset 6px;
    content: "";
    border-left-width: 0;
    border-right-style: solid;
    border-color: transparent #1380cd transparent transparent;
  }
  .dropdown.menu.large-vertical > li.opens-right > a::after {
    display: block;
    width: 0;
    height: 0;
    border: inset 6px;
    content: "";
    border-right-width: 0;
    border-left-style: solid;
    border-color: transparent transparent transparent #1380cd;
  }
}
.dropdown.menu.align-right .is-dropdown-submenu.first-sub {
  top: 100%;
  right: 0;
  left: auto;
}

.is-dropdown-menu.vertical {
  width: 100px;
}
.is-dropdown-menu.vertical.align-right {
  float: right;
}

.is-dropdown-submenu-parent {
  position: relative;
}
.is-dropdown-submenu-parent a::after {
  position: absolute;
  top: 50%;
  right: 5px;
  left: auto;
  margin-top: -6px;
}
.is-dropdown-submenu-parent.opens-inner > .is-dropdown-submenu {
  top: 100%;
  left: auto;
}
.is-dropdown-submenu-parent.opens-left > .is-dropdown-submenu {
  right: 100%;
  left: auto;
}
.is-dropdown-submenu-parent.opens-right > .is-dropdown-submenu {
  right: auto;
  left: 100%;
}

.is-dropdown-submenu {
  position: absolute;
  top: 0;
  left: 100%;
  z-index: 1;
  display: none;
  min-width: 200px;
  border: 1px solid #99a8b3;
  background: #ffffff;
}
.dropdown .is-dropdown-submenu a {
  padding: 0.7rem 1rem;
}
.is-dropdown-submenu .is-dropdown-submenu-parent > a::after {
  right: 14px;
}
.is-dropdown-submenu .is-dropdown-submenu-parent.opens-left > a::after {
  right: auto;
  left: 5px;
  display: block;
  width: 0;
  height: 0;
  border: inset 6px;
  content: "";
  border-left-width: 0;
  border-right-style: solid;
  border-color: transparent #1380cd transparent transparent;
}
.is-dropdown-submenu .is-dropdown-submenu-parent.opens-right > a::after {
  display: block;
  width: 0;
  height: 0;
  border: inset 6px;
  content: "";
  border-right-width: 0;
  border-left-style: solid;
  border-color: transparent transparent transparent #1380cd;
}
.is-dropdown-submenu .is-dropdown-submenu {
  margin-top: -1px;
}
.is-dropdown-submenu > li {
  width: 100%;
}
.is-dropdown-submenu.js-dropdown-active {
  display: block;
}

.responsive-embed,
.flex-video {
  position: relative;
  height: 0;
  margin-bottom: 0.8rem;
  padding-bottom: 75%;
  overflow: hidden;
}
.responsive-embed iframe,
.responsive-embed object,
.responsive-embed embed,
.responsive-embed video,
.flex-video iframe,
.flex-video object,
.flex-video embed,
.flex-video video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.responsive-embed.widescreen,
.flex-video.widescreen {
  padding-bottom: 56.25%;
}

.label {
  display: inline-block;
  padding: 0.33333rem 0.5rem;
  border-radius: 0;
  font-size: 0.8rem;
  line-height: 1;
  white-space: nowrap;
  cursor: default;
  background: #1380cd;
  color: #ffffff;
}
.label.primary {
  background: #1380cd;
  color: #ffffff;
}
.label.secondary {
  background: #1380cd;
  color: #ffffff;
}
.label.success {
  background: #1380cd;
  color: #ffffff;
}
.label.warning {
  background: #f43601;
  color: #ffffff;
}
.label.alert {
  background: #1380cd;
  color: #ffffff;
}

.media-object {
  display: flex;
  margin-bottom: 1rem;
  flex-wrap: nowrap;
}
.media-object img {
  max-width: none;
}
@media screen and (max-width: 39.9375em) {
  .media-object.stack-for-small {
    flex-wrap: wrap;
  }
}
@media screen and (max-width: 39.9375em) {
  .media-object.stack-for-small .media-object-section {
    padding: 0;
    padding-bottom: 1rem;
    flex-basis: 100%;
    max-width: 100%;
  }
  .media-object.stack-for-small .media-object-section img {
    width: 100%;
  }
}

.media-object-section {
  flex: 0 1 auto;
}
.media-object-section:first-child {
  padding-right: 1rem;
}
.media-object-section:last-child:not(:nth-child(2)) {
  padding-left: 1rem;
}
.media-object-section > :last-child {
  margin-bottom: 0;
}
.media-object-section.main-section {
  flex: 1 1 0px;
}

.is-off-canvas-open {
  overflow: hidden;
}

.js-off-canvas-overlay {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 11;
  width: 100%;
  height: 100%;
  transition: opacity 0.5s ease, visibility 0.5s ease;
  background: rgba(255, 255, 255, 0.25);
  opacity: 0;
  visibility: hidden;
  overflow: hidden;
}
.js-off-canvas-overlay.is-visible {
  opacity: 1;
  visibility: visible;
}
.js-off-canvas-overlay.is-closable {
  cursor: pointer;
}
.js-off-canvas-overlay.is-overlay-absolute {
  position: absolute;
}
.js-off-canvas-overlay.is-overlay-fixed {
  position: fixed;
}

.off-canvas-wrapper {
  position: relative;
  overflow: hidden;
}

.off-canvas {
  position: fixed;
  z-index: 12;
  transition: transform 0.5s ease;
  backface-visibility: hidden;
  background: #99a8b3;
}
[data-whatinput=mouse] .off-canvas {
  outline: 0;
}
.off-canvas.is-transition-push {
  z-index: 12;
}
.off-canvas.is-closed {
  visibility: hidden;
}
.off-canvas.is-transition-overlap {
  z-index: 13;
}
.off-canvas.is-transition-overlap.is-open {
  box-shadow: 0 0 10px rgba(0, 38, 66, 0.7);
}
.off-canvas.is-open {
  transform: translate(0, 0);
}
.off-canvas-absolute {
  position: absolute;
  z-index: 12;
  transition: transform 0.5s ease;
  backface-visibility: hidden;
  background: #99a8b3;
}
[data-whatinput=mouse] .off-canvas-absolute {
  outline: 0;
}
.off-canvas-absolute.is-transition-push {
  z-index: 12;
}
.off-canvas-absolute.is-closed {
  visibility: hidden;
}
.off-canvas-absolute.is-transition-overlap {
  z-index: 13;
}
.off-canvas-absolute.is-transition-overlap.is-open {
  box-shadow: 0 0 10px rgba(0, 38, 66, 0.7);
}
.off-canvas-absolute.is-open {
  transform: translate(0, 0);
}

.position-left {
  top: 0;
  left: 0;
  height: 100%;
  overflow-y: auto;
  width: 250px;
  transform: translateX(-250px);
}
.off-canvas-content .off-canvas.position-left {
  transform: translateX(-250px);
}
.off-canvas-content .off-canvas.position-left.is-transition-overlap.is-open {
  transform: translate(0, 0);
}

.off-canvas-content.is-open-left.has-transition-push {
  transform: translateX(250px);
}

.position-left.is-transition-push {
  box-shadow: inset -13px 0 20px -13px rgba(0, 38, 66, 0.25);
}

.position-right {
  top: 0;
  right: 0;
  height: 100%;
  overflow-y: auto;
  width: 250px;
  transform: translateX(250px);
}
.off-canvas-content .off-canvas.position-right {
  transform: translateX(250px);
}
.off-canvas-content .off-canvas.position-right.is-transition-overlap.is-open {
  transform: translate(0, 0);
}

.off-canvas-content.is-open-right.has-transition-push {
  transform: translateX(-250px);
}

.position-right.is-transition-push {
  box-shadow: inset 13px 0 20px -13px rgba(0, 38, 66, 0.25);
}

.position-top {
  top: 0;
  left: 0;
  width: 100%;
  overflow-x: auto;
  height: 250px;
  transform: translateY(-250px);
}
.off-canvas-content .off-canvas.position-top {
  transform: translateY(-250px);
}
.off-canvas-content .off-canvas.position-top.is-transition-overlap.is-open {
  transform: translate(0, 0);
}

.off-canvas-content.is-open-top.has-transition-push {
  transform: translateY(250px);
}

.position-top.is-transition-push {
  box-shadow: inset 0 -13px 20px -13px rgba(0, 38, 66, 0.25);
}

.position-bottom {
  bottom: 0;
  left: 0;
  width: 100%;
  overflow-x: auto;
  height: 250px;
  transform: translateY(250px);
}
.off-canvas-content .off-canvas.position-bottom {
  transform: translateY(250px);
}
.off-canvas-content .off-canvas.position-bottom.is-transition-overlap.is-open {
  transform: translate(0, 0);
}

.off-canvas-content.is-open-bottom.has-transition-push {
  transform: translateY(-250px);
}

.position-bottom.is-transition-push {
  box-shadow: inset 0 13px 20px -13px rgba(0, 38, 66, 0.25);
}

.off-canvas-content {
  transform: none;
  transition: transform 0.5s ease;
  backface-visibility: hidden;
}
.off-canvas-content.has-transition-push {
  transform: translate(0, 0);
}
.off-canvas-content .off-canvas.is-open {
  transform: translate(0, 0);
}

@media print, screen and (min-width: 40em) {
  .position-left.reveal-for-medium {
    transform: none;
    z-index: 12;
    transition: none;
    visibility: visible;
  }
  .position-left.reveal-for-medium .close-button {
    display: none;
  }
  .off-canvas-content .position-left.reveal-for-medium {
    transform: none;
  }
  .off-canvas-content.has-reveal-left {
    margin-left: 250px;
  }
  .position-left.reveal-for-medium ~ .off-canvas-content {
    margin-left: 250px;
  }
  .position-right.reveal-for-medium {
    transform: none;
    z-index: 12;
    transition: none;
    visibility: visible;
  }
  .position-right.reveal-for-medium .close-button {
    display: none;
  }
  .off-canvas-content .position-right.reveal-for-medium {
    transform: none;
  }
  .off-canvas-content.has-reveal-right {
    margin-right: 250px;
  }
  .position-right.reveal-for-medium ~ .off-canvas-content {
    margin-right: 250px;
  }
  .position-top.reveal-for-medium {
    transform: none;
    z-index: 12;
    transition: none;
    visibility: visible;
  }
  .position-top.reveal-for-medium .close-button {
    display: none;
  }
  .off-canvas-content .position-top.reveal-for-medium {
    transform: none;
  }
  .off-canvas-content.has-reveal-top {
    margin-top: 250px;
  }
  .position-top.reveal-for-medium ~ .off-canvas-content {
    margin-top: 250px;
  }
  .position-bottom.reveal-for-medium {
    transform: none;
    z-index: 12;
    transition: none;
    visibility: visible;
  }
  .position-bottom.reveal-for-medium .close-button {
    display: none;
  }
  .off-canvas-content .position-bottom.reveal-for-medium {
    transform: none;
  }
  .off-canvas-content.has-reveal-bottom {
    margin-bottom: 250px;
  }
  .position-bottom.reveal-for-medium ~ .off-canvas-content {
    margin-bottom: 250px;
  }
}
@media print, screen and (min-width: 64em) {
  .position-left.reveal-for-large {
    transform: none;
    z-index: 12;
    transition: none;
    visibility: visible;
  }
  .position-left.reveal-for-large .close-button {
    display: none;
  }
  .off-canvas-content .position-left.reveal-for-large {
    transform: none;
  }
  .off-canvas-content.has-reveal-left {
    margin-left: 250px;
  }
  .position-left.reveal-for-large ~ .off-canvas-content {
    margin-left: 250px;
  }
  .position-right.reveal-for-large {
    transform: none;
    z-index: 12;
    transition: none;
    visibility: visible;
  }
  .position-right.reveal-for-large .close-button {
    display: none;
  }
  .off-canvas-content .position-right.reveal-for-large {
    transform: none;
  }
  .off-canvas-content.has-reveal-right {
    margin-right: 250px;
  }
  .position-right.reveal-for-large ~ .off-canvas-content {
    margin-right: 250px;
  }
  .position-top.reveal-for-large {
    transform: none;
    z-index: 12;
    transition: none;
    visibility: visible;
  }
  .position-top.reveal-for-large .close-button {
    display: none;
  }
  .off-canvas-content .position-top.reveal-for-large {
    transform: none;
  }
  .off-canvas-content.has-reveal-top {
    margin-top: 250px;
  }
  .position-top.reveal-for-large ~ .off-canvas-content {
    margin-top: 250px;
  }
  .position-bottom.reveal-for-large {
    transform: none;
    z-index: 12;
    transition: none;
    visibility: visible;
  }
  .position-bottom.reveal-for-large .close-button {
    display: none;
  }
  .off-canvas-content .position-bottom.reveal-for-large {
    transform: none;
  }
  .off-canvas-content.has-reveal-bottom {
    margin-bottom: 250px;
  }
  .position-bottom.reveal-for-large ~ .off-canvas-content {
    margin-bottom: 250px;
  }
}
@media print, screen and (min-width: 40em) {
  .off-canvas.in-canvas-for-medium {
    visibility: visible;
    height: auto;
    position: static;
    background: inherit;
    width: inherit;
    overflow: inherit;
    transition: inherit;
  }
  .off-canvas.in-canvas-for-medium.position-left, .off-canvas.in-canvas-for-medium.position-right, .off-canvas.in-canvas-for-medium.position-top, .off-canvas.in-canvas-for-medium.position-bottom {
    box-shadow: none;
    transform: none;
  }
  .off-canvas.in-canvas-for-medium .close-button {
    display: none;
  }
}
@media print, screen and (min-width: 64em) {
  .off-canvas.in-canvas-for-large {
    visibility: visible;
    height: auto;
    position: static;
    background: inherit;
    width: inherit;
    overflow: inherit;
    transition: inherit;
  }
  .off-canvas.in-canvas-for-large.position-left, .off-canvas.in-canvas-for-large.position-right, .off-canvas.in-canvas-for-large.position-top, .off-canvas.in-canvas-for-large.position-bottom {
    box-shadow: none;
    transform: none;
  }
  .off-canvas.in-canvas-for-large .close-button {
    display: none;
  }
}
.orbit {
  position: relative;
}

.orbit-container {
  position: relative;
  height: 0;
  margin: 0;
  list-style: none;
  overflow: hidden;
}

.orbit-slide {
  width: 100%;
}
.orbit-slide.no-motionui.is-active {
  top: 0;
  left: 0;
}

.orbit-figure {
  margin: 0;
}

.orbit-image {
  width: 100%;
  max-width: 100%;
  margin: 0;
}

.orbit-caption {
  position: absolute;
  bottom: 0;
  width: 100%;
  margin-bottom: 0;
  padding: 1rem;
  background-color: rgba(0, 38, 66, 0.5);
  color: #ffffff;
}

.orbit-next, .orbit-previous {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  padding: 1rem;
  color: #ffffff;
}
[data-whatinput=mouse] .orbit-next, [data-whatinput=mouse] .orbit-previous {
  outline: 0;
}
.orbit-next:hover, .orbit-previous:hover, .orbit-next:active, .orbit-previous:active, .orbit-next:focus, .orbit-previous:focus {
  background-color: rgba(0, 38, 66, 0.5);
}

.orbit-previous {
  left: 0;
}

.orbit-next {
  left: auto;
  right: 0;
}

.orbit-bullets {
  position: relative;
  margin-top: 0.8rem;
  margin-bottom: 0.8rem;
  text-align: center;
}
[data-whatinput=mouse] .orbit-bullets {
  outline: 0;
}
.orbit-bullets button {
  width: 1.2rem;
  height: 1.2rem;
  margin: 0.1rem;
  border-radius: 50%;
  background-color: #99a8b3;
}
.orbit-bullets button:hover {
  background-color: #99a8b3;
}
.orbit-bullets button.is-active {
  background-color: #99a8b3;
}

.pagination {
  margin-left: 0;
  margin-bottom: 1rem;
}
.pagination::before, .pagination::after {
  display: table;
  content: " ";
  flex-basis: 0;
  order: 1;
}
.pagination::after {
  clear: both;
}
.pagination li {
  margin-right: 0.05rem;
  border-radius: 0;
  font-size: 0.7rem;
  display: none;
}
.pagination li:last-child, .pagination li:first-child {
  display: inline-block;
}
@media print, screen and (min-width: 40em) {
  .pagination li {
    display: inline-block;
  }
}
.pagination a,
.pagination button {
  display: block;
  padding: 0.15rem 0.5rem;
  border-radius: 0;
  color: #002642;
}
.pagination a:hover,
.pagination button:hover {
  background: #99a8b3;
}
.pagination .current {
  padding: 0.15rem 0.5rem;
  background: #1380cd;
  color: #ffffff;
  cursor: default;
}
.pagination .disabled {
  padding: 0.15rem 0.5rem;
  color: #99a8b3;
  cursor: not-allowed;
}
.pagination .disabled:hover {
  background: transparent;
}
.pagination .ellipsis::after {
  padding: 0.15rem 0.5rem;
  content: "…";
  color: #002642;
}

.pagination-previous a::before,
.pagination-previous.disabled::before {
  display: inline-block;
  margin-right: 0.5rem;
  content: "«";
}

.pagination-next a::after,
.pagination-next.disabled::after {
  display: inline-block;
  margin-left: 0.5rem;
  content: "»";
}

.progress {
  height: 1rem;
  margin-bottom: 1rem;
  border-radius: 0;
  background-color: #99a8b3;
}
.progress.primary .progress-meter {
  background-color: #1380cd;
}
.progress.secondary .progress-meter {
  background-color: #1380cd;
}
.progress.success .progress-meter {
  background-color: #1380cd;
}
.progress.warning .progress-meter {
  background-color: #f43601;
}
.progress.alert .progress-meter {
  background-color: #1380cd;
}

.progress-meter {
  position: relative;
  display: block;
  width: 0%;
  height: 100%;
  background-color: #1380cd;
}

.progress-meter-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  position: absolute;
  margin: 0;
  font-size: 0.75rem;
  font-weight: bold;
  color: #ffffff;
  white-space: nowrap;
}

.slider {
  position: relative;
  height: 0.5rem;
  margin-top: 1.25rem;
  margin-bottom: 2.25rem;
  background-color: #99a8b3;
  cursor: pointer;
  user-select: none;
  touch-action: none;
}

.slider-fill {
  position: absolute;
  top: 0;
  left: 0;
  display: inline-block;
  max-width: 100%;
  height: 0.5rem;
  background-color: #99a8b3;
  transition: all 0.2s ease-in-out;
}
.slider-fill.is-dragging {
  transition: all 0s linear;
}

.slider-handle {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  z-index: 1;
  display: inline-block;
  width: 1.4rem;
  height: 1.4rem;
  border-radius: 0;
  background-color: #1380cd;
  transition: all 0.2s ease-in-out;
  touch-action: manipulation;
}
[data-whatinput=mouse] .slider-handle {
  outline: 0;
}
.slider-handle:hover {
  background-color: rgb(16.15, 108.8, 174.25);
}
.slider-handle.is-dragging {
  transition: all 0s linear;
}

.slider.disabled,
.slider[disabled] {
  opacity: 0.25;
  cursor: not-allowed;
}

.slider.vertical {
  display: inline-block;
  width: 0.5rem;
  height: 12.5rem;
  margin: 0 1.25rem;
  transform: scale(1, -1);
}
.slider.vertical .slider-fill {
  top: 0;
  width: 0.5rem;
  max-height: 100%;
}
.slider.vertical .slider-handle {
  position: absolute;
  top: 0;
  left: 50%;
  width: 1.4rem;
  height: 1.4rem;
  transform: translateX(-50%);
}

.sticky-container {
  position: relative;
}

.sticky {
  position: relative;
  z-index: 0;
  transform: translate3d(0, 0, 0);
}

.sticky.is-stuck {
  position: fixed;
  z-index: 5;
  width: 100%;
}
.sticky.is-stuck.is-at-top {
  top: 0;
}
.sticky.is-stuck.is-at-bottom {
  bottom: 0;
}

.sticky.is-anchored {
  position: relative;
  right: auto;
  left: auto;
}
.sticky.is-anchored.is-at-bottom {
  bottom: 0;
}

body.is-reveal-open {
  overflow: hidden;
}

html.is-reveal-open,
html.is-reveal-open body {
  min-height: 100%;
  overflow: hidden;
  position: fixed;
  user-select: none;
}

.reveal-overlay {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1005;
  display: none;
  background-color: rgba(0, 38, 66, 0.45);
  overflow-y: scroll;
}

.reveal {
  z-index: 1006;
  backface-visibility: hidden;
  display: none;
  padding: 1rem;
  border: 1px solid #99a8b3;
  border-radius: 0;
  background-color: #ffffff;
  position: relative;
  top: 100px;
  margin-right: auto;
  margin-left: auto;
  overflow-y: auto;
}
[data-whatinput=mouse] .reveal {
  outline: 0;
}
@media print, screen and (min-width: 40em) {
  .reveal {
    min-height: 0;
  }
}
.reveal .column {
  min-width: 0;
}
.reveal > :last-child {
  margin-bottom: 0;
}
@media print, screen and (min-width: 40em) {
  .reveal {
    width: 600px;
    max-width: 1480px;
  }
}
.reveal.collapse {
  padding: 0;
}
@media print, screen and (min-width: 40em) {
  .reveal.tiny {
    width: 30%;
    max-width: 1480px;
  }
}
@media print, screen and (min-width: 40em) {
  .reveal.small {
    width: 50%;
    max-width: 1480px;
  }
}
@media print, screen and (min-width: 40em) {
  .reveal.large {
    width: 90%;
    max-width: 1480px;
  }
}
.reveal.full {
  top: 0;
  left: 0;
  width: 100%;
  max-width: none;
  height: 100%;
  height: 100vh;
  min-height: 100vh;
  margin-left: 0;
  border: 0;
  border-radius: 0;
}
@media screen and (max-width: 39.9375em) {
  .reveal {
    top: 0;
    left: 0;
    width: 100%;
    max-width: none;
    height: 100%;
    height: 100vh;
    min-height: 100vh;
    margin-left: 0;
    border: 0;
    border-radius: 0;
  }
}
.reveal.without-overlay {
  position: fixed;
}

.switch {
  height: 2rem;
  position: relative;
  margin-bottom: 1rem;
  outline: 0;
  font-size: 0.7rem;
  font-weight: bold;
  color: #ffffff;
  user-select: none;
}

.switch-input {
  position: absolute;
  margin-bottom: 0;
  opacity: 0;
}

.switch-paddle {
  position: relative;
  display: block;
  width: 4rem;
  height: 2rem;
  border-radius: 0;
  background: #99a8b3;
  transition: all 0.25s ease-out;
  font-weight: inherit;
  color: inherit;
  cursor: pointer;
}
input + .switch-paddle {
  margin: 0;
}
.switch-paddle::after {
  position: absolute;
  top: 0.25rem;
  left: 0.25rem;
  display: block;
  width: 1.5rem;
  height: 1.5rem;
  transform: translate3d(0, 0, 0);
  border-radius: 0;
  background: #ffffff;
  transition: all 0.25s ease-out;
  content: "";
}
input:checked ~ .switch-paddle {
  background: #1380cd;
}
input:checked ~ .switch-paddle::after {
  left: 2.25rem;
}
[data-whatinput=mouse] input:focus ~ .switch-paddle {
  outline: 0;
}

.switch-inactive, .switch-active {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}

.switch-active {
  left: 8%;
  display: none;
}
input:checked + label > .switch-active {
  display: block;
}

.switch-inactive {
  right: 15%;
}
input:checked + label > .switch-inactive {
  display: none;
}

.switch.tiny {
  height: 1.5rem;
}
.switch.tiny .switch-paddle {
  width: 3rem;
  height: 1.5rem;
  font-size: 0.5rem;
}
.switch.tiny .switch-paddle::after {
  top: 0.25rem;
  left: 0.25rem;
  width: 1rem;
  height: 1rem;
}
.switch.tiny input:checked ~ .switch-paddle::after {
  left: 1.75rem;
}

.switch.small {
  height: 1.75rem;
}
.switch.small .switch-paddle {
  width: 3.5rem;
  height: 1.75rem;
  font-size: 0.6rem;
}
.switch.small .switch-paddle::after {
  top: 0.25rem;
  left: 0.25rem;
  width: 1.25rem;
  height: 1.25rem;
}
.switch.small input:checked ~ .switch-paddle::after {
  left: 2rem;
}

.switch.large {
  height: 2.5rem;
}
.switch.large .switch-paddle {
  width: 5rem;
  height: 2.5rem;
  font-size: 0.8rem;
}
.switch.large .switch-paddle::after {
  top: 0.25rem;
  left: 0.25rem;
  width: 2rem;
  height: 2rem;
}
.switch.large input:checked ~ .switch-paddle::after {
  left: 2.75rem;
}

table {
  border-collapse: collapse;
  width: 100%;
  margin-bottom: 1rem;
  border-radius: 0;
}
thead,
tbody,
tfoot {
  border: 1px solid rgb(242.25, 242.25, 242.25);
  background-color: #ffffff;
}

caption {
  padding: 0.4rem 0.5rem 0.5rem;
  font-weight: 600;
}

thead {
  background: rgb(248.625, 248.625, 248.625);
  color: #335168;
}

tfoot {
  background: rgb(242.25, 242.25, 242.25);
  color: #335168;
}

thead tr,
tfoot tr {
  background: transparent;
}
thead th,
thead td,
tfoot th,
tfoot td {
  padding: 0.4rem 0.5rem 0.5rem;
  font-weight: 600;
  text-align: left;
}

tbody th,
tbody td {
  padding: 0.4rem 0.5rem 0.5rem;
}

tbody tr:nth-child(even) {
  border-bottom: 0;
  background-color: rgb(242.25, 242.25, 242.25);
}

table.unstriped tbody {
  background-color: #ffffff;
}
table.unstriped tbody tr {
  border-bottom: 0;
  border-bottom: 1px solid rgb(242.25, 242.25, 242.25);
  background-color: #ffffff;
}

@media screen and (max-width: 47.9375em) {
  table.stack thead {
    display: none;
  }
  table.stack tfoot {
    display: none;
  }
  table.stack tr,
  table.stack th,
  table.stack td {
    display: block;
  }
  table.stack td {
    border-top: 0;
  }
}

table.scroll {
  display: block;
  width: 100%;
  overflow-x: auto;
}

table.hover thead tr:hover {
  background-color: rgb(243.525, 243.525, 243.525);
}
table.hover tfoot tr:hover {
  background-color: rgb(237.15, 237.15, 237.15);
}
table.hover tbody tr:hover {
  background-color: rgb(249.9, 249.9, 249.9);
}
table.hover:not(.unstriped) tr:nth-of-type(even):hover {
  background-color: rgb(237.15, 237.15, 237.15);
}

.table-scroll {
  overflow-x: auto;
}
.table-scroll table {
  width: auto;
}

.tabs {
  margin: 0;
  border: 1px solid #99a8b3;
  background: #ffffff;
  list-style-type: none;
}
.tabs::before, .tabs::after {
  display: table;
  content: " ";
  flex-basis: 0;
  order: 1;
}
.tabs::after {
  clear: both;
}

.tabs.vertical > li {
  display: block;
  float: none;
  width: auto;
}

.tabs.simple > li > a {
  padding: 0;
}
.tabs.simple > li > a:hover {
  background: transparent;
}

.tabs.primary {
  background: #1380cd;
}
.tabs.primary > li > a {
  color: #ffffff;
}
.tabs.primary > li > a:hover, .tabs.primary > li > a:focus {
  background: rgb(18.05, 121.6, 194.75);
}

.tabs-title {
  float: left;
}
.tabs-title > a {
  display: block;
  padding: 1.25rem 1.5rem;
  font-size: 0.6rem;
  line-height: 1;
  color: #1380cd;
}
.tabs-title > a:hover {
  background: #ffffff;
  color: rgb(16.34, 110.08, 176.3);
}
.tabs-title > a:focus, .tabs-title > a[aria-selected=true] {
  background: #99a8b3;
  color: #1380cd;
}

.tabs-content {
  border: 1px solid #99a8b3;
  border-top: 0;
  background: #ffffff;
  color: #335168;
  transition: all 0.5s ease;
}

.tabs-content.vertical {
  border: 1px solid #99a8b3;
  border-left: 0;
}

.tabs-panel {
  display: none;
  padding: 1rem;
}
.tabs-panel.is-active {
  display: block;
}

.thumbnail {
  display: inline-block;
  max-width: 100%;
  margin-bottom: 1rem;
  border: solid 4px #ffffff;
  border-radius: 0;
  box-shadow: 0 0 0 1px rgba(0, 38, 66, 0.2);
  line-height: 0;
}

a.thumbnail {
  transition: box-shadow 200ms ease-out;
}
a.thumbnail:hover, a.thumbnail:focus {
  box-shadow: 0 0 6px 1px rgba(19, 128, 205, 0.5);
}
a.thumbnail image {
  box-shadow: none;
}

.title-bar {
  padding: 0.5rem;
  background: #002642;
  color: #ffffff;
  display: flex;
  justify-content: flex-start;
  align-items: center;
}
.title-bar .menu-icon {
  margin-left: 0.25rem;
  margin-right: 0.25rem;
}

.title-bar-left,
.title-bar-right {
  flex: 1 1 0px;
}

.title-bar-right {
  text-align: right;
}

.title-bar-title {
  display: inline-block;
  vertical-align: middle;
  font-weight: bold;
}

.has-tip {
  position: relative;
  display: inline-block;
  border-bottom: dotted 1px #99a8b3;
  font-weight: 600;
  cursor: help;
}

.tooltip {
  position: absolute;
  top: calc(100% + 0.6495rem);
  z-index: 1200;
  max-width: 10rem;
  padding: 0.75rem;
  border-radius: 0;
  background-color: #002642;
  font-size: 80%;
  color: #ffffff;
}
.tooltip::before {
  position: absolute;
}
.tooltip.bottom::before {
  display: block;
  width: 0;
  height: 0;
  border: inset 0.75rem;
  content: "";
  border-top-width: 0;
  border-bottom-style: solid;
  border-color: transparent transparent #002642;
  bottom: 100%;
}
.tooltip.bottom.align-center::before {
  left: 50%;
  transform: translateX(-50%);
}
.tooltip.top::before {
  display: block;
  width: 0;
  height: 0;
  border: inset 0.75rem;
  content: "";
  border-bottom-width: 0;
  border-top-style: solid;
  border-color: #002642 transparent transparent;
  top: 100%;
  bottom: auto;
}
.tooltip.top.align-center::before {
  left: 50%;
  transform: translateX(-50%);
}
.tooltip.left::before {
  display: block;
  width: 0;
  height: 0;
  border: inset 0.75rem;
  content: "";
  border-right-width: 0;
  border-left-style: solid;
  border-color: transparent transparent transparent #002642;
  left: 100%;
}
.tooltip.left.align-center::before {
  bottom: auto;
  top: 50%;
  transform: translateY(-50%);
}
.tooltip.right::before {
  display: block;
  width: 0;
  height: 0;
  border: inset 0.75rem;
  content: "";
  border-left-width: 0;
  border-right-style: solid;
  border-color: transparent #002642 transparent transparent;
  right: 100%;
  left: auto;
}
.tooltip.right.align-center::before {
  bottom: auto;
  top: 50%;
  transform: translateY(-50%);
}
.tooltip.align-top::before {
  bottom: auto;
  top: 10%;
}
.tooltip.align-bottom::before {
  bottom: 10%;
  top: auto;
}
.tooltip.align-left::before {
  left: 10%;
  right: auto;
}
.tooltip.align-right::before {
  left: auto;
  right: 10%;
}

.top-bar {
  display: flex;
  flex-wrap: nowrap;
  justify-content: space-between;
  align-items: center;
  padding: 0.5rem;
  flex-wrap: wrap;
}
.top-bar,
.top-bar ul {
  background-color: #99a8b3;
}
.top-bar input {
  max-width: 200px;
  margin-right: 1rem;
}
.top-bar .input-group-field {
  width: 100%;
  margin-right: 0;
}
.top-bar input.button {
  width: auto;
}
.top-bar .top-bar-left,
.top-bar .top-bar-right {
  flex: 0 0 100%;
  max-width: 100%;
}
@media print, screen and (min-width: 40em) {
  .top-bar {
    flex-wrap: nowrap;
  }
  .top-bar .top-bar-left {
    flex: 1 1 auto;
    margin-right: auto;
  }
  .top-bar .top-bar-right {
    flex: 0 1 auto;
    margin-left: auto;
  }
}
@media screen and (max-width: 47.9375em) {
  .top-bar.stacked-for-medium {
    flex-wrap: wrap;
  }
  .top-bar.stacked-for-medium .top-bar-left,
  .top-bar.stacked-for-medium .top-bar-right {
    flex: 0 0 100%;
    max-width: 100%;
  }
}
@media screen and (max-width: 74.9375em) {
  .top-bar.stacked-for-large {
    flex-wrap: wrap;
  }
  .top-bar.stacked-for-large .top-bar-left,
  .top-bar.stacked-for-large .top-bar-right {
    flex: 0 0 100%;
    max-width: 100%;
  }
}

.top-bar-title {
  flex: 0 0 auto;
  margin: 0.5rem 1rem 0.5rem 0;
}

.top-bar-left,
.top-bar-right {
  flex: 0 0 auto;
}

.hide {
  display: none !important;
}

.invisible {
  visibility: hidden;
}

@media screen and (max-width: 39.9375em) {
  .hide-for-small-only {
    display: none !important;
  }
}

@media screen and (max-width: 0em), screen and (min-width: 40em) {
  .show-for-small-only {
    display: none !important;
  }
}

@media print, screen and (min-width: 40em) {
  .hide-for-medium {
    display: none !important;
  }
}

@media screen and (max-width: 39.9375em) {
  .show-for-medium {
    display: none !important;
  }
}

@media screen and (min-width: 40em) and (max-width: 47.9375em) {
  .hide-for-medium-only {
    display: none !important;
  }
}

@media screen and (max-width: 39.9375em), screen and (min-width: 48em) {
  .show-for-medium-only {
    display: none !important;
  }
}

@media print, screen and (min-width: 64em) {
  .hide-for-large {
    display: none !important;
  }
}

@media screen and (max-width: 63.9375em) {
  .show-for-large {
    display: none !important;
  }
}

@media screen and (min-width: 64em) and (max-width: 74.9375em) {
  .hide-for-large-only {
    display: none !important;
  }
}

@media screen and (max-width: 63.9375em), screen and (min-width: 75em) {
  .show-for-large-only {
    display: none !important;
  }
}

.show-for-sr,
.show-on-focus {
  position: absolute !important;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  clip-path: inset(50%);
  border: 0;
}

.show-on-focus:active, .show-on-focus:focus {
  position: static !important;
  width: auto;
  height: auto;
  overflow: visible;
  clip: auto;
  white-space: normal;
  clip-path: none;
}

.show-for-landscape,
.hide-for-portrait {
  display: block !important;
}
@media screen and (orientation: landscape) {
  .show-for-landscape,
  .hide-for-portrait {
    display: block !important;
  }
}
@media screen and (orientation: portrait) {
  .show-for-landscape,
  .hide-for-portrait {
    display: none !important;
  }
}

.hide-for-landscape,
.show-for-portrait {
  display: none !important;
}
@media screen and (orientation: landscape) {
  .hide-for-landscape,
  .show-for-portrait {
    display: none !important;
  }
}
@media screen and (orientation: portrait) {
  .hide-for-landscape,
  .show-for-portrait {
    display: block !important;
  }
}

.align-right {
  justify-content: flex-end;
}

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

.align-justify {
  justify-content: space-between;
}

.align-spaced {
  justify-content: space-around;
}

.align-right.vertical.menu > li > a {
  justify-content: flex-end;
}

.align-center.vertical.menu > li > a {
  justify-content: center;
}

.align-top {
  align-items: flex-start;
}

.align-self-top {
  align-self: flex-start;
}

.align-bottom {
  align-items: flex-end;
}

.align-self-bottom {
  align-self: flex-end;
}

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

.align-self-middle {
  align-self: center;
}

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

.align-self-stretch {
  align-self: stretch;
}

.align-center-middle {
  justify-content: center;
  align-items: center;
  align-content: center;
}

.small-order-1 {
  order: 1;
}

.small-order-2 {
  order: 2;
}

.small-order-3 {
  order: 3;
}

.small-order-4 {
  order: 4;
}

.small-order-5 {
  order: 5;
}

.small-order-6 {
  order: 6;
}

@media print, screen and (min-width: 40em) {
  .medium-order-1 {
    order: 1;
  }
  .medium-order-2 {
    order: 2;
  }
  .medium-order-3 {
    order: 3;
  }
  .medium-order-4 {
    order: 4;
  }
  .medium-order-5 {
    order: 5;
  }
  .medium-order-6 {
    order: 6;
  }
}
@media print, screen and (min-width: 64em) {
  .large-order-1 {
    order: 1;
  }
  .large-order-2 {
    order: 2;
  }
  .large-order-3 {
    order: 3;
  }
  .large-order-4 {
    order: 4;
  }
  .large-order-5 {
    order: 5;
  }
  .large-order-6 {
    order: 6;
  }
}
.flex-container {
  display: flex;
}

.flex-child-auto {
  flex: 1 1 auto;
}

.flex-child-grow {
  flex: 1 0 auto;
}

.flex-child-shrink {
  flex: 0 1 auto;
}

.flex-dir-row {
  flex-direction: row;
}

.flex-dir-row-reverse {
  flex-direction: row-reverse;
}

.flex-dir-column {
  flex-direction: column;
}

.flex-dir-column-reverse {
  flex-direction: column-reverse;
}

@media print, screen and (min-width: 40em) {
  .medium-flex-container {
    display: flex;
  }
  .medium-flex-child-auto {
    flex: 1 1 auto;
  }
  .medium-flex-child-grow {
    flex: 1 0 auto;
  }
  .medium-flex-child-shrink {
    flex: 0 1 auto;
  }
  .medium-flex-dir-row {
    flex-direction: row;
  }
  .medium-flex-dir-row-reverse {
    flex-direction: row-reverse;
  }
  .medium-flex-dir-column {
    flex-direction: column;
  }
  .medium-flex-dir-column-reverse {
    flex-direction: column-reverse;
  }
}
@media print, screen and (min-width: 64em) {
  .large-flex-container {
    display: flex;
  }
  .large-flex-child-auto {
    flex: 1 1 auto;
  }
  .large-flex-child-grow {
    flex: 1 0 auto;
  }
  .large-flex-child-shrink {
    flex: 0 1 auto;
  }
  .large-flex-dir-row {
    flex-direction: row;
  }
  .large-flex-dir-row-reverse {
    flex-direction: row-reverse;
  }
  .large-flex-dir-column {
    flex-direction: column;
  }
  .large-flex-dir-column-reverse {
    flex-direction: column-reverse;
  }
}
/************************************************
  Audio Blocks
************************************************/
.wp-block-audio {
  margin-left: 0px;
  margin-right: 0px;
}
.wp-block-audio audio {
  width: 100%;
}

/************************************************
  Code Blocks
************************************************/
code, pre, .wp-block-code {
  color: #666666;
  font-family: Courier, sans-serif;
  line-height: 1.4;
  margin: 32px 0px;
  padding: 12px;
  border: 2px solid rgba(0, 0, 0, 0.24);
  box-shadow: inset 0px 0px 6px rgba(0, 0, 0, 0.12);
  box-sizing: border-box;
  border-radius: 5px;
}

/************************************************
  Cover Images
************************************************/
.wp-block-cover,
.wp-block-cover-image {
  margin-top: 32px;
  margin-bottom: 32px;
}

.wp-block-cover-image.has-background-dim,
.wp-block-cover-image.has-background-dim h2 {
  color: #ffffff;
}

/************************************************
  Gallery Blocks
************************************************/
.wp-block-gallery .blocks-gallery-item {
  margin-left: 0px;
  margin-right: 0px;
  padding: 0px;
}

.wp-block-gallery .blocks-gallery-image {
  margin-left: 0px;
  margin-right: 0px;
}

.wp-block-gallery .blocks-gallery-image figcaption,
.wp-block-gallery .blocks-gallery-item figcaption {
  box-sizing: border-box;
}

/************************************************
  Images
************************************************/
.wp-block-image {
  position: relative;
  z-index: 1;
  max-width: none;
  margin: 0 auto;
  padding: 0px;
}

.wp-block-image img {
  border-radius: 5px;
}

img.aligncenter,
.wp-block-image.aligncenter,
figure.aligncenter {
  display: block;
  margin: 35px auto 35px;
  padding: 0px;
  text-align: center;
}

img.alignnone,
.wp-block-image.alignnone {
  display: inline;
  margin: 12px 0px;
  padding: 0px;
}

img.alignright,
.wp-block-image.alignright,
figure.alignright {
  display: inline;
  margin: 0px;
  padding: 0px;
  width: 100%;
}
@media print, screen and (min-width: 40em) {
  img.alignright,
  .wp-block-image.alignright,
  figure.alignright {
    margin: 0px 0px 0px 25px;
    width: auto;
  }
}

img.alignleft,
.wp-block-image.alignleft,
figure.alignleft {
  display: inline;
  margin: 0px;
  padding: 0px;
  width: 100%;
}
@media print, screen and (min-width: 40em) {
  img.alignleft,
  .wp-block-image.alignleft,
  figure.alignleft {
    margin: 0px 25px 0px 0px;
    width: auto;
  }
}

img.alignfull,
.wp-block-image.alignfull {
  display: block;
  margin: 50px calc(50% - 50vw) !important;
  max-width: 100vw !important;
  width: 100vw !important;
}
img.alignfull img,
.wp-block-image.alignfull img {
  border-radius: 0 !important;
}
img.alignfull figcaption,
.wp-block-image.alignfull figcaption {
  padding-top: 5px;
  padding-left: 20px;
}

.wp-block-image.alignfull img {
  width: 100vw;
}

figcaption {
  font-family: "canada-type-gibson", sans-serif;
  font-size: var(--smallFontSizea);
  line-height: 140%;
  font-weight: 400;
  color: #99a8b3;
  margin-top: 5px;
}

.wp-block-gallery {
  --wp--style--unstable-gallery-gap: 0 !important;
  gap: 0 !important;
}

@media (min-width: 600px) {
  figure.wp-block-gallery.has-nested-images.columns-2 figure.wp-block-image:not(#individual-image) {
    margin: 25px;
    width: calc(50% - 50px);
  }
  figure.wp-block-gallery.has-nested-images.columns-3 figure.wp-block-image:not(#individual-image) {
    margin: 25px;
    width: calc(33.33333% - 50px);
  }
  figure.wp-block-gallery.has-nested-images.columns-4 figure.wp-block-image:not(#individual-image) {
    margin: 25px;
    width: calc(25% - 50px);
  }
}
.wp-block-gallery.is-cropped .wp-block-image {
  object-fit: contain;
  max-width: 100%;
  max-height: 100%;
}
.wp-block-gallery.is-cropped .wp-block-image img {
  height: 100%;
}

/************************************************
  File
************************************************/
.wp-block-file {
  margin-top: 50px;
  margin-bottom: 50px;
}
.wp-block-file a {
  background-color: #f5f7f8;
  padding: 10px 15px;
}
.wp-block-file a.wp-block-file__button {
  color: #335168;
  text-decoration: underline;
  background-color: transparent;
}

/************************************************
  Tables
************************************************/
table,
table.wp-block-table {
  width: 100%;
  text-align: left;
  margin: 32px 0px;
  padding: 0px;
  box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.03);
  border: 2px solid rgba(0, 0, 0, 0.12);
  border: none;
  border-spacing: 0;
  border-radius: 0px;
}

table p,
table form,
table ul,
table li {
  margin: 6px 0px;
  padding: 0px;
}

table thead,
table tfoot,
table.wp-block-table thead,
table.wp-block-table tfoot {
  border: 1px solid #dddddd;
  border: 1px solid rgba(0, 0, 0, 0.12);
  border: 5px white solid;
}

table.has-subtle-pale-green-background-color {
  background-color: #99a8b3;
}
table.has-subtle-pale-green-background-color tbody {
  background-color: transparent;
}

.wp-block-table.is-style-regular table tbody tr:nth-child(odd),
.wp-block-table.is-style-regular table tbody tr:nth-child(even) {
  background: rgba(0, 0, 0, 0.04);
}

.wp-block-table.is-style-stripes table tbody tr:nth-child(odd) {
  background: rgba(0, 0, 0, 0.08);
}
.wp-block-table.is-style-stripes table tbody tr:nth-child(even) {
  background: rgba(0, 0, 0, 0.04);
}

table th,
table.wp-block-table th {
  font-size: 1.1rem;
  text-transform: uppercase;
  margin: 0px;
  padding: 12px;
  border-top: 1px solid #dddddd;
  border-top: 1px solid rgba(0, 0, 0, 0.12);
  border: 5px white solid;
  box-sizing: border-box;
}

table td,
table.wp-block-table td {
  padding: 12px;
  margin: 0px;
  border-top: 1px solid #dddddd;
  border-top: 1px solid rgba(0, 0, 0, 0.12);
  border: 5px white solid;
  box-sizing: border-box;
}

table.wp-block-table.is-style-stripes {
  border-collapse: collapse;
}

table.wp-block-table.is-style-stripes td {
  border: 1px solid #dddddd;
  border: 1px solid rgba(0, 0, 0, 0.12);
  border: 5px white solid;
}

.wp-block-blockgallery-carousel, .wp-block-blockgallery-carousel .blockgallery {
  height: auto;
}

.wp-block-columns {
  display: flex;
  flex-flow: row wrap;
  width: 100%;
  margin: 0;
}
.wp-block-columns .wp-block-column {
  width: calc(100% - 2rem);
  margin-right: 1rem;
  margin-left: 1rem;
}
@media print, screen and (min-width: 40em) {
  .wp-block-columns .wp-block-column {
    width: calc(33.3333333333% - 2rem);
    margin-right: 1rem;
    margin-left: 1rem;
  }
}

@media print, screen and (min-width: 40em) {
  .full-width .wp-block-columns .wp-block-column {
    width: calc(50% - 2rem);
    margin-right: 1rem;
    margin-left: 1rem;
  }
}

.wp-block-group {
  display: inline-block;
  width: 100%;
  margin: 25px 0;
}
@media print, screen and (min-width: 48em) {
  .wp-block-group {
    margin: 50px 0;
  }
}
.wp-block-group .wp-block-group__inner-container {
  padding: 0 25px;
}
@media print, screen and (min-width: 48em) {
  .wp-block-group .wp-block-group__inner-container {
    padding: 0 50px;
  }
}
.wp-block-group .wp-block-group__inner-container h2 {
  transform: translateY(-50%);
  margin-bottom: 0;
}

.is-layout-flex {
  display: flex;
  flex-wrap: wrap;
}

.wp-block-buttons {
  display: flex;
  flex-wrap: wrap;
}
.wp-block-buttons .wp-block-button {
  margin: 0 10px 10px 0;
}
.wp-block-buttons .wp-block-button:last-child {
  margin-bottom: 0;
}

.wp-block-cover-image.has-parallax, .wp-block-cover.has-parallax {
  background-attachment: fixed;
  background-size: cover;
}

.has-background-dim {
  position: relative;
}
.has-background-dim:after {
  content: "";
  position: absolute !important;
  top: 0rem !important;
  right: 0rem !important;
  bottom: 0rem !important;
  left: 0rem !important;
  opacity: 0.5;
}
.has-background-dim.has-orange-background-color:after {
  background-color: orange;
}

.wp-block-cover {
  display: flex;
  flex-flow: row wrap;
  width: 100px;
  margin: 60px 0;
  justify-content: center;
  align-items: center;
}
.wp-block-cover .wp-block-cover__inner-container {
  width: calc(100% - 2rem);
  margin-right: 1rem;
  margin-left: 1rem;
  z-index: 10;
}
.wp-block-cover .wp-block-cover__inner-container p.has-small-font-size {
  font-family: "canada-type-gibson", sans-serif;
  font-size: var(--largeFontSizeb);
  line-height: 140%;
  font-weight: 400;
}
@media print, screen and (min-width: 40em) {
  .wp-block-cover .wp-block-cover__inner-container p.has-small-font-size {
    font-size: var(--largeFontSizea);
  }
}
.wp-block-cover .wp-block-cover__inner-container p.has-normal-font-size {
  font-family: "canada-type-gibson", sans-serif;
  font-size: var(--headerFontSize5b);
  line-height: 110%;
  font-weight: 600;
  color: #002642;
  margin: 40px 0 15px;
}
@media print, screen and (min-width: 40em) {
  .wp-block-cover .wp-block-cover__inner-container p.has-normal-font-size {
    font-size: var(--headerFontSize5a);
  }
}
@media print, screen and (min-width: 53.125em) {
  .wp-block-cover .wp-block-cover__inner-container p.has-normal-font-size {
    font-size: var(--headerFontSize4b);
  }
}
@media print, screen and (min-width: 64em) {
  .wp-block-cover .wp-block-cover__inner-container p.has-normal-font-size {
    font-size: var(--headerFontSize4a);
  }
}
.wp-block-cover .wp-block-cover__inner-container p.has-medium-font-size {
  font-family: "canada-type-gibson", sans-serif;
  font-size: var(--headerFontSize4b);
  line-height: 110%;
  font-weight: 600;
  color: #002642;
  margin: 40px 0 15px;
}
@media print, screen and (min-width: 40em) {
  .wp-block-cover .wp-block-cover__inner-container p.has-medium-font-size {
    font-size: var(--headerFontSize4a);
  }
}
@media print, screen and (min-width: 53.125em) {
  .wp-block-cover .wp-block-cover__inner-container p.has-medium-font-size {
    font-size: var(--headerFontSize3b);
  }
}
@media print, screen and (min-width: 64em) {
  .wp-block-cover .wp-block-cover__inner-container p.has-medium-font-size {
    font-size: var(--headerFontSize3a);
  }
}
.wp-block-cover .wp-block-cover__inner-container p.has-large-font-size {
  font-family: "canada-type-gibson", sans-serif;
  font-size: var(--headerFontSize3b);
  line-height: 110%;
  font-weight: 600;
  color: #002642;
  margin: 50px 0 20px;
}
@media print, screen and (min-width: 40em) {
  .wp-block-cover .wp-block-cover__inner-container p.has-large-font-size {
    font-size: var(--headerFontSize3a);
  }
}
@media print, screen and (min-width: 53.125em) {
  .wp-block-cover .wp-block-cover__inner-container p.has-large-font-size {
    font-size: var(--headerFontSize2b);
  }
}
@media print, screen and (min-width: 64em) {
  .wp-block-cover .wp-block-cover__inner-container p.has-large-font-size {
    font-size: var(--headerFontSize2a);
  }
}
.wp-block-cover .wp-block-cover__inner-container p.has-huge-font-size {
  font-family: "canada-type-gibson", sans-serif;
  font-size: var(--headerFontSize2b);
  line-height: 110%;
  font-weight: 600;
  color: #002642;
  margin: 0px 0 20px;
}
@media print, screen and (min-width: 40em) {
  .wp-block-cover .wp-block-cover__inner-container p.has-huge-font-size {
    font-size: var(--headerFontSize2b);
  }
}
@media print, screen and (min-width: 64em) {
  .wp-block-cover .wp-block-cover__inner-container p.has-huge-font-size {
    font-size: var(--headerFontSize1b);
  }
}

.wp-block-table {
  margin: 50px 0 60px;
}

.has-text-align-center {
  text-align: center;
}

p.has-text-align-center {
  margin-bottom: 0;
}

.alignfull {
  clear: both;
  margin: 50px calc(50% - 50vw);
  max-width: 100vw;
  width: 100vw;
}

.alignwide {
  width: 100%;
  margin: 0;
  max-width: calc(100% - 40px);
}
@media print, screen and (min-width: 53.125em) {
  .alignwide {
    max-width: 100vw !important;
    margin: 30px calc(50% - 50vw + 50px);
    margin: 30px calc(50% - 50vw + 20px);
  }
}
@media screen and (min-width: 103.125em) {
  .alignwide {
    margin: 30px -274.984px;
    width: 1440px;
  }
}

.alignleft {
  float: left;
  margin: 0 0 30px 0;
}
@media print, screen and (min-width: 40em) {
  .alignleft {
    margin: 0 30px 30px 0;
  }
}

.alignright {
  float: right;
  margin: 0 0 30px 0;
}
@media print, screen and (min-width: 40em) {
  .alignright {
    margin: 0 0 30px 30px;
  }
}

.aligncenter {
  clear: both;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.wp-block-blockgallery-carousel {
  margin-top: 75px !important;
  margin-bottom: 75px !important;
}

.wp-block-blockgallery-carousel.reduced-margin {
  margin-top: 25px !important;
  margin-bottom: 50px !important;
}

/* video */
.video-responsive,
.wp-block-embed__wrapper {
  overflow: hidden;
  margin-top: 15px;
  padding-bottom: 56.25%;
  position: relative;
  height: 0;
}
.video-responsive iframe,
.wp-block-embed__wrapper iframe {
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  position: absolute;
}

.wp-block-embed.is-type-video {
  margin-top: 35px;
  margin-bottom: 35px;
}

figure.wp-block-image.size-full {
  margin-top: 35px;
  margin-bottom: 35px;
}

.stuck {
  position: fixed;
  top: 0;
  width: calc((100vw - 100px) / 12 * 3 - 38px);
}
@media screen and (min-width: 103.125em) {
  .stuck {
    width: 343px;
  }
}

.at-bottom {
  position: absolute;
  bottom: 0;
  top: auto !important;
}

.pod-link {
  position: absolute !important;
  top: 0rem !important;
  right: 0rem !important;
  bottom: 0rem !important;
  left: 0rem !important;
}

.from-left.fader.fader-on,
.from-right.fader.fader-on,
.from-top.fader.fader-on,
.from-bottom.fader.fader-on {
  -moz-transform: translate(0px, 0px);
  -ms-transform: translate(0px, 0px);
  -o-transform: translate(0px, 0px);
  -webkit-transform: translate(0px, 0px);
  transform: translate(0px, 0px);
}

.no-bot-mar,
.no-bottom-mar,
.no-bottom-margin {
  margin-bottom: 0 !important;
}

.no-top-mar,
.no-top-margin {
  margin-top: 0 !important;
}

.no-bot-pad,
.no-bottom-pad,
.no-bottom-padding {
  padding-bottom: 0 !important;
}

.no-top-pad,
.no-top-padding {
  padding-top: 0 !important;
}

.padder_0, .padder_5, .padder_10, .padder_15, .padder_20, .padder_25, .padder_30, .padder_35, .padder_40, .padder_45, .padder_50, .padder_55, .padder_60, .padder_65, .padder_70, .padder_75, .padder_80, .padder_85, .padder_90, .padder_95, .padder_100, .padder_150, .padder_200 {
  width: 100%;
}

.padder_0 {
  height: 0px;
}

.padder_5 {
  height: 5px;
}

.padder_10 {
  height: 10px;
}

.padder_15 {
  height: 15px;
}

.padder_20 {
  height: 20px;
}

.padder_25 {
  height: 25px;
}

.padder_30 {
  height: 30px;
}

.padder_35 {
  height: 35px;
}

.padder_40 {
  height: 40px;
}

.padder_45 {
  height: 45px;
}

.padder_50 {
  height: 50px;
}

.padder_55 {
  height: 55px;
}

.padder_60 {
  height: 60px;
}

.padder_65 {
  height: 65px;
}

.padder_70 {
  height: 70px;
}

.padder_75 {
  height: 75px;
}

.padder_80 {
  height: 80px;
}

.padder_85 {
  height: 85px;
}

.padder_90 {
  height: 90px;
}

.padder_95 {
  height: 95px;
}

.padder_100 {
  height: 100px;
}

.padder_150 {
  height: 150px;
}

.padder_200 {
  height: 200px;
}

.container {
  padding-right: 1rem;
  padding-left: 1rem;
  max-width: 1480px;
  margin: 0 auto;
}
@media print, screen and (min-width: 40em) {
  .container {
    padding-right: 1rem;
    padding-left: 1rem;
  }
}
.container:after {
  clear: both;
  content: "";
  display: block;
}
@media screen and (max-width: 39.9375em) {
  .container {
    padding-left: 0;
    padding-right: 0;
  }
}

.central {
  position: relative;
  display: flex;
  flex-flow: row wrap;
  justify-content: center;
  align-items: flex-start;
  text-align: center;
}
@media screen and (max-width: 39.9375em) {
  .central {
    margin-right: 0;
    margin-left: 0;
    width: 100%;
  }
  .central > .cell {
    margin-right: 0;
    margin-left: 0;
  }
  .central > .small-1 {
    width: 8.3333333333%;
  }
  .central > .small-2 {
    width: 16.6666666667%;
  }
  .central > .small-3 {
    width: 25%;
  }
  .central > .small-4 {
    width: 33.3333333333%;
  }
  .central > .small-5 {
    width: 41.6666666667%;
  }
  .central > .small-6 {
    width: 50%;
  }
  .central > .small-7 {
    width: 58.3333333333%;
  }
  .central > .small-8 {
    width: 66.6666666667%;
  }
  .central > .small-9 {
    width: 75%;
  }
  .central > .small-10 {
    width: 83.3333333333%;
  }
  .central > .small-11 {
    width: 91.6666666667%;
  }
  .central > .small-12 {
    width: 100%;
  }
}
@media screen and (max-width: 39.9375em) and (min-width: 40em) {
  .central > .medium-1 {
    width: 8.3333333333%;
  }
  .central > .medium-2 {
    width: 16.6666666667%;
  }
  .central > .medium-3 {
    width: 25%;
  }
  .central > .medium-4 {
    width: 33.3333333333%;
  }
  .central > .medium-5 {
    width: 41.6666666667%;
  }
  .central > .medium-6 {
    width: 50%;
  }
  .central > .medium-7 {
    width: 58.3333333333%;
  }
  .central > .medium-8 {
    width: 66.6666666667%;
  }
  .central > .medium-9 {
    width: 75%;
  }
  .central > .medium-10 {
    width: 83.3333333333%;
  }
  .central > .medium-11 {
    width: 91.6666666667%;
  }
  .central > .medium-12 {
    width: 100%;
  }
}
@media screen and (max-width: 39.9375em) and (min-width: 64em) {
  .central > .large-1 {
    width: 8.3333333333%;
  }
  .central > .large-2 {
    width: 16.6666666667%;
  }
  .central > .large-3 {
    width: 25%;
  }
  .central > .large-4 {
    width: 33.3333333333%;
  }
  .central > .large-5 {
    width: 41.6666666667%;
  }
  .central > .large-6 {
    width: 50%;
  }
  .central > .large-7 {
    width: 58.3333333333%;
  }
  .central > .large-8 {
    width: 66.6666666667%;
  }
  .central > .large-9 {
    width: 75%;
  }
  .central > .large-10 {
    width: 83.3333333333%;
  }
  .central > .large-11 {
    width: 91.6666666667%;
  }
  .central > .large-12 {
    width: 100%;
  }
}

svg {
  max-width: 100%;
  height: auto;
}

body {
  font-family: "canada-type-gibson", sans-serif;
  font-size: var(--standardFontSizeb);
  line-height: 140%;
  font-weight: 400;
  color: #335168;
}
@media print, screen and (min-width: 53.125em) {
  body {
    font-size: var(--standardFontSizea);
  }
}

p {
  font-family: "canada-type-gibson", sans-serif;
  font-size: var(--standardFontSizeb);
  line-height: 140%;
  font-weight: 400;
  color: #335168;
}
@media print, screen and (min-width: 53.125em) {
  p {
    font-size: var(--standardFontSizea);
  }
}

a {
  color: #1380cd;
}

p > a {
  color: #1380cd;
  text-decoration: underline;
}

h1,
.as-h1,
p.as-h1,
span.as-h1 {
  font-family: "canada-type-gibson", sans-serif;
  font-size: var(--headerFontSize2b);
  line-height: 110%;
  font-weight: 600;
  color: #002642;
  margin: 0px 0 20px;
}
@media print, screen and (min-width: 40em) {
  h1,
  .as-h1,
  p.as-h1,
  span.as-h1 {
    font-size: var(--headerFontSize2b);
  }
}
@media print, screen and (min-width: 64em) {
  h1,
  .as-h1,
  p.as-h1,
  span.as-h1 {
    font-size: var(--headerFontSize1b);
  }
}
h1 span,
.as-h1 span,
p.as-h1 span,
span.as-h1 span {
  color: #1380cd;
}

h2,
.as-h2,
p.as-h2,
.as-h2 p {
  font-family: "canada-type-gibson", sans-serif;
  font-size: var(--headerFontSize3b);
  line-height: 110%;
  font-weight: 600;
  color: #002642;
  margin: 50px 0 20px;
}
@media print, screen and (min-width: 40em) {
  h2,
  .as-h2,
  p.as-h2,
  .as-h2 p {
    font-size: var(--headerFontSize3a);
  }
}
@media print, screen and (min-width: 53.125em) {
  h2,
  .as-h2,
  p.as-h2,
  .as-h2 p {
    font-size: var(--headerFontSize2b);
  }
}
@media print, screen and (min-width: 64em) {
  h2,
  .as-h2,
  p.as-h2,
  .as-h2 p {
    font-size: var(--headerFontSize2a);
  }
}

h3,
.as-h3,
p.as-h3,
.as-h3 p {
  font-family: "canada-type-gibson", sans-serif;
  font-size: var(--headerFontSize4b);
  line-height: 110%;
  font-weight: 600;
  color: #002642;
  margin: 40px 0 15px;
}
@media print, screen and (min-width: 40em) {
  h3,
  .as-h3,
  p.as-h3,
  .as-h3 p {
    font-size: var(--headerFontSize4a);
  }
}
@media print, screen and (min-width: 53.125em) {
  h3,
  .as-h3,
  p.as-h3,
  .as-h3 p {
    font-size: var(--headerFontSize3b);
  }
}
@media print, screen and (min-width: 64em) {
  h3,
  .as-h3,
  p.as-h3,
  .as-h3 p {
    font-size: var(--headerFontSize3a);
  }
}

h4,
.as-h4,
p.as-h4,
.as-h4 p {
  font-family: "canada-type-gibson", sans-serif;
  font-size: var(--headerFontSize5b);
  line-height: 110%;
  font-weight: 600;
  color: #002642;
  margin: 40px 0 15px;
}
@media print, screen and (min-width: 40em) {
  h4,
  .as-h4,
  p.as-h4,
  .as-h4 p {
    font-size: var(--headerFontSize5a);
  }
}
@media print, screen and (min-width: 53.125em) {
  h4,
  .as-h4,
  p.as-h4,
  .as-h4 p {
    font-size: var(--headerFontSize4b);
  }
}
@media print, screen and (min-width: 64em) {
  h4,
  .as-h4,
  p.as-h4,
  .as-h4 p {
    font-size: var(--headerFontSize4a);
  }
}

h5,
.as-h5,
p.as-h5,
.as-h5 p {
  font-family: "canada-type-gibson", sans-serif;
  font-size: var(--headerFontSize5b);
  line-height: 110%;
  font-weight: 600;
  color: #002642;
  margin: 40px 0 15px;
}
@media print, screen and (min-width: 40em) {
  h5,
  .as-h5,
  p.as-h5,
  .as-h5 p {
    font-size: var(--headerFontSize5a);
  }
}

span.as-h1,
span.as-h2,
span.as-h3,
span.as-h4,
span.as-h5 {
  display: block;
}

h2.small-text,
h3.small-text,
h4.small-text,
h5.small-text {
  margin-bottom: 10px;
}

h1.no-mar,
h2.no-mar,
h3.no-mar,
h4.no-mar,
h5.no-mar {
  margin: 0;
}

.impact {
  font-family: "canada-type-gibson", sans-serif;
  font-size: var(--impactFontMedium);
  color: #002642;
  line-height: 100%;
  font-weight: 700;
  text-transform: uppercase;
}
.impact.impact-huge {
  font-size: 60px;
  line-height: 85%;
}
@media print, screen and (min-width: 40em) {
  .impact.impact-huge {
    font-size: 90px;
  }
}
@media print, screen and (min-width: 60em) {
  .impact.impact-huge {
    font-size: 120px;
  }
}
@media screen and (min-width: 75em) {
  .impact.impact-huge {
    font-size: var(--impactFontHuge);
  }
}
.impact.impact-large {
  font-size: 50px;
}
@media print, screen and (min-width: 40em) {
  .impact.impact-large {
    font-size: var(--impactFontLarge);
  }
}
.impact.impact-medium {
  font-size: var(--impactFontMedium);
}
.impact.impact-small {
  font-size: var(--impactFontSmall);
}
.impact.impact-tiny {
  font-size: var(--impactFontTiny);
}

button,
a.button,
span.button,
.gform_wrapper.gravity-theme .gform_footer button,
.gform_wrapper.gravity-theme .gform_footer input,
.gform_wrapper.gravity-theme .gform_page_footer button,
.gform_wrapper.gravity-theme .gform_page_footer input,
.search-overlay .form-footer input[type=submit] {
  display: inline-block;
  font-size: 16px;
  line-height: 100%;
  font-weight: 500;
  padding: 12px 18px;
  background-color: #002642;
  border: #002642 1px solid;
  color: #ffffff;
  border-radius: 5px;
  text-decoration: none;
  transition: all 0.2s ease-in-out;
}
button:hover,
a.button:hover,
span.button:hover,
.gform_wrapper.gravity-theme .gform_footer button:hover,
.gform_wrapper.gravity-theme .gform_footer input:hover,
.gform_wrapper.gravity-theme .gform_page_footer button:hover,
.gform_wrapper.gravity-theme .gform_page_footer input:hover,
.search-overlay .form-footer input[type=submit]:hover {
  background-color: #1380cd;
  border: #1380cd 1px solid;
  color: #ffffff;
}
button.button-small,
a.button.button-small,
span.button.button-small,
.gform_wrapper.gravity-theme .gform_footer button.button-small,
.gform_wrapper.gravity-theme .gform_footer input.button-small,
.gform_wrapper.gravity-theme .gform_page_footer button.button-small,
.gform_wrapper.gravity-theme .gform_page_footer input.button-small,
.search-overlay .form-footer input[type=submit].button-small {
  font-size: 14px;
  padding: 8px 12px;
}
button.button-big, button.button-large,
a.button.button-big,
a.button.button-large,
span.button.button-big,
span.button.button-large,
.gform_wrapper.gravity-theme .gform_footer button.button-big,
.gform_wrapper.gravity-theme .gform_footer button.button-large,
.gform_wrapper.gravity-theme .gform_footer input.button-big,
.gform_wrapper.gravity-theme .gform_footer input.button-large,
.gform_wrapper.gravity-theme .gform_page_footer button.button-big,
.gform_wrapper.gravity-theme .gform_page_footer button.button-large,
.gform_wrapper.gravity-theme .gform_page_footer input.button-big,
.gform_wrapper.gravity-theme .gform_page_footer input.button-large,
.search-overlay .form-footer input[type=submit].button-big,
.search-overlay .form-footer input[type=submit].button-large {
  font-size: 20px;
  padding: 16px 24px;
}
button.button-cta,
a.button.button-cta,
span.button.button-cta,
.gform_wrapper.gravity-theme .gform_footer button.button-cta,
.gform_wrapper.gravity-theme .gform_footer input.button-cta,
.gform_wrapper.gravity-theme .gform_page_footer button.button-cta,
.gform_wrapper.gravity-theme .gform_page_footer input.button-cta,
.search-overlay .form-footer input[type=submit].button-cta {
  border: #ff5f15 1px solid;
  background-color: #ff5f15;
  color: #ffffff;
}
button.button-cta:hover,
a.button.button-cta:hover,
span.button.button-cta:hover,
.gform_wrapper.gravity-theme .gform_footer button.button-cta:hover,
.gform_wrapper.gravity-theme .gform_footer input.button-cta:hover,
.gform_wrapper.gravity-theme .gform_page_footer button.button-cta:hover,
.gform_wrapper.gravity-theme .gform_page_footer input.button-cta:hover,
.search-overlay .form-footer input[type=submit].button-cta:hover {
  background-color: #cc4c11;
  border-color: #cc4c11;
  color: #ffffff;
}
button.button-cta-outline,
a.button.button-cta-outline,
span.button.button-cta-outline,
.gform_wrapper.gravity-theme .gform_footer button.button-cta-outline,
.gform_wrapper.gravity-theme .gform_footer input.button-cta-outline,
.gform_wrapper.gravity-theme .gform_page_footer button.button-cta-outline,
.gform_wrapper.gravity-theme .gform_page_footer input.button-cta-outline,
.search-overlay .form-footer input[type=submit].button-cta-outline {
  border: #ff5f15 1px solid;
  background-color: transparent;
  color: #ff5f15;
}
button.button-cta-outline:hover,
a.button.button-cta-outline:hover,
span.button.button-cta-outline:hover,
.gform_wrapper.gravity-theme .gform_footer button.button-cta-outline:hover,
.gform_wrapper.gravity-theme .gform_footer input.button-cta-outline:hover,
.gform_wrapper.gravity-theme .gform_page_footer button.button-cta-outline:hover,
.gform_wrapper.gravity-theme .gform_page_footer input.button-cta-outline:hover,
.search-overlay .form-footer input[type=submit].button-cta-outline:hover {
  background-color: #ff5f15;
  border-color: #ff5f15;
  color: #ffffff;
}
button.button-primary,
a.button.button-primary,
span.button.button-primary,
.gform_wrapper.gravity-theme .gform_footer button.button-primary,
.gform_wrapper.gravity-theme .gform_footer input.button-primary,
.gform_wrapper.gravity-theme .gform_page_footer button.button-primary,
.gform_wrapper.gravity-theme .gform_page_footer input.button-primary,
.search-overlay .form-footer input[type=submit].button-primary {
  border: #1380cd 1px solid;
  background-color: #1380cd;
  color: #ffffff;
}
button.button-primary:hover,
a.button.button-primary:hover,
span.button.button-primary:hover,
.gform_wrapper.gravity-theme .gform_footer button.button-primary:hover,
.gform_wrapper.gravity-theme .gform_footer input.button-primary:hover,
.gform_wrapper.gravity-theme .gform_page_footer button.button-primary:hover,
.gform_wrapper.gravity-theme .gform_page_footer input.button-primary:hover,
.search-overlay .form-footer input[type=submit].button-primary:hover {
  background-color: #002642;
  border-color: #002642;
  color: #ffffff;
}
button.button-primary-outline,
a.button.button-primary-outline,
span.button.button-primary-outline,
.gform_wrapper.gravity-theme .gform_footer button.button-primary-outline,
.gform_wrapper.gravity-theme .gform_footer input.button-primary-outline,
.gform_wrapper.gravity-theme .gform_page_footer button.button-primary-outline,
.gform_wrapper.gravity-theme .gform_page_footer input.button-primary-outline,
.search-overlay .form-footer input[type=submit].button-primary-outline {
  border: #1380cd 1px solid;
  background-color: transparent;
  color: #1380cd;
}
button.button-primary-outline:hover,
a.button.button-primary-outline:hover,
span.button.button-primary-outline:hover,
.gform_wrapper.gravity-theme .gform_footer button.button-primary-outline:hover,
.gform_wrapper.gravity-theme .gform_footer input.button-primary-outline:hover,
.gform_wrapper.gravity-theme .gform_page_footer button.button-primary-outline:hover,
.gform_wrapper.gravity-theme .gform_page_footer input.button-primary-outline:hover,
.search-overlay .form-footer input[type=submit].button-primary-outline:hover {
  background-color: #002642;
  border-color: #002642;
  color: #ffffff;
}
button.button-secondary,
a.button.button-secondary,
span.button.button-secondary,
.gform_wrapper.gravity-theme .gform_footer button.button-secondary,
.gform_wrapper.gravity-theme .gform_footer input.button-secondary,
.gform_wrapper.gravity-theme .gform_page_footer button.button-secondary,
.gform_wrapper.gravity-theme .gform_page_footer input.button-secondary,
.search-overlay .form-footer input[type=submit].button-secondary {
  border: #1380cd 1px solid;
  background-color: #1380cd;
  color: #ffffff;
}
button.button-secondary:hover,
a.button.button-secondary:hover,
span.button.button-secondary:hover,
.gform_wrapper.gravity-theme .gform_footer button.button-secondary:hover,
.gform_wrapper.gravity-theme .gform_footer input.button-secondary:hover,
.gform_wrapper.gravity-theme .gform_page_footer button.button-secondary:hover,
.gform_wrapper.gravity-theme .gform_page_footer input.button-secondary:hover,
.search-overlay .form-footer input[type=submit].button-secondary:hover {
  background-color: #002642;
  border-color: #002642;
  color: #ffffff;
}
button.button-secondary-outline,
a.button.button-secondary-outline,
span.button.button-secondary-outline,
.gform_wrapper.gravity-theme .gform_footer button.button-secondary-outline,
.gform_wrapper.gravity-theme .gform_footer input.button-secondary-outline,
.gform_wrapper.gravity-theme .gform_page_footer button.button-secondary-outline,
.gform_wrapper.gravity-theme .gform_page_footer input.button-secondary-outline,
.search-overlay .form-footer input[type=submit].button-secondary-outline {
  border: #1380cd 1px solid;
  background-color: transparent;
  color: #1380cd;
}
button.button-secondary-outline:hover,
a.button.button-secondary-outline:hover,
span.button.button-secondary-outline:hover,
.gform_wrapper.gravity-theme .gform_footer button.button-secondary-outline:hover,
.gform_wrapper.gravity-theme .gform_footer input.button-secondary-outline:hover,
.gform_wrapper.gravity-theme .gform_page_footer button.button-secondary-outline:hover,
.gform_wrapper.gravity-theme .gform_page_footer input.button-secondary-outline:hover,
.search-overlay .form-footer input[type=submit].button-secondary-outline:hover {
  background-color: #002642;
  border-color: #002642;
  color: #ffffff;
}
button.button-black,
a.button.button-black,
span.button.button-black,
.gform_wrapper.gravity-theme .gform_footer button.button-black,
.gform_wrapper.gravity-theme .gform_footer input.button-black,
.gform_wrapper.gravity-theme .gform_page_footer button.button-black,
.gform_wrapper.gravity-theme .gform_page_footer input.button-black,
.search-overlay .form-footer input[type=submit].button-black {
  background-color: #002642;
  border: #002642 1px solid;
  color: #ffffff;
}
button.button-black:hover,
a.button.button-black:hover,
span.button.button-black:hover,
.gform_wrapper.gravity-theme .gform_footer button.button-black:hover,
.gform_wrapper.gravity-theme .gform_footer input.button-black:hover,
.gform_wrapper.gravity-theme .gform_page_footer button.button-black:hover,
.gform_wrapper.gravity-theme .gform_page_footer input.button-black:hover,
.search-overlay .form-footer input[type=submit].button-black:hover {
  background-color: #1380cd;
  border-color: #1380cd;
  color: #ffffff;
}
button.button-black-outline,
a.button.button-black-outline,
span.button.button-black-outline,
.gform_wrapper.gravity-theme .gform_footer button.button-black-outline,
.gform_wrapper.gravity-theme .gform_footer input.button-black-outline,
.gform_wrapper.gravity-theme .gform_page_footer button.button-black-outline,
.gform_wrapper.gravity-theme .gform_page_footer input.button-black-outline,
.search-overlay .form-footer input[type=submit].button-black-outline {
  border: #002642 1px solid;
  background-color: transparent;
  color: #002642;
}
button.button-black-outline:hover,
a.button.button-black-outline:hover,
span.button.button-black-outline:hover,
.gform_wrapper.gravity-theme .gform_footer button.button-black-outline:hover,
.gform_wrapper.gravity-theme .gform_footer input.button-black-outline:hover,
.gform_wrapper.gravity-theme .gform_page_footer button.button-black-outline:hover,
.gform_wrapper.gravity-theme .gform_page_footer input.button-black-outline:hover,
.search-overlay .form-footer input[type=submit].button-black-outline:hover {
  background-color: #1380cd;
  border-color: #1380cd;
  color: #ffffff;
}
button.button-white,
a.button.button-white,
span.button.button-white,
.gform_wrapper.gravity-theme .gform_footer button.button-white,
.gform_wrapper.gravity-theme .gform_footer input.button-white,
.gform_wrapper.gravity-theme .gform_page_footer button.button-white,
.gform_wrapper.gravity-theme .gform_page_footer input.button-white,
.search-overlay .form-footer input[type=submit].button-white {
  background-color: #ffffff;
  border: #ffffff 1px solid;
  color: #335168 !important;
}
button.button-white:hover,
a.button.button-white:hover,
span.button.button-white:hover,
.gform_wrapper.gravity-theme .gform_footer button.button-white:hover,
.gform_wrapper.gravity-theme .gform_footer input.button-white:hover,
.gform_wrapper.gravity-theme .gform_page_footer button.button-white:hover,
.gform_wrapper.gravity-theme .gform_page_footer input.button-white:hover,
.search-overlay .form-footer input[type=submit].button-white:hover {
  background-color: #1380cd;
  border-color: #1380cd;
  color: #ffffff !important;
}
button.button-white-outline,
a.button.button-white-outline,
span.button.button-white-outline,
.gform_wrapper.gravity-theme .gform_footer button.button-white-outline,
.gform_wrapper.gravity-theme .gform_footer input.button-white-outline,
.gform_wrapper.gravity-theme .gform_page_footer button.button-white-outline,
.gform_wrapper.gravity-theme .gform_page_footer input.button-white-outline,
.search-overlay .form-footer input[type=submit].button-white-outline {
  border: #ffffff 1px solid;
  background-color: transparent;
  color: #ffffff;
}
button.button-white-outline:hover,
a.button.button-white-outline:hover,
span.button.button-white-outline:hover,
.gform_wrapper.gravity-theme .gform_footer button.button-white-outline:hover,
.gform_wrapper.gravity-theme .gform_footer input.button-white-outline:hover,
.gform_wrapper.gravity-theme .gform_page_footer button.button-white-outline:hover,
.gform_wrapper.gravity-theme .gform_page_footer input.button-white-outline:hover,
.search-overlay .form-footer input[type=submit].button-white-outline:hover {
  background-color: #1380cd;
  border-color: #1380cd;
  color: #ffffff;
}

.button-parent a,
.wp-block-button a,
.header .header-right ul li.button-parent a {
  display: inline-block;
  font-size: 16px;
  line-height: 100%;
  font-weight: 500;
  padding: 12px 18px;
  background-color: #002642;
  border: #002642 1px solid;
  color: #ffffff;
  border-radius: 5px;
  text-decoration: none;
  transition: all 0.2s ease-in-out;
}
.button-parent a:hover,
.wp-block-button a:hover,
.header .header-right ul li.button-parent a:hover {
  background-color: #1380cd;
  border: #1380cd 1px solid;
  color: #ffffff;
}
.button-parent.button-small a,
.wp-block-button.button-small a,
.header .header-right ul li.button-parent.button-small a {
  font-size: 14px;
  padding: 8px 12px;
}
.button-parent.button-big a, .button-parent.button-large .button-parent.has-large-font-size a,
.wp-block-button.button-big a,
.button-parent.button-large .wp-block-button.has-large-font-size a,
.header .header-right ul li.button-parent.button-big a,
.button-parent.button-large .header .header-right ul li.button-parent.has-large-font-size a,
.wp-block-button.button-large .button-parent.has-large-font-size a,
.wp-block-button.button-large .wp-block-button.has-large-font-size a,
.wp-block-button.button-large .header .header-right ul li.button-parent.has-large-font-size a,
.header .header-right ul li.button-parent.button-large .button-parent.has-large-font-size a,
.header .header-right ul li.button-parent.button-large .wp-block-button.has-large-font-size a,
.header .header-right ul li.button-parent.button-large .header .header-right ul li.button-parent.has-large-font-size a {
  font-size: 20px;
  padding: 16px 24px;
}
.button-parent.button-cta a,
.wp-block-button.button-cta a,
.header .header-right ul li.button-parent.button-cta a {
  border: #ff5f15 1px solid;
  background-color: #ff5f15;
  color: #ffffff;
}
.button-parent.button-cta a:hover,
.wp-block-button.button-cta a:hover,
.header .header-right ul li.button-parent.button-cta a:hover {
  background-color: #cc4c11;
  border-color: #cc4c11;
  color: #ffffff;
}
.button-parent.button-cta-outline a,
.wp-block-button.button-cta-outline a,
.header .header-right ul li.button-parent.button-cta-outline a {
  border: #ff5f15 1px solid;
  background-color: transparent;
  color: #ff5f15;
}
.button-parent.button-cta-outline a:hover,
.wp-block-button.button-cta-outline a:hover,
.header .header-right ul li.button-parent.button-cta-outline a:hover {
  background-color: #ff5f15;
  border-color: #ff5f15;
  color: #ffffff;
}
.button-parent.button-primary a,
.wp-block-button.button-primary a,
.header .header-right ul li.button-parent.button-primary a {
  border: #1380cd 1px solid;
  background-color: #1380cd;
  color: #ffffff;
}
.button-parent.button-primary a:hover,
.wp-block-button.button-primary a:hover,
.header .header-right ul li.button-parent.button-primary a:hover {
  background-color: #002642;
  border-color: #002642;
  color: #ffffff;
}
.button-parent.button-primary-outline a, .button-parent.wp-block-button.is-style-outline a,
.wp-block-button.button-primary-outline a,
.wp-block-button.wp-block-button.is-style-outline a,
.header .header-right ul li.button-parent.button-primary-outline a,
.header .header-right ul li.button-parent.wp-block-button.is-style-outline a {
  border: #1380cd 1px solid;
  background-color: transparent;
  color: #1380cd;
}
.button-parent.button-primary-outline a:hover, .button-parent.wp-block-button.is-style-outline a:hover,
.wp-block-button.button-primary-outline a:hover,
.wp-block-button.wp-block-button.is-style-outline a:hover,
.header .header-right ul li.button-parent.button-primary-outline a:hover,
.header .header-right ul li.button-parent.wp-block-button.is-style-outline a:hover {
  background-color: #002642;
  border-color: #002642;
  color: #ffffff;
}
.button-parent.button-secondary a,
.wp-block-button.button-secondary a,
.header .header-right ul li.button-parent.button-secondary a {
  border: #1380cd 1px solid;
  background-color: #1380cd;
  color: #ffffff;
}
.button-parent.button-secondary a:hover,
.wp-block-button.button-secondary a:hover,
.header .header-right ul li.button-parent.button-secondary a:hover {
  background-color: #002642;
  border-color: #002642;
  color: #ffffff;
}
.button-parent.button-secondary-outline a,
.wp-block-button.button-secondary-outline a,
.header .header-right ul li.button-parent.button-secondary-outline a {
  border: #1380cd 1px solid;
  background-color: transparent;
  color: #1380cd;
}
.button-parent.button-secondary-outline a:hover,
.wp-block-button.button-secondary-outline a:hover,
.header .header-right ul li.button-parent.button-secondary-outline a:hover {
  background-color: #002642;
  border-color: #002642;
  color: #ffffff;
}
.button-parent.button-black a,
.wp-block-button.button-black a,
.header .header-right ul li.button-parent.button-black a {
  background-color: #002642;
  border: #002642 1px solid;
  color: #ffffff;
}
.button-parent.button-black a:hover,
.wp-block-button.button-black a:hover,
.header .header-right ul li.button-parent.button-black a:hover {
  background-color: #1380cd;
  border-color: #1380cd;
  color: #ffffff;
}
.button-parent.button-black-outline a,
.wp-block-button.button-black-outline a,
.header .header-right ul li.button-parent.button-black-outline a {
  border: #002642 1px solid;
  background-color: transparent;
  color: #002642;
}
.button-parent.button-black-outline a:hover,
.wp-block-button.button-black-outline a:hover,
.header .header-right ul li.button-parent.button-black-outline a:hover {
  background-color: #1380cd;
  border-color: #1380cd;
  color: #ffffff;
}
.button-parent.button-white a,
.wp-block-button.button-white a,
.header .header-right ul li.button-parent.button-white a {
  background-color: #ffffff;
  border: #ffffff 1px solid;
  color: #335168 !important;
}
.button-parent.button-white a:hover,
.wp-block-button.button-white a:hover,
.header .header-right ul li.button-parent.button-white a:hover {
  background-color: #1380cd;
  border-color: #1380cd;
  color: #ffffff !important;
}
.button-parent.button-white-outline a,
.wp-block-button.button-white-outline a,
.header .header-right ul li.button-parent.button-white-outline a {
  border: #ffffff 1px solid;
  background-color: transparent;
  color: #ffffff;
}
.button-parent.button-white-outline a:hover,
.wp-block-button.button-white-outline a:hover,
.header .header-right ul li.button-parent.button-white-outline a:hover {
  background-color: #1380cd;
  border-color: #1380cd;
  color: #ffffff;
}

.button-wrap {
  display: flex;
  gap: 10px;
  margin-top: 40px;
}

a.block-link {
  position: absolute !important;
  top: 0rem !important;
  right: 0rem !important;
  bottom: 0rem !important;
  left: 0rem !important;
  z-index: 50;
}

a.line-link,
.line-link > a {
  display: inline-block;
  position: relative;
  padding-left: 100px;
  transition: all 0.2s ease-in-out;
}
a.line-link:before,
.line-link > a:before {
  content: "";
  position: absolute;
  left: 0;
  top: 13px;
  width: 90px;
  height: 1px;
  background-color: #1380cd;
  transition: all 0.2s ease-in-out;
}
a.line-link:hover,
.line-link > a:hover {
  padding-left: 120px;
}
a.line-link:hover:before,
.line-link > a:hover:before {
  width: 110px;
}

a.line-link.secondary,
.line-link.secondary > a {
  color: #1380cd;
}
a.line-link.secondary:before,
.line-link.secondary > a:before {
  background-color: #1380cd;
}

a.underline-link,
.underline-link > a {
  position: relative;
  color: #002642;
}
a.underline-link:before,
.underline-link > a:before {
  content: "";
  background-color: #002642;
  position: absolute;
  left: 0;
  bottom: 1px;
  right: 0;
  height: 1px;
  transition: all 0.2s ease-in-out;
}
a.underline-link:after,
.underline-link > a:after {
  content: "";
  background-color: #002642;
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 1px;
  transition: all 0.2s ease-in-out;
}
a.underline-link:hover:after,
.underline-link > a:hover:after {
  width: 100%;
}

a.arrow-link,
span.arrow-link,
.arrow-link > a {
  display: flex;
  align-items: center;
}
a.arrow-link:after,
span.arrow-link:after,
.arrow-link > a:after {
  content: "";
  background-image: url("../images/svg/arrow.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center center;
  width: 12px;
  height: 12px;
  margin-left: 6px;
}
a.arrow-link.arrow-link-blue,
span.arrow-link.arrow-link-blue,
.arrow-link > a.arrow-link-blue {
  color: #1380cd;
}
a.arrow-link.arrow-link-blue:after,
span.arrow-link.arrow-link-blue:after,
.arrow-link > a.arrow-link-blue:after {
  background-image: url("../images/svg/arrow-blue.svg");
}

.large-text,
.large-text > p {
  font-family: "canada-type-gibson", sans-serif;
  font-size: var(--largeFontSizeb);
  line-height: 140%;
  font-weight: 400;
}
@media print, screen and (min-width: 40em) {
  .large-text,
  .large-text > p {
    font-size: var(--largeFontSizea);
  }
}

.small-text,
.small-text p {
  font-family: "canada-type-gibson", sans-serif;
  font-size: var(--smallFontSizea);
  line-height: 140%;
  font-weight: 400;
}

.above-text,
.above-title {
  font-family: "canada-type-gibson", sans-serif;
  font-size: var(--smallFontSizeb);
  line-height: 140%;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 3px;
  display: block;
  margin-bottom: 10px;
}
@media print, screen and (min-width: 40em) {
  .above-text,
  .above-title {
    font-size: var(--smallFontSizea);
  }
}

.primary {
  color: #1380cd;
}

.secondary {
  color: #1380cd;
}

blockquote {
  margin-top: 50px;
  margin-bottom: 50px;
  padding: 15px 30px;
  border-left: #99a8b3 10px solid;
}
blockquote cite {
  font-family: "canada-type-gibson", sans-serif;
  font-size: var(--smallFontSizea);
  line-height: 140%;
  font-weight: 400;
  font-style: normal;
  color: #99a8b3;
}
blockquote cite:before {
  display: none;
}

.date {
  font-family: "canada-type-gibson", sans-serif;
  font-size: var(--smallFontSizea);
  line-height: 140%;
  font-weight: 400;
}

.has-black-color {
  color: #002642 !important;
}

.has-black-background-color {
  background-color: #002642 !important;
  border-color: #002642 !important;
}

.has-navy-color {
  color: #002642 !important;
}

.has-navy-background-color {
  background-color: #002642 !important;
  border-color: #002642 !important;
}

.has-white-color {
  color: #ffffff !important;
}

.has-white-background-color {
  background-color: #ffffff !important;
  border-color: #ffffff !important;
}

.has-offwhite-color {
  color: #ffffff !important;
}

.has-offwhite-background-color {
  background-color: #f5f7f8 !important;
  border-color: #f5f7f8 !important;
}

.has-orange-color {
  color: #ff5f15 !important;
}

.has-orange-background-color {
  background-color: #ff5f15 !important;
  border-color: #ff5f15 !important;
}

.has-blue-color {
  color: #1380cd !important;
}

.has-blue-background-color {
  background-color: #1380cd !important;
  border-color: #1380cd !important;
}

.has-green-color {
  color: #4cbd5b !important;
}

.has-green-background-color {
  background-color: #4cbd5b !important;
  border-color: #4cbd5b !important;
}

.has-steel-blue-color {
  color: #1380cd !important;
}

.has-steel-blue-background-color {
  background-color: #1380cd !important;
  border-color: #1380cd !important;
}

.has-sky-blue-color {
  color: #48b2fe !important;
}

.has-sky-blue-background-color {
  background-color: #48b2fe !important;
  border-color: #48b2fe !important;
}

.has-pale-blue-color {
  color: #9ddefd !important;
}

.has-pale-blue-background-color {
  background-color: #9ddefd !important;
  border-color: #9ddefd !important;
}

.main-content ul,
.main-content ol {
  margin: 20px 0;
  padding-left: 20px;
  font-family: "canada-type-gibson", sans-serif;
  font-size: var(--standardFontSizeb);
  line-height: 140%;
  font-weight: 400;
  color: #335168;
}
@media print, screen and (min-width: 53.125em) {
  .main-content ul,
  .main-content ol {
    font-size: var(--standardFontSizea);
  }
}
.main-content ul li,
.main-content ol li {
  padding: 5px 0;
}

.main-content ol {
  padding-left: 40px;
}

hr {
  border-bottom-color: #99a8b3;
}

.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
}

.tag {
  background: #f5f7f8;
  border: #e2e6eb 1px solid;
  padding: 1px 6px;
  border-radius: 5px;
  font-family: "canada-type-gibson", sans-serif;
  font-size: var(--smallFontSizeb);
  line-height: 140%;
  font-weight: 400;
}

.has-shadow-huge {
  filter: drop-shadow(0px 15px 25px rgba(0, 0, 0, 0.08));
}

* {
  outline: none;
}

body {
  background-color: var(--bodyBackground);
  overflow-x: hidden;
}

.body-area-wrap {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  z-index: 0;
  background-color: var(--bodyBackground);
  overflow-x: clip;
}

.body-area {
  flex: 1 0 auto;
}

/*
.page-preloader {
    position: fixed;
    background: $white;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    z-index: 10000000;
}
*/
.fullheight-fixer {
  position: absolute;
  opacity: 0;
  width: 100%;
  height: 1;
  top: 100vh;
  z-index: -10;
}

.waypointer {
  position: absolute;
  top: 100vh;
  right: 0;
  left: 0;
  height: 150px;
  z-index: -999;
}

.notice-banner {
  position: relative;
  width: 100%;
  min-height: 60px;
  max-height: 100vh;
  background-color: #002642;
  color: #ffffff;
  transition: all 0.2s ease-in-out;
  overflow: hidden;
  z-index: 1000;
}
.notice-banner.notice-banner-hide {
  height: 0;
  min-height: 0;
  overflow: hidden;
}
.notice-banner .container {
  height: 100%;
  min-height: 60px;
}
.notice-banner .container .notice-banner-wrap {
  display: flex;
  height: 100%;
  min-height: 60px;
  justify-content: space-between;
  align-items: flex-start;
  margin: 0px 25px;
  padding: 12px 0px;
}
@media print, screen and (min-width: 40em) {
  .notice-banner .container .notice-banner-wrap {
    align-items: center;
  }
}
.notice-banner .container .notice-banner-wrap .notice-banner-wrap-left {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  width: calc(100% - 30px);
}
@media print, screen and (min-width: 40em) {
  .notice-banner .container .notice-banner-wrap .notice-banner-wrap-left {
    width: calc(100% - 15px);
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
}
.notice-banner .container .notice-banner-wrap .notice-text {
  flex-grow: 1;
  font-family: "canada-type-gibson", sans-serif;
  font-size: var(--smallFontSizea);
  line-height: 140%;
  font-weight: 400;
  color: #ffffff;
}
.notice-banner .container .notice-banner-wrap button,
.notice-banner .container .notice-banner-wrap a.button,
.notice-banner .container .notice-banner-wrap a.button-small {
  flex-shrink: 1;
  margin: 10px 0;
}
@media print, screen and (min-width: 40em) {
  .notice-banner .container .notice-banner-wrap button,
  .notice-banner .container .notice-banner-wrap a.button,
  .notice-banner .container .notice-banner-wrap a.button-small {
    margin: 0px 25px;
  }
}
.notice-banner .container .notice-banner-wrap button:hover,
.notice-banner .container .notice-banner-wrap a.button:hover,
.notice-banner .container .notice-banner-wrap a.button-small:hover {
  background: #ffffff !important;
  color: #1380cd !important;
}
.notice-banner .container .notice-banner-wrap a.underline-link {
  font-family: "canada-type-gibson", sans-serif;
  font-size: var(--smallFontSizea);
  line-height: 140%;
  font-weight: 400;
  margin: 0 30px;
  color: #ffffff;
}
.notice-banner .container .notice-banner-wrap a.underline-link:before, .notice-banner .container .notice-banner-wrap a.underline-link:after {
  background-color: #ffffff;
}
.notice-banner .container .notice-banner-wrap .notice-buttons {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-end;
}
@media print, screen and (min-width: 40em) {
  .notice-banner .container .notice-banner-wrap .notice-buttons a {
    margin-left: 20px;
  }
}
.notice-banner .container .notice-banner-wrap .notice-buttons a.button {
  margin-bottom: 0;
  white-space: nowrap;
}
.notice-banner .container .notice-banner-wrap .notice-buttons a.button:hover {
  background-color: #1380cd;
}
.notice-banner .container .notice-banner-wrap .notice-banner-close {
  text-align: right;
  width: 15px;
  flex-grow: 1;
  margin-top: 5px;
}
@media print, screen and (min-width: 40em) {
  .notice-banner .container .notice-banner-wrap .notice-banner-close {
    margin-top: 0;
  }
}
.notice-banner .container .notice-banner-wrap .notice-banner-close img {
  width: 15px;
}

.header-rescue,
.header-rescue-inner {
  width: 100%;
  transition: all 0.2s ease-in-out;
  height: 140px;
  height: 70px;
  /*
  height: $header-height-small;
  @include breakpoint(medium) {
  	height: $header-height;
  }
  */
}
@media print, screen and (min-width: 40em) {
  .header-rescue,
  .header-rescue-inner {
    height: 180px;
    height: 140px;
  }
}

.header {
  position: sticky;
  top: 0;
  left: 0;
  right: 0;
  z-index: 5000;
  background: none;
  padding: 0;
  height: 70px;
  margin-bottom: -70px;
  transition: all 0.2s ease-in-out;
  box-shadow: 0px 0px 25px 0px rgba(0, 0, 0, 0.075);
}
@media print, screen and (min-width: 60em) {
  .header {
    height: 140px;
    margin-bottom: -140px;
  }
}
.header.header-scrolled2:not(.mobile-menu-open) {
  background-color: #ffffff;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  height: 60px;
  box-shadow: 0px 0px 25px 0px rgba(0, 0, 0, 0.075);
}
.header.header-scrolled2:not(.mobile-menu-open) .header-main {
  height: 60px;
}
.header.header-scrolled2:not(.mobile-menu-open) .header-wrap {
  height: 60px;
}
.header.header-scrolled2:not(.mobile-menu-open) .header-top {
  display: none;
}
.header.header-scrolled2:not(.mobile-menu-open) .header-bottom .header-left svg {
  width: 130px;
}
.header.header-scrolled2:not(.mobile-menu-open) .notice-banner {
  min-height: 0;
  max-height: 0;
}
.header.header-scrolled:not(.header-reveal):not(.mobile-menu-open) {
  opacity: 0;
  z-index: -1;
}
.header svg #fill {
  fill: #002642;
  transition: all 0.2s ease-in-out;
}
.header svg #logomark {
  fill: #ff5f15;
  transition: all 0.2s ease-in-out;
}
.header svg #wordmark {
  fill: #002642;
  transition: all 0.2s ease-in-out;
}
.header .header-main {
  height: 70px;
}
@media print, screen and (min-width: 60em) {
  .header .header-main {
    height: 140px;
  }
}
.header .header-wrap {
  height: 70px;
  display: flex;
  flex-direction: column;
}
@media print, screen and (min-width: 60em) {
  .header .header-wrap {
    height: 140px;
  }
}
.header .header-wrap .header-top {
  display: none;
  justify-content: space-between;
  align-items: center;
  border-bottom: rgba(0, 0, 0, 0.1) 1px solid;
}
@media print, screen and (min-width: 60em) {
  .header .header-wrap .header-top {
    display: flex;
    flex-flow: row wrap;
  }
}
.header .header-wrap .header-top .header-left span {
  font-family: "canada-type-gibson", sans-serif;
  font-size: var(--smallFontSizea);
  line-height: 140%;
  font-weight: 400;
}
.header .header-wrap .header-top .header-left span.site-name {
  font-weight: 600;
}
.header .header-wrap .header-top .header-right ul li a {
  font-family: "canada-type-gibson", sans-serif;
  font-size: var(--smallFontSizea);
  line-height: 140%;
  font-weight: 400;
}
.header .header-wrap .header-bottom {
  flex-grow: 1;
  display: flex;
  flex-flow: row wrap;
  justify-content: space-between;
  align-items: center;
}
.header .header-left {
  flex: 0 0 auto;
  width: auto;
  margin-right: 1rem;
  margin-left: 1rem;
  margin-right: 0;
}
.header .header-left .logo a svg {
  transition: all 0.2s ease-in-out;
  width: 140px;
}
@media print, screen and (min-width: 60em) {
  .header .header-left .logo a svg {
    width: 200px;
  }
}
.header .header-left .logo a svg #fill {
  transition: all 0.2s ease-in-out;
}
.header .header-right {
  flex: 1 1 0px;
  width: auto;
  margin-right: 1rem;
  margin-left: 1rem;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  margin-left: 0;
}
.header .header-right .menu-main-menu-container {
  display: none;
}
@media print, screen and (min-width: 60em) {
  .header .header-right .menu-main-menu-container {
    display: inline-block;
  }
  .header .header-right .menu-main-menu-container.invisible {
    display: none;
  }
}
.header .header-right ul {
  padding: 0;
  margin: 0;
  list-style: none;
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
[data-whatinput=mouse] .header .header-right ul li {
  outline: 0;
}
.header .header-right ul a,
.header .header-right ul .button {
  line-height: 1;
  text-decoration: none;
  display: block;
  padding: 0.7rem 1rem;
}
.header .header-right ul input,
.header .header-right ul select,
.header .header-right ul a,
.header .header-right ul button {
  margin-bottom: 0;
}
.header .header-right ul input {
  display: inline-block;
}
@media screen and (max-width: 39.9375em) {
  .header .header-right ul {
    justify-content: center;
    align-items: flex-start;
  }
}
.header .header-right ul li {
  position: relative;
  padding: 10px 0px;
  /*
  &.non-button a {
  	position: relative;
  	&:after {
  		content: "";
  		@include position(absolute, null,0,0,0);
  		right: 100px !important;
  		height: 2px;
  		background-color: $black;
  		transition: $transition;
  	}
  	&:hover:after {
  		right: 0 !important;
  	}
  }
  &.is-button {
  	a {
  		@include button-style();
          @include small-text(); ////
          font-weight: 700; ///////// From Button Small in mixins.scss
          padding: 6px 12px; //
          margin-left: 25px;
          &:after {
          	display: none;
          }
      }
         &.is-button-secondary {
          a {
  	        border: $secondary 1px solid;
  	        background-color: transparent;
  	        color: $secondary;
          }
          &:hover {
              a {
  	            background-color: $secondary;
  	            color: $white;
              }
          }
         }
         &.is-button-extra-left-margin a {
         	margin-left: 30px;
         }
  }
  */
}
.header .header-right ul li .mobile-only {
  display: none;
}
.header .header-right ul li a {
  font-family: "canada-type-gibson", sans-serif;
  font-size: var(--standardFontSizeb);
  line-height: 140%;
  font-weight: 400;
  color: #335168;
  position: relative;
  color: #335168;
  margin: 0px 5px;
  transition: all 0.2s ease-in-out;
}
@media print, screen and (min-width: 40em) {
  .header .header-right ul li a {
    padding: 0;
    margin: 0;
    margin-left: 30px;
  }
  .header .header-right ul li a:after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 1px;
    background-color: #002642;
    transition: all 0.2s ease-in-out;
  }
}
.header .header-right ul li:hover a:after {
  width: 100%;
}
.header .header-right ul li.button-parent a:after {
  display: none;
}
.header .header-right ul li.current-menu-ancestor a:after, .header .header-right ul li.current-page-ancestor a:after, .header .header-right ul li.current-menu-item a:after {
  width: 100%;
}
.header .header-right ul li ul {
  display: none;
  margin: 0;
  position: absolute;
  top: 42px;
  left: 30px;
  right: 0;
  text-align: center;
  width: 200px;
  z-index: 400;
}
.header .header-right ul li ul:before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: #002642;
  opacity: 1;
}
.header .header-right ul li ul li {
  margin: 0;
  padding: 0;
  border-bottom: 1px solid #1380cd;
}
.header .header-right ul li ul li a {
  background: transparent !important;
  display: block;
  padding: 5px 10px;
  font-weight: 400;
  text-transform: none;
  color: #ffffff !important;
  margin: 0;
  text-align: left;
}
.header .header-right ul li ul li a:hover {
  background-color: #1380cd !important;
}
.header .header-right ul li ul li a:before, .header .header-right ul li ul li a:after {
  display: none;
}
.header .header-right ul li:hover ul {
  display: block;
}
.header .header-right .menu-item-has-children > a {
  display: flex;
  flex-direction: row-reverse;
  align-items: center;
}
.header .header-right .menu-item-has-children > a:before {
  margin: 0 1px 1px 5px;
  content: url(../images/svg/chevron-down-navy.svg);
  width: 8px;
  height: 4px;
  right: 0;
}
.header .header-right .search-panel form {
  display: flex;
}
.header .header-right .search-panel form input {
  display: none;
  width: calc(100% - 74px);
  margin: 0;
  margin-left: 30px;
  border-radius: 5px;
}
.header .header-right .search-panel form button,
.header .header-right .search-panel form button:hover {
  width: 44px;
  background: none !important;
  border: none !important;
  padding: 0 0 0 20px;
  cursor: pointer;
}
.header .header-right .search-panel.visible form input {
  display: block;
}
.header .header-right .search-button {
  position: relative;
  cursor: pointer;
  margin: 0px 0px 0px 20px;
  transition: all 0.2s ease-in-out;
}
.header .header-right .search-button svg #fill {
  transition: all 0.2s ease-in-out;
}
.header .header-right .search-button:hover svg #fill {
  fill: #1380cd;
}
.header.mobile-menu-open svg #fill {
  fill: #ffffff !important;
}
.header.mobile-menu-open svg #wordmark {
  fill: #ffffff !important;
}
.header.mobile-menu-open .hamburger .hamburger__top-bun,
.header.mobile-menu-open .hamburger .hamburger__bottom-bun {
  background: #ffffff !important;
}
.header.mobile-menu-open .header-right ul li a {
  color: #ffffff;
}
.header.mobile-menu-open .header-right ul li a:after {
  background-color: #ffffff;
}

.mobile-menu-open .header-wrap .header-bottom {
  background-color: #002642;
}

body.post-type-service .header .header-right ul li.menu-services a:after {
  width: 100%;
}

body.post-type-location .header .header-right ul li.menu-locations a:after {
  width: 100%;
}

.light-header .header:not(.header-scrolled) {
  box-shadow: none;
}
.light-header .header:not(.header-scrolled) svg #fill {
  fill: #ffffff;
}
.light-header .header:not(.header-scrolled) svg #wordmark {
  fill: #ffffff;
}
.light-header .header:not(.header-scrolled) .header-wrap .header-top {
  border-bottom: rgba(255, 255, 255, 0.2) 1px solid;
  color: #ffffff;
}
.light-header .header:not(.header-scrolled) .header-left .logo svg #fill {
  fill: #ffffff;
}
.light-header .header:not(.header-scrolled) .header-right ul.menu li a:after {
  background-color: #ffffff;
}
.light-header .header:not(.header-scrolled) .header-right ul.menu li a.current-menu-ancestor a, .light-header .header:not(.header-scrolled) .header-right ul.menu li a.current-menu-item a {
  color: inherit;
}
.light-header .header:not(.header-scrolled) .header-right ul.menu li a ul {
  background: none;
  box-shadow: 2px 10px 20px 0 rgba(255, 255, 255, 0.1);
}
.light-header .header:not(.header-scrolled) .header-right ul.menu li a ul li a {
  color: #ffffff;
}
.light-header .header:not(.header-scrolled) .header-right ul.menu li a ul li a:hover {
  background: none;
}
.light-header .header:not(.header-scrolled) .header-right ul.menu li a {
  color: #ffffff;
}
.light-header .header:not(.header-scrolled) .header-right .search-button svg #fill {
  fill: #ffffff;
}
.light-header .header:not(.header-scrolled) .header-right .search-button:hover svg #fill {
  fill: #1380cd;
}
.light-header .header:not(.header-scrolled) .menu-item-has-children > a:before {
  content: url(../images/svg/chevron-down.svg);
}
.light-header .header:not(.header-scrolled) .hamburger__top-bun,
.light-header .header:not(.header-scrolled) .hamburger__middle-bun,
.light-header .header:not(.header-scrolled) .hamburger__bottom-bun {
  background-color: #ffffff;
}

.no-header-rescue .header-rescue {
  display: none;
}

/************************************************
*	Mobile Menu  								*
************************************************/
.mobile-menu-button {
  position: relative;
  cursor: pointer;
  width: 30px;
  height: 30px;
  z-index: 1000;
  margin: 0px 0px 0px 20px;
  transition: all 0.2s ease-in-out;
}
@media print, screen and (min-width: 60em) {
  .mobile-menu-button {
    display: none;
  }
}

.mobile-menu-button-back {
  z-index: 11;
}

.hamburger {
  cursor: pointer;
  position: absolute;
  width: 30px;
  height: 30px;
  transition: all 0.25s;
}

.hamburger__top-bun,
.hamburger__middle-bun,
.hamburger__bottom-bun {
  content: "";
  display: block;
  position: absolute;
  left: 0px;
  width: 30px;
  height: 2px;
  background: #002642;
  transform: rotate(0);
  transition: all 0.25s;
}

.hamburger:hover [class*=-bun] {
  opacity: 0.8;
}

.hamburger__top-bun {
  top: 14px;
  transform: translateY(-4px);
  transform: translateY(-8px);
}

.hamburger__middle-bun {
  top: 14px;
}

.hamburger__bottom-bun {
  bottom: 14px;
  transform: translateY(4px);
  transform: translateY(8px);
}

.open {
  transform: rotate(90deg);
  background: none !important;
  border-radius: 50%;
}

.open .hamburger__top-bun {
  background: #002642;
  transform: rotate(45deg) translateY(0px);
}

.open .hamburger__middle-bun {
  opacity: 0 !important;
}

.open .hamburger__bottom-bun {
  background: #002642;
  transform: rotate(-45deg) translateY(0px);
}

.wh-hamburger {
  position: absolute;
  top: 0px;
  right: 0px;
  width: 30px;
  height: 25px;
}
.wh-hamburger span.wh-hamburger-top,
.wh-hamburger span.wh-hamburger-middle,
.wh-hamburger span.wh-hamburger-bottom {
  width: 30px;
  height: 5px;
  border-radius: 5px;
  position: absolute;
  top: 0;
  left: 0;
  background-color: #002642;
  transition: width 0.1s ease-in-out;
}
.wh-hamburger span.wh-hamburger-top.wh-hamburger-middle,
.wh-hamburger span.wh-hamburger-middle.wh-hamburger-middle,
.wh-hamburger span.wh-hamburger-bottom.wh-hamburger-middle {
  top: 10px;
  width: 17px;
}
.wh-hamburger span.wh-hamburger-top.wh-hamburger-bottom,
.wh-hamburger span.wh-hamburger-middle.wh-hamburger-bottom,
.wh-hamburger span.wh-hamburger-bottom.wh-hamburger-bottom {
  top: 20px;
  width: 24px;
}
.wh-hamburger:hover span.wh-hamburger-top,
.wh-hamburger:hover span.wh-hamburger-middle,
.wh-hamburger:hover span.wh-hamburger-bottom {
  width: 30px;
}

.mobile-menu-close {
  position: absolute;
  top: 0px;
  right: 0px;
  width: 25px;
  height: 25px;
}
.mobile-menu-close span.mobile-menu-close-left,
.mobile-menu-close span.mobile-menu-close-right {
  width: 25px;
  height: 3px;
  border-radius: 5px;
  position: absolute;
  top: 11.75px;
  left: 0;
  background-color: #ffffff;
}
.mobile-menu-close span.mobile-menu-close-left.mobile-menu-close-left,
.mobile-menu-close span.mobile-menu-close-right.mobile-menu-close-left {
  transform: rotate(-45deg);
}
.mobile-menu-close span.mobile-menu-close-left.mobile-menu-close-right,
.mobile-menu-close span.mobile-menu-close-right.mobile-menu-close-right {
  transform: rotate(45deg);
}

.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: -999;
  overflow-y: scroll;
  transition: all 0.2s ease-in-out;
  opacity: 0;
}
.mobile-menu .mobile-menu-cover {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: #002642;
  opacity: 1;
}
.mobile-menu .container {
  position: relative;
}
.mobile-menu .container .mobile-menu-wrap {
  display: flex;
  flex-direction: column;
  position: fixed;
  top: 120px;
  left: 0;
  right: 0;
  bottom: 0;
  overflow-y: scroll;
}
.mobile-menu .container .mobile-menu-wrap .mobile-menu-body {
  width: calc(100% - 20px);
  flex-grow: 1;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  text-align: center;
  flex-direction: column;
  margin: 0 10px;
}
.mobile-menu .container .mobile-menu-wrap .mobile-menu-body > div {
  width: 100%;
  padding: 35px 0;
  border-bottom: 1px #335168 solid;
}
.mobile-menu .container .mobile-menu-wrap .mobile-menu-body div:first-child {
  padding-top: 0;
}
.mobile-menu .container .mobile-menu-wrap .mobile-menu-body div:last-child {
  padding-bottom: 0;
  border: none;
}
@media screen and (max-height: 780px) {
  .mobile-menu .container .mobile-menu-wrap .mobile-menu-body {
    margin: 70px 0 0;
  }
}
.mobile-menu .container .mobile-menu-wrap .mobile-menu-body .mobile-menu-body-menus {
  display: flex;
  flex-flow: row wrap;
  width: 100%;
  margin: 0;
  justify-content: center;
  align-items: flex-start;
}
@media screen and (min-width: 86.25em) {
  .mobile-menu .container .mobile-menu-wrap .mobile-menu-body .mobile-menu-body-menus {
    margin: 0 0 0 30px;
  }
}
.mobile-menu .container .mobile-menu-wrap .mobile-menu-body ul.menu {
  flex-direction: column;
}
.mobile-menu .container .mobile-menu-wrap .mobile-menu-body ul.menu li {
  width: 100%;
  display: block;
  padding: 10px 0;
}
.mobile-menu .container .mobile-menu-wrap .mobile-menu-body ul.menu li:last-child {
  border-bottom: none;
}
.mobile-menu .container .mobile-menu-wrap .mobile-menu-body ul.menu li a {
  font-family: "canada-type-gibson", sans-serif;
  font-size: var(--standardFontSizeb);
  line-height: 140%;
  font-weight: 400;
  color: #335168;
  color: #ffffff;
  padding: 0;
  transition: color 0.2s ease-in-out;
}
.mobile-menu .container .mobile-menu-wrap .mobile-menu-body ul.menu li a:hover {
  color: #1380cd;
}
.mobile-menu .container .mobile-menu-wrap .mobile-menu-body ul.menu li:not(.button-parent) {
  font-family: "canada-type-gibson", sans-serif;
  font-size: var(--largeFontSizeb);
  line-height: 140%;
  font-weight: 400;
}
@media print, screen and (min-width: 40em) {
  .mobile-menu .container .mobile-menu-wrap .mobile-menu-body ul.menu li:not(.button-parent) {
    font-size: var(--largeFontSizea);
  }
}
.mobile-menu .container .mobile-menu-wrap .mobile-menu-body ul.menu li:not(.button-parent) a {
  padding-left: 0;
  padding-right: 0;
}
.mobile-menu .container .mobile-menu-wrap .mobile-menu-body ul.menu li.button-parent a {
  display: inline-block;
  font-size: 16px;
  line-height: 100%;
  font-weight: 500;
  padding: 12px 18px;
  background-color: #002642;
  border: #002642 1px solid;
  color: #ffffff;
  border-radius: 5px;
  text-decoration: none;
  transition: all 0.2s ease-in-out;
  font-family: "canada-type-gibson", sans-serif;
  font-size: var(--smallFontSizea);
  line-height: 140%;
  font-weight: 400;
  font-weight: 700;
  padding: 6px 12px;
  border-bottom: none;
  background-color: #ff5f15;
  border-color: #ff5f15;
}
.mobile-menu .container .mobile-menu-wrap .mobile-menu-body ul.menu li.button-parent a:hover {
  background-color: #1380cd;
  border: #1380cd 1px solid;
  color: #ffffff;
}
.mobile-menu .container .mobile-menu-wrap .mobile-menu-body ul.menu li.button-parent a:hover {
  background-color: #ffffff !important;
  border-color: #ffffff !important;
  color: #002642 !important;
}
.mobile-menu .container .mobile-menu-wrap .mobile-menu-body ul.menu li.current_page_item:not(.is-button) > a, .mobile-menu .container .mobile-menu-wrap .mobile-menu-body ul.menu li.current-page-parent:not(.is-button) > a {
  color: #1380cd;
}
.mobile-menu .container .mobile-menu-wrap .mobile-menu-body ul.menu li ul {
  margin: 0;
  padding-top: 10px;
}
.mobile-menu .container .mobile-menu-wrap .mobile-menu-body ul.menu li ul li {
  border-bottom: none;
  padding: 5px 0;
}
.mobile-menu .container .mobile-menu-wrap .mobile-menu-body ul.menu li ul li a {
  font-family: "canada-type-gibson", sans-serif;
  font-size: var(--standardFontSizeb);
  line-height: 140%;
  font-weight: 400;
  color: #335168;
  color: #ffffff;
}
@media print, screen and (min-width: 53.125em) {
  .mobile-menu .container .mobile-menu-wrap .mobile-menu-body ul.menu li ul li a {
    font-size: var(--standardFontSizea);
  }
}
.mobile-menu .container .mobile-menu-wrap .mobile-menu-body .menu-item-has-children > a {
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}
.mobile-menu .container .mobile-menu-wrap .mobile-menu-body .menu-item-has-children > a:after {
  transition: all 0.5s ease-in-out;
  margin: 0 1px 2px 10px;
  content: url(../images/svg/chevron-down.svg);
  width: 8px;
  height: 4px;
  right: 0;
}
.mobile-menu .container .mobile-menu-wrap .mobile-menu-body .menu-item-has-children ul.sub-menu {
  display: none;
  transition: all 0.3s ease-in-out;
  margin-top: 12px !important;
  padding-bottom: 2.5px;
  padding-top: 2.5px !important;
  width: 100vw;
  margin-left: -10px;
  background-color: #001c30;
}
.mobile-menu .container .mobile-menu-wrap .mobile-menu-body .menu-item-has-children ul.sub-menu li.menu-item {
  padding: 7.5px 10px;
}
.mobile-menu .container .mobile-menu-wrap .mobile-menu-body .menu-item-has-children ul.sub-menu li.menu-item a {
  font-size: 14px;
}
.mobile-menu .container .mobile-menu-wrap .mobile-menu-body .menu-item-has-children.sub-menu-open > a:after {
  margin-top: 3px;
  transform: scaleY(-1);
}
.mobile-menu .container .mobile-menu-wrap .mobile-menu-body .menu-item-has-children.sub-menu-open ul {
  display: block;
}
.mobile-menu .container .mobile-menu-wrap .mobile-menu-body .mobile-menu-buttons a:first-child {
  margin-right: 8px;
}

.mobile-menu.mobile-menu-on {
  z-index: 999;
  opacity: 1;
}

#mobnav,
#mobnav ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
@media screen and (max-width: 39.9375em) {
  #mobnav .menu,
  #mobnav ul .menu {
    text-align: center;
    justify-content: center;
    align-items: flex-start;
  }
}
#mobnav li,
#mobnav ul li {
  display: block;
  width: 100%;
  margin: 0;
  padding: 10px 0;
}
#mobnav li a,
#mobnav ul li a {
  display: block;
  font-size: 24px;
  line-height: 34px;
  color: #002642;
  transition: all 0.2s ease-in-out;
}
#mobnav li a:hover,
#mobnav ul li a:hover {
  text-decoration: none;
  opacity: 0.5;
}

#mobnav li.gap-after {
  margin-bottom: 60px;
}

#mobnav li.highlight a {
  color: #002642;
}

/************************************************
*	Search Overlay  							*
************************************************/
.search-overlay {
  display: none;
  opacity: 0;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: rgba(255, 255, 255, 0.98);
  z-index: 3000;
  font-family: "canada-type-gibson", sans-serif;
  justify-content: center;
  align-items: center;
  transition: all 0.3s ease-in-out;
}
.search-overlay .search-close {
  background-color: #002642;
  padding: 10px;
  border-radius: 5px;
  position: fixed;
  top: 75px;
  right: 50px;
  cursor: pointer;
}
@media screen and (min-width: 103.125em) {
  .search-overlay .search-close {
    right: calc((100% - 1600px) / 2);
  }
}
.search-overlay .search-overlay-inner {
  text-align: center;
}
.search-overlay #searchform {
  position: relative;
}
.search-overlay #searchform ::-webkit-input-placeholder {
  /* Chrome/Opera/Safari */
  color: #99a8b3 !important;
}
.search-overlay #searchform ::-moz-placeholder {
  /* Firefox 19+ */
  color: #99a8b3 !important;
}
.search-overlay #searchform :-ms-input-placeholder {
  /* IE 10+ */
  color: #99a8b3 !important;
}
.search-overlay #searchform :-moz-placeholder {
  /* Firefox 18- */
  color: #99a8b3 !important;
}
.search-overlay input[type=text] {
  background: none;
  border: none;
  border-bottom: #99a8b3 1px solid;
  color: #002642;
  padding: 15px 0;
  text-align: left;
  text-align: center;
  font-size: 48px;
  font-family: "canada-type-gibson", sans-serif;
  height: 80px;
  width: 840px;
  max-width: 100%;
  font-weight: 300;
  -moz-box-shadow: none;
  -webkit-box-shadow: none;
  box-shadow: none;
}
.search-overlay .form-footer {
  padding-top: 45px;
}
.search-overlay .form-footer input[type=submit] {
  background: #002642;
  color: #ffffff;
}

.search-overlay-block {
  display: flex;
  transition: all 0.3s ease-in-out;
}

.search-overlay-opacity {
  opacity: 1;
  transition: all 0.3s ease-in-out;
}

.search-section-title {
  float: left;
  width: 100%;
  display: block;
  padding: 60px 0 40px;
  font-size: 14px;
  line-height: 20px;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 400;
}

.main-content > h1,
.main-content > h2,
.main-content > h3,
.main-content > h4,
.main-content > h5,
.main-content > p,
.main-content > ul,
.main-content > ol,
.main-content > .gform_wrapper,
.main-content > .wp-block-embed,
.main-content > .small-text,
.main-content > blockquote,
.main-content > .wp-block-pullquote,
.main-content > div.large-text,
.main-content > .above-text,
.main-content > .above-title,
.main-content .line-link-wrapper,
.main-content .underline-link-wrapper,
.main-content .team-single-image,
.main-content .wp-block-buttons,
.main-content .wp-block-image,
.main-content .wp-block-file,
.main-content .video-link,
.main-content .contained {
  margin-left: 20px;
  margin-right: 20px;
}
@media print, screen and (min-width: 53.125em) {
  .main-content > h1,
  .main-content > h2,
  .main-content > h3,
  .main-content > h4,
  .main-content > h5,
  .main-content > p,
  .main-content > ul,
  .main-content > ol,
  .main-content > .gform_wrapper,
  .main-content > .wp-block-embed,
  .main-content > .small-text,
  .main-content > blockquote,
  .main-content > .wp-block-pullquote,
  .main-content > div.large-text,
  .main-content > .above-text,
  .main-content > .above-title,
  .main-content .line-link-wrapper,
  .main-content .underline-link-wrapper,
  .main-content .team-single-image,
  .main-content .wp-block-buttons,
  .main-content .wp-block-image,
  .main-content .wp-block-file,
  .main-content .video-link,
  .main-content .contained {
    max-width: 920px;
    margin-left: auto;
    margin-right: auto;
  }
}
.main-content > p {
  margin-left: 20px;
  margin-right: 20px;
}
@media print, screen and (min-width: 53.125em) {
  .main-content > p {
    max-width: 920px;
    margin-left: auto;
    margin-right: auto;
  }
}
.main-content .contained-wide {
  margin-left: 20px;
  margin-right: 20px;
}
@media print, screen and (min-width: 53.125em) {
  .main-content .contained-wide {
    max-width: 1160px;
    margin-left: auto;
    margin-right: auto;
  }
}
.main-content .contained-narrow {
  margin-left: 20px;
  margin-right: 20px;
}
@media print, screen and (min-width: 53.125em) {
  .main-content .contained-narrow {
    max-width: 680px;
    margin-left: auto;
    margin-right: auto;
  }
}
.main-content .wp-block-buttons {
  margin-bottom: 30px;
}
.main-content .section-divider {
  width: 100%;
  height: 30px;
}
@media print, screen and (min-width: 40em) {
  .main-content .section-divider {
    height: 50px;
  }
}
@media print, screen and (min-width: 64em) {
  .main-content .section-divider {
    height: 80px;
  }
}
.main-content .section-divider.section-divider-small {
  height: 15px;
}
@media print, screen and (min-width: 40em) {
  .main-content .section-divider.section-divider-small {
    height: 25px;
  }
}
@media print, screen and (min-width: 64em) {
  .main-content .section-divider.section-divider-small {
    height: 40px;
  }
}
.main-content .main-text {
  width: calc(100% - 2rem);
  margin-right: 1rem;
  margin-left: 1rem;
}
@media print, screen and (min-width: 40em) {
  .main-content .main-text {
    width: calc(83.3333333333% - 2rem);
    margin-right: 1rem;
    margin-left: 1rem;
    margin-left: calc(8.3333333333% + 1rem);
  }
}
@media print, screen and (min-width: 64em) {
  .main-content .main-text {
    width: calc(66.6666666667% - 2rem);
    margin-right: 1rem;
    margin-left: 1rem;
    margin-left: calc(16.6666666667% + 1rem);
  }
}
.main-content .wide-text {
  width: calc(100% - 2rem);
  margin-right: 1rem;
  margin-left: 1rem;
}
@media print, screen and (min-width: 40em) {
  .main-content .wide-text {
    width: calc(83.3333333333% - 2rem);
    margin-right: 1rem;
    margin-left: 1rem;
    margin-left: calc(8.3333333333% + 1rem);
  }
}
.main-content .titlearea {
  width: calc(100% - 2rem);
  margin-right: 1rem;
  margin-left: 1rem;
  margin-bottom: 50px;
}
@media print, screen and (min-width: 40em) {
  .main-content .titlearea {
    width: calc(66.6666666667% - 2rem);
    margin-right: 1rem;
    margin-left: 1rem;
  }
}
@media print, screen and (min-width: 64em) {
  .main-content .titlearea {
    width: calc(50% - 2rem);
    margin-right: 1rem;
    margin-left: 1rem;
  }
}
.main-content .grid-wrap {
  width: 100%;
  display: flex;
  flex-flow: row wrap;
}
.main-content .grid-pod,
.main-content .search-pod {
  position: relative;
  width: calc(100% - 2rem);
  margin-right: 1rem;
  margin-left: 1rem;
  margin-bottom: 20px;
}
@media print, screen and (min-width: 40em) {
  .main-content .grid-pod,
  .main-content .search-pod {
    margin-bottom: 50px;
  }
}
.main-content .grid-pod .grid-pod-image,
.main-content .search-pod .grid-pod-image {
  position: relative;
  width: 100%;
  background-color: #f5f7f8;
  border-radius: 5px;
  overflow: hidden;
}
.main-content .grid-pod .grid-pod-image:before,
.main-content .search-pod .grid-pod-image:before {
  content: "";
  display: block;
  width: 100%;
  height: 0;
  padding-bottom: 66.6666%;
}
.main-content .grid-pod .grid-pod-image img,
.main-content .search-pod .grid-pod-image img {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.5s ease-in-out;
}
.main-content .grid-pod .grid-pod-text,
.main-content .search-pod .grid-pod-text {
  padding: 20px 0 0;
}
.main-content .grid-pod .grid-pod-text .grid-pod-text-top,
.main-content .search-pod .grid-pod-text .grid-pod-text-top {
  padding-bottom: 10px;
}
.main-content .grid-pod .grid-pod-text .grid-pod-text-top .grid-pod-title,
.main-content .search-pod .grid-pod-text .grid-pod-text-top .grid-pod-title {
  display: block;
  font-family: "canada-type-gibson", sans-serif;
  font-size: var(--headerFontSize5b);
  line-height: 110%;
  font-weight: 600;
  color: #002642;
  margin: 40px 0 15px;
  padding-bottom: 2px;
}
@media print, screen and (min-width: 40em) {
  .main-content .grid-pod .grid-pod-text .grid-pod-text-top .grid-pod-title,
  .main-content .search-pod .grid-pod-text .grid-pod-text-top .grid-pod-title {
    font-size: var(--headerFontSize5a);
  }
}
@media print, screen and (min-width: 53.125em) {
  .main-content .grid-pod .grid-pod-text .grid-pod-text-top .grid-pod-title,
  .main-content .search-pod .grid-pod-text .grid-pod-text-top .grid-pod-title {
    font-size: var(--headerFontSize4b);
  }
}
@media print, screen and (min-width: 64em) {
  .main-content .grid-pod .grid-pod-text .grid-pod-text-top .grid-pod-title,
  .main-content .search-pod .grid-pod-text .grid-pod-text-top .grid-pod-title {
    font-size: var(--headerFontSize4a);
  }
}
.main-content .grid-pod .grid-pod-text .grid-pod-text-top .grid-pod-meta,
.main-content .search-pod .grid-pod-text .grid-pod-text-top .grid-pod-meta {
  font-family: "canada-type-gibson", sans-serif;
  font-size: var(--smallFontSizea);
  line-height: 140%;
  font-weight: 400;
}
.main-content .grid-pod .grid-pod-text .grid-pod-text-top .grid-pod-meta .tax-list,
.main-content .search-pod .grid-pod-text .grid-pod-text-top .grid-pod-meta .tax-list {
  display: inline-flex;
}
.main-content .grid-pod .grid-pod-text .grid-pod-text-top .grid-pod-meta .tax-list span:first-child:before,
.main-content .search-pod .grid-pod-text .grid-pod-text-top .grid-pod-meta .tax-list span:first-child:before {
  display: inline-block;
}
.main-content .grid-pod .grid-pod-text .grid-pod-text-bottom,
.main-content .search-pod .grid-pod-text .grid-pod-text-bottom {
  margin-top: 20px;
}
.main-content .grid-pod a.grid-pod-link,
.main-content .search-pod a.grid-pod-link {
  position: absolute !important;
  top: 0rem !important;
  right: 0rem !important;
  bottom: 0rem !important;
  left: 0rem !important;
}
.main-content .grid-pod:hover .grid-pod-image img,
.main-content .search-pod:hover .grid-pod-image img {
  transform: scale(1.03);
}
.main-content .grid-pod:hover .grid-pod-text .grid-pod-text-bottom a.button,
.main-content .search-pod:hover .grid-pod-text .grid-pod-text-bottom a.button {
  background-color: #002642;
  border-color: #002642;
}
@media print, screen and (min-width: 40em) {
  .main-content .grid-pod {
    width: calc(50% - 2rem);
    margin-right: 1rem;
    margin-left: 1rem;
  }
}
@media print, screen and (min-width: 64em) {
  .main-content .grid-pod {
    width: calc(33.3333333333% - 2rem);
    margin-right: 1rem;
    margin-left: 1rem;
  }
}
.main-content .search-pod {
  width: calc(100% - 2rem);
  margin-right: 1rem;
  margin-left: 1rem;
  width: 100%;
  margin-left: 0;
  margin-right: 0;
}

.success-story-pod .above-text {
  color: #f43601;
}
.success-story-pod .success-story-pod-title {
  font-family: "canada-type-gibson", sans-serif;
  font-size: var(--headerFontSize5b);
  line-height: 110%;
  font-weight: 600;
  color: #002642;
  margin: 40px 0 15px;
  margin: 10px 0;
}
@media print, screen and (min-width: 40em) {
  .success-story-pod .success-story-pod-title {
    font-size: var(--headerFontSize5a);
  }
}
@media print, screen and (min-width: 53.125em) {
  .success-story-pod .success-story-pod-title {
    font-size: var(--headerFontSize4b);
  }
}
@media print, screen and (min-width: 64em) {
  .success-story-pod .success-story-pod-title {
    font-size: var(--headerFontSize4a);
  }
}
.success-story-pod .success-story-pod-title svg {
  width: 20px;
  margin-left: 12px;
}
.success-story-pod .success-story-pod-description p {
  font-family: "canada-type-gibson", sans-serif;
  font-size: var(--smallFontSizea);
  line-height: 140%;
  font-weight: 400;
  margin-bottom: 10px;
}
.success-story-pod .success-story-pod-bottom span {
  color: #f43601;
  text-decoration: underline;
}

.press-pod .above-text {
  color: #1380cd;
}
.press-pod .press-pod-title {
  font-family: "canada-type-gibson", sans-serif;
  font-size: var(--headerFontSize5b);
  line-height: 110%;
  font-weight: 600;
  color: #002642;
  margin: 40px 0 15px;
  margin: 10px 0;
}
@media print, screen and (min-width: 40em) {
  .press-pod .press-pod-title {
    font-size: var(--headerFontSize5a);
  }
}
@media print, screen and (min-width: 53.125em) {
  .press-pod .press-pod-title {
    font-size: var(--headerFontSize4b);
  }
}
@media print, screen and (min-width: 64em) {
  .press-pod .press-pod-title {
    font-size: var(--headerFontSize4a);
  }
}
.press-pod .press-pod-description p {
  font-family: "canada-type-gibson", sans-serif;
  font-size: var(--smallFontSizea);
  line-height: 140%;
  font-weight: 400;
  margin-bottom: 10px;
}
.press-pod .press-pod-bottom {
  transition: all 0.5s ease-in-out;
  transform-origin: left;
  display: flex;
  align-items: center;
}
.press-pod .press-pod-bottom a {
  transition: all 0.5s ease-in-out;
  font-weight: 500;
  border-bottom: #1380cd 1px solid;
}
.press-pod .press-pod-bottom .linkoff-icon {
  margin-left: 6px;
}
.press-pod .press-pod-bottom .linkoff-icon svg path {
  transition: all 0.5s ease-in-out;
}
.press-pod:hover .press-pod-bottom {
  transform: scale(1.05);
}
.press-pod:hover .press-pod-bottom a {
  color: #002642;
  border-color: #002642;
}
.press-pod:hover .press-pod-bottom .linkoff-icon svg path {
  fill: #002642;
}

.tax-list {
  display: flex;
}
.tax-list span {
  font-family: "canada-type-gibson", sans-serif;
  font-size: var(--smallFontSizea);
  line-height: 140%;
  font-weight: 400;
  padding-left: 8px;
}
.tax-list span:before {
  content: "•";
  padding-right: 8px;
}
.tax-list span:first-child:before {
  display: none;
}

.single-hero {
  position: relative;
  min-height: 700px;
  border-bottom: 20px solid #1380cd;
  margin-bottom: 60px;
}
.single-hero .single-hero-image {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  background-color: #f5f7f8;
}
.single-hero .single-hero-image:before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 1;
  background-color: rgba(0, 0, 0, 0.5);
}
@media print, screen and (min-width: 60em) {
  .single-hero .single-hero-image:before {
    width: 30%;
  }
}
@media print, screen and (min-width: 60em) {
  .single-hero .single-hero-image:after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 30%;
    width: 40%;
    z-index: 1;
    background: rgb(0, 0, 0);
    background: -moz-linear-gradient(90deg, rgba(0, 0, 0, 0.5004376751) 0%, rgba(0, 0, 0, 0) 100%);
    background: -webkit-linear-gradient(90deg, rgba(0, 0, 0, 0.5004376751) 0%, rgba(0, 0, 0, 0) 100%);
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.5004376751) 0%, rgba(0, 0, 0, 0) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#000000",endColorstr="#000000",GradientType=1);
  }
}
.single-hero .container {
  position: relative;
  z-index: 2;
  height: 100%;
}
.single-hero .container .main-content {
  height: 100%;
}
.single-hero .container .main-content .single-hero-text {
  width: calc(100% - 2rem);
  margin-right: 1rem;
  margin-left: 1rem;
  color: #ffffff;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  height: 100%;
  padding: 50px 0;
}
@media print, screen and (min-width: 64em) {
  .single-hero .container .main-content .single-hero-text {
    width: calc(41.6666666667% - 2rem);
    margin-right: 1rem;
    margin-left: 1rem;
  }
}
.single-hero .container .main-content .single-hero-text .single-meta {
  font-family: "canada-type-gibson", sans-serif;
  font-size: var(--smallFontSizeb);
  line-height: 140%;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: #1380cd;
  margin-bottom: 20px;
}
@media print, screen and (min-width: 40em) {
  .single-hero .container .main-content .single-hero-text .single-meta {
    font-size: var(--smallFontSizea);
  }
}
.single-hero .container .main-content .single-hero-text .single-meta span.single-meta-date {
  color: #99a8b3;
  text-transform: capitalize;
}
.single-hero .container .main-content .single-hero-text .single-meta span.single-meta-date:before {
  content: " | ";
  padding: 0 10px;
}
.single-hero .container .main-content .single-hero-text h1 {
  color: #ffffff;
  margin: 0;
}
.single-hero .container .main-content .single-hero-text .single-hero-text-intro-paragraph {
  margin-top: 20px;
}
.single-hero .container .main-content .single-hero-text .single-hero-text-intro-paragraph p {
  color: #ffffff;
}
.single-hero.single-hero-blue {
  border-bottom-color: #1380cd;
}
.single-hero.single-hero-blue .container .main-content .single-hero-text .single-meta {
  color: #1380cd;
}

.single-meta {
  font-family: "canada-type-gibson", sans-serif;
  font-size: var(--smallFontSizeb);
  line-height: 140%;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: #1380cd;
  margin-bottom: 20px;
}
@media print, screen and (min-width: 40em) {
  .single-meta {
    font-size: var(--smallFontSizea);
  }
}
.single-meta span.single-meta-date {
  color: #99a8b3;
  text-transform: capitalize;
}
.single-meta span.single-meta-date:before {
  content: " | ";
  padding: 0 10px;
}

.section-header {
  display: flex;
  flex-flow: row wrap;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 70px;
}
.section-header .section-header-center {
  display: flex;
  flex-flow: column wrap;
  text-align: center;
}
@media print, screen and (min-width: 40em) {
  .section-header .section-header-center {
    width: calc(83.3333333333% - 2rem);
    margin-right: 1rem;
    margin-left: 1rem;
    margin-left: calc(8.3333333333% + 1rem);
  }
}
@media print, screen and (min-width: 64em) {
  .section-header .section-header-center {
    width: calc(50% - 2rem);
    margin-right: 1rem;
    margin-left: 1rem;
    margin-left: calc(25% + 1rem);
  }
}
.section-header .section-header-left {
  width: calc(100% - 2rem);
  margin-right: 1rem;
  margin-left: 1rem;
}
@media print, screen and (min-width: 40em) {
  .section-header .section-header-left {
    width: calc(75% - 2rem);
    margin-right: 1rem;
    margin-left: 1rem;
  }
}
@media print, screen and (min-width: 64em) {
  .section-header .section-header-left {
    width: calc(58.3333333333% - 2rem);
    margin-right: 1rem;
    margin-left: 1rem;
  }
}
.section-header .section-header-right {
  display: flex;
  flex-flow: column wrap;
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
  align-items: center;
}
@media print, screen and (min-width: 40em) {
  .section-header .section-header-right {
    width: calc(25% - 2rem);
    margin-right: 1rem;
    margin-left: 1rem;
  }
}
@media print, screen and (min-width: 64em) {
  .section-header .section-header-right {
    width: calc(41.6666666667% - 2rem);
    margin-right: 1rem;
    margin-left: 1rem;
  }
}
.section-header .section-header-right .line-link-wrapper {
  margin: 0;
  text-align: right;
}
.section-header .section-header-right .button-wrapper {
  margin: 0 0 0 30px;
  text-align: right;
}
.section-header .section-header-right .button-wrapper a.button {
  margin-bottom: 0;
}
.section-header h2 {
  margin: 0 0 20px;
}
.section-header p {
  margin: 0;
}

.section-bg-white .section-header .section-header-right .line-link-wrapper a.line-link:after,
.section-bg-white .section-header .section-header-center .line-link-wrapper a.line-link:after,
.section-bg-offwhite .section-header .section-header-right .line-link-wrapper a.line-link:after,
.section-bg-offwhite .section-header .section-header-center .line-link-wrapper a.line-link:after {
  background-image: url("../images/arrow-black@2x.png");
}

.section-bg-green .section-header .section-header-right .line-link-wrapper a.line-link:after,
.section-bg-green .section-header .section-header-center .line-link-wrapper a.line-link:after,
.section-bg-black .section-header .section-header-right .line-link-wrapper a.line-link:after,
.section-bg-black .section-header .section-header-center .line-link-wrapper a.line-link:after {
  background-image: url("../images/arrow-white@2x.png");
}

.section-footer {
  width: 100%;
  display: flex;
  flex-flow: row wrap;
  justify-content: space-between;
  align-items: center;
}
.section-footer .section-footer-left {
  flex: 0 0 auto;
  width: auto;
  margin-right: 1rem;
  margin-left: 1rem;
}
.section-footer .section-footer-right {
  flex: 0 0 auto;
  width: auto;
  margin-right: 1rem;
  margin-left: 1rem;
}
.section-footer h2 {
  margin: 0;
}

.paging-info {
  display: flex;
  justify-content: flex-start;
  align-items: center;
}
.paging-info .paging-split {
  display: inline-block;
  width: 88px;
  height: 1px;
  background-color: #002642;
  margin: 3px 20px 0;
}

.section-bg-green .paging-info .paging-split {
  background-color: #ffffff;
}

.slick-custom-arrows {
  display: flex;
  justify-content: flex-end;
}
.slick-custom-arrows a {
  display: inline-block;
  width: 20px;
  height: 17px;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 20px 17px;
  font-size: 0;
}
.slick-custom-arrows a.slick-custom-next {
  background-image: url("../images/arrow-right-black@2x.png");
  margin-left: 30px;
}
.slick-custom-arrows a.slick-custom-prev {
  background-image: url("../images/arrow-left-black@2x.png");
}
.slick-custom-arrows a.no-link {
  pointer-events: none;
  opacity: 0.2;
}

.post-grid-container {
  position: relative;
}

.slick-custom-arrow-overlay {
  position: absolute;
  top: calc(50% - 20px);
  top: calc((100vw - 50px - 40px) * 0.5);
  display: inline-block;
  width: 40px;
  height: 40px;
  background-color: #ffffff;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 20px 17px;
  font-size: 0;
  border-radius: 50%;
}
@media screen and (min-width: 51.25em) {
  .slick-custom-arrow-overlay {
    top: calc(((100vw - 50px) / 1 - 40px) * 0.5);
  }
}
@media screen and (min-width: 78.125em) {
  .slick-custom-arrow-overlay {
    top: calc(((100vw - 50px) / 3 - 40px) * 0.5);
  }
}
@media screen and (min-width: 92.5em) {
  .slick-custom-arrow-overlay {
    top: 220px;
  }
}
.slick-custom-arrow-overlay.slick-custom-next {
  background-image: url("../images/arrow-right-black@2x.png");
  right: 22px;
}
@media screen and (min-width: 92.5em) {
  .slick-custom-arrow-overlay.slick-custom-next {
    right: calc((100vw - 1440px) / 2);
  }
}
.slick-custom-arrow-overlay.slick-custom-prev {
  background-image: url("../images/arrow-left-black@2x.png");
  left: 22px;
}
@media screen and (min-width: 92.5em) {
  .slick-custom-arrow-overlay.slick-custom-prev {
    left: calc((100vw - 1440px) / 2);
  }
}
.slick-custom-arrow-overlay.no-link {
  pointer-events: none;
  opacity: 0.2;
}

.section-bg-green .slick-custom-arrows a.slick-custom-next {
  background-color: #ffffff;
  background-image: url("../images/arrow-right-white@2x.png");
}
.section-bg-green .slick-custom-arrows a.slick-custom-prev {
  background-image: url("../images/arrow-left-white@2x.png");
}

.band {
  padding: 40px 0;
}
@media print, screen and (min-width: 40em) {
  .band {
    padding: 70px 0;
  }
}

.band-grey {
  background: #99a8b3;
}

.slick-wrap,
.slick-wrap .slick-list {
  overflow: visible;
}

.slick-slide {
  -webkit-transform: translate3d(0, 0, 0);
}

.slick-prev,
.slick-prev:hover,
.slick-next,
.slick-next:hover {
  outline: none;
  position: absolute;
  top: 0;
  bottom: 0;
  width: 1000px;
  margin: 0;
  padding: 0;
  background: none;
  border: none;
  font-size: 0;
  z-index: 100;
  cursor: pointer;
}

.slick-prev,
.slick-prev:hover {
  left: -980px;
}

.slick-next,
.slick-next:hover {
  right: -980px;
}

button.slick-prev {
  cursor: url("../images/arrow-left-large.png"), auto !important;
}

button.slick-next {
  cursor: url("../images/arrow-right-large.png"), auto !important;
}

.slick-dots {
  position: absolute;
  left: 0;
  bottom: 0;
  right: 0;
  z-index: 60;
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  justify-content: center;
}
.slick-dots li {
  width: 15px;
  height: 15px;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.slick-dots li button {
  margin: 0;
  padding: 0;
  font-size: 0;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background-color: #002642;
  opacity: 0.15;
}
.slick-dots li.slick-active button {
  opacity: 1;
}

.single-location-map {
  width: 100vw;
  height: 75vh;
  background: #002642;
}

.location-single-video-panel {
  overflow: hidden;
}

.bg-logomark {
  position: absolute;
  bottom: -50px;
  right: calc((100vw - 1440px) / 2);
}
.bg-logomark svg {
  opacity: 0.1;
}
.bg-logomark svg #fill {
  fill: #9ddefd;
}

.location-single-form-inner .gform_heading {
  text-align: center;
  margin-bottom: 75px;
}

.cta-outer {
  padding: 50px 0;
}
@media print, screen and (min-width: 53.125em) {
  .cta-outer {
    padding: 50px 0;
  }
}
.cta-outer.cta-none {
  display: none;
}
.cta-outer.cta-none.cta-gradient {
  display: block;
  height: 100px;
  background-image: linear-gradient(180deg, #ffffff 0%, #edf0f3 100%);
}
@media print, screen and (min-width: 53.125em) {
  .cta-outer.cta-none.cta-gradient {
    height: 200px;
  }
}
.cta-outer.cta-cta {
  padding: 50px 0 10px;
  background-image: linear-gradient(180deg, #ffffff 0%, #edf0f3 100%);
  position: relative;
}
@media print, screen and (min-width: 40em) {
  .cta-outer.cta-cta {
    padding: 100px 20px 10px;
  }
}
.cta-outer.cta-cta:after {
  content: "";
  height: calc(50% - 50px);
  width: 100%;
  left: 0;
  bottom: 0;
  position: absolute;
  background-color: #ffffff;
  z-index: 0;
}
.cta-outer.cta-cta .cta-bar-inner {
  position: relative;
  z-index: 10;
  background-image: linear-gradient(180deg, #00365e 0%, #002642 100%);
  padding: 40px;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  box-shadow: 0px 15px 25px -4px rgba(0, 0, 0, 0.08);
}
@media print, screen and (min-width: 40em) {
  .cta-outer.cta-cta .cta-bar-inner {
    padding: 60px 50px;
    border-radius: 20px;
  }
}
@media print, screen and (min-width: 48em) {
  .cta-outer.cta-cta .cta-bar-inner {
    width: calc(100% - 2rem);
    margin-right: 1rem;
    margin-left: 1rem;
  }
}
.cta-outer.cta-cta .cta-bar-inner .cta-bar-inner-left {
  flex-grow: 1;
  padding-right: 50px;
  width: 100%;
  text-align: center;
  padding-right: 0;
}
@media print, screen and (min-width: 48em) {
  .cta-outer.cta-cta .cta-bar-inner .cta-bar-inner-left {
    flex-grow: 1;
    width: auto;
    margin: 0 25px;
    text-align: left;
  }
}
.cta-outer.cta-cta .cta-bar-inner .cta-bar-inner-left p {
  display: block;
  font-family: "canada-type-gibson", sans-serif;
  font-size: var(--headerFontSize4b);
  line-height: 110%;
  font-weight: 600;
  color: #002642;
  margin: 40px 0 15px;
  margin: 0 0 10px;
  color: #ffffff;
}
@media print, screen and (min-width: 40em) {
  .cta-outer.cta-cta .cta-bar-inner .cta-bar-inner-left p {
    font-size: var(--headerFontSize4a);
  }
}
@media print, screen and (min-width: 53.125em) {
  .cta-outer.cta-cta .cta-bar-inner .cta-bar-inner-left p {
    font-size: var(--headerFontSize3b);
  }
}
@media print, screen and (min-width: 64em) {
  .cta-outer.cta-cta .cta-bar-inner .cta-bar-inner-left p {
    font-size: var(--headerFontSize3a);
  }
}
.cta-outer.cta-cta .cta-bar-inner .cta-bar-inner-left .cta-bar-subtitle {
  font-family: "canada-type-gibson", sans-serif;
  font-size: var(--standardFontSizeb);
  line-height: 140%;
  font-weight: 400;
  color: #335168;
  margin: 0;
  color: #99a8b3;
}
@media print, screen and (min-width: 53.125em) {
  .cta-outer.cta-cta .cta-bar-inner .cta-bar-inner-left .cta-bar-subtitle {
    font-size: var(--standardFontSizea);
  }
}
.cta-outer.cta-cta .cta-bar-inner .cta-bar-inner-right {
  flex-shrink: 1;
  width: 100%;
  margin-top: 20px;
  text-align: center;
}
.cta-outer.cta-cta .cta-bar-inner .cta-bar-inner-right .button-wrap {
  display: flex;
  justify-content: center;
  margin: 0;
}
@media print, screen and (min-width: 40em) {
  .cta-outer.cta-cta .cta-bar-inner .cta-bar-inner-right .button-wrap {
    display: block;
  }
}
@media print, screen and (min-width: 48em) {
  .cta-outer.cta-cta .cta-bar-inner .cta-bar-inner-right {
    flex-shrink: 1;
    width: auto;
    margin: 0 25px;
    text-align: right;
  }
}
.cta-outer.cta-cta .cta-bar-inner a.button {
  margin: 0;
}
.cta-outer.cta-cta-panel {
  background-image: linear-gradient(180deg, #ff5f15 0%, #cc4c11 100%);
}
.cta-outer.cta-cta-panel .cta-panel-inner {
  width: calc(100% - 2rem);
  margin-right: 1rem;
  margin-left: 1rem;
}
.cta-outer.cta-cta-panel .cta-panel-inner .cta-panel-inner-text {
  padding: 50px 0;
  text-align: center;
}
.cta-outer.cta-cta-panel .cta-panel-inner .cta-panel-inner-text h2 {
  font-family: "canada-type-gibson", sans-serif;
  font-size: var(--headerFontSize2b);
  line-height: 110%;
  font-weight: 600;
  color: #002642;
  margin: 0px 0 20px;
  text-transform: none;
  margin-top: 0;
  color: #ffffff;
}
@media print, screen and (min-width: 40em) {
  .cta-outer.cta-cta-panel .cta-panel-inner .cta-panel-inner-text h2 {
    font-size: var(--headerFontSize2b);
  }
}
@media print, screen and (min-width: 64em) {
  .cta-outer.cta-cta-panel .cta-panel-inner .cta-panel-inner-text h2 {
    font-size: var(--headerFontSize1b);
  }
}
.cta-outer.cta-cta-panel .cta-panel-inner .cta-panel-inner-text p {
  color: #ffffff;
}
.cta-outer.cta-cta-panel .cta-panel-inner .cta-panel-inner-text .button-wrap {
  justify-content: center;
}
.cta-outer.cta-bar-smaller .cta-bar-inner {
  padding: 30px 0;
}
.cta-outer.cta-bar-smaller .cta-bar-inner .cta-bar-inner-left span {
  font-family: "canada-type-gibson", sans-serif;
  font-size: var(--headerFontSize4b);
  line-height: 110%;
  font-weight: 600;
  color: #002642;
  margin: 40px 0 15px;
  margin: 0;
  color: #ffffff;
}
@media print, screen and (min-width: 40em) {
  .cta-outer.cta-bar-smaller .cta-bar-inner .cta-bar-inner-left span {
    font-size: var(--headerFontSize4a);
  }
}
@media print, screen and (min-width: 53.125em) {
  .cta-outer.cta-bar-smaller .cta-bar-inner .cta-bar-inner-left span {
    font-size: var(--headerFontSize3b);
  }
}
@media print, screen and (min-width: 64em) {
  .cta-outer.cta-bar-smaller .cta-bar-inner .cta-bar-inner-left span {
    font-size: var(--headerFontSize3a);
  }
}
.cta-outer.cta-bar-smaller .cta-bar-inner a.button {
  margin: 0;
}
.cta-outer .no-cta-gradient {
  height: 50px;
  background-image: linear-gradient(180deg, #ffffff 0%, #edf0f3 100%);
}

body .newsletter-wrap {
  display: flex;
  flex-flow: row wrap;
  width: 100%;
  padding: 50px 0px;
}
body .newsletter-wrap .newsletter-text {
  width: calc(100% - 2rem);
  margin-right: 1rem;
  margin-left: 1rem;
}
@media print, screen and (min-width: 53.125em) {
  body .newsletter-wrap .newsletter-text {
    max-width: 680px;
    margin-left: auto;
    margin-right: auto;
  }
}
body .newsletter-wrap .newsletter-text .newsletter-text-title {
  margin-bottom: 15px;
}
body .newsletter-wrap .newsletter-text h2 {
  margin-top: 0;
}
body .newsletter-wrap .newsletter-text p {
  margin-bottom: 30px;
}
body .newsletter-wrap .gform_wrapper.gravity-theme .gform_footer {
  padding-bottom: 0;
}
body .newsletter-wrap .gform_wrapper.gravity-theme .gform_footer input {
  margin-bottom: 0;
}

.team-member-single .team-member-breadcrumbs {
  margin-top: 50px;
  margin-bottom: 30px;
  display: flex;
  flex-flow: row wrap;
}
@media print, screen and (min-width: 48em) {
  .team-member-single .team-member-breadcrumbs {
    margin-bottom: 0;
  }
}
.team-member-single .team-member-breadcrumbs p {
  width: calc(100% - 2rem);
  margin-right: 1rem;
  margin-left: 1rem;
  margin-bottom: 2px;
}
.team-member-single .team-member-intro {
  background-image: linear-gradient(72deg, #002642 0%, #1380cd 57.37%, #48b2fe 100%);
  background-position: center bottom;
  background-size: auto 70%;
  background-repeat: no-repeat;
  margin-bottom: 35px;
  padding: 0 10px;
}
@media print, screen and (min-width: 48em) {
  .team-member-single .team-member-intro {
    background-size: auto 75%;
    background-position: center center;
  }
}
.team-member-single .team-member-intro .team-member-intro-wrap {
  display: flex;
  flex-flow: row wrap;
  justify-content: center;
  flex-direction: column;
  align-items: center;
  padding: 0 30px;
}
@media print, screen and (min-width: 53.125em) {
  .team-member-single .team-member-intro .team-member-intro-wrap {
    max-width: 920px;
    margin-left: auto;
    margin-right: auto;
  }
}
@media print, screen and (min-width: 48em) {
  .team-member-single .team-member-intro .team-member-intro-wrap {
    justify-content: space-between;
    flex-direction: row-reverse;
  }
}
@media print, screen and (min-width: 53.125em) {
  .team-member-single .team-member-intro .team-member-intro-wrap {
    padding: 0 10px;
  }
}
.team-member-single .team-member-intro .team-member-intro-wrap .team-member-intro-image {
  max-width: 300px;
  aspect-ratio: 1/1;
  overflow: hidden;
  border-radius: 50%;
}
.team-member-single .team-member-intro .team-member-intro-wrap .team-member-intro-image img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}
.team-member-single .team-member-intro .team-member-intro-wrap .team-member-intro-text {
  margin: 40px 0 60px;
  color: #ffffff;
  text-align: center;
}
@media print, screen and (min-width: 48em) {
  .team-member-single .team-member-intro .team-member-intro-wrap .team-member-intro-text {
    margin: 75px 0;
    text-align: left;
  }
}
.team-member-single .team-member-intro .team-member-intro-wrap .team-member-intro-text h1 {
  color: inherit;
  margin: 0;
  margin-bottom: 5px;
}
.team-member-single .team-member-intro .team-member-intro-wrap .team-member-intro-text p {
  color: inherit;
  margin: 0;
}

.success-story-single .success-story-breadcrumbs {
  margin-top: 50px;
  margin-bottom: 50px;
  display: flex;
  flex-flow: row wrap;
}
@media print, screen and (min-width: 48em) {
  .success-story-single .success-story-breadcrumbs {
    margin-bottom: 40px;
  }
}
.success-story-single .success-story-breadcrumbs p {
  width: calc(100% - 2rem);
  margin-right: 1rem;
  margin-left: 1rem;
  margin-bottom: 2px;
}
.success-story-single .success-story-intro {
  position: relative;
  margin-bottom: 75px;
  background: #002642;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
}
.success-story-single .success-story-intro .ssi-pattern {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0.1;
}
.success-story-single .success-story-intro .ssi-pattern svg {
  position: absolute;
  width: 2000px;
  max-width: 2000px;
  height: 1000px;
  left: calc(50% - 1000px);
  top: calc(50% - 500px);
}
.success-story-single .success-story-intro.ssi-gradient-red {
  background-image: url("../images/mesh/mesh-grad-red.jpg");
}
.success-story-single .success-story-intro.ssi-gradient-red .ssi-pattern svg #fill {
  fill: #ffd0a9;
}
.success-story-single .success-story-intro.ssi-gradient-red .ssi-pattern svg #stroke {
  stroke: #ffd0a9;
}
.success-story-single .success-story-intro.ssi-gradient-green {
  background-image: url("../images/mesh/mesh-grad-green.jpg");
}
.success-story-single .success-story-intro.ssi-gradient-green .ssi-pattern svg #fill {
  fill: #b5e05d;
}
.success-story-single .success-story-intro.ssi-gradient-green .ssi-pattern svg #stroke {
  stroke: #b5e05d;
}
.success-story-single .success-story-intro.ssi-gradient-blue {
  background-image: url("../images/mesh/mesh-grad-blue.jpg");
}
.success-story-single .success-story-intro.ssi-gradient-blue .ssi-pattern svg #fill {
  fill: #9ddefd;
}
.success-story-single .success-story-intro.ssi-gradient-blue .ssi-pattern svg #stroke {
  stroke: #9ddefd;
}
.success-story-single .success-story-intro .success-story-intro-wrap {
  padding: 0 25px;
  position: relative;
  display: flex;
  flex-flow: row wrap;
}
.success-story-single .success-story-intro .success-story-intro-wrap .success-story-intro-text {
  color: #ffffff;
  width: calc(100% - 2rem);
  margin-right: 1rem;
  margin-left: 1rem;
  margin: 40px 0 50px;
}
@media print, screen and (min-width: 48em) {
  .success-story-single .success-story-intro .success-story-intro-wrap .success-story-intro-text {
    width: calc(50% - 2rem);
    margin-right: 1rem;
    margin-left: 1rem;
    margin: 75px 0;
  }
}
@media print, screen and (min-width: 60em) {
  .success-story-single .success-story-intro .success-story-intro-wrap .success-story-intro-text {
    width: calc(58.3333333333% - 2rem);
    margin-right: 1rem;
    margin-left: 1rem;
  }
}
.success-story-single .success-story-intro .success-story-intro-wrap .success-story-intro-text h1 {
  color: inherit;
  margin: 0;
  margin-bottom: 20px;
}
.success-story-single .success-story-intro .success-story-intro-wrap .success-story-intro-text p {
  color: inherit;
  margin: 0;
}
.success-story-single .success-story-intro .success-story-intro-wrap .success-story-intro-image {
  max-height: 300px;
  margin-top: -25px;
}
@media print, screen and (min-width: 48em) {
  .success-story-single .success-story-intro .success-story-intro-wrap .success-story-intro-image {
    margin-top: 0;
    max-height: max-content;
    margin-right: 50px;
    position: absolute;
    height: 125%;
    right: 0;
    bottom: 0;
  }
}
@media print, screen and (min-width: 60em) {
  .success-story-single .success-story-intro .success-story-intro-wrap .success-story-intro-image {
    margin-right: 120px;
  }
}
.success-story-single .success-story-intro .success-story-intro-wrap .success-story-intro-image img {
  height: 100%;
  width: 100%;
  object-fit: scale-down;
  object-position: left;
}
@media print, screen and (min-width: 48em) {
  .success-story-single .success-story-intro .success-story-intro-wrap .success-story-intro-image img {
    object-fit: cover;
  }
}

#breadcrumbs {
  display: block;
}
#breadcrumbs > span > span {
  display: inline-flex;
  font-family: "canada-type-gibson", sans-serif;
  font-size: var(--smallFontSizea);
  line-height: 140%;
  font-weight: 400;
  color: #335168;
  padding: 0px 3px;
}
#breadcrumbs > span > span:first-child {
  padding-left: 0;
}
#breadcrumbs > span > span a {
  position: relative;
  color: #335168;
  text-decoration: none;
}
#breadcrumbs > span > span a:before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 2px;
  width: 100%;
  height: 1px;
  background-color: #335168;
  opacity: 0.6;
}
.footer-rescue {
  width: 100%;
  height: 100px;
}

.no-footer-rescue .footer-rescue {
  display: none;
}

#footer {
  background-color: #ffffff;
  color: #002642;
}
#footer p {
  color: #002642;
}
#footer .footer-wrap {
  display: flex;
  flex-flow: row wrap;
  font-family: "canada-type-gibson", sans-serif;
  font-size: var(--smallFontSizea);
  line-height: 140%;
  font-weight: 400;
  color: #99a8b3;
  padding: 50px 0 35px;
}
#footer .footer-wrap .footer-left {
  width: calc(100% - 2rem);
  margin-right: 1rem;
  margin-left: 1rem;
  text-align: center;
  margin-bottom: 30px;
}
#footer .footer-wrap .footer-left .footer-logo {
  width: 180px;
  margin: auto;
  margin-bottom: 32px;
}
@media print, screen and (min-width: 64em) {
  #footer .footer-wrap .footer-left .footer-logo {
    margin-left: 0;
    margin-right: 0;
  }
}
@media print, screen and (min-width: 64em) {
  #footer .footer-wrap .footer-left {
    width: calc(25% - 2rem);
    margin-right: 1rem;
    margin-left: 1rem;
    text-align: left;
    margin-bottom: 0;
  }
}
#footer .footer-wrap .footer-left p {
  font-family: "canada-type-gibson", sans-serif;
  font-size: var(--smallFontSizea);
  line-height: 140%;
  font-weight: 400;
}
#footer .footer-wrap .footer-right {
  display: flex;
  width: calc(100% - 2rem);
  margin-right: 1rem;
  margin-left: 1rem;
  width: 100%;
  margin: 0;
  flex-direction: column;
}
@media print, screen and (min-width: 40em) {
  #footer .footer-wrap .footer-right {
    flex-direction: row;
  }
}
#footer .footer-wrap .footer-right .address-phone {
  width: calc(100% - 2rem);
  margin-right: 1rem;
  margin-left: 1rem;
  display: flex;
  flex-direction: column;
  text-align: center;
  color: #335168;
  gap: 25px;
  margin-bottom: 30px;
}
@media print, screen and (min-width: 40em) {
  #footer .footer-wrap .footer-right .address-phone {
    width: calc(50% - 2rem);
    margin-right: 1rem;
    margin-left: 1rem;
    text-align: left;
    margin-bottom: 0;
  }
}
@media print, screen and (min-width: 64em) {
  #footer .footer-wrap .footer-right .address-phone {
    width: calc(25% - 2rem);
    margin-right: 1rem;
    margin-left: 1rem;
  }
}
#footer .footer-wrap .footer-right .address-phone span.address-phone-title {
  display: block;
  font-family: "canada-type-gibson", sans-serif;
  font-size: var(--standardFontSizeb);
  line-height: 140%;
  font-weight: 400;
  color: #335168;
  line-height: 1;
  margin-top: 0;
  color: #1380cd;
  font-weight: 600;
  text-decoration: underline;
  padding: 0;
  margin-bottom: 0px;
}
@media print, screen and (min-width: 53.125em) {
  #footer .footer-wrap .footer-right .address-phone span.address-phone-title {
    font-size: var(--standardFontSizea);
  }
}
#footer .footer-wrap .footer-right .address-phone a {
  color: #335168;
}
@media print, screen and (min-width: 64em) {
  #footer .footer-wrap .footer-right {
    flex: 1 1 0px;
    width: auto;
    margin-right: 1rem;
    margin-left: 1rem;
    margin-left: 0;
    margin-right: 0;
    margin-top: 0;
    text-align: right;
    display: flex;
    justify-content: space-around;
  }
  #footer .footer-wrap .footer-right .menu {
    display: block;
    text-align: left;
  }
  #footer .footer-wrap .footer-right .menu a {
    color: #1380cd;
    font-weight: 600;
    text-decoration: underline;
    padding: 0;
    margin-bottom: 25px;
  }
  #footer .footer-wrap .footer-right .menu a:hover {
    color: #1380cd;
  }
  #footer .footer-wrap .footer-right .menu li.menu-item-has-children a {
    margin-bottom: 15px;
  }
  #footer .footer-wrap .footer-right .menu .sub-menu {
    margin: 0;
    list-style-type: none;
  }
  #footer .footer-wrap .footer-right .menu .sub-menu a {
    font-family: "canada-type-gibson", sans-serif;
    font-size: var(--smallFontSizea);
    line-height: 140%;
    font-weight: 400;
    color: #002642;
    font-weight: 400;
    text-decoration: none;
    margin-bottom: 10px;
  }
  #footer .footer-wrap .footer-right .menu .sub-menu a:hover {
    color: #1380cd;
  }
}
@media print, screen and (min-width: 40em) {
  #footer .footer-wrap .footer-right .footer-menus {
    width: calc(50% - 2rem);
    margin-right: 1rem;
    margin-left: 1rem;
  }
}
@media print, screen and (min-width: 64em) {
  #footer .footer-wrap .footer-right .footer-menus {
    width: calc(75% - 2rem);
    margin-right: 1rem;
    margin-left: 1rem;
    display: flex;
    flex-flow: row wrap;
  }
  #footer .footer-wrap .footer-right .footer-menus > div {
    flex: 1;
  }
}
#footer .footer-wrap .menu {
  text-align: center;
  display: block;
}
@media print, screen and (min-width: 40em) {
  #footer .footer-wrap .menu {
    text-align: left;
  }
}
#footer .footer-wrap .menu a {
  padding: 10px 0;
}
#footer .footer-wrap .sub-menu {
  display: none;
}
@media print, screen and (min-width: 64em) {
  #footer .footer-wrap .sub-menu {
    display: block;
  }
}
#footer .footer-wrap .footer-logo svg {
  width: 200px;
}

.footer-company-details {
  margin: 25px 0 30px;
}

.footer-email-phone {
  margin-bottom: 20px;
}
.footer-email-phone a {
  display: block;
  color: #ffffff;
}

.footer-address {
  color: #ffffff;
}

.footer-social {
  display: flex;
  column-gap: 10px;
  justify-content: center;
}
@media print, screen and (min-width: 40em) {
  .footer-social {
    justify-content: flex-end;
  }
}

svg.social {
  width: 24px;
  margin-left: 5px;
  height: auto;
}
svg.social #icon {
  fill: #99a8b3;
  transition: all 0.2s ease-in-out;
}
svg.social:hover #icon {
  fill: #1380cd;
}

p.above-text {
  color: #1380cd !important;
  margin-bottom: 10px;
}

.above-text {
  color: #1380cd;
}

.bottom-bar {
  padding: 20px 0;
  background-color: #f5f7f8;
  width: 100%;
  font-family: "canada-type-gibson", sans-serif;
  font-size: var(--smallFontSizea);
  line-height: 140%;
  font-weight: 400;
  color: #99a8b3;
}
.bottom-bar a {
  color: #99a8b3;
}
.bottom-bar .bottom-bar-wrap {
  display: flex;
  flex-flow: row wrap;
  justify-content: space-between;
  align-items: flex-start;
}
.bottom-bar .bottom-bar-wrap .bottom-bar-left {
  width: calc(100% - 2rem);
  margin-right: 1rem;
  margin-left: 1rem;
  text-align: center;
  margin-bottom: 5px;
}
@media print, screen and (min-width: 40em) {
  .bottom-bar .bottom-bar-wrap .bottom-bar-left {
    flex: 0 0 auto;
    width: auto;
    margin-right: 1rem;
    margin-left: 1rem;
    text-align: left;
    margin-bottom: 0;
  }
}
.bottom-bar .bottom-bar-wrap .bottom-bar-right {
  width: calc(100% - 2rem);
  margin-right: 1rem;
  margin-left: 1rem;
  text-align: center;
}
@media screen and (max-width: 39.9375em) {
  .bottom-bar .bottom-bar-wrap .bottom-bar-right {
    margin-right: 0;
    margin-left: 0;
    width: 100%;
  }
  .bottom-bar .bottom-bar-wrap .bottom-bar-right > .cell {
    margin-right: 0;
    margin-left: 0;
  }
  .bottom-bar .bottom-bar-wrap .bottom-bar-right > .small-1 {
    width: 8.3333333333%;
  }
  .bottom-bar .bottom-bar-wrap .bottom-bar-right > .small-2 {
    width: 16.6666666667%;
  }
  .bottom-bar .bottom-bar-wrap .bottom-bar-right > .small-3 {
    width: 25%;
  }
  .bottom-bar .bottom-bar-wrap .bottom-bar-right > .small-4 {
    width: 33.3333333333%;
  }
  .bottom-bar .bottom-bar-wrap .bottom-bar-right > .small-5 {
    width: 41.6666666667%;
  }
  .bottom-bar .bottom-bar-wrap .bottom-bar-right > .small-6 {
    width: 50%;
  }
  .bottom-bar .bottom-bar-wrap .bottom-bar-right > .small-7 {
    width: 58.3333333333%;
  }
  .bottom-bar .bottom-bar-wrap .bottom-bar-right > .small-8 {
    width: 66.6666666667%;
  }
  .bottom-bar .bottom-bar-wrap .bottom-bar-right > .small-9 {
    width: 75%;
  }
  .bottom-bar .bottom-bar-wrap .bottom-bar-right > .small-10 {
    width: 83.3333333333%;
  }
  .bottom-bar .bottom-bar-wrap .bottom-bar-right > .small-11 {
    width: 91.6666666667%;
  }
  .bottom-bar .bottom-bar-wrap .bottom-bar-right > .small-12 {
    width: 100%;
  }
}
@media screen and (max-width: 39.9375em) and (min-width: 40em) {
  .bottom-bar .bottom-bar-wrap .bottom-bar-right > .medium-1 {
    width: 8.3333333333%;
  }
  .bottom-bar .bottom-bar-wrap .bottom-bar-right > .medium-2 {
    width: 16.6666666667%;
  }
  .bottom-bar .bottom-bar-wrap .bottom-bar-right > .medium-3 {
    width: 25%;
  }
  .bottom-bar .bottom-bar-wrap .bottom-bar-right > .medium-4 {
    width: 33.3333333333%;
  }
  .bottom-bar .bottom-bar-wrap .bottom-bar-right > .medium-5 {
    width: 41.6666666667%;
  }
  .bottom-bar .bottom-bar-wrap .bottom-bar-right > .medium-6 {
    width: 50%;
  }
  .bottom-bar .bottom-bar-wrap .bottom-bar-right > .medium-7 {
    width: 58.3333333333%;
  }
  .bottom-bar .bottom-bar-wrap .bottom-bar-right > .medium-8 {
    width: 66.6666666667%;
  }
  .bottom-bar .bottom-bar-wrap .bottom-bar-right > .medium-9 {
    width: 75%;
  }
  .bottom-bar .bottom-bar-wrap .bottom-bar-right > .medium-10 {
    width: 83.3333333333%;
  }
  .bottom-bar .bottom-bar-wrap .bottom-bar-right > .medium-11 {
    width: 91.6666666667%;
  }
  .bottom-bar .bottom-bar-wrap .bottom-bar-right > .medium-12 {
    width: 100%;
  }
}
@media screen and (max-width: 39.9375em) and (min-width: 64em) {
  .bottom-bar .bottom-bar-wrap .bottom-bar-right > .large-1 {
    width: 8.3333333333%;
  }
  .bottom-bar .bottom-bar-wrap .bottom-bar-right > .large-2 {
    width: 16.6666666667%;
  }
  .bottom-bar .bottom-bar-wrap .bottom-bar-right > .large-3 {
    width: 25%;
  }
  .bottom-bar .bottom-bar-wrap .bottom-bar-right > .large-4 {
    width: 33.3333333333%;
  }
  .bottom-bar .bottom-bar-wrap .bottom-bar-right > .large-5 {
    width: 41.6666666667%;
  }
  .bottom-bar .bottom-bar-wrap .bottom-bar-right > .large-6 {
    width: 50%;
  }
  .bottom-bar .bottom-bar-wrap .bottom-bar-right > .large-7 {
    width: 58.3333333333%;
  }
  .bottom-bar .bottom-bar-wrap .bottom-bar-right > .large-8 {
    width: 66.6666666667%;
  }
  .bottom-bar .bottom-bar-wrap .bottom-bar-right > .large-9 {
    width: 75%;
  }
  .bottom-bar .bottom-bar-wrap .bottom-bar-right > .large-10 {
    width: 83.3333333333%;
  }
  .bottom-bar .bottom-bar-wrap .bottom-bar-right > .large-11 {
    width: 91.6666666667%;
  }
  .bottom-bar .bottom-bar-wrap .bottom-bar-right > .large-12 {
    width: 100%;
  }
}
@media print, screen and (min-width: 40em) {
  .bottom-bar .bottom-bar-wrap .bottom-bar-right {
    flex: 0 0 auto;
    width: auto;
    margin-right: 1rem;
    margin-left: 1rem;
    text-align: right;
  }
}

.full-width,
.wp-block-separator.is-style-wide {
  position: relative;
  width: 100vw !important;
  max-width: 100vw !important;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
}

.wp-block-spacer,
.spacer {
  display: block;
  width: 100%;
  margin: 0;
}
.wp-block-spacer.spacer-xsmall,
.spacer.spacer-xsmall {
  height: 50px;
}
.wp-block-spacer.spacer-small,
.spacer.spacer-small {
  height: 50px;
}
@media print, screen and (min-width: 40em) {
  .wp-block-spacer.spacer-small,
  .spacer.spacer-small {
    height: 60px;
  }
}
@media print, screen and (min-width: 64em) {
  .wp-block-spacer.spacer-small,
  .spacer.spacer-small {
    height: 75px;
  }
}
.wp-block-spacer.spacer-medium,
.spacer.spacer-medium {
  height: 50px;
}
@media print, screen and (min-width: 40em) {
  .wp-block-spacer.spacer-medium,
  .spacer.spacer-medium {
    height: 75px;
  }
}
@media print, screen and (min-width: 64em) {
  .wp-block-spacer.spacer-medium,
  .spacer.spacer-medium {
    height: 100px;
  }
}
.wp-block-spacer.spacer-mediumlarge,
.spacer.spacer-mediumlarge {
  height: 60px;
}
@media print, screen and (min-width: 40em) {
  .wp-block-spacer.spacer-mediumlarge,
  .spacer.spacer-mediumlarge {
    height: 90px;
  }
}
@media print, screen and (min-width: 64em) {
  .wp-block-spacer.spacer-mediumlarge,
  .spacer.spacer-mediumlarge {
    height: 120px;
  }
}
.wp-block-spacer.spacer-large,
.spacer.spacer-large {
  height: 75px;
}
@media print, screen and (min-width: 40em) {
  .wp-block-spacer.spacer-large,
  .spacer.spacer-large {
    height: 100px;
  }
}
@media print, screen and (min-width: 64em) {
  .wp-block-spacer.spacer-large,
  .spacer.spacer-large {
    height: 150px;
  }
}
.wp-block-spacer.spacer-xlarge,
.spacer.spacer-xlarge {
  height: 100px;
}
@media print, screen and (min-width: 40em) {
  .wp-block-spacer.spacer-xlarge,
  .spacer.spacer-xlarge {
    height: 150px;
  }
}
@media print, screen and (min-width: 64em) {
  .wp-block-spacer.spacer-xlarge,
  .spacer.spacer-xlarge {
    height: 200px;
  }
}
@media screen and (min-width: 90em) {
  .wp-block-spacer.spacer-xlarge,
  .spacer.spacer-xlarge {
    height: 250px;
  }
}
@media print, screen and (min-width: 40em) {
  .wp-block-spacer.spacer-mob-only,
  .spacer.spacer-mob-only {
    height: 0 !important;
  }
}

.full-width,
.connector {
  position: relative;
  width: 100vw !important;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
}

body .gform_heading {
  margin-bottom: 30px;
}
body .gform_wrapper.gravity-theme input[type=color],
body .gform_wrapper.gravity-theme input[type=date],
body .gform_wrapper.gravity-theme input[type=datetime-local],
body .gform_wrapper.gravity-theme input[type=datetime],
body .gform_wrapper.gravity-theme input[type=email],
body .gform_wrapper.gravity-theme input[type=month],
body .gform_wrapper.gravity-theme input[type=number],
body .gform_wrapper.gravity-theme input[type=password],
body .gform_wrapper.gravity-theme input[type=search],
body .gform_wrapper.gravity-theme input[type=tel],
body .gform_wrapper.gravity-theme input[type=text],
body .gform_wrapper.gravity-theme input[type=time],
body .gform_wrapper.gravity-theme input[type=url],
body .gform_wrapper.gravity-theme input[type=week],
body .gform_wrapper.gravity-theme select,
body .gform_wrapper.gravity-theme textarea {
  border: none;
  font-size: 16px;
  line-height: 22.4px;
  border-radius: 5px;
  padding: 9px 30px 9px 15px;
  border: rgba(170, 199, 211, 0.65) 1px solid;
}
body .gform_wrapper.gravity-theme select {
  background-image: url(../images//svg/chevron-down-navy.svg);
  background-size: 16px 8px;
}
body .gravity-theme.ui-datepicker .ui-datepicker-header select {
  background-image: none;
}
body .gform_wrapper.gravity-theme .gfield-choice-input {
  margin-bottom: 0;
}
body .gform_wrapper.gravity-theme .gfield_checkbox label,
body .gform_wrapper.gravity-theme .gfield_radio label {
  font-family: "canada-type-gibson", sans-serif;
  font-size: var(--smallFontSizea);
  line-height: 140%;
  font-weight: 400;
  margin-top: 4px;
}
body .gform_wrapper.gravity-theme .gfield_checkbox label a,
body .gform_wrapper.gravity-theme .gfield_radio label a {
  text-decoration: underline;
  color: #99a8b3;
}
body .gform_wrapper.gravity-theme .gform_footer button,
body .gform_wrapper.gravity-theme .gform_footer input,
body .gform_wrapper.gravity-theme .gform_page_footer button,
body .gform_wrapper.gravity-theme .gform_page_footer input {
  background-color: #002642;
  border-color: #002642;
}
body .gform_wrapper.gravity-theme .gfield_label {
  font-family: "canada-type-gibson", sans-serif;
  font-size: var(--smallFontSizea);
  line-height: 140%;
  font-weight: 400;
}
body .gform_wrapper.gravity-theme .gfield_required:before {
  content: "*";
  color: #f43601;
  font-size: 16px;
}
body .gform_wrapper.gravity-theme .gfield_required .gfield_required_text {
  display: none;
}
body .ginput_container_date {
  width: 100%;
}
body .gform_wrapper.gravity-theme .ginput_container_date input {
  flex: 1;
}

body .gform_wrapper.gravity-theme .ginput_recaptcha .grecaptcha-badge {
  opacity: 0;
  height: 0 !important;
}
body .gform_wrapper.gravity-theme .recaptcha-message .gfield_description {
  font-family: "canada-type-gibson", sans-serif;
  font-size: var(--smallFontSizea);
  line-height: 140%;
  font-weight: 400;
  color: #ffffff;
  opacity: 0.5;
  padding: 0;
}
body .gform_wrapper.gravity-theme .recaptcha-message .gfield_description a {
  color: #ffffff;
  text-decoration: underline;
}

.gform_wrapper.gravity-theme .gform_footer {
  display: flex;
  justify-content: center;
  margin-top: 50px !important;
}
.gform_wrapper.gravity-theme .gform_footer input {
  font-size: 20px;
  padding: 16px 24px;
  text-transform: capitalize;
}

.excerpt-pod h2 {
  margin-top: 0;
}

.acf-map {
  position: relative;
  width: 100%;
  height: 100%;
  border: none;
  margin: 0;
}

.gm-style-iw h4 {
  margin: 0;
}
.gm-style-iw span {
  text-transform: capitalize;
}

/* fixes potential theme css conflict */
.acf-map img {
  max-width: inherit !important;
}

.fancybox-content {
  width: 800px;
}

#cookie-law-info-bar {
  padding: 15px !important;
  font-family: "canada-type-gibson", sans-serif;
  font-size: var(--smallFontSizea);
  line-height: 140%;
  font-weight: 400;
  text-align: left;
}
#cookie-law-info-bar a.cli-plugin-button {
  margin: 5px 5px 0 0;
}
#cookie-law-info-bar .cli-message {
  margin-bottom: 5px;
}

.unloaded {
  display: none;
  opacity: 0;
  transition: all 0.2s ease-in-out;
}

.wireframe-element {
  background-color: #828282;
  height: 75vh;
  display: flex;
  justify-content: center;
  align-items: center;
}
.wireframe-element .wireframe-element-content {
  text-align: center;
  color: #335168;
}
.wireframe-element .wireframe-element-content span {
  font-family: "canada-type-gibson", sans-serif;
  font-size: var(--headerFontSize3b);
  line-height: 110%;
  font-weight: 600;
  color: #002642;
  margin: 50px 0 20px;
  display: block;
  text-align: center;
  color: #335168;
  margin: 0;
}
@media print, screen and (min-width: 40em) {
  .wireframe-element .wireframe-element-content span {
    font-size: var(--headerFontSize3a);
  }
}
@media print, screen and (min-width: 53.125em) {
  .wireframe-element .wireframe-element-content span {
    font-size: var(--headerFontSize2b);
  }
}
@media print, screen and (min-width: 64em) {
  .wireframe-element .wireframe-element-content span {
    font-size: var(--headerFontSize2a);
  }
}
.wireframe-element .wireframe-element-content h1, .wireframe-element .wireframe-element-content h2, .wireframe-element .wireframe-element-content h3, .wireframe-element .wireframe-element-content h4, .wireframe-element .wireframe-element-content h5, .wireframe-element .wireframe-element-content p, .wireframe-element .wireframe-element-content span, .wireframe-element .wireframe-element-content li, .wireframe-element .wireframe-element-content a:not(.button) {
  color: #335168;
}
.wireframe-element .wireframe-element-content .button-wrap {
  justify-content: center;
}
.wireframe-element.wireframe-element-dark {
  background-color: #002642;
  background-color: #828282;
}
.wireframe-element.wireframe-element-light {
  background-color: #f5f7f8;
  background-color: #828282;
}
.wireframe-element.wireframe-element-white {
  background-color: #ffffff;
  background-color: #828282;
}
.wireframe-element.wireframe-element, .wireframe-element.wireframe-element-dark, .wireframe-element.wireframe-element-medium, .wireframe-element.wireframe-element-white {
  border-top: #ffffff 1px solid;
}
.wireframe-element.wireframe-element .wireframe-element-content h1, .wireframe-element.wireframe-element .wireframe-element-content h2, .wireframe-element.wireframe-element .wireframe-element-content h3, .wireframe-element.wireframe-element .wireframe-element-content h4, .wireframe-element.wireframe-element .wireframe-element-content h5, .wireframe-element.wireframe-element .wireframe-element-content p, .wireframe-element.wireframe-element .wireframe-element-content span, .wireframe-element.wireframe-element .wireframe-element-content li, .wireframe-element.wireframe-element .wireframe-element-content a, .wireframe-element.wireframe-element-dark .wireframe-element-content h1, .wireframe-element.wireframe-element-dark .wireframe-element-content h2, .wireframe-element.wireframe-element-dark .wireframe-element-content h3, .wireframe-element.wireframe-element-dark .wireframe-element-content h4, .wireframe-element.wireframe-element-dark .wireframe-element-content h5, .wireframe-element.wireframe-element-dark .wireframe-element-content p, .wireframe-element.wireframe-element-dark .wireframe-element-content span, .wireframe-element.wireframe-element-dark .wireframe-element-content li, .wireframe-element.wireframe-element-dark .wireframe-element-content a, .wireframe-element.wireframe-element-medium .wireframe-element-content h1, .wireframe-element.wireframe-element-medium .wireframe-element-content h2, .wireframe-element.wireframe-element-medium .wireframe-element-content h3, .wireframe-element.wireframe-element-medium .wireframe-element-content h4, .wireframe-element.wireframe-element-medium .wireframe-element-content h5, .wireframe-element.wireframe-element-medium .wireframe-element-content p, .wireframe-element.wireframe-element-medium .wireframe-element-content span, .wireframe-element.wireframe-element-medium .wireframe-element-content li, .wireframe-element.wireframe-element-medium .wireframe-element-content a, .wireframe-element.wireframe-element-white .wireframe-element-content h1, .wireframe-element.wireframe-element-white .wireframe-element-content h2, .wireframe-element.wireframe-element-white .wireframe-element-content h3, .wireframe-element.wireframe-element-white .wireframe-element-content h4, .wireframe-element.wireframe-element-white .wireframe-element-content h5, .wireframe-element.wireframe-element-white .wireframe-element-content p, .wireframe-element.wireframe-element-white .wireframe-element-content span, .wireframe-element.wireframe-element-white .wireframe-element-content li, .wireframe-element.wireframe-element-white .wireframe-element-content a {
  color: #ffffff;
}

.faqs-wrap {
  width: 100%;
  display: flex;
  flex-flow: row wrap;
  justify-content: center;
  align-items: flex-start;
}
.faqs-wrap .faq {
  width: calc(100% - 2rem);
  margin-right: 1rem;
  margin-left: 1rem;
  border-bottom: 1px solid #f5f7f8;
  padding-bottom: 30px;
}
@media print, screen and (min-width: 53.125em) {
  .faqs-wrap .faq {
    width: calc(83.3333333333% - 2rem);
    margin-right: 1rem;
    margin-left: 1rem;
  }
}
@media print, screen and (min-width: 64em) {
  .faqs-wrap .faq {
    width: calc(66.6666666667% - 2rem);
    margin-right: 1rem;
    margin-left: 1rem;
  }
}
.faqs-wrap .faq .faq-header {
  padding: 50px 0 20px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.faqs-wrap .faq .faq-header .fh-name {
  font-family: "canada-type-gibson", sans-serif;
  font-size: var(--largeFontSizeb);
  line-height: 140%;
  font-weight: 400;
  width: calc(100% - 50px);
  margin: 0;
}
@media print, screen and (min-width: 40em) {
  .faqs-wrap .faq .faq-header .fh-name {
    font-size: var(--largeFontSizea);
  }
}
.faqs-wrap .faq .faq-header .fh-arrow {
  width: 20px;
}
.faqs-wrap .faq .faq-header .fh-arrow img.circle-plus {
  display: inline-block;
}
.faqs-wrap .faq .faq-header .fh-arrow img.circle-minus {
  display: none;
}
.faqs-wrap .faq .faq-body {
  width: 100%;
  display: none;
}
.faqs-wrap .faq.faq-on .faq-header .fh-arrow img.circle-plus {
  display: none;
}
.faqs-wrap .faq.faq-on .faq-header .fh-arrow img.circle-minus {
  display: inline-block;
}

.featured-pic-text {
  position: relative;
}
.featured-pic-text .pic-text-pic {
  width: 100%;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
}
.featured-pic-text .pic-text-pic.pic-text-pic-style-contain {
  background-size: contain;
}
.featured-pic-text .pic-text-pic:before {
  content: "";
  display: block;
  width: 100%;
  height: 0;
  padding-bottom: 56.25%;
}
@media print, screen and (min-width: 48em) {
  .featured-pic-text .pic-text-pic {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    width: 50vw;
  }
  .featured-pic-text .pic-text-pic:before {
    display: none;
  }
}
.featured-pic-text .pic-text-wrap {
  margin-top: 0;
  width: 100%;
}
@media print, screen and (min-width: 48em) {
  .featured-pic-text .pic-text-wrap {
    width: 50%;
    margin-left: 50%;
  }
}
.featured-pic-text .pic-text-wrap .pic-text {
  display: flex;
  flex-flow: row wrap;
  align-items: stretch;
  width: 100%;
  margin: 0;
}
@media print, screen and (min-width: 48em) {
  .featured-pic-text .pic-text-wrap .pic-text {
    min-height: 60vh;
  }
}
.featured-pic-text .pic-text-wrap .pic-text .pic-text-text {
  position: relative;
  width: 100%;
  margin: 25px 25px 50px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
@media print, screen and (min-width: 40em) {
  .featured-pic-text .pic-text-wrap .pic-text .pic-text-text {
    margin: 50px 25px 75px;
  }
}
@media print, screen and (min-width: 48em) {
  .featured-pic-text .pic-text-wrap .pic-text .pic-text-text {
    margin: 50px 25px 50px 50px;
  }
}
@media print, screen and (min-width: 64em) {
  .featured-pic-text .pic-text-wrap .pic-text .pic-text-text {
    margin: 100px 25px 100px 100px;
  }
}
.featured-pic-text .pic-text-wrap .pic-text .pic-text-text h2 {
  margin-top: 0;
}
.featured-pic-text .pic-text-wrap .pic-text .pic-text-text p:last-of-type {
  margin-bottom: 0;
}
.featured-pic-text .pic-text-wrap .pic-text .pic-text-text .link-wrapper {
  width: 100%;
  margin-top: 20px;
  margin-left: 0;
  margin-right: 0;
}
.featured-pic-text .pic-text-wrap .pic-text .pic-text-text .link-wrapper a {
  margin: 10px 10px 0px 0;
}
@media print, screen and (min-width: 40em) {
  .featured-pic-text .pic-text-wrap:not(.pic-text-wrap-switch) .pic-text:nth-child(2n+2) .pic-text-pic {
    order: 2;
  }
  .featured-pic-text .pic-text-wrap:not(.pic-text-wrap-switch) .pic-text:nth-child(2n+2) .pic-text-text {
    order: 1;
  }
}
@media print, screen and (min-width: 40em) {
  .featured-pic-text .pic-text-wrap.pic-text-wrap-switch .pic-text:nth-child(2n+1) .pic-text-pic {
    order: 2;
  }
  .featured-pic-text .pic-text-wrap.pic-text-wrap-switch .pic-text:nth-child(2n+1) .pic-text-text {
    order: 1;
  }
}
.featured-pic-text.pic-side-right .pic-text-pic {
  right: 0;
  left: auto;
}
@media print, screen and (min-width: 48em) {
  .featured-pic-text.pic-side-right .pic-text-wrap {
    margin-left: 0;
    margin-right: 50%;
  }
}
@media print, screen and (min-width: 48em) {
  .featured-pic-text.pic-side-right .pic-text-wrap .pic-text .pic-text-text {
    margin: 50px 50px 50px 25px;
  }
}
@media print, screen and (min-width: 64em) {
  .featured-pic-text.pic-side-right .pic-text-wrap .pic-text .pic-text-text {
    margin: 100px 100px 100px 25px;
  }
}

.google-map-wrap {
  overflow-x: hidden;
}
.google-map-wrap .map-content-box {
  width: 100%;
  background-color: #ffffff;
  padding: 50px;
  position: relative;
}
.google-map-wrap .map-content-box h2 {
  margin-top: 0;
}
@media screen and (min-width: 75em) {
  .google-map-wrap .map-content-box {
    max-width: 700px;
    margin-top: -100px;
    border-top: 20px solid #1380cd;
  }
}
@media screen and (min-width: 90em) {
  .google-map-wrap .map-content-box {
    margin-top: -280px;
  }
}

.logo-grid {
  display: flex;
  flex-flow: row wrap;
  justify-content: flex-start;
  align-items: center;
}
.logo-grid .logo-pod {
  width: calc(100% - 2rem);
  margin-right: 1rem;
  margin-left: 1rem;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 25px;
  margin-bottom: 25px;
}
@media screen and (min-width: 30em) {
  .logo-grid .logo-pod {
    width: calc(50% - 2rem);
    margin-right: 1rem;
    margin-left: 1rem;
  }
}
@media print, screen and (min-width: 40em) {
  .logo-grid .logo-pod {
    width: calc(33.3333333333% - 2rem);
    margin-right: 1rem;
    margin-left: 1rem;
  }
}
@media print, screen and (min-width: 53.125em) {
  .logo-grid .logo-pod {
    width: calc(25% - 2rem);
    margin-right: 1rem;
    margin-left: 1rem;
  }
}
@media print, screen and (min-width: 64em) {
  .logo-grid .logo-pod {
    width: calc(20% - 2rem);
    margin-right: 1rem;
    margin-left: 1rem;
  }
}
@media screen and (min-width: 75em) {
  .logo-grid .logo-pod {
    width: calc(16.6666666667% - 2rem);
    margin-right: 1rem;
    margin-left: 1rem;
  }
}
@media screen and (min-width: 90em) {
  .logo-grid .logo-pod {
    width: calc(14.2857142857% - 2rem);
    margin-right: 1rem;
    margin-left: 1rem;
  }
}
.logo-grid .logo-pod img {
  width: 200px;
  margin: 0;
  transition: all 0.2s ease-in-out;
}
.logo-grid .logo-pod.logo-pod-hoverable:hover img {
  transform: scale(1.05);
}

.logo-slider {
  width: 100vw;
  display: flex;
  justify-content: center;
  align-items: center;
}
.logo-slider .slick-track {
  display: flex;
  justify-content: center;
  align-items: center;
}
.logo-slider .logo-pod {
  max-width: 200px;
  margin: 0 25px;
}
@media print, screen and (min-width: 40em) {
  .logo-slider .logo-pod {
    margin: 0 50px;
  }
}
@media print, screen and (min-width: 64em) {
  .logo-slider .logo-pod {
    margin: 0 75px;
  }
}
.logo-slider .logo-pod img {
  transition: all 0.2s ease-in-out;
}
.logo-slider .logo-pod.logo-pod-hoverable:hover img {
  transform: scale(1.05);
}

.parallax-image {
  position: relative;
  width: 100%;
  height: 75vh;
  margin-bottom: 0;
  padding: 0;
  overflow: hidden;
  /*
  &:before {
  	content: "";
  	display: block;
  	width: 100%;
  	height: 0;
  	padding-bottom: 45%;
  }
  */
}
@media (max-aspect-ratio: 3/2) {
  .parallax-image {
    height: 50vh;
  }
}
.parallax-image .bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 200%;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}
.social-icons-inline .social-inner-wrap {
  margin-left: -10px;
}
.social-icons-inline svg.social {
  width: 40px;
  margin-right: 20px;
}

.stat-wrap {
  display: flex;
  flex-flow: row wrap;
  justify-content: center;
  align-items: flex-start;
  width: 100%;
  margin: 0;
  row-gap: 25px;
}
.stat-wrap .stat-pod {
  position: relative;
  width: calc(100% - 2rem);
  margin-right: 1rem;
  margin-left: 1rem;
  text-align: center;
}
@media print, screen and (min-width: 40em) {
  .stat-wrap .stat-pod {
    width: calc(50% - 2rem);
    margin-right: 1rem;
    margin-left: 1rem;
  }
}
.stat-wrap .stat-pod .stat-icon {
  margin-bottom: 25px;
  text-align: center;
}
.stat-wrap .stat-pod .stat-stat {
  font-family: "canada-type-gibson", sans-serif;
  font-size: var(--headerFontSize2b);
  line-height: 110%;
  font-weight: 600;
  color: #002642;
  margin: 0px 0 20px;
  margin-bottom: 10px;
}
@media print, screen and (min-width: 40em) {
  .stat-wrap .stat-pod .stat-stat {
    font-size: var(--headerFontSize2b);
  }
}
@media print, screen and (min-width: 64em) {
  .stat-wrap .stat-pod .stat-stat {
    font-size: var(--headerFontSize1b);
  }
}
.stat-wrap .stat-pod .stat-label {
  font-family: "canada-type-gibson", sans-serif;
  font-size: var(--standardFontSizeb);
  line-height: 140%;
  font-weight: 400;
  color: #335168;
  font-weight: 700;
  color: #002642;
  margin-bottom: 10px;
}
@media print, screen and (min-width: 53.125em) {
  .stat-wrap .stat-pod .stat-label {
    font-size: var(--standardFontSizea);
  }
}
.stat-wrap .stat-pod .stat-label.stat-label-large {
  font-family: "canada-type-gibson", sans-serif;
  font-size: var(--largeFontSizeb);
  line-height: 140%;
  font-weight: 400;
  font-weight: 400;
}
@media print, screen and (min-width: 40em) {
  .stat-wrap .stat-pod .stat-label.stat-label-large {
    font-size: var(--largeFontSizea);
  }
}
.stat-wrap .stat-pod .stat-text {
  color: #99a8b3;
}
@media print, screen and (min-width: 64em) {
  .stat-wrap.stat-wrap-3 .stat-pod {
    width: calc(33.3333333333% - 2rem);
    margin-right: 1rem;
    margin-left: 1rem;
  }
}
@media print, screen and (min-width: 64em) {
  .stat-wrap.stat-wrap-4 .stat-pod {
    width: calc(25% - 2rem);
    margin-right: 1rem;
    margin-left: 1rem;
  }
}

.sticky-side-title-outer .sticky-side-title-wrap {
  position: relative;
  padding: 50px 0;
}
.sticky-side-title-outer .sticky-side-title-wrap:nth-child(2n+1) {
  background-color: #ffffff;
}
.sticky-side-title-outer .sticky-side-title-wrap .sticky-side-title-release {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
}

.sticky-side-title-inner {
  display: flex;
  flex-flow: row wrap;
  width: 100%;
  margin: 0;
}
.sticky-side-title-inner ul {
  margin: 0 0;
}

.side-title-inner {
  position: sticky;
  top: 150px;
}

.no-stickiness .side-title-inner {
  position: relative;
  top: 0;
}

.side-title {
  width: calc(100% - 2rem);
  margin-right: 1rem;
  margin-left: 1rem;
  padding-bottom: 50px;
}
@media print, screen and (min-width: 40em) {
  .side-title {
    width: calc(41.6666666667% - 2rem);
    margin-right: 1rem;
    margin-left: 1rem;
    padding-bottom: 0;
  }
}
@media print, screen and (min-width: 64em) {
  .side-title {
    width: calc(33.3333333333% - 2rem);
    margin-right: 1rem;
    margin-left: 1rem;
    margin-left: calc(8.3333333333% + 1rem);
  }
}

.side-title-text {
  width: calc(100% - 2rem);
  margin-right: 1rem;
  margin-left: 1rem;
}
@media print, screen and (min-width: 40em) {
  .side-title-text {
    width: calc(58.3333333333% - 2rem);
    margin-right: 1rem;
    margin-left: 1rem;
    padding-top: 45px;
  }
}
@media print, screen and (min-width: 64em) {
  .side-title-text {
    width: calc(50% - 2rem);
    margin-right: 1rem;
    margin-left: 1rem;
  }
}
.side-title-text img {
  border-radius: 10px;
}

@media print, screen and (min-width: 40em) {
  .sticky-side-narrow-left .side-title {
    width: calc(33.3333333333% - 2rem);
    margin-right: 1rem;
    margin-left: 1rem;
    text-align: right;
    padding-right: 50px;
  }
}
@media print, screen and (min-width: 64em) {
  .sticky-side-narrow-left .side-title {
    width: calc(25% - 2rem);
    margin-right: 1rem;
    margin-left: 1rem;
    margin-left: calc(8.3333333333% + 1rem);
  }
}

.sticky-side-large-titles h2 {
  font-family: "canada-type-gibson", sans-serif;
  font-size: var(--headerFontSize2b);
  line-height: 110%;
  font-weight: 600;
  color: #002642;
  margin: 0px 0 20px;
  margin: 0;
}
@media print, screen and (min-width: 40em) {
  .sticky-side-large-titles h2 {
    font-size: var(--headerFontSize2b);
  }
}
@media print, screen and (min-width: 64em) {
  .sticky-side-large-titles h2 {
    font-size: var(--headerFontSize1b);
  }
}

@media print, screen and (min-width: 40em) {
  .sticky-side-text-no-pad .side-title-text {
    padding-top: 15px;
  }
}

section.section.section-testimonials {
  padding: 30px 0 70px;
}
@media print, screen and (min-width: 53.125em) {
  section.section.section-testimonials {
    padding: 75px 0;
  }
}

.testimonial-wrap {
  overflow-x: visible;
  width: 100%;
}
.testimonial-wrap .slick-list {
  width: 100%;
}
.testimonial-wrap .slick-track {
  display: flex;
  flex-flow: row wrap;
}
.testimonial-wrap .testimonial-pod {
  position: relative;
  opacity: 0.5;
}
.testimonial-wrap .testimonial-pod.slick-active {
  opacity: 1;
}
.testimonial-wrap .testimonial-pod .testimonial-text-inner {
  display: flex;
  flex-flow: row wrap;
  justify-content: flex-start;
  align-items: center;
}
.testimonial-wrap .testimonial-pod .testimonial-pod-image {
  position: relative;
  width: calc(100% - 2rem);
  margin-right: 1rem;
  margin-left: 1rem;
  text-align: center;
  padding: 30px 0;
}
@media print, screen and (min-width: 53.125em) {
  .testimonial-wrap .testimonial-pod .testimonial-pod-image {
    width: calc(25% - 2rem);
    margin-right: 1rem;
    margin-left: 1rem;
  }
}
.testimonial-wrap .testimonial-pod .testimonial-pod-image .testimonial-pod-image-wrap {
  display: inline-block;
  width: 100%;
  max-width: 200px;
  border-radius: 50%;
  position: relative;
  overflow: hidden;
}
.testimonial-wrap .testimonial-pod .testimonial-pod-image .testimonial-pod-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.testimonial-wrap .testimonial-pod .testimonial-pod-image .testimonial-pod-image-wrap:after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  border-radius: 50%;
  border: 10px solid rgba(255, 255, 255, 0.2);
}
.testimonial-wrap .testimonial-pod .testimonial-pod-text {
  width: calc(100% - 2rem);
  margin-right: 1rem;
  margin-left: 1rem;
  padding: 0 10px;
  text-align: center;
}
@media print, screen and (min-width: 53.125em) {
  .testimonial-wrap .testimonial-pod .testimonial-pod-text {
    width: calc(66.6666666667% - 2rem);
    margin-right: 1rem;
    margin-left: 1rem;
    margin-left: 40px;
    text-align: left;
  }
}
.testimonial-wrap .testimonial-pod .testimonial-pod-text .testimonial-pod-text-title {
  font-family: "canada-type-gibson", sans-serif;
  font-size: var(--headerFontSize4b);
  line-height: 110%;
  font-weight: 600;
  color: #002642;
  margin: 40px 0 15px;
  color: #48b2fe;
  margin-bottom: 30px;
  margin-top: 0;
}
@media print, screen and (min-width: 40em) {
  .testimonial-wrap .testimonial-pod .testimonial-pod-text .testimonial-pod-text-title {
    font-size: var(--headerFontSize4a);
  }
}
@media print, screen and (min-width: 53.125em) {
  .testimonial-wrap .testimonial-pod .testimonial-pod-text .testimonial-pod-text-title {
    font-size: var(--headerFontSize3b);
  }
}
@media print, screen and (min-width: 64em) {
  .testimonial-wrap .testimonial-pod .testimonial-pod-text .testimonial-pod-text-title {
    font-size: var(--headerFontSize3a);
  }
}
.testimonial-wrap .testimonial-pod .testimonial-pod-text .testimonial-pod-text-testimonial p:before {
  content: open-quote;
}
.testimonial-wrap .testimonial-pod .testimonial-pod-text .testimonial-pod-text-testimonial p:after {
  content: close-quote;
}
.testimonial-wrap .testimonial-pod .testimonial-pod-text p {
  font-size: 20px;
  color: inherit;
  margin: 0;
  font-weight: 400;
  margin-bottom: 30px;
}
@media print, screen and (min-width: 40em) {
  .testimonial-wrap .testimonial-pod .testimonial-pod-text p {
    font-size: 26px;
  }
}
@media print, screen and (min-width: 53.125em) {
  .testimonial-wrap .testimonial-pod .testimonial-pod-text p {
    font-size: 32px;
  }
}
.testimonial-wrap .testimonial-pod .testimonial-pod-author p {
  font-family: "canada-type-gibson", sans-serif;
  font-size: var(--largeFontSizeb);
  line-height: 140%;
  font-weight: 400;
  margin-bottom: 10px;
  display: inline;
}
@media print, screen and (min-width: 40em) {
  .testimonial-wrap .testimonial-pod .testimonial-pod-author p {
    font-size: var(--largeFontSizea);
  }
}
.testimonial-wrap .testimonial-pod .testimonial-pod-author span.testimonial-pod-author-position {
  font-family: "canada-type-gibson", sans-serif;
  font-size: var(--smallFontSizea);
  line-height: 140%;
  font-weight: 400;
  font-weight: 400;
}
.testimonial-wrap .slick-dots {
  position: relative;
  display: flex;
  flex-direction: row;
  justify-content: center;
  margin-top: 0;
  padding: 0;
  margin: 0;
  margin-top: 50px;
}
@media print, screen and (min-width: 53.125em) {
  .testimonial-wrap .slick-dots {
    margin-top: 0px;
    max-width: 380px;
  }
}
.testimonial-wrap .slick-dots li {
  width: 10px;
  height: 10px;
  margin-left: 5px;
  margin-right: 5px;
}
.testimonial-wrap .slick-dots li button {
  width: 10px;
  height: 10px;
  background-color: #002642;
  border: none;
  cursor: pointer;
}
.testimonial-wrap .slick-dots li.slick-active button {
  background-color: #002642;
}

section.section-testimonials .slick-custom-arrow-overlay.slick-custom-prev,
section.section-testimonials .slick-custom-arrow-overlay.slick-custom-next {
  top: auto;
  bottom: 55px;
  z-index: 70;
}
@media print, screen and (min-width: 53.125em) {
  section.section-testimonials .slick-custom-arrow-overlay.slick-custom-prev,
  section.section-testimonials .slick-custom-arrow-overlay.slick-custom-next {
    bottom: 65px;
  }
}

section.section-bg-black .testimonial-wrap .testimonial-pod .testimonial-pod-text p {
  color: #ffffff;
}
section.section-bg-black .slick-dots li button {
  background-color: #ffffff;
  opacity: 0.4;
}
section.section-bg-black .slick-dots li.slick-active button {
  opacity: 1;
}

section.section-bg-primary .testimonial-wrap .testimonial-pod .testimonial-pod-text .testimonial-pod-text-title,
section.section-bg-gradient-navy-blue-diagonal .testimonial-wrap .testimonial-pod .testimonial-pod-text .testimonial-pod-text-title {
  color: #ffffff;
}
section.section-bg-primary .testimonial-wrap .testimonial-pod .testimonial-pod-text p,
section.section-bg-gradient-navy-blue-diagonal .testimonial-wrap .testimonial-pod .testimonial-pod-text p {
  color: #ffffff;
}
section.section-bg-primary .slick-dots li button,
section.section-bg-gradient-navy-blue-diagonal .slick-dots li button {
  background-color: #ffffff;
  opacity: 0.4;
}
section.section-bg-primary .slick-dots li.slick-active button,
section.section-bg-gradient-navy-blue-diagonal .slick-dots li.slick-active button {
  opacity: 1;
  background-color: #ffffff;
}

.video-panel {
  position: relative;
}
.video-panel .video-panel-video {
  position: relative;
  background-color: #f5f7f8;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
}
.video-panel .video-panel-video .video-panel-play {
  position: absolute;
  width: 100px;
  height: 100px;
  top: calc(50% - 50px);
  left: calc(50% - 50px);
  transition: all 0.2s ease-in-out;
}
.video-panel .video-panel-video .video-panel-play svg {
  width: 100px;
  height: 100px;
  filter: drop-shadow(0px 0px 20px rgba(0, 0, 0, 0.5));
  transition: all 0.2s ease-in-out;
}
.video-panel .video-panel-video:hover .video-panel-play {
  transform: scale(1.1);
}
.video-panel .video-panel-video:hover .video-panel-play svg {
  filter: drop-shadow(0px 0px 25px rgba(0, 0, 0, 0.8));
}
.video-panel.video-panel-full {
  padding: 0;
}
.video-panel.video-panel-full .video-panel-video {
  height: 75vh;
}
.video-panel .video-panel-background {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
}
.video-panel.video-panel-inline {
  padding: 75px 0;
}
.video-panel.video-panel-inline .video-panel-background {
  top: 0;
}
.video-panel.video-panel-inline .video-panel-video {
  width: calc(100% - 2rem);
  margin-right: 1rem;
  margin-left: 1rem;
  border-radius: 20px;
}
.video-panel.video-panel-inline .video-panel-video:before {
  content: "";
  display: block;
  width: 100%;
  height: 0;
  padding-bottom: 56.25%;
}
.video-panel.video-panel-inline .video-panel-meta {
  position: relative;
  display: flex;
  flex-flow: row wrap;
  padding: 20px 15px 0;
}
.video-panel.video-panel-inline .video-panel-meta .video-panel-meta-left {
  width: calc(100% - 2rem);
  margin-right: 1rem;
  margin-left: 1rem;
}
@media print, screen and (min-width: 40em) {
  .video-panel.video-panel-inline .video-panel-meta .video-panel-meta-left {
    width: calc(66.6666666667% - 2rem);
    margin-right: 1rem;
    margin-left: 1rem;
  }
}
.video-panel.video-panel-inline .video-panel-meta .video-panel-meta-left a {
  display: inline-flex;
  gap: 10px;
  align-items: center;
}
.video-panel.video-panel-inline .video-panel-meta .video-panel-meta-left a span {
  font-family: "canada-type-gibson", sans-serif;
  font-size: var(--headerFontSize5b);
  line-height: 110%;
  font-weight: 600;
  color: #002642;
  margin: 40px 0 15px;
  margin-top: 0;
  margin-bottom: 0;
  color: #ffffff;
}
@media print, screen and (min-width: 40em) {
  .video-panel.video-panel-inline .video-panel-meta .video-panel-meta-left a span {
    font-size: var(--headerFontSize5a);
  }
}
@media print, screen and (min-width: 53.125em) {
  .video-panel.video-panel-inline .video-panel-meta .video-panel-meta-left a span {
    font-size: var(--headerFontSize4b);
  }
}
@media print, screen and (min-width: 64em) {
  .video-panel.video-panel-inline .video-panel-meta .video-panel-meta-left a span {
    font-size: var(--headerFontSize4a);
  }
}
.video-panel.video-panel-inline .video-panel-meta .video-panel-meta-left a svg {
  width: 24px;
  height: 24px;
}
.video-panel.video-panel-inline .video-panel-meta .video-panel-meta-right {
  width: calc(100% - 2rem);
  margin-right: 1rem;
  margin-left: 1rem;
}
@media print, screen and (min-width: 40em) {
  .video-panel.video-panel-inline .video-panel-meta .video-panel-meta-right {
    width: calc(33.3333333333% - 2rem);
    margin-right: 1rem;
    margin-left: 1rem;
    text-align: right;
  }
}
.video-panel.video-panel-inlinetext {
  padding: 0px 0 75px;
}
.video-panel.video-panel-inlinetext .video-panel-background {
  top: 100px;
}
@media print, screen and (min-width: 40em) {
  .video-panel.video-panel-inlinetext .video-panel-background {
    top: 200px;
  }
}
@media print, screen and (min-width: 64em) {
  .video-panel.video-panel-inlinetext .video-panel-background {
    top: 400px;
  }
}
.video-panel.video-panel-inlinetext .video-panel-video {
  width: calc(100% - 2rem);
  margin-right: 1rem;
  margin-left: 1rem;
  border-radius: 20px;
}
.video-panel.video-panel-inlinetext .video-panel-video:before {
  content: "";
  display: block;
  width: 100%;
  height: 0;
  padding-bottom: 56.25%;
}
.video-panel.video-panel-inlinetext .video-panel-text {
  position: relative;
  margin-top: 75px;
}
.video-panel.video-panel-inlinetext .video-panel-text h2 {
  font-size: 40px;
  margin-top: 0;
}
@media print, screen and (min-width: 40em) {
  .video-panel.video-panel-inlinetext .video-panel-text h2 {
    font-size: 70px;
  }
}
@media print, screen and (min-width: 64em) {
  .video-panel.video-panel-inlinetext .video-panel-text h2 {
    font-size: 50px;
  }
}
@media print, screen and (min-width: 64em) and (min-width: 40em) {
  .video-panel.video-panel-inlinetext .video-panel-text h2 {
    font-size: var(--impactFontLarge);
  }
}
.video-panel.video-panel-inlinetext .video-panel-text .video-panel-text-text {
  max-width: 800px;
}
.video-panel.video-panel-inlinetext .video-panel-text .video-panel-text-text p {
  font-family: "canada-type-gibson", sans-serif;
  font-size: var(--largeFontSizeb);
  line-height: 140%;
  font-weight: 400;
}
@media print, screen and (min-width: 40em) {
  .video-panel.video-panel-inlinetext .video-panel-text .video-panel-text-text p {
    font-size: var(--largeFontSizea);
  }
}
.video-panel.video-panel-blue {
  color: #ffffff;
}
.video-panel.video-panel-blue h1,
.video-panel.video-panel-blue h2,
.video-panel.video-panel-blue h3,
.video-panel.video-panel-blue h4,
.video-panel.video-panel-blue h5,
.video-panel.video-panel-blue p,
.video-panel.video-panel-blue a:not(.button),
.video-panel.video-panel-blue .small-text {
  color: #ffffff;
}
.video-panel.video-panel-blue .video-panel-background {
  background-image: linear-gradient(180deg, #48b2fe 0%, #3595da 100%);
}
.video-panel.video-panel-blue .video-panel-video {
  border: #ffffff 15px solid;
}
.video-panel.video-panel-blue .video-panel-text .above-text {
  color: #9ddefd;
}
.video-panel.video-panel-blue .video-panel-text h2 span {
  color: #9ddefd;
}
.video-panel.video-panel-navy {
  color: #ffffff;
}
.video-panel.video-panel-navy h1,
.video-panel.video-panel-navy h2,
.video-panel.video-panel-navy h3,
.video-panel.video-panel-navy h4,
.video-panel.video-panel-navy h5,
.video-panel.video-panel-navy p,
.video-panel.video-panel-navy a:not(.button),
.video-panel.video-panel-navy .small-text {
  color: #ffffff;
}
.video-panel.video-panel-navy .video-panel-background {
  background-image: linear-gradient(180deg, #1380cd 0%, #002642 100%);
}
.video-panel.video-panel-navy .video-panel-video {
  border: #1380cd 15px solid;
}
.video-panel.video-panel-navy .video-panel-text .above-text {
  color: #48b2fe;
}
.video-panel.video-panel-navy .video-panel-text h2 span {
  color: #ff5f15;
}

.visual-submenu-wrap {
  width: 100%;
}
.visual-submenu-wrap .visual-submenu {
  display: flex;
  flex-flow: row wrap;
  justify-content: flex-start;
  align-items: flex-start;
  row-gap: 30px;
}
@media print, screen and (min-width: 40em) {
  .visual-submenu-wrap .visual-submenu {
    row-gap: 50px;
  }
}
.visual-submenu-wrap .visual-submenu .visual-submenu-item {
  position: relative;
  width: calc(100% - 2rem);
  margin-right: 1rem;
  margin-left: 1rem;
  overflow: hidden;
}
@media print, screen and (min-width: 40em) {
  .visual-submenu-wrap .visual-submenu .visual-submenu-item {
    width: calc(50% - 2rem);
    margin-right: 1rem;
    margin-left: 1rem;
  }
}
@media print, screen and (min-width: 64em) {
  .visual-submenu-wrap .visual-submenu .visual-submenu-item {
    width: calc(33.3333333333% - 2rem);
    margin-right: 1rem;
    margin-left: 1rem;
  }
}
.visual-submenu-wrap .visual-submenu .visual-submenu-item .vsi-image {
  position: relative;
  width: 100%;
  height: 0;
  padding-bottom: 100%;
  padding-bottom: 75%;
  border-radius: 10px;
  overflow: hidden;
}
.visual-submenu-wrap .visual-submenu .visual-submenu-item .vsi-image .vsi-image-inner {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  transition: all 0.2s ease-in-out;
}
.visual-submenu-wrap .visual-submenu .visual-submenu-item .vsi-image:after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  opacity: 0.2;
  transition: all 0.2s ease-in-out;
}
.visual-submenu-wrap .visual-submenu .visual-submenu-item .vsi-text {
  margin-top: 20px;
}
.visual-submenu-wrap .visual-submenu .visual-submenu-item .vsi-text span {
  display: block;
}
.visual-submenu-wrap .visual-submenu .visual-submenu-item .vsi-text span.vsi-title {
  font-family: "canada-type-gibson", sans-serif;
  font-size: var(--impactFontMedium);
  color: #002642;
  line-height: 100%;
  font-weight: 700;
  text-transform: uppercase;
  font-size: var(--impactFontTiny);
  margin-top: 0;
  margin-bottom: 5px;
  display: flex;
  align-items: center;
  color: #002642;
}
.visual-submenu-wrap .visual-submenu .visual-submenu-item .vsi-text span.vsi-title svg {
  width: 20px;
  margin-left: 12px;
}
.visual-submenu-wrap .visual-submenu .visual-submenu-item:hover .vsi-image-inner {
  transform: scale(1.05);
}
.visual-submenu-wrap .visual-submenu .visual-submenu-item:hover .vsi-image-inner:after {
  opacity: 0.1;
}

@media print, screen and (min-width: 64em) {
  .visual-submenu-wrap.per-row-2 .visual-submenu .visual-submenu-item {
    width: calc(50% - 2rem);
    margin-right: 1rem;
    margin-left: 1rem;
  }
}
.visual-submenu-wrap.per-row-2 .visual-submenu .visual-submenu-item .vsi-image {
  padding-bottom: 64.70588235%;
}

@media print, screen and (min-width: 40em) {
  .visual-submenu-wrap.per-row-3 .visual-submenu .visual-submenu-item {
    width: calc(50% - 2rem);
    margin-right: 1rem;
    margin-left: 1rem;
  }
}
@media print, screen and (min-width: 64em) {
  .visual-submenu-wrap.per-row-3 .visual-submenu .visual-submenu-item {
    width: calc(33.3333333333% - 2rem);
    margin-right: 1rem;
    margin-left: 1rem;
  }
}

@media print, screen and (min-width: 40em) {
  .visual-submenu-wrap.per-row-4 .visual-submenu .visual-submenu-item {
    width: calc(50% - 2rem);
    margin-right: 1rem;
    margin-left: 1rem;
  }
}
@media print, screen and (min-width: 53.125em) {
  .visual-submenu-wrap.per-row-4 .visual-submenu .visual-submenu-item {
    width: calc(33.3333333333% - 2rem);
    margin-right: 1rem;
    margin-left: 1rem;
  }
}
@media print, screen and (min-width: 64em) {
  .visual-submenu-wrap.per-row-4 .visual-submenu .visual-submenu-item {
    width: calc(25% - 2rem);
    margin-right: 1rem;
    margin-left: 1rem;
  }
}

section.section {
  position: relative;
  padding: 25px 0;
}
@media print, screen and (min-width: 40em) {
  section.section {
    padding: 50px 0;
  }
}
section.section.section-bg-offwhite {
  background-color: #f5f7f8;
}
section.section.section-bg-white {
  background-color: #ffffff;
}
section.section.section-bg-black {
  background-color: #002642;
}
section.section.section-bg-navy {
  background-color: #002642;
}
section.section.section-bg-primary {
  background-color: #1380cd;
}
section.section.section-bg-transparent {
  background-color: transparent;
}
section.section.section-bg-gradient-offwhite {
  background-image: linear-gradient(180deg, #ffffff 0%, #edf0f3 100%);
}
section.section.section-bg-gradient-offwhite-rev {
  background-image: linear-gradient(180deg, #edf0f3 0%, #ffffff 100%);
}
section.section.section-bg-gradient-offwhite-light {
  background-image: linear-gradient(180deg, #ffffff 0%, #f5f7f8 100%);
}
section.section.section-bg-gradient-offwhite-light-rev {
  background-image: linear-gradient(180deg, #f5f7f8 0%, #ffffff 100%);
}
section.section.section-bg-gradient-navy {
  background-image: linear-gradient(180deg, #00365e 0%, #002642 100%);
}
section.section.section-bg-gradient-orange {
  background-image: linear-gradient(180deg, #ff5f15 0%, #cc4c11 100%);
}
section.section.section-bg-gradient-steel-blue {
  background-image: linear-gradient(180deg, #1380cd 0%, #0f66a4 100%);
}
section.section.section-bg-gradient-navy-blue {
  background-image: linear-gradient(180deg, #1380cd 0%, #002642 100%);
}
section.section.section-bg-gradient-navy-blue-diagonal {
  background-image: linear-gradient(72deg, #002642 0%, #1380cd 57.37%, #48b2fe 100%);
}
section.section.section-bg-gradient-sky-blue {
  background-image: linear-gradient(180deg, #48b2fe 0%, #3595da 100%);
}
section.section.section-bg-grad-bottom-offwhite-light:before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  right: 0;
  height: 150px;
  background-image: linear-gradient(180deg, #ffffff 0%, #f5f7f8 100%);
}
section.section.section-bg-black, section.section.section-bg-navy, section.section.section-bg-primary, section.section.section-bg-gradient-navy, section.section.section-bg-gradient-orange, section.section.section-bg-gradient-steel-blue, section.section.section-bg-gradient-navy-blue, section.section.section-bg-gradient-navy-blue-diagonal, section.section.section-bg-gradient-sky-blue, section.section.section-text-white {
  color: #ffffff;
}
section.section.section-bg-black h1,
section.section.section-bg-black h2,
section.section.section-bg-black h3,
section.section.section-bg-black h4,
section.section.section-bg-black h5,
section.section.section-bg-black p,
section.section.section-bg-black a:not(.button),
section.section.section-bg-black .small-text, section.section.section-bg-navy h1,
section.section.section-bg-navy h2,
section.section.section-bg-navy h3,
section.section.section-bg-navy h4,
section.section.section-bg-navy h5,
section.section.section-bg-navy p,
section.section.section-bg-navy a:not(.button),
section.section.section-bg-navy .small-text, section.section.section-bg-primary h1,
section.section.section-bg-primary h2,
section.section.section-bg-primary h3,
section.section.section-bg-primary h4,
section.section.section-bg-primary h5,
section.section.section-bg-primary p,
section.section.section-bg-primary a:not(.button),
section.section.section-bg-primary .small-text, section.section.section-bg-gradient-navy h1,
section.section.section-bg-gradient-navy h2,
section.section.section-bg-gradient-navy h3,
section.section.section-bg-gradient-navy h4,
section.section.section-bg-gradient-navy h5,
section.section.section-bg-gradient-navy p,
section.section.section-bg-gradient-navy a:not(.button),
section.section.section-bg-gradient-navy .small-text, section.section.section-bg-gradient-orange h1,
section.section.section-bg-gradient-orange h2,
section.section.section-bg-gradient-orange h3,
section.section.section-bg-gradient-orange h4,
section.section.section-bg-gradient-orange h5,
section.section.section-bg-gradient-orange p,
section.section.section-bg-gradient-orange a:not(.button),
section.section.section-bg-gradient-orange .small-text, section.section.section-bg-gradient-steel-blue h1,
section.section.section-bg-gradient-steel-blue h2,
section.section.section-bg-gradient-steel-blue h3,
section.section.section-bg-gradient-steel-blue h4,
section.section.section-bg-gradient-steel-blue h5,
section.section.section-bg-gradient-steel-blue p,
section.section.section-bg-gradient-steel-blue a:not(.button),
section.section.section-bg-gradient-steel-blue .small-text, section.section.section-bg-gradient-navy-blue h1,
section.section.section-bg-gradient-navy-blue h2,
section.section.section-bg-gradient-navy-blue h3,
section.section.section-bg-gradient-navy-blue h4,
section.section.section-bg-gradient-navy-blue h5,
section.section.section-bg-gradient-navy-blue p,
section.section.section-bg-gradient-navy-blue a:not(.button),
section.section.section-bg-gradient-navy-blue .small-text, section.section.section-bg-gradient-navy-blue-diagonal h1,
section.section.section-bg-gradient-navy-blue-diagonal h2,
section.section.section-bg-gradient-navy-blue-diagonal h3,
section.section.section-bg-gradient-navy-blue-diagonal h4,
section.section.section-bg-gradient-navy-blue-diagonal h5,
section.section.section-bg-gradient-navy-blue-diagonal p,
section.section.section-bg-gradient-navy-blue-diagonal a:not(.button),
section.section.section-bg-gradient-navy-blue-diagonal .small-text, section.section.section-bg-gradient-sky-blue h1,
section.section.section-bg-gradient-sky-blue h2,
section.section.section-bg-gradient-sky-blue h3,
section.section.section-bg-gradient-sky-blue h4,
section.section.section-bg-gradient-sky-blue h5,
section.section.section-bg-gradient-sky-blue p,
section.section.section-bg-gradient-sky-blue a:not(.button),
section.section.section-bg-gradient-sky-blue .small-text, section.section.section-text-white h1,
section.section.section-text-white h2,
section.section.section-text-white h3,
section.section.section-text-white h4,
section.section.section-text-white h5,
section.section.section-text-white p,
section.section.section-text-white a:not(.button),
section.section.section-text-white .small-text {
  color: #ffffff;
}
@media print, screen and (min-width: 40em) {
  section.section.section-reduced-padding {
    padding: 30px 0;
  }
}
section.section.section-no-padding {
  padding: 0;
}

body section.section-bg-offwhite h1, body section.section-bg-offwhite h2, body section.section-bg-offwhite h3, body section.section-bg-offwhite h4, body section.section-bg-offwhite h5,
body section.section-gradient-offwhite h1,
body section.section-gradient-offwhite h2,
body section.section-gradient-offwhite h3,
body section.section-gradient-offwhite h4,
body section.section-gradient-offwhite h5,
body section.section-gradient-offwhite-rev h1,
body section.section-gradient-offwhite-rev h2,
body section.section-gradient-offwhite-rev h3,
body section.section-gradient-offwhite-rev h4,
body section.section-gradient-offwhite-rev h5,
body section.section-gradient-offwhite-light h1,
body section.section-gradient-offwhite-light h2,
body section.section-gradient-offwhite-light h3,
body section.section-gradient-offwhite-light h4,
body section.section-gradient-offwhite-light h5,
body section.section-gradient-offwhite-light-rev h1,
body section.section-gradient-offwhite-light-rev h2,
body section.section-gradient-offwhite-light-rev h3,
body section.section-gradient-offwhite-light-rev h4,
body section.section-gradient-offwhite-light-rev h5,
body section.section-bg-white h1,
body section.section-bg-white h2,
body section.section-bg-white h3,
body section.section-bg-white h4,
body section.section-bg-white h5 {
  color: #002642;
}
body section.section-bg-offwhite p,
body section.section-bg-offwhite .small-text,
body section.section-gradient-offwhite p,
body section.section-gradient-offwhite .small-text,
body section.section-gradient-offwhite-rev p,
body section.section-gradient-offwhite-rev .small-text,
body section.section-gradient-offwhite-light p,
body section.section-gradient-offwhite-light .small-text,
body section.section-gradient-offwhite-light-rev p,
body section.section-gradient-offwhite-light-rev .small-text,
body section.section-bg-white p,
body section.section-bg-white .small-text {
  color: #335168;
}

body section.section-bg-black h1,
body section.section-bg-black h2,
body section.section-bg-black h3,
body section.section-bg-black h4,
body section.section-bg-black h5,
body section.section-bg-black p,
body section.section-bg-black a,
body section.section-bg-black .small-text,
body section.section-bg-primary h1,
body section.section-bg-primary h2,
body section.section-bg-primary h3,
body section.section-bg-primary h4,
body section.section-bg-primary h5,
body section.section-bg-primary p,
body section.section-bg-primary a,
body section.section-bg-primary .small-text,
body section.section-bg-gradient-navy h1,
body section.section-bg-gradient-navy h2,
body section.section-bg-gradient-navy h3,
body section.section-bg-gradient-navy h4,
body section.section-bg-gradient-navy h5,
body section.section-bg-gradient-navy p,
body section.section-bg-gradient-navy a,
body section.section-bg-gradient-navy .small-text,
body section.section-bg-gradient-orange h1,
body section.section-bg-gradient-orange h2,
body section.section-bg-gradient-orange h3,
body section.section-bg-gradient-orange h4,
body section.section-bg-gradient-orange h5,
body section.section-bg-gradient-orange p,
body section.section-bg-gradient-orange a,
body section.section-bg-gradient-orange .small-text,
body section.section-bg-gradient-steel-blue h1,
body section.section-bg-gradient-steel-blue h2,
body section.section-bg-gradient-steel-blue h3,
body section.section-bg-gradient-steel-blue h4,
body section.section-bg-gradient-steel-blue h5,
body section.section-bg-gradient-steel-blue p,
body section.section-bg-gradient-steel-blue a,
body section.section-bg-gradient-steel-blue .small-text,
body section.section-bg-gradient-navy-blue h1,
body section.section-bg-gradient-navy-blue h2,
body section.section-bg-gradient-navy-blue h3,
body section.section-bg-gradient-navy-blue h4,
body section.section-bg-gradient-navy-blue h5,
body section.section-bg-gradient-navy-blue p,
body section.section-bg-gradient-navy-blue a,
body section.section-bg-gradient-navy-blue .small-text,
body section.section-bg-gradient-navy-blue-diagonal h1,
body section.section-bg-gradient-navy-blue-diagonal h2,
body section.section-bg-gradient-navy-blue-diagonal h3,
body section.section-bg-gradient-navy-blue-diagonal h4,
body section.section-bg-gradient-navy-blue-diagonal h5,
body section.section-bg-gradient-navy-blue-diagonal p,
body section.section-bg-gradient-navy-blue-diagonal a,
body section.section-bg-gradient-navy-blue-diagonal .small-text,
body section.section-bg-gradient-sky-blue h1,
body section.section-bg-gradient-sky-blue h2,
body section.section-bg-gradient-sky-blue h3,
body section.section-bg-gradient-sky-blue h4,
body section.section-bg-gradient-sky-blue h5,
body section.section-bg-gradient-sky-blue p,
body section.section-bg-gradient-sky-blue a,
body section.section-bg-gradient-sky-blue .small-text,
body section.section-text-white h1,
body section.section-text-white h2,
body section.section-text-white h3,
body section.section-text-white h4,
body section.section-text-white h5,
body section.section-text-white p,
body section.section-text-white a,
body section.section-text-white .small-text {
  color: #ffffff;
}
body section.section-bg-black a.underline-link:before,
body section.section-bg-black .underline-link > a:before,
body section.section-bg-black a.underline-link:after,
body section.section-bg-black .underline-link > a:after,
body section.section-bg-primary a.underline-link:before,
body section.section-bg-primary .underline-link > a:before,
body section.section-bg-primary a.underline-link:after,
body section.section-bg-primary .underline-link > a:after,
body section.section-bg-gradient-navy a.underline-link:before,
body section.section-bg-gradient-navy .underline-link > a:before,
body section.section-bg-gradient-navy a.underline-link:after,
body section.section-bg-gradient-navy .underline-link > a:after,
body section.section-bg-gradient-orange a.underline-link:before,
body section.section-bg-gradient-orange .underline-link > a:before,
body section.section-bg-gradient-orange a.underline-link:after,
body section.section-bg-gradient-orange .underline-link > a:after,
body section.section-bg-gradient-steel-blue a.underline-link:before,
body section.section-bg-gradient-steel-blue .underline-link > a:before,
body section.section-bg-gradient-steel-blue a.underline-link:after,
body section.section-bg-gradient-steel-blue .underline-link > a:after,
body section.section-bg-gradient-navy-blue a.underline-link:before,
body section.section-bg-gradient-navy-blue .underline-link > a:before,
body section.section-bg-gradient-navy-blue a.underline-link:after,
body section.section-bg-gradient-navy-blue .underline-link > a:after,
body section.section-bg-gradient-navy-blue-diagonal a.underline-link:before,
body section.section-bg-gradient-navy-blue-diagonal .underline-link > a:before,
body section.section-bg-gradient-navy-blue-diagonal a.underline-link:after,
body section.section-bg-gradient-navy-blue-diagonal .underline-link > a:after,
body section.section-bg-gradient-sky-blue a.underline-link:before,
body section.section-bg-gradient-sky-blue .underline-link > a:before,
body section.section-bg-gradient-sky-blue a.underline-link:after,
body section.section-bg-gradient-sky-blue .underline-link > a:after,
body section.section-text-white a.underline-link:before,
body section.section-text-white .underline-link > a:before,
body section.section-text-white a.underline-link:after,
body section.section-text-white .underline-link > a:after {
  background-color: #ffffff;
}

section .main-content {
  position: relative;
}

/*
body.no-header-rescue {
	.main-content:first-child {
		section:first-child {
			padding-top: 0;
		}
	}
}
*/
section.page-intro {
  position: relative;
  padding: 0;
}
section.page-intro .section-gradient-overlay {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 50%;
  background: rgb(0, 0, 0);
  background: linear-gradient(0deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.2) 100%);
  z-index: 5;
}
section.page-intro .page-intro-wrap {
  display: flex;
  flex-flow: row wrap;
  justify-content: space-between;
  align-items: flex-end;
}
section.page-intro .page-intro-wrap .page-intro-image,
section.page-intro .page-intro-wrap .page-intro-text {
  position: relative;
  width: calc(100% - 2rem);
  margin-right: 1rem;
  margin-left: 1rem;
  z-index: 10;
}
section.page-intro .page-intro-wrap .page-intro-image h1,
section.page-intro .page-intro-wrap .page-intro-text h1 {
  position: relative;
  margin-bottom: 20px;
}
section.page-intro .page-intro-wrap .page-intro-text {
  position: relative;
  z-index: 10;
  margin-bottom: 40px;
}
@media print, screen and (min-width: 40em) {
  section.page-intro .page-intro-wrap .page-intro-text {
    order: 1;
    width: calc(41.6666666667% - 2rem);
    margin-right: 1rem;
    margin-left: 1rem;
  }
  section.page-intro .page-intro-wrap .page-intro-image {
    order: 2;
    width: calc(50% - 2rem);
    margin-right: 1rem;
    margin-left: 1rem;
    margin-top: 210px;
    margin-bottom: -60px;
  }
  section.page-intro .page-intro-wrap .page-intro-image img {
    border-radius: 15px;
    -webkit-box-shadow: 0px 0px 50px 0px rgba(35, 38, 40, 0.5);
    box-shadow: 0px 0px 50px 0px rgba(35, 38, 40, 0.5);
  }
}
section.page-intro #breadcrumbs {
  display: block;
}
section.page-intro #breadcrumbs > span > span {
  display: inline-flex;
  font-family: "canada-type-gibson", sans-serif;
  font-size: var(--smallFontSizea);
  line-height: 140%;
  font-weight: 400;
  color: #335168;
  padding: 0px 3px;
}
section.page-intro #breadcrumbs > span > span:first-child {
  padding-left: 0;
}
section.page-intro #breadcrumbs > span > span a {
  position: relative;
  color: #335168;
  text-decoration: none;
}
section.page-intro #breadcrumbs > span > span a:before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 2px;
  width: 100%;
  height: 1px;
  background-color: #335168;
  opacity: 0.6;
}
section.page-intro.page-intro-style-standard.page-intro-style-standard-bottom-p-100 {
  padding-bottom: 100px;
}
section.page-intro.page-intro-style-standard .page-intro-text {
  margin-top: 126px;
  margin-bottom: 0;
  width: calc(100% - 2rem);
  margin-right: 1rem;
  margin-left: 1rem;
}
@media print, screen and (min-width: 60em) {
  section.page-intro.page-intro-style-standard .page-intro-text {
    margin-top: 210px;
  }
}
@media print, screen and (min-width: 64em) {
  section.page-intro.page-intro-style-standard .page-intro-text {
    width: calc(83.3333333333% - 2rem);
    margin-right: 1rem;
    margin-left: 1rem;
  }
}
@media screen and (min-width: 90em) {
  section.page-intro.page-intro-style-standard .page-intro-text {
    width: calc(66.6666666667% - 2rem);
    margin-right: 1rem;
    margin-left: 1rem;
  }
}
section.page-intro.page-intro-style-standard.text-location-center {
  text-align: center;
}
@media print, screen and (min-width: 64em) {
  section.page-intro.page-intro-style-standard.text-location-center .page-intro-text {
    margin-left: calc(8.3333333333% + 1rem);
  }
}
@media screen and (min-width: 90em) {
  section.page-intro.page-intro-style-standard.text-location-center .page-intro-text {
    margin-left: calc(16.6666666667% + 1rem);
  }
}

section.page-intro.page-intro-style-background-image {
  position: relative;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  min-height: 450px;
  padding-top: 120px !important;
}
@media print, screen and (min-width: 60em) {
  section.page-intro.page-intro-style-background-image {
    padding-top: 140px !important;
  }
}
section.page-intro.page-intro-style-background-image .container {
  min-height: 450px;
}
section.page-intro.page-intro-style-background-image .container .page-intro-wrap {
  min-height: 450px;
}
section.page-intro.page-intro-style-background-image .page-intro-background-image-overlay {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: #1380cd;
  opacity: 0.25;
  z-index: 1;
}
section.page-intro.page-intro-style-background-image:after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
  height: 100%;
  background: rgb(0, 0, 0);
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.2) 100%);
  z-index: 3;
}

section.page-intro.page-intro-style-video {
  position: relative;
  min-height: 75vh;
  background-color: #002642;
}
section.page-intro.page-intro-style-video video {
  position: absolute !important;
  top: 0rem !important;
  right: 0rem !important;
  bottom: 0rem !important;
  left: 0rem !important;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
section.page-intro.page-intro-style-video .video-cover {
  position: absolute !important;
  top: 0rem !important;
  right: 0rem !important;
  bottom: 0rem !important;
  left: 0rem !important;
  background: rgba(0, 0, 0, 0.6);
  opacity: 1;
  z-index: 1;
}
section.page-intro.page-intro-style-video .container {
  min-height: 75vh;
}
section.page-intro.page-intro-style-video .container .page-intro-wrap {
  min-height: 75vh;
}

.page-intro-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  margin-top: 50px;
}
.page-intro-buttons a.button {
  margin: 0;
}

.pic-text-wrap {
  width: 100%;
}
.pic-text-wrap .pic-text {
  display: flex;
  flex-flow: row wrap;
  justify-content: center;
  align-items: center;
  justify-content: flex-start;
  width: 100%;
  margin: 0;
  margin-bottom: 50px;
  padding: 20px 0;
}
@media print, screen and (min-width: 64em) {
  .pic-text-wrap .pic-text {
    padding: 100px 0;
  }
}
.pic-text-wrap .pic-text .pic-text-pic {
  width: calc(100% - 2rem);
  margin-right: 1rem;
  margin-left: 1rem;
}
.pic-text-wrap .pic-text .pic-text-pic img {
  border-radius: 5px;
}
@media print, screen and (min-width: 40em) {
  .pic-text-wrap .pic-text .pic-text-pic {
    width: calc(41.6666666667% - 2rem);
    margin-right: 1rem;
    margin-left: 1rem;
  }
}
@media print, screen and (min-width: 64em) {
  .pic-text-wrap .pic-text .pic-text-pic {
    width: calc(33.3333333333% - 2rem);
    margin-right: 1rem;
    margin-left: 1rem;
  }
}
.pic-text-wrap .pic-text .pic-text-pic .pic-text-pic-sizer {
  position: relative;
}
.pic-text-wrap .pic-text .pic-text-pic .pic-text-pic-sizer:before {
  content: "";
  width: 100%;
  height: 0;
  display: block;
  padding-bottom: 100%;
}
.pic-text-wrap .pic-text .pic-text-pic .pic-text-pic-sizer img {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.pic-text-wrap .pic-text .pic-text-text {
  width: calc(100% - 2rem);
  margin-right: 1rem;
  margin-left: 1rem;
}
@media print, screen and (min-width: 40em) {
  .pic-text-wrap .pic-text .pic-text-text {
    width: calc(58.3333333333% - 2rem);
    margin-right: 1rem;
    margin-left: 1rem;
  }
}
@media print, screen and (min-width: 64em) {
  .pic-text-wrap .pic-text .pic-text-text {
    width: calc(50% - 2rem);
    margin-right: 1rem;
    margin-left: 1rem;
    margin-left: calc(8.3333333333% + 1rem);
  }
}
.pic-text-wrap .pic-text .pic-text-text h2,
.pic-text-wrap .pic-text .pic-text-text h3 {
  margin-top: 0;
}
.pic-text-wrap .pic-text .pic-text-text p:last-child {
  margin-bottom: 0;
}
@media print, screen and (min-width: 40em) {
  .pic-text-wrap:not(.pic-text-wrap-switch) .pic-text:nth-child(2n+2) .pic-text-pic {
    order: 2;
  }
  .pic-text-wrap:not(.pic-text-wrap-switch) .pic-text:nth-child(2n+2) .pic-text-text {
    order: 1;
  }
}
@media print, screen and (min-width: 64em) {
  .pic-text-wrap:not(.pic-text-wrap-switch) .pic-text:nth-child(2n+2) .pic-text-pic {
    margin-left: calc(8.3333333333% + 1rem);
  }
}
@media print, screen and (min-width: 40em) {
  .pic-text-wrap.pic-text-wrap-switch .pic-text:nth-child(2n+1) .pic-text-pic {
    order: 2;
  }
  .pic-text-wrap.pic-text-wrap-switch .pic-text:nth-child(2n+1) .pic-text-text {
    order: 1;
  }
}
@media print, screen and (min-width: 64em) {
  .pic-text-wrap.pic-text-wrap-switch .pic-text:nth-child(2n+1) .pic-text-pic {
    margin-left: calc(8.3333333333% + 1rem);
  }
}

section.section.wp-block-spacer {
  padding: 0;
}

.wp-block-spacer,
.spacer {
  display: block;
  position: static;
}
.wp-block-spacer.spacer-xxsmall,
.spacer.spacer-xxsmall {
  height: 25px;
}
.wp-block-spacer.spacer-xsmall,
.spacer.spacer-xsmall {
  height: 50px;
}
.wp-block-spacer.spacer-small,
.spacer.spacer-small {
  height: 50px;
}
@media print, screen and (min-width: 40em) {
  .wp-block-spacer.spacer-small,
  .spacer.spacer-small {
    height: 60px;
  }
}
@media print, screen and (min-width: 64em) {
  .wp-block-spacer.spacer-small,
  .spacer.spacer-small {
    height: 75px;
  }
}
.wp-block-spacer.spacer-medium,
.spacer.spacer-medium {
  height: 50px;
}
@media print, screen and (min-width: 40em) {
  .wp-block-spacer.spacer-medium,
  .spacer.spacer-medium {
    height: 75px;
  }
}
@media print, screen and (min-width: 64em) {
  .wp-block-spacer.spacer-medium,
  .spacer.spacer-medium {
    height: 100px;
  }
}
.wp-block-spacer.spacer-mediumlarge,
.spacer.spacer-mediumlarge {
  height: 60px;
}
@media print, screen and (min-width: 40em) {
  .wp-block-spacer.spacer-mediumlarge,
  .spacer.spacer-mediumlarge {
    height: 90px;
  }
}
@media print, screen and (min-width: 64em) {
  .wp-block-spacer.spacer-mediumlarge,
  .spacer.spacer-mediumlarge {
    height: 120px;
  }
}
.wp-block-spacer.spacer-large,
.spacer.spacer-large {
  height: 75px;
}
@media print, screen and (min-width: 40em) {
  .wp-block-spacer.spacer-large,
  .spacer.spacer-large {
    height: 100px;
  }
}
@media print, screen and (min-width: 64em) {
  .wp-block-spacer.spacer-large,
  .spacer.spacer-large {
    height: 150px;
  }
}
.wp-block-spacer.spacer-xlarge,
.spacer.spacer-xlarge {
  height: 100px;
}
@media print, screen and (min-width: 40em) {
  .wp-block-spacer.spacer-xlarge,
  .spacer.spacer-xlarge {
    height: 150px;
  }
}
@media print, screen and (min-width: 64em) {
  .wp-block-spacer.spacer-xlarge,
  .spacer.spacer-xlarge {
    height: 200px;
  }
}
@media screen and (min-width: 90em) {
  .wp-block-spacer.spacer-xlarge,
  .spacer.spacer-xlarge {
    height: 250px;
  }
}
@media print, screen and (min-width: 40em) {
  .wp-block-spacer.spacer-mob-only,
  .spacer.spacer-mob-only {
    height: 0 !important;
  }
}
@media only screen and (max-width: 768px) {
  .wp-block-spacer.desktop-only,
  .spacer.desktop-only {
    height: 0 !important;
  }
}

section.section-post-grid {
  padding-top: 75px;
}

.section-bg-black .post-grid-wrap .post-grid-pod .post-grid-pod-inner {
  color: #ffffff;
}

.filter-bar {
  background-color: #f5f7f8;
  border-top: #ffffff 1px solid;
  padding: 27px 0 20px;
  font-family: "canada-type-gibson", sans-serif;
  font-size: var(--standardFontSizeb);
  line-height: 140%;
  font-weight: 400;
  color: #335168;
}
@media print, screen and (min-width: 53.125em) {
  .filter-bar {
    font-size: var(--standardFontSizea);
  }
}
.filter-bar .filter-wrap {
  width: calc(100% - 2rem);
  margin-right: 1rem;
  margin-left: 1rem;
  display: flex;
  justify-content: flex-start;
}
.filter-bar .filter-wrap .facet-all {
  margin: 0 40px 0 0;
}
.filter-bar .filter-wrap .facetwp-facet {
  margin: 0;
  display: flex;
  justify-content: flex-start;
}
.filter-bar .filter-wrap .facetwp-facet .facetwp-checkbox,
.filter-bar .filter-wrap .facetwp-facet .facetwp-link {
  margin: 0 40px 0 0;
  background: none;
  padding: 0;
}
.filter-bar .filter-wrap .facetwp-facet .facetwp-checkbox .facetwp-counter,
.filter-bar .filter-wrap .facetwp-facet .facetwp-link .facetwp-counter {
  display: none;
}

section.section-post-slider {
  padding-top: 0;
}
@media print, screen and (min-width: 40em) {
  section.section-post-slider {
    padding-top: 75px;
  }
}

.post-slider .section-header {
  margin-bottom: 30px;
}
@media print, screen and (min-width: 40em) {
  .post-slider .section-header {
    margin-bottom: 70px;
  }
}

.post-slider-wrap {
  overflow-x: visible;
  width: 100%;
  /* FADE OUT NON-ACTIVE PODS
  .grid-pod {
  	opacity: 0.3;
  	transition: $transition;
  }
  .grid-pod.slick-active {
  	opacity: 1;
  }
  */
}
@media print, screen and (min-width: 40em) {
  .post-slider-wrap {
    padding-bottom: 70px;
  }
}
.post-slider-wrap .slick-list {
  width: 100%;
  padding-left: 0px;
  padding-right: 0px;
}
@media print, screen and (min-width: 40em) {
  .post-slider-wrap .slick-list {
    padding-left: 25px;
    padding-right: 25px;
  }
}
@media screen and (min-width: 103.125em) {
  .post-slider-wrap .slick-list {
    padding-left: calc((100% - 1480px) / 2 + 20px) !important;
    padding-right: calc((100% - 1480px) / 2 + 20px) !important;
  }
}
.post-slider-wrap .slick-track {
  display: flex;
}
.post-slider-wrap .slick-track .slick-slide {
  opacity: 0.3;
}
.post-slider-wrap .slick-track .slick-slide.slick-active {
  opacity: 1;
}

.section-bg-black .post-slider-wrap .post-grid-pod .post-grid-pod-inner {
  color: #ffffff;
}

.section-post-slider .slick-arrow {
  display: block !important;
}

.hero-image-wrap {
  position: relative;
  width: 100%;
  height: 100vh;
  /*
  &:before {
  	content: "";
  	z-index: 1;
  	position: absolute;
  	top: 0;
  	left: 0;
  	right: 0;
  	height: 300px;
  	// Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#000000+0,000000+100&1+0,0+100
  	background: -moz-linear-gradient(top, rgba(0,0,0,1) 0%, rgba(0,0,0,0) 100%); // FF3.6-15
  	background: -webkit-linear-gradient(top, rgba(0,0,0,1) 0%,rgba(0,0,0,0) 100%); // Chrome10-25,Safari5.1-6
  	background: linear-gradient(to bottom, rgba(0,0,0,1) 0%,rgba(0,0,0,0) 100%); // W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+
  	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#000000', endColorstr='#00000000',GradientType=0 ); // IE6-9
  	opacity: 0.3;
  }
  &:after {
  	content: "";
  	z-index: 1;
  	position: absolute;
  	bottom: 0;
  	left: 0;
  	right: 0;
  	height: 300px;
  	// Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#000000+0,000000+100&0+0,1+100
  	background: -moz-linear-gradient(top, rgba(0,0,0,0) 0%, rgba(0,0,0,1) 100%); // FF3.6-15
  	background: -webkit-linear-gradient(top, rgba(0,0,0,0) 0%,rgba(0,0,0,1) 100%); // Chrome10-25,Safari5.1-6
  	background: linear-gradient(to bottom, rgba(0,0,0,0) 0%,rgba(0,0,0,1) 100%); // W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+
  	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#00000000', endColorstr='#000000',GradientType=0 ); // IE6-9
  	opacity: 0.3;
  }

  .hero-image-cover {
  	@include position(absolute, 0,0,0,0);
  	background-color: rgba(0,0,0,0.4);
  }
  */
}
.hero-image-wrap.hero-image-reduced {
  height: 60vh;
}
.hero-image-wrap .hero-image-gallery,
.hero-image-wrap .slick-list,
.hero-image-wrap .slick-track {
  position: absolute !important;
  top: 0rem !important;
  right: 0rem !important;
  bottom: 0rem !important;
  left: 0rem !important;
}
.hero-image-wrap .slick-dots {
  bottom: 20px;
}
.hero-image-wrap .slick-dots li {
  width: 10px;
  height: 10px;
  margin: 0 5px;
}
.hero-image-wrap .slick-dots li button {
  background-color: #ffffff;
  opacity: 0.4;
  border: none !important;
  width: 10px;
  height: 10px;
}
.hero-image-wrap .slick-dots li.slick-active button {
  opacity: 1;
}
.hero-image-wrap .hero-image {
  position: absolute !important;
  top: 0rem !important;
  right: 0rem !important;
  bottom: 0rem !important;
  left: 0rem !important;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
}
.hero-image-wrap .hero-image-subtitle-wrap {
  position: absolute !important;
  top: 0rem !important;
  right: 0rem !important;
  bottom: 0rem !important;
  left: 0rem !important;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.hero-image-wrap .hero-image-subtitle-wrap span {
  color: #ffffff;
  margin-bottom: 50px;
}

.down-arrow {
  position: absolute;
  bottom: 20px;
  left: 50%;
  margin-left: -55px;
  z-index: 2;
}

section.standalone-text {
  padding: 0;
}
section.standalone-text.standalone-text-no-padding {
  padding: 0;
}
section.standalone-text .standalone-text-inner h1 {
  font-family: "canada-type-gibson", sans-serif;
  font-size: var(--headerFontSize3b);
  line-height: 110%;
  font-weight: 600;
  color: #002642;
  margin: 50px 0 20px;
  margin-top: 0;
}
@media print, screen and (min-width: 40em) {
  section.standalone-text .standalone-text-inner h1 {
    font-size: var(--headerFontSize3a);
  }
}
@media print, screen and (min-width: 53.125em) {
  section.standalone-text .standalone-text-inner h1 {
    font-size: var(--headerFontSize2b);
  }
}
@media print, screen and (min-width: 64em) {
  section.standalone-text .standalone-text-inner h1 {
    font-size: var(--headerFontSize2a);
  }
}
section.standalone-text .standalone-text-inner h1 span.orange {
  color: #ff5f15;
}
section.standalone-text .standalone-text-inner h2 {
  margin-top: 0;
  font-size: 40px;
}
@media print, screen and (min-width: 40em) {
  section.standalone-text .standalone-text-inner h2 {
    font-size: 60px;
  }
}
section.standalone-text .standalone-text-inner h2 span.orange {
  color: #ff5f15;
}
section.standalone-text.aligned-hardleft {
  margin-left: 20px;
}
@media print, screen and (min-width: 40em) {
  section.standalone-text.aligned-left {
    margin-left: 140px;
  }
}
section.standalone-text.align-text-center {
  text-align: center;
}

section.twin-images {
  width: calc(100% - 2rem);
  margin-right: 1rem;
  margin-left: 1rem;
  width: 100%;
  margin: 0;
  padding: 0;
}
section.twin-images .twin-images-1 {
  width: 100%;
  display: flex;
  justify-content: flex-start;
}
section.twin-images .twin-images-1 img {
  width: calc(91.6666666667% - 2rem);
  margin-right: 1rem;
  margin-left: 1rem;
  border-radius: 5px;
}
@media print, screen and (min-width: 40em) {
  section.twin-images .twin-images-1 img {
    width: calc(66.6666666667% - 2rem);
    margin-right: 1rem;
    margin-left: 1rem;
  }
}
section.twin-images .twin-images-2 {
  width: 100%;
  display: flex;
  justify-content: flex-end;
  margin-top: -5px;
}
@media print, screen and (min-width: 40em) {
  section.twin-images .twin-images-2 {
    margin-top: -50px;
  }
}
@media screen and (min-width: 90em) {
  section.twin-images .twin-images-2 {
    margin-top: -150px;
  }
}
section.twin-images .twin-images-2 img {
  width: calc(75% - 2rem);
  margin-right: 1rem;
  margin-left: 1rem;
  border-radius: 5px;
}
@media print, screen and (min-width: 40em) {
  section.twin-images .twin-images-2 img {
    width: calc(50% - 2rem);
    margin-right: 1rem;
    margin-left: 1rem;
  }
}
@media screen and (min-width: 75em) {
  section.twin-images .twin-images-2 img {
    width: calc(41.6666666667% - 2rem);
    margin-right: 1rem;
    margin-left: 1rem;
  }
}
section.twin-images.twin-images-right .twin-images-1 {
  justify-content: flex-end;
}
section.twin-images.twin-images-right .twin-images-2 {
  justify-content: flex-start;
}

.quote-wrap {
  margin-top: 25px;
  width: calc(83.3333333333% - 2rem);
  margin-right: 1rem;
  margin-left: 1rem;
  margin-left: calc(8.3333333333% + 1rem);
}
@media print, screen and (min-width: 40em) {
  .quote-wrap {
    width: calc(66.6666666667% - 2rem);
    margin-right: 1rem;
    margin-left: 1rem;
    margin-left: calc(16.6666666667% + 1rem);
  }
}
.quote-wrap .quote-text {
  position: relative;
  font-family: "canada-type-gibson", sans-serif;
  font-size: var(--headerFontSize2b);
  line-height: 110%;
  font-weight: 600;
  color: #002642;
  margin: 0px 0 20px;
  font-weight: 600;
  font-size: 28px;
  margin-bottom: 30px;
}
@media print, screen and (min-width: 40em) {
  .quote-wrap .quote-text {
    font-size: var(--headerFontSize2b);
  }
}
@media print, screen and (min-width: 64em) {
  .quote-wrap .quote-text {
    font-size: var(--headerFontSize1b);
  }
}
@media print, screen and (min-width: 40em) {
  .quote-wrap .quote-text {
    font-family: "canada-type-gibson", sans-serif;
    font-size: var(--headerFontSize2b);
    line-height: 110%;
    font-weight: 600;
    color: #002642;
    margin: 0px 0 20px;
  }
}
@media print, screen and (min-width: 40em) and (min-width: 40em) {
  .quote-wrap .quote-text {
    font-size: var(--headerFontSize2b);
  }
}
@media print, screen and (min-width: 40em) and (min-width: 64em) {
  .quote-wrap .quote-text {
    font-size: var(--headerFontSize1b);
  }
}
.quote-wrap .quote-text .quotemarks {
  width: 40px;
  height: 50px;
  position: absolute;
  left: -45px;
  top: -25px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center center;
}
@media print, screen and (min-width: 40em) {
  .quote-wrap .quote-text .quotemarks {
    width: 70px;
    height: 50px;
    position: absolute;
    left: -80px;
    top: -25px;
  }
}
.quote-wrap .quote-author {
  font-size: 24px;
  color: #4cbd5b;
  margin: 0;
}

.pretitle + h2 {
  margin-top: 0;
}

.pretitle {
  color: #1380cd;
}

.pretitle.text-align-center {
  text-align: center;
}

.hero-slider {
  width: calc(100% - 2rem);
  margin-right: 1rem;
  margin-left: 1rem;
}
.hero-slider .h-pic {
  position: relative;
  width: calc(100% + 50px);
  z-index: 1;
  overflow: hidden;
  margin-left: -25px;
  margin-right: -25px;
}
@media print, screen and (min-width: 40em) {
  .hero-slider .h-pic {
    width: 100%;
    border-radius: 5px;
    margin-left: 0;
    margin-right: 0;
  }
}
.hero-slider .h-pic:before {
  content: "";
  display: block;
  width: 100%;
  height: 0;
  padding-bottom: 75%;
}
@media print, screen and (min-width: 40em) {
  .hero-slider .h-pic:before {
    padding-bottom: 61.5384615385%;
    padding-bottom: 56.25%;
  }
}
.hero-slider .home-pic-wrap-master {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: #ffffff;
  overflow: hidden;
}
.hero-slider .home-pic-wrap-master .hpwm-pic {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 110%;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  opacity: 0;
}
.hero-slider .home-pic-wrap-master .hpwm-pic.hpwm-active {
  opacity: 1;
}

.home-pic-wrap-master .slick-list {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}
.home-pic-wrap-master .slick-list .slick-track {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100% !important;
}
.home-pic-wrap-master .slick-list .slick-track .hpwm-pic-outer {
  position: absolute !important;
  top: 0 !important;
  bottom: 0 !important;
  left: 0 !important;
  right: 0 !important;
}
.home-pic-wrap-master .slick-list .slick-track .hpwm-pic-outer .hpwm-pic {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 110%;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  opacity: 1;
}
.home-pic-wrap-master .slick-list .slick-track .hpwm-pic-outer.slick-animating.animation-rtl .hpwm-pic {
  animation-duration: 12s;
  animation-name: scrollLeft;
  animation-iteration-count: 1;
  animation-timing-function: linear;
}
.home-pic-wrap-master .slick-list .slick-track .hpwm-pic-outer.slick-animating.animation-zoom .hpwm-pic {
  animation-duration: 12s;
  animation-name: zoomer;
  animation-iteration-count: 1;
  animation-timing-function: linear;
}

@keyframes scrollLeft {
  0% {
    left: 0%;
  }
  100% {
    left: -10%;
  }
}
@keyframes zoomer {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.15);
  }
}
.scrolling-gallery {
  width: 100%;
}
.scrolling-gallery .scrolling-gallery-double {
  width: 100%;
}
.scrolling-gallery .scrolling-gallery-double .double-gallery-pod {
  width: 210px;
  height: 300px;
  background-color: #002642;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  margin: 0 10px;
  border-radius: 5px;
}
@media print, screen and (min-width: 40em) {
  .scrolling-gallery .scrolling-gallery-double .double-gallery-pod {
    width: 310px;
    height: 400px;
  }
}
.scrolling-gallery .scrolling-gallery-double .swiper-wrapper {
  -webkit-transition-timing-function: linear !important;
  -o-transition-timing-function: linear !important;
  transition-timing-function: linear !important;
}

.floating-anchor-menu {
  display: none;
  position: sticky;
  top: 85px;
  top: 25px;
  justify-content: center;
  z-index: 200;
  transition: all 0.2s ease-in-out;
}
@media print, screen and (min-width: 48em) {
  .floating-anchor-menu {
    display: flex;
  }
}
.floating-anchor-menu .floating-anchor-menu-wrap {
  position: relative;
  display: inline-flex;
  margin-left: auto;
  margin-right: auto;
  padding: 0 10px;
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  border-radius: 50px;
}
.floating-anchor-menu .floating-anchor-menu-wrap:before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: #e2e6eb;
  opacity: 0.75;
  border-radius: 50px;
}
.floating-anchor-menu .floating-anchor-menu-wrap a {
  position: relative;
  font-family: "canada-type-gibson", sans-serif;
  font-size: var(--smallFontSizea);
  line-height: 140%;
  font-weight: 400;
  font-weight: 400;
  color: #002642;
  margin: 10px 20px;
  transition: all 0.2s ease-in-out;
}
.floating-anchor-menu .floating-anchor-menu-wrap a:before {
  content: "";
  position: absolute;
  top: -5px;
  right: -25px;
  bottom: -5px;
  left: -25px;
  border-radius: 50px;
  background-color: #1380cd;
  opacity: 0;
  transition: all 0.2s ease-in-out;
}
.floating-anchor-menu .floating-anchor-menu-wrap a.active {
  color: #ffffff;
}
.floating-anchor-menu .floating-anchor-menu-wrap a.active:before {
  opacity: 1;
}
.floating-anchor-menu .floating-anchor-menu-wrap a span {
  position: relative;
}

body.going-up .floating-anchor-menu {
  top: 165px;
  top: 85px;
}

.impact-block .impact-block-wrap {
  display: flex;
  flex-flow: row wrap;
}
.impact-block .impact-block-wrap .impact-block-main {
  width: calc(100% - 2rem);
  margin-right: 1rem;
  margin-left: 1rem;
  position: relative;
}
@media print, screen and (min-width: 40em) {
  .impact-block .impact-block-wrap .impact-block-main {
    width: calc(83.3333333333% - 2rem);
    margin-right: 1rem;
    margin-left: 1rem;
    margin-left: calc(8.3333333333% + 1rem);
  }
}
.impact-block .impact-block-wrap .impact-block-main .impact-block-main-pretitle p {
  font-family: "canada-type-gibson", sans-serif;
  font-size: var(--smallFontSizeb);
  line-height: 140%;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: #1380cd;
}
@media print, screen and (min-width: 40em) {
  .impact-block .impact-block-wrap .impact-block-main .impact-block-main-pretitle p {
    font-size: var(--smallFontSizea);
  }
}
@media print, screen and (min-width: 40em) {
  .impact-block .impact-block-wrap .impact-block-main .impact-block-main-pretitle {
    position: absolute;
    left: -45px;
    left: -65px;
    margin-top: 10px;
    z-index: 1;
  }
  .impact-block .impact-block-wrap .impact-block-main .impact-block-main-pretitle p {
    writing-mode: vertical-lr;
    text-orientation: sideways;
    transform: rotate(180deg);
  }
}
.impact-block .impact-block-wrap .impact-block-main .impact-block-main-wrap {
  display: flex;
  flex-flow: row wrap;
  width: calc(100% + 40px);
  margin-left: -20px;
  margin-right: -20px;
}
.impact-block .impact-block-wrap .impact-block-main .impact-block-main-wrap h1 {
  width: calc(100% - 2rem);
  margin-right: 1rem;
  margin-left: 1rem;
  position: relative;
  z-index: 1;
  margin-bottom: 30px;
  font-size: 40px;
}
@media print, screen and (min-width: 40em) {
  .impact-block .impact-block-wrap .impact-block-main .impact-block-main-wrap h1 {
    font-size: 60px;
  }
}
@media print, screen and (min-width: 60em) {
  .impact-block .impact-block-wrap .impact-block-main .impact-block-main-wrap h1 {
    font-size: 80px;
  }
}
@media screen and (min-width: 90em) {
  .impact-block .impact-block-wrap .impact-block-main .impact-block-main-wrap h1 {
    font-size: 100px;
  }
}
.impact-block .impact-block-wrap .impact-block-main .impact-block-main-wrap h1 span.orange {
  color: #ff5f15;
}
@media print, screen and (min-width: 40em) {
  .impact-block .impact-block-wrap .impact-block-main .impact-block-main-wrap h1 span.white {
    color: #ffffff;
  }
}
.impact-block .impact-block-wrap .impact-block-main .impact-block-main-wrap .impact-block-main-body-wrap .impact-block-main-body {
  position: relative;
  z-index: 1;
  display: flex;
  flex-flow: row wrap;
}
.impact-block .impact-block-wrap .impact-block-main .impact-block-main-wrap .impact-block-main-body-wrap .impact-block-main-body p {
  font-size: 24px;
  padding-bottom: 10px;
  width: calc(100% - 2rem);
  margin-right: 1rem;
  margin-left: 1rem;
}
@media print, screen and (min-width: 53.125em) {
  .impact-block .impact-block-wrap .impact-block-main .impact-block-main-wrap .impact-block-main-body-wrap .impact-block-main-body p {
    font-size: 32px;
    width: calc(50% - 2rem);
    margin-right: 1rem;
    margin-left: 1rem;
  }
}
.impact-block .impact-block-wrap .impact-block-main .impact-block-main-wrap .impact-block-main-body-wrap .impact-block-main-body p.large-text {
  font-size: 18px;
}
@media print, screen and (min-width: 40em) {
  .impact-block .impact-block-wrap .impact-block-main .impact-block-main-wrap .impact-block-main-body-wrap .impact-block-main-body p.large-text {
    font-size: 24px;
  }
}
.impact-block.main-block-layout-small-image .impact-block-wrap .impact-block-main {
  width: calc(100% - 2rem);
  margin-right: 1rem;
  margin-left: 1rem;
}
@media print, screen and (min-width: 60em) {
  .impact-block.main-block-layout-small-image .impact-block-wrap .impact-block-main {
    width: calc(91.6666666667% - 2rem);
    margin-right: 1rem;
    margin-left: 1rem;
    margin-left: calc(8.3333333333% + 1rem);
  }
}
.impact-block.main-block-layout-small-image .impact-block-wrap .impact-block-main .impact-block-main-wrap h1 {
  max-width: 1160px;
}
.impact-block.main-block-layout-small-image .impact-block-wrap .impact-block-main .impact-block-main-wrap .impact-block-main-body-wrap {
  display: flex;
  flex-direction: column-reverse;
}
@media print, screen and (min-width: 60em) {
  .impact-block.main-block-layout-small-image .impact-block-wrap .impact-block-main .impact-block-main-wrap .impact-block-main-body-wrap {
    display: flex;
    flex-flow: row wrap;
    justify-content: space-between;
  }
}
.impact-block.main-block-layout-small-image .impact-block-wrap .impact-block-main .impact-block-main-wrap .impact-block-main-body-wrap .impact-block-main-body {
  flex-direction: column;
  display: block;
}
@media print, screen and (min-width: 60em) {
  .impact-block.main-block-layout-small-image .impact-block-wrap .impact-block-main .impact-block-main-wrap .impact-block-main-body-wrap .impact-block-main-body {
    width: calc(45.8333333333% - 2rem);
    margin-right: 1rem;
    margin-left: 1rem;
  }
}
@media print, screen and (min-width: 53.125em) {
  .impact-block.main-block-layout-small-image .impact-block-wrap .impact-block-main .impact-block-main-wrap .impact-block-main-body-wrap .impact-block-main-body p {
    width: 100%;
    margin: 0;
  }
}
.impact-block.main-block-layout-small-image .impact-block-wrap .impact-block-main .impact-block-main-wrap .impact-block-main-body-wrap .impact-block-main-small-image {
  position: relative;
  z-index: 0;
  width: 90%;
  margin: auto;
  top: -15px;
  padding-right: 0;
  max-height: 440px;
  border-radius: 20px;
  overflow: hidden;
}
@media print, screen and (min-width: 60em) {
  .impact-block.main-block-layout-small-image .impact-block-wrap .impact-block-main .impact-block-main-wrap .impact-block-main-body-wrap .impact-block-main-small-image {
    margin-left: 0;
    margin-right: 0;
    margin-top: 0;
    top: -110px;
    top: -80px;
    margin-bottom: -110px;
    width: calc(52.5% - 2rem);
    margin-right: 1rem;
    margin-left: 1rem;
  }
}
.impact-block.main-block-layout-small-image .impact-block-wrap .impact-block-main .impact-block-main-wrap .impact-block-main-body-wrap .impact-block-main-small-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.impact-block.image-layout-full-width {
  margin-top: 0;
  padding-top: 0;
}
.impact-block.image-layout-full-width .impact-block-top-image .impact-block-top-image-full {
  width: 100%;
  max-height: 850px;
  overflow: hidden;
  margin-bottom: -114px;
  margin-bottom: -46px;
}
@media print, screen and (min-width: 60em) {
  .impact-block.image-layout-full-width .impact-block-top-image .impact-block-top-image-full {
    margin-bottom: -61px;
  }
}
@media screen and (min-width: 90em) {
  .impact-block.image-layout-full-width .impact-block-top-image .impact-block-top-image-full {
    margin-bottom: -76px;
  }
}
.impact-block.image-layout-full-width .impact-block-top-image .impact-block-top-image-full img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}
.impact-block.image-layout-full-width .impact-block-wrap .impact-block-main .impact-block-main-pretitle {
  margin-top: 90px;
}
.impact-block.image-layout-large-rounded .impact-block-top-image {
  display: flex;
  flex-flow: row wrap;
}
.impact-block.image-layout-large-rounded .impact-block-top-image .impact-block-top-image-rounded {
  width: calc(100% - 2rem);
  margin-right: 1rem;
  margin-left: 1rem;
  max-height: 550px;
  overflow: hidden;
  border-radius: 20px;
  margin-bottom: 20px;
}
@media print, screen and (min-width: 40em) {
  .impact-block.image-layout-large-rounded .impact-block-top-image .impact-block-top-image-rounded {
    margin-bottom: -60px;
  }
}
.impact-block.image-layout-large-rounded .impact-block-top-image .impact-block-top-image-rounded img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}
.impact-block.image-layout-large-rounded .impact-block-wrap .impact-block-main {
  width: calc(100% - 2rem);
  margin-right: 1rem;
  margin-left: 1rem;
}
@media print, screen and (min-width: 40em) {
  .impact-block.image-layout-large-rounded .impact-block-wrap .impact-block-main {
    width: calc(83.3333333333% - 2rem);
    margin-right: 1rem;
    margin-left: 1rem;
    margin-left: calc(8.3333333333% + 1rem);
  }
}
.impact-block.image-layout-large-rounded .impact-block-wrap .impact-block-main .impact-block-main-pretitle {
  position: relative;
  z-index: 50;
  margin-top: 0;
}
.impact-block.image-layout-large-rounded .impact-block-wrap .impact-block-main .impact-block-main-pretitle p {
  margin-bottom: 10px;
}
@media print, screen and (min-width: 40em) {
  .impact-block.image-layout-large-rounded .impact-block-wrap .impact-block-main .impact-block-main-pretitle {
    left: -40px;
    position: absolute;
  }
}
@media print, screen and (min-width: 60em) {
  .impact-block.image-layout-large-rounded .impact-block-wrap .impact-block-main .impact-block-main-pretitle {
    margin-top: 80px;
    left: -55px;
  }
}
.impact-block.image-layout-large-rounded .impact-block-wrap .impact-block-main .impact-block-main-wrap {
  position: relative;
}
.impact-block.image-layout-large-rounded .impact-block-wrap .impact-block-main .impact-block-main-wrap:before {
  display: none;
  content: "";
  position: absolute;
  background-color: white;
  height: 100%;
  top: -50px;
  left: 10px;
  right: 10px;
  z-index: 0;
  border-radius: 20px;
}
@media print, screen and (min-width: 40em) {
  .impact-block.image-layout-large-rounded .impact-block-wrap .impact-block-main .impact-block-main-wrap:before {
    display: block;
    top: -40px;
    left: -40px;
    right: -40px;
  }
}
.impact-block.image-layout-large-rounded .impact-block-wrap .impact-block-main .impact-block-main-wrap .impact-block-main-body {
  display: block;
}
.impact-block.image-layout-large-rounded .impact-block-wrap .impact-block-main .impact-block-main-wrap .impact-block-main-body p {
  width: calc(100% - 2rem);
  margin-right: 1rem;
  margin-left: 1rem;
}
@media print, screen and (min-width: 60em) {
  .impact-block.image-layout-large-rounded .impact-block-wrap .impact-block-main .impact-block-main-wrap .impact-block-main-body {
    display: flex;
  }
  .impact-block.image-layout-large-rounded .impact-block-wrap .impact-block-main .impact-block-main-wrap .impact-block-main-body p {
    width: calc(50% - 2rem);
    margin-right: 1rem;
    margin-left: 1rem;
  }
}

.success-stories-loop .container {
  display: flex;
  flex-flow: row wrap;
  padding: 15px;
}
.success-stories-loop .container .standalone-text-inner {
  width: calc(100% - 2rem);
  margin-right: 1rem;
  margin-left: 1rem;
  margin-bottom: 40px;
}
@media print, screen and (min-width: 60em) {
  .success-stories-loop .container .standalone-text-inner {
    width: calc(66.6666666667% - 2rem);
    margin-right: 1rem;
    margin-left: 1rem;
  }
}
@media screen and (min-width: 75em) {
  .success-stories-loop .container .standalone-text-inner {
    width: calc(50% - 2rem);
    margin-right: 1rem;
    margin-left: 1rem;
  }
}
.success-stories-loop .container .standalone-text-inner h1 {
  font-family: "canada-type-gibson", sans-serif;
  font-size: var(--headerFontSize3b);
  line-height: 110%;
  font-weight: 600;
  color: #002642;
  margin: 50px 0 20px;
  margin-top: 0;
}
@media print, screen and (min-width: 40em) {
  .success-stories-loop .container .standalone-text-inner h1 {
    font-size: var(--headerFontSize3a);
  }
}
@media print, screen and (min-width: 53.125em) {
  .success-stories-loop .container .standalone-text-inner h1 {
    font-size: var(--headerFontSize2b);
  }
}
@media print, screen and (min-width: 64em) {
  .success-stories-loop .container .standalone-text-inner h1 {
    font-size: var(--headerFontSize2a);
  }
}
.success-stories-loop .container .standalone-text-inner h2 {
  margin-top: 0;
}
.success-stories-loop .container .standalone-text-inner p {
  margin: 0;
}

.success-story-pod .success-story-pod-image {
  position: relative;
  width: 100%;
}
.success-story-pod .success-story-pod-image:before {
  content: "";
  width: 100%;
  height: 0;
  padding-bottom: 87.5%;
  display: block;
}
.success-story-pod .success-story-pod-image .sspi-gradient {
  position: absolute;
  left: 0;
  bottom: 0;
  right: 0;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  padding-bottom: 72.7272727273%;
  border-radius: 10px;
}
.success-story-pod .success-story-pod-image .sspi-gradient .sspi-pattern {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 10px;
  overflow: hidden;
}
.success-story-pod .success-story-pod-image .sspi-gradient .sspi-pattern svg {
  position: absolute;
  width: 2000px;
  max-width: 2000px;
  height: 1000px;
  left: calc(50% - 1000px);
  top: calc(50% - 500px);
  transition: width 0.3s ease-in-out, height 0.3s ease-in-out, left 0.3s ease-in-out, top 0.3s ease-in-out;
}
.success-story-pod .success-story-pod-image .sspi-gradient.sspi-gradient-red {
  background-image: url("../images/mesh/mesh-grad-red.jpg");
}
.success-story-pod .success-story-pod-image .sspi-gradient.sspi-gradient-red .sspi-pattern svg #fill {
  fill: #ffd0a9;
}
.success-story-pod .success-story-pod-image .sspi-gradient.sspi-gradient-red .sspi-pattern svg #stroke {
  stroke: #ffd0a9;
}
.success-story-pod .success-story-pod-image .sspi-gradient.sspi-gradient-green {
  background-image: url("../images/mesh/mesh-grad-green.jpg");
}
.success-story-pod .success-story-pod-image .sspi-gradient.sspi-gradient-green .sspi-pattern svg #fill {
  fill: #b5e05d;
}
.success-story-pod .success-story-pod-image .sspi-gradient.sspi-gradient-green .sspi-pattern svg #stroke {
  stroke: #b5e05d;
}
.success-story-pod .success-story-pod-image .sspi-gradient.sspi-gradient-blue {
  background-image: url("../images/mesh/mesh-grad-blue.jpg");
}
.success-story-pod .success-story-pod-image .sspi-gradient.sspi-gradient-blue .sspi-pattern svg #fill {
  fill: #9ddefd;
}
.success-story-pod .success-story-pod-image .sspi-gradient.sspi-gradient-blue .sspi-pattern svg #stroke {
  stroke: #9ddefd;
}
.success-story-pod .success-story-pod-image .sspi-cutout {
  position: absolute;
  right: 0;
  left: 0;
  bottom: 0;
  height: 90%;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  transform-origin: bottom;
  transition: transform 0.3s ease-in-out;
  z-index: 10;
}
.success-story-pod:hover .success-story-pod-image .sspi-gradient .sspi-pattern svg {
  width: 1900px;
  height: 950px;
  left: calc(50% - 950px);
  top: calc(50% - 475px);
}
.success-story-pod:hover .success-story-pod-image .sspi-cutout {
  transform: scale(1.03) !important;
}

.team .container .team-title {
  text-align: center;
  margin-top: 25px;
  margin-bottom: 50px;
}
.team .container .team-wrapper {
  margin-bottom: 10px;
  display: flex;
  flex-flow: row wrap;
  justify-content: center;
  row-gap: 40px;
}
.team .container .team-wrapper .team-member {
  width: calc(100% - 2rem);
  margin-right: 1rem;
  margin-left: 1rem;
}
@media print, screen and (min-width: 40em) {
  .team .container .team-wrapper .team-member {
    width: calc(50% - 2rem);
    margin-right: 1rem;
    margin-left: 1rem;
  }
}
@media print, screen and (min-width: 53.125em) {
  .team .container .team-wrapper .team-member {
    width: calc(33.3333333333% - 2rem);
    margin-right: 1rem;
    margin-left: 1rem;
  }
}
@media screen and (min-width: 75em) {
  .team .container .team-wrapper .team-member {
    width: calc(25% - 2rem);
    margin-right: 1rem;
    margin-left: 1rem;
  }
}
.team .container .team-wrapper .team-member .team-member-image-wrap {
  width: 100%;
  position: relative;
}
.team .container .team-wrapper .team-member .team-member-image-wrap .team-member-image {
  position: relative;
  z-index: 1;
  margin: auto;
  border-radius: 50%;
  overflow: hidden;
  width: 50%;
  max-width: 300px;
  aspect-ratio: 1/1;
}
.team .container .team-wrapper .team-member .team-member-image-wrap .team-member-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.team .container .team-wrapper .team-member .team-member-image-wrap:after {
  position: absolute;
  z-index: 0;
  content: "";
  width: 100%;
  height: 50%;
  bottom: 0;
  background-color: #ffffff;
  border-radius: 10px 10px 0 0;
}
.team .container .team-wrapper .team-member .team-member-body {
  padding: 30px;
  padding-top: 20px;
  background-color: #ffffff;
  text-align: center;
  border-radius: 0 0 10px 10px;
}
.team .container .team-wrapper .team-member .team-member-body h4 {
  margin: 0;
  margin-bottom: 10px;
}
.team .container .team-wrapper .team-member .team-member-body p {
  font-family: "canada-type-gibson", sans-serif;
  font-size: var(--smallFontSizea);
  line-height: 140%;
  font-weight: 400;
  margin-bottom: 10px;
}
.team .container .team-wrapper .team-member .team-member-body a {
  font-size: 16px;
  font-weight: 500;
  line-height: 16px;
  border-bottom: 1px solid #1380cd;
  padding-bottom: 2px;
}
@media screen and (min-width: 75em) {
  .team .container .team-wrapper .team-member.team-member-display-no-image {
    width: calc(20% - 2rem);
    margin-right: 1rem;
    margin-left: 1rem;
  }
}
.team .container .team-wrapper .team-member.team-member-display-no-image .team-member-body {
  height: 100%;
  padding: 20px;
  border-radius: 10px;
}
.team .container .team-wrapper .team-member.team-member-display-no-image .team-member-body p {
  margin-bottom: 0;
}
.team .container .team-wrapper .team-member.team-member-display-no-image .team-member-body a {
  display: none;
}

.section-bg-white .container .team-wrapper .team-member .team-member-image-wrap:after {
  background-color: #f5f7f8;
}
.section-bg-white .container .team-wrapper .team-member .team-member-body {
  background-color: #f5f7f8;
}

section.section.impact-text-outline {
  padding: 0;
}
section.section.impact-text-outline h2 {
  text-align: center;
  font-family: "canada-type-gibson", sans-serif;
  font-size: var(--impactFontMedium);
  color: #002642;
  line-height: 100%;
  font-weight: 700;
  text-transform: uppercase;
  margin-top: 0;
  font-size: 110px;
  line-height: 90%;
  color: #ffffff;
  -webkit-text-stroke: 2px #002642;
}
@media print, screen and (min-width: 40em) {
  section.section.impact-text-outline h2 {
    font-size: 200px;
  }
}
@media print, screen and (min-width: 60em) {
  section.section.impact-text-outline h2 {
    font-size: 300px;
  }
}
@media screen and (min-width: 75em) {
  section.section.impact-text-outline h2 {
    font-size: 400px;
  }
}

.callout-cards {
  display: flex;
  flex-flow: row wrap;
  row-gap: 40px;
}
.callout-cards .callout-cards-wrap {
  width: 100%;
  display: flex;
  flex-flow: row wrap;
  row-gap: 20px;
  justify-content: center;
}
@media print, screen and (min-width: 40em) {
  .callout-cards .callout-cards-wrap {
    row-gap: 40px;
  }
}
.callout-cards .callout-cards-wrap .callout-card {
  width: calc(100% - 2rem);
  margin-right: 1rem;
  margin-left: 1rem;
  text-align: center;
  background-color: #f5f7f8;
  border-radius: 10px;
  overflow: hidden;
}
@media print, screen and (min-width: 48em) {
  .callout-cards .callout-cards-wrap .callout-card {
    width: calc(50% - 2rem);
    margin-right: 1rem;
    margin-left: 1rem;
  }
}
.callout-cards .callout-cards-wrap .callout-card .callout-card-body {
  height: 100%;
  padding: 30px;
  display: flex;
  flex-direction: column;
}
.callout-cards .callout-cards-wrap .callout-card .callout-card-body h3.callout-card-label {
  margin: 0;
  margin-bottom: 20px;
  color: #335168;
}
.callout-cards .callout-cards-wrap .callout-card .callout-card-body p {
  color: #335168;
}
.callout-cards .callout-cards-wrap .callout-card .callout-card-body .has-steel-blue-color p {
  color: #1380cd;
}
.callout-cards .callout-cards-wrap .callout-card .callout-card-body .has-grey-color p {
  color: #99a8b3;
}
.callout-cards .callout-cards-wrap .callout-card .callout-card-body .has-navy-color p {
  color: #002642;
}
.callout-cards .callout-cards-wrap .callout-card .callout-card-body *:last-child {
  margin-bottom: 0;
}
.callout-cards .callout-cards-wrap .callout-card .callout-card-body .callout-card-text-quote {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-bottom: 30px;
}
.callout-cards .callout-cards-wrap .callout-card .callout-card-body .callout-card-text-quote p {
  font-family: "canada-type-gibson", sans-serif;
  font-size: var(--headerFontSize2b);
  line-height: 110%;
  font-weight: 600;
  color: #002642;
  margin: 0px 0 20px;
  color: #335168;
}
@media print, screen and (min-width: 40em) {
  .callout-cards .callout-cards-wrap .callout-card .callout-card-body .callout-card-text-quote p {
    font-size: var(--headerFontSize2b);
  }
}
@media print, screen and (min-width: 64em) {
  .callout-cards .callout-cards-wrap .callout-card .callout-card-body .callout-card-text-quote p {
    font-size: var(--headerFontSize1b);
  }
}
.callout-cards .callout-cards-wrap .callout-card .callout-card-image {
  height: 300px;
}
@media print, screen and (min-width: 48em) {
  .callout-cards .callout-cards-wrap .callout-card .callout-card-image {
    height: 300px;
  }
}
.callout-cards .callout-cards-wrap .callout-card .callout-card-image img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}
.callout-cards .callout-cards-wrap .callout-card .callout-card-counter span {
  font-family: "canada-type-gibson", sans-serif;
  font-size: var(--impactFontMedium);
  color: #002642;
  line-height: 100%;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 50px;
  font-weight: 400;
  color: transparent;
  -webkit-text-stroke: 1px #002642;
}
@media print, screen and (min-width: 40em) {
  .callout-cards .callout-cards-wrap .callout-card .callout-card-counter span {
    font-size: var(--impactFontLarge);
  }
}
.callout-cards .callout-cards-wrap .callout-card .callout-card-stat span {
  font-family: "canada-type-gibson", sans-serif;
  font-size: var(--impactFontMedium);
  color: #002642;
  line-height: 100%;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 50px;
}
@media print, screen and (min-width: 40em) {
  .callout-cards .callout-cards-wrap .callout-card .callout-card-stat span {
    font-size: var(--impactFontLarge);
  }
}
@media print, screen and (min-width: 40em) {
  .callout-cards .callout-cards-wrap .callout-card .callout-card-stat span {
    font-size: 60px !important;
  }
}
@media print, screen and (min-width: 64em) {
  .callout-cards .callout-cards-wrap .callout-card .callout-card-stat span {
    font-size: 60px;
  }
}
@media screen and (min-width: 87.5em) {
  .callout-cards .callout-cards-wrap .callout-card .callout-card-stat span {
    font-size: 50px;
  }
}
@media screen and (min-width: 87.5em) and (min-width: 40em) {
  .callout-cards .callout-cards-wrap .callout-card .callout-card-stat span {
    font-size: var(--impactFontLarge);
  }
}
.callout-cards .callout-cards-wrap .callout-card.callout-card-offwhite {
  border: #e2e6eb 1px solid;
}
.callout-cards .callout-cards-wrap .callout-card.callout-card-white {
  background-color: #ffffff;
}
.callout-cards .callout-cards-wrap .callout-card.callout-card-scarlet {
  background-color: #f43601;
}
.callout-cards .callout-cards-wrap .callout-card.callout-card-orange {
  background-color: #ff5f15;
}
.callout-cards .callout-cards-wrap .callout-card.callout-card-peach {
  background-color: #ffd0a9;
}
.callout-cards .callout-cards-wrap .callout-card.callout-card-steel-blue {
  background-color: #1380cd;
}
.callout-cards .callout-cards-wrap .callout-card.callout-card-sky-blue {
  background-color: #48b2fe;
}
.callout-cards .callout-cards-wrap .callout-card.callout-card-pale-blue {
  background-color: #9ddefd;
}
.callout-cards .callout-cards-wrap .callout-card.callout-card-mantis-green {
  background-color: #4cbd5b;
}
.callout-cards .callout-cards-wrap .callout-card.callout-card-navy {
  background-color: #002642;
}
.callout-cards .callout-cards-wrap .callout-card.callout-card-dark-grey {
  background-color: #335168;
}
.callout-cards .callout-cards-wrap .callout-card.callout-card-scarlet h2,
.callout-cards .callout-cards-wrap .callout-card.callout-card-scarlet h3,
.callout-cards .callout-cards-wrap .callout-card.callout-card-scarlet p,
.callout-cards .callout-cards-wrap .callout-card.callout-card-scarlet .callout-card-stat span, .callout-cards .callout-cards-wrap .callout-card.callout-card-orange h2,
.callout-cards .callout-cards-wrap .callout-card.callout-card-orange h3,
.callout-cards .callout-cards-wrap .callout-card.callout-card-orange p,
.callout-cards .callout-cards-wrap .callout-card.callout-card-orange .callout-card-stat span, .callout-cards .callout-cards-wrap .callout-card.callout-card-steel-blue h2,
.callout-cards .callout-cards-wrap .callout-card.callout-card-steel-blue h3,
.callout-cards .callout-cards-wrap .callout-card.callout-card-steel-blue p,
.callout-cards .callout-cards-wrap .callout-card.callout-card-steel-blue .callout-card-stat span, .callout-cards .callout-cards-wrap .callout-card.callout-card-sky-blue h2,
.callout-cards .callout-cards-wrap .callout-card.callout-card-sky-blue h3,
.callout-cards .callout-cards-wrap .callout-card.callout-card-sky-blue p,
.callout-cards .callout-cards-wrap .callout-card.callout-card-sky-blue .callout-card-stat span, .callout-cards .callout-cards-wrap .callout-card.callout-card-mantis-green h2,
.callout-cards .callout-cards-wrap .callout-card.callout-card-mantis-green h3,
.callout-cards .callout-cards-wrap .callout-card.callout-card-mantis-green p,
.callout-cards .callout-cards-wrap .callout-card.callout-card-mantis-green .callout-card-stat span, .callout-cards .callout-cards-wrap .callout-card.callout-card-navy h2,
.callout-cards .callout-cards-wrap .callout-card.callout-card-navy h3,
.callout-cards .callout-cards-wrap .callout-card.callout-card-navy p,
.callout-cards .callout-cards-wrap .callout-card.callout-card-navy .callout-card-stat span, .callout-cards .callout-cards-wrap .callout-card.callout-card-dark-grey h2,
.callout-cards .callout-cards-wrap .callout-card.callout-card-dark-grey h3,
.callout-cards .callout-cards-wrap .callout-card.callout-card-dark-grey p,
.callout-cards .callout-cards-wrap .callout-card.callout-card-dark-grey .callout-card-stat span {
  color: #ffffff !important;
}
@media print, screen and (min-width: 64em) {
  .callout-cards .callout-cards-wrap.callout-cards-column-count-1 {
    width: calc(66.6666666667% - 2rem);
    margin-right: 1rem;
    margin-left: 1rem;
    margin: auto;
  }
}
.callout-cards .callout-cards-wrap.callout-cards-column-count-1 .callout-card {
  width: calc(100% - 2rem);
  margin-right: 1rem;
  margin-left: 1rem;
}
@media print, screen and (min-width: 64em) {
  .callout-cards .callout-cards-wrap.callout-cards-column-count-2 {
    width: calc(83.3333333333% - 2rem);
    margin-right: 1rem;
    margin-left: 1rem;
    margin: auto;
  }
}
@media print, screen and (min-width: 64em) {
  .callout-cards .callout-cards-wrap.callout-cards-column-count-2 .callout-card {
    width: calc(50% - 2rem);
    margin-right: 1rem;
    margin-left: 1rem;
  }
}
@media print, screen and (min-width: 64em) {
  .callout-cards .callout-cards-wrap.callout-cards-column-count-3 .callout-card {
    width: calc(33.3333333333% - 2rem);
    margin-right: 1rem;
    margin-left: 1rem;
  }
}
@media screen and (min-width: 75em) {
  .callout-cards .callout-cards-wrap.callout-cards-column-count-4 .callout-card {
    width: calc(25% - 2rem);
    margin-right: 1rem;
    margin-left: 1rem;
  }
}
.callout-cards .callout-cards-wrap.callout-cards-column-count-4 .callout-card .callout-card-body h3.callout-card-label {
  font-family: "canada-type-gibson", sans-serif;
  font-size: var(--headerFontSize5b);
  line-height: 110%;
  font-weight: 600;
  color: #002642;
  margin: 40px 0 15px;
  margin: 0;
  margin-bottom: 20px;
}
@media print, screen and (min-width: 40em) {
  .callout-cards .callout-cards-wrap.callout-cards-column-count-4 .callout-card .callout-card-body h3.callout-card-label {
    font-size: var(--headerFontSize5a);
  }
}
@media print, screen and (min-width: 53.125em) {
  .callout-cards .callout-cards-wrap.callout-cards-column-count-4 .callout-card .callout-card-body h3.callout-card-label {
    font-size: var(--headerFontSize4b);
  }
}
@media print, screen and (min-width: 64em) {
  .callout-cards .callout-cards-wrap.callout-cards-column-count-4 .callout-card .callout-card-body h3.callout-card-label {
    font-size: var(--headerFontSize4a);
  }
}
.callout-cards .callout-cards-wrap.variable-height .callout-card {
  height: max-content;
}
.callout-cards.callout-cards-visual-hook-sequential-counter .callout-cards-wrap .callout-card {
  padding-top: 30px;
}
.callout-cards.callout-cards-visual-hook-sequential-counter .callout-cards-wrap .callout-card .callout-card-body {
  padding-top: 10px;
}
.callout-cards.callout-cards-visual-hook-stats .callout-cards-wrap .callout-card {
  padding-top: 30px;
}
.callout-cards.callout-cards-visual-hook-stats .callout-cards-wrap .callout-card .callout-card-body {
  padding-top: 10px;
}

.success-stories-loop .container {
  display: flex;
  flex-flow: row wrap;
  padding: 15px;
}
.success-stories-loop .container .standalone-text-inner {
  width: calc(100% - 2rem);
  margin-right: 1rem;
  margin-left: 1rem;
  margin-bottom: 40px;
}
@media print, screen and (min-width: 60em) {
  .success-stories-loop .container .standalone-text-inner {
    width: calc(66.6666666667% - 2rem);
    margin-right: 1rem;
    margin-left: 1rem;
  }
}
@media screen and (min-width: 75em) {
  .success-stories-loop .container .standalone-text-inner {
    width: calc(50% - 2rem);
    margin-right: 1rem;
    margin-left: 1rem;
  }
}
.success-stories-loop .container .standalone-text-inner h1 {
  font-family: "canada-type-gibson", sans-serif;
  font-size: var(--headerFontSize3b);
  line-height: 110%;
  font-weight: 600;
  color: #002642;
  margin: 50px 0 20px;
  margin-top: 0;
}
@media print, screen and (min-width: 40em) {
  .success-stories-loop .container .standalone-text-inner h1 {
    font-size: var(--headerFontSize3a);
  }
}
@media print, screen and (min-width: 53.125em) {
  .success-stories-loop .container .standalone-text-inner h1 {
    font-size: var(--headerFontSize2b);
  }
}
@media print, screen and (min-width: 64em) {
  .success-stories-loop .container .standalone-text-inner h1 {
    font-size: var(--headerFontSize2a);
  }
}
.success-stories-loop .container .standalone-text-inner h2 {
  margin-top: 0;
}
.success-stories-loop .container .standalone-text-inner p {
  margin: 0;
}

section.home-hero {
  position: relative;
  padding-top: 120px;
  padding-bottom: 0;
}
@media print, screen and (min-width: 40em) {
  section.home-hero {
    padding-top: 230px;
  }
}
section.home-hero:before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 100px;
  background: #ffffff;
  z-index: 1;
}
@media print, screen and (min-width: 40em) {
  section.home-hero:before {
    height: 325px;
  }
}
section.home-hero .home-hero-inner {
  position: relative;
  width: calc(100% - 2rem);
  margin-right: 1rem;
  margin-left: 1rem;
  display: flex;
  flex-direction: column;
}
section.home-hero .home-hero-inner .home-hero-top {
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 30px;
  text-align: center;
}
@media print, screen and (min-width: 53.125em) {
  section.home-hero .home-hero-inner .home-hero-top {
    display: flex;
    text-align: left;
  }
}
section.home-hero .home-hero-inner .home-hero-top .home-hero-top-left {
  max-width: 440px;
  font-family: "canada-type-gibson", sans-serif;
  font-size: var(--largeFontSizeb);
  line-height: 140%;
  font-weight: 400;
  margin: auto;
  margin-bottom: 20px;
}
@media print, screen and (min-width: 40em) {
  section.home-hero .home-hero-inner .home-hero-top .home-hero-top-left {
    font-size: var(--largeFontSizea);
  }
}
@media print, screen and (min-width: 53.125em) {
  section.home-hero .home-hero-inner .home-hero-top .home-hero-top-left {
    margin-left: 0;
    margin-right: 0;
    margin-bottom: 0;
  }
}
section.home-hero .home-hero-inner .home-hero-top .home-hero-top-right .home-hero-buttons {
  display: flex;
  gap: 15px;
  justify-content: center;
}
section.home-hero .home-hero-inner .home-hero-top .home-hero-top-right .home-hero-buttons a.button {
  margin-bottom: 0;
}
section.home-hero .home-hero-inner .home-hero-statement {
  position: relative;
  z-index: 2;
  text-align: center;
}
section.home-hero .home-hero-inner .home-hero-statement h1 {
  margin: 0;
  font-size: 60px;
}
@media print, screen and (min-width: 40em) {
  section.home-hero .home-hero-inner .home-hero-statement h1 {
    font-size: 80px;
  }
}
@media print, screen and (min-width: 48em) {
  section.home-hero .home-hero-inner .home-hero-statement h1 {
    font-size: 140px;
  }
}
section.home-hero .home-hero-inner .home-hero-statement h1 span {
  color: #48b2fe;
}
section.home-hero .home-hero-image {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 250px;
  margin-top: -12px;
  border-radius: 20px;
  overflow: hidden;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  /*
  &:before {
  	content: "";
  	display: block;
  	width: 100%;
  	height: 0;
  	padding-bottom: 46.4285714285714%;
  }
  */
}
@media print, screen and (min-width: 40em) {
  section.home-hero .home-hero-image {
    margin-top: -50px;
    height: 650px;
  }
}

.home-hero-bubbles {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 325px;
  left: 0;
}

.hero-bubble {
  position: absolute;
  border-radius: 50%;
  border: #1380cd 1px solid;
  animation-iteration-count: infinite !important;
  animation-timing-function: ease-in-out;
}
.hero-bubble.hero-bubble-big {
  height: 65px;
  width: 65px;
}
.hero-bubble.hero-bubble-small {
  height: 35px;
  width: 35px;
}
.hero-bubble.hero-bubble-med-light {
  height: 45px;
  width: 45px;
}
.hero-bubble.hero-bubble-tiny-light {
  height: 15px;
  width: 15px;
}

#bubble1 {
  top: 110%;
  left: 20%;
  animation: rise 11s linear;
}

#bubble2 {
  top: 70%;
  right: 25%;
  animation: rise 15s linear;
}

#bubble3 {
  top: 100%;
  left: 40%;
  animation: rise 18s linear;
}

#bubble4 {
  top: 80%;
  right: 5%;
  animation: rise 16s linear;
}

#bubble5 {
  top: 90%;
  left: 5%;
  animation: rise 14s linear;
}

#bubble6 {
  top: 50%;
  right: 18%;
  animation: rise 12s linear;
}

#bubble7 {
  top: 80%;
  left: 35%;
  animation: rise 16s linear;
}

#bubble8 {
  top: 85%;
  right: 35%;
  animation: rise 13s linear;
}

#bubble9 {
  top: 40%;
  left: 10%;
  animation: rise2 11s linear;
}

#bubble10 {
  top: 30%;
  right: 20%;
  animation: rise2 15s linear;
}

#bubble11 {
  top: 50%;
  left: 45%;
  animation: rise2 18s linear;
}

#bubble12 {
  top: 40%;
  right: 39%;
  animation: rise2 16s linear;
}

#bubble13 {
  top: 60%;
  left: 18%;
  animation: rise2 14s linear;
}

#bubble14 {
  top: 35%;
  right: 24%;
  animation: rise2 12s linear;
}

#bubble15 {
  top: 40%;
  left: 45%;
  animation: rise2 16s linear;
}

#bubble16 {
  top: 45%;
  right: 29%;
  animation: rise2 13s linear;
}

@keyframes rise {
  0% {
    transform: translatey(0vh) scale(1);
    opacity: 0;
  }
  15% {
    opacity: 0.7;
  }
  85% {
    opacity: 0.7;
  }
  100% {
    transform: translatey(-70vh) scale(1.4);
    opacity: 0;
  }
}
@keyframes rise2 {
  0% {
    transform: translatey(0vh) scale(1);
    opacity: 0;
  }
  15% {
    opacity: 0.3;
  }
  85% {
    opacity: 0.3;
  }
  100% {
    transform: translatey(-60vh) scale(1.4);
    opacity: 0;
  }
}
.document-download-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: flex-start;
}

a.button.button-white.button-download {
  background-image: url("../images/svg/download.svg");
  background-size: 40px 40px;
  background-repeat: no-repeat;
  background-position: 10px 10px;
  color: #1380cd !important;
  height: 60px;
  border-radius: 100px;
  padding-left: 65px;
  display: inline-flex;
  align-items: center;
  margin: 0;
  border: #e2e6eb 1px solid;
}

.video-slider {
  position: relative;
  padding: 75px 0 150px;
  background: linear-gradient(180deg, #ffffff 0%, #edf0f3 100%);
}
.video-slider .slick-list {
  overflow: visible;
  padding-left: 270px;
  padding-right: 270px;
}
@media screen and (min-width: 103.125em) {
  .video-slider .slick-list {
    padding-left: calc((100vw - 920px) / 2);
    padding-right: calc((100vw - 920px) / 2);
  }
}
.video-slider .slick-track {
  overflow: visible;
}
.video-slider .video-pod {
  width: calc(100% - 50px);
  position: relative;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  overflow: visible;
  filter: drop-shadow(0px 15px 25px rgba(0, 0, 0, 0.08));
  transition: all 0.5s ease-in-out;
}
.video-slider .video-pod:not(.slick-active) {
  transform: scale(0.9);
  opacity: 0.25;
}
.video-slider .video-pod:before {
  content: "";
  width: 100%;
  height: 0;
  display: block;
  padding-bottom: 56.25%;
}
.video-slider .video-pod .video-panel-play {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.video-slider .video-pod .video-panel-play svg {
  width: 75px;
  height: 75px;
}
.video-slider .video-pod .video-pod-text {
  position: absolute;
  bottom: -75px;
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
}
.video-slider .video-pod .video-pod-text .video-pod-text-inner {
  background: #ffffff;
  padding: 20px 30px;
  font-family: "canada-type-gibson", sans-serif;
  font-size: var(--headerFontSize5b);
  line-height: 110%;
  font-weight: 600;
  color: #002642;
  margin: 40px 0 15px;
  margin: 0;
  text-align: center;
  width: calc(100% - 180px);
  max-width: 440px;
  border-radius: 10px;
}
@media print, screen and (min-width: 40em) {
  .video-slider .video-pod .video-pod-text .video-pod-text-inner {
    font-size: var(--headerFontSize5a);
  }
}
@media print, screen and (min-width: 53.125em) {
  .video-slider .video-pod .video-pod-text .video-pod-text-inner {
    font-size: var(--headerFontSize4b);
  }
}
@media print, screen and (min-width: 64em) {
  .video-slider .video-pod .video-pod-text .video-pod-text-inner {
    font-size: var(--headerFontSize4a);
  }
}
.video-slider button.slick-prev,
.video-slider button.slick-next {
  position: absolute;
  top: auto;
  bottom: 100px;
  width: 44px;
  height: 44px;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  cursor: pointer !important;
}
.video-slider button.slick-prev {
  left: calc((100vw - 920px) / 2);
  background-image: url("../images/svg/arrow-big-left.svg");
}
.video-slider button.slick-next {
  right: calc((100vw - 920px) / 2);
  background-image: url("../images/svg/arrow-big-right.svg");
}

.location-list .location-map {
  width: 100vw;
  height: 75vh;
  background: #002642;
}
.location-list .location-list-filters {
  background-color: #f5f7f8;
  padding: 30px 0;
}
.location-list .location-list-filters .location-list-filters-wrap {
  width: calc(100% - 2rem);
  margin-right: 1rem;
  margin-left: 1rem;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  flex-direction: column;
}
@media print, screen and (min-width: 40em) {
  .location-list .location-list-filters .location-list-filters-wrap {
    gap: 40px;
    flex-direction: row;
  }
}
.location-list .location-list-filters .location-list-filters-wrap .facetwp-facet {
  margin: 0;
  flex: 1;
}
.location-list .location-list-filters .location-list-filters-wrap .facetwp-facet .facetwp-input-wrap {
  width: 100%;
}
.location-list .location-list-filters .location-list-filters-wrap .facetwp-facet input,
.location-list .location-list-filters .location-list-filters-wrap .facetwp-facet select {
  margin: 0;
}
.location-list .location-list-filters .location-list-filters-wrap .facetwp-facet.facetwp-type-proximity {
  flex: 2;
  display: flex;
  gap: 20px;
  flex-direction: column;
}
@media print, screen and (min-width: 40em) {
  .location-list .location-list-filters .location-list-filters-wrap .facetwp-facet.facetwp-type-proximity {
    gap: 40px;
    flex-direction: row;
  }
}
.location-list .location-list-filters .location-list-filters-wrap .facetwp-facet.facetwp-type-proximity span,
.location-list .location-list-filters .location-list-filters-wrap .facetwp-facet.facetwp-type-proximity select {
  margin: 0;
  flex: 1;
}
.location-list .location-list-list {
  padding-top: 25px;
}
.location-list .location-list-list .location-list-list-wrap {
  display: flex;
  flex-flow: row wrap;
}
.location-list .location-list-list .location-list-list-wrap .location-list-pod {
  position: relative;
  width: calc(100% - 2rem);
  margin-right: 1rem;
  margin-left: 1rem;
  padding: 30px 0;
  border-bottom: #e2e6eb 1px solid;
  display: flex;
  flex-direction: column;
}
@media print, screen and (min-width: 40em) {
  .location-list .location-list-list .location-list-list-wrap .location-list-pod {
    width: calc(50% - 2rem);
    margin-right: 1rem;
    margin-left: 1rem;
  }
}
@media print, screen and (min-width: 60em) {
  .location-list .location-list-list .location-list-list-wrap .location-list-pod {
    width: calc(33.3333333333% - 2rem);
    margin-right: 1rem;
    margin-left: 1rem;
  }
}
.location-list .location-list-list .location-list-list-wrap .location-list-pod .location-list-pod-top {
  flex-grow: 1;
}
.location-list .location-list-list .location-list-list-wrap .location-list-pod .location-list-pod-bottom {
  flex-shrink: 1;
  margin-top: 15px;
}

.location-pod-info {
  position: relative;
}
.location-pod-info .location-list-pod-top-title {
  font-family: "canada-type-gibson", sans-serif;
  font-size: var(--headerFontSize5b);
  line-height: 110%;
  font-weight: 600;
  color: #002642;
  margin: 40px 0 15px;
  margin: 0;
}
@media print, screen and (min-width: 40em) {
  .location-pod-info .location-list-pod-top-title {
    font-size: var(--headerFontSize5a);
  }
}
@media print, screen and (min-width: 53.125em) {
  .location-pod-info .location-list-pod-top-title {
    font-size: var(--headerFontSize4b);
  }
}
@media print, screen and (min-width: 64em) {
  .location-pod-info .location-list-pod-top-title {
    font-size: var(--headerFontSize4a);
  }
}
.location-pod-info .location-list-pod-top-services {
  display: none;
  margin-top: 10px;
}

.facetwp-type-map,
#facetwp-map {
  width: 100% !important;
  height: 100% !important;
}

.facetwp-type-map {
  position: relative;
}
.facetwp-type-map .facetwp-map-filtering {
  position: absolute;
  bottom: 40px;
  left: 10px;
  border: #002642 1px solid;
  background-color: transparent;
  color: #002642;
  background-color: #f5f7f8;
  cursor: pointer;
}
.facetwp-type-map .facetwp-map-filtering:hover {
  background-color: #1380cd;
  border-color: #1380cd;
  color: #ffffff;
}

.transition-graphic {
  position: relative;
  z-index: -1;
  margin-top: -50px;
  margin-bottom: -2px;
}
.transition-graphic svg {
  width: 100%;
}

.section-pgm .pgm-desktop {
  display: none;
  width: 122%;
  margin-left: -17%;
  margin-right: -5%;
}
@media print, screen and (min-width: 40em) {
  .section-pgm .pgm-desktop {
    display: block;
  }
}
@media print, screen and (min-width: 40em) {
  .section-pgm .pgm-mobile {
    display: none;
  }
}

.link-buttons {
  display: flex;
  margin-top: 30px;
}
.link-buttons a.underline-link {
  margin-right: 30px;
}
.link-buttons.link-buttons-center {
  justify-content: center;
}
.link-buttons.link-buttons-right {
  justify-content: flex-end;
}
