/* Theme base styles */

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

*, *: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 HTML elements are styled in this section (<body>, <h1>, <a>, <p>, <button> etc.)
*/

/* cyrillic-ext */
@font-face {
  font-family: 'Source Sans 3';
  font-style: italic;
  font-weight: 200 900;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/sourcesans3/v19/nwpMtKy2OAdR1K-IwhWudF-R3woqauLYxnV18JRx.woff2) format('woff2');
  unicode-range: U+0460-052F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;
}

/* cyrillic */
@font-face {
  font-family: 'Source Sans 3';
  font-style: italic;
  font-weight: 200 900;
  font-display: swap; 
  src: url(https://fonts.gstatic.com/s/sourcesans3/v19/nwpMtKy2OAdR1K-IwhWudF-R3woqY-LYxnV18JRx.woff2) format('woff2');
  unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}

/* greek-ext */
@font-face {
  font-family: 'Source Sans 3';
  font-style: italic;
  font-weight: 200 900;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/sourcesans3/v19/nwpMtKy2OAdR1K-IwhWudF-R3woqa-LYxnV18JRx.woff2) format('woff2');
  unicode-range: U+1F00-1FFF;
}

/* greek */
@font-face {
  font-family: 'Source Sans 3';
  font-style: italic;
  font-weight: 200 900;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/sourcesans3/v19/nwpMtKy2OAdR1K-IwhWudF-R3woqZOLYxnV18JRx.woff2) format('woff2');
  unicode-range: U+0370-0377, U+037A-037F, U+0384-038A, U+038C, U+038E-03A1, U+03A3-03FF;
}

/* vietnamese */
@font-face {
  font-family: 'Source Sans 3';
  font-style: italic;
  font-weight: 200 900;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/sourcesans3/v19/nwpMtKy2OAdR1K-IwhWudF-R3woqaOLYxnV18JRx.woff2) format('woff2');
  unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB;
}

/* latin-ext */
@font-face {
  font-family: 'Source Sans 3';
  font-style: italic;
  font-weight: 200 900;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/sourcesans3/v19/nwpMtKy2OAdR1K-IwhWudF-R3woqaeLYxnV18JRx.woff2) format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

/* latin */
@font-face {
  font-family: 'Source Sans 3';
  font-style: italic;
  font-weight: 200 900;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/sourcesans3/v19/nwpMtKy2OAdR1K-IwhWudF-R3woqZ-LYxnV18A.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

/* cyrillic-ext */
@font-face {
  font-family: 'Source Sans 3';
  font-style: normal;
  font-weight: 200 900;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/sourcesans3/v19/nwpStKy2OAdR1K-IwhWudF-R3wIaZejf5HdF8Q.woff2) format('woff2');
  unicode-range: U+0460-052F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;
}

/* cyrillic */
@font-face {
  font-family: 'Source Sans 3';
  font-style: normal;
  font-weight: 200 900;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/sourcesans3/v19/nwpStKy2OAdR1K-IwhWudF-R3wsaZejf5HdF8Q.woff2) format('woff2');
  unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}

/* greek-ext */
@font-face {
  font-family: 'Source Sans 3';
  font-style: normal;
  font-weight: 200 900;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/sourcesans3/v19/nwpStKy2OAdR1K-IwhWudF-R3wMaZejf5HdF8Q.woff2) format('woff2');
  unicode-range: U+1F00-1FFF;
}

/* greek */
@font-face {
  font-family: 'Source Sans 3';
  font-style: normal;
  font-weight: 200 900;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/sourcesans3/v19/nwpStKy2OAdR1K-IwhWudF-R3wwaZejf5HdF8Q.woff2) format('woff2');
  unicode-range: U+0370-0377, U+037A-037F, U+0384-038A, U+038C, U+038E-03A1, U+03A3-03FF;
}

/* vietnamese */
@font-face {
  font-family: 'Source Sans 3';
  font-style: normal;
  font-weight: 200 900;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/sourcesans3/v19/nwpStKy2OAdR1K-IwhWudF-R3wAaZejf5HdF8Q.woff2) format('woff2');
  unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB;
}

/* latin-ext */
@font-face {
  font-family: 'Source Sans 3';
  font-style: normal;
  font-weight: 200 900;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/sourcesans3/v19/nwpStKy2OAdR1K-IwhWudF-R3wEaZejf5HdF8Q.woff2) format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

/* latin */
@font-face {
  font-family: 'Source Sans 3';
  font-style: normal;
  font-weight: 200 900;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/sourcesans3/v19/nwpStKy2OAdR1K-IwhWudF-R3w8aZejf5Hc.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

/* Complete typography elements styleguide
   Mobile first, variable-driven for mobile/tablet/desktop. */

:root {
  --font-family-base: "Source Sans 3", sans-serif;

  --font-size-body: 16px;
  --font-size-h1: 30px;
  --font-size-h2: 24px;
  --font-size-h3: 20px;
  --font-size-h4: 18px;
  --font-size-h5: 16px;
  --font-size-h6: 15.2px;
  --font-size-p: 16px;
  --font-size-a: 16px;
  --font-size-li: 16px;
  --font-size-dt: 16px;
  --font-size-dd: 16px;
  --font-size-blockquote: 16px;
  --font-size-cite: 15.2px;
  --font-size-pre: 15.2px;
  --font-size-code: 15.2px;
  --font-size-small: 12.8px;
  --font-size-mark: 16px;
  --font-size-subsup: 12px;
  --font-size-form-label: 14px;
  --font-size-form-input: 15.2px;
  --font-size-form-legend: 14px;
  --font-size-form-help: 14px;

  --line-height-body: 1.4;
  --line-height-heading: 1.25;
  --line-height-h1: 1.231;
  --line-height-copy: 1.5;
  --line-height-pre: 1.5;
  --line-height-form-input: 1.3;

  --font-weight-regular: 400;
  --font-weight-semibold: 600;
  --font-weight-bold: 700;

  --space-0: 0;
  --space-text-stack: 22.4px;
  --space-heading-stack: 8px;
  --space-list-inline-start: 20px;
  --space-list-nested: 8px;
  --space-list-item: 5.6px;
  --space-dt: 8px;
  --space-dd: 16px;
  --space-blockquote-inline-start: 12.8px;
  --space-pre-padding: 12px;
  --space-form-field: 16px;
  --space-form-label: 5.6px;
  --space-form-input-padding-block: 11.2px;
  --space-form-input-padding-inline: 11.2px;
  --space-form-legend: 8px;
  --space-form-help: 5.6px;

  --border-width-thin: 1px;
  --border-width-thick: 2px;
  --border-radius-sm: 4px;

  --color-text: #1f2121;
  --color-heading: #1f2121;
  --color-link: #036268;
  --color-link-visited: #5e0a4f;
  --color-border: #d9d9d9;
  --color-muted: #616161;
  --color-mark-bg: #fff3a6;
  --color-mark-text: #1f2121;
  --color-code-bg: #f5f5f5;
  --color-code-text: #1f2121;
}

@media only screen and (min-width: 768px) {
  :root {
    --font-size-h1: 32px;
    --font-size-h2: 26px;
    --font-size-h3: 22px;
    --font-size-h4: 19.2px;
    --font-size-h5: 16.8px;
    --font-size-h6: 16px;
    --font-size-p: 18px;
    --font-size-a: 18px;
    --font-size-li: 18px;
    --font-size-dt: 18px;
    --font-size-dd: 18px;
    --font-size-blockquote: 18px;
    --font-size-blockquote: 19.2px;
    --font-size-pre: 16px;
    --font-size-code: 16px;
    --font-size-form-label: 14.4px;
    --font-size-form-input: 16px;
    --font-size-form-legend: 14.4px;
    --font-size-form-help: 14.4px;
  }
}

@media only screen and (min-width: 1008px) {
  :root {
    --font-size-h1: 34px;
    --font-size-h2: 28px;
    --font-size-h3: 24px;
    --font-size-h4: 20px;
    --font-size-h5: 17.6px;
    --font-size-h6: 16px;
    --font-size-p: 20px;
    --font-size-a: 20px;
    --font-size-li: 20px;
    --font-size-dt: 20px;
    --font-size-dd: 20px;
    --font-size-blockquote: 20px;
    --font-size-blockquote: 20px;
    --font-size-form-label: 16px;
    --font-size-form-input: 16px;
    --font-size-form-legend: 16px;
    --font-size-form-help: 16px;
  }
}

body {
  color: var(--color-text);
  font-family: var(--font-family-base);
  font-size: var(--font-size-body);
  font-weight: var(--font-weight-regular);
  line-height: var(--line-height-body);
  margin: var(--space-0);
  overflow-wrap: break-word;
  -webkit-font-smoothing: auto;
}

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

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--color-heading);
  font-weight: var(--font-weight-bold);
  line-height: var(--line-height-heading);
  margin: var(--space-0) var(--space-0) var(--space-heading-stack);
}

h1 {
  font-size: var(--font-size-h1);
  line-height: var(--line-height-h1);
}

h2 {
  font-size: var(--font-size-h2);
}

h3 {
  font-size: var(--font-size-h3);
}

h4 {
  font-size: var(--font-size-h4);
}

h5 {
  font-size: var(--font-size-h5);
}

h6 {
  font-size: var(--font-size-h6);
}

p {
  font-size: var(--font-size-p);
  line-height: var(--line-height-copy);
  margin: var(--space-0) var(--space-0) var(--space-text-stack);
}

a {
  color: var(--color-link);
  cursor: pointer;
  font-size: var(--font-size-a);
  text-decoration: underline;
}

a:hover,
a:focus {
  color: var(--color-link);
  text-decoration: none;
}

a:not(.button):visited {
/*   color: var(--color-link-visited); */
}

ul,
ol {
  margin: var(--space-0) var(--space-0) var(--space-text-stack);
  padding-inline-start: var(--space-list-inline-start);
}

ul ul,
ul ol,
ol ul,
ol ol {
  margin-top: var(--space-list-nested);
  margin-bottom: var(--space-0);
}

li {
  font-size: var(--font-size-li);
  margin-bottom: var(--space-list-item);
}

dl {
  margin: var(--space-0) var(--space-0) var(--space-text-stack);
}

dt {
  font-size: var(--font-size-dt);
  font-weight: var(--font-weight-semibold);
  margin-bottom: var(--space-dt);
}

dd {
  font-size: var(--font-size-dd);
  margin: var(--space-0) var(--space-0) var(--space-dd) var(--space-0);
}

blockquote {
  border-inline-start: var(--border-width-thick) solid var(--color-border);
  font-size: var(--font-size-blockquote);
  margin: var(--space-0) var(--space-0) var(--space-text-stack);
  padding-inline-start: var(--space-blockquote-inline-start);
}

blockquote p {
  margin-bottom: var(--space-0);
}

cite {
  color: var(--color-muted);
  display: block;
  font-size: var(--font-size-cite);
  margin-top: var(--space-dt);
}

pre,
code,
kbd,
samp {
  color: var(--color-code-text);
  font-family: monospace, serif;
}

pre {
  background-color: var(--color-code-bg);
  border: var(--border-width-thin) solid var(--color-border);
  border-radius: var(--border-radius-sm);
  font-size: var(--font-size-pre);
  line-height: var(--line-height-pre);
  margin: var(--space-0) var(--space-0) var(--space-text-stack);
  overflow: auto;
  padding: var(--space-pre-padding);
  white-space: pre-wrap;
}

code,
kbd,
samp {
  font-size: var(--font-size-code);
}

b,
strong {
  font-weight: var(--font-weight-bold);
}

em,
i {
  font-style: italic;
}

small {
  font-size: var(--font-size-small);
}

mark {
  background-color: var(--color-mark-bg);
  color: var(--color-mark-text);
  font-size: var(--font-size-mark);
}

sub,
sup {
  font-size: var(--font-size-subsup);
  line-height: var(--space-0);
  position: relative;
  vertical-align: baseline;
}

sup {
  top: calc(var(--font-size-subsup) * -0.5);
}

sub {
  bottom: calc(var(--font-size-subsup) * -0.25);
}

abbr[title] {
  border-bottom: var(--border-width-thin) dotted var(--color-border);
  cursor: help;
  text-decoration: none;
}

q {
  quotes: "\201C" "\201D" "\2018" "\2019";
}

hr {
  border: var(--space-0);
  border-bottom: var(--border-width-thin) solid var(--color-border);
  margin: var(--space-text-stack) var(--space-0);
}

form {
  font-size: var(--font-size-body);
}

form label {
  display: block;
  font-size: var(--font-size-form-label);
  margin-bottom: var(--space-form-label);
}

form legend {
  font-size: var(--font-size-form-legend);
  margin-bottom: var(--space-form-legend);
}

form small,
form .help-text {
  color: var(--color-muted);
  display: block;
  font-size: var(--font-size-form-help);
  margin-top: var(--space-form-help);
}

form input[type=text],
form input[type=search],
form input[type=email],
form input[type=password],
form input[type=tel],
form input[type=number],
form input[type=file],
form select,
form textarea,
form button {
  font-family: var(--font-family-base);
  font-size: var(--font-size-form-input);
  line-height: var(--line-height-form-input);
  margin-bottom: 0;
  padding: var(--space-form-input-padding-block) var(--space-form-input-padding-inline);
}

form textarea {
  resize: vertical;
}

img {
  max-width: 100%;
  height: auto;
}
:root {
  --button--primary__font: "Source Sans 3", sans-serif;
  --button--primary__fontSize: 1rem;
  --button--primary__fontWeight: 600;
  --button--primary__fontStyle: normal;
  --button--primary__textColor: #133844;
  --button--primary__backgroundColor: #3BE0D0;
  --button--primary__borderColor: #3BE0D0;
  --button--primary__borderThickness: 1px;
  --button--primary__borderRadius: 4px;
  --button--primary__hover--textColor: #133844;
  --button--primary__hover--backgroundColor: #B8F4EA; 
  --button--primary__hover--borderColor: #036268;
  --button--primary__hover--borderThickness: 1px;
  --button--primary__active--textColor: #133844;
  --button--primary__active--backgroundColor: #B8F4EA;
  --button--primary__active--borderColor: #036268;
  --button--primary__active--borderThickness: 1px;

  --button--secondary__font: "Source Sans 3", sans-serif;
  --button--secondary__fontSize: 1rem;
  --button--secondary__fontWeight: 600;
  --button--secondary__fontStyle: normal;
  --button--secondary__textColor: #036268;
  --button--secondary__backgroundColor: #ffffff;
  --button--secondary__borderColor: #036268;
  --button--secondary__borderThickness: 1px;
  --button--secondary__borderRadius: 4px;
  --button--secondary__hover--textColor: #036268;
  --button--secondary__hover--backgroundColor: #B8F4EA;
  --button--secondary__hover--borderColor: #036268;
  --button--secondary__hover--borderThickness: 1px;
  --button--secondary__active--textColor: #036268;
  --button--secondary__active--backgroundColor: #B8F4EA;
  --button--secondary__active--borderColor: #036268;
  --button--secondary__active--borderThickness: 1px;

  --button--small__padding: 9px 17px;
  --button--small__maxHeight: 36px;
  --button--medium__padding: 12px 26px;
  --button--medium__maxHeight: 42px;
  --button--large__padding: 20px 40px;
  --button--large__minHeight: 60px;
}

button,
.button,
.hs-button {
  cursor: pointer;
  display: inline-block;
  background-color: var(--button--primary__backgroundColor);
  border: var(--button--primary__borderThickness) solid var(--button--primary__borderColor);
  border-radius: var(--button--primary__borderRadius);
  color: var(--button--primary__textColor);
  font-family: var(--button--primary__font);
  font-size: var(--button--primary__fontSize);
  font-style: var(--button--primary__fontStyle);
  font-weight: var(--button--primary__fontWeight);
  padding: var(--button--medium__padding);
  max-height: var(--button--medium__maxHeight);
  text-align: center;
  transition: all 0.15s linear;
  text-decoration: none;
  white-space: normal;
  min-height: 1px;
  line-height: 1;
}

button:hover,
.button:hover,
.hs-button:hover,
button:focus,
.button:focus,
.hs-button:focus,
button:active,
.button:active,
.hs-button:active {
  color: var(--button--primary__textColor);
}

button:hover,
.button:hover,
.hs-button:hover,
button:focus,
.button:focus,
.hs-button:focus {
  background-color: var(--button--primary__hover--backgroundColor);
  border-color: var(--button--primary__hover--borderColor);
  border-width: var(--button--primary__hover--borderThickness);
}

button:active,
.button:active,
.hs-button:active {
  background-color: var(--button--primary__active--backgroundColor);
  border-color: var(--button--primary__active--borderColor);
  border-width: var(--button--primary__active--borderThickness);
}

button.button--secondary,
.button--secondary,
.hs-button--secondary {
  background-color: var(--button--secondary__backgroundColor);
  border: var(--button--secondary__borderThickness) solid var(--button--secondary__borderColor);
  color: var(--button--secondary__textColor);
  font-family: var(--button--secondary__font);
  font-size: var(--button--secondary__fontSize);
  font-style: var(--button--secondary__fontStyle);
  font-weight: var(--button--secondary__fontWeight);
}

button.button--secondary:hover,
.button--secondary:hover,
.hs-button--secondary:hover,
button.button--secondary:focus,
.button--secondary:focus,
.hs-button--secondary:focus {
  background-color: var(--button--secondary__hover--backgroundColor);
  border-color: var(--button--secondary__hover--borderColor);
  border-width: var(--button--secondary__hover--borderThickness);
  color: var(--button--secondary__hover--textColor);
}

button.button--secondary:active,
.button--secondary:active,
.hs-button--secondary:active {
  background-color: var(--button--secondary__active--backgroundColor);
  border-color: var(--button--secondary__active--borderColor);
  border-width: var(--button--secondary__active--borderThickness);
  color: var(--button--secondary__active--textColor);
}

button.button--small,
.button--small,
.hs-button--small {
  padding: var(--button--small__padding);
  max-height: var(--button--small__maxHeight);
}

button.button--medium,
.button--medium,
.hs-button--medium {
  padding: var(--button--medium__padding);
  max-height: var(--button--medium__maxHeight);
}

button.button--large,
.button--large,
.hs-button--large {
  padding: var(--button--large__padding);
  min-height: var(--button--large__minHeight);
  line-height: 1.2;
}

button:disabled,
.button:disabled,
.hs-button:disabled {
  background-color: #D0D0D0;
  border-color: #D0D0D0;
  color: #E6E6E6;
}

/* No button */

.no-button,
.no-button:hover,
.no-button:focus,
.no-button:active {
  background: none;
  border: none;
  border-radius: 0;
  color: initial;
  font-family: inherit;
  font-size: inherit;
  font-style: inherit;
  font-weight: inherit;
  letter-spacing: inherit;
  line-height: inherit;
  margin-bottom: 0;
  padding: 0;
  text-align: left;
  text-decoration: none;
  transition: none;
}

.button-group {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  align-items: center;
}

.text-left .button-group {
  justify-content: flex-start;
}

.text-center .button-group {
  justify-content: center;
}

.text-right .button-group {
  justify-content: flex-end;
}

@media (min-width: 991px) {
  .button-group {
    gap: 30px;
  }
}
/* Fields */

.hs-form-field {
  margin-bottom: 1rem;
}

/* Labels */

form label {
  display: block;
  font-size: 0.875rem;
  margin-bottom: 0.35rem;
}

/* Form Title */
.form-title {
  margin-bottom: 0;
}

/* Help text */

form legend {
  font-size: 0.875rem;
}

/* Inputs */

form input[type=text],
form input[type=search],
form input[type=email],
form input[type=password],
form input[type=tel],
form input[type=number],
form input[type=file],
form select,
form textarea {
  display: inline-block;
  font-size: 0.875rem;
  padding: 0.7rem;
  width: 100%;
}

form textarea {
  resize: vertical;
}

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

/* Inputs - checkbox/radio */

form .inputs-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

form .inputs-list > li {
  display: block;
  margin: 0.7rem 0;
}

form .inputs-list input,
form .inputs-list span {
  vertical-align: middle;
}

form input[type=checkbox],
form input[type=radio] {
  cursor: pointer;
  margin-right: 0.35rem;
}

/* Inputs - date picker */

.hs-dateinput {
  position: relative;
}

.hs-dateinput:before {
  content:'\01F4C5';
  position: absolute;
  right: 10%;
  top: 50%;
  transform: translateY(-50%);
}

.fn-date-picker .pika-table thead th {
  color: #FFF;
}

.fn-date-picker td.is-selected .pika-button {
  border-radius: 0;
  box-shadow: none;
}

.fn-date-picker td .pika-button:hover,
.fn-date-picker td .pika-button:focus {
  border-radius: 0 !important;
  color: #FFF;
}

/* Inputs - file picker */

form input[type=file] {
  background-color: transparent;
  border: initial;
  padding: initial;
}

/* Headings and text */

form .hs-richtext,
form .hs-richtext p {
  font-size: 0.875rem;
  margin: 0 0 1.4rem;
}

form .hs-richtext img {
  max-width: 100% !important;
}

/* GDPR */

.legal-consent-container .hs-form-booleancheckbox-display > span,
.legal-consent-container .hs-form-booleancheckbox-display > span p {
  margin-left: 1rem !important;
}

/* Validation */

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

.hs-input.invalid.error {
  border-color: #EF6B51;
}

.hs-error-msg {
  color: #EF6B51;
  margin-top: 0.35rem;
}

form .hs_error_rollup {
  display: none;
}

/* Submit button */

form .hs_submit {
  padding-top: 15px;
}
form input[type=submit],
form .hs-button {
  cursor: pointer;
  display: inline-block;
  text-align: center;
  transition: all 0.15s linear;
  white-space: normal;
  background-color: #3be0d0;
  color: #133844;
  border: 1px solid #3be0d0;
  border-radius: 8px;
  font-weight: 600;
  padding: 0.7rem;
}

form input[type=submit]:hover,
form .hs-button:hover {
  background-color: #b8f4ea;
  border-color: #036268;
  color: #133844;
}

form input[type=submit]:active,
form .hs-button:active {
  background-color: #9ad6cc;
  border-color: #00444a;
}

/* Captcha */

.grecaptcha-badge {
  margin: 0 auto;
}


  /* Search button input field and suggestions */
  .body-container-wrapper .hs-search-field__button {
    padding: 15px;
  }

  .body-container-wrapper .hs-search-field__bar--button-inline .hs-search-field__button {
    margin-left: 6px;
    margin-bottom: 0;
  }

  .body-container-wrapper .hs-search-field__button svg {
    height: 15px;
    fill: #fff;
  }

  .body-container-wrapper .hs-search-field__bar > form > .hs-search-field__input {
    padding: 10px;
  }

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

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

.topbar-header,
.header {    
  display: flex;
  justify-content: flex-start;
  align-items: center;
}

.topbar-header {
  background: #ffffff;
  height: 48px;
}

.header {
  background: #00bdb6;
  height: 55px;
  border-bottom: 1px solid #133844;
}

.topbar-header .container,
.header .container {
  padding: 0 12px;
}

.topbar-header a,
.header a {
  display: flex;
  height: auto;
}

.topbar-header a {
  max-width: 160px;
}

.header a {
  max-width: 315px; 
}
/* Footer Change Language Tray */
.footer-change-lang-tray {
    display: none
}

/* Footer Tray Social Icons */
.footer-tray_social-icons .footer-tray_list li {
    display: inline-block
}

.footer-tray_social-icons .footer-tray_list a {
    background-image: url(../img/icons/sprite-social-media.png);
    background-repeat: no-repeat;
    border: 1px dotted transparent;
    display: block;
    direction: ltr;
    text-indent: -999em;
    height: 26px;
    margin-left: 3px;
    outline: none;
    padding: 0;
    text-align: left;
    width: 26px
}

.footer-tray_social-icons .footer-tray_list a:active,
.footer-tray_social-icons .footer-tray_list a:focus {
    border: 1px dotted #fff
}

.footer-tray_social-icons .footer-tray_list .footer-tray_icon--facebook {
    background-position: 0 0
}

.footer-tray_social-icons .footer-tray_list .footer-tray_icon--twitter {
    background-position: -27px 0
}

.footer-tray_social-icons .footer-tray_list .footer-tray_icon--youtube {
    background-position: 0 -27px
}

.footer-tray_social-icons .footer-tray_list .footer-tray_icon--linkedin {
    background-position: -28px -27px
}

.footer-tray_social-icons .footer-tray_list .footer-tray_icon--instagram {
    background-position: 0 -54px
}

/* Landing Page Footer Tray Social Icons */
.landing-page .aside-tray_social-icons {
    background: #333;
    border: none;
    clear: both;
    overflow: hidden;
    padding: .6925em 10px 0;
    margin-bottom: 2em;
    color: #fff;
    text-align: left;
    font-size: 100%
}

.landing-page .aside-tray_social-icons h3 {
    padding: 0;
    margin: 0;
    border-top: none;
    border-bottom: none;
    background-color: #333
}

.landing-page .aside-tray_social-icons .aside-tray_list {
    list-style-type: none;
    margin: .5em 0 .6925em;
    padding: 0
}

.landing-page .aside-tray_social-icons .aside-tray_list .aside-tray_icon--facebook {
    background-position: 0 0
}

.landing-page .aside-tray_social-icons .aside-tray_list .aside-tray_icon--twitter {
    background-position: -27px 0
}

.landing-page .aside-tray_social-icons .aside-tray_list .aside-tray_icon--youtube {
    background-position: 0 -27px
}

.landing-page .aside-tray_social-icons .aside-tray_list .aside-tray_icon--linkedin {
    background-position: -28px -27px
}

.landing-page .aside-tray_social-icons li {
    display: inline-block
}

.landing-page .aside-tray_social-icons a {
    background-image: url(../img/icons/sprite-social-media.png);
    background-repeat: no-repeat;
    border: 1px dotted transparent;
    display: block;
    direction: ltr;
    text-indent: -999em;
    height: 26px;
    margin-left: 3px;
    outline: none;
    padding: 0;
    text-align: left;
    width: 26px
}

.landing-page .aside-tray_social-icons .aside-tray_icon--linkedin {
    background-position: -28px -27px
}

.landing-page .aside-tray_social-icons .aside-tray_icon--twitter {
    background-position: -27px 0
}

.landing-page .aside-tray_social-icons .aside-tray_icon--rssfeed {
    background-position: 0 -54px
}

.landing-page .aside-tray_social-icons .aside-tray_icon--yammer {
    background-position: -28px -54px
}

/* Main Footer Styles */
@media only screen {
    .footer {
        background-color: #133844;
        color: #fff;
        line-height: 1.5;
        padding: 0 10px
    }

    .footer ul.footer_container__list li a img {
        display: -ms-inline-flexbox;
        display: inline-flex;
        float: left;
        margin-top: 15px;
        margin-right: 34px
    }

    .footer .image--small.cupa_icon_wht_facebook {
        width: 8px;
        height: 17px;
        margin-right: 23px
    }

    .footer .image--small.cupa_icon_wht_instagram {
        width: 17px;
        height: 17px;
        margin-right: 18px
    }

    .footer .image--small.cupa_icon_wht_linkedin {
        width: 14px;
        height: 14px;
        margin-right: 23px;
        margin-top: 16px
    }

    .footer .image--small.cupa_icon_wht_x {
        width: 28px;
        height: 18px;
        margin-right: 18px
    }

    .footer .image--small.cupa_icon_wht_youtube {
        width: 18px;
        height: 12px;
        margin-top: 18px
    }

    .footer .footer_wrap {
        margin: 0 auto;
        max-width: 1018px;
        padding-top: 1.25em
    }

    .footer .footer_header,
    .footer h2 {
        font-weight: 400;
        font-size: 138.46154%;
        margin: 0
    }

    .footer .footer_header {
        line-height: 1.5em
    }

    .footer ul {
        list-style-type: none;
        margin: .75em 0 0;
        padding: 0
    }

    .footer a {
      color: #fff;
      text-decoration: none;
      border-bottom: 1px solid #9b9b9b;
      font-size: 16px; 
          
    }

    .footer a:active,
    .footer a:focus,
    .footer a:hover {
        border-bottom: none;
        color: #fff
    }

    .footer a img {
        margin-bottom: 1em;
        max-width: 100%;
        vertical-align: bottom
    }

    .footer .footer_utility {
        clear: both;
        padding-bottom: 50px
    }

    .footer .footer_utility p {
      margin-bottom: 0;
      font-size: 16px; 
    }

    .footer .footer_utility ul {
        margin-top: 0
    }

    .footer .footer_utility nav {
        padding-bottom: 20px
    }

    .footer .footer_utility li {
        display: inline;
        padding-right: 10px
    }

    .footer .footer_utility .footer_back-to-top {
        border-bottom: 1px solid #9b9b9b
    }

    .footer_container {
        margin-top: 20px
    }

    .footer_container .footer_link--img,
    .footer_container .footer_link--img:active,
    .footer_container .footer_link--img:focus,
    .footer_container .footer_link--img:hover {
        border-bottom: none
    }

    .footer--narrow {
        margin: 0 auto;
        max-width: 934px
    }

    .lte7 .footer .tray-dropdown_group .footer_link-new-window {
        display: inline
    }

    .footer_container img {
        width: 240px
    }
}

/* Footer Media Queries */
@media only screen and (min-width: 32em) {
    .footer {
        padding: 0 20px
    }
}

@media only screen and (min-width: 48em) {
    .footer .footer_container-wrap--borders .footer_container {
        border-left: 1px solid #9b9b9b;
        margin-left: -1px
    }

    .footer .footer_container-wrap--borders .footer_container:first-child {
        border-left: none;
        margin-left: 0
    }

    .footer .footer_container-wrap:after,
    .footer .footer_container-wrap:before {
        content: " ";
        display: table
    }

    .footer .footer_container-wrap:after {
        clear: both
    }

    .footer .footer_container {
        margin-top: 20px
    }

    .footer .footer_container>* {
        margin-left: 20px;
        margin-right: 20px
    }

    .footer .footer_container:first-child>* {
        margin-left: 0
    }

    .footer .tray-dropdown--thirds {
        margin-top: 1em;
        text-align: left
    }

    .footer .tray-dropdown--thirds:after,
    .footer .tray-dropdown--thirds:before {
        content: " ";
        display: table
    }

    .footer .tray-dropdown--thirds:after {
        clear: both
    }

    .footer .tray-dropdown--thirds .tray-dropdown_group {
        float: left;
        width: 31.333%;
        margin: 0 1%
    }

    .footer--halves .footer_container {
        float: left;
        width: 50%
    }

    .footer--thirds .footer_container {
        float: left;
        width: 33.33%
    }

    .footer--quarters .footer_container {
        float: left;
        width: 25%
    }
}

@media only screen and (min-width: 63em) {
    .footer .header-tray_link {
        display: none
    }
}

/* RTL Support */
[dir=rtl] .footer .tray-dropdown_group strong {
    background: url(../img/icons/arrow-white-left.png) no-repeat scroll 96% 50%;
    margin-left: 0;
    margin-right: -25px;
    padding-left: 0;
    padding-right: 25px
}

/* Footer Lang */
.lang-footer {
    border-top: 50px solid #f7f7f7;
    background: transparent!important
}

.lang-footer a {
    background: #fff!important;
    border-bottom: none!important;
    border-top: none
}
/* ============================================================================
   Component: Form
   ============================================================================ */


/* ----------------------------------------------------------------------------
   1. CSS Variables
   ---------------------------------------------------------------------------- */

:root {

  /* --- Form Spacing Scale (component-local) --- */
  --formSpace--4:               4px;
  --formSpace--8:               8px;
  --formSpace--12:              12px;
  --formSpace--16:              16px;
  --formSpace--20:              20px;
  --formSpace--24:              24px;
  --formSpace--30:              30px;
  --formSpace--32:              32px;
  --formSpace--48:              48px;

  /* --- Form Container --- */
  --form__backgroundColor:       #FFFFFF;
  --form__borderRadius:          8px;
  --form__borderThickness:       0;
  --form__borderColor:           #D3DAE4;
  --form__padding:               var(--formSpace--48);

  /* --- Form Label --- */
  --formLabel__textColor:        #09152B;
  --formLabel__font:             "Source Sans 3", sans-serif;
  --formLabel__fontSize:         1.125rem;
  --formLabel__fontWeight:       500;
  --formLabel__marginBottom:     var(--formSpace--8);

  /* --- Help Text & Error --- */
  --formHelpText__textColor:     #647390;
  --formRequired__color:         #de2828;

  /* --- Field: Base --- */
  --formField__backgroundColor:         #F7F9FC;
  --formField__borderRadius:            8px;
  --formField__borderThickness:         2px;
  --formField__borderColor:             #D3DAE4;
  --formField__borderTop:               2px solid #D3DAE4;
  --formField__borderRight:             2px solid #D3DAE4;
  --formField__borderBottom:            2px solid #D3DAE4;
  --formField__borderLeft:              2px solid #D3DAE4;
  --formField__marginBottom:            var(--formSpace--30);
  --formField__marginBottom__mobile:    var(--formSpace--20);

  /* --- Field: Text --- */
  --formFieldInput__textColor:   #09152B;
  --formFieldInput__paddingBlock: var(--formSpace--20);
  --formFieldInput__paddingInline: var(--formSpace--32);

  /* --- Field: Placeholder --- */
  --formFieldPlaceholder__textColor: #7d8ca5;

  /* --- Field: Textarea --- */
  --formFieldTextArea__borderRadius: calc(var(--formField__borderRadius) * 0.5);
  --formFieldTextArea__height:   160px;

  /* --- Field: Checkbox & Radio --- */
  --formFieldCheckboxRadio__size:      24px;
  --formFieldCheckboxRadio__fillColor: #000000;
  --formFieldCheckboxRadio__marginInlineEnd: var(--formSpace--12);
  --formFieldCheckboxRadio__itemSpacing: var(--formSpace--16);

  /* --- Field: International Phone --- */
  --formFieldIntlPhone__gap:     8px;

  /* --- Icons --- */
  --formField__datepickerIcon: url("data:image/svg+xml,%3Csvg width='24' height='29' viewBox='0 0 24 29' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cg clip-path='url(%23clip0_3812_12272)'%3E%3Cpath d='M8.14286 2.07136C8.14286 1.35886 7.56964 0.785645 6.85714 0.785645C6.14464 0.785645 5.57143 1.35886 5.57143 2.07136V4.21422H3.42857C1.5375 4.21422 0 5.75172 0 7.64279V8.49993V11.0714V24.7856C0 26.6767 1.5375 28.2142 3.42857 28.2142H20.5714C22.4625 28.2142 24 26.6767 24 24.7856V11.0714V8.49993V7.64279C24 5.75172 22.4625 4.21422 20.5714 4.21422H18.4286V2.07136C18.4286 1.35886 17.8554 0.785645 17.1429 0.785645C16.4304 0.785645 15.8571 1.35886 15.8571 2.07136V4.21422H8.14286V2.07136ZM2.57143 11.0714H21.4286V24.7856C21.4286 25.2571 21.0429 25.6428 20.5714 25.6428H3.42857C2.95714 25.6428 2.57143 25.2571 2.57143 24.7856V11.0714Z' fill='%2309152B'/%3E%3C/g%3E%3Cdefs%3E%3CclipPath id='clip0_3812_12272'%3E%3Crect width='24' height='27.4286' fill='white' transform='translate(0 0.785645)'/%3E%3C/clipPath%3E%3C/defs%3E%3C/svg%3E%0A");
  --formField__selectIcon:     url("data:image/svg+xml,%3Csvg width='24' height='25' viewBox='0 0 24 25' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M10.9407 19.5595C11.5267 20.1454 12.4782 20.1454 13.0642 19.5595L22.0642 10.5595C22.6501 9.97354 22.6501 9.02197 22.0642 8.43604C21.4782 7.8501 20.5267 7.8501 19.9407 8.43604L12.0001 16.3767L4.05947 8.44072C3.47354 7.85478 2.52197 7.85478 1.93604 8.44072C1.3501 9.02666 1.3501 9.97822 1.93604 10.5642L10.936 19.5642L10.9407 19.5595Z' fill='%2309152B'/%3E%3C/svg%3E%0A");
  --formField__dragIcon:       url("data:image/svg+xml,%3Csvg width='11' height='12' viewBox='0 0 22 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cline y1='-1' x2='29.5206' y2='-1' transform='matrix(-0.666795 0.745241 -0.806754 -0.590888 19.6843 0)' stroke='%23303F59' stroke-width='2'/%3E%3Cpath d='M21.0005 9.99756L10.5005 21.9976' stroke='%23303F59' stroke-width='2'/%3E%3C/svg%3E%0A");

  /* --- Button: Primary --- */
  --button--primary__font:                  "Source Sans 3", sans-serif;
  --button--primary__fontSize:              1rem;
  --button--primary__fontWeight:            600;
  --button--primary__fontStyle:             normal;
  --button--primary__textColor:             #133844;
  --button--primary__backgroundColor:       #3BE0D0;
  --button--primary__formBorderRadius:      8px;
  --button--primary__borderThickness:       1px;
  --button--primary__borderColor:           #3BE0D0;
  --button--primary__hover--textColor:      #133844;
  --button--primary__hover--backgroundColor: #B8F4EA;
  --button--primary__hover--borderColor:    #036268;
  --button--primary__hover--borderThickness: 1px;

  /* --- HubSpot Forms (hsf) Bridge Variables --- */

  /* Global */
  --hsf-global__font-family:                var(--formLabel__font);
  --hsf-global__font-size:                  var(--formLabel__fontSize);
  --hsf-global__color:                      var(--formLabel__textColor);
  --hsf-global-error__color:                var(--formRequired__color);

  /* Form background */
  --hsf-background__background-color:       var(--form__backgroundColor);
  --hsf-background__padding:                var(--form__padding);
  --hsf-background__border-style:           solid;
  --hsf-background__border-color:           var(--form__borderColor);
  --hsf-background__border-radius:          var(--form__borderRadius);
  --hsf-background__border-width:           var(--form__borderThickness);

  /* Content */
  --hsf-heading__font-family:               var(--hsf-global__font-family);
  --hsf-heading__color:                     var(--hsf-global__color);
  --hsf-heading__text-shadow:               none;
  --hsf-richtext__font-family:              var(--hsf-global__font-family);
  --hsf-richtext__font-size:                var(--hsf-global__font-size);
  --hsf-richtext__color:                    var(--hsf-global__color);

  /* Labels */
  --hsf-field-label__font-family:           var(--hsf-global__font-family);
  --hsf-field-label__font-size:             var(--hsf-global__font-size);
  --hsf-field-label__color:                 var(--hsf-global__color);
  --hsf-field-label-requiredindicator__color: var(--hsf-global-error__color);
  --hsf-module__vertical-spacing:           var(--formLabel__marginBottom);

  /* Help text */
  --hsf-field-description__font-family:     var(--hsf-global__font-family);
  --hsf-field-description__color:           var(--formHelpText__textColor);

  /* Errors */
  --hsf-erroralert__font-family:            var(--formLabel__font);
  --hsf-erroralert__color:                  var(--hsf-global-error__color);

  /* Field footer */
  --hsf-field-footer__font-family:          var(--hsf-field-description__font-family);
  --hsf-field-footer__color:                var(--hsf-field-description__color);

  /* Input fields */
  --hsf-field-input__font-family:           var(--hsf-global__font-family);
  --hsf-field-input__background-color:      var(--formField__backgroundColor);
  --hsf-field-input__placeholder-color:     var(--formFieldPlaceholder__textColor);
  --hsf-field-input__border-color:          var(--formField__borderColor);
  --hsf-field-input__border-width:          var(--formField__borderThickness);
  --hsf-field-input__border-style:          solid;
  --hsf-field-input__border-radius:         var(--formField__borderRadius);
  --hsf-field-input__padding:               var(--formFieldInput__paddingBlock) var(--formFieldInput__paddingInline);
  --hsf-field-input__color:                 var(--formFieldInput__textColor);
  --hsf-row__vertical-spacing:              var(--formField__marginBottom);
  --hsf-row__horizontal-spacing:            var(--formFieldInput__paddingInline);

  /* Textarea */
  --hsf-field-textarea__font-family:        var(--hsf-field-input__font-family);
  --hsf-field-textarea__color:              var(--hsf-field-input__color);
  --hsf-field-textarea__background-color:   var(--hsf-field-input__background-color);
  --hsf-field-textarea__border-color:       var(--hsf-field-input__border-color);
  --hsf-field-textarea__border-style:       var(--hsf-field-input__border-style);
  --hsf-field-textarea__border-radius:      var(--formFieldTextArea__borderRadius);
  --hsf-field-textarea__padding:            var(--hsf-field-input__padding);

  /* Checkbox */
  --hsf-field-checkbox__padding:            calc(var(--formFieldCheckboxRadio__size) / 2);
  --hsf-field-checkbox__background-color:   #fff;
  --hsf-field-checkbox__color:              var(--formFieldCheckboxRadio__fillColor);
  --hsf-field-checkbox__border-color:       var(--hsf-field-input__border-color);
  --hsf-field-checkbox__border-width:       1px 1px 1px 1px;
  --hsf-field-checkbox__border-style:       var(--hsf-field-input__border-style);

  /* Radio */
  --hsf-field-radio__padding:               calc(var(--formFieldCheckboxRadio__size) / 2);
  --hsf-field-radio__background-color:      #fff;
  --hsf-field-radio__color:                 var(--formFieldCheckboxRadio__fillColor);
  --hsf-field-radio__border-color:          var(--hsf-field-input__border-color);
  --hsf-field-radio__border-width:          1px 1px 1px 1px;
  --hsf-field-radio__border-style:          var(--hsf-field-input__border-style);

  /* Submit button */
  --hsf-button__width:                      100%;
  --hsf-button__font-family:                var(--button--primary__font);
  --hsf-button__font-size:                  var(--button--primary__fontSize);
  --hsf-button__font-weight:                var(--button--primary__fontWeight);
  --hsf-button__color:                      var(--button--primary__textColor);
  --hsf-button__background-color:           var(--button--primary__backgroundColor);
  --hsf-button__background-image:           none;
  --hsf-button__border-radius:              var(--button--primary__formBorderRadius);
  --hsf-button__border-width:               var(--button--primary__borderThickness);
  --hsf-button__border-style:               solid;
  --hsf-button__border-color:               var(--button--primary__borderColor);
  --hsf-button__padding:                    var(--button--large__padding);
  --hsf-button__box-shadow:                 none;
  --hsf-button--hover__color:               var(--button--primary__hover--textColor);
  --hsf-button--hover__background-color:    var(--button--primary__hover--backgroundColor);
  --hsf-button--hover__border-color:        var(--button--primary__hover--borderColor);
  --hsf-button--focus__color:               var(--button--primary__hover--textColor);
  --hsf-button--focus__background-color:    var(--button--primary__hover--backgroundColor);
  --hsf-button--focus__border-color:        var(--button--primary__hover--borderColor);
}

/* Mobile overrides */
@media (max-width: 600px) {
  :root {
    --form__padding: var(--formSpace--24);
  }

  .hsfc-PhoneInput__FlagAndCaret {
    --hsf-field-input__padding: var(--formSpace--20) var(--formSpace--16);
  }
}


/* ----------------------------------------------------------------------------
   2. Normalize — Form Elements
   ---------------------------------------------------------------------------- */

/**
 * 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. */
button,
select {
  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 padding so developers are not caught out when zeroing fieldset elements. */
legend {
  padding: 0;
}

/* Add the correct vertical alignment in Chrome, Firefox, and Opera. */
progress {
  vertical-align: baseline;
}

/* Correct the cursor style of increment/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 */
}


/* ----------------------------------------------------------------------------
   3. Form Container
   ---------------------------------------------------------------------------- */

.hs-form,
.hs-elevate-system-form form,
.hs-elevate-system-form--subscription-preferences form .email-prefs {
  padding: var(--form__padding);
  border-color: var(--form__borderColor);
  border-radius: var(--form__borderRadius);
  border-style: solid;
  border-width: var(--form__borderThickness);
  background: var(--form__backgroundColor);
}


/* ----------------------------------------------------------------------------
   4. Labels
   ---------------------------------------------------------------------------- */

:is(.hs-form, .hs-elevate-system-form) label,
.hs-elevate-system-form--subscription-preferences .fakelabel {
  display: block;
  color: var(--formLabel__textColor);
  font-family: var(--formLabel__font);
  font-size: var(--formLabel__fontSize);
  font-weight: var(--formLabel__fontWeight);
  margin-bottom: var(--formLabel__marginBottom);
}


/* ----------------------------------------------------------------------------
   5. Form Fields — Base
   ---------------------------------------------------------------------------- */

.hs-form .hs-form-field {
  margin-bottom: var(--formField__marginBottom__mobile);
}

@media(min-width: 768px){
  .hs-form .hs-form-field {
    margin-bottom: var(--formField__marginBottom);
  }
}
:is(.hs-form, .hs-elevate-system-form) input[type='text'],
:is(.hs-form, .hs-elevate-system-form) input[type='email'],
:is(.hs-form, .hs-elevate-system-form) input[type='password'],
:is(.hs-form, .hs-elevate-system-form) input[type='tel'],
:is(.hs-form, .hs-elevate-system-form) input[type='number'],
:is(.hs-form, .hs-elevate-system-form) input[type='search'],
:is(.hs-form, .hs-elevate-system-form) select,
:is(.hs-form, .hs-elevate-system-form) textarea {
  width: 100% !important;
  background-color: var(--formField__backgroundColor);
  border-radius: var(--formField__borderRadius);
  border-top: var(--formField__borderTop);
  border-right: var(--formField__borderRight);
  border-bottom: var(--formField__borderBottom);
  border-left: var(--formField__borderLeft);
  color: var(--formFieldInput__textColor);
  padding-block: var(--formFieldInput__paddingBlock);
  padding-inline: var(--formFieldInput__paddingInline);
}

.hs-form-field.hs-fieldtype-file .hs-input,
.hs-form fieldset {
  max-width: 100% !important;
}


/* ----------------------------------------------------------------------------
   6. Form Fields — Textarea
   ---------------------------------------------------------------------------- */

.hs-form textarea {
  position: relative;
  height: var(--formFieldTextArea__height);
  border-radius: var(--formFieldTextArea__borderRadius);
}

.hs-form textarea::-webkit-resizer {
  display: none;
}

.hs-form .hs_multi_line_field .input {
  position: relative;
}

.hs-form .hs_multi_line_field .input::after {
  position: absolute;
  right: var(--formSpace--8);
  bottom: var(--formSpace--8);
  content: var(--formField__dragIcon);
  pointer-events: none;
}


/* ----------------------------------------------------------------------------
   7. Form Fields — Select
   ---------------------------------------------------------------------------- */

.hs-form .hs-fieldtype-select .input {
  position: relative;
}

.hs-form select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

.hs-form .hs-fieldtype-select .input::after {
  position: absolute;
  top: 50%;
  right: var(--formFieldInput__paddingInline);
  content: var(--formField__selectIcon);
  pointer-events: none;
  transform: translateY(-50%);
}


/* ----------------------------------------------------------------------------
   8. Form Fields — Datepicker
   ---------------------------------------------------------------------------- */

.hs-form .hs-dateinput {
  position: relative;
}

.hs-form .hs-dateinput::before {
  position: absolute;
  top: 50%;
  right: var(--formFieldInput__paddingInline);
  content: var(--formField__datepickerIcon);
  pointer-events: none;
  transform: translateY(-50%);
}


/* ----------------------------------------------------------------------------
   9. Form Fields — International Phone
   ---------------------------------------------------------------------------- */

.hs-input.hs-fieldtype-intl-phone {
  display: flex;
  width: 100% !important;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-start;
  gap: var(--formFieldIntlPhone__gap);
}

.hs-input.hs-fieldtype-intl-phone > input {
  flex: 1 0 calc(70% - var(--formFieldIntlPhone__gap)) !important;
}

.hs-input.hs-fieldtype-intl-phone > select {
  flex: 1 0 30% !important;
}

@media (max-width: 600px) {
  .hs-input.hs-fieldtype-intl-phone {
    flex-direction: column;
  }

  .hs-input.hs-fieldtype-intl-phone > select,
  .hs-input.hs-fieldtype-intl-phone > input {
    min-width: 100%;
    flex: 1 1 100%;
  }

  .hs-input.hs-fieldtype-intl-phone > select {
    padding-inline: var(--formSpace--16);
  }
}


/* ----------------------------------------------------------------------------
   10. Form Fields — Placeholder
   ---------------------------------------------------------------------------- */

::-moz-placeholder {
  color: var(--formFieldPlaceholder__textColor);
}

::placeholder {
  color: var(--formFieldPlaceholder__textColor);
}


/* ----------------------------------------------------------------------------
   11. Form Fields — Checkbox & Radio
   ---------------------------------------------------------------------------- */

.hs-form .inputs-list {
  padding: 0;
  margin: 0;
  list-style: none;
}

.hs-form .inputs-list li {
  display: block;
  margin-bottom: var(--formFieldCheckboxRadio__itemSpacing);
}

.hs-form .inputs-list li:last-of-type {
  margin-bottom: 0;
}

.hs-form .inputs-list :is(input, span) {
  vertical-align: middle;
}

:is(.hs-form, .hs-elevate-system-form) input[type='checkbox'],
:is(.hs-form, .hs-elevate-system-form) input[type='radio'] {
  height: var(--formFieldCheckboxRadio__size);
  width: var(--formFieldCheckboxRadio__size) !important;
  accent-color: var(--formFieldCheckboxRadio__fillColor);
  cursor: pointer;
  margin-inline-end: var(--formFieldCheckboxRadio__marginInlineEnd);
}


/* ----------------------------------------------------------------------------
   12. Help Text & Legend
   ---------------------------------------------------------------------------- */

.hs-form legend {
  color: var(--formHelpText__textColor);
  margin-bottom: var(--formSpace--8);
}


/* ----------------------------------------------------------------------------
   13. Rich Text
   ---------------------------------------------------------------------------- */

.hs-form .hs-richtext {
  color: var(--formLabel__textColor);
}

.hs-form .hs-richtext img {
  height: auto;
  max-width: 100% !important;
}


/* ----------------------------------------------------------------------------
   14. Validation & Error States
   ---------------------------------------------------------------------------- */

.hs-form .hs-input.error {
  border-color: var(--formRequired__color);
}

.hs-form .hs-error-msg,
.hs-form .hs-error-msgs {
  color: var(--formRequired__color);
  margin-top: var(--formSpace--4);
  font-size: smaller;
}


/* ----------------------------------------------------------------------------
   15. Submit Button
   ---------------------------------------------------------------------------- */

:is(.hs-form, .hs-elevate-system-form) .hs-button,
:is(.hs-form, .hs-elevate-system-form) input[type='submit'] {
  display: inline-block;
  width: 100%;
  background-color: var(--button--primary__backgroundColor);
  border-color: var(--button--primary__borderColor);
  border-radius: var(--button--primary__formBorderRadius);
  border-style: solid;
  border-width: var(--button--primary__borderThickness);
  color: var(--button--primary__textColor);
  cursor: pointer;
  font-family: var(--button--primary__font);
  font-size: var(--button--primary__fontSize);
  font-style: var(--button--primary__fontStyle);
  font-weight: var(--button--primary__fontWeight);
  min-height: var(--button--large__minHeight);
  padding: var(--button--large__padding);
  text-align: center;
  text-decoration: none;
  transition: all 0.15s linear;
  white-space: normal !important;
}

:is(.hs-form, .hs-elevate-system-form) .hs-button:hover,
:is(.hs-form, .hs-elevate-system-form) .hs-button:focus,
:is(.hs-form, .hs-elevate-system-form) input[type='submit']:hover,
:is(.hs-form, .hs-elevate-system-form) input[type='submit']:focus {
  background-color: var(--button--primary__hover--backgroundColor);
  border-color: var(--button--primary__hover--borderColor);
  border-width: var(--button--primary__hover--borderThickness);
  color: var(--button--primary__hover--textColor);
  text-decoration: none;
}


/* ----------------------------------------------------------------------------
   16. Captcha
   ---------------------------------------------------------------------------- */

.grecaptcha-badge {
  margin-block: 0;
  margin-inline: auto;
}
.hidden-module {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    width: 100%;
    background: rgb(0 189 182 / 40%);
    color: #133844;
    font-size: 18px;
    font-weight: bold;
    line-height: 1.4;
    padding: 20px;
}

.hidden-module:before {
    content: "ⓘ In-editor notification";    
    display: block;
    position: relative;
    color: inherit;
    font-size: 13px;
    font-weight: 400; 
    line-height: 2;
    top: -100%
}

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

/* Section background and spacing utilities */

:root {
  --section-bg-accent-one: #ffffff;
  --section-bg-accent-two: #d7fdf5;
  --section-bg-accent-three: #133844;
  --section-bg-accent-four: #00BDB6;
  --section-bg-accent-five: #f9dc4e;

  --section-space-0: 0;
  --section-space-30: 30px;
  --section-space-40: 40px;
  --section-space-48: 48px;
  --section-space-50: 50px;
  --section-space-56: 56px;
  --section-space-60: 60px;
  --section-space-64: 64px;
  --section-space-70: 70px;
  --section-space-72: 72px;
  --section-space-80: 80px;
  --section-space-90: 90px;
  --section-space-100: 100px;

  --section-space-mobile-60: var(--section-space-40);
  --section-space-mobile-70: var(--section-space-48);
  --section-space-mobile-80: var(--section-space-56);
  --section-space-mobile-90: var(--section-space-64);
  --section-space-mobile-100: var(--section-space-72);
}

.bg-accent-one {
  background-color: var(--section-bg-accent-one);
}

.bg-accent-two {
  background-color: var(--section-bg-accent-two);
}

.bg-accent-three {
  background-color: var(--section-bg-accent-three);
}

.bg-accent-four {
  background-color: var(--section-bg-accent-four);
}

.bg-accent-five {
  background-color: var(--section-bg-accent-five);
}

.pt-0 {
  padding-top: var(--section-space-0);
}

.pt-30 {
  padding-top: var(--section-space-30);
}

.pt-40 {
  padding-top: var(--section-space-40);
}

.pt-50 {
  padding-top: var(--section-space-50);
}

.pt-60 {
  padding-top: var(--section-space-60);
}

.pt-70 {
  padding-top: var(--section-space-70);
}

.pt-80 {
  padding-top: var(--section-space-80);
}

.pt-90 {
  padding-top: var(--section-space-90);
}

.pt-100 {
  padding-top: var(--section-space-100);
}

.pb-0 {
  padding-bottom: var(--section-space-0);
}

.pb-30 {
  padding-bottom: var(--section-space-30);
}

.pb-40 {
  padding-bottom: var(--section-space-40);
}

.pb-50 {
  padding-bottom: var(--section-space-50);
}

.pb-60 {
  padding-bottom: var(--section-space-60);
}

.pb-70 {
  padding-bottom: var(--section-space-70);
}

.pb-80 {
  padding-bottom: var(--section-space-80);
}

.pb-90 {
  padding-bottom: var(--section-space-90);
}

.pb-100 {
  padding-bottom: var(--section-space-100);
}

@media (max-width: 767px) {
  .pt-60 {
    padding-top: var(--section-space-mobile-60);
  }

  .pt-70 {
    padding-top: var(--section-space-mobile-70);
  }

  .pt-80 {
    padding-top: var(--section-space-mobile-80);
  }

  .pt-90 {
    padding-top: var(--section-space-mobile-90);
  }

  .pt-100 {
    padding-top: var(--section-space-mobile-100);
  }

  .pb-60 {
    padding-bottom: var(--section-space-mobile-60);
  }

  .pb-70 {
    padding-bottom: var(--section-space-mobile-70);
  }

  .pb-80 {
    padding-bottom: var(--section-space-mobile-80);
  }

  .pb-90 {
    padding-bottom: var(--section-space-mobile-90);
  }

  .pb-100 {
    padding-bottom: var(--section-space-mobile-100);
  }
}
/* =========================================================
   Richtext Theming by Accent Background
   Supports nested / multi-layer themes
   ========================================================= */


/* =========================================================
   Base Accent Colour Definitions
   ========================================================= */

:root {

  /* ---------------------------------
     Accent One — White
     --------------------------------- */
  --richtext-accent-one-text: #09152b;
  --richtext-accent-one-link: #00bdb6;
  --richtext-accent-one-heading: #09152b;


  /* ---------------------------------
     Accent Two — Soft Teal
     --------------------------------- */
  --richtext-accent-two-text: #09152b;
  --richtext-accent-two-link: #00bdb6;
  --richtext-accent-two-heading: #09152b;


  /* ---------------------------------
     Accent Three — Deep Teal
     --------------------------------- */
  --richtext-accent-three-text: #ffffff;
  --richtext-accent-three-link: #3be0d0;
  --richtext-accent-three-heading: #ffffff;


  /* ---------------------------------
     Accent Four — Bright Teal
     --------------------------------- */
  --richtext-accent-four-text: #09152b;
  --richtext-accent-four-link: #133844;
  --richtext-accent-four-heading: #09152b;


  /* ---------------------------------
     Accent Five — Yellow
     --------------------------------- */
  --richtext-accent-five-text: #09152b;
  --richtext-accent-five-link: #0C4F56;
  --richtext-accent-five-heading: #09152b;
}


/* =========================================================
   Accent Theme Mapping
   Each background establishes a new theme.
   
   Because CSS variables inherit, nested accent backgrounds
   automatically override the theme of their parent.
   ========================================================= */


/* ---------------------------------
   Accent One
   --------------------------------- */

.bg-accent-one {
  --richtext-text: var(--richtext-accent-one-text);
  --richtext-link: var(--richtext-accent-one-link);
  --richtext-heading: var(--richtext-accent-one-heading);
}


/* ---------------------------------
   Accent Two
   --------------------------------- */

.bg-accent-two {
  --richtext-text: var(--richtext-accent-two-text);
  --richtext-link: var(--richtext-accent-two-link);
  --richtext-heading: var(--richtext-accent-two-heading);
}


/* ---------------------------------
   Accent Three
   --------------------------------- */

.bg-accent-three {
  --richtext-text: var(--richtext-accent-three-text);
  --richtext-link: var(--richtext-accent-three-link);
  --richtext-heading: var(--richtext-accent-three-heading);
}


/* ---------------------------------
   Accent Four
   --------------------------------- */

.bg-accent-four {
  --richtext-text: var(--richtext-accent-four-text);
  --richtext-link: var(--richtext-accent-four-link);
  --richtext-heading: var(--richtext-accent-four-heading);
}


/* ---------------------------------
   Accent Five
   --------------------------------- */

.bg-accent-five {
  --richtext-text: var(--richtext-accent-five-text);
  --richtext-link: var(--richtext-accent-five-link);
  --richtext-heading: var(--richtext-accent-five-heading);
}


/* =========================================================
   Richtext
   ========================================================= */


/* ---------------------------------
   Body Text
   --------------------------------- */

.richtext {
  color: var(--richtext-text);
}


/* ---------------------------------
   Links
   --------------------------------- */

.richtext a:not(.button) {
  color: var(--richtext-link);
}


/* ---------------------------------
   Headings
   --------------------------------- */

.richtext h1,
.richtext h2,
.richtext h3,
.richtext h4,
.richtext h5,
.richtext h6 {
  color: var(--richtext-heading);
}
/* Global link styling */

a {
  text-decoration: underline;
}
/* 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;
}

.container {
  padding: 0 20px;
  margin: 0 auto;
  width: 100%;
  max-width: 1058px;
}

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

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

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

@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;
  }
}