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

/* Mobile layout */

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

.row-fluid [class*='span'] {
  min-height: 1px;
  width: 100%;
}

/* Desktop layout */

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

  .row-fluid .span11 {
    width: calc(91.66% - var(--column-gap) * 0.0833);
  }

  .row-fluid .span10 {
    width: calc(83.33% - var(--column-gap) * 0.166);
  }

  .row-fluid .span9 {
    width: calc(75% - (var(--column-gap) * 0.25));
  }

  .row-fluid .span8 {
    width: calc(66.66% - var(--column-gap) * 0.333);
  }

  .row-fluid .span7 {
    width: calc(58.33% - var(--column-gap) * 0.4166);
  }

  .row-fluid .span6 {
    width: calc(50% - var(--column-gap) * 0.5);
  }

  .row-fluid .span5 {
    width: calc(41.66% - var(--column-gap) * 0.5833);
  }

  .row-fluid .span4 {
    width: calc(33.33% - var(--column-gap) * 0.6668);
  }

  .row-fluid .span3 {
    width: calc(25% - var(--column-gap) * 0.75);
  }

  .row-fluid .span2 {
    width: calc(16.66% - var(--column-gap) * 0.8333);
  }

  .row-fluid .span1 {
    width: calc(8.33% - var(--column-gap) * 0.9166);
  }
}
.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.)
*/

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

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 22px;
}

/* Anchors */

a {
  cursor: pointer;
}

/* Headings */

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0 0 1em;
}

/* Lists */

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

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 {
  position: relative;
  padding: 40px 0;
  margin: 100px auto 60px auto;
  text-align: center;
  font-weight: normal;
  font-size: 24px;
  line-height: 38px;
  letter-spacing: 0.1px;
  color: #6B6B6B;
  max-width: 570px;
  float: none;
}
blockquote:before { content: ''; background: url('https://20021974.fs1.hubspotusercontent-eu1.net/hubfs/20021974/Images/Quote.svg'); top: 0; left: 50%; width: 18px; height: 18px; position: absolute; transform: translateX(-50%); }
blockquote * { margin: 0; }
blockquote p { font-weight: normal; font-size: 24px; line-height: 38px; letter-spacing: 0.1px; color: #6B6B6B; }



@media (max-width: 767px) {
blockquote {
  padding: 30px 0;
  margin: 50px auto 20px auto;
  font-size: 20px;
  line-height: 32px;
  letter-spacing: 0.3px;
  width: 570px;
  max-width: 100%;
}
blockquote p { 
  font-size: 20px;
  line-height: 32px;
  letter-spacing: 0.3px;
    }
}

/* Horizontal rules */

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

/* Image alt text */

img {
  font-size: 0.583rem;
  word-break: normal;
}
button,
.button {
  cursor: pointer;
  display: inline-block;
  text-align: center;
  transition: all 0.15s linear;
  white-space: normal;
}

button:disabled,
.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;
}

.cta-primary,
form input[type=submit],
form .hs-button {
  font-style: normal;
  font-weight: 700;
  font-size: 14px;
  line-height: 18px;
  letter-spacing: 0.5px;
  text-align: center;
  border: 1px solid #BC3163;
  color: #FFF;
  padding: 12px 18px;
  background: #BC3163;;
  transition: all 0.3s ease;
  text-decoration: none;
  outline: none;
  display: inline-block;
  border-radius: 0;
}

.cta-primary.red { color: #BC3163; background: #FFF; border-color: #FFF; }
.cta-primary.purple { color: #5A3795; background: #FFF; border-color: #FFF; }

.cta-primary.red:hover, .cta-primary.purple:hover { background: rgba(255,255,255,0.9); border-color: rgba(255,255,255,0.9);  }
.cta-primary.red:hover { color: #BC3163; }
.cta-primary.purple:hover { color: #5A3795; }
  
.cta-primary:hover,
form input[type=submit]:hover,
form input[type=submit]:focus,
form .hs-button:hover,
form .hs-button:focus,
form input[type=submit]:active,
form .hs-button:active {
  background: #5A3795;
  border: 1px solid #5A3795;
  transition: all 0.3s ease;
  color: #FFF;
}
  
.cta-secondary {
  font-style: normal;
  font-weight: 700;
  font-size: 14px;
  line-height: 18px;
  text-align: center;
  color: #000;
  padding: 12px 18px;
  letter-spacing: 0.5px;
  background: none;
  border: 1px solid #000;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
  border-radius: 0;
}
.cta-secondary.red {
  color: #BC3163;
  background: rgba(255,255,255,0.9);
}
.cta-secondary.purple {
  color: #5A3795;
  background: rgba(255,255,255,0.9);
}
.cta-secondary.white {
  color: #FFF;
  border-color: #FFF;
}

.cta-secondary.red:hover, .cta-secondary.purple:hover, .cta-secondary.white:hover { border: 1px solid #FFF; background: rgba(255,255,255,0.2); color: #FFF; }
  

.cta-secondary:hover {
  background: #5A3795;
  border: 1px solid #5A3795;
  transition: all 0.3s ease;
  color: #FFF;
}

.tetriary-link { text-decoration: none; color: #000; transition: all .5s ease; font-weight: bold; }
.tetriary-link svg { margin-left: 10px; }
.tetriary-link:hover { color: #000; } 
.tetriary-link:hover svg { transform: translateX(2px); }
.tetriary-link:hover svg g { fill: #5A3795; }
/* Fields */

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

/* Labels */

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

/* Help text */

form legend {
  font-size: 0.875rem;
}

/* Inputs */

form input[type=text],
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: 14px;
  padding: 14px;
  width: 100%;
}


form input[type=text]:focus-visible,
form input[type=email]:focus-visible,
form input[type=password]:focus-visible,
form input[type=tel]:focus-visible,
form input[type=number]:focus-visible,
form input[type=file]:focus-visible,
form select:focus-visible,
form textarea:focus-visible {
  outline: none !important;
}

form textarea {
  resize: vertical;
  min-height: 100px;
}

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

form fieldset.form-columns-1 .hs-input { width: 100% !important; }

/* Inputs - checkbox/radio */

form .inputs-list {
  margin: 0;
  padding: 0;
  list-style: none;
  font-weight: 500;
  font-size: 14px;
  line-height: 22px;
}
form .inputs-list p {
  font-weight: 500;
  font-size: 14px;
  line-height: 22px;
}

form .inputs-list > li {
  display: block;
}

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

form .hs-fieldtype-checkbox ul li { width: 50%; margin: 0 !important; }
form .hs-fieldtype-checkbox ul li label { padding-left: 30px !important; }
@media (max-width: 699px) {
  form .hs-fieldtype-checkbox ul li { width: 100%;  }
}

.legal-consent-container .hs-form-booleancheckbox-display input { margin-top: 3px; }

ul.hs-error-msgs { margin: 0 !important; }

ul.hs-error-msgs li, ul.hs-error-msgs li label { margin-bottom: 0 !important; }

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

input[type="radio"] {
  display: grid;
  place-content: center;
  border-radius: 100px;
  background: none;
  appearance: none;
  border: 2px solid #000;
  background: #FFF;
  padding: 5px;
  width: 18px;
  height: 18px;
}

input[type="radio"]::before {
  content: "";
  width: 8px;
  height: 8px;
  transform: scale(0);
  transition: 120ms transform ease-in-out;
  box-shadow: inset 1em 1em #BC3163;
  border-radius: 100px;
}

input[type="radio"]:checked::before {
  transform: scale(1);
}



form ul.inputs-list:not(.hs-error-msgs) label {
  position: relative;
  width: 100%;
  float: left;
  display: inline-block;
  top: 0;
  left: 0; 
  padding-left: 40px;
}

.legal-consent-container ul.inputs-list label { padding-left: 0 !important; }

form ul.inputs-list {
  margin: 0 0 20px 0; 
  padding: 0;
  float: left;
  width: 100%;
}


form .legal-consent-container ul.inputs-list { margin: 0; }
form .hs-form input[type="checkbox"] {
    width: auto;
  margin: 0 10px 0 0;
  display: inline;
  cursor: pointer;
  height: 18px;
}

form .legal-consent-container a { color: #000; }
form .legal-consent-container a:hover { color: #5a3795; }

form ul.inputs-list li input { display: none !important; }
form ul.inputs-list li { position: relative; margin-bottom: 15px; float: left; }
form ul.inputs-list li input + span:before {
    content: '';
    border-radius: 0;
    display: inline-block;
    vertical-align: middle;
    background: #FFF;
    width: 18px;
    height: 18px;
    padding: 3px;
    text-align: center;
   border: 1px solid #bebebe;
   float: left;
   cursor: pointer;
   margin-top: -1px;
   margin-left: -30px;
}

ul.inputs-list li input:checked + span:before {
      background: #FFF;
}
.legal-consent-container ul.inputs-list li { width: 100%; }
.legal-consent-container ul.inputs-list li span { color: #000; }

ul.inputs-list li label span {
    text-indent: 0px;
    margin-left: -40px;
    padding-left: 40px;
    color: #14181e; 
}
.legal-consent-container ul.inputs-list li label span {
    text-indent: -30px;
    margin-left: 0px;
    padding-left: 0px;
}
.legal-consent-container ul.inputs-list li label span, .legal-consent-container ul.inputs-list li label span p { font-size: 12px; line-height: 16px; letter-spacing: 0.2px; }

form ul.inputs-list li input:checked + span:after {
    border: solid #BC3163;
    border-width: 0 2px 2px 0;
    content: "";
    height: 11px;
    left: 5.5px;
    padding: 1px;
    position: absolute;
    text-align: center;
    top: 1px;
    transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    width: 7px;
}



@media (min-width: 768px) {
  form ul.inputs-list li input + span:before {
    width: 18px;
    height: 18px;
    padding: 1px;
   margin-top: -1px;
   margin-left: -30px;
}
  form .hs-fieldtype-checkbox ul.inputs-list li input+span:before { margin-top: 2px; }
  form .hs-fieldtype-checkbox ul.inputs-list li input:checked+span:after { top: 3px; }

ul.inputs-list li label span {
    margin-left: -30px;
    padding-left: 30px;
}

}


/* 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: 14px;
  line-height: 22px;
  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: 30px!important;
}

/* Validation */

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

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

.hs-error-msg {
  color: #BC3163 !important;
  margin-top: 0.35rem;
}

/* Submit button */

form input[type=submit],
form .hs-button {
  cursor: pointer;
  display: inline-block;
  text-align: center;
  transition: all 0.15s linear;
  white-space: normal;
}

/* clears the ‘X’ from Internet Explorer */
input[type=search]::-ms-clear { display: none; width : 0; height: 0; }
input[type=search]::-ms-reveal { display: none; width : 0; height: 0; }
/* clears the ‘X’ from Chrome */
input[type="search"]::-webkit-search-decoration,
input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-results-button,
input[type="search"]::-webkit-search-results-decoration { display: none; }

/* Captcha */

.grecaptcha-badge {
  margin: 0 auto;
}

@media (max-width: 400px), (min-device-width: 320px) and (max-device-width: 480px) {
form .form-columns-2 .hs-form-field .hs-input, form .form-columns-3 .hs-form-field .hs-input {
    width: 100% !important;
}
}
/* 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
*/

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


/* Navigation */

#nav-toggle {
  display: none;
}

/* Mobile toggles */

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

  .header__navigation.open,
  .header__search.open,
  .header__language-switcher.open {
    display: block;
    left: 0;
    min-height: calc(100vh - 107px);
    height: auto;
    position: fixed;
    right: 0;
    top: 107px;
    z-index: 2;
    bottom: 0;
  }

  .header__navigation--toggle,
  .header__search--toggle,
  .header__language-switcher--toggle,
  .header__close--toggle {
    cursor: pointer;
    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;

  }

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

   .mobile-trigger{
      cursor: pointer;
      position: relative;
      width: auto;
      height: auto;
      font-size: 16px;
      font-weight: normal;
      text-align: left;
      text-transform: uppercase;
      color: #000;
      float: right;
      display: inline-block !important;
      border-radius: 4px;
   }




   /* Toggle Button Icon
   ========================================================================== */

   .mobile-trigger i{
      display: inline;
      position: relative;
     transition: all .5s ease-in-out;
   }
   .mobile-trigger i:before, .mobile-trigger i:after{
      position: absolute;
      content: '';
   }
  .mobile-trigger i:before {
    margin-top: -6px;
  }
  .mobile-trigger i:after{
    margin-top: 6px;
    transition: all .5s ease-in-out;
  }
   .mobile-trigger i, .mobile-trigger i:before, .mobile-trigger i:after{
      width: 18px; /* Icon line width */
      height: 2px; /* Icon line height */
      -webkit-border-radius: 1px;
      -moz-border-radius: 1px;
      border-radius: 1px;
      background-color: #000; /* Icon color */
      display: inline-block;
   }
  
  .header__navigation--toggle.open .mobile-trigger i {
    transform: rotate(45deg);
  }
  
  .header__navigation--toggle.open .mobile-trigger i:before {
    opacity: 0;
    visibility: hidden;
  }
  .header__navigation--toggle.open .mobile-trigger i:after {
    transform: rotate(-90deg) translate(6px,0px);
  }
  
  .header__navigation--toggle {
    position: relative;
    height: 30px;
    width: 16px;
  }

  .header__search--toggle {
    height: 25px;
    width: 25px;
  }


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