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

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

/* 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: block;
  font-size: 16px;
  padding: 18px 20px;
  width: 100%;
  border-radius: 6px;
}
form input[type=text]::focus-visible,
form input[type=search]::focus-visible,
form input[type=email]::focus-visible,
form input[type=password]::focus-visible,
form input[type=tel]::focus-visible,
form input[type=number]::focus-visible,
form input[type=file]::focus-visible,
form select::focus-visible,
form textarea::focus-visible {
  outline: 0;
}
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;
}


/* Table */

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

/* Table cells */

td,
th {
  vertical-align: top;
}

/* Table header */

thead th {
  vertical-align: bottom;
}
@media screen and (max-width: 991px) {
  table {
    display: block;
  }
}

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

.scale-header .content-wrapper {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
.scale-dark .scale-header__menu-wrap ul > li > a {
  color: #FFFFFF;
}
.scale-light .scale-header__menu-wrap ul>li>a {
  color: #000000;
}
.scale-header__menu-wrap ul> li:not(last-child) {
  margin-right: 10px;
}
.scale-header__menu-wrap ul> li > a {
  display: block;
  padding: 10px;
}
.scale-header__right-bar svg {
  width: 16px;
  height: 16px;
  vertical-align: middle;
}


header.header {
  background-color: rgba(255, 255, 255, 1.0);
}
header.header {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  padding: 1.5rem;
  position: relative;
  z-index: 9;
}
.header-logo {
  display: inline-block;
  font-size: 1.25rem;
  line-height: inherit;
  margin-right: 1rem;
  padding-bottom: .3125rem;
  padding-top: .3125rem;
  white-space: nowrap;
}
.header-logo a img {
  max-width: 200px;
  vertical-align: middle;
}
.navbar-toggle {
  background-color: transparent;
  border: 1px solid transparent;
  border-radius: .25rem;
  color: rgba(0, 0, 0, .5);
  cursor: pointer;
  font-size: 1.25rem;
  line-height: 1;
  padding: .25rem .75rem;
}
.navbar-toggle-icon {
    background: no-repeat 50%;
    background-image: url(https://21539487.fs1.hubspotusercontent-na1.net/hubfs/21539487/raw_assets/public/Heffron_April_2022/images/navbar-toggle.svg);
    background-size: 100% 100%;
    content: "";
    display: inline-block;
    height: 1.5em;
    vertical-align: middle;
    width: 1.5em;
}
.hright-wrap {
  align-items: center;
  display: none;
  flex-basis: 100%;
  flex-grow: 1;
  margin-top: 1rem;
}
.custom-menu-primary-2 {
  margin-right: auto
}

.custom-menu-primary-2 ul {
  display: flex;
  flex-direction: column;
  list-style: none;
  margin-bottom: 0;
  padding-left: 0
}

.custom-menu-primary-2 ul li {
  position: relative
}

.custom-menu-primary-2 ul li a {
  color: #4a4b4c;
  display: block;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: -.18px;
  line-height: 28px;
  padding: .5rem 0
}

.custom-menu-primary-2 ul li a:hover,.custom-menu-primary-2 ul li.open_child>a {
  color: #37bebd
}

.custom-menu-primary-2 ul.level-1>li.has-submenu>a:after,.custom-menu-primary-2 ul.level-2>li.has-submenu>a:after {
  border-bottom: 0;
  border-left: .3em solid transparent;
  border-right: .3em solid transparent;
  border-top: .3em solid;
  content: "";
  display: inline-block;
  margin-left: .255em;
  vertical-align: .255em
}

.custom-menu-primary-2 ul.submenu.level-2 {
  background-clip: padding-box;
  border: 0;
  border-radius: 0 0 4px 4px;
  color: #212529;
  display: none;
  font-size: 1rem;
  left: 0;
  list-style: none;
  margin: 0;
  min-width: 10rem;
  padding: 0;
  position: static;
  text-align: left;
  top: 100%;
  z-index: 1000
}

.custom-menu-primary-2 ul.submenu.level-2>li {
  margin: 0;
  padding: 0
}

.custom-menu-primary-2 ul.submenu.level-2 li:not(:last-child)>a {
  border-bottom: 1px solid #f8f8f8
}

.custom-menu-primary-2 ul.submenu.level-2>li a {
  padding: .75rem;
  text-align: left;
  white-space: nowrap;
  width: 100%
}

.custom-menu-primary-2 ul.submenu.level-3 {
  display: none
}

.custom-menu-primary-2 ul.submenu.level-3>li a {
  padding-left: 20px
}

.custom-menu-primary-2 ul.submenu.level-4>li a {
  padding-left: 40px
}

.custom-menu-primary-2 ul.submenu.level-5>li a {
  padding-left: 60px
}
.hright-inner {
    display: flex;
}
.search-btn a {
    border: 1px solid transparent;
    border-radius: 500px;
    display: inline-block;
    font-size: 1rem;
    font-weight: 600 !important;
    letter-spacing: -.18px;
    line-height: 1.5;
    margin: 1em 0;
    padding: .75rem 1.5rem;
    text-align: center;
    transition: color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;
    vertical-align: middle;
    background: transparent !important;
}
.search-btn a, .search-btn a:focus {
    color: rgba(74, 75, 76, 1.0);
}
.search-btn a {
  border: none;
}
.search-btn a:hover {
    color: rgba(142, 142, 142, 1.0);
}
.search-btn a span {
    display: inline-block;
    margin-right: .5rem;
}
.search-btn a img {
    margin-left: 4px;
    margin-right: 1em;
    height: auto;
    vertical-align: middle;
}
.login-btn a {
  border: 1px solid transparent;
  border-radius: 500px;
  display: inline-block;
  font-size: 1rem;
  font-weight: 400;
  letter-spacing: -.18px;
  line-height: 1.5;
  margin: 1em 0;
  padding: .75rem 1.5rem;
  text-align: center;
  transition: color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;
  vertical-align: middle;
  white-space: nowrap;
}
.login-btn a {
    background: transparent linear-gradient(108deg, rgba(55, 190, 189, 1), rgba(5, 60, 114, 1)) 0 0 no-repeat padding-box;
    color: rgba(255, 255, 255, 1);
}
.login-btn a:after {
    border-bottom: 0;
    border-left: .3em solid transparent;
    border-right: .3em solid transparent;
    border-top: .3em solid;
    content: "";
    display: inline-block;
    margin-left: .255em;
    vertical-align: .255em;
}
.login-btn a:hover, .login-btn a:focus {
    background: transparent linear-gradient(108deg,rgba(55, 190, 189, 1),rgba(5, 60, 114, 1)) 0 0 no-repeat padding-box;
    color: rgba(255, 255, 255, 1.0);
}
.login-dropdwn {
    background-clip: padding-box;
    border: 1px solid rgba(0,0,0,.15);
    border-radius: .25rem;
    display: none;
    float: left;
    font-size: 1rem;
    left: auto;
    list-style: none;
    margin: 0;
    min-width: 10rem;
    padding: .5rem 0;
    position: absolute;
    right: 0;
    text-align: left;
    top: 100%;
    width: 100%;
    z-index: 1000;
}
.login-dropdwn {
    background-color: rgba(255, 255, 255, 1.0);
}
.login-row {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -15px;
}
.login-col {
    padding: 0 15px;
    position: relative;
    width: 100%;
}
.login-dropdwn h3 {
    display: block;
    font-size: .875rem;
    margin-bottom: 0;
    padding: .5rem 1.5rem;
    white-space: nowrap;
}
.login-dropdwn h3 {
    color: rgba(108, 117, 125, 1.0);
}
.login-col.col9 a {
    clear: both;
    display: block;
    font-weight: 400;
    overflow: hidden;
    padding: .25rem 1.5rem;
    text-overflow: ellipsis;
    white-space: nowrap;
    width: 100%;
}
.login-dropdwn a {
    color: rgba(33, 37, 41, 1.0);
}
.dropdown-divider {
    border-top: 1px solid;
    height: 0;
    margin: .5rem 0;
    overflow: hidden;
}
.dropdown-divider {
    border-color: rgba(233, 236, 239, 1.0);
}
.hquick-link {
    padding: 0 32px 16px;
}
form label, form label+a {
  display: inline-block;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: -.14px;
  line-height: 21px;
  margin-bottom: .5rem;
}
.hsearch form label {
  line-height: normal;
  margin: 0;
}
.hsearch form label {
  color: rgba(142, 142, 142, 1);
}
.hsearch form input[type=text] {
  border: 1px solid;
  border-radius: 8px;
  color: #000;
  font-family: inherit;
  height: auto;
  line-height: 21px;
  margin: 2px 0 0;
  outline: none;
  padding: 1rem;
  width: 100%;
}
.hsearch form input[type=text] {
    border-color: rgba(55, 190, 189, 1);
}
.hsearch .hs-search-field--open .hs-search-field__suggestions {
    background: #fff;
    border: 1px solid #000;
    position: absolute;
    width: 100%;
    z-index: 9;
    font-size: 1.075rem;
}
.hsearch .hs-search-field__suggestions li a, .hsearch li#results-for {
    padding: 5px 10px;
}
.search-links .search-items h3 {
  margin-bottom: 0;
}
.search-links .search-col h5 {
  font-family: Merriweather;
  font-size: 0.938rem;
  color: rgba(74, 75, 76, 1.0);
  font-weight: 600;
  margin-bottom: .6rem;
}
.search-links .search-col ul li a {
  font-weight: 600 !important;
}
.search-links .search-col h4 {
  font-family: 'Merriweather';
}
@media (min-width: 1168px) {
  .custom-menu-primary-2 ul.submenu.level-1 {
    flex-direction:row
  }

  .custom-menu-primary-2 ul.submenu.level-1>li {
    margin-right: 1.5rem;
    padding: 1.5em 0
  }

  .custom-menu-primary-2 ul.submenu.level-1>li a {
    padding: .5rem
  }

  .custom-menu-primary-2 ul.submenu.level-1 li.open_child>a {
    color: #37bebd
  }

  .custom-menu-primary-2 ul.submenu.level-2 {
    background-color: #fff;
    position: absolute
  }

  .custom-menu-primary-2 ul.level-2>li.has-submenu>a:after {
    border-bottom: .3em solid transparent;
    border-left: .3em solid;
    border-right: 0;
    border-top: .3em solid transparent;
    content: "";
    display: inline-block;
    margin-left: .5em;
    text-align: left;
    vertical-align: .05em
  }

  .custom-menu-primary-2 ul.submenu.level-2>li:last-child>a {
    border-radius: 0 0 4px 4px
  }

  .custom-menu-primary-2 ul.submenu.level-2>li a {
    text-align: left!important
  }

  .custom-menu-primary-2 ul.submenu.level-2>li.open_child>a,.custom-menu-primary-2 ul.submenu.level-2>li>a:hover {
    background-color: #37bebd;
    color: #fff
  }

  .custom-menu-primary-2 ul.submenu.level-3 {
    background: #f5f6f9;
    display: none;
    left: 100%;
    padding: 5px 0;
    position: absolute;
    text-align: left;
    top: 0
  }

  .custom-menu-primary-2 .open_child>ul.submenu.level-3 {
    display: block
  }

  .custom-menu-primary-2 ul.submenu.level-3>li a {
    line-height: 2;
    padding-bottom: 0;
    padding-top: 0;
    text-align: left
  }

  .custom-menu-primary-2 ul.submenu.level-3>li a:hover,.custom-menu-primary-2 ul.submenu.level-3>li.open_child a {
    background: #eee;
    color: inherit
  }

  .custom-menu-primary-2 ul.submenu.level-3>li>a {
    font-weight: 700;
    line-height: 2;
    padding: 0 8px 0 15px;
    text-align: left
  }

  .custom-menu-primary-2 ul.submenu.level-4>li>a {
    padding-left: 30px
  }

  .custom-menu-primary-2 ul.submenu.level-5>li>a {
    padding-left: 45px
  }

  .custom-menu-primary-2 ul.submenu.level-3 li:not(:last-child)>a {
    border-bottom: none
  }
  .login-dropdwn {
    width: 50%;
}
  .login-col.col3 {
    flex: 0 0 25%;
    max-width: 25%;
}
  .login-col.col9 {
    flex: 0 0 75%;
    max-width: 75%;
}
  .login-dropdwn h3 {
    white-space: normal;
}
}

@media (max-width: 1565px) and (min-width:1168px) {
  .custom-menu-primary-2 ul.submenu.level-1>li {
    margin-right:.5rem
  }
  .header-logo {
        margin-right: 1rem
    }

    .search-btn a {
        padding: .75rem .5rem
    }
}

@media (max-width: 1380px) and (min-width:1168px) {
  .custom-menu-primary-2 ul.submenu.level-1>li {
    margin-right:0
  }
}

@media (max-width: 1310px) and (min-width:1168px) {
  .custom-menu-primary-2 ul.submenu.level-1>li a {
    font-size:14px
  }
}

@media (max-width: 1200px) and (min-width:1168px) {
  .custom-menu-primary-2 ul.submenu.level-1>li a {
    padding:.5rem .3rem
  }
}

.open_child>ul {
  display: block!important
}
@media (min-width: 1168px) {
  .has-submenu.menu-item:hover>ul {
    display:block!important
  }

  .submenu.level-1>.has-submenu.menu-item:hover>a {
    color: #37bebd
  }

  .submenu.level-2>.has-submenu.menu-item:hover>a {
    background-color: #37bebd;
    color: #fff
  }
}

.search-dropdwn {
  background-color: #fff;
  box-shadow: 0 2px 2px hsla(0,0%,8%,.15),0 2px 8px hsla(0,0%,8%,.15);
  display: none;
  position: absolute;
  right: 0;
  top: 100%;
  width: 100%;
  z-index: 9999;
}
.header-acc {
  position: static;
}
.hsearch {
  padding: 16px;
  width: 100%;
}
.search-dropdwn hr {
  border-color: rgba(0, 0, 0, 0.1);
}
hr {
  border: 0;
  border-top: 1px solid rgba(0, 0, 0, .1);
  margin-bottom: 1rem;
  margin-top: 1rem;
}
.hsearch .hs-search-field {
  position: relative;
}
.hsearch form {
  background-color: transparent!important;
  line-height: 1;
  margin: 0 0 .5rem;
  max-width: 100%;
  padding: 0;
}
.hs-search-field__suggestions {
  list-style: none;
  margin: 0;
  padding: 0;
  color: #8E8E8E;
}
.search-dropdwn {
  font-size: 1.075rem;
}
.search-dropdwn a {
  color: #37BEBD;
  font-weight: inherit !important;
}
.search-dropdwn a:hover, .search-dropdwn a:focus, .search-dropdwn a:active {
    color: #268382;
}
@media (min-width: 1168px) {
  header.header {
    flex-flow: row nowrap;
    justify-content: flex-start;
    padding: 0 1.5rem;
  }
  .header-logo {
    margin-right: 4rem;
  }
  .navbar-toggle {
    display: none;
  }
  .hright-wrap {
    display: flex;
    flex-basis: auto;
    margin-top: 0;
  }
  .custom-menu-primary-2 ul.submenu.level-1 {
    flex-direction: row;
  }
  .custom-menu-primary-2 ul.submenu.level-1>li {
    margin-right: 1.5rem;
    padding: 1.5em 0;
  }
  .custom-menu-primary-2 ul.submenu.level-1>li a {
    padding: .5rem;
  }
  .search-dropdwn {
    width: 75%;
  }
}
.footer {
    background-color: rgba(74, 75, 76, 1) !important;
    color: #DCDDDE !important;
}
.footer__container {
    max-width: 1280px;
    width: 100%;
    margin: 0 auto;
    padding: 0 15px;
}
.footer {
    display: block;
    overflow: hidden;
}

.footer-bot .footer-row {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -15px;
    padding: 8em 0 4em
}

.footer-col {
    padding: 0 15px;
    position: relative;
    width: 100%
}

.footer-menu {
    align-items: center;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    max-width: 100%;
    padding: 1.5rem;
    position: relative
}

.footer-menu ul {
    display: flex;
    flex-direction: column;
    list-style: none;
    margin: 0 auto 0 0;
    padding: 0
}

.footer-menu ul li {
    margin-right: 1em
}

.footer-menu ul li a {
    display: block;
    font: 600 14px/28px Open Sans,-apple-system,BlinkMacSystemFont,Segoe UI,Roboto,Helvetica Neue,Arial,Noto Sans,sans-serif,Apple Color Emoji,Segoe UI Emoji,Segoe UI Symbol,Noto Color Emoji;
    letter-spacing: -.16px;
    padding: .5rem 0
}
.footer-menu ul li a,
.footer a {
    color: rgba(255, 255, 255, 1);
}
.footer-menu ul li a:hover,
.footer a:hover {
    color: rgba(190, 190, 192, 1.0);
}
.footer-social {
    align-items: center;
    display: flex;
    flex: 1 0 100%;
    justify-content: flex-start;
    margin: 2em 0;
    max-width: 100%
}
.social {
    width: 56px;
}
.footer p, .footer span {
  color: #DCDDDE !important;
  line-height: 21px;
}
.footer p {
    margin-bottom: .8rem;
}
.disclaimer p {
    color: rgba(142, 142, 142, 1) !important;
    margin: 0;
}
.footer-logo {
    flex-basis: 0;
    flex-grow: 1;
    max-width: 100%
}

.footer-logo a {
  flex: 1 0 100%;
  display: block;
  line-height: 0;
}

.footer-logo a img {
    max-width: 25%;
    min-width: 150px;
    padding: 2rem 0;
    width: auto!important
}

.fbot-wrap {
    flex: 1 0 100%;
    max-width: 100%
}

.footer .disclaimer p {
    font: 400 12px/17px Open Sans,-apple-system,BlinkMacSystemFont,Segoe UI,Roboto,Helvetica Neue,Arial,Noto Sans,sans-serif,Apple Color Emoji,Segoe UI Emoji,Segoe UI Symbol,Noto Color Emoji
}

.footer .sub-text {
    display: flex;
    flex-wrap: wrap;
    font: 400 14px/21px Open Sans,-apple-system,BlinkMacSystemFont,Segoe UI,Roboto,Helvetica Neue,Arial,Noto Sans,sans-serif,Apple Color Emoji,Segoe UI Emoji,Segoe UI Symbol,Noto Color Emoji;
    justify-content: space-between
}

.policy-link ul {
    display: flex;
    flex-direction: row;
    list-style: none;
    margin: 0;
    padding: 0;
    flex-direction: row !important;
}
.footer-top h3 {
  color: rgba(255, 255, 255, 1) !important;
}
.policy-link ul li {
    margin: 0 0 .8rem;
    padding: 0
}

.policy-link ul li a {
    display: block;
    margin: 0;
    padding: 0
}

.policy-link ul li:not(:first-child)>a {
    margin-left: 1rem
}

.modal-form,body.open-form {
    overflow: hidden
}

.modal-form {
    align-items: center;
    display: none;
    height: 100%;
    justify-content: center;
    left: 0;
    outline: 0;
    position: fixed;
    top: 0;
    transition: opacity .15s linear;
    width: 100%;
    z-index: 1050;
    z-index: 10000
}

.open-form .modal-form {
    display: block;
    overflow-x: hidden;
    overflow-y: auto!important;
    padding-right: 17px
}

.modal-dialog {
    margin: .5rem;
    opacity: 0;
    pointer-events: none;
    position: relative;
    transform: translateY(-50%);
    transition: all .3s ease-out;
    width: auto
}

.modal-form.open .modal-dialog {
    opacity: 1;
    transform: translate(0)
}

.modal-content {
    background-clip: padding-box;
    background-color: #fff;
    border: 1px solid rgba(0,0,0,.2);
    border-radius: .3rem;
    display: flex;
    flex-direction: column;
    outline: 0;
    pointer-events: auto;
    position: relative;
    width: 100%
}

.modal-header {
    align-items: flex-start;
    border-bottom: 1px solid #dee2e6;
    border-top-left-radius: calc(.3rem - 1px);
    border-top-right-radius: calc(.3rem - 1px);
    display: flex;
    justify-content: space-between;
    padding: 1rem
}

.modal-close {
    color: #000;
    cursor: pointer;
    float: right;
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1;
    margin: -1rem -1rem -1rem auto;
    opacity: .5;
    padding: 1rem;
    text-shadow: 0 1px 0 #fff
}

.modal-body {
    flex: 1 1 auto;
    padding: 1rem 1rem 0;
    position: relative
}

.modal-form form {
    background-color: transparent!important;
    margin: 0;
    max-width: 100%;
    padding: 0
}

.modal-form form .hs-richtext {
    margin: 0
}

.modal-form .hs-form-field {
    display: flex;
    flex-direction: column;
    margin-bottom: .5rem
}

.modal-form .hs-form-field>label {
    margin-bottom: 0
}

.modal-form .hs-fieldtype-checkbox.hs-form-field>label {
    margin-bottom: .5rem
}

.modal-form ::-webkit-input-placeholder,.modal-form option:disabled {
    color: #6c757d;
    opacity: 1
}

.modal-form .hs-fieldtype-checkbox {
    margin-bottom: 0
}

.modal-form select {
    height: 50px;
    padding: 0
}

.modal-form ul[role=checkbox] li {
    margin: 0
}

.modal-form ul[role=checkbox] li label {
    font-size: 1.075rem;
    font-weight: 400;
    line-height: 1.5;
    margin: 0
}

.modal-form ul[role=checkbox] li label span {
    color: #8e8e8e;
    font-size: 14px;
    font-weight: 400;
    letter-spacing: -.14px;
    line-height: 21px
}

.modal-form form .hs-submit {
    padding: 1rem 0 0
}

.modal-form form .actions {
    align-items: center;
    border-bottom-left-radius: calc(.3rem - 1px);
    border-bottom-right-radius: calc(.3rem - 1px);
    border-top: 1px solid #dee2e6;
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    margin: 0 -.25rem;
    padding: .75rem 0
}

.modal-form form .hs-button {
    font-size: .875rem;
    margin: 0
}

.modal-form form .close-btn {
    background: transparent;
    border: 3px solid #053c72;
    border-radius: 500px;
    color: #053c72;
    cursor: pointer;
    display: inline-block;
    font-size: .875rem;
    font-weight: 400;
    letter-spacing: -.18px;
    line-height: 1.5;
    margin: 0;
    padding: .75rem 1.5rem;
    text-align: center;
    transition: color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;
    vertical-align: middle
}

.modal-form form .hs-error-msgs label {
    color: #ef6b51;
    margin-top: .35rem
}

.modal-backdrop {
    background-color: #000;
    height: 100vh;
    left: 0;
    opacity: 0;
    pointer-events: none;
    position: fixed;
    top: 0;
    transition: opacity .15s linear;
    width: 100vw;
    z-index: 1040
}

.modal-backdrop.show {
    opacity: .5;
    pointer-events: auto
}
.footer-top .footer-btn a:hover {
    background-color: rgba(255, 255, 255, 1.0);
    color: rgba(74, 75, 76, 1.0);
    border-color: rgba(248, 249, 250, 1.0)

 !important;
}
.footer-top .fbox-items {
    background-color: rgba(55, 190, 189, 1);
}
.footer-top .fbox-items .cta p {
  color: #ffffff !important;
}
@media (min-width: 576px) {
    .modal-dialog {
        margin:1.75rem auto;
        max-width: 500px
    }
}

@media (min-width: 1168px) {
    .footer-bot .footer-row {
        padding:4em 0
    }

    .footer-menu {
        flex: 0 1 60%;
        padding: 0 1.5rem
    }

    .footer-menu ul {
        flex-direction: row
    }

    .footer-menu ul li {
        padding: 1.5em 0
    }

    .footer-social {
        flex: 0 1 40%;
        justify-content: flex-end
    }

    .ie .footer-social {
        flex: 0 1 33%
    }

    .footer-social .social-links {
        justify-content: flex-end
    }
}
/* 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%;
}

.page-center {
  margin: 0 auto;
  width: 100%;
}
:root {
  --ts-duration-factor: 1;
}
.scale--relative {
  position: relative;
}
button,
.scale-button,
.hs-button,
.hs-blog-post-listing__post-button,
.scale-solid-regular,
.scale-solid-regular-primary-background,
.scale-border-regular,
.scale-border-primary {
  display: inline-block;
  transition: background-color calc(.4s*var(--ts-duration-factor,1)) ease-in-out,border-color calc(.4s*var(--ts-duration-factor,1)) ease-in-out,color calc(.4s*var(--ts-duration-factor,1)) ease-in-out,opacity calc(.4s*var(--ts-duration-factor,1)) ease-in-out,box-shadow calc(.4s*var(--ts-duration-factor,1)) ease-in-out;
}
.scale-link,
.scale-link-back {
  padding: 0 !important;
  position: relative;
  color: var(--clr-cta-primary);
}
.scale-link::after,
.scale-link-back::after {
  content: '';
  background-color: var(--clr-cta-primary);
  bottom: auto;
  height: 2px;
  left: auto;
  right: -20px;
  top: 50%;
  -webkit-transform: translateY(-1px);
  transform: translateY(-1px);
  width: 10px;
  display: block;
  position: absolute;
}
.scale-header__intro {
  max-width: 767px;
  margin: 0 auto;
}
.scale-link::before,
.scale-link-back::before {
  content: '';
  background-color: transparent;
  bottom: auto;
  box-shadow: inset -2px 2px 0 0;
  height: 8px;
  left: auto;
  right: -20px;
  top: 50%;
  transform: translateY(-4px) rotate(45deg);
  transform-origin: 50% 50%;
  width: 8px;
  display: block;
  position: absolute;
}
.scale-link-back::before {
  left: -20px;
  right: auto;
  transform: translateY(-4px) rotate(225deg);
}
.scale-link-back::after {
  left: -20px;
  right: auto;
}
.scale-dark .scale-link,
.scale-dark .scale-link-back {
  color: var(--clr-cta-lt);
}
.scale-dark .scale-link::after,
.scale-dark .scale-link-back::after {
  background-color: var(--clr-cta-lt);
}
.hs_cos_wrapper_type_icon svg,
.scale-icon svg {
  display: block;
  height: 1em;
  width: 1em;
}
.scale--no-list {
  padding: 0;
  margin: 0;
  list-style: none;
}
.scale-rich-text ul {
  padding-inline-start: 42px;
}
.scale-rich-text ul li {
  list-style: none;
  position: relative;
  margin: 18px 0;
}
.scale-rich-text ul li::before {
  background-color: var(--clr-bullet-dk);
  content: '';
  height: 2px;
  left: -42px;
  position: absolute;
  top: 9px;
  width: 22px;
}
.scale-dark .scale-rich-text ul li::before {
  background-color: var(--clr-bullet-lt);
}
.scale-light .scale-rich-text ul li::before {
  background-color: var(--clr-bullet-dk);
}
.scale-full--image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.scale-full--image img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.scale-dark {
  background-color: var(--clr-bg-dk);
  color: var(--clr-text-lt);
}
.scale-light {
  background-color: var(--clr-bg-lt);
  color: var(--clr-text-lt);
}
.page-center {
  margin: 0 auto;
  width: 100%;
  padding: 0 20px;
}
.hs-menu-wrapper ul {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  margin: 0;
  padding-left: 0;
}
img {
  max-width: 100%;
  width: auto;
  height: auto;
}
.scale-light .scale-swiper .swiper-button-next, 
.scale-light .scale-swiper .swiper-button-prev {
  color: var(--clr-text-lt);
}
.scale-light .scale-swiper .swiper-pagination-bullet {
  background-color: var(--clr-primary);
}
.scale-dark .scale-swiper .swiper-button-next, 
.scale-dark .scale-swiper .swiper-button-prev {
  color: var(--clr-text-dk);
}
.scale-dark .scale-swiper .swiper-pagination-bullet {
  background-color: var(--clr-bg-dk);
}
.scale-swiper .swiper-pagination {
  margin-top: 40px;
}
.scale-swiper .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  transition: all calc(.1s * 1) ease-in-out;
}
.scale-swiper .swiper-pagination-bullet-active {
  width: 32px;
  border-radius: 52px;
}
.scale-continuous__slider {
  transition-timing-function: linear !important;
}
.scale-header__intro--left {
  margin-left: 0;
}
.scale-header__intro--right {
  margin-right: 0;
}
.scale-header__intro--center {
  margin: 0 auto;
}
.hs-web-interactive-inline {
  display: inline-block;
}
.hs-web-interactive-wrapper a p {
  display: inline-block;
}
.hs-web-interactive-inline a {
  text-decoration: underline;
  text-underline-offset: 2px;
}
@media only screen and (max-width: 768px) {
  .scale-bg-image__hide-mobile {
    display: none;
  }
}

/* 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;
  }
}
:root {
    --swiper-navigation-size: 26px !important;
}