/* 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));
    }
  
}
.dnd-section > .row-fluid,
.footer__container,
.header__container,
.content-wrapper,
.page-center{
  margin:0 auto;
  width:100%;
  padding: 0 15px;
}
.full_width,
.full_width.content-wrapper{
  width:100%;
  max-width:100%;
}
.dnd-section[class*="force-full-width-section"]>.row-fluid .dnd-column {
  padding: 0;
}

.dnd-section[class*="force-full-width-section"] > .row-fluid{
  padding:0;
}

.dnd-section[class*="force-full-width-section"]{
  padding:0;
}

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

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

@font-face {
  font-family: 'Helvetica Neue';
  src: url(https://25855687.fs1.hubspotusercontent-eu1.net/hubfs/25855687/raw_assets/public/ChaseHippo_2024/fonts/HelveticaNeue.eot) format('embedded-opentype'),
    url(https://25855687.fs1.hubspotusercontent-eu1.net/hubfs/25855687/raw_assets/public/ChaseHippo_2024/fonts/HelveticaNeue.woff2) format('woff2'),
    url(https://25855687.fs1.hubspotusercontent-eu1.net/hubfs/25855687/raw_assets/public/ChaseHippo_2024/fonts/HelveticaNeue.woff) format('woff'),
    url(https://25855687.fs1.hubspotusercontent-eu1.net/hubfs/25855687/raw_assets/public/ChaseHippo_2024/fonts/HelveticaNeue.ttf) format('truetype');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Helvetica Neue';
  src: url(https://25855687.fs1.hubspotusercontent-eu1.net/hubfs/25855687/raw_assets/public/ChaseHippo_2024/fonts/HelveticaNeue-BoldItalic.eot) format('embedded-opentype'),
    url(https://25855687.fs1.hubspotusercontent-eu1.net/hubfs/25855687/raw_assets/public/ChaseHippo_2024/fonts/HelveticaNeue-BoldItalic.woff2) format('woff2'),
    url(https://25855687.fs1.hubspotusercontent-eu1.net/hubfs/25855687/raw_assets/public/ChaseHippo_2024/fonts/HelveticaNeue-BoldItalic.woff) format('woff'),
    url(https://25855687.fs1.hubspotusercontent-eu1.net/hubfs/25855687/raw_assets/public/ChaseHippo_2024/fonts/HelveticaNeue-BoldItalic.ttf) format('truetype');
  font-weight: bold;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: 'Helvetica Neue';
  src: url(https://25855687.fs1.hubspotusercontent-eu1.net/hubfs/25855687/raw_assets/public/ChaseHippo_2024/fonts/HelveticaNeue-Bold.eot) format('embedded-opentype'),
    url(https://25855687.fs1.hubspotusercontent-eu1.net/hubfs/25855687/raw_assets/public/ChaseHippo_2024/fonts/HelveticaNeue-Bold.woff2) format('woff2'),
    url(https://25855687.fs1.hubspotusercontent-eu1.net/hubfs/25855687/raw_assets/public/ChaseHippo_2024/fonts/HelveticaNeue-Bold.woff) format('woff'),
    url(https://25855687.fs1.hubspotusercontent-eu1.net/hubfs/25855687/raw_assets/public/ChaseHippo_2024/fonts/HelveticaNeue-Bold.ttf) format('truetype');
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Helvetica Neue';
  src: url(https://25855687.fs1.hubspotusercontent-eu1.net/hubfs/25855687/raw_assets/public/ChaseHippo_2024/fonts/HelveticaNeue-CondensedBold.eot) format('embedded-opentype'),
    url(https://25855687.fs1.hubspotusercontent-eu1.net/hubfs/25855687/raw_assets/public/ChaseHippo_2024/fonts/HelveticaNeue-CondensedBold.woff2) format('woff2'),
    url(https://25855687.fs1.hubspotusercontent-eu1.net/hubfs/25855687/raw_assets/public/ChaseHippo_2024/fonts/HelveticaNeue-CondensedBold.woff) format('woff'),
    url(https://25855687.fs1.hubspotusercontent-eu1.net/hubfs/25855687/raw_assets/public/ChaseHippo_2024/fonts/HelveticaNeue-CondensedBold.ttf) format('truetype');
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Helvetica Neue';
  src: url(https://25855687.fs1.hubspotusercontent-eu1.net/hubfs/25855687/raw_assets/public/ChaseHippo_2024/fonts/HelveticaNeue-Light.eot) format('embedded-opentype'),
    url(https://25855687.fs1.hubspotusercontent-eu1.net/hubfs/25855687/raw_assets/public/ChaseHippo_2024/fonts/HelveticaNeue-Light.woff2) format('woff2'),
    url(https://25855687.fs1.hubspotusercontent-eu1.net/hubfs/25855687/raw_assets/public/ChaseHippo_2024/fonts/HelveticaNeue-Light.woff) format('woff'),
    url(https://25855687.fs1.hubspotusercontent-eu1.net/hubfs/25855687/raw_assets/public/ChaseHippo_2024/fonts/HelveticaNeue-Light.ttf) format('truetype');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Helvetica Neue';
  src: url(https://25855687.fs1.hubspotusercontent-eu1.net/hubfs/25855687/raw_assets/public/ChaseHippo_2024/fonts/HelveticaNeue-LightItalic.eot) format('embedded-opentype'),
    url(https://25855687.fs1.hubspotusercontent-eu1.net/hubfs/25855687/raw_assets/public/ChaseHippo_2024/fonts/HelveticaNeue-LightItalic.woff2) format('woff2'),
    url(https://25855687.fs1.hubspotusercontent-eu1.net/hubfs/25855687/raw_assets/public/ChaseHippo_2024/fonts/HelveticaNeue-LightItalic.woff) format('woff'),
    url(https://25855687.fs1.hubspotusercontent-eu1.net/hubfs/25855687/raw_assets/public/ChaseHippo_2024/fonts/HelveticaNeue-LightItalic.ttf) format('truetype');
  font-weight: 300;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: 'Helvetica Neue';
  src: url(https://25855687.fs1.hubspotusercontent-eu1.net/hubfs/25855687/raw_assets/public/ChaseHippo_2024/fonts/HelveticaNeue-Italic.eot) format('embedded-opentype'),
    url(https://25855687.fs1.hubspotusercontent-eu1.net/hubfs/25855687/raw_assets/public/ChaseHippo_2024/fonts/HelveticaNeue-Italic.woff2) format('woff2'),
    url(https://25855687.fs1.hubspotusercontent-eu1.net/hubfs/25855687/raw_assets/public/ChaseHippo_2024/fonts/HelveticaNeue-Italic.woff) format('woff'),
    url(https://25855687.fs1.hubspotusercontent-eu1.net/hubfs/25855687/raw_assets/public/ChaseHippo_2024/fonts/HelveticaNeue-Italic.ttf) format('truetype');
  font-weight: normal;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: 'Helvetica Neue';
  src: url(https://25855687.fs1.hubspotusercontent-eu1.net/hubfs/25855687/raw_assets/public/ChaseHippo_2024/fonts/HelveticaNeue-Thin.eot) format('embedded-opentype'),
    url(https://25855687.fs1.hubspotusercontent-eu1.net/hubfs/25855687/raw_assets/public/ChaseHippo_2024/fonts/HelveticaNeue-Thin.woff2) format('woff2'),
    url(https://25855687.fs1.hubspotusercontent-eu1.net/hubfs/25855687/raw_assets/public/ChaseHippo_2024/fonts/HelveticaNeue-Thin.woff) format('woff'),
    url(https://25855687.fs1.hubspotusercontent-eu1.net/hubfs/25855687/raw_assets/public/ChaseHippo_2024/fonts/HelveticaNeue-Thin.ttf) format('truetype');
  font-weight: 100;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Helvetica Neue';
  src: url(https://25855687.fs1.hubspotusercontent-eu1.net/hubfs/25855687/raw_assets/public/ChaseHippo_2024/fonts/HelveticaNeue-CondensedBlack.eot) format('embedded-opentype'),
    url(https://25855687.fs1.hubspotusercontent-eu1.net/hubfs/25855687/raw_assets/public/ChaseHippo_2024/fonts/HelveticaNeue-CondensedBlack.woff2) format('woff2'),
    url(https://25855687.fs1.hubspotusercontent-eu1.net/hubfs/25855687/raw_assets/public/ChaseHippo_2024/fonts/HelveticaNeue-CondensedBlack.woff) format('woff'),
    url(https://25855687.fs1.hubspotusercontent-eu1.net/hubfs/25855687/raw_assets/public/ChaseHippo_2024/fonts/HelveticaNeue-CondensedBlack.ttf) format('truetype');
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Helvetica Neue';
  src: url(https://25855687.fs1.hubspotusercontent-eu1.net/hubfs/25855687/raw_assets/public/ChaseHippo_2024/fonts/HelveticaNeue-MediumItalic.eot) format('embedded-opentype'),
    url(https://25855687.fs1.hubspotusercontent-eu1.net/hubfs/25855687/raw_assets/public/ChaseHippo_2024/fonts/HelveticaNeue-MediumItalic.woff2) format('woff2'),
    url(https://25855687.fs1.hubspotusercontent-eu1.net/hubfs/25855687/raw_assets/public/ChaseHippo_2024/fonts/HelveticaNeue-MediumItalic.woff) format('woff'),
    url(https://25855687.fs1.hubspotusercontent-eu1.net/hubfs/25855687/raw_assets/public/ChaseHippo_2024/fonts/HelveticaNeue-MediumItalic.ttf) format('truetype');
  font-weight: 500;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: 'Helvetica Neue';
  src: url(https://25855687.fs1.hubspotusercontent-eu1.net/hubfs/25855687/raw_assets/public/ChaseHippo_2024/fonts/HelveticaNeue-Medium.eot) format('embedded-opentype'),
    url(https://25855687.fs1.hubspotusercontent-eu1.net/hubfs/25855687/raw_assets/public/ChaseHippo_2024/fonts/HelveticaNeue-Medium.woff2) format('woff2'),
    url(https://25855687.fs1.hubspotusercontent-eu1.net/hubfs/25855687/raw_assets/public/ChaseHippo_2024/fonts/HelveticaNeue-Medium.woff) format('woff'),
    url(https://25855687.fs1.hubspotusercontent-eu1.net/hubfs/25855687/raw_assets/public/ChaseHippo_2024/fonts/HelveticaNeue-Medium.ttf) format('truetype');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Helvetica Neue';
  src: url(https://25855687.fs1.hubspotusercontent-eu1.net/hubfs/25855687/raw_assets/public/ChaseHippo_2024/fonts/HelveticaNeue-UltraLightItalic.eot) format('embedded-opentype'),
    url(https://25855687.fs1.hubspotusercontent-eu1.net/hubfs/25855687/raw_assets/public/ChaseHippo_2024/fonts/HelveticaNeue-UltraLightItalic.woff2) format('woff2'),
    url(https://25855687.fs1.hubspotusercontent-eu1.net/hubfs/25855687/raw_assets/public/ChaseHippo_2024/fonts/HelveticaNeue-UltraLightItalic.woff) format('woff'),
    url(https://25855687.fs1.hubspotusercontent-eu1.net/hubfs/25855687/raw_assets/public/ChaseHippo_2024/fonts/HelveticaNeue-UltraLightItalic.ttf) format('truetype');
  font-weight: 100;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: 'Helvetica Neue';
  src: url(https://25855687.fs1.hubspotusercontent-eu1.net/hubfs/25855687/raw_assets/public/ChaseHippo_2024/fonts/HelveticaNeue-ThinItalic.eot) format('embedded-opentype'),
    url(https://25855687.fs1.hubspotusercontent-eu1.net/hubfs/25855687/raw_assets/public/ChaseHippo_2024/fonts/HelveticaNeue-ThinItalic.woff2) format('woff2'),
    url(https://25855687.fs1.hubspotusercontent-eu1.net/hubfs/25855687/raw_assets/public/ChaseHippo_2024/fonts/HelveticaNeue-ThinItalic.woff) format('woff'),
    url(https://25855687.fs1.hubspotusercontent-eu1.net/hubfs/25855687/raw_assets/public/ChaseHippo_2024/fonts/HelveticaNeue-ThinItalic.ttf) format('truetype');
  font-weight: 100;
  font-style: italic;
  font-display: swap;
}


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

.skip-content-btn a{
  display: inline-block;
  margin-left: 43px;
  text-align: center;
  transform: translateY(-200%);
  transition: transform 0.3s;
  position: absolute;
  top: 30px;
  left: 90px;
  z-index: 99999;
}

.skip-content-btn > a:focus {
  transform: translateY(0%);
  outline: none;
}

th{
  text-align:left; 
}
/* Paragraphs */

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

/* Anchors */

a {
  cursor: pointer;
  text-decoration:none;
  transition:all 0.3s ease;
}
/* Headings */

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0 0 15px;
}

/* 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;
  vertical-align: middle;
  word-break: normal;
}

svg{
  fill: currentColor;
  vertical-align: middle;
}
.hs-search-results__pagination{
  flex-wrap: wrap;
}

.hs-static-nope-zone-wrapper.hs-static-nope-zone-wrapper.hs-static-nope-zone-wrapper .hs-non-ls-nope-zone{
z-index:10 !important;;
}
button,
.button,
.hs-button,
.btn__primary,
.btn--primary a, 
.btn__secondary,
.btn--secondary a{
  cursor: pointer;
  display: inline-block;
  text-align: center;
  transition: all 0.15s linear;
  white-space: normal;
  line-height:normal;
  min-width:150px;
}

button:disabled,
.button:disabled,
.hs-button:disabled,
button:disabled:hover,
.button:disabled:hover,
.hs-button:disabled:hover {
  background-color: #D0D0D0;
  border-color: #D0D0D0;
  color: #000;
}
.btn_wrap .btn__std a svg{
  display:block;
}
/* 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;
}

form .hs-button, form input[type=submit]{
  margin-top:20px; 
}

@media(max-width:767px){
  button,
  .button,
  .hs-button,
  .btn__primary,
  .btn--primary a, 
  .btn__secondary,
  .btn--secondary a{
    min-width:initial;
  }
}
/* Fields */

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

/* Labels */

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

/* Form Title */
.form-title {
  margin-bottom: 0;
}

/* Help text */

form legend {
  font-size: 0.875rem;
}

form{
  margin-bottom: 20px;
}

/* 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: 16px;
  line-height:24px;
  padding: 8px 15px;
  width: 100%;
  font-weight:400;
  outline:0;
  letter-spacing:0.3px;
}

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: red !important;
}

.hs-input.invalid.error {
  border-color: red !important;
}
.hs-error-msgs label{
  color: red !important;
}
.hs-error-msg {
  color: red !important;
  margin-top: 0.35rem;
}

fieldset .input {
  margin-right: 0 !important;
}

form input[type=email],
form input[type=number],
form input[type=password],
form input[type=search],
form input[type=tel],
form input[type=text],
form select,
form textarea {
  width: 100% !important;
}
form textarea {
  min-height: 68px;
}

form .hs-submit {
  padding-top: 10px;
}
/* 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;
}
.submitted-message{
  font-weight:bold !important;
}
/* Captcha */

.grecaptcha-badge {
  margin: 0 auto;
}



.hs-error-msg, .hs-error-msgs label {
    line-height: normal;
}
@media(min-width:401px){
  fieldset.form-columns-2 .hs-form-field:first-child .input {
    margin-right: 9px !important;
  }
}
/* Table */

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

/* Table cells */

td,
th {
  vertical-align: top;
}

/* Table header */

thead th {
  vertical-align: bottom;
  font-size: 15px;
}

table thead th {
  border-width: 0 1px 0 1px;
}

table,
table tbody tr:first-child td{
  border-top-width: 0 !important;
}
.hs-blog-listing .dnd-section .dnd-column {
  padding: 0;
}


/* Blog header */

.blog-header {
  background-color: #f8fafc;
  text-align: center;
}

.blog-header__inner {
  margin: 0 auto;
  max-width: 600px;
}

/* Blog header - author listing */

.blog-header__author-avatar {
  border-radius: 50%;
  -webkit-box-shadow: 0 0 12px 0 rgba(0, 0, 0, 0.15);
  box-shadow: 0 0 12px 0 rgba(0, 0, 0, 0.15);
  display: block;
  height: auto;
  margin: 0 auto 1.4rem;
  width: 200px;
}

.blog-header__author-social-links a {
  background-color: #000;
  border-radius: 50%;
  display: inline-block;
  height: 40px;
  margin: 0 5px;
  position: relative;
  width: 40px;
}

.blog-header__author-social-links a:hover,
.blog-header__author-social-links a:focus {
  background-color: #494a52;
}

.blog-header__author-social-links svg {
  fill: #fff;
  height: 15px;
  left: 50%;
  position: absolute;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  width: auto;
}

/* Blog header - tag listing */

.blog-index__tag-header {
  -webkit-box-flex: 1;
  -ms-flex: 1 0 100%;
  flex: 1 0 100%;
  padding: 1rem;
}

.blog-index__tag-subtitle {
  font-size: 1.16rem;
  line-height: 1.1;
}

.blog-index__tag-heading {
  border-bottom: 3px solid #d1d6dc;
  padding-bottom: 1rem;
}

/* Blog listing */

.blog-index {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.blog-index::after {
  content: "";
  -webkit-box-flex: 1;
  -ms-flex: auto;
  flex: auto;
}

.blog-index__post {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 100%;
  flex: 0 0 100%;
  padding: 1rem;
}

@media screen and (min-width: 768px) {
  .blog-index__post {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 calc(100% / 2);
    flex: 0 0 calc(100% / 2);
  }
}

@media screen and (min-width: 1000px) {
  .blog-index__post {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 calc(100% / 3);
    flex: 0 0 calc(100% / 3);
  }
}

@media screen and (min-width: 768px) {
  .blog-index__post--large {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-flex: 1;
    -ms-flex: 1 0 100%;
    flex: 1 0 100%;
    justify-items: space-between;
  }
}

.blog-index__post.blog-index__post--small {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.blog-index__post-inner-card {
  background: #fff;
  border-radius: 5px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-flow: column nowrap;
  flex-flow: column nowrap;
  box-shadow: 1px 1px 5px 2px #0000001f;
  width: 100%;
}

.blog-index__post-image {
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 5px 5px 0 0;
  display: block;
  padding-bottom: 63%;
}

@media (min-width: 1000px) {
  .full-width .blog-index__post-image {
    min-height: 300px;
    padding-bottom: unset;
  }
}

.blog-banner-n .dnd-section {
  padding: 0;
}

.blog-banner-n .dnd-section>.row-fluid {
  padding: 0;
}

.blog-index__post-inner-card .blog-index__post-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  height: 100%;
  padding: 24px 20px 30px 20px;
}

.blog-post__tag-link,
.blog-post__tags {
  font-size: 12px;
  font-weight: 200;
  letter-spacing: 0.01rem;
  text-transform: uppercase;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.blog-post__tag-link:hover {
  text-decoration: none;
}

.blog-index__post-content h2 {
  margin: 0.5rem 0;
}

.blog-index__post-content--small h2 {
  font-size: 28px;
  line-height: 1.25;
}

.blog-index__post-content--small h2 a:hover {
  text-decoration: none;
  -webkit-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
}

.blog-post__meta-section {
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 14px;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin-top: auto;
  padding-top: 30px;
}
.blog-post__meta-section.no-min {
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}

.blog-post__read-more a {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.blog-post__read-more a:hover {
  text-decoration: none;
}

.read-more__arrow {
  padding-left: 10px;
  position: relative;
}

.blog-post__read-more svg {
  height: auto;
  width: 15px;
}

.blog-post__read-more a svg {
  -webkit-transition: all 0.15s linear;
  -o-transition: all 0.15s linear;
  transition: all 0.15s linear;
}

/* Blog listing - sidebar */

@media screen and (min-width: 1000px) {
  .sidebar.full-width .blog-index .blog-index__post,
  .sidebar .full-width .blog-index .blog-index__post {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
  }
  .sidebar.two-col .blog-index .blog-index__post,
  .sidebar .two-col .blog-index .blog-index__post {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 calc(100% / 2);
    flex: 0 0 calc(100% / 2);
  }
  .sidebar.three-col .blog-index .blog-index__post,
  .sidebar .three-col .blog-index .blog-index__post {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 calc(100% / 3);
    flex: 0 0 calc(100% / 3);
  }
  .sidebar.four-col .blog-index .blog-index__post,
  .sidebar .four-col .blog-index .blog-index__post {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 calc(100% / 4);
    flex: 0 0 calc(100% / 4);
  }
}

@media screen and (max-width: 999px) {
  .sidebar.two-col .blog-index .blog-index__post,
  .sidebar .two-col .blog-index .blog-index__post {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
  }
}

@media screen and (max-width: 767px) {
  .sidebar .blog-index {
    padding: 1rem 0 3.3rem;
  }
  .hs_recaptcha.hs-recaptcha.field.hs-form-field {
    overflow: auto;
  }

}

@media screen and (max-width: 767px) {
  .blog-sidebar {
    padding:  0;
  }

  .blog-sidebar.span3.mobile .dnd-section {
    padding-bottom: 0;
    padding-top: 40px;
  }

  .sidebar.span9 .dnd-section {
    padding-top: 40px;
  }
  .sidebar.span9 .dnd-section>.row-fluid {
    padding-left: 0;
    padding-right: 0;
  }
  .body-container--blog-index .content-wrapper {
    padding-left: 0;
    padding-right: 0;
  }

}

.blog-sidebar h3 {
  font-size: 21px;
  font-weight: 600;
  line-height: 37px;
  margin-bottom: 20px;
  margin-top: 8px;
}

.blog-sidebar ul {
  background: #fff;
  border-radius: 5px;
  list-style: none;
  padding: 0px;
}

.blog-sidebar ul li {
  border-top: 1px solid #dfddd9;
  font-weight: 600;
  padding: 10px 0;
}

.blog-sidebar ul li:first-child {
  border-top-color: transparent;
  padding-top: 0;
}

.blog-sidebar ul li:last-child {
  padding-bottom: 0;
}

.blog-sidebar a {
  text-decoration: none;
}

.blog-sidebar a:hover {
  text-decoration: none;
}

.blog-sidebar .filter-link-count {
  display: none;
}

.blog-sidebar .filter-expand-link {
  position: relative;
  top: -15px;
  display: block;
  margin-bottom: 25px;
  text-transform: capitalize;
  text-align: center;
}

.blog-sidebar-post-listing ul li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  counter-increment: list-number;
}

.blog-sidebar-post-listing li:before {
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  align-self: center;
  content: counter(list-number);
  font-size: 22px;
  font-weight: 600;
  padding-right: 15px;
}

.blog-sidebar-post-listing li a {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

/* Blog mobile sidebar */

@media (max-width: 767px) {
  .hs-blog-listing .content-wrapper > .row-fluid {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }

  .hs-blog-listing .span3 {
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
  }

  .hs-blog-listing .span9 {
    -webkit-box-ordinal-group: 3;
    -ms-flex-order: 2;
    order: 2;
  }

  .hs-blog-listing .blog-pagination {
    -webkit-box-ordinal-group: 4;
    -ms-flex-order: 3;
    order: 3;
  }

  .blog-sidebar.mobile .blog-sidebar-topic-filter ul,
  .blog-sidebar.mobile .blog-sidebar-post-listing ul {
    display: none;
    opacity: 0;
    -webkit-transition: all 5s;
    -o-transition: all 5s;
    transition: all 5s;
    visibility: hidden;
  }

  .blog-sidebar.mobile .blog-sidebar-topic-filter h3,
  .blog-sidebar.mobile .blog-sidebar-post-listing h3 {
    cursor: pointer;
  }
  .blog-sidebar.mobile .blog-sidebar-topic-filter h3:after,
  .blog-sidebar.mobile .blog-sidebar-post-listing h3:after {
    content: "+";
    padding-left: 6px;
  }

  .blog-sidebar.mobile .blog-sidebar-topic-filter.clicked h3:after,
  .blog-sidebar.mobile .blog-sidebar-post-listing.clicked h3:after {
    content: "-";
    padding-left: 7px;
  }

  .blog-sidebar.mobile .clicked ul {
    display: block;
    opacity: 1;
    -webkit-transition: all 1s;
    -o-transition: all 1s;
    transition: all 1s;
    visibility: visible;
  }
}

/* Blog pagination */

.blog-pagination {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.blog-pagination.linked {
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.blog-pagination__link {
  border: 2px solid transparent;
  border-radius: 7px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  line-height: 1;
  margin: 0 0.1rem;
  padding: 0.25rem 0.4rem;
  text-decoration: none;
}

.blog-pagination__link--active {
  border: 2px solid #b0c1d4;
}

.blog-pagination__link:hover,
.blog-pagination__link:focus {
  text-decoration: none;
}

.blog-pagination__prev-link,
.blog-pagination__next-link {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
}

.blog-pagination__prev-link {
  margin-right: 0.25rem;
  text-align: right;
}

.blog-pagination__next-link {
  margin-left: 0.25rem;
  text-align: left;
}

.blog-pagination__link.blog-pagination__prev-link--disabled,
.blog-pagination__link.blog-pagination__next-link--disabled {
  color: #b0c1d4;
  cursor: default;
  pointer-events: none;
}

.blog-pagination__prev-link svg,
.blog-pagination__next-link svg {
  fill: #494a52;
  margin: 0 5px;
}

.blog-pagination__prev-link--disabled svg,
.blog-pagination__next-link--disabled svg {
  fill: #b0c1d4;
}

.blog-pagination__number-link:hover,
.blog-pagination__number-link:focus {
  border: 2px solid #b0c1d4;
}

/* Blog post */

.post-featured-image {
  background-position: center center;
  background-size: cover;
  border-radius: 5px;
  margin-bottom: -110px;
  margin-top: 40px;
  min-height: 300px;
}

.blog-post {
  background: #fff;
  border-radius: 5px;
  margin: 0 auto;
  max-width: 960px;
  padding: 84px 100px 80px 100px;
  position: relative;
  width: 90%;
  box-shadow: 1px 1px 5px 2px #0000001f;
  margin-bottom: 50px;
}

.blog-post.no-image {
  margin-top: 50px;
}

.blog-post__title {
  font-size: 32px;
  font-weight: 600;
  line-height: 1.25;
}

.blog-post__meta {
  margin: 1rem 0;
}

.blog-post__meta a {
  text-decoration: none;
}

.blog-post__timestamp {
  display: inline-block;
}

.blog-post__tags svg {
  height: auto;
  margin-right: 10px;
  width: 15px;
}

.blog-post__links-container {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: 26px 0;
}

@media (max-width: 767px) {
  .blog-post__links-container {
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: start;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .hs-blog-social-share {
    height: 0 !important;
  }
  .hs-blog-social-share-list {
    padding-top: 20px;
  }
}

.hs-blog-social-share .hs-blog-social-share-item-linkedin span {
  vertical-align: top !important;
}

.blog-post__back-to-blog,
.blog-post__back-to-blog:hover {
  text-decoration: none;
}

.blog-post__back-to-blog svg {
  margin-right: 10px;
  position: relative;
  -webkit-transition: all 0.15s linear;
  -o-transition: all 0.15s linear;
  transition: all 0.15s linear;
  width: 20px;
}

@media (max-width: 767px) {
  .blog-post img {
    float: none !important;
    width: 100% !important;
  }

  .blog-post {
    padding: 20px;
    width: 95%;
  }

  .blog-post h1 {
    font-size: 1.6rem;
  }
}

/* Blog related posts */

.blog-related-posts {
  margin-top: 3rem;
  padding: 2rem 0;
}

.blog-related-posts h2 {
  text-align: center;
}

.blog-related-posts__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.blog-related-posts .blog-index__post-content h2 {
  text-align: left;
}

.blog-related-posts .blog-post__meta-section {
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}

.blog-related-posts__image {
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  height: auto;
  max-width: 100%;
  padding-bottom: 63%;
}

.blog-related-posts__title {
  margin: 1rem 0 0.5rem;
}

.blog-related-posts__title a {
  color: #494a52;
}

/* Blog comments */

.blog-comments {
  margin: 0 auto;
  max-width: 100%;
}

.blog-comments form {
  max-width: 100%;
  padding-top: 2em;
}

.blog-comments .hs-submit {
  text-align: center;
}

.comment.depth-0:first-child {
  margin-top: 2em;
}

.comment.depth-1 {
  padding-left: 2em;
  padding-top: 1em;
  margin-top: 1em;
}

.blog-comments .comment-reply-to {
  border: 0 none;
}

.blog-comments .comment-reply-to:hover,
.blog-comments .comment-reply-to:focus {
  background-color: transparent;
  text-decoration: underline;
}

/* Subscription section */

.subscription-form {
  display: block;
  margin: 0 auto;
  padding: 60px 0;
  text-align: center;
}

@media (max-width: 767px) {
  .subscription-form {
    width: 85%;
  }
  .blog-index__post {
    padding-left: 0;
    padding-right: 0;
  }
}

.subscription-form label {
  text-align: center;
}

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

/* Header CSS */
.header {
  position:relative;
  z-index:99;
}
.headerWrapper .content-wrapper{
  max-width: 100%;
}
.headerWrapper.no_nav .logo {
  text-align: center;
  margin: 0 auto;
}

.header .headerInner {
  padding:17px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}

.header .logo img {
  max-width: 180px;
  width:100%;
  display:block;
}

.headerWrapper .menuBar .barIcon,
.headerWrapper .menuBar:after,
.headerWrapper .menuBar:before {
  background: #ba993a;
  display: block;
  height: 4px;
  transition: all .3s ease;
  width: 100%;
}

.headerWrapper .menuBar:after,
.headerWrapper .menuBar:before {
  content: "";
  position: absolute;
}

.headerWrapper .menuBarWrap {
  width: 35%;
}

.headerWrapper .menuBar {
  cursor: pointer;
  position: relative;
  width: 30px;
  height: 30px;
}

.headerWrapper .menuBar:before {
  top: 10px;
}

.headerWrapper .menuBar:after {
  top: 20px;
}
.sidebarActive .headerWrapper .menuBar .barIcon {
  display:none;
}

.sidebarActive .headerWrapper .menuBar:after{
  transform: rotate(45deg);
  top: 10px;
}

.sidebarActive .headerWrapper .menuBar:before {
  transform: rotate(135deg);
  top: 10px;
}

.headerWrapper .nav-items {
  display: flex;
  gap: 15px;
  width:35%;
  align-items: center;
  justify-content:end;
  flex-wrap: wrap;
}

.headerWrapper .nav-items .navItem a {
  display: flex;
  align-items: center;
  gap: 7px;
  flex-wrap: wrap;
}

.headerWrapper .nav-items .navItem .svgIcon {
  width: 47px;
  height: 47px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 100%;
}
.headerWrapper{
  position:relative;
  z-index:9;
}

/* sidebar */
.overlayheader{
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background-color:rgba(0, 0, 0, 0.5);
  transition: all 0.3s ease;
  z-index:8;
  transform: translateX(100%);
  visibility: hidden;
}
.sidebar_menu {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  width: 30%;
  height: 100%;
  transition: transform 0.3s ease;
  transform: translateX(-100%);
  overflow-y:auto;
  z-index:9;
  min-width:350px;
  padding-bottom:50px;
}
.sidebarActive .overlayheader {
  transform: translateX(0);
  visibility: visible;
}
.sidebarActive {
  overflow: hidden;
}
.sidebarActive .sidebar_menu {
  transform: translateX(0);
}
.sidebar_menu .hs-menu-wrapper ul {
  display: block;
}
.sidebar_menu .hs-menu-wrapper ul.hs-menu-children-wrapper {
  display:none;
}
.sidebar_menu .hs-menu-wrapper ul>li>.child-trigger {
  display: inline-flex;
  cursor: pointer;
  padding: 10px;
  vertical-align: middle;
  width:46px;
  align-items:center;
  justify-content:center;
}

.sidebar_menu .hs-menu-wrapper ul>li.hs-menu-item.hs-item-has-children > a {
  display: inline-block;
  vertical-align: middle;
}

.sidebar_menu .hs-menu-wrapper>ul {
  padding-right: 10px;
}
.sidebar_menu .hs-menu-wrapper ul>li {
  border-bottom: 1px solid #D04E30;
}
.sidebar_menu .hs-menu-wrapper ul>li>a {
  display: inline-block;
  padding: 10px 0;
}
.sidebar_menu .hs-menu-wrapper ul>li>a {
  padding-left: 10px;
}
.sidebar_menu .hs-menu-wrapper ul>li li>a {
  padding-left: 20px;
}
.sidebar_menu .hs-menu-wrapper ul>li li li>a {
  padding-left: 30px;
}
.sidebar_menu .hs-menu-wrapper ul>li li li li>a {
  padding-left: 40px;
}
.sidebar_menu .hs-menu-wrapper ul>li>a {
  width: 100%;
}
.sidebar_menu .hs-menu-wrapper ul ul>li:first-child {
  border-top: 1px solid #d04e30;
}

.sidebar_menu .hs-menu-wrapper ul ul>li:last-child {
  border-bottom: 0;
}
.sidebar_menu .hs-menu-wrapper ul>li.hs-menu-item.hs-item-has-children>a {
  width: calc(100% - 46px);
}
.sidebar_menu .hs-menu-wrapper ul>li.child-open>.child-trigger {
  transform: rotate(180deg);
}

.sidebar_menu .hs-menu-wrapper ul>li>.child-trigger {
  transition: all 0.3s ease;
}
.sidebar_menu .hs-menu-wrapper>ul>li li>a {
  font-size: 16px;
}
@media(max-width:767px){
  .header .headerInner {
    flex-wrap: wrap;
  }

  .headerWrapper .nav-items {
    width: auto;
    order: 2;
  }

  .headerWrapper .menuBarWrap {
    width: auto;
    order: 1;
  }

  .headerWrapper .logo {
    order: 3;
    width: 100%;
  }
  .headerWrapper .logo img {
    margin:0 auto;
  }
  .sidebar_menu {
    min-width:250px;
  }
  .sidebar_menu .hs-menu-wrapper>ul>li li>a{
    font-size: 14px;
  }
}
@media(max-width:450px){
  .headerWrapper .nav-items .navItem .svgIcon{
    width:40px;
    height:40px;
  }

  .headerWrapper .nav-items {
    gap: 10px;
    font-size: 14px;
  }
}
/* footer CSS */
footer.footer {
  position:relative;
  z-index:99;
  padding: 60px 0;
}

footer.footer .logo img {
  display: block;
  text-align: center;
  margin: 0 auto;
  max-width: 400px;
  width: 100% !important;
}

.footer .overlay {
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  left: 0;
  right: 0;
  bottom: 0;
}

.footer .content-wrapper {
  position: relative;
  z-index: 5;
}
/* Menu and simple menu */

.hs-menu-wrapper ul {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  margin: 0;
  padding-left: 0;
}

/* Horizontal menu */

.hs-menu-wrapper.hs-menu-flow-horizontal .hs-menu-children-wrapper {
  flex-direction: column;
}

@media (max-width: 767px) {
  .hs-menu-wrapper.hs-menu-flow-horizontal ul {
    flex-direction: column;
  }
}

/* Vertical menu */

.hs-menu-wrapper.hs-menu-flow-vertical ul {
  flex-direction: column;
}

/* Flyouts */

.hs-menu-wrapper.hs-menu-flow-vertical.flyouts ul {
  display: inline-flex;
}

@media (max-width: 767px) {
  .hs-menu-wrapper.hs-menu-flow-vertical ul {
    display: flex;
  }
}

.hs-menu-wrapper.flyouts .hs-item-has-children {
  position: relative;
}

.hs-menu-wrapper.flyouts .hs-menu-children-wrapper {
  left: -9999px;
  opacity: 0;
  position: absolute;
}

.hs-menu-wrapper.flyouts .hs-menu-children-wrapper a {
  display: block;
  white-space: nowrap;
}

.hs-menu-wrapper.hs-menu-flow-horizontal.flyouts .hs-item-has-children:hover > .hs-menu-children-wrapper {
  left: 0;
  opacity: 1;
  top: 100%;
}

.hs-menu-wrapper.hs-menu-flow-vertical.flyouts .hs-item-has-children:hover > .hs-menu-children-wrapper {
  left: 100%;
  opacity: 1;
  top: 0;
}

@media (max-width: 767px) {
  .hs-menu-wrapper.flyouts .hs-menu-children-wrapper,
  .hs-menu-wrapper.hs-menu-flow-horizontal.flyouts .hs-item-has-children:hover > .hs-menu-children-wrapper,
  .hs-menu-wrapper.hs-menu-flow-vertical.flyouts .hs-item-has-children:hover > .hs-menu-children-wrapper {
    left: 0;
    opacity: 1;
    position: relative;
    top: auto;
  }
}

/* CTA, logo, and rich text images */

.hs_cos_wrapper_type_cta img,
.hs_cos_wrapper_type_logo img,
.hs_cos_wrapper_type_rich_text img {
  height: auto;
  max-width: 100%;
}

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

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

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

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