/* Theme base styles */

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

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

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

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

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

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

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

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

body {
  margin: 0;
}

/**
 * Correct the font size and margin on `h1` elements within `section` and
 * `article` contexts in Chrome, Firefox, and Safari.
 */

h1 {
  font-size: 2em;
  margin: 0.67em 0;
}

/* Grouping content
   ========================================================================== */

/**
 * Add the correct box sizing in Firefox.
 */

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

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */

pre {
  font-family: monospace, monospace; /* 1 */
  font-size: 1em; /* 2 */
}

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

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

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

/**
 * Add the correct font weight in Chrome, Edge, and Safari.
 */

b,
strong {
  font-weight: bolder;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */

code,
kbd,
samp {
  font-family: monospace, monospace; /* 1 */
  font-size: 1em; /* 2 */
}

/**
 * Add the correct font size in all browsers.
 */

small {
  font-size: 80%;
}

/**
 * Prevent `sub` and `sup` elements from affecting the line height in
 * all browsers.
 */

sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

legend {
  padding: 0;
}

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

progress {
  vertical-align: baseline;
}

/**
 * Correct the cursor style of increment and decrement buttons in Chrome.
 */

[type="number"]::-webkit-inner-spin-button,
[type="number"]::-webkit-outer-spin-button {
  height: auto;
}

/**
 * 1. Correct the odd appearance in Chrome and Safari.
 * 2. Correct the outline style in Safari.
 */

[type="search"] {
  -webkit-appearance: textfield; /* 1 */
  outline-offset: -2px; /* 2 */
}

/**
 * Remove the inner padding in Chrome and Safari on macOS.
 */

[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
}

/**
 * 1. Correct the inability to style clickable types in iOS and Safari.
 * 2. Change font properties to `inherit` in Safari.
 */

::-webkit-file-upload-button {
  -webkit-appearance: button; /* 1 */
  font: inherit; /* 2 */
}

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

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

details {
  display: block;
}

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

summary {
  display: list-item;
}

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



/* CSS variables */

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

/* Mobile layout */

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


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

/* Desktop layout */

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

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

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

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

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

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

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

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

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

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

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

/* Paragraphs */

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

/* Anchors */

a {
  cursor: pointer;
}

/* Headings */

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

/* Lists */

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

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

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

/* Code blocks */

pre {
  overflow: auto;
}

code {
  vertical-align: bottom;
}

/* Blockquotes */

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

/* Horizontal rules */

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

/* Image alt text */

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

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;
  background-color: transparent; !important;
}

/* 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: #494A52;
    padding: 0.35rem 0.7rem;
    text-decoration: none;
    transition: background-color 0.3s;
  }

/* Table */

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

/* Table cells */

td,
th {
  vertical-align: top;
}

/* Table header */

thead th {
  vertical-align: bottom;
}

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

/* Header DND sections */

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

/* Header container */

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

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

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

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

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

  .header__column {
    position: relative;
  }

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

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

/* Navigation skipper */

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

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

/* Logo */

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

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

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

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

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

/* Search bar */

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



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

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



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



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

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


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

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

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

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

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

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

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

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

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

/* Language switcher */

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

  .header__language-switcher .lang_list_class:before,
  .header__language-switcher .lang_list_class:after {
    content: none;
  }
    /* V1 lang switcher updates to keep "in line" w/ v0 mobile styles */
    .header__language-switcher .hs-language-switcher__menu {
        display: block;
        box-shadow:none!important;
        background: transparent;
    }
    .header__language-switcher .hs-language-switcher__menu a {
        font-size: 20px!important;
    }
    .header__language-switcher .hs-language-switcher__button {
        display: none;
    }
  }

/* Navigation */

#nav-toggle {
  display: none;
}

/* Mobile toggles */

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

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

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

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

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

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

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

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

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

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

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

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

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

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

  .header__close--toggle.show {
    display: block;
  }
}
/* 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%;
}
/* @import url('http://example.com/example_style.css'); */

/***********************************************/
/* CSS @imports must be at the top of the file */
/* Add them above this section                 */
/***********************************************/

/*****************************************/
/* Start your style declarations here    */
/*****************************************/

/* Findhelp homepage – shared tokens, buttons, and utilities
   Used by fh-hs-* modules. Breakpoints match company.findhelp.com:
   672px, 768px, 992px, 1024px
*/

:root {
  --fh-dark-green: #08444a;
  --fh-mid-green: #008080;
  --fh-light-green: #00acaa;
  --fh-light: #f4f8f8;
  --fh-beige: #ece9de;
  --fh-yellow: #e5a925;
  --fh-dark-brown: #351617;
  --fh-black: #000000;
  --fh-white: #ffffff;
  --fh-text: #000000;
  --fh-font: "Source Sans Pro", sans-serif;
  --fh-h1: 45px;
  --fh-h2: 36px;
  --fh-h3: 30px;
  --fh-p-big: 24px;
  --fh-p-mid: 20px;
  --fh-content-wide: 1230px;
}

.fh-hs {
  box-sizing: border-box;
  color: var(--fh-text);
  font-family: var(--fh-font);
}

.fh-hs *,
.fh-hs *::before,
.fh-hs *::after {
  box-sizing: border-box;
}

.fh-hs__inner {
  margin: 0 auto;
  max-width: var(--fh-content-wide);
  padding-left: 20px;
  padding-right: 20px;
  width: 100%;
}

.fh-hs__heading {
  color: var(--fh-dark-green);
  font-family: var(--fh-font);
  font-style: normal;
  font-weight: 600;
  line-height: 1.3;
  margin: 0;
}

.fh-hs__heading--h1 {
  font-size: clamp(32px, 4vw, var(--fh-h1));
}

.fh-hs__heading--h2 {
  font-size: clamp(28px, 3vw, var(--fh-h2));
}

.fh-hs__heading--h3 {
  font-size: clamp(22px, 2.5vw, var(--fh-h3));
}

.fh-hs__text {
  font-family: var(--fh-font);
  font-size: var(--fh-p-mid);
  font-weight: 400;
  line-height: 1.3;
  margin: 0 0 16px;
}

.fh-hs__text--big {
  font-size: var(--fh-p-big);
}

.fh-hs__text p {
  margin: 0 0 16px;
}

.fh-hs__text p:last-child {
  margin-bottom: 0;
}

/* Buttons – match Findhelp arrow CTAs */
.fh-hs-btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 24px;
}

.fh-hs-btn {
  align-items: center;
  border: 2px solid;
  border-radius: 5px;
  display: inline-flex;
  font-family: var(--fh-font);
  font-size: 20px;
  font-style: normal;
  font-weight: 600;
  gap: 18px;
  line-height: 24px;
  padding: 10px 30px 12px;
  text-decoration: none;
  transition: all ease 0.3s;
}

.fh-hs-btn svg {
  flex-shrink: 0;
  height: 12px;
  transition: transform 0.5s ease-in-out, fill 0.3s ease;
  width: 8px;
}

.fh-hs-btn:hover svg {
  transform: translateX(5px);
}

.fh-hs-btn--green {
  background-color: var(--fh-mid-green);
  border-color: var(--fh-mid-green);
  color: var(--fh-white);
}

.fh-hs-btn--green svg {
  fill: var(--fh-white);
}

.fh-hs-btn--green:hover {
  background-color: var(--fh-white);
  color: var(--fh-mid-green);
}

.fh-hs-btn--green:hover svg {
  fill: var(--fh-mid-green);
}

.fh-hs-btn--transparent {
  background-color: transparent;
  border-color: transparent;
  color: var(--fh-dark-brown);
}

.fh-hs-btn--transparent svg {
  fill: var(--fh-black);
}

.fh-hs-btn--transparent:hover {
  border-color: var(--fh-black);
}

.fh-hs-btn--white {
  background-color: var(--fh-white);
  border-color: var(--fh-white);
  color: var(--fh-black);
}

.fh-hs-btn--white svg {
  fill: var(--fh-black);
}

.fh-hs-btn--white:hover {
  border-color: var(--fh-black);
}

.fh-hs-btn--link {
  background: none;
  border: none;
  color: var(--fh-mid-green);
  gap: 12px;
  padding: 0;
}

.fh-hs-btn--link svg {
  fill: var(--fh-mid-green);
}

@media screen and (max-width: 768px) {
  .fh-hs-btn-row {
    flex-direction: column;
  }

  .fh-hs-btn {
    justify-content: center;
    width: 100%;
  }
}

/* Shared two-column layout */
.fh-hs-cols {
  align-items: center;
  display: flex;
  gap: 48px;
  justify-content: space-between;
}

.fh-hs-cols__media,
.fh-hs-cols__content {
  flex: 1 1 50%;
  max-width: 50%;
}

.fh-hs-cols__media img {
  border-radius: 100%;
  display: block;
  height: auto;
  max-width: 100%;
  object-fit: cover;
  width: 100%;
}

.fh-hs-round-frame {
  background-color: var(--fh-light);
  border-radius: 100%;
  display: inline-block;
  max-width: 100%;
  padding: 10px;
}

.fh-hs-round-frame img {
  border-radius: 100%;
  display: block;
  height: auto;
  max-width: 100%;
  width: 100%;
}

.fh-hs-mobile-only {
  display: none;
}

.fh-hs-desktop-only {
  display: block;
}

@media screen and (max-width: 992px) {
  .fh-hs-cols {
    flex-direction: column;
  }

  .fh-hs-cols__media,
  .fh-hs-cols__content {
    flex-basis: 100%;
    max-width: 100%;
  }

  .fh-hs-desktop-only {
    display: none;
  }

  .fh-hs-mobile-only {
    display: block;
    margin: 24px auto;
    max-width: 360px;
  }
}

@media screen and (max-width: 768px) {
  .fh-hs-mobile-only {
    max-width: 100%;
  }

  .fh-hs-mobile-only img {
    max-height: 300px;
    object-fit: contain;
    width: auto;
  }
}

.fh-hs-testimonials__item-wrap::before { display: none; }
/* @import url('http://example.com/example_style.css'); */

/***********************************************/
/* CSS @imports must be at the top of the file */
/* Add them above this section                 */
/***********************************************/

/*****************************************/
/* Start your style declarations here    */
/*****************************************/
/* Findhelp-style header (glass pill + mega menus) */
/* Findhelp new header (glass pill + mega menus) — scoped to .fh-hs-new-header */

/* Let the absolute header sit over the first section from the page top */
.body-wrapper:has(.fh-hs-new-header),
body.has-fh-hs-new-header .body-wrapper {
  position: relative;
}

.body-wrapper:has(.fh-hs-new-header) > .body-container-wrapper,
body.has-fh-hs-new-header .body-wrapper > .body-container-wrapper {
  position: relative;
  overflow: visible;
}

.fh-hs-new-header-spacer {
  display: none;
  height: 0;
  pointer-events: none;
}

.fh-hs-new-header ul li::before {
  display: none !important;
}

.fh-hs-new-header {
  --fh-teal: #08444a;
  --fh-teal-bright: #008080;
  --fh-font: "Source Sans 3", "Source Sans Pro", sans-serif;
  --fh-header-pad-y: 12px;
  --fh-header-pad-x: 28px;
  --fh-header-top: 18px;

  color: #000;
  /* Always fixed: overlays first section and stays put — no absolute↔fixed jump */
  position: fixed;
  left: 50%;
  top: var(--fh-header-top);
  transform: translateX(-50%);
  z-index: 9999;
  width: calc(100% - 40px);
  max-width: 75rem;
  margin: 0 auto;
  padding: var(--fh-header-pad-y) var(--fh-header-pad-x);
  border-radius: 50px;
  border: 2px solid #fff;
  background: rgba(255, 255, 255, 0.8);
  box-shadow: 0 0 25px 0 rgba(0, 0, 0, 0.05);
  backdrop-filter: blur(7.5px);
  -webkit-backdrop-filter: blur(7.5px);
  transition: box-shadow 0.25s ease, border-radius 0.3s ease;
  box-sizing: border-box;
  font-family: var(--fh-font);
}

.fh-hs-new-header.is-scrolled {
  box-shadow: 0 0 25px 0 rgba(0, 0, 0, 0.1);
}

.fh-hs-new-header.show-mega-menu{
  border-radius: 28px;
}

.fh-hs-new-header .layout-header-fullwidth{
  max-width: 100%;
  margin: auto;
}

.fh-hs-new-header .layout-header-fullwidth .header-inner-wrapper{
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0;
  gap: 16px;
}

.fh-hs-new-header .layout-header-fullwidth .header-inner-wrapper .nav-left-part{
  display: flex;
  align-items: center;
  gap: 20px;
  min-width: 0;
  flex: 1;
}

.fh-hs-new-header .layout-header-fullwidth .header-inner-wrapper .nav-right-part{
  display: flex;
  align-items: center;
  gap: 12px;
  flex: none;
}

.fh-hs-new-header .site-branding{
  padding: 0;
  flex: none;
}

.fh-hs-new-header .site-logo a{
  display: flex;
  align-items: center;
}

.fh-hs-new-header .site-logo a .custom-logo{
  height: 34px;
  width: auto;
  display: block;
}

/* Primary nav */
.fh-hs-new-header .primary-navigation{
  display: flex;
  align-items: center;
}

.fh-hs-new-header .menu-button-container{
  display: none;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
  padding: 6px;
}

.fh-hs-new-header .menu-button-container span{
  display: block;
  width: 36px;
  height: 3px;
  background-color: var(--fh-teal);
  border-radius: 10px;
  margin: 0;
  transition: all ease 0.3s;
}

.fh-hs-new-header .menu-button-container.open span:first-child{
  transform: rotate(45deg);
  margin-top: 10%;
}

.fh-hs-new-header .menu-button-container.open span:nth-child(2){
  opacity: 0;
}

.fh-hs-new-header .menu-button-container.open span:last-child{
  transform: rotate(-45deg);
  margin-top: -58%;
}

.fh-hs-new-header .menu-wrapper{
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  align-items: center;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 4px;
}

.fh-hs-new-header .menu-wrapper > li{
  display: flex;
  cursor: pointer;
  position: static;
}

.fh-hs-new-header .menu-wrapper > li > a{
  display: inline-block;
  color: var(--fh-teal) !important;
  font-family: var(--fh-font);
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: 150%;
  padding: 8px 14px;
  text-decoration: none;
  text-transform: none;
  opacity: 1;
  transition: opacity 0.3s ease;
}

.fh-hs-new-header .menu-wrapper > li > a:hover{
  opacity: 0.8;
}

.fh-hs-new-header .menu-wrapper > li.menu-item-has-children > a,
.fh-hs-new-header .menu-wrapper > li.has-mega-menu > a{
  position: relative;
  padding-right: 28px;
  width: fit-content;
}

.fh-hs-new-header .menu-wrapper > li.menu-item-has-children > a::after,
.fh-hs-new-header .menu-wrapper > li.has-mega-menu > a::after{
  content: "";
  background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="10" height="6" viewBox="0 0 10 6" fill="none"><path d="M5.04206 5.99896C5.3986 6.00548 5.66351 5.87673 5.89343 5.65021C7.12133 4.44915 8.3559 3.25299 9.58214 2.04867C10.1169 1.52229 10.1369 0.868802 9.65045 0.386424C9.19227 -0.0682502 8.49085 -0.0682503 7.95937 0.423906C7.28627 1.04806 6.63817 1.69504 5.98006 2.33549C5.78347 2.52616 5.59187 2.72172 5.40027 2.91728C5.09038 3.23343 4.98375 3.23669 4.67052 2.92869C3.85081 2.12364 3.0311 1.31859 2.21138 0.515166C1.92815 0.236495 1.61992 0.00671357 1.18841 0.000194927C0.705244 -0.00795337 0.297053 0.239754 0.103787 0.681391C-0.0844802 1.11651 -0.0178367 1.52066 0.313714 1.86615C0.626938 2.19371 0.951824 2.50824 1.27671 2.82439C2.25137 3.77285 3.23103 4.71642 4.20402 5.66651C4.4456 5.90281 4.7305 6.01199 5.04206 5.99896Z" fill="%2308444A"/></svg>');
  width: 8px;
  height: 5px;
  display: block;
  position: absolute;
  top: 50%;
  right: 10px;
  transform: translateY(-50%) rotate(0deg);
  z-index: 2;
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  transition: transform 0.3s ease;
  transform-origin: center;
}

.fh-hs-new-header .menu-wrapper > li.menu-item-has-children.active > a::after,
.fh-hs-new-header .menu-wrapper > li.has-mega-menu.active > a::after{
  transform: translateY(-50%) rotate(180deg);
}

.fh-hs-new-header .menu-wrapper > li.menu-item-has-children.active > a,
.fh-hs-new-header .menu-wrapper > li.has-mega-menu.active > a{
  color: var(--fh-teal-bright) !important;
}

/* Header CTA buttons */
.fh-hs-new-header .layout-header-fullwidth .header-inner-wrapper .nav-right-part .is-style-button-secondary a,
.fh-hs-new-header .layout-header-fullwidth .header-inner-wrapper .nav-right-part .is-style-button-primary a,
.fh-hs-new-header .mobile-bottom-nav .is-style-button-secondary a,
.fh-hs-new-header .mobile-bottom-nav .is-style-button-primary a{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  border-radius: 50px;
  padding: 10px 15px;
  font-family: var(--fh-font);
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  letter-spacing: 0.36px;
  text-transform: uppercase;
  transition: background-color 0.25s ease, color 0.25s ease, opacity 0.25s ease;
  white-space: nowrap;
}

.fh-hs-new-header .layout-header-fullwidth .header-inner-wrapper .nav-right-part .is-style-button-secondary a,
.fh-hs-new-header .mobile-bottom-nav .is-style-button-secondary a{
  border: 2px solid var(--fh-teal);
  background: transparent;
  color: var(--fh-teal);
  gap: 10px;
}

.fh-hs-new-header .layout-header-fullwidth .header-inner-wrapper .nav-right-part .is-style-button-secondary a::after,
.fh-hs-new-header .mobile-bottom-nav .is-style-button-secondary a::after {
  content: "";
  display: block;
  flex: none;
  width: 8px;
  height: 11px;
  background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="369" height="601" viewBox="0 0 369 601" fill="none"><path d="M368.112 302.629C368.512 324.029 360.612 339.929 346.712 353.729C273.012 427.429 199.612 501.529 125.712 575.129C93.412 607.229 53.312 608.429 23.712 579.229C-4.18804 551.729 -4.18804 509.629 26.012 477.729C64.312 437.329 104.012 398.429 143.312 358.929C155.012 347.129 167.012 335.629 179.012 324.129C198.412 305.529 198.612 299.129 179.712 280.329C130.312 231.129 80.912 181.929 31.612 132.729C14.512 115.729 0.411958 97.2294 0.0119581 71.3294C-0.488042 42.3294 14.712 17.8294 41.812 6.22942C68.512 -5.07058 93.312 -1.07057 114.512 18.8294C134.612 37.6294 153.912 57.1294 173.312 76.6294C231.512 135.129 289.412 193.929 347.712 252.329C362.212 266.829 368.912 283.929 368.112 302.629Z" fill="%2308444A"/></svg>');
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  transition: transform 0.25s ease;
}

.fh-hs-new-header .layout-header-fullwidth .header-inner-wrapper .nav-right-part .is-style-button-secondary a:hover,
.fh-hs-new-header .mobile-bottom-nav .is-style-button-secondary a:hover{
  background: rgba(8, 68, 74, 0.06);
}

.fh-hs-new-header .layout-header-fullwidth .header-inner-wrapper .nav-right-part .is-style-button-secondary a:hover::after,
.fh-hs-new-header .mobile-bottom-nav .is-style-button-secondary a:hover::after {
  transform: translateX(4px);
}

.fh-hs-new-header .layout-header-fullwidth .header-inner-wrapper .nav-right-part .is-style-button-primary a,
.fh-hs-new-header .mobile-bottom-nav .is-style-button-primary a{
  border: 2px solid #fff;
  background: #008080;
  color: #fff;
}

.fh-hs-new-header .layout-header-fullwidth .header-inner-wrapper .nav-right-part .is-style-button-primary a:hover,
.fh-hs-new-header .mobile-bottom-nav .is-style-button-primary a:hover{
  opacity: 0.92;
}

/* Search */
.fh-hs-new-header .layout-header-fullwidth .header-inner-wrapper .nav-right-part .search-bar{
  height: 20px;
  display: flex;
  align-items: center;
}

.fh-hs-new-header .layout-header-fullwidth .header-inner-wrapper .nav-right-part .search-bar > svg{
  width: 20px;
  height: 20px;
  cursor: pointer;
  fill: var(--fh-teal);
}

.fh-hs-new-header .layout-header-fullwidth .header-inner-wrapper .nav-right-part .search-bar .search-overlay,
.fh-hs-new-header .mobile-bottom-nav .search-bar .search-overlay{
  position: fixed;
  width: 100%;
  left: 0;
  height: 100%;
  top: 0;
  background-color: rgba(8, 68, 74, 0.6);
  z-index: 10000;
  display: none;
}

.fh-hs-new-header .layout-header-fullwidth .header-inner-wrapper .nav-right-part .search-bar .search-overlay.is-open,
.fh-hs-new-header .mobile-bottom-nav .search-bar .search-overlay.is-open{
  display: block;
}

.fh-hs-new-header .layout-header-fullwidth .header-inner-wrapper .nav-right-part .search-bar .search-overlay .search-container,
.fh-hs-new-header .mobile-bottom-nav .search-bar .search-overlay .search-container{
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  max-width: 70rem;
  width: calc(100% - 40px);
  padding: 2.5rem;
}

.fh-hs-new-header .layout-header-fullwidth .header-inner-wrapper .nav-right-part .search-bar .search-overlay .search-container .close-icon,
.fh-hs-new-header .mobile-bottom-nav .search-bar .search-overlay .search-container .close-icon{
  position: absolute;
  top: -52px;
  right: 40px;
  width: 39px;
  height: 39px;
  cursor: pointer;
}

.fh-hs-new-header .layout-header-fullwidth .header-inner-wrapper .nav-right-part .search-bar .search-overlay .search-container .search-form{
  display: flex;
  border-radius: 15px;
  background-color: #fff;
  overflow: hidden;
}

.fh-hs-new-header .layout-header-fullwidth .header-inner-wrapper .nav-right-part .search-bar .search-overlay .search-container .search-form .fields-container{
  display: flex;
  width: 80%;
  padding: 19px 0;
}

.fh-hs-new-header .layout-header-fullwidth .header-inner-wrapper .nav-right-part .search-bar .search-overlay .search-container .search-form .fields-container > div,
.fh-hs-new-header .mobile-bottom-nav .search-bar .search-overlay .search-container .search-form .fields-container > div{
  width: 100%;
}

.fh-hs-new-header .layout-header-fullwidth .header-inner-wrapper .nav-right-part .search-bar .search-overlay .search-container .search-form .fields-container > div input{
  width: 100%;
  height: 100%;
  border: none;
  padding: 0 40px;
  font-size: 22px;
  font-weight: 600;
  color: #000;
  outline: none !important;
  font-family: var(--fh-font);
  box-sizing: border-box;
}

.fh-hs-new-header .layout-header-fullwidth .header-inner-wrapper .nav-right-part .search-bar .search-overlay .search-container .search-form .submit-container{
  width: 20%;
}

.fh-hs-new-header .layout-header-fullwidth .header-inner-wrapper .nav-right-part .search-bar .search-overlay .search-container .search-form .submit-container button,
.fh-hs-new-header .mobile-bottom-nav .search-bar .search-overlay .search-container .search-form .submit-container button{
  height: 100%;
  border-radius: 0 !important;
  width: 100%;
  padding: 16px 0 !important;
  font-size: 22px !important;
  font-weight: 700 !important;
  border: none;
  cursor: pointer;
  background: var(--fh-teal);
  color: #fff;
  font-family: var(--fh-font);
}

/* Mega menus */
.fh-hs-new-header .mega-menu-container{
  max-width: 75rem;
  margin: auto;
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 8px 28px 0 rgba(0, 0, 0, 0.12);
  position: absolute;
  z-index: 9999;
  top: calc(100% + 10px);
  left: 50%;
  transform: translateX(-50%);
  width: min(75rem, calc(100vw - 40px));
  padding: 0;
  overflow: hidden;
  border-top: 1px solid #00acaa;
  display: none;
}

.fh-hs-new-header .mega-menu-container.is-open{
  display: block;
}

.fh-hs-new-header .mega-menu-container .bottom-line{
  position: absolute;
  bottom: 0;
  width: 100%;
  z-index: 0;
  border-radius: 0 0 24px 24px;
  background: #f4f8f8;
  padding: 12px 64px;
  box-sizing: border-box;
}

.fh-hs-new-header .mega-menu-container .bottom-line ul{
  display: flex;
  gap: 36px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.fh-hs-new-header .mega-menu-container .bottom-line ul .bottom-line-item{
  display: flex;
  align-items: center;
  gap: 15px;
}

.fh-hs-new-header .mega-menu-container .bottom-line ul .bottom-line-item img{
  width: 26px;
  height: 26px;
  object-fit: contain;
}

.fh-hs-new-header .mega-menu-container .bottom-line ul .bottom-line-item .bottom-line-text p,
.fh-hs-new-header .mega-menu-container .bottom-line ul .bottom-line-item .bottom-line-text a{
  color: var(--fh-teal);
  font-size: 13px;
  font-weight: 600;
  line-height: normal;
  margin: 0;
}

.fh-hs-new-header .mega-menu-container .mega-menu-grid{
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.fh-hs-new-header .mega-menu-container .mega-menu-grid .mega-menu-column:not(:first-child){
  margin-right: 20px;
  margin-left: 20px;
}

.fh-hs-new-header .mega-menu-container .mega-menu-grid .mega-menu-column:first-child{
  margin-right: 0;
  padding-left: 46px !important;
}

.fh-hs-new-header .mega-menu-container .mega-menu-grid .mega-menu-column:last-child{
  margin-right: 0;
}

.fh-hs-new-header .mega-menu-container .mega-menu-grid .mega-menu-column ul{
  list-style: none;
  margin: 0;
  padding: 0;
}

.fh-hs-new-header .mega-menu-container .mega-menu-grid .mega-menu-column.column-template-page{
  background-color: #f4f8f8;
  margin: 0;
  padding: 25px 32px;
}

.fh-hs-new-header .mega-menu-container .mega-menu-grid .mega-menu-column.column-template-page h4{
  color: #767676;
  font-size: 12px;
  font-weight: 700;
  line-height: normal;
  padding: 0 11px;
  margin: 0 0 18px;
  min-height: 18px;
}

.fh-hs-new-header .mega-menu-container .mega-menu-grid .mega-menu-column.column-template-page .inside-title{
  margin-top: 43px;
}

.fh-hs-new-header .mega-menu-container .mega-menu-grid .mega-menu-column.column-template-page ul{
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.fh-hs-new-header .mega-menu-container .mega-menu-grid .mega-menu-column.column-template-page ul li{
  padding: 6px 11px;
  transition: background-color 0.3s ease;
  border-radius: 5px;
}

.fh-hs-new-header .mega-menu-container .mega-menu-grid .mega-menu-column.column-template-page ul li a{
  color: var(--fh-teal);
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  display: block;
  width: 100%;
}

.fh-hs-new-header .mega-menu-container .mega-menu-grid .mega-menu-column.column-template-page ul li:hover{
  background: #fff;
}

.fh-hs-new-header .mega-menu-container .mega-menu-grid .mega-menu-column.column-template-pageIcon{
  padding: 25px 0;
}

.fh-hs-new-header .mega-menu-container .mega-menu-grid .mega-menu-column.column-template-pageIcon > h4{
  color: #767676;
  font-size: 12px;
  font-weight: 700;
  line-height: 18px;
  min-height: 18px;
  margin: 0 0 16px;
  padding-left: 8px;
}

.fh-hs-new-header .mega-menu-container .mega-menu-grid .mega-menu-column.column-template-pageIcon ul{
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.fh-hs-new-header .mega-menu-container .mega-menu-grid .mega-menu-column.column-template-pageIcon ul li{
  border-radius: 5px;
  padding: 8px;
  transition: background-color 0.3s ease;
}

.fh-hs-new-header .mega-menu-container .mega-menu-grid .mega-menu-column.column-template-pageIcon ul li:hover{
  background-color: #e0ebeb;
}

.fh-hs-new-header .mega-menu-container .mega-menu-grid .mega-menu-column.column-template-pageIcon ul li a{
  display: flex;
  gap: 8px;
  text-decoration: none;
  flex-direction: column;
}

.fh-hs-new-header .mega-menu-container .mega-menu-grid .mega-menu-column.column-template-pageIcon ul li a img{
  width: 30px;
  height: 30px;
  object-fit: contain;
}

.fh-hs-new-header .mega-menu-container .mega-menu-grid .mega-menu-column.column-template-pageIcon ul li a div{
  display: flex;
  align-items: center;
  gap: 8px;
}

.fh-hs-new-header .mega-menu-container .mega-menu-grid .mega-menu-column.column-template-pageIcon ul li a .title{
  color: var(--fh-teal);
  font-size: 16px;
  font-weight: 600;
  line-height: normal;
  margin: 0;
}

.fh-hs-new-header .mega-menu-container .mega-menu-grid .mega-menu-column.column-template-pageIcon ul li a .desc{
  color: var(--fh-teal);
  font-size: 13px;
  font-weight: 400;
  line-height: 15px;
  margin: 0;
}

.fh-hs-new-header .mega-menu-container .mega-menu-grid .mega-menu-column.column-template-post{
  background-color: var(--fh-teal);
  margin: 0;
  padding: 18px 25px 48px;
  z-index: 1;
}

.fh-hs-new-header .mega-menu-container .mega-menu-grid .mega-menu-column.column-template-post a{
  text-decoration: none;
}

.fh-hs-new-header .mega-menu-container .mega-menu-grid .mega-menu-column.column-template-post .custom-post .post-image{
  height: 150px;
  object-fit: cover;
  border-radius: 10px;
  width: 100%;
  margin-bottom: 30px;
  display: block;
}

.fh-hs-new-header .mega-menu-container .mega-menu-grid .mega-menu-column.column-template-post .custom-post .custom-post-title{
  color: #fff;
  font-size: 18px;
  font-weight: 600;
  margin: 0 0 10px;
}

.fh-hs-new-header .mega-menu-container .mega-menu-grid .mega-menu-column.column-template-post .custom-post .post-info{
  color: #fff;
  font-size: 13px;
  font-weight: 400;
  line-height: 16px;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  -webkit-line-clamp: 6;
  line-clamp: 6;
  margin: 0 0 16px;
}

.fh-hs-new-header .mega-menu-container .mega-menu-grid .mega-menu-column.column-template-post .custom-post .btn{
  display: none;
}

.fh-hs-new-header .mega-menu-container .mega-menu-grid .mega-menu-column.column-template-pageDesc{
  padding: 25px 0;
}

.fh-hs-new-header .mega-menu-container .mega-menu-grid .mega-menu-column.column-template-pageDesc .mega-menu-descriptions{
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.fh-hs-new-header .mega-menu-container .mega-menu-grid .mega-menu-column.column-template-pageDesc .mega-menu-descriptions li{
  border-radius: 5px;
  transition: background-color 0.3s ease;
  padding: 8px;
}

.fh-hs-new-header .mega-menu-container .mega-menu-grid .mega-menu-column.column-template-pageDesc .mega-menu-descriptions li:hover{
  background: #e0ebeb;
}

.fh-hs-new-header .mega-menu-container .mega-menu-grid .mega-menu-column.column-template-pageDesc .mega-menu-descriptions p{
  margin: 0 0 4px;
}

.fh-hs-new-header .mega-menu-container .mega-menu-grid .mega-menu-column.column-template-pageDesc .mega-menu-descriptions .mega-menu-desc{
  color: var(--fh-teal);
  font-size: 13px;
  font-weight: 400;
  line-height: 15px;
  margin: 0;
  text-transform: none;
}

.fh-hs-new-header .mega-menu-container .mega-menu-grid .mega-menu-column.column-template-pageDesc .mega-menu-descriptions a{
  color: var(--fh-teal);
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  display: block;
}

.fh-hs-new-header .mega-menu-container .mega-menu-grid .mega-menu-column.column-template-pageDesc h4{
  color: #767676;
  font-size: 12px;
  font-weight: 700;
  line-height: 18px;
  margin: 0 0 16px;
  padding-left: 8px;
  min-height: 18px;
}

.fh-hs-new-header .mega-menu-container.mega-menu-pricing .mega-menu-grid{
  display: grid;
  grid-template-columns: 3fr 1fr;
}

.fh-hs-new-header .mega-menu-container.mega-menu-pricing .mega-menu-grid .column-template-pageIcon{
  padding: 25px 51px 75px;
}

.fh-hs-new-header .mega-menu-container.mega-menu-pricing .mega-menu-grid .column-template-pageIcon ul{
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.fh-hs-new-header .mega-menu-container.mega-menu-pricing .mega-menu-grid .column-template-pageIcon ul li{
  padding: 14px 10px;
}

.fh-hs-new-header .mega-menu-container.mega-menu-pricing .mega-menu-grid .column-template-pageIcon ul li a{
  flex-direction: column;
  gap: 10px;
}

.fh-hs-new-header .mega-menu-container.mega-menu-pricing .mega-menu-grid .column-template-pageIcon ul li a img{
  border-radius: 5px;
  background: var(--fh-teal);
  padding: 5px;
  width: 45px;
  height: 45px;
  box-sizing: border-box;
}

.fh-hs-new-header .mega-menu-container.mega-menu-pricing .mega-menu-grid .column-template-pageIcon ul li a > div{
  display: block;
}

.fh-hs-new-header .mega-menu-container.mega-menu-pricing .mega-menu-grid .column-template-post{
  padding-bottom: 75px;
}

.fh-hs-new-header .mega-menu-container.mega-menu-resources .mega-menu-grid .mega-menu-column.column-template-pageDesc,
.fh-hs-new-header .mega-menu-container.mega-menu-resources .mega-menu-grid .mega-menu-column.column-template-post{
  padding-bottom: 75px;
}

.fh-hs-new-header .mobile-bottom-nav{
  display: none;
}

/* Mobile */
@media screen and (max-width: 64rem) {
  .fh-hs-new-header {
    left: 16px;
    right: 16px;
    transform: none;
    width: auto;
    max-width: none;
    top: 12px;
    --fh-header-top: 12px;
    padding: 10px 16px;
    border-radius: 50px;
  }

  .fh-hs-new-header .layout-header-fullwidth .header-inner-wrapper .nav-right-part{
    display: none;
  }

  .fh-hs-new-header .menu-button-container{
    display: flex;
  }

  .fh-hs-new-header .nav-left-part{
    width: 100%;
    justify-content: space-between;
  }

  .fh-hs-new-header .primary-navigation{
    margin-left: auto;
  }

  .fh-hs-new-header .mobile-menu-container{
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: fixed;
    width: 100%;
    left: 200%;
    z-index: 999;
    background-color: #fff;
    height: 100vh;
    padding: 18px 36px 118px;
    transition: all ease-in-out 0.7s;
    opacity: 0;
    top: 72px;
    overflow: auto;
    overflow-x: hidden;
    box-sizing: border-box;
  }

  .fh-hs-new-header .mobile-menu-container.active{
    left: 0;
    opacity: 1;
  }

  .fh-hs-new-header .mobile-bottom-nav{
    display: block;
  }

  .fh-hs-new-header .mobile-bottom-nav .search-bar .search-btn{
    border: 2px solid var(--fh-teal);
    border-radius: 50px;
    margin-top: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 10px 14px;
    font-size: 18px;
    font-weight: 700;
    gap: 14px;
    color: var(--fh-teal);
    cursor: pointer;
    box-sizing: border-box;
    letter-spacing: 0.36px;
    text-transform: uppercase;
    font-family: var(--fh-font);
  }

  .fh-hs-new-header .mobile-bottom-nav .search-bar .search-btn svg{
    height: 20px;
    width: 20px;
    fill: var(--fh-teal);
  }

  .fh-hs-new-header .mobile-bottom-nav .search-bar .search-overlay .search-container .search-form{
    border-radius: 15px;
    background-color: #fff;
    overflow: hidden;
  }

  .fh-hs-new-header .mobile-bottom-nav .search-bar .search-overlay .search-container .search-form .fields-container{
    display: flex;
    width: 100%;
    padding: 19px 0;
  }

  .fh-hs-new-header .mobile-bottom-nav .search-bar .search-overlay .search-container .search-form .fields-container > div input{
    width: 100%;
    border: none;
    padding: 0 20px 9px;
    font-size: 22px;
    font-weight: 600;
    color: #000;
    outline: none !important;
    border-bottom: 1px solid var(--fh-teal);
    box-sizing: border-box;
    font-family: var(--fh-font);
  }

  .fh-hs-new-header .mobile-bottom-nav .is-style-button-secondary,
.fh-hs-new-header .mobile-bottom-nav .is-style-button-primary{
    width: 100%;
    margin-top: 16px;
  }

  .fh-hs-new-header .mobile-bottom-nav .is-style-button-secondary a,
.fh-hs-new-header .mobile-bottom-nav .is-style-button-primary a{
    width: 100%;
    box-sizing: border-box;
  }

  .fh-hs-new-header .menu-wrapper{
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 24px;
  }

  .fh-hs-new-header .menu-wrapper > li{
    display: grid;
    grid-template-columns: 1fr;
    width: 100%;
  }

  .fh-hs-new-header .menu-wrapper > li > a{
    font-size: 20px;
    padding-right: 30px;
  }

  .fh-hs-new-header .menu-wrapper > li.has-mega-menu > a::after{
    top: 14px;
    right: 0;
    transform: none;
  }

  .fh-hs-new-header .menu-wrapper > li.has-mega-menu.active > a::after{
    transform: rotate(180deg);
  }

  .fh-hs-new-header .mega-menu-container{
    position: relative;
    top: unset;
    left: unset;
    transform: none;
    border: none;
    box-shadow: none;
    border-radius: 0;
    background-color: #f4f8f8;
    width: 100%;
    margin: 12px 0 0;
    display: none;
  }

  .fh-hs-new-header .mega-menu-container.is-open{
    display: block;
  }

  .fh-hs-new-header .mega-menu-container .bottom-line{
    position: relative;
    padding: 25px 0 0;
  }

  .fh-hs-new-header .mega-menu-container .bottom-line ul{
    gap: 20px;
    justify-content: space-around;
  }

  .fh-hs-new-header .mega-menu-container .bottom-line ul .bottom-line-item{
    flex-direction: column;
    gap: 4px;
  }

  .fh-hs-new-header .mega-menu-container .mega-menu-grid{
    grid-template-columns: 1fr;
  }

  .fh-hs-new-header .mega-menu-container .mega-menu-grid .mega-menu-column:not(:first-child),
.fh-hs-new-header .mega-menu-container .mega-menu-grid .mega-menu-column:first-child{
    margin: 0;
    padding-left: 0 !important;
  }

  .fh-hs-new-header .mega-menu-container .mega-menu-grid .mega-menu-column.column-template-page{
    padding: 25px 0 0;
  }

  .fh-hs-new-header .mega-menu-container .mega-menu-grid .mega-menu-column.column-template-pageIcon,
.fh-hs-new-header .mega-menu-container .mega-menu-grid .mega-menu-column.column-template-pageDesc{
    padding: 0 0 16px;
  }

  .fh-hs-new-header .mega-menu-container .mega-menu-grid .mega-menu-column.column-template-pageIcon ul li a .desc,
.fh-hs-new-header .mega-menu-container .mega-menu-grid .mega-menu-column.column-template-pageDesc .mega-menu-descriptions .mega-menu-desc{
    display: none;
  }

  .fh-hs-new-header .mega-menu-container .mega-menu-grid .mega-menu-column.column-template-post{
    margin-top: 24px;
    border-radius: 10px;
    padding: 25px !important;
  }

  .fh-hs-new-header .mega-menu-container .mega-menu-grid .mega-menu-column.column-template-post .custom-post .btn{
    display: inline-flex;
    align-items: center;
    border-radius: 50px;
    background: #fff;
    color: var(--fh-teal);
    padding: 8px 16px;
    font-size: 14px;
    font-weight: 700;
  }

  .fh-hs-new-header .mega-menu-container.mega-menu-pricing .mega-menu-grid{
    display: block;
  }

  .fh-hs-new-header .mega-menu-container.mega-menu-pricing .mega-menu-grid .column-template-pageIcon{
    padding: 0;
  }

  .fh-hs-new-header .mega-menu-container.mega-menu-pricing .mega-menu-grid .column-template-pageIcon ul{
    display: flex;
    flex-direction: column;
    gap: 10px;
  }

  .fh-hs-new-header .mega-menu-container.mega-menu-pricing .mega-menu-grid .column-template-pageIcon ul li a{
    flex-direction: row;
    align-items: center;
  }

  .fh-hs-new-header .mega-menu-container.mega-menu-pricing .mega-menu-grid .column-template-pageIcon ul li a img{
    width: 35px;
    height: 36px;
    padding: 4px;
  }

  .fh-hs-new-header .mega-menu-container.mega-menu-pricing .mega-menu-grid .column-template-pageIcon ul li a .desc{
    display: none;
  }

  .fh-hs-new-header .mega-menu-container.mega-menu-resources .mega-menu-grid .mega-menu-column.column-template-pageDesc,
.fh-hs-new-header .mega-menu-container.mega-menu-resources .mega-menu-grid .mega-menu-column.column-template-post{
    padding-bottom: 16px;
  }
}

@media screen and (max-width: 48rem) {
  .fh-hs-new-header .menu-button-container span{
    width: 26px;
    height: 2px;
  }
}

@media (max-width: 42rem) {
  .fh-hs-new-header {
    left: 12px;
    right: 12px;
    padding: 8px 14px;
  }

  .fh-hs-new-header .mobile-bottom-nav .search-bar .search-overlay .search-container .close-icon {
    top: 0;
    width: 26px;
    height: 26px;
  }
}

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