/* 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,
.dnd-section > .row-fluid {
  margin: 0 auto;
}

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

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

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

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

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

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

/* Paragraphs */

p {
  font-size: 1rem;
  line-height: 1.8em;
  margin: 0 0 1.4rem;
}

/* Anchors */

a {
  cursor: pointer;
  text-decoration: none;
}

/* Headings */

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

/* Lists */

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

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

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

/* Code blocks */

pre {
  overflow: auto;
}

code {
  vertical-align: bottom;
}

/* Blockquotes */

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

/* Horizontal rules */

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

/* Image alt text */

img {
  font-size: 0.583rem;
  word-break: normal;
}
button:not(.header--toggle):not(.header__close--toggle):not(.no-button),
.button,
.hs-button {
  cursor: pointer;
  display: inline-block;
  text-align: center;
  transition: all 0.15s linear;
  white-space: normal;
}

button:not(.header--toggle):not(.header__close--toggle):not(.no-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;
}
/* Fields */

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

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

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

/* 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: #1D1D1D;
    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
*/

/* Header DND sections */

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

/* Header container */

.header__container {
  align-items: center;
  display: flex;
  gap: 1.5rem;
  justify-content: space-between;
  padding: 10px 0;
}

.header__actions {
  align-items: center;
  display: flex;
  gap: 1.5rem;
  margin-left: auto;
}

.header__cta .button-wrapper {
  margin: 0;
}

.header__navigation--toggle,
.header__close--toggle {
  display: none;
}

/* Navigation skipper */

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

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

/* Logo */

.header__logo {
  align-items: center;
  display: flex;
  flex-shrink: 0;
  width: fit-content;
}

.header__logo-link {
  display: inline-block;
  line-height: 0;
}

.header__logo img {
  display: block;
  height: 40px;
  width: auto;
}

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

/* Search bar */

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



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

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



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



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

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


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

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

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

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

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

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

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

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

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

/* Language switcher */

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

/* Navigation */

#nav-toggle {
  display: none;
}

/* Mobile toggles */

@media (max-width: 767px) {
  .header__container {
    position: relative;
  }

  .header__actions {
    background-color: rgba(255, 255, 255, 0.8);
    -webkit-backdrop-filter: blur(16px);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(58, 80, 107, 0.2);
    display: none;
    flex-direction: column;
    gap: 1.25rem;
    left: 0;
    padding: 1.5rem 1rem 2rem;
    position: absolute;
    right: 0;
    top: 100%;
    z-index: 2;
  }

  .header__actions.open {
    display: flex;
  }

  .header__navigation,
  .header__cta,
  .header__language-switcher {
    width: 100%;
  }

  .header__navigation--toggle,
  .header__close--toggle {
    background-color: transparent;
    background-repeat: no-repeat;
    background-size: cover;
    border: none;
    cursor: pointer;
    display: block;
    height: 25px;
    margin-left: auto;
    padding: 0;
    width: 25px;
  }

  .header__navigation--toggle.hide {
    display: none;
  }

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

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

  .header__close--toggle.show {
    display: block;
  }
}
.heading-stack {
  align-items: flex-start;
  display: flex;
  flex-direction: column-reverse;
  gap: 0.75rem;
  width: 100%;
}

.heading-stack .eyebrow {
  margin: 0;
}

.eyebrow {
  align-items: center;
  color: #28C5C9;
  display: flex;
  font-size: 0.75rem;
  font-weight: 700;
  gap: 0.6rem;
  letter-spacing: 0.08em;
  line-height: 1.4;
  margin: 0 0 0.75rem;
  text-transform: uppercase;
}

.eyebrow::before {
  background-color: currentColor;
  border-radius: 999px;
  content: "";
  display: block;
  flex-shrink: 0;
  height: 3px;
  width: 1.35rem;
}
.icon-arrow {
  background-color: currentColor;
  display: inline-block;
  flex-shrink: 0;
  height: 1.15em;
  mask-position: center;
  mask-repeat: no-repeat;
  mask-size: contain;
  -webkit-mask-position: center;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-size: contain;
  width: 1.15em;
}
/* Home section rhythm and card grids */

.home-features .feature-item {
  margin-bottom: 1.25rem;
  max-width: none;
}

.home-features .dnd-row,
.home-features .row-fluid-wrapper,
.home-features .dnd-module {
  margin-bottom: 0;
  min-height: 0;
}

.home-resources .eyebrow {
  color: #1C2541;
}

.home-services .dnd-row:has(.section-heading),
.home-solutions .dnd-row:has(.section-heading),
.home-resources .dnd-row:has(.section-heading) {
  margin-bottom: 0;
  padding-bottom: 3rem;
}

.home-services .row-fluid:has(> [class*="span"]:nth-child(2)),
.home-solutions .row-fluid:has(> [class*="span"]:nth-child(2)),
.home-resources .row-fluid:has(> [class*="span"]:nth-child(2)) {
  --card-cols: 5;
  --card-gap: 5px;
  display: flex;
  flex-wrap: wrap;
  gap: var(--card-gap);
}

.home-services .row-fluid:has(> [class*="span"]:nth-child(2)):has(> [class*="span"]:nth-child(2):last-child),
.home-solutions .row-fluid:has(> [class*="span"]:nth-child(2)):has(> [class*="span"]:nth-child(2):last-child),
.home-resources .row-fluid:has(> [class*="span"]:nth-child(2)):has(> [class*="span"]:nth-child(2):last-child) {
  --card-cols: 2;
}

.home-services .row-fluid:has(> [class*="span"]:nth-child(3):last-child),
.home-solutions .row-fluid:has(> [class*="span"]:nth-child(3):last-child),
.home-resources .row-fluid:has(> [class*="span"]:nth-child(3):last-child) {
  --card-cols: 3;
}

.home-services .row-fluid:has(> [class*="span"]:nth-child(4):last-child),
.home-solutions .row-fluid:has(> [class*="span"]:nth-child(4):last-child),
.home-resources .row-fluid:has(> [class*="span"]:nth-child(4):last-child) {
  --card-cols: 4;
}

.home-services .row-fluid:has(> [class*="span"]:nth-child(5):last-child),
.home-solutions .row-fluid:has(> [class*="span"]:nth-child(5):last-child),
.home-resources .row-fluid:has(> [class*="span"]:nth-child(5):last-child) {
  --card-cols: 5;
}

.home-services .row-fluid:has(> [class*="span"]:nth-child(6):last-child),
.home-solutions .row-fluid:has(> [class*="span"]:nth-child(6):last-child),
.home-resources .row-fluid:has(> [class*="span"]:nth-child(6):last-child),
.home-services .row-fluid:has(> [class*="span"]:nth-child(9):last-child),
.home-solutions .row-fluid:has(> [class*="span"]:nth-child(9):last-child),
.home-resources .row-fluid:has(> [class*="span"]:nth-child(9):last-child) {
  --card-cols: 3;
}

.home-services .row-fluid:has(> [class*="span"]:nth-child(2)) > [class*="span"],
.home-solutions .row-fluid:has(> [class*="span"]:nth-child(2)) > [class*="span"],
.home-resources .row-fluid:has(> [class*="span"]:nth-child(2)) > [class*="span"] {
  display: flex;
  flex: 1 0 calc((100% - (var(--card-cols) - 1) * var(--card-gap)) / var(--card-cols));
  margin-left: 0 !important;
  max-width: 100%;
  min-width: 0;
  width: auto !important;
}

.home-services .dnd-module,
.home-services .hs_cos_wrapper,
.home-solutions .dnd-module,
.home-solutions .hs_cos_wrapper,
.home-resources .dnd-module,
.home-resources .hs_cos_wrapper {
  display: flex;
  width: 100%;
}

.home-services .service-card,
.home-solutions .service-card,
.home-resources .service-card {
  width: 100%;
}

.home-logos .dnd-section > .row-fluid,
.home-logos .content-wrapper {
  max-width: 100%;
  width: 100%;
}

.home-logos .logo-slider,
.home-logos .logo-slider__viewport {
  max-width: 100%;
  width: 100%;
}

.site-footer form,
.site-footer .hs-form {
  margin: 0 auto;
  max-width: 36rem;
}

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

@media (max-width: 1200px) {
  .home-services .row-fluid:has(> [class*="span"]:nth-child(5):last-child),
  .home-solutions .row-fluid:has(> [class*="span"]:nth-child(5):last-child),
  .home-resources .row-fluid:has(> [class*="span"]:nth-child(5):last-child) {
    --card-cols: 3;
  }

  .home-services .row-fluid:has(> [class*="span"]:nth-child(4):last-child),
  .home-solutions .row-fluid:has(> [class*="span"]:nth-child(4):last-child),
  .home-resources .row-fluid:has(> [class*="span"]:nth-child(4):last-child) {
    --card-cols: 2;
  }

}

@media (max-width: 767px) {
  .home-services .row-fluid:has(> [class*="span"]:nth-child(2)),
  .home-solutions .row-fluid:has(> [class*="span"]:nth-child(2)),
  .home-resources .row-fluid:has(> [class*="span"]:nth-child(2)) {
    --card-cols: 1;
  }
}





.dnd-section:has(.hero) {
  overflow: visible;
  padding-top: 0;
  padding-bottom: 0;
}

.hero--light {
  background-color: #FFFFFF;
}

.hero--dark {
  background-color: #3A506B;
}

.hero--accent {
  background-color: #28C5C9;
}

.hero--light .hero__heading,
.hero--accent .hero__heading {
  color: #1C2541 !important;
}

.hero--light .hero__body,
.hero--light .hero__body p {
  color: #3A506B !important;
}

.hero--dark,
.hero--dark .hero__heading,
.hero--dark .hero__body,
.hero--dark .hero__body p {
  color: #FFFFFF !important;
}

.hero--dark .button--secondary,
.hero--dark .button--secondary:hover,
.hero--dark .button--secondary:focus,
.hero--dark .button--secondary:active {
  background-color: transparent !important;
  border: 1px solid rgba(255, 255, 255, 0.2) !important;
  color: #FFFFFF !important;
}

.hero--dark .button--secondary:hover,
.hero--dark .button--secondary:focus {
  background-color: rgba(255, 255, 255, 0.08) !important;
  border-color: rgba(255, 255, 255, 0.4) !important;
}

.hero--accent .hero__body,
.hero--accent .hero__body p {
  color: #1C2541 !important;
}

.hero--custom {
  background-color: var(--hero-bg, #FFFFFF);
}

.hero--custom .hero__heading {
  color: var(--hero-heading, #1C2541) !important;
}

.hero--custom .hero__body,
.hero--custom .hero__body p {
  color: var(--hero-text, #3A506B) !important;
}

.hero__video-play.no-button::before {
  background: rgba(28, 37, 65, 0.28);
  content: "";
  inset: 0;
  position: absolute;
  z-index: 1;
}

.hero__video-icon {
  align-items: center;
  background-color: #FFFFFF !important;
  border-radius: 50%;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.28);
  color: #1C2541 !important;
  display: flex;
  height: 5rem;
  justify-content: center;
  left: 50%;
  pointer-events: none;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 5rem;
  z-index: 2;
}

.hero__video-icon svg {
  display: block;
  margin-left: 3px;
}

.hero__video-play:hover .hero__video-icon,
.hero__video-play:focus .hero__video-icon {
  transform: translate(-50%, -50%) scale(1.06);
}





.stats-section .stats-section__prefix,
.stats-section .stats-section__suffix {
  color: #28C5C9 !important;
  font-size: 0.75em !important;
  font-weight: 700;
  line-height: 1;
}

.stats-section .section-heading__body,
.stats-section .section-heading__body p {
  font-size: 16px !important;
  line-height: 1.8em;
  opacity: 1;
}

.stats-section .stats-section__label {
  font-size: 14px !important;
  font-weight: 700;
  letter-spacing: 0.04em;
  line-height: 1.3;
  opacity: 0.8;
  text-transform: uppercase;
}

.stats-section .stats-section__desc {
  opacity: 0.8;
}

.stats-section .stats-section__desc,
.stats-section .stats-section__desc p {
  font-size: 14px !important;
}

.stats-section--dark .section-heading,
.stats-section--dark .section-heading h2,
.stats-section--dark .section-heading__title,
.stats-section--dark .section-heading__line,
.stats-section--dark .section-heading__body,
.stats-section--dark .section-heading__body p,
.stats-section--dark .stats-section__value,
.stats-section--dark .stats-section__number,
.stats-section--dark .stats-section__label,
.stats-section--dark .stats-section__desc,
.stats-section--dark .stats-section__desc p {
  color: #FFFFFF !important;
}

.stats-section--light .section-heading,
.stats-section--light .section-heading h2,
.stats-section--light .section-heading__title,
.stats-section--light .section-heading__line,
.stats-section--light .stats-section__value,
.stats-section--light .stats-section__number,
.stats-section--light .stats-section__label {
  color: #1C2541 !important;
}

.stats-section--light .section-heading__body,
.stats-section--light .section-heading__body p,
.stats-section--light .stats-section__desc,
.stats-section--light .stats-section__desc p {
  color: #3A506B !important;
}

.stats-section--dark .eyebrow,
.stats-section--dark .section-heading__line--2,
.stats-section--light .eyebrow,
.stats-section--light .section-heading__line--2 {
  color: #28C5C9 !important;
}







.story-split {
  --story-container: min(90vw, 1440px);
  --story-gutter: max(0px, calc((100vw - var(--story-container)) / 2));
}

.dnd-section:has(.story-split) {
  overflow: visible;
  padding-bottom: 0;
  padding-top: 0;
}

.dnd-section:has(.story-split) > .row-fluid,
.dnd-section:has(.story-split) .row-fluid-wrapper,
.dnd-section:has(.story-split) .dnd-column,
.dnd-section:has(.story-split) .dnd-row,
.dnd-section:has(.story-split) .dnd-module,
.dnd-section:has(.story-split) .hs_cos_wrapper,
.dnd-section:has(.story-split) [class*="span"] {
  overflow: visible;
}

.story-split--copy_left,
.story-split--copy_right {
  gap: 0;
  min-height: 32rem;
}

.story-split--copy_left .story-split__copy {
  padding: 4rem 3.5rem 4rem 0;
}

.story-split--copy_right .story-split__copy {
  padding: 4rem 0 4rem 3.5rem;
}

.story-split--copy_left .story-split__panels,
.story-split--copy_right .story-split__panels {
  gap: 0;
  min-width: 0;
  width: 100%;
}

.story-split--copy_left .story-split__panel,
.story-split--copy_right .story-split__panel {
  border-radius: 0;
  box-shadow: none;
  flex: 1 0 auto;
  min-height: auto;
  overflow: visible;
  padding: 0;
  position: relative;
  width: 100%;
}

.story-split--copy_left .story-split__panel:last-child,
.story-split--copy_right .story-split__panel:last-child {
  flex: 1 1 auto;
}

.story-split__panel {
  --panel-fill: #F5F5F5;
  background-color: var(--panel-fill) !important;
}

.story-split--copy_left .story-split__panel::before,
.story-split--copy_right .story-split__panel::before {
  background-color: var(--panel-fill) !important;
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: 0;
}

.story-split--copy_left .story-split__panel::before {
  left: 0;
  right: calc(-1 * var(--story-gutter));
}

.story-split--copy_right .story-split__panel::before {
  left: calc(-1 * var(--story-gutter));
  right: 0;
}

.story-split--copy_left .story-split__panel-inner,
.story-split--copy_right .story-split__panel-inner {
  box-sizing: border-box;
  max-width: none;
  padding: 3.5rem 0 3.5rem 3.25rem;
  position: relative;
  width: 100%;
  z-index: 1;
}

.story-split--copy_right .story-split__panel-inner {
  padding: 3.5rem 3.25rem 3.5rem 0;
}

.story-split__panel .eyebrow::before {
  display: none;
}

.story-split__copy .button {
  align-items: center;
  display: inline-flex;
  gap: 0.4rem;
  margin-top: 1.5rem;
}

.story-split--light .story-split__title {
  color: #1C2541 !important;
}

.story-split--light .story-split__copy,
.story-split--light .story-split__body,
.story-split--light .story-split__body p {
  color: #3A506B !important;
}

.story-split--dark .story-split__title,
.story-split--dark .story-split__copy,
.story-split--dark .story-split__body,
.story-split--dark .story-split__body p {
  color: #FFFFFF !important;
}

.story-split--accent .story-split__title,
.story-split--accent .story-split__copy,
.story-split--accent .story-split__body,
.story-split--accent .story-split__body p {
  color: #1C2541 !important;
}

.story-split--custom .story-split__title {
  color: var(--story-heading, #1C2541) !important;
}

.story-split--custom .story-split__copy,
.story-split--custom .story-split__body,
.story-split--custom .story-split__body p {
  color: var(--story-text, #3A506B) !important;
}

.story-split__panel--auto,
.story-split__panel--light_grey {
  --panel-fill: #F5F5F5;
}

.story-split__panel--light,
.story-split__panel--light_white {
  --panel-fill: #FFFFFF;
}

.story-split__panel--light,
.story-split__panel--light_white,
.story-split__panel--light_grey,
.story-split__panel--auto,
.story-split__panel--light .story-split__panel-title,
.story-split__panel--light_white .story-split__panel-title,
.story-split__panel--light_grey .story-split__panel-title,
.story-split__panel--auto .story-split__panel-title {
  color: #1C2541 !important;
}

.story-split__panel--light .story-split__panel-body,
.story-split__panel--light .story-split__panel-body p,
.story-split__panel--light_white .story-split__panel-body,
.story-split__panel--light_white .story-split__panel-body p,
.story-split__panel--light_grey .story-split__panel-body,
.story-split__panel--light_grey .story-split__panel-body p,
.story-split__panel--auto .story-split__panel-body,
.story-split__panel--auto .story-split__panel-body p {
  color: #3A506B !important;
}

.story-split__panel--light .eyebrow,
.story-split__panel--light_white .eyebrow,
.story-split__panel--light_grey .eyebrow,
.story-split__panel--auto .eyebrow {
  color: #28C5C9 !important;
}

.story-split__panel--accent {
  --panel-fill: #28C5C9;
}

.story-split__panel--accent,
.story-split__panel--accent .story-split__panel-title,
.story-split__panel--accent .story-split__panel-body,
.story-split__panel--accent .story-split__panel-body p,
.story-split__panel--accent .eyebrow {
  color: #1C2541 !important;
}

.story-split__panel--dark {
  --panel-fill: #3A506B;
}

.story-split__panel--dark,
.story-split__panel--dark .story-split__panel-title,
.story-split__panel--dark .story-split__panel-body,
.story-split__panel--dark .story-split__panel-body p {
  color: #FFFFFF !important;
}

.story-split__panel--dark .eyebrow {
  color: #28C5C9 !important;
}

.story-split__panel--custom .story-split__panel-title {
  color: var(--panel-heading, #1C2541) !important;
}

.story-split__panel--custom,
.story-split__panel--custom .story-split__panel-body,
.story-split__panel--custom .story-split__panel-body p {
  color: var(--panel-text, #3A506B) !important;
}

.story-split__panel--custom .eyebrow {
  color: var(--panel-eyebrow, #28C5C9) !important;
}

@media (max-width: 767px) {
  .story-split--copy_left .story-split__copy,
  .story-split--copy_right .story-split__copy {
    padding: 3rem 0;
  }

  .story-split--copy_left .story-split__panels,
  .story-split--copy_right .story-split__panels {
    width: 100%;
  }

  .story-split--copy_left .story-split__panel::before,
  .story-split--copy_right .story-split__panel::before {
    left: calc(-1 * var(--story-gutter));
    right: calc(-1 * var(--story-gutter));
  }

  .story-split--copy_left .story-split__panel-inner,
  .story-split--copy_right .story-split__panel-inner {
    padding: 2.5rem 0;
  }
}
/* Card-section variants color heading and cards only.
   Section background (solid, gradient, image) comes from HubSpot section styles. */

.card-section--dark .section-heading,
.card-section--dark .section-heading h2,
.card-section--dark .section-heading__title,
.card-section--dark .section-heading__line,
.card-section--dark .section-heading__body,
.card-section--dark .section-heading__body p,
.card-section--services .section-heading,
.card-section--services .section-heading h2,
.card-section--services .section-heading__title,
.card-section--services .section-heading__line,
.card-section--services .section-heading__body,
.card-section--services .section-heading__body p {
  color: #FFFFFF !important;
}

.card-section--dark .eyebrow,
.card-section--dark .section-heading__line--2,
.card-section--dark .section-heading__cta,
.card-section--dark .section-heading__cta:hover,
.card-section--dark .section-heading__cta:focus,
.card-section--dark .section-heading__cta:active,
.card-section--services .eyebrow,
.card-section--services .section-heading__line--2,
.card-section--services .section-heading__cta,
.card-section--services .section-heading__cta:hover,
.card-section--services .section-heading__cta:focus,
.card-section--services .section-heading__cta:active {
  color: #28C5C9 !important;
}

.card-section--light .section-heading,
.card-section--light .section-heading h2,
.card-section--light .section-heading__title,
.card-section--light .section-heading__line,
.card-section--solutions .section-heading,
.card-section--solutions .section-heading h2,
.card-section--solutions .section-heading__title,
.card-section--solutions .section-heading__line {
  color: #1C2541 !important;
}

.card-section--light .section-heading__body,
.card-section--light .section-heading__body p,
.card-section--solutions .section-heading__body,
.card-section--solutions .section-heading__body p {
  color: #3A506B !important;
}

.card-section--light .eyebrow,
.card-section--light .section-heading__line--2,
.card-section--light .section-heading__cta,
.card-section--light .section-heading__cta:hover,
.card-section--light .section-heading__cta:focus,
.card-section--light .section-heading__cta:active,
.card-section--solutions .eyebrow,
.card-section--solutions .section-heading__line--2,
.card-section--solutions .section-heading__cta,
.card-section--solutions .section-heading__cta:hover,
.card-section--solutions .section-heading__cta:focus,
.card-section--solutions .section-heading__cta:active {
  color: #28C5C9 !important;
}

.card-section--accent .section-heading,
.card-section--accent .section-heading h2,
.card-section--accent .section-heading__title,
.card-section--accent .section-heading__line,
.card-section--accent .section-heading__body,
.card-section--accent .section-heading__body p,
.card-section--accent .eyebrow,
.card-section--accent .section-heading__cta,
.card-section--accent .section-heading__cta:hover,
.card-section--accent .section-heading__cta:focus,
.card-section--accent .section-heading__cta:active {
  color: #1C2541 !important;
}

.card-section--dark .service-card.card,
.card-section--accent .service-card.card,
.card-section--services .service-card.card {
  background-color: #FFFFFF !important;
}

.card-section--light .service-card.card,
.card-section--solutions .service-card.card {
  background-color: #F5F5F5 !important;
}

.card-section--dark .service-card.card--linked:hover,
.card-section--dark .service-card.card--linked:focus-within,
.card-section--light .service-card.card--linked:hover,
.card-section--light .service-card.card--linked:focus-within,
.card-section--services .service-card.card--linked:hover,
.card-section--services .service-card.card--linked:focus-within,
.card-section--solutions .service-card.card--linked:hover,
.card-section--solutions .service-card.card--linked:focus-within {
  background-color: #28C5C9 !important;
}

.card-section--accent .service-card.card--linked:hover,
.card-section--accent .service-card.card--linked:focus-within {
  background-color: #1C2541 !important;
}

.card-section--dark .service-card.card--linked:hover .card__number,
.card-section--dark .service-card.card--linked:hover .card__link,
.card-section--dark .service-card.card--linked:focus-within .card__number,
.card-section--dark .service-card.card--linked:focus-within .card__link,
.card-section--light .service-card.card--linked:hover .card__number,
.card-section--light .service-card.card--linked:hover .card__link,
.card-section--light .service-card.card--linked:focus-within .card__number,
.card-section--light .service-card.card--linked:focus-within .card__link,
.card-section--services .service-card.card--linked:hover .card__number,
.card-section--services .service-card.card--linked:hover .card__link,
.card-section--services .service-card.card--linked:focus-within .card__number,
.card-section--services .service-card.card--linked:focus-within .card__link,
.card-section--solutions .service-card.card--linked:hover .card__number,
.card-section--solutions .service-card.card--linked:hover .card__link,
.card-section--solutions .service-card.card--linked:focus-within .card__number,
.card-section--solutions .service-card.card--linked:focus-within .card__link,
.card-section--accent .service-card.card--linked:hover .card__number,
.card-section--accent .service-card.card--linked:hover .card__link,
.card-section--accent .service-card.card--linked:focus-within .card__number,
.card-section--accent .service-card.card--linked:focus-within .card__link {
  color: #FFFFFF !important;
}

.card-section--dark .service-card.card--linked:hover .card__heading,
.card-section--dark .service-card.card--linked:hover .card__description,
.card-section--dark .service-card.card--linked:hover .card__description p,
.card-section--dark .service-card.card--linked:hover .card__icon,
.card-section--dark .service-card.card--linked:focus-within .card__heading,
.card-section--dark .service-card.card--linked:focus-within .card__description,
.card-section--dark .service-card.card--linked:focus-within .card__description p,
.card-section--dark .service-card.card--linked:focus-within .card__icon,
.card-section--light .service-card.card--linked:hover .card__heading,
.card-section--light .service-card.card--linked:hover .card__description,
.card-section--light .service-card.card--linked:hover .card__description p,
.card-section--light .service-card.card--linked:hover .card__icon,
.card-section--light .service-card.card--linked:focus-within .card__heading,
.card-section--light .service-card.card--linked:focus-within .card__description,
.card-section--light .service-card.card--linked:focus-within .card__description p,
.card-section--light .service-card.card--linked:focus-within .card__icon,
.card-section--services .service-card.card--linked:hover .card__heading,
.card-section--services .service-card.card--linked:hover .card__description,
.card-section--services .service-card.card--linked:hover .card__description p,
.card-section--services .service-card.card--linked:hover .card__icon,
.card-section--services .service-card.card--linked:focus-within .card__heading,
.card-section--services .service-card.card--linked:focus-within .card__description,
.card-section--services .service-card.card--linked:focus-within .card__description p,
.card-section--services .service-card.card--linked:focus-within .card__icon,
.card-section--solutions .service-card.card--linked:hover .card__heading,
.card-section--solutions .service-card.card--linked:hover .card__description,
.card-section--solutions .service-card.card--linked:hover .card__description p,
.card-section--solutions .service-card.card--linked:hover .card__icon,
.card-section--solutions .service-card.card--linked:focus-within .card__heading,
.card-section--solutions .service-card.card--linked:focus-within .card__description,
.card-section--solutions .service-card.card--linked:focus-within .card__description p,
.card-section--solutions .service-card.card--linked:focus-within .card__icon {
  color: #1C2541 !important;
}

.card-section--accent .service-card.card--linked:hover .card__heading,
.card-section--accent .service-card.card--linked:hover .card__description,
.card-section--accent .service-card.card--linked:hover .card__description p,
.card-section--accent .service-card.card--linked:hover .card__icon,
.card-section--accent .service-card.card--linked:focus-within .card__heading,
.card-section--accent .service-card.card--linked:focus-within .card__description,
.card-section--accent .service-card.card--linked:focus-within .card__description p,
.card-section--accent .service-card.card--linked:focus-within .card__icon {
  color: #FFFFFF !important;
}
/* Event cards (home section + listing) */

.event-card-grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.event-card-grid--1 {
  grid-template-columns: 1fr;
}

.event-card-grid--2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.event-card-grid--3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.event-card {
  background-color: #FFFFFF;
  border-radius: 10px;
  color: inherit;
  display: flex;
  flex-direction: column;
  height: 100%;
  overflow: hidden;
  text-decoration: none;
}

.event-card:hover,
.event-card:focus {
  text-decoration: none;
}

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

.event-card__media {
  position: relative;
}

.event-card__image {
  aspect-ratio: 16 / 9;
  display: block;
  object-fit: cover;
  width: 100%;
}

.event-card__pill {
  background-color: #1C2541;
  border-radius: 999px;
  color: #28C5C9;
  font-size: 0.6875rem;
  font-weight: 700;
  left: 0.75rem;
  letter-spacing: 0.06em;
  line-height: 1;
  padding: 0.4rem 0.7rem;
  pointer-events: none;
  position: absolute;
  text-transform: uppercase;
  top: 0.75rem;
  z-index: 2;
}

.event-card__pill--inline {
  left: auto;
  margin: 1.35rem 1.35rem 0;
  position: static;
  top: auto;
}

.event-card__body {
  display: flex;
  flex: 1 1 auto;
  flex-direction: column;
  gap: 0.4rem;
  padding: 1.35rem 1.35rem 1.5rem;
}

.event-card__name {
  color: #1C2541;
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1.3;
  margin: 0 0 0.35rem;
}

.event-card__tagline {
  color: #3A506B;
  display: -webkit-box;
  font-size: 0.875rem;
  line-height: 1.4;
  margin: 0;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.event-card__series {
  color: #28C5C9;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  margin: 0;
  text-transform: uppercase;
}

.event-card__date {
  color: #3A506B;
  font-size: 0.8125rem;
  line-height: 1.5;
  margin: 0 0 0.75rem;
}

.event-card__excerpt {
  color: #3A506B;
  display: none;
  font-size: 0.9375rem;
  line-height: 1.6;
}

.event-card__excerpt p {
  margin: 0 0 0.75rem;
}

.event-card__excerpt p:last-child {
  margin-bottom: 0;
}

.event-card__excerpt p:nth-child(n + 2),
.event-card__excerpt ul,
.event-card__excerpt ol {
  display: none;
}

.event-card__cta {
  align-items: center;
  background-color: #28C5C9;
  border-radius: 6px;
  color: #FFFFFF;
  display: inline-flex;
  flex-shrink: 0;
  font-size: 0.75rem;
  font-weight: 700;
  gap: 0.45rem;
  letter-spacing: 0.04em;
  margin-top: auto;
  padding: 0.7rem 1rem;
  text-transform: uppercase;
  width: fit-content;
}

.event-card__cta-arrow {
  height: 1.35em;
  width: 1.35em;
}

.event-card--landscape,
.event-card--featured {
  align-items: stretch;
  flex-direction: row;
  min-height: 0;
}

.event-card--landscape .event-card__media {
  aspect-ratio: 16 / 9;
  background-color: #1C2541;
  flex: 0 0 32%;
  max-width: 32%;
  min-height: 100%;
  position: relative;
  width: 32%;
}

.event-card--featured .event-card__media {
  aspect-ratio: 16 / 9;
  background-color: #1C2541;
  flex: 0 0 38%;
  max-width: 38%;
  min-height: 100%;
  position: relative;
  width: 38%;
}

.event-card--landscape .event-card__image,
.event-card--featured .event-card__image {
  aspect-ratio: auto;
  height: 100%;
  inset: 0;
  min-height: 12.5rem;
  object-fit: contain;
  object-position: center;
  position: absolute;
  width: 100%;
}

.event-card--landscape .event-card__excerpt {
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  display: -webkit-box;
  margin: 0.15rem 0 0.35rem;
  overflow: hidden;
}

.event-card--landscape .event-card__date {
  margin-bottom: 0.15rem;
}

.event-card--landscape .event-card__body {
  flex: 1 1 auto;
  gap: 0.5rem;
  justify-content: center;
  padding: 1.75rem 2rem;
}

.event-card--featured .event-card__body {
  flex: 1 1 auto;
  gap: 0.55rem;
  justify-content: center;
  padding: 2.25rem 2.5rem;
}

.event-card--featured .event-card__name {
  font-size: 1.75rem;
  line-height: 1.2;
  margin-bottom: 0.5rem;
}

.event-card--featured .event-card__tagline {
  -webkit-line-clamp: 3;
  font-size: 1rem;
}

.event-card--featured .event-card__date {
  margin-bottom: 0.35rem;
}

.event-card--featured .event-card__excerpt {
  display: block;
  margin: 0.25rem 0 1rem;
}

.events-feed--light_white .event-card {
  background-color: #FFFFFF;
}

.events-feed--light_grey .event-card {
  background-color: #F5F5F5;
}

.events-feed--light_white .event-card__name,
.events-feed--light_grey .event-card__name {
  color: #1C2541 !important;
}

.events-feed--light_white .event-card__date,
.events-feed--light_white .event-card__tagline,
.events-feed--light_white .event-card__excerpt,
.events-feed--light_white .event-card__excerpt p,
.events-feed--light_grey .event-card__date,
.events-feed--light_grey .event-card__tagline,
.events-feed--light_grey .event-card__excerpt,
.events-feed--light_grey .event-card__excerpt p {
  color: #3A506B !important;
}

.events-feed--light_white .event-card__series,
.events-feed--light_grey .event-card__series {
  color: #28C5C9 !important;
}

.events-feed--dark .event-card {
  background-color: #3A506B;
}

.events-feed--dark .event-card__name,
.events-feed--dark .event-card__date,
.events-feed--dark .event-card__tagline,
.events-feed--dark .event-card__excerpt,
.events-feed--dark .event-card__excerpt p {
  color: #FFFFFF !important;
}

.events-feed--dark .event-card__series {
  color: #28C5C9 !important;
}

.events-feed--accent .event-card {
  background-color: #28C5C9;
}

.events-feed--accent .event-card__name,
.events-feed--accent .event-card__date,
.events-feed--accent .event-card__tagline,
.events-feed--accent .event-card__series,
.events-feed--accent .event-card__excerpt,
.events-feed--accent .event-card__excerpt p {
  color: #1C2541 !important;
}

.events-feed--accent .event-card__cta {
  background-color: #1C2541 !important;
  color: #FFFFFF !important;
}

.events-feed__heading--light,
.events-feed__heading--light .events-feed__title,
.dnd-section .events-feed__heading--light h1,
.dnd-section .events-feed__heading--light h2,
.dnd-section .events-feed__heading--light h3,
.dnd-section .events-feed__heading--light h4,
.dnd-section .events-feed__heading--light h5,
.dnd-section .events-feed__heading--light h6 {
  color: #1C2541 !important;
}

.events-feed__heading--light .events-feed__rule {
  background-color: #1C2541 !important;
  opacity: 0.28;
}

.events-feed__heading--dark,
.events-feed__heading--dark .events-feed__title,
.dnd-section .events-feed__heading--dark h1,
.dnd-section .events-feed__heading--dark h2,
.dnd-section .events-feed__heading--dark h3,
.dnd-section .events-feed__heading--dark h4,
.dnd-section .events-feed__heading--dark h5,
.dnd-section .events-feed__heading--dark h6 {
  color: #ffffff !important;
}

.events-feed__heading--dark .events-feed__rule {
  background-color: #ffffff !important;
  opacity: 0.55;
}

.events-feed__heading--accent,
.events-feed__heading--accent .events-feed__title,
.dnd-section .events-feed__heading--accent h1,
.dnd-section .events-feed__heading--accent h2,
.dnd-section .events-feed__heading--accent h3,
.dnd-section .events-feed__heading--accent h4,
.dnd-section .events-feed__heading--accent h5,
.dnd-section .events-feed__heading--accent h6 {
  color: #28C5C9 !important;
}

.events-feed__heading--accent .events-feed__rule {
  background-color: #28C5C9 !important;
  opacity: 0.55;
}

.events-feed__empty {
  margin: 0;
}

.event-card--featured .event-card__cta {
  color: #1C2541;
  font-size: 0.8125rem;
  padding: 0.8rem 1.15rem;
}

@media (max-width: 1200px) {
  .event-card-grid,
  .event-card-grid--4,
  .event-card-grid--3 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .event-card-grid--1 {
    grid-template-columns: 1fr;
  }

  .event-card--landscape .event-card__name,
  .event-card--featured .event-card__name {
    font-size: 1.375rem;
  }
}

@media (max-width: 767px) {
  .event-card-grid,
  .event-card-grid--2,
  .event-card-grid--3,
  .event-card-grid--4 {
    grid-template-columns: 1fr;
  }

  .event-card--landscape,
  .event-card--featured {
    flex-direction: column;
    min-height: 0;
  }

  .event-card--landscape .event-card__media,
  .event-card--featured .event-card__media {
    aspect-ratio: 16 / 9;
    flex: none;
    max-width: none;
    min-height: 0;
    width: 100%;
  }

  .event-card--landscape .event-card__image,
  .event-card--featured .event-card__image {
    aspect-ratio: 16 / 9;
    flex: none;
    height: 100%;
    min-height: 0;
    object-fit: contain;
    position: absolute;
    width: 100%;
  }

  .event-card--landscape .event-card__body,
  .event-card--featured .event-card__body {
    padding: 1.5rem;
  }
}





.body-wrapper:has(.error-404),
.body-container-wrapper:has(.error-404),
.error-404 {
  background-color: #FFFFFF !important;
}

.error-404 {
  --error-cw: min(90vw, 1440px);
  --error-gutter: calc((100vw - var(--error-cw)) / 2);
  color: #1C2541;
  display: grid;
  grid-template-columns: minmax(18rem, 1fr) minmax(0, 1.15fr);
  min-height: calc(100vh - 8rem);
  overflow: hidden;
  position: relative;
}

.error-404__copy {
  align-self: center;
  box-sizing: border-box;
  max-width: calc(var(--error-gutter) + 34rem);
  padding: 4.5rem 2.5rem 4.5rem var(--error-gutter);
  width: 100%;
}

.error-404__copy .heading-stack {
  margin: 0 0 1.15rem;
}

.error-404__copy .eyebrow {
  color: #28C5C9;
}

.error-404__title,
.error-404 h1.error-404__title {
  color: #1C2541 !important;
  font-size: 2.5rem;
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.15;
  margin: 0;
}

.error-404__body,
.error-404 p.error-404__body {
  color: #3A506B !important;
  font-size: 1.0625rem;
  line-height: 1.7;
  margin: 0 0 2rem;
}

.error-404__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1rem;
}

.error-404__media {
  min-height: 100%;
  position: relative;
}

.error-404__image {
  bottom: 0;
  display: block;
  height: 100%;
  mix-blend-mode: normal !important;
  object-fit: contain;
  object-position: right bottom;
  position: absolute;
  right: 0;
  width: 100%;
}

.error-404 .button--secondary,
.error-404 .button--secondary:hover,
.error-404 .button--secondary:focus,
.error-404 .button--secondary:active {
  color: #1C2541 !important;
}

@media (max-width: 900px) {
  .error-404 {
    grid-template-columns: 1fr;
    grid-template-rows: auto minmax(16rem, 40vh);
    min-height: 0;
  }

  .error-404__copy {
    max-width: none;
    padding: 3rem var(--error-gutter) 1.25rem;
  }
}
/* Compact footer bar: copyright left, social right.
   Also covers the existing global content (one column, two stacked rows). */

.footer .dnd-section {
  padding-bottom: 1.25rem;
  padding-top: 1.25rem;
}

.footer .dnd-section p {
  margin: 0;
}

.footer .dnd-section > .row-fluid {
  align-items: center;
  max-width: none;
  width: 100%;
}

.footer .social-links {
  justify-content: flex-end;
}

.footer .social-links__link:last-child {
  margin-right: 0;
}

.footer .social-links__link:last-child .social-links__icon {
  margin-right: 0;
}

.footer .dnd-column:has(.social-links) {
  align-items: center;
  display: flex;
  justify-content: flex-end;
}

.footer .dnd-column:has(.social-links):has(p) {
  flex-wrap: wrap;
  gap: 0.75rem 1.5rem;
  justify-content: space-between;
}

.footer .dnd-column:has(.social-links):has(p) > .row-fluid-wrapper,
.footer .dnd-column:has(.social-links):has(p) > .dnd-row {
  flex: 0 1 auto;
  margin-bottom: 0;
  margin-top: 0;
  max-width: 100%;
  width: auto;
}

.footer .dnd-column:has(.social-links):has(p) > .row-fluid-wrapper .row-fluid,
.footer .dnd-column:has(.social-links):has(p) > .dnd-row .row-fluid,
.footer .dnd-column:has(.social-links):has(p) > .row-fluid-wrapper [class*="span"],
.footer .dnd-column:has(.social-links):has(p) > .dnd-row [class*="span"] {
  width: auto;
}

.footer .dnd-column:has(.social-links):has(p) > .row-fluid-wrapper:has(.social-links),
.footer .dnd-column:has(.social-links):has(p) > .dnd-row:has(.social-links) {
  margin-left: auto;
  order: 2;
}

.site-footer-section {
  background-color: #1C2541;
  padding-bottom: 0;
  padding-top: 4rem;
}

#hs_cos_wrapper_site_footer,
.site-footer-section .hs_cos_wrapper,
.site-footer-section .site-footer {
  display: block;
  max-width: 100%;
  width: 100%;
}

.site-footer-section .site-footer,
.site-footer-section .site-footer p,
.site-footer-section .site-footer li,
.site-footer-section .site-footer a,
.site-footer-section .site-footer h2,
.site-footer-section .site-footer__heading,
.site-footer-section .site-footer__description,
.site-footer-section .site-footer__links li,
.site-footer-section .site-footer__links a,
.site-footer-section .site-footer__text,
.site-footer-section .site-footer__text p,
.site-footer-section .site-footer__text li,
.site-footer-section .site-footer__text a,
.site-footer-section .site-footer__badge-caption,
.site-footer-section .site-footer__badge-caption p {
  font-size: 14px !important;
  line-height: 1.6em;
}

.site-footer-section .site-footer__heading,
.site-footer-section .site-footer__description,
.site-footer-section .site-footer__links li,
.site-footer-section .site-footer__links a,
.site-footer-section .site-footer__text,
.site-footer-section .site-footer__text p,
.site-footer-section .site-footer__text li,
.site-footer-section .site-footer__text a,
.site-footer-section .site-footer__badge-caption,
.site-footer-section .site-footer__badge-caption p {
  color: #FFFFFF !important;
}

.site-footer-section .site-footer__heading {
  color: #28C5C9 !important;
}

.site-footer-section .site-footer__links a:hover,
.site-footer-section .site-footer__links a:focus,
.site-footer-section .site-footer__text a:hover,
.site-footer-section .site-footer__text a:focus {
  color: #28C5C9 !important;
}

/* Contact CTA: loaded last so theme-overrides cannot wash it out */

.contact-cta-section {
  background-color: #3A506B;
  scroll-margin-top: calc(var(--header-height, 61px) + 12px);
}

.contact-cta {
  color: #FFFFFF !important;
}

.contact-cta__inner {
  align-items: start;
  display: grid;
  gap: 3rem;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.15fr);
}

.contact-cta .eyebrow {
  color: #28C5C9 !important;
}

.contact-cta__heading,
.contact-cta h1.contact-cta__heading,
.contact-cta h2.contact-cta__heading,
.contact-cta h3.contact-cta__heading,
.contact-cta__heading p,
.contact-cta__heading h1,
.contact-cta__heading h2 {
  color: #FFFFFF !important;
  font-size: 2.125rem;
  font-weight: 700;
  line-height: 1.2;
  margin: 0;
}

.contact-cta__heading-line {
  display: block;
}

.contact-cta__body,
.contact-cta__body p,
.contact-cta__body li {
  color: #FFFFFF !important;
  font-size: 0.875rem;
  line-height: 1.6;
}

.contact-cta__body p:last-child {
  margin-bottom: 0;
}

.contact-cta__body ul {
  list-style: none;
  margin: 1.5rem 0 0;
  padding: 0;
}

.contact-cta__body li {
  align-items: flex-start;
  display: flex;
  gap: 0.75rem;
  margin: 0 0 0.85rem;
}

.contact-cta__body li::before {
  background-color: #28C5C9;
  border-radius: 50%;
  content: "";
  flex-shrink: 0;
  height: 8px;
  margin-top: 0.4em;
  width: 8px;
}

.contact-cta__body a,
.contact-cta__body a span,
.contact-cta .hs-richtext a {
  color: #FFFFFF !important;
  text-decoration: none !important;
}

.contact-cta__body a:hover,
.contact-cta__body a:hover span,
.contact-cta__body a:focus,
.contact-cta__body a:focus span,
.contact-cta .hs-richtext a:hover,
.contact-cta .hs-richtext a:focus {
  color: #28C5C9 !important;
  text-decoration: none !important;
}

.contact-cta__form-box {
  background-color: rgba(255, 255, 255, 0.06) !important;
  border: 1px solid rgba(255, 255, 255, 0.12) !important;
  border-radius: 10px;
  padding: 2rem 1.75rem;
}

.contact-cta__form-title {
  color: #FFFFFF !important;
  font-size: 1.125rem;
  font-weight: 700;
  margin: 0 0 1.5rem;
}

.contact-cta .form-title {
  display: none;
}

.contact-cta form,
.contact-cta .hs-form,
.contact-cta .hs-form-frame,
.contact-cta .hs_cos_wrapper_type_form,
.contact-cta .submitted-message {
  background: transparent !important;
  background-color: transparent !important;
  border: 0 !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  margin: 0 !important;
  max-width: none !important;
  padding: 0 !important;
  width: 100% !important;
}

.contact-cta form fieldset {
  background: transparent !important;
  border: 0;
  float: none;
  margin: 0 0 1rem;
  max-width: 100% !important;
  padding: 0;
  width: 100%;
}

.contact-cta form .form-columns-2 {
  display: grid;
  gap: 1rem;
  grid-template-columns: 1fr 1fr;
}

.contact-cta form .form-columns-2 .hs-form-field {
  float: none;
  width: auto;
}

.contact-cta form .hs-form-field,
.contact-cta form .input {
  background: transparent !important;
  margin-bottom: 0;
}

.contact-cta form label,
.contact-cta form legend,
.contact-cta .hs-form-field > label {
  color: #FFFFFF !important;
  font-size: 0.875rem;
  margin-bottom: 0.4rem;
}

@media (max-width: 767px) {
  .contact-cta form label,
  .contact-cta form legend,
  .contact-cta .hs-form-field > label,
  .contact-cta form input[type="text"],
  .contact-cta form input[type="email"],
  .contact-cta form input[type="tel"],
  .contact-cta form input[type="number"],
  .contact-cta form select,
  .contact-cta form textarea,
  .contact-cta .hs-input {
    font-size: 16px !important;
  }
}

.contact-cta form input[type="text"],
.contact-cta form input[type="email"],
.contact-cta form input[type="tel"],
.contact-cta form input[type="number"],
.contact-cta form select,
.contact-cta form textarea,
.contact-cta .hs-input {
  background-color: rgba(255, 255, 255, 0.06) !important;
  border: 1px solid rgba(255, 255, 255, 0.12) !important;
  border-radius: 4px !important;
  color: #FFFFFF !important;
  padding: 0.75rem 1rem !important;
  width: 100%;
}

.contact-cta form select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='white' d='M1 1l5 5 5-5'/%3E%3C/svg%3E") !important;
  background-position: right 0.9rem center !important;
  background-repeat: no-repeat !important;
  padding-right: 2.25rem !important;
}

.contact-cta form select option {
  background-color: #1C2541;
  color: #FFFFFF;
}

.contact-cta form textarea {
  min-height: 6.5rem;
}

.contact-cta form input::placeholder,
.contact-cta form textarea::placeholder {
  color: rgba(255, 255, 255, 0.45) !important;
}

.contact-cta .hs_submit,
.contact-cta .hs-submit,
.contact-cta .actions {
  margin-top: 0.5rem;
  width: 100%;
}

.contact-cta form input[type="submit"],
.contact-cta form .hs-button,
.contact-cta form .hs-button.primary,
.contact-cta form .hs-button.large {
  font-family: 'Noto Sans', sans-serif; font-style: normal; font-weight: normal; text-decoration: none;
  padding-top: 10px;
padding-right: 20px;
padding-bottom: 10px;
padding-left: 20px;

  background-color: #28C5C9 !important;
  border: 0 !important;
  border-radius: 4px !important;
  color: #1C2541 !important;
  display: block;
  font-size: 14px !important;
  font-weight: 700 !important;
  text-decoration: none;
  text-transform: none;
  width: 100% !important;
}

.contact-cta form input[type="submit"]:hover,
.contact-cta form input[type="submit"]:focus,
.contact-cta form .hs-button:hover,
.contact-cta form .hs-button:focus,
.contact-cta form .hs-button.large:hover,
.contact-cta form .hs-button.large:focus {
  background-color: #1FA8AB !important;
  color: #1C2541 !important;
}

@media (max-width: 767px) {
  .contact-cta__inner,
  .contact-cta form .form-columns-2 {
    grid-template-columns: 1fr;
  }
}
/* 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;
  }
}