/* 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;
}
ul,
li {
  list-style: none;
  padding-inline-start: 0;
}
a {
  text-decoration: none;
}
/*! 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)
*/

:root {
  /* --column-gap: 2.13%; */
  --column-gap: 1%;
}

html {
  scroll-behavior: smooth;
  scroll-margin-block-start: 20px;
}

/* add space for the fixed header */
.body-container-wrapper {
  padding-top: 65px;
}

.hs-tools-menu {
  display: none !important;
}

.container {
  max-width: 1600px;
}

/* start code before march/23 */

/* Mobile layout */

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

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

.container,
.row-fluid .container[class*='span'] {
  float: none;
  width: 100%;
  max-width: 1400px;
  padding: 0 15px;
  margin: 0 auto;
}
.container:before,
.container:after,
.row-fluid .container[class*='span']:after,
.row-fluid .container[class*='span']:before {
  clear: both;
  content: '';
  display: table;
}

.container.container_780,
.row-fluid .container.container_780[class*='span'] {
  max-width: 780px;
}
.container.container_890,
.row-fluid .container.container_890[class*='span'] {
  max-width: 890px;
}
.row-fluid .container_right[class*='span'],
.container_right {
  padding-right: calc((100% - 1170px) / 2);
}
.row-fluid .container_left[class*='span'],
.container_left {
  padding-left: calc((100% - 1170px) / 2);
}

.container_1300,
.row-fluid .container_1300[class*='span'] {
  max-width: 1300px;
}

/* end code before march/23 */

/* Desktop layout */

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

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

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

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

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

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

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

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

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

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

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

  .row-fluid .span1 {
    width: calc(8.33% - var(--column-gap) * 0.9166);
  }
}

@media (max-width: 768px) {
  /* add space for the fixed header */
  .body-container-wrapper {
    padding-top: 180px;
  }
}
.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; */
  padding: 0;
}

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

:root {
  /* Basic colors */
  --white: #fff;
  --black: #000;
  --coral-pink: #fd6061;
  --coral-pink-light: #fe9697;
  --blue-night: #003957;
  --blue-sky: #1672a3;
  --blue-light: #e5f2f8;
  --blue-dark: #196795;
  --blue-fountain: #65a2c2;
  --blue-bright: #00b1ff;
  --blue-chathams: #0f4e79;
  --gray-slate: #43545d;
  --gray-dark: #525252;
  --gray-light: #f5f5f5;
  --gray-lightest: #4a4a4a;
  --forest-green: #35937b;
  --forest-green-light: #6db26d;

  /* Global color variables */
  --primary-color: var(--blue-night);
  --primary-color-variant: var(--gray-slate);
  --secondary-color: var(--blue-sky);
  --secondary-color-variant: var(--blue-light);
  --accent-color: var(--coral-pink);
  --accent-hover-color: var(--coral-pink-light);
  --surface-color: var(--gray-light);
  --surface-color2: var(--blue-dark);
  --surface-color3: var(--blue-light);
  --surface-color4: var(--blue-chathams);
  --on-surface-color3: var(--black);
  --background-color: var(--white);
  --eye-color: var(--blue-fountain);
  --title-color: var(--gray-dark);

  /* Basic fonts   */
  --primary-font: 'Helvetica Neue', sans-serif;
  --font-size-root: 16px;
  --base: 16;

  /* Line height */
  --line-height-md: normal;
  --line-height-lg: 32px;
  --line-height-xl: 36px;
  --line-height-2xl: 52px;

  /* Global font size variables */
  --font-size-xs: 0.75rem; /* 12px */
  --font-size-sm: 0.8rem; /* 14px */
  --font-size-base: 1rem; /* 16px */
  --font-size-md: 1.125rem; /* 18px */
  --font-size-lg: 1.25rem; /* 20px */
  --font-size-xl: 1.56rem; /* 25px */
  --font-size-2xl: 2.8rem; /* 45px */
  --font-size-3xl: 7.5rem; /* 120px */
}
@font-face {
  font-family: 'Helvetica Neue';
  src: url('https://1997070.fs1.hubspotusercontent-na1.net/hubfs/1997070/RSG_2022/fonts/Helvetica-Compressed.woff2')
      format('woff2'),
    url('https://1997070.fs1.hubspotusercontent-na1.net/hubfs/1997070/RSG_2022/fonts/Helvetica-Compressed.woff')
      format('woff'),
    url('https://1997070.fs1.hubspotusercontent-na1.net/hubfs/1997070/RSG_2022/fonts/Helvetica-Compressed.ttf')
      format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Helvetica Neue';
  src: url('https://1997070.fs1.hubspotusercontent-na1.net/hubfs/1997070/RSG_2022/fonts/HelveticaRounded-Bold.woff2')
      format('woff2'),
    url('https://1997070.fs1.hubspotusercontent-na1.net/hubfs/1997070/RSG_2022/fonts/HelveticaRounded-Bold.woff')
      format('woff'),
    url('https://1997070.fs1.hubspotusercontent-na1.net/hubfs/1997070/RSG_2022/fonts/HelveticaRounded-Bold.ttf')
      format('truetype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Helvetica Neue';
  src: url('https://1997070.fs1.hubspotusercontent-na1.net/hubfs/1997070/RSG_2022/fonts/Helvetica-Light.woff2')
      format('woff2'),
    url('https://1997070.fs1.hubspotusercontent-na1.net/hubfs/1997070/RSG_2022/fonts/Helvetica-Light.woff')
      format('woff'),
    url('https://1997070.fs1.hubspotusercontent-na1.net/hubfs/1997070/RSG_2022/fonts/Helvetica-Light.ttf')
      format('truetype');
  font-weight: 200;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Helvetica Neue';
  src: url('https://1997070.fs1.hubspotusercontent-na1.net/hubfs/1997070/RSG_2022/fonts/helvetica-oblique-webfont.woff2')
      format('woff2'),
    url('https://1997070.fs1.hubspotusercontent-na1.net/hubfs/1997070/RSG_2022/fonts/helvetica-oblique-webfont.woff')
      format('woff'),
    url('https://1997070.fs1.hubspotusercontent-na1.net/hubfs/1997070/RSG_2022/fonts/Helvetica-Oblique.ttf')
      format('truetype');
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: 'Helvetica Neue';
  src: url('https://1997070.fs1.hubspotusercontent-na1.net/hubfs/1997070/RSG_2022/fonts/helvetica-bold-webfont.woff2')
      format('woff2'),
    url('https://1997070.fs1.hubspotusercontent-na1.net/hubfs/1997070/RSG_2022/fonts/helvetica-bold-webfont.woff')
      format('woff'),
    url('https://1997070.fs1.hubspotusercontent-na1.net/hubfs/1997070/RSG_2022/fonts/Helvetica-Bold.ttf')
      format('truetype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Helvetica Neue';
  src: url('https://1997070.fs1.hubspotusercontent-na1.net/hubfs/1997070/RSG_2022/fonts/helvetica-webfont.woff2')
      format('woff2'),
    url('https://1997070.fs1.hubspotusercontent-na1.net/hubfs/1997070/RSG_2022/fonts/helvetica-webfont.woff')
      format('woff'),
    url('https://1997070.fs1.hubspotusercontent-na1.net/hubfs/1997070/RSG_2022/fonts/Helvetica.ttf')
      format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Helvetica Neue';
  src: url('https://1997070.fs1.hubspotusercontent-na1.net/hubfs/1997070/RSG_2022/fonts/helvetica-boldoblique-webfont.woff2')
      format('woff2'),
    url('https://1997070.fs1.hubspotusercontent-na1.net/hubfs/1997070/RSG_2022/fonts/helvetica-boldoblique-webfont.woff')
      format('woff'),
    url('https://1997070.fs1.hubspotusercontent-na1.net/hubfs/1997070/RSG_2022/fonts/Helvetica-BoldOblique.ttf')
      format('truetype');
  font-weight: 700;
  font-style: italic;
  font-display: swap;
}

* {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

html {
  font-size: var(--font-size-root);
}

body {
  overflow-wrap: break-word;
  font-family: var(--primary-font);
  color: var(--primary-color);
  line-height: 28px;
}

/* Paragraphs */

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

/* Anchors */

a {
  transition: all 200ms ease;
  text-decoration: none;
  color: var(--accent-color);
  cursor: pointer;
}
a:hover {
  color: var(--secondary-color);
}
a:hover,
a:focus {
  text-decoration: none;
  color: var(--secondary-color);
}

/* Headings */

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0 0 1.4rem;
  margin-bottom: 20px;
  line-height: normal;
  font-weight: 400;
  color: var(--secondary-color);
}

h2,
.h2 {
  font-size: var(--font-size-2xl);
  line-height: var(--line-height-md);
}
h3,
.h3 {
  font-size: var(--font-size-xl);
  line-height: var(--line-height-md);
}
h4,
.h4 {
  font-size: var(--font-size-lg);
  line-height: var(--line-height-md);
}
h6,
.h6 {
  font-size: var(--font-size-lg);
  line-height: var(--line-height-lg);
}

h1 span {
  color: var(--accent-color);
}

.body-text-base {
  font-size: var(--font-size-base);
}

.subtitle-base {
  font-size: var(--font-size-lg);
}

h2 strong,
h3 strong,
h4 strong,
h5 strong,
h6 strong {
  color: inherit;
  font-weight: 700;
}

.custom-underline h2,
.custom-underline h1 {
  position: relative;
  padding-bottom: 30px;
}

.custom-underline h2:after,
.custom-underline h1:after,
.custom-underline h2:before,
.custom-underline h1:before {
  content: '';
  position: absolute;
  border: 0;
  left: 0;
  background: #196795;
  width: 60px;
  height: 5px;
  bottom: 0;
  border-radius: 90px;
}

.custom-underline h2:after,
.custom-underline h1:after {
  left: 65px;
  width: 43px;
  background: #129ae3;
}

.eye {
  color: var(--eye-color);
  font-size: var(--font-size-lg);
  margin-bottom: 0;
  font-weight: 700;
}

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

/* Placeholder */

placeholder {
  opacity: 1;
  color: rgb(14 30 39 / 40%);
}
button:disabled,
.button:disabled {
  background-color: #d0d0d0;
  border-color: #d0d0d0;
  color: #e6e6e6;
}

/* No button */

[role='button'],
[role='button']:hover,
[role='button']:focus,
[role='button']:active {
  text-decoration: none;
}

button,
.button {
  cursor: pointer;
  display: inline-block;
  text-align: center;
  transition: all 0.15s linear;
  white-space: normal;
}

.button a {
  padding: 0.6em 2em;
}

.button__filled a,
.button__filled a:visited,
.button__filled a:active {
  background-color: #fd6061;
  border-radius: 7px;
  color: #fff;
  font-style: normal;
  font-variant: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 18px;
  font-family: 'Helvetica Neue', sans-serif;
  letter-spacing: 0;
}

.button__filled a:hover {
  background: var(--accent-hover-color);
  color: var(--white);
}

.button__ghost a {
  border: 3px solid var(--secondary-color);
  border-radius: 27px;
  font-size: var(--font-size-base);
  line-height: 19px;
  font-weight: 700;
  color: var(--secondary-color);
  background-color: transparent;
}

.button__ghost a:hover {
  background: none;
  background-color: var(--secondary-color);
  color: var(--white);
}

.button__filled--green a {
  background: var(--forest-green);
  border-radius: 10px;
  color: var(--white);
  width: 100%;
  display: inline-block;
  text-align: center;
  padding: 1.6em 3.5em;
}

.button__filled--green a:hover {
  background-color: var(--forest-green-light);
  color: var(--white);
}

.button__link a {
  font-size: var(--font-size-xl);
  color: var(--white);
  text-decoration: underline;
  line-spacing: 30px;
}

.button__link a:hover {
  color: var(--white);
  text-decoration: underline;
}
/* Fields */

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

/* Labels */

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

/* Help text */

form legend {
  font-size: 0.875rem;
}

/* Inputs */

form input[type='text'],
form input[type='email'],
form input[type='password'],
form input[type='tel'],
form input[type='number'],
form input[type='file'],
form select,
form textarea {
  display: inline-block;
  font-size: 0.875rem;
  padding: 0.7rem;
  width: 100%;
  margin: 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;
  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
*/

/* TODO: organize classnames and remove unnecessary code */

.nav-menu .hs-menu-wrapper > ul > li > a:after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: -2px;
  background: #5cb6e6;
  height: 4px;
  border-radius: 90px;
  opacity: 0;
  transition: all 0.5s;
  z-index: 1;
}
.nav-menu .hs-menu-wrapper > ul > li > a {
  position: relative;
  display: inline-block;
  padding: 19px 0;
}
.nav-menu .hs-menu-wrapper > ul > li:hover > a:after {
  opacity: 1;
}

.nav-menu .hs-menu-wrapper ul.hs-menu-children-wrapper {
  display: none;
  position: absolute;
  top: 100%;
  width: max-content;
  text-align: right;
  right: 0;
  box-shadow: 0px 3px 6px #00000029;
  border-radius: 0px 0px 10px 10px;
  background: #fff;
}
.nav-menu
  .hs-menu-wrapper
  .hs-item-has-children:hover
  ul.hs-menu-children-wrapper {
  display: block;
}
.nav-menu .hs-menu-wrapper .hs-item-has-children {
  position: relative;
}
.nav-menu .hs-menu-wrapper ul.hs-menu-children-wrapper li a {
  color: #003957;
  font-size: 1rem;
  display: block;
  padding: 5px 12px;
  position: relative;
}
.nav-menu .hs-menu-wrapper ul.hs-menu-children-wrapper li {
  width: 100%;
  margin: 0;
}
.nav-menu .hs-menu-wrapper ul.hs-menu-children-wrapper li a:after {
  content: '';
  background: #1672a3;
  position: absolute;
  left: 0;
  top: 2px;
  bottom: 2px;
  width: 5px;
  opacity: 0;
}
.nav-menu .hs-menu-wrapper ul.hs-menu-children-wrapper li a:hover:after {
  opacity: 1;
}
.nav-menu .hs-menu-wrapper .hs-item-has-children:after {
  content: '';
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 5px 3.5px 0 3.5px;
  border-color: #fff transparent transparent transparent;
  display: inline-block;
  vertical-align: middle;
}

.header-logo {
  width: 100px;
  line-height: 0;
}
.header-menu ul li {
  display: inline-block;
  margin-right: 22px;
}
.header-menu {
  padding-left: 35px;
}
.header-menu ul li a {
  color: #003957;
  font-weight: 500;
}
.header-bottom .btn {
  flex: 1;
  text-align: right;
}
.header-menu .hs-menu-wrapper > ul > li > a {
  padding: 54px 0;
}

.header-menu .hs-menu-wrapper .hs-item-has-children:after {
  border-color: #a8bfcc transparent transparent;
  margin-left: 8px;
  border-width: 6px 4px 0;
}

.header-menu .hs-menu-wrapper {
  position: relative;
}
.header-menu .hs-menu-wrapper .bg-item-has-children {
  position: static;
}
.header-menu .bg-item-has-children ul.hs-menu-children-wrapper {
  width: 100%;
  text-align: left;
}

.submenu-item-inner {
  display: flex;
  background: #eff6f8;
  box-shadow: 0px 3px 6px #03406c2e;
  border-radius: 0px 0px 10px 10px;
  padding: 5px;
}
.submenu-left {
  width: 35%;
  padding: 20px 20px;
}
.submenu-right {
  width: 65%;
  position: relative;
  background: #fff;
  padding: 15px;
}
.submenu-tab {
  color: #003957;
  font-size: 14px;
}
.nav-menu .submenu-item-inner ul.submenu-tab li {
  margin-bottom: 6px;
  cursor: pointer;
}

.submenu-tab-content {
  display: none;
}
.submenu-col {
  width: 50%;
  display: inline-block;
  margin: 0 -2px;
  vertical-align: top;
  padding: 10px 16px 20px;
}
.submenu-col h6 {
  font-size: 18px;
  color: #003957;
  opacity: 0.18;
  margin-bottom: 0;
}
.nav-menu
  .hs-menu-wrapper
  ul.hs-menu-children-wrapper
  .submenu-tab-content
  li
  a {
  padding-left: 0;
  border: none;
}
.nav-menu .submenu-item-inner ul.submenu-tab li.active {
  font-weight: 700;
}

.menu-iconText-box a {
  background: #ffffff;
  border: 6px solid #dbeaef;
  border-radius: 10px;
  display: flex;
  padding: 10px 20px;
  align-items: center;
  flex-wrap: wrap;
}
.menu-iconText-box {
  width: calc(33.33% - 20px);
  margin: 0 10px 20px;
}
.menu-iconText-row {
  display: flex;
  flex-wrap: wrap;
  padding: 27px 15px;
}
.menu-iconText-icon {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.menu-iconText-content {
  width: calc(100% - 50px);
  padding-left: 17px;
}
.menu-iconText {
  font-size: 12px;
  color: #5b8093;
  line-height: normal;
}
.menu-iconText-icon img {
  width: 40px;
}
.menu-iconText-content h6 {
  font-size: 14px;
  color: #003957;
  line-height: normal;
  margin-bottom: 0;
  font-weight: 400;
}
.menu-iconText-box:nth-child(1),
.menu-iconText-box:nth-child(2) {
  width: calc(50% - 20px);
}
.header-menu .hs-menu-wrapper > ul > li > a:after {
  background: #1672a3;
}

@media (max-width: 1199px) {
  .header-menu ul li {
    margin-right: 14px;
  }
}

@media screen and (max-width: 1136px) {
  .submenu-col {
    padding: 10px 5px 20px;
  }
  .header-menu {
    display: none;
  }
  .header-logo img {
    width: 100%;
  }
  .header-logo {
    width: 90px;
  }
  .header-bottom {
    padding: 10px 0;
  }

  .ebiz-toggle {
    display: block;
    position: absolute;
    right: 20px;
    width: 35px;
    height: 28px;
    border: none;
    margin: auto;
    background: transparent;
  }
  .ebiz-toggle span,
  .ebiz-toggle span:after,
  .ebiz-toggle span:before {
    background: #1672a3;
    width: 100%;
    height: 4px;
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    margin: auto;
  }
  .ebiz-toggle span:after,
  .ebiz-toggle span:before {
    content: '';
    transition: all 0.5s;
  }
  .ebiz-toggle span:before {
    transform: translateY(-10px);
  }
  .ebiz-toggle span:after {
    transform: translateY(10px);
  }
  .body-subopen .ebiz-toggle span {
    background: transparent;
  }
  .body-subopen .ebiz-toggle span:before {
    transform: rotate(45deg);
    top: 0;
  }
  .body-subopen .ebiz-toggle span:after {
    top: 0;
    transform: rotate(-45deg);
  }
  .header-bottom .btn {
    padding-right: 54px;
  }

  .mob-menu-wrap {
    position: fixed;
    top: 0;
    bottom: 0;
    background: #fff;
    width: 300px;
    padding: 20px 0;
    transition: all 0.5s;
    left: -300px;
    display: block;
    overflow: auto;
  }
  .mob-menu-wrap li a {
    color: #1672a3;
    padding: 4px 15px;
    font-size: 14px;
    display: block;
    border-bottom: 1px solid #1672a3;
  }
  .body-subopen .mob-menu-wrap {
    left: 0;
  }

  .mob-menu-wrap ul.hs-menu-children-wrapper {
    display: none;
  }

  span.mobile-toggle {
    width: 34px;
    height: 34px;
    display: inline-block;
    position: absolute;
    right: 0;
    top: 0;
  }
  span.mobile-toggle:before,
  span.mobile-toggle:after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background: #002857;
    width: 2px;
    height: 18px;
    margin: auto;
  }

  span.mobile-toggle--minus:before {
    height: 0;
  }

  span.mobile-toggle:after {
    height: 2px;
    width: 18px;
  }

  .hs-item-has-children {
    position: relative;
  }

  .bg-item-has-children ul.hs-menu-children-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 999;
    bottom: 0;
  }
  .submenu-item-inner {
    height: 100%;
    overflow: auto;
    background: #fff;
  }
  .mob-menu-wrap .submenu-item-inner li a {
    padding: 0;
    border: none;
  }
  span.mobile-toggle-close {
    position: absolute;
    right: 18px;
    top: 10px;
    cursor: pointer;
  }

  .submenu-tab li.active {
    font-weight: 700;
  }
  .submenu-tab li {
    line-height: normal;
    margin-bottom: 10px;
  }
  .submenu-left {
    padding: 20px 15px;
  }
  .mob-menu-wrap .menu-iconText-row a {
    display: flex;
  }
  .menu-iconText {
    margin-bottom: 10px;
  }
  .menu-iconText-row {
    align-items: flex-start;
    align-self: baseline;
  }

  .mob-menu-wrap li.hs-item-has-children:not(.bg-item-has-children) ul li a {
    padding-left: 30px;
  }
  .submenu-left {
    background: #eff6f8;
  }
}

@media (max-width: 768px) {
  .footer-menu-box {
    width: 100%;
    padding-right: 0;
  }

  .ebiz-toggle {
    right: 15px;
  }

  .mob-menu-wrap {
    width: 253px;
  }

  .submenu-col {
    width: 100%;
  }

  .submenu-left {
    width: 50%;
    padding: 15px 11px;
  }

  .submenu-right {
    width: 50%;
    padding: 10px;
  }

  .menu-iconText-box {
    width: calc(100% - 20px) !important;
  }

  .header__top .hs-search-field__bar input.hs-search-field__input {
    font-size: 14px;
  }
}

/* End previous code before march/23 */
/* 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: 1130px) {
  .hs-menu-wrapper.flyouts .hs-menu-children-wrapper,
  .hs-menu-wrapper.hs-menu-flow-horizontal.flyouts
    .hs-item-has-children:hover
    > .hs-menu-children-wrapper,
  .hs-menu-wrapper.hs-menu-flow-vertical.flyouts
    .hs-item-has-children:hover
    > .hs-menu-children-wrapper {
    left: 0;
    opacity: 1;
    position: relative;
    top: auto;
  }
}

/* CTA, logo, and rich text images */

.hs_cos_wrapper_type_cta img,
.hs_cos_wrapper_type_logo img,
.hs_cos_wrapper_type_rich_text img {
  height: auto;
  max-width: 100%;
}


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

/* For content that needs to be visually hidden but stay visible for screenreaders */

.show-for-sr {
  border: 0 !important;
  clip: rect(0, 0, 0, 0) !important;
  height: 1px !important;
  overflow: hidden !important;
  padding: 0 !important;
  position: absolute !important;
  white-space: nowrap !important;
  width: 1px !important;
}

@media (max-width: 767px) {
  .show-for-sr--mobile {
    border: 0 !important;
    clip: rect(0, 0, 0, 0) !important;
    height: 1px !important;
    overflow: hidden !important;
    padding: 0 !important;
    position: absolute !important;
    white-space: nowrap !important;
    width: 1px !important;
  }
}

.anchor {
  position: relative;
  top: -230px;
}
@media (min-width: 769px) {
  .anchor {
    top: -100px;
  }
}