/* Theme base styles */

@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.2.0/css/all.min.css');




/** Colors **/



/** Body **/


/** Buttons **/










































/** Forms **/



/** Fonts **/



/* Tools
Any animations, or functions used throughout the project.
Note: _macros.css needs to be imported into each stylesheet where macros are used and not included here
*/

/* Generic
This is where reset, normalize & box-sizing styles go.
*/

.hs-error-msgs label {
    font-size: 12px;
    color: red !important;
}

*, *:before, *:after {
  box-sizing: border-box;
}
/*! normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css */

/* Document
   ========================================================================== */

/**
 * 1. Correct the line height in all browsers.
 * 2. Prevent adjustments of font size after orientation changes in iOS.
 */

html {
  line-height: 1.15; /* 1 */
  -webkit-text-size-adjust: 100%; /* 2 */
}

/* Sections
   ========================================================================== */

/**
 * Remove the margin in all browsers.
 */

body {
  margin: 0;
}

/**
 * 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 box sizing in Firefox.
 */

hr {
  box-sizing: content-box;
  height: 0;
}

/**
 * 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 */
}

/* Text-level semantics
   ========================================================================== */

/**
 * 1. Remove the bottom border in Chrome 57-
 * 2. Add the correct text decoration in Chrome, Edge, Opera, and Safari.
 */

abbr[title] {
  border-bottom: none; /* 1 */
  text-decoration: underline; /* 2 */
  text-decoration: underline dotted; /* 2 */
}

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

/* Forms
   ========================================================================== */

/**
 * 1. Change the font styles in all browsers.
 * 2. Remove the margin in Firefox and Safari.
 */

button,
input,
optgroup,
select,
textarea {
  font-family: inherit; /* 1 */
  font-size: 100%; /* 1 */
  line-height: 1.15; /* 1 */
  margin: 0; /* 2 */
}

/**
 * Remove the inheritance of text transform in Edge and Firefox.
 * 1. Remove the inheritance of text transform in Firefox.
 */

button,
select { /* 1 */
  text-transform: none;
}

/**
 * Correct the inability to style clickable types in iOS and Safari.
 */

button,
[type="button"],
[type="reset"],
[type="submit"] {
  -webkit-appearance: button;
}

/**
 * Remove the inner border and padding in Firefox.
 */

button::-moz-focus-inner,
[type="button"]::-moz-focus-inner,
[type="reset"]::-moz-focus-inner,
[type="submit"]::-moz-focus-inner {
  border-style: none;
  padding: 0;
}

/**
 * Restore the focus styles unset by the previous rule.
 */

button:-moz-focusring,
[type="button"]:-moz-focusring,
[type="reset"]:-moz-focusring,
[type="submit"]:-moz-focusring {
  outline: 1px dotted ButtonText;
}

/**
 * Correct the padding in Firefox.
 */

fieldset {
  padding: 0.35em 0.75em 0.625em;
}

/**
 * Remove the padding so developers are not caught out when they zero out `fieldset` elements in all browsers.
 */

legend {
  padding: 0;
}

/**
 * Add the correct vertical alignment in Chrome, Firefox, and Opera.
 */

progress {
  vertical-align: baseline;
}

/**
 * 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 in Chrome and Safari on macOS.
 */

[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 */
}

/* Interactive
   ========================================================================== */

/*
 * Add the correct display in Edge and Firefox.
 */

details {
  display: block;
}

/*
 * Add the correct display in all browsers.
 */

summary {
  display: list-item;
}

/* Objects
Non-cosmetic design patterns including grid and layout classes)
*/



/* CSS variables */

:root {
  --column-gap: 2.13%;
  --column-width-multiplier: 8.333;
}

/* Mobile layout */

.row-fluid {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
}


  .row-fluid .span1,
  .row-fluid .span2,
  .row-fluid .span3,
  .row-fluid .span4,
  .row-fluid .span5,
  .row-fluid .span6,
  .row-fluid .span7,
  .row-fluid .span8,
  .row-fluid .span9,
  .row-fluid .span10,
  .row-fluid .span11,
  .row-fluid .span12{
  min-height: 1px;
  width: 100%;
}

/* Desktop layout */

@media (min-width: 768px) {
  .row-fluid {
    flex-wrap: nowrap;
    justify-content: space-between;
  }

  
    .row-fluid .span1 {
      width: calc(var(--column-width-multiplier) * 1% * 1 - var(--column-gap) * (11 * var(--column-width-multiplier) / 100));
    }
  
    .row-fluid .span2 {
      width: calc(var(--column-width-multiplier) * 1% * 2 - var(--column-gap) * (10 * var(--column-width-multiplier) / 100));
    }
  
    .row-fluid .span3 {
      width: calc(var(--column-width-multiplier) * 1% * 3 - var(--column-gap) * (9 * var(--column-width-multiplier) / 100));
    }
  
    .row-fluid .span4 {
      width: calc(var(--column-width-multiplier) * 1% * 4 - var(--column-gap) * (8 * var(--column-width-multiplier) / 100));
    }
  
    .row-fluid .span5 {
      width: calc(var(--column-width-multiplier) * 1% * 5 - var(--column-gap) * (7 * var(--column-width-multiplier) / 100));
    }
  
    .row-fluid .span6 {
      width: calc(var(--column-width-multiplier) * 1% * 6 - var(--column-gap) * (6 * var(--column-width-multiplier) / 100));
    }
  
    .row-fluid .span7 {
      width: calc(var(--column-width-multiplier) * 1% * 7 - var(--column-gap) * (5 * var(--column-width-multiplier) / 100));
    }
  
    .row-fluid .span8 {
      width: calc(var(--column-width-multiplier) * 1% * 8 - var(--column-gap) * (4 * var(--column-width-multiplier) / 100));
    }
  
    .row-fluid .span9 {
      width: calc(var(--column-width-multiplier) * 1% * 9 - var(--column-gap) * (3 * var(--column-width-multiplier) / 100));
    }
  
    .row-fluid .span10 {
      width: calc(var(--column-width-multiplier) * 1% * 10 - var(--column-gap) * (2 * var(--column-width-multiplier) / 100));
    }
  
    .row-fluid .span11 {
      width: calc(var(--column-width-multiplier) * 1% * 11 - var(--column-gap) * (1 * var(--column-width-multiplier) / 100));
    }
  
}
.content-wrapper {
  margin: 0 auto;
  padding: 0 1rem;
}

@media screen and (min-width: 1380px) {
  .content-wrapper {
    padding: 0;
  }
}

.dnd-section > .row-fluid {
  margin: 0 auto;
}

.dnd-section .dnd-column {
  padding: 0 1rem;
}

@media (max-width: 767px) {
  .dnd-section .dnd-column {
    padding: 0;
  }
}

/* Elements
Base HMTL elements are styled in this section (<body>, <h1>, <a>, <p>, <button> etc.)
*/

/* The overflow-wrap is meant to prevent long/large words from breaking the mobile responsiveness of a page (e.g. horizontal scrolling). It is preferred to reduce font sizes on mobile to address this, with this CSS specifically helping with extreme scenarios where a reduction in font size is not possible. */


@font-face { 
  font-family: "Iskra";
  src: url() format('embedded-opentype'),
    url(https://8262512.fs1.hubspotusercontent-na1.net/hubfs/8262512/raw_assets/public/Wordskii_December2023/css/fonts/Iskra/IskraW04-UltraBold.woff2) format("woff2"),    
    url(https://8262512.fs1.hubspotusercontent-na1.net/hubfs/8262512/raw_assets/public/Wordskii_December2023/css/fonts/Iskra/IskraW04-UltraBold.woff) format("woff"),
    url(https://8262512.fs1.hubspotusercontent-na1.net/hubfs/8262512/raw_assets/public/Wordskii_December2023/css/fonts/Iskra/IskraW04-UltraBold.ttf) format("truetype"),
    url(https://8262512.fs1.hubspotusercontent-na1.net/hubfs/8262512/raw_assets/public/Wordskii_December2023/css/fonts/Iskra/IskraW04-UltraBold.svg) format('svg');
  font-style: normal;
  font-weight: bolder;
  font-display: swap;
} 



@font-face { 
  font-family: "Iskra";
  src:url(https://8262512.fs1.hubspotusercontent-na1.net/hubfs/8262512/raw_assets/public/Wordskii_December2023/css/fonts/Iskra/Iskra%20W04%20Bold.woff2) format("woff2"),    
    url(https://8262512.fs1.hubspotusercontent-na1.net/hubfs/8262512/raw_assets/public/Wordskii_December2023/css/fonts/Iskra/Iskra%20W04%20Bold.woff) format("woff"),
    url(https://8262512.fs1.hubspotusercontent-na1.net/hubfs/8262512/raw_assets/public/Wordskii_December2023/css/fonts/Iskra/Iskra%20W04%20Bold.ttf) format("truetype"),
    url(https://8262512.fs1.hubspotusercontent-na1.net/hubfs/8262512/raw_assets/public/Wordskii_December2023/css/fonts/Iskra/Iskra%20W04%20Bold.svg) format('svg');
  font-style: normal;
  font-weight: bold;
  font-display: swap;
} 


@font-face {
  font-family: "Museo Sans";
  src: url() format('embedded-opentype'),
    url(https://8262512.fs1.hubspotusercontent-na1.net/hubfs/8262512/raw_assets/public/Wordskii_December2023/css/fonts/MuseoSans/MuseoSans-100.woff2) format('woff2'),
    url(https://8262512.fs1.hubspotusercontent-na1.net/hubfs/8262512/raw_assets/public/Wordskii_December2023/css/fonts/MuseoSans/MuseoSans-100.woff) format('woff'),
    url(https://8262512.fs1.hubspotusercontent-na1.net/hubfs/8262512/raw_assets/public/Wordskii_December2023/css/fonts/MuseoSans/MuseoSans-100.ttf) format('truetype'),
    url(https://8262512.fs1.hubspotusercontent-na1.net/hubfs/8262512/raw_assets/public/Wordskii_December2023/css/fonts/MuseoSans/MuseoSans-100.svg) format('svg');
  font-weight: 200;
  font-style: normal;
  font-display: swap;
}


@font-face {
  font-family: 'Museo Sans';
  src: url() format('embedded-opentype'),
    url(https://8262512.fs1.hubspotusercontent-na1.net/hubfs/8262512/raw_assets/public/Wordskii_December2023/css/fonts/MuseoSans/MuseoSans-100Italic.woff2) format('woff2'),
    url(https://8262512.fs1.hubspotusercontent-na1.net/hubfs/8262512/raw_assets/public/Wordskii_December2023/css/fonts/MuseoSans/MuseoSans-100Italic.woff) format('woff'),
    url(https://8262512.fs1.hubspotusercontent-na1.net/hubfs/8262512/raw_assets/public/Wordskii_December2023/css/fonts/MuseoSans/MuseoSans-100Italic.ttf) format('truetype'),
    url(https://8262512.fs1.hubspotusercontent-na1.net/hubfs/8262512/raw_assets/public/Wordskii_December2023/css/fonts/MuseoSans/MuseoSans-100Italic.svg) format('svg');
  font-weight: 200;
  font-style: italic;
  font-display: swap;
}


@font-face {
  font-family: 'Museo Sans';
  src: url(https://8262512.fs1.hubspotusercontent-na1.net/hubfs/8262512/raw_assets/public/Wordskii_December2023/css/fonts/MuseoSans/Museo%20Sans%20300.woff2) format('woff2'),
    url(https://8262512.fs1.hubspotusercontent-na1.net/hubfs/8262512/raw_assets/public/Wordskii_December2023/css/fonts/MuseoSans/Museo%20Sans%20300.woff) format('woff'),
    url(https://8262512.fs1.hubspotusercontent-na1.net/hubfs/8262512/raw_assets/public/Wordskii_December2023/css/fonts/MuseoSans/Museo%20Sans%20300.ttf) format('truetype'),
    url(https://8262512.fs1.hubspotusercontent-na1.net/hubfs/8262512/raw_assets/public/Wordskii_December2023/css/fonts/MuseoSans/Museo%20Sans%20300.svg) format('svg');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}


@font-face {
  font-family: 'Museo Sans';
  src: url() format('embedded-opentype'),
    url(https://8262512.fs1.hubspotusercontent-na1.net/hubfs/8262512/raw_assets/public/Wordskii_December2023/css/fonts/MuseoSans/MuseoSans-300Italic.woff2) format('woff2'),
    url(https://8262512.fs1.hubspotusercontent-na1.net/hubfs/8262512/raw_assets/public/Wordskii_December2023/css/fonts/MuseoSans/MuseoSans-300Italic.woff) format('woff'),
    url(https://8262512.fs1.hubspotusercontent-na1.net/hubfs/8262512/raw_assets/public/Wordskii_December2023/css/fonts/MuseoSans/MuseoSans-300Italic.ttf) format('truetype'),
    url(https://8262512.fs1.hubspotusercontent-na1.net/hubfs/8262512/raw_assets/public/Wordskii_December2023/css/fonts/MuseoSans/MuseoSans-300Italic.svg) format('svg');
  font-weight: 300;
  font-style: italic;
  font-display: swap;
}


@font-face { 
  font-family: "Museo Sans";
  src: url() format('embedded-opentype'),
    url(https://8262512.fs1.hubspotusercontent-na1.net/hubfs/8262512/raw_assets/public/Wordskii_December2023/css/fonts/MuseoSans/MuseoSans-500.woff2) format("woff2"),    
    url(https://8262512.fs1.hubspotusercontent-na1.net/hubfs/8262512/raw_assets/public/Wordskii_December2023/css/fonts/MuseoSans/MuseoSans-500.woff) format("woff"),
    url(https://8262512.fs1.hubspotusercontent-na1.net/hubfs/8262512/raw_assets/public/Wordskii_December2023/css/fonts/MuseoSans/MuseoSans-500.ttf) format("truetype"),
    url(https://8262512.fs1.hubspotusercontent-na1.net/hubfs/8262512/raw_assets/public/Wordskii_December2023/css/fonts/MuseoSans/MuseoSans-500.svg) format('svg');
  font-style: 500;
  font-weight: normal;
  font-display: swap;
} 


@font-face {
  font-family: 'Museo Sans';
  src: url() format('embedded-opentype'),
    url(https://8262512.fs1.hubspotusercontent-na1.net/hubfs/8262512/raw_assets/public/Wordskii_December2023/css/fonts/MuseoSans/MuseoSans-500Italic.woff2) format('woff2'),
    url(https://8262512.fs1.hubspotusercontent-na1.net/hubfs/8262512/raw_assets/public/Wordskii_December2023/css/fonts/MuseoSans/MuseoSans-500Italic.woff) format('woff'),
    url(https://8262512.fs1.hubspotusercontent-na1.net/hubfs/8262512/raw_assets/public/Wordskii_December2023/css/fonts/MuseoSans/MuseoSans-500Italic.ttf) format('truetype'),
    url(https://8262512.fs1.hubspotusercontent-na1.net/hubfs/8262512/raw_assets/public/Wordskii_December2023/css/fonts/MuseoSans/MuseoSans-500Italic.svg) format('svg');
  font-weight: 500;
  font-style: italic;
  font-display: swap;
}


@font-face {
  font-family: 'Museo Sans';
  src: url() format('embedded-opentype'),
    url(https://8262512.fs1.hubspotusercontent-na1.net/hubfs/8262512/raw_assets/public/Wordskii_December2023/css/fonts/MuseoSans/MuseoSans-700.woff2) format('woff2'),
    url(https://8262512.fs1.hubspotusercontent-na1.net/hubfs/8262512/raw_assets/public/Wordskii_December2023/css/fonts/MuseoSans/MuseoSans-700.woff) format('woff'),
    url(https://8262512.fs1.hubspotusercontent-na1.net/hubfs/8262512/raw_assets/public/Wordskii_December2023/css/fonts/MuseoSans/MuseoSans-700.ttf) format('truetype'),
    url(https://8262512.fs1.hubspotusercontent-na1.net/hubfs/8262512/raw_assets/public/Wordskii_December2023/css/fonts/MuseoSans/MuseoSans-700.svg) format('svg');
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}


@font-face {
  font-family: 'Museo Sans';
  src: url() format('embedded-opentype'),
    url(https://8262512.fs1.hubspotusercontent-na1.net/hubfs/8262512/raw_assets/public/Wordskii_December2023/css/fonts/MuseoSans/MuseoSans-700Italic.woff2) format('woff2'),
    url(https://8262512.fs1.hubspotusercontent-na1.net/hubfs/8262512/raw_assets/public/Wordskii_December2023/css/fonts/MuseoSans/MuseoSans-700Italic.woff) format('woff'),
    url(https://8262512.fs1.hubspotusercontent-na1.net/hubfs/8262512/raw_assets/public/Wordskii_December2023/css/fonts/MuseoSans/MuseoSans-700Italic.ttf) format('truetype'),
    url(https://8262512.fs1.hubspotusercontent-na1.net/hubfs/8262512/raw_assets/public/Wordskii_December2023/css/fonts/MuseoSans/MuseoSans-700Italic.svg) format('svg');
  font-weight: bold;
  font-style: italic;
  font-display: swap;
}


@font-face {
  font-family: 'Museo Sans';
  src: url() format('embedded-opentype'),
    url(https://8262512.fs1.hubspotusercontent-na1.net/hubfs/8262512/raw_assets/public/Wordskii_December2023/css/fonts/MuseoSans/MuseoSans-900.woff2) format('woff2'),
    url(https://8262512.fs1.hubspotusercontent-na1.net/hubfs/8262512/raw_assets/public/Wordskii_December2023/css/fonts/MuseoSans/MuseoSans-900.woff) format('woff'),
    url(https://8262512.fs1.hubspotusercontent-na1.net/hubfs/8262512/raw_assets/public/Wordskii_December2023/css/fonts/MuseoSans/MuseoSans-900.ttf) format('truetype'),
    url(https://8262512.fs1.hubspotusercontent-na1.net/hubfs/8262512/raw_assets/public/Wordskii_December2023/css/fonts/MuseoSans/MuseoSans-900.svg) format('svg');
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}


@font-face {
  font-family: 'Museo Sans';
  src: url() format('embedded-opentype'),
    url(https://8262512.fs1.hubspotusercontent-na1.net/hubfs/8262512/raw_assets/public/Wordskii_December2023/css/fonts/MuseoSans/MuseoSans-900Italic.woff2) format('woff2'),
    url(https://8262512.fs1.hubspotusercontent-na1.net/hubfs/8262512/raw_assets/public/Wordskii_December2023/css/fonts/MuseoSans/MuseoSans-900Italic.woff) format('woff'),
    url(https://8262512.fs1.hubspotusercontent-na1.net/hubfs/8262512/raw_assets/public/Wordskii_December2023/css/fonts/MuseoSans/MuseoSans-900Italic.ttf) format('truetype'),
    url(https://8262512.fs1.hubspotusercontent-na1.net/hubfs/8262512/raw_assets/public/Wordskii_December2023/css/fonts/MuseoSans/MuseoSans-900Italic.svg) format('svg');
  font-weight: 900;
  font-style: italic;
  font-display: swap;
}


@font-face {
  font-family: 'Calibri';
  src: url() format('embedded-opentype'),
    url(https://8262512.fs1.hubspotusercontent-na1.net/hubfs/8262512/raw_assets/public/Wordskii_December2023/css/fonts/Calibri/Calibri.woff2) format('woff2'),
    url(https://8262512.fs1.hubspotusercontent-na1.net/hubfs/8262512/raw_assets/public/Wordskii_December2023/css/fonts/Calibri/Calibri.woff) format('woff'),
    url(https://8262512.fs1.hubspotusercontent-na1.net/hubfs/8262512/raw_assets/public/Wordskii_December2023/css/fonts/Calibri/Calibri.ttf) format('truetype'),
    url(https://8262512.fs1.hubspotusercontent-na1.net/hubfs/8262512/raw_assets/public/Wordskii_December2023/css/fonts/Calibri/Calibri.svg) format('svg');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}


@font-face {
  font-family: 'Calibri';
  src: url() format('embedded-opentype'),
    url(https://8262512.fs1.hubspotusercontent-na1.net/hubfs/8262512/raw_assets/public/Wordskii_December2023/css/fonts/Calibri/Calibri-Bold.woff2) format('woff2'),
    url(https://8262512.fs1.hubspotusercontent-na1.net/hubfs/8262512/raw_assets/public/Wordskii_December2023/css/fonts/Calibri/Calibri-Bold.woff) format('woff'),
    url(https://8262512.fs1.hubspotusercontent-na1.net/hubfs/8262512/raw_assets/public/Wordskii_December2023/css/fonts/Calibri/Calibri-Bold.ttf) format('truetype'),
    url(https://8262512.fs1.hubspotusercontent-na1.net/hubfs/8262512/raw_assets/public/Wordskii_December2023/css/fonts/Calibri/Calibri-Bold.svg) format('svg');
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}


@font-face {
  font-family: 'Calibri';
  src: url() format('embedded-opentype'),
    url(https://8262512.fs1.hubspotusercontent-na1.net/hubfs/8262512/raw_assets/public/Wordskii_December2023/css/fonts/Calibri/Calibri-BoldItalic.woff2) format('woff2'),
    url(https://8262512.fs1.hubspotusercontent-na1.net/hubfs/8262512/raw_assets/public/Wordskii_December2023/css/fonts/Calibri/Calibri-BoldItalic.woff) format('woff'),
    url(https://8262512.fs1.hubspotusercontent-na1.net/hubfs/8262512/raw_assets/public/Wordskii_December2023/css/fonts/Calibri/Calibri-BoldItalic.ttf) format('truetype'),
    url(https://8262512.fs1.hubspotusercontent-na1.net/hubfs/8262512/raw_assets/public/Wordskii_December2023/css/fonts/Calibri/Calibri-BoldItalic.svg) format('svg');
  font-weight: bold;
  font-style: italic;
  font-display: swap;
}


@font-face {
  font-family: 'Calibri';
  src: url() format('embedded-opentype'),
    url(https://8262512.fs1.hubspotusercontent-na1.net/hubfs/8262512/raw_assets/public/Wordskii_December2023/css/fonts/Calibri/Calibri-Italic.woff2) format('woff2'),
    url(https://8262512.fs1.hubspotusercontent-na1.net/hubfs/8262512/raw_assets/public/Wordskii_December2023/css/fonts/Calibri/Calibri-Italic.woff) format('woff'),
    url(https://8262512.fs1.hubspotusercontent-na1.net/hubfs/8262512/raw_assets/public/Wordskii_December2023/css/fonts/Calibri/Calibri-Italic.ttf) format('truetype'),
    url(https://8262512.fs1.hubspotusercontent-na1.net/hubfs/8262512/raw_assets/public/Wordskii_December2023/css/fonts/Calibri/Calibri-Italic.svg) format('svg');
  font-weight: normal;
  font-style: italic;
  font-display: swap;
}


body {
  font-family: "Museo Sans";
  font-weight: 300;
}
h1,
.h1 {
  font-family: "Iskra";
  font-weight: 900;
}

h2,
.h2 {
  font-family: "Iskra";
   font-weight: 700;
}

h3,
.h3 {
  font-family: "Museo Sans";
  font-weight: 900;
}

h4,
.h4 {
  font-family: "Museo Sans";
  font-weight: 900;
}

h5,
.h5 {
  font-family: "Museo Sans";
  font-weight: 900;
}

h6,
.h6 {
  font-family: "Museo Sans";
  font-weight: 300;
}




body {
  line-height: 1.4;
  overflow-wrap: break-word;
}

/* Handles word breaking for a few specific languages which handle breaks in words differently. If your content is not translated into these languages, you can safely remove this.  */

html[lang^="ja"] body,
html[lang^="zh"] body,
html[lang^="ko"] body {
  line-break: strict;
  overflow-wrap: normal;
  word-break: break-all;
}

/* Paragraphs */

p {
  font-size: 1rem;
  margin: 0 0 1.4rem;
}

/* Anchors */

a {
  cursor: pointer;
}

/* Headings */

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0 0 1.4rem;
}

/* Lists */

ul,
ol {
  margin: 0 0 1.4rem;
}

ul ul,
ol ul,
ul ol,
ol ol {
  margin: 0;
}

ul.no-list {
  list-style: none;
  margin: 0;
  padding-left: 0;
}

/* Code blocks */

pre {
  overflow: auto;
}

code {
  vertical-align: bottom;
}

/* Blockquotes */

blockquote {
  border-left: 2px solid;
  margin: 0 0 1.4rem;
  padding-left: 0.7rem;
}

/* Horizontal rules */

hr {
  border: none;
  border-bottom: 1px solid #CCC;
}

/* Image alt text */

img {
  font-size: 0.583rem;
  word-break: normal;
}



body, html {
  font-size: 21px;
  color: #1d1d1b;
  
  
    line-height: 25.2px;
  
  letter-spacing: 0em;
}

@media(max-width: 992px) {
  body, html {
    font-size: 16px;
    
      line-height: 22px;
    
  }
}

@media(max-width: 768px) {
  body, html {
    font-size: 16px;
    
      line-height: 22px;
    
  }
}

/** Paragraphs */
p {
  margin-bottom: 1em;
}

/* Anchor Links */

a:hover, a:focus {
  text-decoration: underline;
}

a {
  color: #56BFCC;
  text-decoration: none;
}

a:hover,
a:focus {
  color: #56BFCC;
}

a:active {
  color: #56BFCC;
}

strong {
  font-weight: 700;
}

code {
  vertical-align: bottom;
}

pre {
  overflow: auto;
  -ms-overflow-style: scrollbar;
}

/* Headings */
h1,
h2,
h3,
h4,
h5,
h6 {
  margin-top: 0;
  word-break: break-word;
}

h1 {
 font-size: 63px;
 color: #231F20;
 
 text-transform: none;
 
  line-height: 63px;
 
 letter-spacing: 0em;
 margin-bottom: 0.5em;
}

@media(max-width: 992px) {
  h1 {
    font-size: 58px;    
    
      line-height: 58px;
    
  }
}

@media(max-width: 768px) {
  h1 {
    font-size: 58px;    
    
      line-height: 58px;
    
  }
}

h2 {
  font-size: 37px;
  color: #231F20;
  
  text-transform: none;
  
    line-height: 37px;
  
  
  letter-spacing: 0em;
  margin-bottom: 0.5em;
}

@media(max-width: 992px) {
  h2 {
    font-size: 37px;
    
      line-height: 37px;    
    
  }
}

@media(max-width: 768px) {
  h2 {
    font-size: 37px;
    
      line-height: 37px;    
    
  }
}

h3 {
  font-size: 32px;
  color: #231F20;
  
  text-transform: none;
  
    line-height: 32px;
  
  letter-spacing: 0em;
  margin-bottom: 0.5em;
}

@media(max-width: 992px) {
  h3 {
    font-size: 32px;
    
      line-height: 32px;
    
  }
}

@media(max-width: 768px) {
  h3 {
    font-size: 32px;
    
      line-height: 32px;
    
  }
}

h4 {
  font-size: 28px;
  color: #231F20;
  
  text-transform: none;
  
  
    line-height: 28px;
  
  letter-spacing: 0em;
  margin-bottom: 0.5em;
}

@media(max-width: 992px) {
  h4 {
    font-size: 28px;
    
      line-height: 28px;
    
  }
}

@media(max-width: 768px) {
  h4 {
    font-size: 28px;
    
      line-height: 28px;
    
  }
}

h5 {
  font-size: 28px;
  color: #231F20;
  
  text-transform: none;
  
  
    line-height: 28px;
  
  letter-spacing: 0em;
  margin-bottom: 0.5em;
}

@media(max-width: 992px) {
  h5 {
    font-size: 24px;
    
      line-height: 30px;
    
  }
}

@media(max-width: 768px) {
  h5 {
    font-size: 24px;
    
      line-height: 30px;
    
  }
}

h6 {
  font-size: 21px;
  color: #231F20;
  
  text-transform: none;
  
  
    line-height: 26.25px;
  
  letter-spacing: 0em;
  margin-bottom: 0.5em;
}

@media(max-width: 992px) {
  h6 {
    font-size: 21px;
    
      line-height: 26.25px;
    
  }
}

@media(max-width: 768px) {
  h6 {
    font-size: 21px;
    
      line-height: 26.25px;
    
  }
}

blockquote {
  margin-top: 0rem;
  border-left-style: solid;
  padding-left: 15px;  
  color: #1d1d1b;
  
  text-transform: none;
  
  
    line-height: 22px;
  
  letter-spacing: 0em;
  margin-bottom: 0.5em;
  margin-left: 2em;
  border-left-color: #56BFCC;
  border-left-width: 3px;
}

  @media(max-width: 992px) {
    blockquote {
      line-height: 19px;
    }
  }

  @media(max-width: 768px) {
    blockquote {
      line-height: 19px;    
    }
  }

/** Lists **/

.body-container-wrapper li {  
  color: #1d1d1b;
  
  text-transform: none;
  
  
    line-height: 37px;
  
  font-size: 21px;
  letter-spacing: 0em;
  margin-bottom: 0.2em;
}

  @media(max-width: 992px) {
    .body-container-wrapper li {
      line-height: 34px;
    }
  }

  @media(max-width: 768px) {
    .body-container-wrapper li {
      line-height: 34px;    
    }
  }

button,
.button, 
.hs-button {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  cursor: pointer;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  letter-spacing: 0;
  text-align: center;
  text-decoration: none;
  position: relative;
  z-index: 2;
  transform: scale(1);
  outline: none;
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

button:disabled,
.button:disabled,
.button.button--secondary:disabled,
.button.button--simple:disabled,
.hs-button:disabled,
.hs-button.button--secondary:disabled,
.hs-button.button--simple:disabled {
  border: 1px solid #d0d0d0;
  color: #e6e6e6;
  pointer-events: none;
}

button:disabled,
.button:disabled,
.hs-button:disabled {
  background-color: #d0d0d0;
}

.button.button--secondary:disabled
.hs-button.button--secondary:disabled {
  background-color: inherit;
}

.button.button--simple:disabled
.hs-button.button--simple:disabled {
  background-color: inherit;
  border: inherit;
}

button:hover,
button:focus,
.button:hover,
.button:focus,
.hs-button:hover,
.hs-button:focus {
  background-color: #1E90FF;
  border-color: #1E90FF;
  color: #fff;
  text-decoration: none;
}

button:active,
.button:active,
.hs-button:active {
  background-color: #50eed3;
  border-color: #50eed3;
  color: #fff;
  text-decoration: none;
}

/* Simple Button */

.button.button--simple,
.hs-button.button--simple {
  background-color: transparent;
  border: none;
  border-radius: 0;
  color: #1E90FF;
  font-style: normal;
  position: relative;
  text-decoration: none;
}

.button.button--simple:after,
.hs-button.button--simple:after {
  content: none;
  left: 0;
  position: absolute;
  width: 100%;
}

.button.button--simple:hover,
.button.button--simple:focus,
.hs-button.button--simple:hover,
.hs-button.button--simple:focus {
  background-color: transparent;
  border: none;
}

.button.button--simple:active,
.hs-button.button--simple:active {
  background-color: transparent;
  border: none;
}

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

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

/* Button Icons */

.button .button__icon svg,
.hs-button .button__icon svg {
  fill: inherit;
  display: block;
  height: 1.1rem;
  margin-right: 1rem;
}

.button.button--icon-right .button__icon,
.hs-button.button--icon-right .button__icon {
  order: 1;
}

.button.button--icon-right .button__icon svg,
.hs-button.button--icon-right .button__icon svg {
  margin-right: 0;
  margin-left: 1rem
}

@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .button .button__icon svg,
  .hs-button .button__icon svg {
    width: 1.1rem;
  }
}

/* Primary Button */

button,
.button {
  
  background-color: 

  
  
    
  


  rgba(86, 191, 204, 1.0)

;
  border: 1px solid #56BFCC;
  border-radius: 0em;
  color: #ffffff;
  fill: #ffffff;
  padding: 0.5em 1.77em;
  text-transform: none;
  font-size: 18px;
  font-weight: 300;
  
    line-height: 18px;
  
  
    -webkit-box-shadow: unset;
    box-shadow: unset;
  
}

.button--outline {
  background-color: transparent;
  color: 

  
  
    
  


  rgba(86, 191, 204, 1.0)

;
  fill: 

  
  
    
  


  rgba(86, 191, 204, 1.0)


}


@media (max-width: 992px) {
  button,
  .button {
    font-size: 18px;
    
      line-height: 16px;
    
  }
}

@media (max-width: 768px) {
  button,
  .button {
    font-size: 16px;
    
      line-height: 16px;
    
  }
}

button:disabled,
.button:disabled {
  background-color: ;
  color: ;
}

button:hover,
button:focus,
.button:hover,
.button:focus,
button:active,
.button:active {
  ;
  background-color: 

  
  
    
  


  rgba(255, 255, 255, 0.01)

;
  border: 1px solid #56BFCC;
  color: #56BFCC;
  fill: #56BFCC;
}

.button:hover,
.button:focus {
  
    transform: scale(1.03);
  
}

button:active,
.button:active {
  ;
  background-color: rgba(255, 255, 255, 1);
  background-color: #ffffff;
  border: 1px solid #56BFCC;
  border-color: #a6ffff;
}

/* Secondary Button */

.button.button--secondary {
  
  background-color: 

  
  
    
  


  rgba(103, 111, 179, 1.0)

;
  border: 1px solid #676fb3;
  border-radius: 0em;
  color: #ffffff;
  fill: #ffffff;
  padding: 0.5em 1.77em;
  text-transform: none;
  
    -webkit-box-shadow: unset;
    box-shadow: unset;
  ;
}

.button.button--secondary:hover,
.button.button--secondary:focus,
.button.button--secondary:active {
  background-color: 

  
  
    
  


  rgba(86, 191, 204, 0.0)

;
  border: 1px solid #676fb3;
  color: #676fb3;
  fill: #676fb3;
  
    transform: scale(1.03);
  
}

.button.button--secondary:active {
  background-color: rgba(166, 255, 255, 0);
  border: 1px solid #676fb3;
  border-color: #b7bfff;
  color: #b7bfff;
  fill: #b7bfff;
}

.button--outline.button--secondary {
  background-color: transparent;
  color: 

  
  
    
  


  rgba(103, 111, 179, 1.0)

;  
  fill: 

  
  
    
  


  rgba(103, 111, 179, 1.0)


}

/* Tertiary Button */

.button.button--tertiary {
  
  background-color: 

  
  
    
  


  rgba(86, 191, 204, 1.0)

;
  border: 1px solid #56BFCC;
  border-radius: 0em;
  color: #ffffff;
  fill: #ffffff;
  padding: 0.5em 1.77em;
  text-transform: none;
  
    -webkit-box-shadow: unset;
    box-shadow: unset;
  ;
}

.button.button--tertiary:hover,
.button.button--tertiary:focus,
.button.button--tertiary:active {
  background-color: 

  
  
    
  


  rgba(86, 191, 204, 0.0)

;
  border: 1px solid #56BFCC;
  color: #56BFCC;
  fill: #56BFCC;
  
    transform: scale(1.03);
  
}

.button.button--tertiary:active {
  background-color: rgba(166, 255, 255, 0);
  border: 1px solid #56BFCC;
  border-color: #a6ffff;
  color: #a6ffff;
  fill: #a6ffff;
}

.button--outline.button--tertiary {
  background-color: transparent;
  color: 

  
  
    
  


  rgba(86, 191, 204, 1.0)

;  
  fill: 

  
  
    
  


  rgba(86, 191, 204, 1.0)


}

/* Simple Button */

.button.button--simple {
  
  color: #56BFCC;
  fill: #56BFCC;
  text-transform: none;
  padding-left: 0;
  padding-right: 0;
  -webkit-box-shadow: unset;
  box-shadow: unset;
  font-size: 18px;
  
}



  .button.button--simple:after {
    content: none;
  }



.button.button--simple:hover,
.button.button--simple:focus {
  border: none;
  color: #1d1d1b;
  fill: #1d1d1b;
  text-transform: none;
}



  .button.button--simple:hover:after,
  .button.button--simple:focus:after,
  .button.button--simple:active:after {
    content: none;
  }



.button.button--simple:active {
  border: none;
  color: #6d6d6b;
  fill: #6d6d6b;
}

/* Button Sizing */

.button.button--small {
  padding: 0.44em 1.7em;
  font-size: 18px;
  
    line-height: 18px;
  
}

@media (max-width: 992px) {
  .button.button--small {
    font-size: 16px;
    
      line-height: 16px;
    
  }
}

@media (max-width: 768px) {
  .button.button--small {
    font-size: 16px;
    
      line-height: 16px;
    
  }
}

.button.button--large {
  padding: 0.44em 1.7em;
  font-size: 18px;
  
    line-height: 18px;
  
}

@media (max-width: 992px) {
  .button.button--large {
    font-size: 16px;
    
      line-height: 16px;
    
  }
}

@media (max-width: 768px) {
  .button.button--large {
    font-size: 16px;
    
      line-height: 16px;
    
  }
}
form {
  min-height: 28px;
}

.widget-type-form {
  min-height: 28px;
}

form fieldset {
  max-width: 100%!important; 
}

.hs-form label {
  display: block;
  float: none;
  width: auto;
  font-weight: normal;
  text-align: left;
  line-height: 1.2;
  padding-top: 0;
  margin-bottom: 10px;
}

.hs-error-msgs label {
  margin-top: .5rem;
  color: ;
}

/* Membership error message */
.form-input-validation-message ul {
  padding-left: 0;
  margin: 0;
}

.form-input-validation-message ul li {
  line-height: 1rem;
}

.hs-input {
  display: inline-block;
  width: 100%;
  padding: 9px 10px;
  font-weight: normal;
  color: #1d1d1b;
  background-color: #ffffff;
  border: 1px solid #747474;
  box-sizing: border-box;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  -ms-border-radius: 0;
  border-radius: 7px;
  font-size: 14px;
}

.hs-input[type=checkbox],
.hs-input[type=radio] {
  cursor: pointer;
  width: auto;
  height: auto;
  padding: 0;
  margin: 3px 5px 3px 0px;
  line-height: normal;
  border: none;
}

.hs-input[type=file] {
  background-color: #fff;
  padding: initial;
  border: initial;
  line-height: initial;
  box-shadow: none;
}

.hs-input input,
.hs-input textarea {
  transition: border 0.2s linear;
}
.hs-input:focus {
  outline: none;
  border-color: rgba(82, 168, 236, 0.8);
}

textarea.hs-input {
  height: auto;
}

select[multiple].hs-input {
  height: inherit;
}

input.hs-input.error,
div.field.error input,
div.field.error textarea,
div.field.error .chzn-choices,
textarea.hs-input.error,
select.hs-input.error {
  border-color: ;
}
input.hs-input.error:focus,
div.field.error input:focus,
div.field.error textarea:focus,
div.field.error .chzn-choices:focus,
textarea.hs-input.error:focus,
select.hs-input.error:focus {
  border-color: ;
}

.actions {
  padding: 0;
  margin-top: 1.5rem;
}

.inputs-list {
  margin: 0 0 5px;
  width: 100%;
  padding-left: 0;
}
.inputs-list > li {
  display: block;
  padding: 0;
  width: 100%;
  padding-top: 0;
}
.inputs-list label {
  display: block;
  float: none;
  width: auto;
  padding: 0;
  line-height: 18px;
  text-align: left;
  white-space: normal;
  font-weight: normal;
}
.inputs-list:first-child {
  padding-top: 6px;
}
.inputs-list > li + li {
  padding-top: 2px;
}
.inputs-list label > input,
.inputs-list label > span {
  vertical-align: middle;
}

ul.no-list {
  list-style: none;
}

.hs-form-field {
  margin-bottom: 18px;
}

.hs-field-desc {
  margin: 0px 0px 6px;
  font-size: 14px;
}

.hs-form-required {
  color: #F2545B;
}

.hs-richtext {
  margin-bottom: 3px;
  line-height: 1.2;
  font-size: ;
}
.hs-richtext hr {
  text-align: left;
  margin-left: 0;
  width: 91%;
}

.grecaptcha-badge {
  margin: 0 auto;
}

.email-correction, .email-validation {
  padding-top: 3px;
  font-size: 12px;
}
.email-correction a,
.email-validation a {
  cursor: pointer;
}
@media (max-width: 400px),
(min-device-width: 320px) and (max-device-width: 480px) {
  .email-correction form .form-columns-2 .hs-form-field,
  .email-correction form .form-columns-3 .hs-form-field,
  .email-validation form .form-columns-2 .hs-form-field,
  .email-validation form .form-columns-3 .hs-form-field {
    float: none;
    width: 100%;
  }
  .email-correction form .form-columns-2 .hs-form-field .hs-input,
  .email-correction form .form-columns-3 .hs-form-field .hs-input,
  .email-validation form .form-columns-2 .hs-form-field .hs-input,
  .email-validation form .form-columns-3 .hs-form-field .hs-input {
    width: 90%;
  }
  .email-correction form .form-columns-2 .hs-form-field input[type=checkbox],
  .email-correction form .form-columns-2 .hs-form-field input[type=radio],
  .email-correction form .form-columns-3 .hs-form-field input[type=checkbox],
  .email-correction form .form-columns-3 .hs-form-field input[type=radio],
  .email-validation form .form-columns-2 .hs-form-field input[type=checkbox],
  .email-validation form .form-columns-2 .hs-form-field input[type=radio],
  .email-validation form .form-columns-3 .hs-form-field input[type=checkbox],
  .email-validation form .form-columns-3 .hs-form-field input[type=radio] {
    width: 24px;
  }
}

.hs-button,
.hs-form-field input[type=text],
.hs-form-field input[type=email],
.hs-form-field input[type=phone],
.hs-form-field input[type=number],
.hs-form-field input[type=tel],
.hs-form-field input[type=date],
.hs-form-field textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
  line-height: 1;
}

/* Force single column fields to full width inside of fieldsets */
fieldset.form-columns-1 .hs-input:not(.hs-fieldtype-intl-phone) .hs-input:not([type=radio]):not([type=checkbox]),
fieldset.form-columns-1 .input>.hs-input, .hs-dateinput input {
  width: 100% !important;
}


form,
.submitted-message,
.hs-richtext {
  
}

form.hs-form label {
  color: rgba(29, 29, 27, 1.0);
}

.widget-type-form .form-title {
  color: rgba(86, 191, 204, 1.0);
}

form legend {
  color: rgba(29, 29, 27, 1.0);
}

form.hs-form fieldset.form-columns-3 .hs-form-field {
  width: 33.3%;
}

form input,
form .hs-input,
form select,
form textarea {
  border-color: rgba(116, 116, 116);
  color: #1d1d1b;
}

form input:focus,
form .hs-input:focus,
form select:focus,
form textarea:focus {
  border-color: rgba(35, 31, 32, 1.0);
}

.fn-date-picker .pika-table thead th {
  color: rgba(255, 255, 255, 0.0);
}

.hs-input:-moz-placeholder,
.hs-input::-webkit-input-placeholder,
.hs-field-desc,
.hs-dateinput:before,
.hs-richtext {
  color: #1d1d1b;
}

.fn-date-picker td.is-today .pika-button {
  color: #56BFCC;
}

.fn-date-picker td.is-selected .pika-button {
  background: ;
}

.fn-date-picker td .pika-button:hover {
  background-color:  !important;
}

form input[type=submit],
form .hs-button  {
  white-space: pre-wrap;
}

.hs-input:-moz-placeholder {
  color: rgba(29, 29, 27, 1.0) ;
}

.hs-input::-webkit-input-placeholder {
  color: rgba(29, 29, 27, 1.0) ;
}



  form input[type=submit],
  form .hs-button {
    
    background-color: 

  
  
    
  


  rgba(86, 191, 204, 1.0)

;
    border: 1px solid #56BFCC;
    border-radius: 0em;
    color: #ffffff;
    fill: ;
    padding: 0.5em 1.77em;
    text-transform: none;
    
      -webkit-box-shadow: unset;
      box-shadow: unset;
    
  }

  form input[type=submit]:hover,
  form input[type=submit]:focus,
  form .hs-button:hover,
  form .hs-button:focus {
    background-color: 

  
  
    
  


  rgba(255, 255, 255, 0.01)

;
    border: 1px solid #56BFCC;
    color: #56BFCC;
    
      transform: scale(1.03);
    
  }

  form input[type=submit]:active,
  form .hs-button:active {
    background-color: rgba(255, 255, 255, 1);
    border: 1px solid #56BFCC;
    border-color: #a6ffff;
}





  form input[type=submit],
  form .hs-button {
    padding: 0.5em 1.77em;
    font-size: 18px;
  }
  
  
  @media (max-width: 992px) {
    form input[type=submit],
    form .hs-button {
      font-size: 18px;
    }
  }
  
  @media (max-width: 768px) {
    form input[type=submit],
    form .hs-button {
      font-size: 16px;
    }
  }




textarea.hs-input {min-height: 120px;}
.hs-fieldtype-textarea  {
    width: 100%;
  }

input[type="radio"],input[type="checkbox"] {  display:none }
input[type="radio"]+span,input[type="checkbox"]+span {  position:relative; display:block; padding-left:30px; cursor:pointer }
input[type="radio"]+span:before,input[type="checkbox"]+span:before {  content:"\f00c"; font-family:fontawesome; color:#0185B7 ; position:absolute; left:4px; top:4px; font-size:0; width:20px; height:20px; display:block; border:1px solid #323232;
transition:all ease .3s; -webkit-transition:all ease .3s; text-align:center; line-height:18px; border-radius: 4px; }
input[type="radio"]+span:before {  border-radius:50% }
input[type="radio"]:checked+span:before {  background:#0185B7 ; border-color:#0185B7  }
input[type="checkbox"]:checked+span:before {  border-color:#0185B7; font-size:12px; background:#0185B7 ; color:#fff; letter-spacing:0; }
select {-webkit-appearance: none;appearance: none;background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='9' height='7' viewBox='0 0 9 7' fill='none'%3E%3Cpath d='M0.470894 1.66577L3.98518 5.18006C4.01083 5.20739 4.04181 5.22917 4.07621 5.24406C4.11061 5.25896 4.1477 5.26664 4.18518 5.26664C4.22266 5.26664 4.25975 5.25896 4.29415 5.24406C4.32855 5.22917 4.35953 5.20739 4.38518 5.18006L7.89947 1.66577' stroke='%230185B7' stroke-width='1.71429' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");background-repeat: no-repeat;background-position: calc(100% - 10px) 50%;}
/* Table */

table {
  border-collapse: collapse;
  margin-bottom: 1.4rem;
  overflow-wrap: break-word;
}

/* Table cells */

td,
th {
  vertical-align: top;
}

/* Table header */

thead th {
  vertical-align: bottom;
}

/* Components
Specific pieces of UI that are stylized. Typically used for global partial styling
*/

/* Header DND sections */

.header .dnd-section {
  padding: 0;
}

/* Header container */

.header__container {
  display: flex;
  justify-content: space-between;
}

.header__row-1 {
  padding-top: 1rem;
}

.header__row-1,
.header__row-2 {
  align-items: center;
  display: flex;
  justify-content: flex-end;
  width: 100%;
}

@media (max-width: 1150px) and (min-width: 767px) {
  .header__column {
    width: 100%;
  }
}

@media (max-width: 767px) {
  .header__container {
    flex-direction: column;
    padding: 1rem 0 0;
  }

  .header__column {
    position: relative;
  }

  .header__row-1 {
    padding-top: 0;
  }

  .header__row-2 {
    justify-content: center;
    padding: 1.05rem;
  }
}

/* Navigation skipper */

.header__skip {
  height: 1px;
  left: -1000px;
  overflow: hidden;
  position: absolute;
  text-align: left;
  top: -1000px;
  width: 1px;
}

.header__skip:hover,
.header__skip:focus,
.header__skip:active {
  height: auto;
  left: 0;
  overflow: visible;
  top: 0;
  width: auto;
}

/* Logo */

.header__logo {
  align-items: center;
  display: flex;
  height: auto;
  margin-right: auto;
  max-width: 200px;
  overflow: hidden;
}

@media (max-width: 767px) {
  .header__logo {
    margin: 0 auto;
    width: 100%;
  }
}

.header__logo img {
  max-width: 100%;
}

.header__logo .logo-company-name {
  font-size: 1.167rem;
  margin-top: 0.7rem;
}

.header__logo--main {
  padding-top: 1rem;
}

/* Search bar */

.header__search {
  padding: 0 1rem;
  width: auto;
}



  .hs-search-field__form {
    position: relative;
  }

  .header__search .hs-search-field__label {
    flex-basis: auto;
  }



.header__search .hs-search-field__input {
  
  height: 45px;
  padding: 0 0.7rem;
}



  .header__search .hs-search-field__button {
    padding: 0;
    fill: #000;
    background-color: transparent;
    border: none;
    padding: 10px;
    position: absolute;
    top: 0;
    right: 0;
  }

  .header__search .hs-search-field__button svg {
    height: 25px;
  }


.header__search .hs-search-field--open .hs-search-field__input {
  border-bottom: none;
  border-radius: 6px 6px 0 0;
  max-width: 100%;
}

.header__search .hs-search-field--open .hs-search-field__suggestions {
  background-color: #FFF;
  border: 2px solid #D1D6DC;
  border-radius: 0 0 6px 6px;
  border-top-width: 1px;
  position: absolute;
  width: 100%;
  z-index: 10;
}

.header__search .hs-search-field__suggestions li {
  border-top: 1px solid #D1D6DC;
  font-size: 0.875rem;
}

.header__search .hs-search-field__suggestions li a {
  color: #494A52;
  padding: 0.35rem 0.7rem;
  text-decoration: none;
  transition: background-color 0.3s;
}

.header__search .hs-search-field__suggestions #results-for {
  display: none;
}

@media (min-width: 767px) {
  .header__search form {
    align-items: center;
    display: flex;
    flex-direction: row;
  }

  .header__search label {
    margin: 0 1rem 0 0;
  }

  .header__search .hs-search-field__input {
    width: auto;
  }
}

@media (max-width: 767px) {
  .header__search {
    border-top: 2px solid #CED4DB;
    order: 1;
    padding: 1.05rem;
  }
}

/* Language switcher */

.header__language-switcher {
  cursor: pointer;
  padding-right: 1.4rem;
}

.header__language-switcher .lang_switcher_class {
  position: static;
}

.header__language-switcher .lang_list_class {
  border: 2px solid;
  border-radius: 3px;
  box-shadow: 0 2px 9px 0 rgba(0, 0, 0, 0.2);
  display: block;
  left: calc(100% - 24px);
  opacity: 0;
  min-width: 100px;
  padding-top: 0;
  text-align: left;
  top: 100%;
  transition: opacity 0.3s;
  visibility: hidden;
}

.header__language-switcher:hover .lang_list_class,
.header__language-switcher:focus .lang_list_class {
  opacity: 1;
  transition: opacity 0.3s;
  visibility: visible;
}

.header__language-switcher .lang_list_class:before {
  left: 70%;
  top: -25px;
}

.header__language-switcher .lang_list_class:after {
  left: 70%;
  top: -22px;
}

.header__language-switcher .lang_list_class.first-active::after {
  top: -22px;
  transition: 0.3s;
}

.header__language-switcher .lang_list_class li {
  border: none;
  font-size: 18px;
  padding: 0.35rem 0.7rem;
}

.header__language-switcher .lang_list_class li:first-child {
  border-radius: 6px 6px 0 0;
  border-top: none;
}

.header__language-switcher .lang_list_class li:last-child {
  border-bottom: none;
  border-radius: 0 0 6px 6px;
}

.header__language-switcher .lang_list_class li:hover {
  transition: background-color 0.3s;
}

.header__language-switcher--label {
  display: flex;
  position: relative;
}

.header__language-switcher--label-current {
  align-items: center;
  display: flex;
  font-size: 0.75rem;
  margin-bottom: 0.175rem;
  margin-left: 0.7rem;
}

.header__language-switcher--label-current:after {
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 6px solid #494A52;
  content: "";
  display: block;
  height: 0px;
  margin-left: 0.7rem;
  margin-top: 0.175rem;
  width: 0px;
}

@media (max-width: 767px) {
  .header__language-switcher {
    border-top: 2px solid #CED4DB;
    padding-left: 1.05rem;
    padding-right: 0;
  }

  .header__language-switcher .lang_list_class {
    border: none;
    box-shadow: unset;
    display: block;
    left: 30px;
    opacity: 1;
    padding: 0 1.05rem;
    top: 0;
    visibility: visible;
  }

  .header__language-switcher .lang_list_class li {
    background-color: inherit;
    font-size: 0.917rem;
  }

  .header__language-switcher--label-current {
    display: none;
  }

  .header__language-switcher .globe_class {
    background-image: none;
  }

  .header__language-switcher .lang_list_class li:hover{
    background-color: inherit;
  }

  .header__language-switcher .lang_list_class:before,
  .header__language-switcher .lang_list_class:after {
    content: none;
  }}

/* Navigation */

#nav-toggle {
  display: none;
}

/* Mobile toggles */

@media (max-width: 767px) {
  .header__navigation,
  .header__search,
  .header__language-switcher {
    display: none;
    width: 100%;
  }

  .header__navigation.open,
  .header__search.open,
  .header__language-switcher.open {
    background-color: #F8FAFC;
    display: block;
    left: 0;
    min-height: calc(100vh - 115px);
    position: absolute;
    right: 0;
    top: 75px;
    z-index: 2;
  }

  .header__navigation--toggle,
  .header__search--toggle,
  .header__language-switcher--toggle,
  .header__close--toggle {
    cursor: pointer;
    margin: 0 5vw;
    position: relative;
  }

  .header__navigation--toggle.hide,
  .header__search--toggle.hide,
  .header__language-switcher--toggle.hide {
    display: none;
  }

  .header__navigation--toggle.open,
  .header__search--toggle.open,
  .header__language-switcher--toggle.open {
    display: block;
    margin-left: 0;
    margin-right: auto;
  }

  .header__navigation--toggle:after,
  .header__search--toggle:after,
  .header__language-switcher--toggle:after {
    display: none;
    font-size: 1.083rem;
    font-weight: 600;
    position: absolute;
    left: 40px;
    text-transform: uppercase;
    top: -10px;
  }

  .header__navigation--toggle.open:after,
  .header__search--toggle.open:after,
  .header__language-switcher--toggle.open:after {
    display: block;
    word-break: normal;
  }

  .header__navigation--toggle {
    background-image: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz48c3ZnIHdpZHRoPSIyNHB4IiBoZWlnaHQ9IjI0cHgiIHZpZXdCb3g9IjAgMCAyNCAxOSIgdmVyc2lvbj0iMS4xIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHhtbG5zOnhsaW5rPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hsaW5rIj4gICAgICAgIDx0aXRsZT5oYW1idXJnZXI8L3RpdGxlPiAgICA8ZGVzYz5DcmVhdGVkIHdpdGggU2tldGNoLjwvZGVzYz4gICAgPGcgaWQ9ImhhbWJ1cmdlciIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+ICAgICAgICA8ZyBpZD0iR3JvdXAiIHN0cm9rZT0iIzQ5NEE1MiIgc3Ryb2tlLXdpZHRoPSIzIj4gICAgICAgICAgICA8cmVjdCBpZD0iUmVjdGFuZ2xlIiB4PSIxLjUiIHk9IjEuNSIgd2lkdGg9IjIxIiBoZWlnaHQ9IjEiIHJ4PSIwLjUiPjwvcmVjdD4gICAgICAgICAgICA8cmVjdCBpZD0iUmVjdGFuZ2xlLUNvcHktNCIgeD0iMS41IiB5PSI5LjUiIHdpZHRoPSIyMSIgaGVpZ2h0PSIxIiByeD0iMC41Ij48L3JlY3Q+ICAgICAgICAgICAgPHJlY3QgaWQ9IlJlY3RhbmdsZS1Db3B5LTUiIHg9IjEuNSIgeT0iMTcuNSIgd2lkdGg9IjIxIiBoZWlnaHQ9IjEiIHJ4PSIwLjUiPjwvcmVjdD4gICAgICAgIDwvZz4gICAgPC9nPjwvc3ZnPg==);
    background-size: cover;
    height: 25px;
    width: 25px;
  }

  .header__navigation--toggle:after {
    content: "Menu";
  }

  .header__language-switcher--toggle {
    background-image: url(//static.hsappstatic.net/cos-LanguageSwitcher/static-1.1/img/globe.png);
    background-size: cover;
    height: 25px;
    width: 25px;
  }

  .header__language-switcher--toggle:after {
    content: "Language";
  }

  .header__search--toggle {
    background-image: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz48c3ZnIHdpZHRoPSIyNHB4IiBoZWlnaHQ9IjI0cHgiIHZpZXdCb3g9IjAgMCAyNCAyNCIgdmVyc2lvbj0iMS4xIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHhtbG5zOnhsaW5rPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hsaW5rIj4gICAgICAgIDx0aXRsZT5TZWFyY2g8L3RpdGxlPiAgICA8ZGVzYz5DcmVhdGVkIHdpdGggU2tldGNoLjwvZGVzYz4gICAgPGRlZnM+ICAgICAgICA8cGF0aCBkPSJNOS4xMzg2MTUzNCwxNS44OTI1Njg1IEM1LjQxMzk1NzQyLDE1Ljg5MjU2ODUgMi4zODM4ODUyNywxMi44NjM0NDc1IDIuMzgzODg1MjcsOS4xMzkwMDM3NiBDMi4zODM4ODUyNyw1LjQxNDU2MDA1IDUuNDEzOTU3NDIsMi4zODM4ODUyNyA5LjEzODYxNTM0LDIuMzgzODg1MjcgQzEyLjg2MzI3MzMsMi4zODM4ODUyNyAxNS44OTI1Njg1LDUuNDE0NTYwMDUgMTUuODkyNTY4NSw5LjEzOTAwMzc2IEMxNS44OTI1Njg1LDEyLjg2MzQ0NzUgMTIuODYzMjczMywxNS44OTI1Njg1IDkuMTM4NjE1MzQsMTUuODkyNTY4NSBNOS4xMzg3NTI0NSwyLjQzMzYwODg3ZS0xMyBDMTQuMTc3OTk1NSwyLjQzMzYwODg3ZS0xMyAxOC4yNzY0NTM3LDQuMTAwMzI0NzEgMTguMjc2NDUzNyw5LjEzOTI3Nzk2IEMxOC4yNzY0NTM3LDExLjIyOTgyMTEgMTcuNTcxMDE2OSwxMy4xNTg0NDM0IDE2LjM4NTYzMTMsMTQuNjk5NjY5NiBMMjMuNjUwODg4MSwyMS45NjUyMjY2IEMyNC4xMTYzNzA2LDIyLjQzMDcwOTIgMjQuMTE2MzcwNiwyMy4xODU0MDU1IDIzLjY1MDg4ODEsMjMuNjUwODg4MSBDMjMuMTg1NDA1NSwyNC4xMTYzNzA2IDIyLjQzMDcwOTIsMjQuMTE2MzcwNiAyMS45NjUyMjY2LDIzLjY1MDg4ODEgTDE0LjY5OTgxMzMsMTYuMzg1NDcxMyBDMTMuMTU4NDQwNSwxNy41NzA5NTA5IDExLjIyOTU3MzgsMTguMjc2NDUzNyA5LjEzODc1MjQ1LDE4LjI3NjQ1MzcgQzQuMDk5NTA5MzgsMTguMjc2NDUzNyAtMy43MzAzNDkzNmUtMTQsMTQuMTc4MjMxMiAtMy43MzAzNDkzNmUtMTQsOS4xMzkyNzc5NiBDLTMuNzMwMzQ5MzZlLTE0LDQuMTAwMzI0NzEgNC4wOTk1MDkzOCwyLjQzMzYwODg3ZS0xMyA5LjEzODc1MjQ1LDIuNDMzNjA4ODdlLTEzIFoiIGlkPSJwYXRoLTEiPjwvcGF0aD4gICAgPC9kZWZzPiAgICA8ZyBpZD0iU2VhcmNoIiBzdHJva2U9Im5vbmUiIHN0cm9rZS13aWR0aD0iMSIgZmlsbD0ibm9uZSIgZmlsbC1ydWxlPSJldmVub2RkIj4gICAgICAgIDxtYXNrIGlkPSJtYXNrLTIiIGZpbGw9IndoaXRlIj4gICAgICAgICAgICA8dXNlIHhsaW5rOmhyZWY9IiNwYXRoLTEiPjwvdXNlPiAgICAgICAgPC9tYXNrPiAgICAgICAgPHVzZSBpZD0iSWNvbnMvQWN0aW9ucy9TZWFyY2giIGZpbGw9IiM0OTRBNTIiIHhsaW5rOmhyZWY9IiNwYXRoLTEiPjwvdXNlPiAgICA8L2c+PC9zdmc+);
    background-size: cover;
    height: 25px;
    width: 25px;
  }

  .header__search--toggle:after {
    content: "Search";
  }

  .header__close--toggle {
    background-image: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz48c3ZnIHdpZHRoPSIyNHB4IiBoZWlnaHQ9IjE5cHgiIHZpZXdCb3g9IjAgMCAyNCAxOSIgdmVyc2lvbj0iMS4xIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHhtbG5zOnhsaW5rPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hsaW5rIj4gICAgICAgIDx0aXRsZT5jbG9zZTwvdGl0bGU+ICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPiAgICA8ZyBpZD0iY2xvc2UiIHN0cm9rZT0ibm9uZSIgc3Ryb2tlLXdpZHRoPSIxIiBmaWxsPSJub25lIiBmaWxsLXJ1bGU9ImV2ZW5vZGQiPiAgICAgICAgPGcgaWQ9Ikdyb3VwIiB0cmFuc2Zvcm09InRyYW5zbGF0ZSgyLjAwMDAwMCwgLTEuMDAwMDAwKSIgc3Ryb2tlPSIjNDk0QTUyIiBzdHJva2Utd2lkdGg9IjMiPiAgICAgICAgICAgIDxyZWN0IGlkPSJSZWN0YW5nbGUiIHRyYW5zZm9ybT0idHJhbnNsYXRlKDEwLjAwMDAwMCwgMTAuNTAwMDAwKSByb3RhdGUoLTQ1LjAwMDAwMCkgdHJhbnNsYXRlKC0xMC4wMDAwMDAsIC0xMC41MDAwMDApICIgeD0iLTAuNSIgeT0iMTAuNSIgd2lkdGg9IjIxIiBoZWlnaHQ9IjEiIHJ4PSIwLjUiPjwvcmVjdD4gICAgICAgICAgICA8cmVjdCBpZD0iUmVjdGFuZ2xlLUNvcHktNSIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoMTAuMDAwMDAwLCAxMC41MDAwMDApIHJvdGF0ZSg0NS4wMDAwMDApIHRyYW5zbGF0ZSgtMTAuMDAwMDAwLCAtMTAuNTAwMDAwKSAiIHg9Ii0wLjUiIHk9IjEwLjUiIHdpZHRoPSIyMSIgaGVpZ2h0PSIxIiByeD0iMC41Ij48L3JlY3Q+ICAgICAgICA8L2c+ICAgIDwvZz48L3N2Zz4=);
    background-repeat: no-repeat;
    background-size: 110%;
    display: none;
    height: 25px;
    margin-right: 0;
    width: 25px;
  }

  .header__close--toggle.show {
    display: block;
  }
}
/* Cookie banner link contrast fix — was #0091ae (3.7:1 fail) */
.cookie-consent-banner a[rel="nofollow"] {
  color: #006E84 !important;
}

/* Menu and simple menu */

.hs-menu-wrapper ul {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  margin: 0;
  padding-left: 0;
}

/* Horizontal menu */

.hs-menu-wrapper.hs-menu-flow-horizontal .hs-menu-children-wrapper {
  flex-direction: column;
}

@media (max-width: 767px) {
  .hs-menu-wrapper.hs-menu-flow-horizontal ul {
    flex-direction: column;
  }
}

/* Vertical menu */

.hs-menu-wrapper.hs-menu-flow-vertical ul {
  flex-direction: column;
}

/* Flyouts */

.hs-menu-wrapper.hs-menu-flow-vertical.flyouts ul {
  display: inline-flex;
}

@media (max-width: 767px) {
  .hs-menu-wrapper.hs-menu-flow-vertical ul {
    display: flex;
  }
}

.hs-menu-wrapper.flyouts .hs-item-has-children {
  position: relative;
}

.hs-menu-wrapper.flyouts .hs-menu-children-wrapper {
  left: -9999px;
  opacity: 0;
  position: absolute;
}

.hs-menu-wrapper.flyouts .hs-menu-children-wrapper a {
  display: block;
  white-space: nowrap;
}

.hs-menu-wrapper.hs-menu-flow-horizontal.flyouts .hs-item-has-children:hover > .hs-menu-children-wrapper {
  left: 0;
  opacity: 1;
  top: 100%;
}

.hs-menu-wrapper.hs-menu-flow-vertical.flyouts .hs-item-has-children:hover > .hs-menu-children-wrapper {
  left: 100%;
  opacity: 1;
  top: 0;
}

@media (max-width: 767px) {
  .hs-menu-wrapper.flyouts .hs-menu-children-wrapper,
  .hs-menu-wrapper.hs-menu-flow-horizontal.flyouts .hs-item-has-children:hover > .hs-menu-children-wrapper,
  .hs-menu-wrapper.hs-menu-flow-vertical.flyouts .hs-item-has-children:hover > .hs-menu-children-wrapper {
    left: 0;
    opacity: 1;
    position: relative;
    top: auto;
  }
}

/* CTA, logo, and rich text images */

.hs_cos_wrapper_type_cta img,
.hs_cos_wrapper_type_logo img,
.hs_cos_wrapper_type_rich_text img {
  height: auto;
  max-width: 100%;
}

/* Utilities
Helper classes with ability to override anything that comes before it
*/

/* For content that needs to be visually hidden but stay visible for screenreaders */

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

@media (max-width: 767px) {
  .show-for-sr--mobile {
    border: 0 !important;
    clip: rect(0, 0, 0, 0) !important;
    height: 1px !important;
    overflow: hidden !important;
    padding: 0 !important;
    position: absolute !important;
    white-space: nowrap !important;
    width: 1px !important;
  }
}